Merge remote-tracking branch 'parent/main' into upstream-20240618
This commit is contained in:
commit
aa2cdc898a
271 changed files with 1839 additions and 1397 deletions
|
@ -60,9 +60,10 @@ Bundler.require(:pam_authentication) if ENV['PAM_ENABLED'] == 'true'
|
|||
module Mastodon
|
||||
class Application < Rails::Application
|
||||
# Initialize configuration defaults for originally generated Rails version.
|
||||
config.load_defaults 7.0
|
||||
config.load_defaults 7.1
|
||||
|
||||
config.active_record.marshalling_format_version = 7.1
|
||||
# Explicitly set the cache format version to align with Rails version
|
||||
config.active_support.cache_format_version = 7.1
|
||||
|
||||
# Please, add to the `ignore` list any other `lib` subdirectories that do
|
||||
# not contain `.rb` files, or that should not be reloaded or eager loaded.
|
||||
|
@ -114,6 +115,7 @@ module Mastodon
|
|||
Doorkeeper::AuthorizationsController.layout 'modal'
|
||||
Doorkeeper::AuthorizedApplicationsController.layout 'admin'
|
||||
Doorkeeper::Application.include ApplicationExtension
|
||||
Doorkeeper::AccessGrant.include AccessGrantExtension
|
||||
Doorkeeper::AccessToken.include AccessTokenExtension
|
||||
Devise::FailureApp.include AbstractController::Callbacks
|
||||
Devise::FailureApp.include Localized
|
||||
|
|
|
@ -37,7 +37,7 @@ Rails.application.configure do
|
|||
|
||||
config.action_controller.forgery_protection_origin_check = ENV['DISABLE_FORGERY_REQUEST_PROTECTION'].nil?
|
||||
|
||||
ActiveSupport::Logger.new(STDOUT).tap do |logger|
|
||||
ActiveSupport::Logger.new($stdout).tap do |logger|
|
||||
logger.formatter = config.log_formatter
|
||||
config.logger = ActiveSupport::TaggedLogging.new(logger)
|
||||
end
|
||||
|
|
|
@ -94,7 +94,7 @@ Rails.application.configure do
|
|||
# config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new "app-name")
|
||||
|
||||
# Log to STDOUT by default
|
||||
config.logger = ActiveSupport::Logger.new(STDOUT)
|
||||
config.logger = ActiveSupport::Logger.new($stdout)
|
||||
.tap { |logger| logger.formatter = ::Logger::Formatter.new }
|
||||
.then { |logger| ActiveSupport::TaggedLogging.new(logger) }
|
||||
|
||||
|
@ -156,7 +156,11 @@ Rails.application.configure do
|
|||
}
|
||||
|
||||
# TODO: Remove once devise-two-factor data migration complete
|
||||
config.x.otp_secret = ENV.fetch('OTP_SECRET')
|
||||
config.x.otp_secret = if ENV['SECRET_KEY_BASE_DUMMY']
|
||||
SecureRandom.hex(64)
|
||||
else
|
||||
ENV.fetch('OTP_SECRET')
|
||||
end
|
||||
|
||||
# Enable DNS rebinding protection and other `Host` header attacks.
|
||||
# config.hosts = [
|
||||
|
|
|
@ -5,6 +5,11 @@
|
|||
ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT
|
||||
ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY
|
||||
).each do |key|
|
||||
if ENV['SECRET_KEY_BASE_DUMMY']
|
||||
# Use placeholder value during production env asset compilation
|
||||
ENV[key] = SecureRandom.hex(64)
|
||||
end
|
||||
|
||||
value = ENV.fetch(key) do
|
||||
abort <<~MESSAGE
|
||||
|
||||
|
@ -32,4 +37,9 @@ Rails.application.configure do
|
|||
config.active_record.encryption.deterministic_key = ENV.fetch('ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY')
|
||||
config.active_record.encryption.key_derivation_salt = ENV.fetch('ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT')
|
||||
config.active_record.encryption.primary_key = ENV.fetch('ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY')
|
||||
config.active_record.encryption.support_sha1_for_non_deterministic_encryption = true
|
||||
|
||||
# TODO: https://github.com/rails/rails/issues/50604#issuecomment-1880990392
|
||||
# Remove after updating to Rails 7.1.4
|
||||
ActiveRecord::Encryption.configure(**config.active_record.encryption)
|
||||
end
|
||||
|
|
|
@ -1,214 +0,0 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
# Be sure to restart your server when you modify this file.
|
||||
#
|
||||
# This file eases your Rails 7.1 framework defaults upgrade.
|
||||
#
|
||||
# Uncomment each configuration one by one to switch to the new default.
|
||||
# Once your application is ready to run with all new defaults, you can remove
|
||||
# this file and set the `config.load_defaults` to `7.1`.
|
||||
#
|
||||
# Read the Guide for Upgrading Ruby on Rails for more info on each option.
|
||||
# https://guides.rubyonrails.org/upgrading_ruby_on_rails.html
|
||||
|
||||
# No longer add autoloaded paths into `$LOAD_PATH`. This means that you won't be able
|
||||
# to manually require files that are managed by the autoloader, which you shouldn't do anyway.
|
||||
# This will reduce the size of the load path, making `require` faster if you don't use bootsnap, or reduce the size
|
||||
# of the bootsnap cache if you use it.
|
||||
Rails.application.config.add_autoload_paths_to_load_path = false
|
||||
|
||||
# Remove the default X-Download-Options headers since it is used only by Internet Explorer.
|
||||
# If you need to support Internet Explorer, add back `"X-Download-Options" => "noopen"`.
|
||||
# Rails.application.config.action_dispatch.default_headers = {
|
||||
# "X-Frame-Options" => "SAMEORIGIN",
|
||||
# "X-XSS-Protection" => "0",
|
||||
# "X-Content-Type-Options" => "nosniff",
|
||||
# "X-Permitted-Cross-Domain-Policies" => "none",
|
||||
# "Referrer-Policy" => "strict-origin-when-cross-origin"
|
||||
# }
|
||||
|
||||
# Do not treat an `ActionController::Parameters` instance
|
||||
# as equal to an equivalent `Hash` by default.
|
||||
Rails.application.config.action_controller.allow_deprecated_parameters_hash_equality = false
|
||||
|
||||
# Active Record Encryption now uses SHA-256 as its hash digest algorithm. Important: If you have
|
||||
# data encrypted with previous Rails versions, there are two scenarios to consider:
|
||||
#
|
||||
# 1. If you have +config.active_support.key_generator_hash_digest_class+ configured as SHA1 (the default
|
||||
# before Rails 7.0), you need to configure SHA-1 for Active Record Encryption too:
|
||||
# Rails.application.config.active_record.encryption.hash_digest_class = OpenSSL::Digest::SHA1
|
||||
# 2. If you have +config.active_support.key_generator_hash_digest_class+ configured as SHA256 (the new default
|
||||
# in 7.0), then you need to configure SHA-256 for Active Record Encryption:
|
||||
# Rails.application.config.active_record.encryption.hash_digest_class = OpenSSL::Digest::SHA256
|
||||
#
|
||||
# If you don't currently have data encrypted with Active Record encryption, you can disable this setting to
|
||||
# configure the default behavior starting 7.1+:
|
||||
# Rails.application.config.active_record.encryption.support_sha1_for_non_deterministic_encryption = false
|
||||
|
||||
# No longer run after_commit callbacks on the first of multiple Active Record
|
||||
# instances to save changes to the same database row within a transaction.
|
||||
# Instead, run these callbacks on the instance most likely to have internal
|
||||
# state which matches what was committed to the database, typically the last
|
||||
# instance to save.
|
||||
Rails.application.config.active_record.run_commit_callbacks_on_first_saved_instances_in_transaction = false
|
||||
|
||||
# Configures SQLite with a strict strings mode, which disables double-quoted string literals.
|
||||
#
|
||||
# SQLite has some quirks around double-quoted string literals.
|
||||
# It first tries to consider double-quoted strings as identifier names, but if they don't exist
|
||||
# it then considers them as string literals. Because of this, typos can silently go unnoticed.
|
||||
# For example, it is possible to create an index for a non existing column.
|
||||
# See https://www.sqlite.org/quirks.html#double_quoted_string_literals_are_accepted for more details.
|
||||
Rails.application.config.active_record.sqlite3_adapter_strict_strings_by_default = true
|
||||
|
||||
# Disable deprecated singular associations names
|
||||
Rails.application.config.active_record.allow_deprecated_singular_associations_name = false
|
||||
|
||||
# Enable the Active Job `BigDecimal` argument serializer, which guarantees
|
||||
# roundtripping. Without this serializer, some queue adapters may serialize
|
||||
# `BigDecimal` arguments as simple (non-roundtrippable) strings.
|
||||
#
|
||||
# When deploying an application with multiple replicas, old (pre-Rails 7.1)
|
||||
# replicas will not be able to deserialize `BigDecimal` arguments from this
|
||||
# serializer. Therefore, this setting should only be enabled after all replicas
|
||||
# have been successfully upgraded to Rails 7.1.
|
||||
# Rails.application.config.active_job.use_big_decimal_serializer = true
|
||||
|
||||
# Specify if an `ArgumentError` should be raised if `Rails.cache` `fetch` or
|
||||
# `write` are given an invalid `expires_at` or `expires_in` time.
|
||||
# Options are `true`, and `false`. If `false`, the exception will be reported
|
||||
# as `handled` and logged instead.
|
||||
Rails.application.config.active_support.raise_on_invalid_cache_expiration_time = true
|
||||
|
||||
# Specify whether Query Logs will format tags using the SQLCommenter format
|
||||
# (https://open-telemetry.github.io/opentelemetry-sqlcommenter/), or using the legacy format.
|
||||
# Options are `:legacy` and `:sqlcommenter`.
|
||||
Rails.application.config.active_record.query_log_tags_format = :sqlcommenter
|
||||
|
||||
# Specify the default serializer used by `MessageEncryptor` and `MessageVerifier`
|
||||
# instances.
|
||||
#
|
||||
# The legacy default is `:marshal`, which is a potential vector for
|
||||
# deserialization attacks in cases where a message signing secret has been
|
||||
# leaked.
|
||||
#
|
||||
# In Rails 7.1, the new default is `:json_allow_marshal` which serializes and
|
||||
# deserializes with `ActiveSupport::JSON`, but can fall back to deserializing
|
||||
# with `Marshal` so that legacy messages can still be read.
|
||||
#
|
||||
# In Rails 7.2, the default will become `:json` which serializes and
|
||||
# deserializes with `ActiveSupport::JSON` only.
|
||||
#
|
||||
# Alternatively, you can choose `:message_pack` or `:message_pack_allow_marshal`,
|
||||
# which serialize with `ActiveSupport::MessagePack`. `ActiveSupport::MessagePack`
|
||||
# can roundtrip some Ruby types that are not supported by JSON, and may provide
|
||||
# improved performance, but it requires the `msgpack` gem.
|
||||
#
|
||||
# For more information, see
|
||||
# https://guides.rubyonrails.org/v7.1/configuring.html#config-active-support-message-serializer
|
||||
#
|
||||
# If you are performing a rolling deploy of a Rails 7.1 upgrade, wherein servers
|
||||
# that have not yet been upgraded must be able to read messages from upgraded
|
||||
# servers, first deploy without changing the serializer, then set the serializer
|
||||
# in a subsequent deploy.
|
||||
# Rails.application.config.active_support.message_serializer = :json_allow_marshal
|
||||
|
||||
# Enable a performance optimization that serializes message data and metadata
|
||||
# together. This changes the message format, so messages serialized this way
|
||||
# cannot be read by older versions of Rails. However, messages that use the old
|
||||
# format can still be read, regardless of whether this optimization is enabled.
|
||||
#
|
||||
# To perform a rolling deploy of a Rails 7.1 upgrade, wherein servers that have
|
||||
# not yet been upgraded must be able to read messages from upgraded servers,
|
||||
# leave this optimization off on the first deploy, then enable it on a
|
||||
# subsequent deploy.
|
||||
# Rails.application.config.active_support.use_message_serializer_for_metadata = true
|
||||
|
||||
# Set the maximum size for Rails log files.
|
||||
#
|
||||
# `config.load_defaults 7.1` does not set this value for environments other than
|
||||
# development and test.
|
||||
#
|
||||
Rails.application.config.log_file_size = 100 * 1024 * 1024 if Rails.env.local?
|
||||
|
||||
# Enable raising on assignment to attr_readonly attributes. The previous
|
||||
# behavior would allow assignment but silently not persist changes to the
|
||||
# database.
|
||||
Rails.application.config.active_record.raise_on_assign_to_attr_readonly = true
|
||||
|
||||
# Enable validating only parent-related columns for presence when the parent is mandatory.
|
||||
# The previous behavior was to validate the presence of the parent record, which performed an extra query
|
||||
# to get the parent every time the child record was updated, even when parent has not changed.
|
||||
Rails.application.config.active_record.belongs_to_required_validates_foreign_key = false
|
||||
|
||||
# Enable precompilation of `config.filter_parameters`. Precompilation can
|
||||
# improve filtering performance, depending on the quantity and types of filters.
|
||||
Rails.application.config.precompile_filter_parameters = true
|
||||
|
||||
# Enable before_committed! callbacks on all enrolled records in a transaction.
|
||||
# The previous behavior was to only run the callbacks on the first copy of a record
|
||||
# if there were multiple copies of the same record enrolled in the transaction.
|
||||
Rails.application.config.active_record.before_committed_on_all_records = true
|
||||
|
||||
# Disable automatic column serialization into YAML.
|
||||
# To keep the historic behavior, you can set it to `YAML`, however it is
|
||||
# recommended to explicitly define the serialization method for each column
|
||||
# rather than to rely on a global default.
|
||||
Rails.application.config.active_record.default_column_serializer = nil
|
||||
|
||||
# Run `after_commit` and `after_*_commit` callbacks in the order they are defined in a model.
|
||||
# This matches the behaviour of all other callbacks.
|
||||
# In previous versions of Rails, they ran in the inverse order.
|
||||
Rails.application.config.active_record.run_after_transaction_callbacks_in_order_defined = true
|
||||
|
||||
# Whether a `transaction` block is committed or rolled back when exited via `return`, `break` or `throw`.
|
||||
#
|
||||
# Rails.application.config.active_record.commit_transaction_on_non_local_return = true
|
||||
|
||||
# Controls when to generate a value for <tt>has_secure_token</tt> declarations.
|
||||
#
|
||||
Rails.application.config.active_record.generate_secure_token_on = :initialize
|
||||
|
||||
# ** Please read carefully, this must be configured in config/application.rb **
|
||||
# Change the format of the cache entry.
|
||||
# Changing this default means that all new cache entries added to the cache
|
||||
# will have a different format that is not supported by Rails 7.0
|
||||
# applications.
|
||||
# Only change this value after your application is fully deployed to Rails 7.1
|
||||
# and you have no plans to rollback.
|
||||
# When you're ready to change format, add this to `config/application.rb` (NOT
|
||||
# this file):
|
||||
# config.active_support.cache_format_version = 7.1
|
||||
|
||||
# Configure Action View to use HTML5 standards-compliant sanitizers when they are supported on your
|
||||
# platform.
|
||||
#
|
||||
# `Rails::HTML::Sanitizer.best_supported_vendor` will cause Action View to use HTML5-compliant
|
||||
# sanitizers if they are supported, else fall back to HTML4 sanitizers.
|
||||
#
|
||||
# In previous versions of Rails, Action View always used `Rails::HTML4::Sanitizer` as its vendor.
|
||||
#
|
||||
Rails.application.config.action_view.sanitizer_vendor = Rails::HTML::Sanitizer.best_supported_vendor
|
||||
|
||||
# Configure Action Text to use an HTML5 standards-compliant sanitizer when it is supported on your
|
||||
# platform.
|
||||
#
|
||||
# `Rails::HTML::Sanitizer.best_supported_vendor` will cause Action Text to use HTML5-compliant
|
||||
# sanitizers if they are supported, else fall back to HTML4 sanitizers.
|
||||
#
|
||||
# In previous versions of Rails, Action Text always used `Rails::HTML4::Sanitizer` as its vendor.
|
||||
#
|
||||
# Rails.application.config.action_text.sanitizer_vendor = Rails::HTML::Sanitizer.best_supported_vendor
|
||||
|
||||
# Configure the log level used by the DebugExceptions middleware when logging
|
||||
# uncaught exceptions during requests
|
||||
# Rails.application.config.action_dispatch.debug_exception_log_level = :error
|
||||
|
||||
# Configure the test helpers in Action View, Action Dispatch, and rails-dom-testing to use HTML5
|
||||
# parsers.
|
||||
#
|
||||
# Nokogiri::HTML5 isn't supported on JRuby, so JRuby applications must set this to :html4.
|
||||
#
|
||||
# In previous versions of Rails, these test helpers always used an HTML4 parser.
|
||||
#
|
||||
Rails.application.config.dom_testing_default_html_version = :html5
|
|
@ -72,7 +72,7 @@ if ENV['S3_ENABLED'] == 'true'
|
|||
}
|
||||
)
|
||||
|
||||
Paperclip::Attachment.default_options[:s3_permissions] = ->(*) { nil } if ENV['S3_PERMISSION'] == ''
|
||||
Paperclip::Attachment.default_options[:s3_permissions] = ->(*) {} if ENV['S3_PERMISSION'] == ''
|
||||
|
||||
if ENV.has_key?('S3_ENDPOINT')
|
||||
Paperclip::Attachment.default_options[:s3_options].merge!(
|
||||
|
|
|
@ -1 +1,27 @@
|
|||
---
|
||||
ur:
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
expires_at: ڈیڈ لائن
|
||||
options: اپنی مرضی
|
||||
user:
|
||||
agreement: سروس کا معاہدہ
|
||||
email: ای میل ایڈریسز
|
||||
locale: لوکل
|
||||
password: پاس ورڈ
|
||||
user/account:
|
||||
username: یوزر نیم
|
||||
user/invite_request:
|
||||
text: وجہ
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
attributes:
|
||||
username:
|
||||
invalid: صرف حروف، نمبر اور انڈر سکور پر مشتمل ہونا چاہیے۔
|
||||
reserved: محفوظ ہے
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: ایک درست URL نہیں ہے۔
|
||||
|
|
|
@ -291,6 +291,7 @@ be:
|
|||
update_custom_emoji_html: "%{name} абнавіў эмодзі %{target}"
|
||||
update_domain_block_html: "%{name} абнавіў блакіроўку дамена для %{target}"
|
||||
update_ip_block_html: "%{name} змяніў правіла для IP %{target}"
|
||||
update_report_html: "%{name} абнавіў скаргу %{target}"
|
||||
update_status_html: "%{name} абнавіў допіс %{target}"
|
||||
update_user_role_html: "%{name} змяніў ролю %{target}"
|
||||
deleted_account: выдалены ўліковы запіс
|
||||
|
@ -779,6 +780,7 @@ be:
|
|||
desc_html: Гэта функцыянальнасць залежыць ад знешніх скрыптоў hCaptcha, што можа быць праблемай бяспекі і прыватнасці. Акрамя таго, <strong>гэта можа зрабіць працэс рэгістрацыі значна менш даступным для некаторых людзей, асабліва інвалідаў</strong>. Па гэтых прычынах, калі ласка, разгледзьце альтэрнатыўныя меры, такія як рэгістрацыя на аснове зацвярджэння або запрашэння.
|
||||
title: Патрабаваць ад новых карыстальнікаў рашэння CAPTCHA для пацверджання іх уліковага запісу
|
||||
content_retention:
|
||||
danger_zone: Небяспечная зона
|
||||
preamble: Кантралюйце, як створаны карыстальнікамі кантэнт захоўваецца ў Mastodon.
|
||||
title: Утрыманне кантэнту
|
||||
default_noindex:
|
||||
|
@ -983,6 +985,7 @@ be:
|
|||
delete: Выдаліць
|
||||
edit_preset: Рэдагаваць шаблон папярэджання
|
||||
empty: Вы яшчэ не вызначылі ніякіх шаблонаў папярэджанняў.
|
||||
title: Папярэджальныя прадусталёўкі
|
||||
webhooks:
|
||||
add_new: Дадаць канцавую кропку
|
||||
delete: Выдаліць
|
||||
|
|
|
@ -293,6 +293,7 @@ bg:
|
|||
filter_by_action: Филтриране по действие
|
||||
filter_by_user: Филтриране по потребител
|
||||
title: Одитен дневник
|
||||
unavailable_instance: "(неналично име на домейн)"
|
||||
announcements:
|
||||
destroyed_msg: Успешно изтрито оповестяване!
|
||||
edit:
|
||||
|
|
|
@ -293,6 +293,7 @@ ca:
|
|||
filter_by_action: Filtra per acció
|
||||
filter_by_user: Filtra per usuari
|
||||
title: Registre d'auditoria
|
||||
unavailable_instance: "(nom de domini no disponible)"
|
||||
announcements:
|
||||
destroyed_msg: L’anunci s’ha esborrat amb èxit!
|
||||
edit:
|
||||
|
|
|
@ -293,6 +293,7 @@ da:
|
|||
filter_by_action: Filtrér efter handling
|
||||
filter_by_user: Filtrér efter bruger
|
||||
title: Revisionslog
|
||||
unavailable_instance: "(domænenavn utilgængeligt)"
|
||||
announcements:
|
||||
destroyed_msg: Bekendtgørelsen er slettet!
|
||||
edit:
|
||||
|
|
|
@ -293,6 +293,7 @@ de:
|
|||
filter_by_action: Nach Aktion filtern
|
||||
filter_by_user: Nach Benutzer*in filtern
|
||||
title: Protokoll
|
||||
unavailable_instance: "(Server nicht verfügbar)"
|
||||
announcements:
|
||||
destroyed_msg: Ankündigung erfolgreich gelöscht!
|
||||
edit:
|
||||
|
|
|
@ -1 +1,8 @@
|
|||
---
|
||||
la:
|
||||
devise:
|
||||
passwords:
|
||||
send_instructions: Sī adresa tua epistularis in nostra basi datōrum exstat, vinculum ad recuperandam clavem adresa tua epistulari adferētur pauca momenta post. Sī autem hanc epistulam nōn recēpistī, rogāmus ut scrūtināriōnem spurcāriī tuī faciās.
|
||||
registrations:
|
||||
destroyed: Vale! Ratio tua succēssu cancellāta est. Spērāmus tē mox iterum vidēre.
|
||||
signed_up_but_inactive: Te cōnscrīpsistī succēdāneē. At nōn potuimus tē introīre quod ratio* tua nōn adhūc est activāta.*
|
||||
|
|
|
@ -135,6 +135,7 @@ be:
|
|||
media: Мультымедыйныя далучэнні
|
||||
mutes: Ігнараваныя
|
||||
notifications: Апавяшчэнні
|
||||
profile: Ваш профіль Mastodon
|
||||
push: Push-апавяшчэнні
|
||||
reports: Скаргі
|
||||
search: Пошук
|
||||
|
@ -165,6 +166,7 @@ be:
|
|||
admin:write:reports: мадэраваць скаргі
|
||||
crypto: выкарыстоўваць скразное шыфраванне (end-to-end)
|
||||
follow: змяняць зносіны ўліковага запісу
|
||||
profile: чытаць толькі інфармацыю профілю вашага ўліковага запісу
|
||||
push: атрымліваць push-апавяшчэнні
|
||||
read: чытаць усе даныя вашага ўліковага запісу
|
||||
read:accounts: бачыць інфармацыю аб уліковых запісах
|
||||
|
|
|
@ -135,6 +135,7 @@ cs:
|
|||
media: Mediální přílohy
|
||||
mutes: Skrytí
|
||||
notifications: Oznámení
|
||||
profile: Váš Mastodon profil
|
||||
push: Push oznámení
|
||||
reports: Hlášení
|
||||
search: Hledání
|
||||
|
|
|
@ -135,6 +135,7 @@ fr-CA:
|
|||
media: Fichiers médias
|
||||
mutes: Masqués
|
||||
notifications: Notifications
|
||||
profile: Votre profil Mastodon
|
||||
push: Notifications push
|
||||
reports: Signalements
|
||||
search: Recherche
|
||||
|
@ -165,6 +166,7 @@ fr-CA:
|
|||
admin:write:reports: effectuer des actions de modération sur les signalements
|
||||
crypto: utiliser le chiffrement de bout-en-bout
|
||||
follow: modifier les relations du compte
|
||||
profile: lire uniquement les informations de votre compte
|
||||
push: recevoir vos notifications poussées
|
||||
read: lire toutes les données de votre compte
|
||||
read:accounts: voir les informations des comptes
|
||||
|
|
|
@ -135,6 +135,7 @@ fr:
|
|||
media: Fichiers médias
|
||||
mutes: Masqués
|
||||
notifications: Notifications
|
||||
profile: Votre profil Mastodon
|
||||
push: Notifications push
|
||||
reports: Signalements
|
||||
search: Recherche
|
||||
|
@ -165,6 +166,7 @@ fr:
|
|||
admin:write:reports: effectuer des actions de modération sur les signalements
|
||||
crypto: utiliser le chiffrement de bout-en-bout
|
||||
follow: modifier les relations du compte
|
||||
profile: lire uniquement les informations de votre compte
|
||||
push: recevoir vos notifications poussées
|
||||
read: lire toutes les données de votre compte
|
||||
read:accounts: voir les informations des comptes
|
||||
|
|
|
@ -135,6 +135,7 @@ fy:
|
|||
media: Mediabylagen
|
||||
mutes: Negearre
|
||||
notifications: Meldingen
|
||||
profile: Jo Mastodon-profyl
|
||||
push: Pushmeldingen
|
||||
reports: Rapportaazjes
|
||||
search: Sykje
|
||||
|
@ -165,6 +166,7 @@ fy:
|
|||
admin:write:reports: moderaasjemaatregelen nimme yn rapportaazjes
|
||||
crypto: ein-ta-ein-fersifering brûke
|
||||
follow: relaasjes tusken accounts bewurkje
|
||||
profile: allinnich de profylgegevens fan jo account lêze
|
||||
push: jo pushmeldingen ûntfange
|
||||
read: alle gegevens fan jo account lêze
|
||||
read:accounts: accountynformaasje besjen
|
||||
|
|
|
@ -135,6 +135,7 @@ ia:
|
|||
media: Annexos multimedial
|
||||
mutes: Silentiates
|
||||
notifications: Notificationes
|
||||
profile: Tu profilo de Mastodon
|
||||
push: Notificationes push
|
||||
reports: Reportos
|
||||
search: Cercar
|
||||
|
@ -165,6 +166,7 @@ ia:
|
|||
admin:write:reports: exequer actiones de moderation sur reportos
|
||||
crypto: usar cryptation de puncta a puncta
|
||||
follow: modificar relationes inter contos
|
||||
profile: leger solmente le information de profilo de tu conto
|
||||
push: reciper tu notificationes push
|
||||
read: leger tote le datos de tu conto
|
||||
read:accounts: vider informationes de contos
|
||||
|
|
|
@ -135,6 +135,7 @@ ja:
|
|||
media: メディアの添付
|
||||
mutes: ミュート
|
||||
notifications: 通知
|
||||
profile: Mastodonのプロフィール
|
||||
push: プッシュ通知
|
||||
reports: 通報
|
||||
search: 検索
|
||||
|
@ -165,6 +166,7 @@ ja:
|
|||
admin:write:reports: 通報に対するアクションの実行
|
||||
crypto: エンドツーエンド暗号化の使用
|
||||
follow: アカウントのつながりを変更
|
||||
profile: アカウントのプロフィール情報の読み取りのみ
|
||||
push: プッシュ通知の受信
|
||||
read: アカウントのすべてのデータの読み取り
|
||||
read:accounts: アカウント情報の読み取り
|
||||
|
|
|
@ -135,6 +135,7 @@ lad:
|
|||
media: Aneksos de multimedia
|
||||
mutes: Silensiasyones
|
||||
notifications: Avizos
|
||||
profile: Tu profil de Mastodon
|
||||
push: Avizos arrepushados
|
||||
reports: Raportos
|
||||
search: Bushkeda
|
||||
|
@ -165,6 +166,7 @@ lad:
|
|||
admin:write:reports: fazer aksyones de moderasyon en raportos
|
||||
crypto: kulanear shifrasyon de lado a lado
|
||||
follow: modifikar relasyones de kuentos
|
||||
profile: melda solo la informasyon del profil
|
||||
push: risivir tus avizos arrepushados
|
||||
read: meldar todos tus datos de kuento
|
||||
read:accounts: ver enformasyon de kuentos
|
||||
|
|
|
@ -135,6 +135,7 @@ lt:
|
|||
media: Medijos priedai
|
||||
mutes: Nutildymai
|
||||
notifications: Pranešimai
|
||||
profile: Tavo Mastodon profilis
|
||||
push: Tiesioginiai pranešimai
|
||||
reports: Ataskaitos
|
||||
search: Paieška
|
||||
|
@ -165,6 +166,7 @@ lt:
|
|||
admin:write:reports: atlikti ataskaitų prižiūrėjimo veiksmus
|
||||
crypto: naudoti visapusį šifravimą
|
||||
follow: modifikuoti paskyros sąryšius
|
||||
profile: skaityti tik tavo paskyros profilio informaciją
|
||||
push: gauti tiesioginius pranešimus
|
||||
read: skaityti visus paskyros duomenis
|
||||
read:accounts: matyti paskyrų informaciją
|
||||
|
|
|
@ -135,6 +135,7 @@ nn:
|
|||
media: Mediavedlegg
|
||||
mutes: Dempingar
|
||||
notifications: Varsel
|
||||
profile: Mastodon-profilen din
|
||||
push: Pushvarsel
|
||||
reports: Rapportar
|
||||
search: Søk
|
||||
|
@ -165,6 +166,7 @@ nn:
|
|||
admin:write:reports: utføre moderatorhandlingar på rapportar
|
||||
crypto: bruk ende-til-ende-kryptering
|
||||
follow: fylg, blokkér, avblokkér, avfylg brukarar
|
||||
profile: les berre den grunnlejggande informasjonen til brukarkontoen din
|
||||
push: motta pushvarsla dine
|
||||
read: lese alle dine kontodata
|
||||
read:accounts: sjå informasjon om kontoar
|
||||
|
|
|
@ -135,6 +135,7 @@ sl:
|
|||
media: Predstavnostne priloge
|
||||
mutes: Utišani
|
||||
notifications: Obvestila
|
||||
profile: Vaš profil Mastodon
|
||||
push: Potisna obvestila
|
||||
reports: Prijave
|
||||
search: Iskanje
|
||||
|
@ -165,6 +166,7 @@ sl:
|
|||
admin:write:reports: izvedi moderirana dejanja na prijavah
|
||||
crypto: Uporabi šifriranje od konca do konca
|
||||
follow: spremeni razmerja med računi
|
||||
profile: preberi le podatke profila računa
|
||||
push: prejmi potisna obvestila
|
||||
read: preberi vse podatke svojega računa
|
||||
read:accounts: oglejte si podrobnosti računov
|
||||
|
|
|
@ -135,6 +135,7 @@ sv:
|
|||
media: Mediabilagor
|
||||
mutes: Tystade användare
|
||||
notifications: Aviseringar
|
||||
profile: Din Mastodon-profil
|
||||
push: Push-aviseringar
|
||||
reports: Rapporter
|
||||
search: Sök
|
||||
|
@ -165,6 +166,7 @@ sv:
|
|||
admin:write:reports: utföra modereringsåtgärder på rapporter
|
||||
crypto: använd obruten kryptering
|
||||
follow: modifiera kontorelationer
|
||||
profile: läs endast ditt kontos profilinformation
|
||||
push: ta emot dina push-notiser
|
||||
read: läsa dina kontodata
|
||||
read:accounts: se kontoinformation
|
||||
|
|
|
@ -135,6 +135,7 @@ th:
|
|||
media: ไฟล์แนบสื่อ
|
||||
mutes: การซ่อน
|
||||
notifications: การแจ้งเตือน
|
||||
profile: โปรไฟล์ Mastodon ของคุณ
|
||||
push: การแจ้งเตือนแบบผลัก
|
||||
reports: การรายงาน
|
||||
search: ค้นหา
|
||||
|
@ -165,6 +166,7 @@ th:
|
|||
admin:write:reports: ทำการกระทำการกลั่นกรองต่อรายงาน
|
||||
crypto: ใช้การเข้ารหัสแบบต้นทางถึงปลายทาง
|
||||
follow: ปรับเปลี่ยนความสัมพันธ์ของบัญชี
|
||||
profile: อ่านเฉพาะข้อมูลโปรไฟล์ของบัญชีของคุณเท่านั้น
|
||||
push: รับการแจ้งเตือนแบบผลักของคุณ
|
||||
read: อ่านข้อมูลบัญชีทั้งหมดของคุณ
|
||||
read:accounts: ดูข้อมูลบัญชี
|
||||
|
|
|
@ -135,6 +135,7 @@ vi:
|
|||
media: Tập tin đính kèm
|
||||
mutes: Đã ẩn
|
||||
notifications: Thông báo
|
||||
profile: Hồ sơ Mastodon của bạn
|
||||
push: Thông báo đẩy
|
||||
reports: Báo cáo
|
||||
search: Tìm kiếm
|
||||
|
@ -165,6 +166,7 @@ vi:
|
|||
admin:write:reports: áp đặt kiểm duyệt với các báo cáo
|
||||
crypto: dùng mã hóa đầu cuối
|
||||
follow: sửa đổi các mối quan hệ tài khoản
|
||||
profile: chỉ đọc thông tin tài khoản cơ bản
|
||||
push: nhận thông báo đẩy
|
||||
read: đọc mọi dữ liệu tài khoản
|
||||
read:accounts: xem thông tin tài khoản
|
||||
|
|
|
@ -309,6 +309,7 @@ en:
|
|||
filter_by_action: Filter by action
|
||||
filter_by_user: Filter by user
|
||||
title: Audit log
|
||||
unavailable_instance: "(domain name unavailable)"
|
||||
announcements:
|
||||
destroyed_msg: Announcement successfully deleted!
|
||||
edit:
|
||||
|
|
|
@ -293,6 +293,7 @@ es-AR:
|
|||
filter_by_action: Filtrar por acción
|
||||
filter_by_user: Filtrar por usuario
|
||||
title: Registro de auditoría
|
||||
unavailable_instance: "[nombre de dominio no disponible]"
|
||||
announcements:
|
||||
destroyed_msg: "¡Anuncio eliminado exitosamente!"
|
||||
edit:
|
||||
|
|
|
@ -293,6 +293,7 @@ es-MX:
|
|||
filter_by_action: Filtrar por acción
|
||||
filter_by_user: Filtrar por usuario
|
||||
title: Log de auditoría
|
||||
unavailable_instance: "(nombre de dominio no disponible)"
|
||||
announcements:
|
||||
destroyed_msg: "¡Anuncio eliminado con éxito!"
|
||||
edit:
|
||||
|
|
|
@ -293,6 +293,7 @@ es:
|
|||
filter_by_action: Filtrar por acción
|
||||
filter_by_user: Filtrar por usuario
|
||||
title: Log de auditoría
|
||||
unavailable_instance: "(nombre de dominio no disponible)"
|
||||
announcements:
|
||||
destroyed_msg: "¡Anuncio eliminado con éxito!"
|
||||
edit:
|
||||
|
|
|
@ -293,6 +293,7 @@ fi:
|
|||
filter_by_action: Suodata tapahtuman mukaan
|
||||
filter_by_user: Suodata käyttäjän mukaan
|
||||
title: Auditointiloki
|
||||
unavailable_instance: "(verkkotunnus ei ole saatavilla)"
|
||||
announcements:
|
||||
destroyed_msg: Tiedote poistettu onnistuneesti!
|
||||
edit:
|
||||
|
@ -1661,7 +1662,7 @@ fi:
|
|||
preferences: Ominaisuudet
|
||||
profile: Julkinen profiili
|
||||
relationships: Seuratut ja seuraajat
|
||||
severed_relationships: Katkenneet suhteet
|
||||
severed_relationships: Katkenneet seurantasuhteet
|
||||
statuses_cleanup: Autom. julkaisujen poisto
|
||||
strikes: Valvontavaroitukset
|
||||
two_factor_authentication: Kaksivaiheinen todennus
|
||||
|
@ -1674,7 +1675,7 @@ fi:
|
|||
user_domain_block: Estit käyttäjän %{target_name}
|
||||
lost_followers: Menetetyt seuraajat
|
||||
lost_follows: Menetetyt seuratut
|
||||
preamble: Voit menettää seurattusi ja seuraajasi, kun estät verkkotunnuksen tai kun valvojasi päättävät jäädyttää etäpalvelimen. Kun näin tapahtuu, voit ladata luetteloita katkenneista suhteista, jotta voit tarkastella niitä ja mahdollisesti viedä ne toiselle palvelimelle.
|
||||
preamble: Voit menettää seurattusi ja seuraajasi, kun estät verkkotunnuksen tai kun valvojasi päättävät jäädyttää etäpalvelimen. Kun näin tapahtuu, voit ladata luetteloita katkenneista seurantasuhteista, jotta voit tarkastella niitä ja mahdollisesti viedä ne toiselle palvelimelle.
|
||||
purged: Palvelimesi ylläpitäjät ovat tyhjentäneet tämän palvelimen tiedot.
|
||||
type: Tapahtuma
|
||||
statuses:
|
||||
|
@ -1862,31 +1863,31 @@ fi:
|
|||
apps_ios_action: Lataa App Storesta
|
||||
apps_step: Lataa viralliset sovelluksemme.
|
||||
apps_title: Mastodon-sovellukset
|
||||
checklist_subtitle: 'Aloitetaan tällä uudella sosiaalisella seudulla:'
|
||||
checklist_subtitle: 'Näin pääset alkuun tällä uudella sosiaalisella alustalla:'
|
||||
checklist_title: Tervetulon tarkistuslista
|
||||
edit_profile_action: Mukauta
|
||||
edit_profile_step: Tehosta vuorovaikutuksiasi täydennetyllä profiililla.
|
||||
edit_profile_step: Tehosta vuorovaikutuksiasi kattavin profiilitiedoin.
|
||||
edit_profile_title: Mukauta profiiliasi
|
||||
explanation: Näillä vinkeillä pääset alkuun
|
||||
feature_action: Lue lisää
|
||||
feature_audience: Mastodon tarjoaa sinulle ainutlaatuisen mahdollisuuden hallita yleisöäsi ilman välikäsiä. Omassa infrastruktuurissasi käytössä oleva Mastodon antaa sinulle mahdollisuuden seurata ja tulla seuratuksi miltä tahansa muulta verkon Mastodon-palvelimelta, ja se on vain sinun hallinnassasi.
|
||||
feature_audience: Mastodon tarjoaa sinulle ainutlaatuisen mahdollisuuden hallita yleisöäsi ilman välikäsiä. Omassa infrastruktuurissasi toimiva Mastodon on täysin hallinnassasi, ja mahdollistaa sinun seurata mitä tahansa Mastodon-palvelimia sekä niin ikään olla seurattu niiltä päin.
|
||||
feature_audience_title: Rakenna yleisöäsi luottavaisin mielin
|
||||
feature_control: Tiedät itse parhaiten, mitä haluat nähdä kotisyötteessäsi. Ei algoritmeja eikä mainoksia tuhlaamassa aikaasi. Seuraa yhdellä tilillä ketä tahansa, miltä tahansa Mastodon-palvelimelta, vastaanota heidän julkaisunsa aikajärjestyksessä ja tee omasta internetin nurkastasi hieman enemmän omanlaisesi.
|
||||
feature_control_title: Pidä aikajanasi hallussasi
|
||||
feature_creativity: Mastodon tukee ääni-, video- ja kuvajulkaisuja, saavutettavuuskuvauksia, äänestyksiä, sisältövaroituksia, animoituja avattaria, mukautettuja emojeita, pikkukuvien rajauksen hallintaa ja paljon muuta, mikä auttaa ilmaisemaan itseäsi verkossa. Julkaisetpa sitten taidetta, musiikkia tai podcastia, Mastodon on sinua varten.
|
||||
feature_creativity_title: Luovuutta vertaansa vailla
|
||||
feature_moderation: Mastodon palauttaa päätöksenteon käsiisi. Jokainen palvelin luo omat sääntönsä ja määräyksensä, joita valvotaan paikallisesti eikä ylhäältä alas kuten kaupallisessa sosiaalisessa mediassa, mikä tekee siitä joustavimman vastaamaan eri ihmisryhmien tarpeisiin. Liity palvelimelle, jonka säännöt sopivat sinulle, tai ylläpidä omaa palvelinta.
|
||||
feature_moderation_title: Moderointi niin kuin kuuluukin
|
||||
feature_moderation_title: Moderointi juuri kuten sen pitäisi olla
|
||||
follow_action: Seuraa
|
||||
follow_step: Mastodonissa on kyse kiinnostavien ihmisten seuraamisesta.
|
||||
follow_step: Mastodon perustuu sinua kiinnostavien henkilöjen julkaisujen seuraamiseen.
|
||||
follow_title: Mukauta kotisyötettäsi
|
||||
follows_subtitle: Seuraa tunnettuja tilejä
|
||||
follows_title: Ehdotuksia seurattavaksi
|
||||
follows_title: Seurantaehdotuksia
|
||||
follows_view_more: Näytä lisää seurattavia henkilöitä
|
||||
hashtags_recent_count:
|
||||
one: "%{people} henkilö viimeisen 2 päivän aikana"
|
||||
other: "%{people} henkilöä viimeisen 2 päivän aikana"
|
||||
hashtags_subtitle: Tutki, mikä on ollut suosittua viimeisenä 2 päivänä
|
||||
hashtags_subtitle: Tutki, mikä on ollut suosittua 2 edeltävän päivän jälkeen
|
||||
hashtags_title: Suositut aihetunnisteet
|
||||
hashtags_view_more: Näytä lisää suosittuja aihetunnisteita
|
||||
post_action: Kirjoita
|
||||
|
|
|
@ -293,6 +293,7 @@ fo:
|
|||
filter_by_action: Filtrera eftir atgerð
|
||||
filter_by_user: Filtrera eftir brúkara
|
||||
title: Skoðanarloggur
|
||||
unavailable_instance: "(økisnavn ikki tøkt)"
|
||||
announcements:
|
||||
destroyed_msg: Kunngerð strikað!
|
||||
edit:
|
||||
|
|
|
@ -285,6 +285,7 @@ fy:
|
|||
update_custom_emoji_html: Emoji %{target} is troch %{name} bywurke
|
||||
update_domain_block_html: "%{name} hat de domeinblokkade bywurke foar %{target}"
|
||||
update_ip_block_html: "%{name} hat de rigel foar IP %{target} wizige"
|
||||
update_report_html: Rapportaazje %{target} is troch %{name} bywurke
|
||||
update_status_html: "%{name} hat de berjochten %{target} bywurke"
|
||||
update_user_role_html: "%{name} hat de rol %{target} wizige"
|
||||
deleted_account: fuortsmiten account
|
||||
|
|
|
@ -293,6 +293,7 @@ gl:
|
|||
filter_by_action: Filtrar por acción
|
||||
filter_by_user: Filtrar por usuaria
|
||||
title: Rexistro de auditoría
|
||||
unavailable_instance: "(nome de dominio non dispoñible)"
|
||||
announcements:
|
||||
destroyed_msg: Anuncio eliminado de xeito correcto!
|
||||
edit:
|
||||
|
|
|
@ -299,6 +299,7 @@ he:
|
|||
filter_by_action: סינון לפי פעולה
|
||||
filter_by_user: סינון לפי משתמש
|
||||
title: ביקורת יומן
|
||||
unavailable_instance: "(שם מתחם לא זמין)"
|
||||
announcements:
|
||||
destroyed_msg: הכרזה נמחקה בהצלחה!
|
||||
edit:
|
||||
|
|
|
@ -293,6 +293,7 @@ hu:
|
|||
filter_by_action: Szűrés művelet alapján
|
||||
filter_by_user: Szűrés felhasználó alapján
|
||||
title: Audit napló
|
||||
unavailable_instance: "(domain név nem elérhető)"
|
||||
announcements:
|
||||
destroyed_msg: A közlemény sikeresen törölve!
|
||||
edit:
|
||||
|
|
|
@ -293,6 +293,7 @@ ia:
|
|||
filter_by_action: Filtrar per action
|
||||
filter_by_user: Filtrar per usator
|
||||
title: Registro de inspection
|
||||
unavailable_instance: "(nomine de dominio non disponibile)"
|
||||
announcements:
|
||||
destroyed_msg: Annuncio delite con successo!
|
||||
edit:
|
||||
|
|
|
@ -89,6 +89,7 @@ id:
|
|||
moderation:
|
||||
active: Aktif
|
||||
all: Semua
|
||||
disabled: Nonaktif
|
||||
pending: Tertunda
|
||||
silenced: Terbatas
|
||||
suspended: Disuspen
|
||||
|
@ -121,6 +122,8 @@ id:
|
|||
removed_header_msg: Berhasil menghapus gambar header %{username}
|
||||
resend_confirmation:
|
||||
already_confirmed: Pengguna ini sudah dikonfirmasi
|
||||
send: Kirim ulang email konfirmasi
|
||||
success: Email konfirmasi berhasil dikirim!
|
||||
reset: Atur ulang
|
||||
reset_password: Reset kata sandi
|
||||
resubscribe: Langganan ulang
|
||||
|
@ -128,6 +131,7 @@ id:
|
|||
search: Cari
|
||||
search_same_email_domain: Pengguna lain dengan domain email yang sama
|
||||
search_same_ip: Pengguna lain dengan IP yang sama
|
||||
security: Keamanan
|
||||
security_measures:
|
||||
only_password: Hanya kata sandi
|
||||
password_and_2fa: Kata sandi dan 2FA
|
||||
|
@ -278,6 +282,7 @@ id:
|
|||
update_custom_emoji_html: "%{name} memperbarui emoji %{target}"
|
||||
update_domain_block_html: "%{name} memperbarui blokir domain untuk %{target}"
|
||||
update_ip_block_html: "%{name} mengubah peraturan untuk IP %{target}"
|
||||
update_report_html: "%{name} memperbarui laporan %{target}"
|
||||
update_status_html: "%{name} memperbarui status %{target}"
|
||||
update_user_role_html: "%{name} mengubah peran %{target}"
|
||||
deleted_account: akun yang dihapus
|
||||
|
@ -302,6 +307,7 @@ id:
|
|||
unpublish: Batal terbitkan
|
||||
unpublished_msg: Pengumuman berhasil ditarik!
|
||||
updated_msg: Pengumuman berhasil diperbarui!
|
||||
critical_update_pending: Pembaruan penting tertunda
|
||||
custom_emojis:
|
||||
assign_category: Beri kategori
|
||||
by_domain: Domain
|
||||
|
|
|
@ -293,6 +293,7 @@ is:
|
|||
filter_by_action: Sía eftir aðgerð
|
||||
filter_by_user: Sía eftir notanda
|
||||
title: Atvikaskrá
|
||||
unavailable_instance: "(heiti léns ekki tiltækt)"
|
||||
announcements:
|
||||
destroyed_msg: Það tókst að eyða auglýsingunni!
|
||||
edit:
|
||||
|
|
|
@ -293,6 +293,7 @@ it:
|
|||
filter_by_action: Filtra per azione
|
||||
filter_by_user: Filtra per utente
|
||||
title: Registro di controllo
|
||||
unavailable_instance: "(nome di dominio non disponibile)"
|
||||
announcements:
|
||||
destroyed_msg: Annuncio eliminato!
|
||||
edit:
|
||||
|
|
|
@ -290,6 +290,7 @@ ko:
|
|||
filter_by_action: 행동으로 거르기
|
||||
filter_by_user: 사용자로 거르기
|
||||
title: 감사 로그
|
||||
unavailable_instance: "(도메인네임 사용불가)"
|
||||
announcements:
|
||||
destroyed_msg: 공지가 성공적으로 삭제되었습니다!
|
||||
edit:
|
||||
|
|
|
@ -1 +1,34 @@
|
|||
---
|
||||
la:
|
||||
about:
|
||||
about_mastodon_html: '"Rete sociale futuri: Nullae praebendae, nulla observatio corporativa, ethica designatio, et decentralizatio! Tua data cum Mastodonte posside!"'
|
||||
contact_missing: Non definitum
|
||||
contact_unavailable: Nōn Applicābilis
|
||||
hosted_on: Mastodon in %{domain} hospitātum
|
||||
title: De
|
||||
accounts:
|
||||
follow: Sequere
|
||||
followers:
|
||||
one: Sectātor
|
||||
other: Sectātōrēs
|
||||
following: Sequendī
|
||||
instance_actor_flash: Hic ratio est actōr virtuālis ad repraesentandam ipsum servatorem et non ullam individuam usorem. Ad scopōs foederātiōnis ūtor nec suspendendus est.
|
||||
last_active: Ultimum Actum
|
||||
link_verified_on: Dominium huius nexūs est comprobatum die %{date}.
|
||||
nothing_here: Nihil est hic!
|
||||
pin_errors:
|
||||
following: Iam debes sequi personam quam vis probare.
|
||||
posts:
|
||||
one: Nuntius
|
||||
other: Nuntii
|
||||
posts_tab_heading: Nuntii
|
||||
admin:
|
||||
account_actions:
|
||||
action: Agere actionem
|
||||
title: Actionem moderationis in %{acct} gerere
|
||||
account_moderation_notes:
|
||||
create: Relinque nota
|
||||
created_msg: Nota moderationis feliciter creata est!
|
||||
destroyed_msg: Nota moderationis feliciter deleta est!
|
||||
accounts:
|
||||
are_you_sure: Esne certus?
|
||||
|
|
|
@ -299,6 +299,7 @@ lt:
|
|||
filter_by_action: Filtruoti pagal veiksmą
|
||||
filter_by_user: Filtruoti pagal naudotoją
|
||||
title: Audito žurnalas
|
||||
unavailable_instance: "(domeno pavadinimas neprieinamas)"
|
||||
announcements:
|
||||
destroyed_msg: Skelbimas sėkmingai ištrintas.
|
||||
edit:
|
||||
|
|
|
@ -293,6 +293,7 @@ nl:
|
|||
filter_by_action: Op actie filteren
|
||||
filter_by_user: Op gebruiker filteren
|
||||
title: Auditlog
|
||||
unavailable_instance: "(domeinnaam niet beschikbaar)"
|
||||
announcements:
|
||||
destroyed_msg: Verwijderen van mededeling geslaagd!
|
||||
edit:
|
||||
|
@ -1814,14 +1815,14 @@ nl:
|
|||
subject: Jouw archief staat klaar om te worden gedownload
|
||||
title: Archief ophalen
|
||||
failed_2fa:
|
||||
details: 'Hier zijn details van de inlogpoging:'
|
||||
details: 'Hier zijn de details van de inlogpoging:'
|
||||
explanation: Iemand heeft geprobeerd om in te loggen op jouw account maar heeft een ongeldige tweede verificatiefactor opgegeven.
|
||||
further_actions_html: Als jij dit niet was, raden we je aan om onmiddellijk %{action} aangezien het in gevaar kan zijn.
|
||||
subject: Tweestapsverificatiefout
|
||||
title: Tweestapsverificatie mislukt
|
||||
suspicious_sign_in:
|
||||
change_password: je wachtwoord te wijzigen
|
||||
details: 'Hier zijn de details van inlogpoging:'
|
||||
details: 'Hier zijn de details van het inloggen:'
|
||||
explanation: We hebben vastgesteld dat iemand vanaf een nieuw IP-adres op jouw account is ingelogd.
|
||||
further_actions_html: Wanneer jij dit niet was, adviseren wij om onmiddellijk %{action} en om tweestapsverificatie in te schakelen, om zo je account veilig te houden.
|
||||
subject: Jouw account is vanaf een nieuw IP-adres benaderd
|
||||
|
|
|
@ -299,6 +299,7 @@ pl:
|
|||
filter_by_action: Filtruj według działania
|
||||
filter_by_user: Filtruj według użytkownika
|
||||
title: Dziennik działań administracyjnych
|
||||
unavailable_instance: "(domena niedostępna)"
|
||||
announcements:
|
||||
destroyed_msg: Pomyślnie usunięto ogłoszenie!
|
||||
edit:
|
||||
|
|
|
@ -293,6 +293,7 @@ pt-PT:
|
|||
filter_by_action: Filtrar por ação
|
||||
filter_by_user: Filtrar por utilizador
|
||||
title: Registo de auditoria
|
||||
unavailable_instance: "(nome de domínio indisponível)"
|
||||
announcements:
|
||||
destroyed_msg: Comunicado correctamente eliminado!
|
||||
edit:
|
||||
|
|
|
@ -298,6 +298,7 @@ ru:
|
|||
filter_by_action: Фильтр по действию
|
||||
filter_by_user: Фильтр по пользователю
|
||||
title: Журнал аудита
|
||||
unavailable_instance: "(доменное имя недоступно)"
|
||||
announcements:
|
||||
destroyed_msg: Объявление удалено.
|
||||
edit:
|
||||
|
|
|
@ -77,10 +77,15 @@ be:
|
|||
warn: Схаваць адфільтраваны кантэнт за папярэджаннем з назвай фільтру
|
||||
form_admin_settings:
|
||||
activity_api_enabled: Падлік лакальна апублікаваных пастоў, актыўных карыстальнікаў і новых рэгістрацый у тыдзень
|
||||
app_icon: WEBP, PNG, GIF ці JPG. Заменіце прадвызначаны значок праграмы на мабільных прыладах карыстальніцкім значком.
|
||||
backups_retention_period: Карыстальнікі могуць ствараць архівы сваіх допісаў для наступнай запампоўкі. Пры станоўчай колькасці дзён гэтыя архівы будуць аўтаматычна выдаляцца са сховішча пасля заканчэння названай колькасці дзён.
|
||||
bootstrap_timeline_accounts: Гэтыя ўліковыя запісы будуць замацаваны ў топе рэкамендацый для новых карыстальнікаў.
|
||||
closed_registrations_message: Паказваецца, калі рэгістрацыя закрытая
|
||||
content_cache_retention_period: Усе допісы з іншых сервераў (уключаючы пашырэнні і адказы) будуць выдаленыя праз паказаную колькасць дзён, незалежна ад таго, як лакальны карыстальнік узаемадзейнічаў з гэтымі допісамі. Гэта датычыцца і тых допісаў, якія лакальны карыстальнік пазначыў у закладкі або ўпадабанае. Прыватныя згадкі паміж карыстальнікамі з розных інстанс таксама будуць страчаныя і не змогуць быць адноўлены. Выкарыстанне гэтай налады прызначана для асобнікаў спецыяльнага прызначэння і парушае многія чаканні карыстальнікаў пры выкарыстанні ў агульных мэтах.
|
||||
custom_css: Вы можаце прымяняць карыстальніцкія стылі ў вэб-версіі Mastodon.
|
||||
favicon: WEBP, PNG, GIF ці JPG. Замяняе прадвызначаны favicon Mastodon на ўласны значок.
|
||||
mascot: Замяняе ілюстрацыю ў пашыраным вэб-інтэрфейсе.
|
||||
media_cache_retention_period: Медыяфайлы з допісаў, зробленых выдаленымі карыстальнікамі, кэшыруюцца на вашым серверы. Пры станоўчым значэнні медыяфайлы будуць выдалены праз пазначаную колькасць дзён. Калі медыядадзеныя будуць запытаны пасля выдалення, яны будуць загружаны паўторна, калі зыходны кантэнт усё яшчэ даступны. У сувязі з абмежаваннямі на частату абнаўлення відарысаў іншых сайтаў, рэкамендуецца ўсталяваць значэнне не менш за 14 дзён, інакш відарысы не будуць загружацца па запыце раней за гэты тэрмін.
|
||||
peers_api_enabled: Спіс даменных імён, з якімі сутыкнуўся гэты сервер у федэсвеце. Дадзеныя аб тым, ці знаходзіцеся вы з пэўным серверам у федэрацыі, не ўключаныя, ёсць толькі тое, што ваш сервер ведае пра гэта. Гэта выкарыстоўваецца сэрвісамі, якія збіраюць статыстыку па федэрацыі ў агульным сэнсе.
|
||||
profile_directory: Дырэкторыя профіляў змяшчае спіс усіх карыстальнікаў, якія вырашылі быць бачнымі.
|
||||
require_invite_text: Калі рэгістрацыя патрабуе ручнога пацвержання, зрабіце поле "Чаму вы хочаце далучыцца?" абавязковым
|
||||
|
@ -240,6 +245,7 @@ be:
|
|||
backups_retention_period: Працягласць захавання архіву карыстальніка
|
||||
bootstrap_timeline_accounts: Заўсёды раіць гэтыя ўліковыя запісы новым карыстальнікам
|
||||
closed_registrations_message: Уласнае паведамленне, калі рэгістрацыя немагчымая
|
||||
content_cache_retention_period: Перыяд захоўвання выдаленага змесціва
|
||||
custom_css: CSS карыстальніка
|
||||
mascot: Уласны маскот(спадчына)
|
||||
media_cache_retention_period: Працягласць захавання кэшу для медыя
|
||||
|
|
|
@ -83,7 +83,7 @@ fi:
|
|||
closed_registrations_message: Näkyy, kun rekisteröityminen on suljettu
|
||||
content_cache_retention_period: Kaikki muiden palvelinten julkaisut (mukaan lukien tehostukset ja vastaukset) poistuvat, kun määritetty määrä päiviä on kulunut, ottamatta huomioon paikallisen käyttäjän vuorovaikutusta näiden julkaisujen kanssa. Sisältää julkaisut, jotka paikallinen käyttäjä on merkinnyt kirjanmerkiksi tai suosikiksi. Myös yksityiset maininnat eri palvelinten käyttäjien välillä menetetään, eikä niitä voi palauttaa. Tämä asetus on tarkoitettu käytettäväksi erityistapauksissa ja rikkoo monia käyttäjien odotuksia, kun sitä käytetään yleistarkoituksiin.
|
||||
custom_css: Voit käyttää mukautettuja tyylejä Mastodonin verkkoversiossa.
|
||||
favicon: WEBP, PNG, GIF tai JPG. Korvaa oletusarvoisen Mastodonin suosikkikuvakkeen omalla kuvakkeella.
|
||||
favicon: WEBP, PNG, GIF tai JPG. Korvaa oletusarvoisen Mastodonin sivustokuvakkeen (favicon) haluamallasi kuvakkeella.
|
||||
mascot: Ohittaa kuvituksen edistyneessä selainkäyttöliittymässä.
|
||||
media_cache_retention_period: Käyttäjien tekemien julkaisujen mediatiedostot ovat välimuistissa palvelimellasi. Kun arvo on positiivinen, media poistuu, kun määritetty määrä päiviä on kulunut. Jos mediaa pyydetään sen poistamisen jälkeen, se ladataan uudelleen, jos lähdesisältö on vielä saatavilla. Koska linkkien esikatselun kyselyitä kolmansien osapuolien sivustoille on rajoitettu, on suositeltavaa asettaa tämä arvo vähintään 14 päivään, tai linkkien kortteja ei päivitetä pyynnöstä ennen tätä ajankohtaa.
|
||||
peers_api_enabled: Luettelo verkkotunnuksista, jotka tämä palvelin on kohdannut fediversumissa. Se ei kerro, oletko liitossa tietyn palvelimen kanssa, vaan että palvelimesi on ylipäätään tietoinen siitä. Tätä tietoa käytetään palveluissa, jotka keräävät tilastoja federoinnista yleisellä tasolla.
|
||||
|
|
|
@ -77,11 +77,13 @@ fy:
|
|||
warn: Ferstopje de filtere ynhâld efter in warskôging, mei de titel fan it filter as warskôgingstekst
|
||||
form_admin_settings:
|
||||
activity_api_enabled: Tal lokaal publisearre artikelen, aktive brûkers en nije registraasjes yn wyklikse werjefte
|
||||
app_icon: WEBP, PNG, GIF of JPG. Ferfangt op mobile apparaten it standert app-pictogram mei in oanpast piktogram.
|
||||
backups_retention_period: Brûkers hawwe de mooglikheid om argiven fan harren berjochten te generearjen om letter te downloaden. Wannear ynsteld op in positive wearde, wurde dizze argiven automatysk fuortsmiten út jo ûnthâld nei it opjûne oantal dagen.
|
||||
bootstrap_timeline_accounts: Dizze accounts wurde boppe oan de oanrekommandaasjes oan nije brûkers toand. Meardere brûkersnammen troch komma’s skiede.
|
||||
closed_registrations_message: Werjûn wannear’t registraasje fan nije accounts útskeakele is
|
||||
content_cache_retention_period: Alle berjochten fan oare servers (ynklusyf boosts en reaksjes) wurde fuortsmiten nei it opjûne oantal dagen, nettsjinsteande iennige lokale brûkersynteraksje mei dy berjochten. Dit oanbelanget ek berjochten dy’t in lokale brûker oan harren blêdwizers tafoege hat of as favoryt markearre hat. Priveeberjochten tusken brûkers fan ferskate servers gean ek ferlern en binne ûnmooglik te werstellen. It gebrûk fan dizze ynstelling is bedoeld foar servers dy’t in spesjaal doel tsjinje en oertrêdet in protte brûkersferwachtingen wannear’t dizze foar algemien gebrûk ymplemintearre wurdt.
|
||||
custom_css: Jo kinne oanpaste CSS tapasse op de webferzje fan dizze Mastodon-server.
|
||||
favicon: WEBP, PNG, GIF of JPG. Ferfangt de standert Mastodon-favicon mei in oanpast piktogram.
|
||||
mascot: Oerskriuwt de yllustraasje yn de avansearre webomjouwing.
|
||||
media_cache_retention_period: Mediabestannen fan berjochten fan eksterne brûkers wurde op jo server yn de buffer bewarre. Wannear ynsteld op in positive wearde, wurde media fuortsmiten nei it opjûne oantal dagen. As de mediagegevens opfrege wurde neidat se fuortsmiten binne, wurde se opnij download wannear de orizjinele ynhâld noch hieltyd beskikber is. Fanwegen beheiningen op hoe faak keppelingsfoarbylden websites fan tredden rieplachtsje, wurdt oanrekommandearre om dizze wearde yn te stellen op op syn minste 14 dagen. Oars wurde keppelingsfoarbylden net op oanfraach bywurke.
|
||||
peers_api_enabled: In list mei domeinnammen, dêr’t dizze server yn fediverse kontakt hân mei hat. Hjir wurdt gjin data dield, oft jo mei in bepaalde server federearrest, mar alinnich, dat jo server dat wit. Dit wurdt foar tsjinsten brûkt, dy’t statistiken oer federaasje yn algemiene sin sammelet.
|
||||
|
|
|
@ -2,6 +2,9 @@
|
|||
id:
|
||||
simple_form:
|
||||
hints:
|
||||
account:
|
||||
discoverable: Postingan dan profil publik Anda mungkin ditampilkan atau direkomendasikan di berbagai area Mastodon dan profil Anda mungkin disarankan ke pengguna lain.
|
||||
display_name: Nama lengkap Anda atau nama lucu Anda.
|
||||
account_alias:
|
||||
acct: Tentukan namapengguna@domain akun yang ingin Anda pindah
|
||||
account_migration:
|
||||
|
|
|
@ -77,11 +77,13 @@ sv:
|
|||
warn: Dölj det filtrerade innehållet bakom en varning som visar filtrets rubrik
|
||||
form_admin_settings:
|
||||
activity_api_enabled: Antalet lokalt publicerade inlägg, aktiva användare och nya registrerade konton per vecka
|
||||
app_icon: WEBP, PNG, GIF eller JPG. Använd istället för appens egna ikon på mobila enheter.
|
||||
backups_retention_period: Användare har möjlighet att generera arkiv av sina inlägg för att ladda ned senare. När det sätts till ett positivt värde raderas dessa arkiv automatiskt från din lagring efter det angivna antalet dagar.
|
||||
bootstrap_timeline_accounts: Dessa konton kommer fästas högst upp i nya användares följrekommendationer.
|
||||
closed_registrations_message: Visas när nyregistreringar är avstängda
|
||||
content_cache_retention_period: Alla inlägg från andra servrar (inklusive booster och svar) kommer att raderas efter det angivna antalet dagar, utan hänsyn till någon lokal användarinteraktion med dessa inlägg. Detta inkluderar inlägg där en lokal användare har markerat det som bokmärke eller favoriter. Privata omnämnanden mellan användare från olika instanser kommer också att gå förlorade och blir omöjliga att återställa. Användningen av denna inställning är avsedd för specialfall och bryter många användarförväntningar när de implementeras för allmänt bruk.
|
||||
custom_css: Du kan använda anpassade stilar på webbversionen av Mastodon.
|
||||
favicon: WEBP, PNG, GIF eller JPG. Används på mobila enheter istället för appens egen ikon.
|
||||
mascot: Åsidosätter illustrationen i det avancerade webbgränssnittet.
|
||||
media_cache_retention_period: Mediafiler från inlägg som gjorts av fjärranvändare cachas på din server. När inställd på ett positivt värde kommer media att raderas efter det angivna antalet dagar. Om mediadatat begärs efter att det har raderats, kommer det att laddas ned igen om källinnehållet fortfarande är tillgängligt. På grund av begränsningar för hur ofta förhandsgranskningskort för länkar hämtas från tredjepartswebbplatser, rekommenderas det att ange detta värde till minst 14 dagar, annars kommer förhandsgranskningskorten inte att uppdateras på begäran före den tiden.
|
||||
peers_api_enabled: En lista över domänen den här servern har stött på i fediversum. Ingen data inkluderas om du har federerat med servern, bara att din server känner till den. Detta används av tjänster som samlar statistik om federering i allmänhet.
|
||||
|
|
|
@ -20,7 +20,7 @@ th:
|
|||
admin_account_action:
|
||||
include_statuses: ผู้ใช้จะเห็นว่าโพสต์ใดก่อให้เกิดการกระทำการกลั่นกรองหรือคำเตือน
|
||||
send_email_notification: ผู้ใช้จะได้รับคำอธิบายว่าเกิดอะไรขึ้นกับบัญชีของเขา
|
||||
text_html: ไม่จำเป็น คุณสามารถใช้ไวยากรณ์โพสต์ คุณสามารถ <a href="%{path}">เพิ่มคำเตือนที่ตั้งไว้ล่วงหน้า</a> เพื่อประหยัดเวลา
|
||||
text_html: ไม่จำเป็น คุณสามารถใช้ไวยากรณ์โพสต์ คุณสามารถ <a href="%{path}">เพิ่มค่าคำเตือนที่ตั้งไว้ล่วงหน้า</a> เพื่อประหยัดเวลา
|
||||
type_html: เลือกสิ่งที่จะทำกับ <strong>%{acct}</strong>
|
||||
types:
|
||||
disable: ป้องกันไม่ให้ผู้ใช้ใช้บัญชีของเขา แต่ไม่ลบหรือซ่อนเนื้อหาของเขา
|
||||
|
@ -168,7 +168,7 @@ th:
|
|||
sensitive: ละเอียดอ่อน
|
||||
silence: จำกัด
|
||||
suspend: ระงับ
|
||||
warning_preset_id: ใช้คำเตือนที่ตั้งไว้ล่วงหน้า
|
||||
warning_preset_id: ใช้ค่าคำเตือนที่ตั้งไว้ล่วงหน้า
|
||||
announcement:
|
||||
all_day: เหตุการณ์ตลอดทั้งวัน
|
||||
ends_at: การสิ้นสุดเหตุการณ์
|
||||
|
|
|
@ -299,6 +299,7 @@ sl:
|
|||
filter_by_action: Filtriraj po dejanjih
|
||||
filter_by_user: Filtriraj po uporabnikih
|
||||
title: Dnevnik revizije
|
||||
unavailable_instance: "(ime domene ni na voljo)"
|
||||
announcements:
|
||||
destroyed_msg: Obvestilo je bilo uspešno izbrisano!
|
||||
edit:
|
||||
|
|
|
@ -296,6 +296,7 @@ sr-Latn:
|
|||
filter_by_action: Filtriraj po aktivnosti
|
||||
filter_by_user: Filtriraj po korisniku
|
||||
title: Zapisnik
|
||||
unavailable_instance: "(ime domena nedostupno)"
|
||||
announcements:
|
||||
destroyed_msg: Saopštenje je uspešno obrisano!
|
||||
edit:
|
||||
|
|
|
@ -296,6 +296,7 @@ sr:
|
|||
filter_by_action: Филтрирај по активности
|
||||
filter_by_user: Филтрирај по кориснику
|
||||
title: Записник
|
||||
unavailable_instance: "(име домена недоступно)"
|
||||
announcements:
|
||||
destroyed_msg: Саопштење је успешно обрисано!
|
||||
edit:
|
||||
|
|
|
@ -951,6 +951,7 @@ sv:
|
|||
delete: Radera
|
||||
edit_preset: Redigera varningsförval
|
||||
empty: Du har inte definierat några varningsförval ännu.
|
||||
title: Varning förinställningar
|
||||
webhooks:
|
||||
add_new: Lägg till slutpunkt
|
||||
delete: Ta bort
|
||||
|
|
|
@ -290,6 +290,7 @@ th:
|
|||
filter_by_action: กรองตามการกระทำ
|
||||
filter_by_user: กรองตามผู้ใช้
|
||||
title: รายการบันทึกการตรวจสอบ
|
||||
unavailable_instance: "(ชื่อโดเมนไม่พร้อมใช้งาน)"
|
||||
announcements:
|
||||
destroyed_msg: ลบประกาศสำเร็จ!
|
||||
edit:
|
||||
|
@ -932,9 +933,9 @@ th:
|
|||
warning_presets:
|
||||
add_new: เพิ่มใหม่
|
||||
delete: ลบ
|
||||
edit_preset: แก้ไขคำเตือนที่ตั้งไว้ล่วงหน้า
|
||||
empty: คุณยังไม่ได้กำหนดคำเตือนที่ตั้งไว้ล่วงหน้าใด ๆ
|
||||
title: คำเตือนที่ตั้งไว้ล่วงหน้า
|
||||
edit_preset: แก้ไขค่าคำเตือนที่ตั้งไว้ล่วงหน้า
|
||||
empty: คุณยังไม่ได้กำหนดค่าคำเตือนที่ตั้งไว้ล่วงหน้าใด ๆ
|
||||
title: ค่าคำเตือนที่ตั้งไว้ล่วงหน้า
|
||||
webhooks:
|
||||
add_new: เพิ่มปลายทาง
|
||||
delete: ลบ
|
||||
|
@ -1837,11 +1838,13 @@ th:
|
|||
edit_profile_title: ปรับแต่งโปรไฟล์ของคุณ
|
||||
explanation: นี่คือเคล็ดลับบางส่วนที่จะช่วยให้คุณเริ่มต้นใช้งาน
|
||||
feature_action: เรียนรู้เพิ่มเติม
|
||||
feature_audience: Mastodon มีความพิเศษที่ให้คุณจัดการผู้รับสารของคุณได้โดยไม่มีตัวกลาง นอกจากนี้ การติดตั้ง Mastodon บนโครงสร้างพื้นฐานของคุณจะทำให้คุณสามารถติดตาม (และติดตามโดย) เซิร์ฟเวอร์ Mastodon แห่งไหนก็ได้ที่ทำงานอยู่ โดยไม่มีใครสามารถควบคุมได้นอกจากคุณ
|
||||
feature_audience: Mastodon ให้ความเป็นไปได้ที่เป็นเอกลักษณ์แก่คุณในการจัดการผู้ชมของคุณโดยไม่มีตัวกลาง Mastodon ที่ปรับใช้ในโครงสร้างพื้นฐานของคุณเองอนุญาตให้คุณติดตามและได้รับการติดตามจากเซิร์ฟเวอร์ Mastodon อื่นใดทางออนไลน์และไม่อยู่ภายใต้การควบคุมของใครนอกจากคุณ
|
||||
feature_audience_title: สร้างผู้ชมของคุณด้วยความมั่นใจ
|
||||
feature_control: คุณทราบดีที่สุดถึงสิ่งที่คุณต้องการเห็นในฟีดหน้าแรกของคุณ ไม่มีอัลกอริทึมหรือโฆษณาให้เสียเวลาของคุณ ติดตามใครก็ตามทั่วทั้งเซิร์ฟเวอร์ Mastodon ใด ๆ จากบัญชีเดียวและรับโพสต์ของเขาตามลำดับเวลา และทำให้มุมอินเทอร์เน็ตของคุณเป็นเหมือนคุณมากขึ้นอีกนิด
|
||||
feature_control_title: การควบคุมเส้นเวลาของคุณเอง
|
||||
feature_creativity: Mastodon รองรับโพสต์เสียง วิดีโอ และรูปภาพ, คำอธิบายการช่วยการเข้าถึง, การสำรวจความคิดเห็น, คำเตือนเนื้อหา, ภาพประจำตัวแบบเคลื่อนไหว, อีโมจิที่กำหนดเอง, การควบคุมการครอบตัดภาพขนาดย่อ และอื่น ๆ เพื่อช่วยให้คุณแสดงออกตัวคุณเองทางออนไลน์ ไม่ว่าคุณกำลังจะเผยแพร่ศิลปะของคุณ, เพลงของคุณ หรือพอดแคสต์ของคุณ Mastodon อยู่ที่นั่นเพื่อคุณ
|
||||
feature_creativity_title: ความคิดสร้างสรรค์ที่ไม่มีใครเทียบได้
|
||||
feature_moderation: Mastodon นำการตัดสินใจกลับมาอยู่ในมือของคุณ แต่ละเซิร์ฟเวอร์สร้างกฎและระเบียบข้อบังคับของตนเอง ซึ่งบังคับใช้ในเซิร์ฟเวอร์และไม่ใช่จากบนลงล่างเหมือนสื่อสังคมขององค์กร ทำให้สื่อสังคมยืดหยุ่นมากที่สุดในการตอบสนองต่อความต้องการของกลุ่มคนที่แตกต่างกัน เข้าร่วมเซิร์ฟเวอร์ที่มีกฎที่คุณเห็นด้วย หรือโฮสต์ของคุณเอง
|
||||
feature_moderation_title: การกลั่นกรองในแบบที่ควรจะเป็น
|
||||
follow_action: ติดตาม
|
||||
follow_step: การติดตามผู้คนที่น่าสนใจคือสิ่งที่ Mastodon ให้ความสำคัญ
|
||||
|
|
|
@ -293,6 +293,7 @@ tr:
|
|||
filter_by_action: Eyleme göre filtre
|
||||
filter_by_user: Kullanıcıya göre filtre
|
||||
title: Denetim günlüğü
|
||||
unavailable_instance: "(alan adı mevcut değil)"
|
||||
announcements:
|
||||
destroyed_msg: Duyuru başarıyla silindi!
|
||||
edit:
|
||||
|
|
|
@ -299,6 +299,7 @@ uk:
|
|||
filter_by_action: Фільтрувати за дією
|
||||
filter_by_user: Фільтрувати за користувачем
|
||||
title: Журнал подій
|
||||
unavailable_instance: "(ім'я домену недоступне)"
|
||||
announcements:
|
||||
destroyed_msg: Оголошення успішно видалено!
|
||||
edit:
|
||||
|
|
|
@ -290,6 +290,7 @@ vi:
|
|||
filter_by_action: Theo hành động
|
||||
filter_by_user: Theo người
|
||||
title: Nhật ký kiểm duyệt
|
||||
unavailable_instance: "(tên máy chủ không khả dụng)"
|
||||
announcements:
|
||||
destroyed_msg: Xóa thông báo thành công!
|
||||
edit:
|
||||
|
|
|
@ -290,6 +290,7 @@ zh-CN:
|
|||
filter_by_action: 根据行为过滤
|
||||
filter_by_user: 根据用户过滤
|
||||
title: 运营日志
|
||||
unavailable_instance: "(域名不可用)"
|
||||
announcements:
|
||||
destroyed_msg: 公告已删除!
|
||||
edit:
|
||||
|
|
|
@ -290,6 +290,7 @@ zh-TW:
|
|||
filter_by_action: 按動作過濾
|
||||
filter_by_user: 按使用者過濾
|
||||
title: 營運日誌
|
||||
unavailable_instance: "(該域名無法使用)"
|
||||
announcements:
|
||||
destroyed_msg: 成功刪除公告!
|
||||
edit:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue