API for updating attribution domains (#32730)
This commit is contained in:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							3af6739f21
						
					
				
				
					commit
					a3baae0b99
				
			@@ -33,6 +33,7 @@ class Api::V1::Accounts::CredentialsController < Api::BaseController
 | 
			
		||||
      :discoverable,
 | 
			
		||||
      :hide_collections,
 | 
			
		||||
      :indexable,
 | 
			
		||||
      attribution_domains: [],
 | 
			
		||||
      fields_attributes: [:name, :value]
 | 
			
		||||
    )
 | 
			
		||||
  end
 | 
			
		||||
 
 | 
			
		||||
@@ -18,7 +18,9 @@ class Settings::VerificationsController < Settings::BaseController
 | 
			
		||||
  private
 | 
			
		||||
 | 
			
		||||
  def account_params
 | 
			
		||||
    params.require(:account).permit(:attribution_domains_as_text)
 | 
			
		||||
    params.require(:account).permit(:attribution_domains).tap do |params|
 | 
			
		||||
      params[:attribution_domains] = params[:attribution_domains].split if params[:attribution_domains]
 | 
			
		||||
    end
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def set_account
 | 
			
		||||
 
 | 
			
		||||
@@ -4,21 +4,9 @@ module Account::AttributionDomains
 | 
			
		||||
  extend ActiveSupport::Concern
 | 
			
		||||
 | 
			
		||||
  included do
 | 
			
		||||
    validates :attribution_domains_as_text, domain: { multiline: true }, lines: { maximum: 100 }, if: -> { local? && will_save_change_to_attribution_domains? }
 | 
			
		||||
  end
 | 
			
		||||
    normalizes :attribution_domains, with: ->(arr) { arr.filter_map { |str| str.to_s.strip.delete_prefix('http://').delete_prefix('https://').delete_prefix('*.').presence }.uniq }
 | 
			
		||||
 | 
			
		||||
  def attribution_domains_as_text
 | 
			
		||||
    self[:attribution_domains].join("\n")
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def attribution_domains_as_text=(str)
 | 
			
		||||
    self[:attribution_domains] = str.split.filter_map do |line|
 | 
			
		||||
      line
 | 
			
		||||
        .strip
 | 
			
		||||
        .delete_prefix('http://')
 | 
			
		||||
        .delete_prefix('https://')
 | 
			
		||||
        .delete_prefix('*.')
 | 
			
		||||
    end
 | 
			
		||||
    validates :attribution_domains, domain: true, length: { maximum: 100 }, if: -> { local? && will_save_change_to_attribution_domains? }
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def can_be_attributed_from?(domain)
 | 
			
		||||
 
 | 
			
		||||
@@ -18,6 +18,7 @@ class REST::CredentialAccountSerializer < REST::AccountSerializer
 | 
			
		||||
      hide_collections: object.hide_collections,
 | 
			
		||||
      discoverable: object.discoverable,
 | 
			
		||||
      indexable: object.indexable,
 | 
			
		||||
      attribution_domains: object.attribution_domains,
 | 
			
		||||
    }
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -9,18 +9,21 @@ class DomainValidator < ActiveModel::EachValidator
 | 
			
		||||
  def validate_each(record, attribute, value)
 | 
			
		||||
    return if value.blank?
 | 
			
		||||
 | 
			
		||||
    (options[:multiline] ? value.split : [value]).each do |domain|
 | 
			
		||||
      _, domain = domain.split('@') if options[:acct]
 | 
			
		||||
    Array.wrap(value).each do |domain|
 | 
			
		||||
      if options[:acct]
 | 
			
		||||
        _, domain = domain.split('@')
 | 
			
		||||
        next if domain.blank?
 | 
			
		||||
      end
 | 
			
		||||
 | 
			
		||||
      next if domain.blank?
 | 
			
		||||
 | 
			
		||||
      record.errors.add(attribute, options[:multiline] ? :invalid_domain_on_line : :invalid, value: domain) unless compliant?(domain)
 | 
			
		||||
      record.errors.add(attribute, value.is_a?(Enumerable) ? :invalid_domain_on_line : :invalid, value: domain) unless compliant?(domain)
 | 
			
		||||
    end
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  private
 | 
			
		||||
 | 
			
		||||
  def compliant?(value)
 | 
			
		||||
    return false if value.blank?
 | 
			
		||||
 | 
			
		||||
    uri = Addressable::URI.new
 | 
			
		||||
    uri.host = value
 | 
			
		||||
    uri.normalized_host.size < MAX_DOMAIN_LENGTH && uri.normalized_host.split('.').all? { |label| label.size.between?(MIN_LABEL_LENGTH, MAX_LABEL_LENGTH) && label =~ ALLOWED_CHARACTERS_RE }
 | 
			
		||||
 
 | 
			
		||||
@@ -1,9 +0,0 @@
 | 
			
		||||
# frozen_string_literal: true
 | 
			
		||||
 | 
			
		||||
class LinesValidator < ActiveModel::EachValidator
 | 
			
		||||
  def validate_each(record, attribute, value)
 | 
			
		||||
    return if value.blank?
 | 
			
		||||
 | 
			
		||||
    record.errors.add(attribute, :too_many_lines, limit: options[:maximum]) if options[:maximum].present? && value.split.size > options[:maximum]
 | 
			
		||||
  end
 | 
			
		||||
end
 | 
			
		||||
@@ -65,7 +65,7 @@
 | 
			
		||||
  %p.lead= t('author_attribution.then_instructions')
 | 
			
		||||
 | 
			
		||||
  .fields-group
 | 
			
		||||
    = f.input :attribution_domains_as_text, as: :text, wrapper: :with_block_label, input_html: { placeholder: "example1.com\nexample2.com\nexample3.com", rows: 4, autocapitalize: 'none', autocorrect: 'off' }
 | 
			
		||||
    = f.input :attribution_domains, as: :text, wrapper: :with_block_label, input_html: { value: @account.attribution_domains.join("\n"), placeholder: "example1.com\nexample2.com\nexample3.com", rows: 4, autocapitalize: 'none', autocorrect: 'off' }
 | 
			
		||||
 | 
			
		||||
  .actions
 | 
			
		||||
    = f.button :button, t('generic.save_changes'), type: :submit
 | 
			
		||||
 
 | 
			
		||||
@@ -16,7 +16,6 @@ be:
 | 
			
		||||
        text: Прычына
 | 
			
		||||
    errors:
 | 
			
		||||
      messages:
 | 
			
		||||
        too_many_lines: перавышана абмежаванне ў %{limit} радкоў
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ bg:
 | 
			
		||||
          invalid: не е действително име на домейн
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} не е действително име на домейн"
 | 
			
		||||
        too_many_lines: е над ограничение от %{limit} реда
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ ca:
 | 
			
		||||
          invalid: no és un nom de domini vàlid
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} no és un nom de domini vàlid"
 | 
			
		||||
        too_many_lines: sobrepassa el límit de %{limit} línies
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ cy:
 | 
			
		||||
          invalid: "- nid yw'n enw parth dilys"
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: Nid yw %{value} yn enw parth dilys
 | 
			
		||||
        too_many_lines: "- dros y terfyn o %{limit} llinell"
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ da:
 | 
			
		||||
          invalid: er ikke et gyldigt domænenavn
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} er ikke et gyldigt domænenavn"
 | 
			
		||||
        too_many_lines: overstiger grænsen på %{limit} linjer
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ de:
 | 
			
		||||
          invalid: ist kein gültiger Domain-Name
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} ist kein gültiger Domain-Name"
 | 
			
		||||
        too_many_lines: übersteigt das Limit von %{limit} Zeilen
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ el:
 | 
			
		||||
          invalid: δεν είναι έγκυρο όνομα τομέα
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: το %{value} δεν είναι έγκυρο όνομα τομέα
 | 
			
		||||
        too_many_lines: υπερβαίνει το όριο των %{limit} γραμμών
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ en-GB:
 | 
			
		||||
          invalid: is not a valid domain name
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} is not a valid domain name"
 | 
			
		||||
        too_many_lines: is over the limit of %{limit} lines
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ en:
 | 
			
		||||
          invalid: is not a valid domain name
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} is not a valid domain name"
 | 
			
		||||
        too_many_lines: is over the limit of %{limit} lines
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ eo:
 | 
			
		||||
          invalid: ne estas valida domajna nomo
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} ne estas valida domajna nomo"
 | 
			
		||||
        too_many_lines: superas la limon de %{limit} linioj
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ es-AR:
 | 
			
		||||
          invalid: no es un nombre de dominio válido
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} no es un nombre de dominio válido"
 | 
			
		||||
        too_many_lines: está por encima del límite de %{limit} líneas
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ es-MX:
 | 
			
		||||
          invalid: no es un nombre de dominio válido
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} no es un nombre de dominio válido"
 | 
			
		||||
        too_many_lines: excede el límite de %{limit} líneas
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ es:
 | 
			
		||||
          invalid: no es un nombre de dominio válido
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} no es un nombre de dominio válido"
 | 
			
		||||
        too_many_lines: excede el límite de %{limit} líneas
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ et:
 | 
			
		||||
          invalid: pole kehtiv domeeninimi
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} ei ole kehtiv domeeninimi"
 | 
			
		||||
        too_many_lines: on üle limiidi %{limit} rida
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ fa:
 | 
			
		||||
          invalid: نام دامنهٔ معتبری نیست
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} نام دامنهٔ معتبری نیست"
 | 
			
		||||
        too_many_lines: بیش از کران %{limit} خط است
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ fi:
 | 
			
		||||
          invalid: ei ole kelvollinen verkkotunnus
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} ei ole kelvollinen verkkotunnus"
 | 
			
		||||
        too_many_lines: ylittää %{limit} rivin rajan
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ fo:
 | 
			
		||||
          invalid: er ikki eitt virkið økisnavn
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} er ikki eitt virkið økisnavn"
 | 
			
		||||
        too_many_lines: er longri enn markið á %{limit} reglur
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ fr-CA:
 | 
			
		||||
          invalid: n'est pas un nom de domaine valide
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} n'est pas un nom de domaine valide"
 | 
			
		||||
        too_many_lines: dépasse la limite de %{limit} lignes
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ fr:
 | 
			
		||||
          invalid: n'est pas un nom de domaine valide
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} n'est pas un nom de domaine valide"
 | 
			
		||||
        too_many_lines: dépasse la limite de %{limit} lignes
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ fy:
 | 
			
		||||
          invalid: is in ûnjildige domeinnamme
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} is in ûnjildige domeinnamme"
 | 
			
		||||
        too_many_lines: giet oer de limyt fan %{limit} rigels
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ ga:
 | 
			
		||||
          invalid: nach ainm fearainn bailí é
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: Ní ainm fearainn bailí é %{value}
 | 
			
		||||
        too_many_lines: thar an teorainn de %{limit} línte
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ gd:
 | 
			
		||||
          invalid: "– chan eil seo ’na ainm àrainne dligheach"
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: Chan eil %{value} ’na ainm àrainne dligheach
 | 
			
		||||
        too_many_lines: "– tha seo thar crìoch de %{limit} nan loidhnichean"
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ gl:
 | 
			
		||||
          invalid: non é un nome de dominio válido
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} non é un nome de dominio válido"
 | 
			
		||||
        too_many_lines: superou o límite de %{limit} liñas
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ he:
 | 
			
		||||
          invalid: אינו שם מתחם קביל
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} אינו שם מתחם קביל"
 | 
			
		||||
        too_many_lines: מעבר למגבלה של %{limit} שורות
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ hu:
 | 
			
		||||
          invalid: nem egy érvényes domain név
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} nem egy érvényes domain név"
 | 
			
		||||
        too_many_lines: túllépi a(z) %{limit} soros korlátot
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ ia:
 | 
			
		||||
          invalid: non es un nomine de dominio valide
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} non es un nomine de dominio valide"
 | 
			
		||||
        too_many_lines: il es ultra le limite de %{limit} lineas
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ io:
 | 
			
		||||
          invalid: ne esas valida domennomo
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} ne esas valida domennomo"
 | 
			
		||||
        too_many_lines: esas plu kam la limito qua esas %{limit} linei
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ is:
 | 
			
		||||
          invalid: er ekki leyfilegt nafn á léni
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} er ekki leyfilegt nafn á léni"
 | 
			
		||||
        too_many_lines: er yfir takmörkum á %{limit} línum
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ it:
 | 
			
		||||
          invalid: non è un nome di dominio valido
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} non è un nome di dominio valido"
 | 
			
		||||
        too_many_lines: è oltre il limite di %{limit} righe
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ ja:
 | 
			
		||||
          invalid: 有効なドメイン名ではありません
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} は有効なドメイン名ではありません"
 | 
			
		||||
        too_many_lines: "%{limit} 行の制限を超えています。"
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ ko:
 | 
			
		||||
          invalid: 올바른 도메인 네임이 아닙니다
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value}는 올바른 도메인 네임이 아닙니다"
 | 
			
		||||
        too_many_lines: "%{limit}줄 제한을 초과합니다"
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ lt:
 | 
			
		||||
          invalid: nėra tinkamas domeno vardas.
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} nėra tinkamas domeno vardas."
 | 
			
		||||
        too_many_lines: yra daugiau nei %{limit} eilučių ribojimą.
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ lv:
 | 
			
		||||
          invalid: nav derīgs domēna nosaukums
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} nav derīgs domēna nosaukums"
 | 
			
		||||
        too_many_lines: pārsniedz %{limit} līniju ierobežojumu
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ ml:
 | 
			
		||||
          invalid: ഇതൊരു തെറ്റിയ മേഖലപേരാണു്
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} ഒരു തെറ്റിയ മേഖലപേരാണു്"
 | 
			
		||||
        too_many_lines: ഇതു് %{limit} വരിയതിരിന്റെ മേലെയാണു്
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ nl:
 | 
			
		||||
          invalid: is een ongeldige domeinnaam
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} is een ongeldige domeinnaam"
 | 
			
		||||
        too_many_lines: overschrijdt de limiet van %{limit} regels
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ nn:
 | 
			
		||||
          invalid: er ikkje eit gyldig domenenamn
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} er ikkje gyldig i eit domenenamn"
 | 
			
		||||
        too_many_lines: er over grensa på %{limit} liner
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ pl:
 | 
			
		||||
          invalid: nie jest prawidłową nazwą domeny
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} nie jest prawidłową nazwą domeny"
 | 
			
		||||
        too_many_lines: przekracza limit %{limit} linii
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ pt-BR:
 | 
			
		||||
          invalid: não é um nome de domínio válido
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} não é um nome de domínio válido"
 | 
			
		||||
        too_many_lines: está acima do limite de %{limit} linhas
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ ro:
 | 
			
		||||
          invalid: nu este un nume de domeniu valid
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} nu este un nume de domeniu valid"
 | 
			
		||||
        too_many_lines: este peste limita de %{limit} linii
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ ru:
 | 
			
		||||
          invalid: не является действующим доменным именем
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} Не является действительным доменным именем"
 | 
			
		||||
        too_many_lines: Превышает предел %{limit} строк
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ sq:
 | 
			
		||||
          invalid: s’është emër i vlefshëm përkatësie
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} s’është emër i vlefshëm përkatësie"
 | 
			
		||||
        too_many_lines: është tej kufirit prej %{limit} rreshta
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ sv:
 | 
			
		||||
          invalid: är inte ett giltigt domännamn
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} Är inte ett giltigt domännamn"
 | 
			
		||||
        too_many_lines: överskrider gränsen på %{limit} rader
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ th:
 | 
			
		||||
          invalid: ไม่ใช่ชื่อโดเมนที่ถูกต้อง
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} ไม่ใช่ชื่อโดเมนที่ถูกต้อง"
 | 
			
		||||
        too_many_lines: เกินขีดจำกัด %{limit} บรรทัด
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ tr:
 | 
			
		||||
          invalid: geçerli bir alan adı değil
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} geçerli bir alan adı değil"
 | 
			
		||||
        too_many_lines: "%{limit} satır sınırının üzerinde"
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ uk:
 | 
			
		||||
          invalid: не є дійсним іменем домену
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} не є дійсним іменем домену"
 | 
			
		||||
        too_many_lines: перевищує ліміт %{limit} рядків
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ vi:
 | 
			
		||||
          invalid: không phải là một tên miền hợp lệ
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} không phải là một tên miền hợp lệ"
 | 
			
		||||
        too_many_lines: vượt quá giới hạn %{limit} dòng
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ zh-CN:
 | 
			
		||||
          invalid: 不是有效的域名
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} 不是有效的域名"
 | 
			
		||||
        too_many_lines: 超出 %{limit} 行的长度限制
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -20,7 +20,6 @@ zh-TW:
 | 
			
		||||
          invalid: 並非一個有效網域
 | 
			
		||||
      messages:
 | 
			
		||||
        invalid_domain_on_line: "%{value} 並非一個有效網域"
 | 
			
		||||
        too_many_lines: 已超過行數限制 (%{limit} 行)
 | 
			
		||||
      models:
 | 
			
		||||
        account:
 | 
			
		||||
          attributes:
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ bg:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Едно на ред. Защитава от фалшиви атрибути.
 | 
			
		||||
        attribution_domains: Едно на ред. Защитава от фалшиви атрибути.
 | 
			
		||||
        discoverable: Вашите публични публикации и профил може да се представят или препоръчват в различни области на Mastodon и вашия профил може да се предлага на други потребители.
 | 
			
		||||
        display_name: Вашето пълно име или псевдоним.
 | 
			
		||||
        fields: Вашата начална страница, местоимения, години, всичко що искате.
 | 
			
		||||
@@ -150,7 +150,7 @@ bg:
 | 
			
		||||
        url: До къде ще се изпращат събитията
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Уебсайтове, на които е позволено да приписват авторството ви
 | 
			
		||||
        attribution_domains: Уебсайтове, на които е позволено да приписват авторството ви
 | 
			
		||||
        discoverable: Включване на профил и публикации в алгоритмите за откриване
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Етикет
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ ca:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Un per línia. Protegeix de falses atribucions.
 | 
			
		||||
        attribution_domains: Un per línia. Protegeix de falses atribucions.
 | 
			
		||||
        discoverable: El teu perfil i els teus tuts públics poden aparèixer o ser recomanats en diverses àreas de Mastodon i el teu perfil pot ser suggerit a altres usuaris.
 | 
			
		||||
        display_name: El teu nom complet o el teu nom divertit.
 | 
			
		||||
        fields: La teva pàgina d'inici, pronoms, edat, el que vulguis.
 | 
			
		||||
@@ -148,7 +148,7 @@ ca:
 | 
			
		||||
        url: On els esdeveniments seran enviats
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Webs que us poden donar crèdit
 | 
			
		||||
        attribution_domains: Webs que us poden donar crèdit
 | 
			
		||||
        discoverable: Permet el perfil i el tuts en els algorismes de descobriment
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Etiqueta
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ cs:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Jeden na řádek. Chrání před falešným připisování autorství.
 | 
			
		||||
        attribution_domains: Jeden na řádek. Chrání před falešným připisování autorství.
 | 
			
		||||
        discoverable: Vaše veřejné příspěvky a profil mohou být zobrazeny nebo doporučeny v různých oblastech Mastodonu a váš profil může být navrhován ostatním uživatelům.
 | 
			
		||||
        display_name: Vaše celé jméno nebo přezdívka.
 | 
			
		||||
        fields: Vaše domovská stránka, zájmena, věk, cokoliv chcete.
 | 
			
		||||
@@ -156,7 +156,7 @@ cs:
 | 
			
		||||
        url: Kam budou události odesílány
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Webové stránky s povolením Vám připsat autorství
 | 
			
		||||
        attribution_domains: Webové stránky s povolením Vám připsat autorství
 | 
			
		||||
        discoverable: Zobrazovat profil a příspěvky ve vyhledávacích algoritmech
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Označení
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ cy:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Un i bob llinell. Yn amddiffyn rhag priodoli ffug.
 | 
			
		||||
        attribution_domains: Un i bob llinell. Yn amddiffyn rhag priodoli ffug.
 | 
			
		||||
        discoverable: Mae'n bosibl y bydd eich postiadau cyhoeddus a'ch proffil yn cael sylw neu'n cael eu hargymell mewn gwahanol feysydd o Mastodon ac efallai y bydd eich proffil yn cael ei awgrymu i ddefnyddwyr eraill.
 | 
			
		||||
        display_name: Eich enw llawn neu'ch enw hwyl.
 | 
			
		||||
        fields: Eich tudalen cartref, rhagenwau, oed, neu unrhyw beth.
 | 
			
		||||
@@ -156,7 +156,7 @@ cy:
 | 
			
		||||
        url: I ble bydd digwyddiadau'n cael eu hanfon
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Gwefannau sy'n cael caniatâd i'ch cydnabod chi
 | 
			
		||||
        attribution_domains: Gwefannau sy'n cael caniatâd i'ch cydnabod chi
 | 
			
		||||
        discoverable: Proffil nodwedd a phostiadau mewn algorithmau darganfod
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Label
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ da:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Ét pr. linje. Beskytter mod falske tilskrivninger.
 | 
			
		||||
        attribution_domains: Ét pr. linje. Beskytter mod falske tilskrivninger.
 | 
			
		||||
        discoverable: Dine offentlige indlæg og profil kan blive fremhævet eller anbefalet i forskellige områder af Mastodon, og profilen kan blive foreslået til andre brugere.
 | 
			
		||||
        display_name: Dit fulde navn eller dit sjove navn.
 | 
			
		||||
        fields: Din hjemmeside, dine pronominer, din alder, eller hvad du har lyst til.
 | 
			
		||||
@@ -156,7 +156,7 @@ da:
 | 
			
		||||
        url: Hvor begivenheder sendes til
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Websteder, man må krediteres af
 | 
			
		||||
        attribution_domains: Websteder, man må krediteres af
 | 
			
		||||
        discoverable: Fremhæv profil og indlæg i opdagelsesalgoritmer
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Etiket
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ de:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Eine Domain pro Zeile. Dadurch können falsche Zuschreibungen unterbunden werden.
 | 
			
		||||
        attribution_domains: Eine Domain pro Zeile. Dadurch können falsche Zuschreibungen unterbunden werden.
 | 
			
		||||
        discoverable: Deine öffentlichen Beiträge und dein Profil können in verschiedenen Bereichen auf Mastodon angezeigt oder empfohlen werden und dein Profil kann anderen vorgeschlagen werden.
 | 
			
		||||
        display_name: Dein richtiger Name oder dein Fantasiename.
 | 
			
		||||
        fields: Deine Website, Pronomen, dein Alter – alles, was du möchtest.
 | 
			
		||||
@@ -156,7 +156,7 @@ de:
 | 
			
		||||
        url: Wohin Ereignisse gesendet werden
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Websites, die auf dich verweisen dürfen
 | 
			
		||||
        attribution_domains: Websites, die auf dich verweisen dürfen
 | 
			
		||||
        discoverable: Profil und Beiträge in Suchalgorithmen berücksichtigen
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Beschriftung
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ el:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Μία ανά γραμμή. Προστατεύει από ψευδείς ιδιότητες.
 | 
			
		||||
        attribution_domains: Μία ανά γραμμή. Προστατεύει από ψευδείς ιδιότητες.
 | 
			
		||||
        discoverable: Οι δημόσιες δημοσιεύσεις και το προφίλ σου μπορεί να εμφανίζονται ή να συνιστώνται σε διάφορους τομείς του Mastodon και το προφίλ σου μπορεί να προτείνεται σε άλλους χρήστες.
 | 
			
		||||
        display_name: Το πλήρες ή το αστείο σου όνομα.
 | 
			
		||||
        fields: Η αρχική σου σελίδα, αντωνυμίες, ηλικία, ό,τι θες.
 | 
			
		||||
@@ -155,7 +155,7 @@ el:
 | 
			
		||||
        url: Πού θα σταλούν τα γεγονότα
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Ιστοσελίδες που επιτρέπεται να σου δώσουν εύσημα
 | 
			
		||||
        attribution_domains: Ιστοσελίδες που επιτρέπεται να σου δώσουν εύσημα
 | 
			
		||||
        discoverable: Παροχή προφίλ και αναρτήσεων σε αλγορίθμους ανακάλυψης
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Περιγραφή
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ en-GB:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: One per line. Protects from false attributions.
 | 
			
		||||
        attribution_domains: One per line. Protects from false attributions.
 | 
			
		||||
        discoverable: Your public posts and profile may be featured or recommended in various areas of Mastodon and your profile may be suggested to other users.
 | 
			
		||||
        display_name: Your full name or your fun name.
 | 
			
		||||
        fields: Your homepage, pronouns, age, anything you want.
 | 
			
		||||
@@ -144,7 +144,7 @@ en-GB:
 | 
			
		||||
        url: Where events will be sent to
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Websites allowed to credit you
 | 
			
		||||
        attribution_domains: Websites allowed to credit you
 | 
			
		||||
        discoverable: Feature profile and posts in discovery algorithms
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Label
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ en:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: One per line. Protects from false attributions.
 | 
			
		||||
        attribution_domains: One per line. Protects from false attributions.
 | 
			
		||||
        discoverable: Your public posts and profile may be featured or recommended in various areas of Mastodon and your profile may be suggested to other users.
 | 
			
		||||
        display_name: Your full name or your fun name.
 | 
			
		||||
        fields: Your homepage, pronouns, age, anything you want.
 | 
			
		||||
@@ -156,7 +156,7 @@ en:
 | 
			
		||||
        url: Where events will be sent to
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Websites allowed to credit you
 | 
			
		||||
        attribution_domains: Websites allowed to credit you
 | 
			
		||||
        discoverable: Feature profile and posts in discovery algorithms
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Label
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ eo:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Unu por linio. Protektas kontraŭ falsaj atribuoj.
 | 
			
		||||
        attribution_domains: Unu por linio. Protektas kontraŭ falsaj atribuoj.
 | 
			
		||||
        discoverable: Viaj publikaj afiŝoj kaj profilo povas esti prezentitaj aŭ rekomenditaj en diversaj lokoj de Mastodon kaj via profilo povas esti proponita al aliaj uzantoj.
 | 
			
		||||
        display_name: Via plena nomo aŭ via kromnomo.
 | 
			
		||||
        fields: Via retpaĝo, pronomoj, aĝo, ĉio, kion vi volas.
 | 
			
		||||
@@ -156,7 +156,7 @@ eo:
 | 
			
		||||
        url: Kien eventoj sendotas
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Retejoj permesitaj krediti vin
 | 
			
		||||
        attribution_domains: Retejoj permesitaj krediti vin
 | 
			
		||||
        discoverable: Elstarigi profilon kaj afiŝojn en eltrovantaj algoritmoj
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Etikedo
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ es-AR:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Una por línea. Protege de falsas atribuciones.
 | 
			
		||||
        attribution_domains: Una por línea. Protege de falsas atribuciones.
 | 
			
		||||
        discoverable: Tu perfil y publicaciones pueden ser destacadas o recomendadas en varias áreas de Mastodon, y tu perfil puede ser sugerido a otros usuarios.
 | 
			
		||||
        display_name: Tu nombre completo o tu pseudónimo.
 | 
			
		||||
        fields: Tu sitio web, pronombres, edad, o lo que quieras.
 | 
			
		||||
@@ -156,7 +156,7 @@ es-AR:
 | 
			
		||||
        url: Adónde serán enviados los eventos
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Sitios web autorizados a acreditarte
 | 
			
		||||
        attribution_domains: Sitios web autorizados a acreditarte
 | 
			
		||||
        discoverable: Destacar perfil y mensajes en algoritmos de descubrimiento
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Nombre de campo
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ es-MX:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Uno por línea. Protege contra atribuciones falsas.
 | 
			
		||||
        attribution_domains: Uno por línea. Protege contra atribuciones falsas.
 | 
			
		||||
        discoverable: Tu perfil y las publicaciones públicas pueden ser destacadas o recomendadas en varias áreas de Mastodon y tu perfil puede ser sugerido a otros usuarios.
 | 
			
		||||
        display_name: Tu nombre completo o tu apodo.
 | 
			
		||||
        fields: Tu página de inicio, pronombres, edad, lo que quieras.
 | 
			
		||||
@@ -156,7 +156,7 @@ es-MX:
 | 
			
		||||
        url: Donde los eventos serán enviados
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Sitios web autorizados para acreditarte
 | 
			
		||||
        attribution_domains: Sitios web autorizados para acreditarte
 | 
			
		||||
        discoverable: Destacar el perfil y las publicaciones en el algoritmo de descubrimiento
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Etiqueta
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ es:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Una por línea. Protege de falsas atribuciones.
 | 
			
		||||
        attribution_domains: Una por línea. Protege de falsas atribuciones.
 | 
			
		||||
        discoverable: Tu perfil y publicaciones públicas pueden ser destacadas o recomendadas en varias áreas de Mastodon y tu perfil puede ser sugerido a otros usuarios.
 | 
			
		||||
        display_name: Tu nombre completo o tu apodo.
 | 
			
		||||
        fields: Tu carta de presentación, pronombres, edad, lo que quieras.
 | 
			
		||||
@@ -156,7 +156,7 @@ es:
 | 
			
		||||
        url: Donde los eventos serán enviados
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Sitios web autorizados a acreditarte
 | 
			
		||||
        attribution_domains: Sitios web autorizados a acreditarte
 | 
			
		||||
        discoverable: Destacar perfil y publicaciones en algoritmos de descubrimiento
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Etiqueta
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ et:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Üks rea peal. See kaitseb pahatahtlike viidete eest.
 | 
			
		||||
        attribution_domains: Üks rea peal. See kaitseb pahatahtlike viidete eest.
 | 
			
		||||
        discoverable: Su profiili ja avalikke postitusi võidakse Mastodoni erinevates piirkondades esile tõsta või soovitada ning su profiili soovitada teistele kasutajatele.
 | 
			
		||||
        display_name: Su täisnimi või naljanimi.
 | 
			
		||||
        fields: Su koduleht, sugu, vanus. Mistahes, mida soovid.
 | 
			
		||||
@@ -146,7 +146,7 @@ et:
 | 
			
		||||
        url: Kuhu sündmused saadetakse
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Sinule viidata lubatud veebilehed
 | 
			
		||||
        attribution_domains: Sinule viidata lubatud veebilehed
 | 
			
		||||
        discoverable: Tõsta postitused ja profiil avastamise algoritmides esile
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Nimetus
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ fa:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: یکی در هر خط. محافظت از اعتباردهیهای اشتباه.
 | 
			
		||||
        attribution_domains: یکی در هر خط. محافظت از اعتباردهیهای اشتباه.
 | 
			
		||||
        discoverable: ممکن است نمایه و فرستههای عمومیتان در جاهای مختلف ماستودون نمایانده و توصیه شود و نمایهتان به دیگر کاربران پیشنهاد شود.
 | 
			
		||||
        display_name: نام کامل یا باحالتان.
 | 
			
		||||
        fields: صفحهٔ خانگی، تلفّظ، سن و هرچیزی که دوست دارید.
 | 
			
		||||
@@ -156,7 +156,7 @@ fa:
 | 
			
		||||
        url: جایی که رویدادها فرستاده میشوند
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: پابگاههای وبی که اجازهٔ اعتبار دهی به شما را دارند
 | 
			
		||||
        attribution_domains: پابگاههای وبی که اجازهٔ اعتبار دهی به شما را دارند
 | 
			
		||||
        discoverable: مشخص کردن مشخصات و فرستهها در الگوریتمهای اکتشاف
 | 
			
		||||
        fields:
 | 
			
		||||
          name: برچسب
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ fi:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Yksi riviä kohti. Suojaa vääriltä tunnustuksilta.
 | 
			
		||||
        attribution_domains: Yksi riviä kohti. Suojaa vääriltä tunnustuksilta.
 | 
			
		||||
        discoverable: Julkisia julkaisujasi ja profiiliasi voidaan pitää esillä tai suositella Mastodonin eri alueilla ja profiiliasi voidaan ehdottaa toisille käyttäjille.
 | 
			
		||||
        display_name: Koko nimesi tai lempinimesi.
 | 
			
		||||
        fields: Verkkosivustosi, pronominisi, ikäsi ja mitä ikinä haluatkaan ilmoittaa.
 | 
			
		||||
@@ -156,7 +156,7 @@ fi:
 | 
			
		||||
        url: Mihin tapahtumat lähetetään
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Verkkosivustot, jotka voivat antaa sinulle tunnustusta
 | 
			
		||||
        attribution_domains: Verkkosivustot, jotka voivat antaa sinulle tunnustusta
 | 
			
		||||
        discoverable: Pidä profiiliasi ja julkaisujasi esillä löytämisalgoritmeissa
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Nimike
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ fo:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Eitt á hvørja reglu. Tað verjir fyri skeivum tilsipingum.
 | 
			
		||||
        attribution_domains: Eitt á hvørja reglu. Tað verjir fyri skeivum tilsipingum.
 | 
			
		||||
        discoverable: Tínir almennu postar og tín vangi kunnu vera drigin fram og viðmæld ymsa staðni í Mastodon og vangin hjá tær kann vera viðmæltur øðrum brúkarum.
 | 
			
		||||
        display_name: Títt fulla navn og títt stuttliga navn.
 | 
			
		||||
        fields: Heimasíðan hjá tær, fornøvn, aldur ella hvat tú vil.
 | 
			
		||||
@@ -156,7 +156,7 @@ fo:
 | 
			
		||||
        url: Hvar hendingar verða sendar til
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Heimasíður, sum hava loyvi at sipa til tín
 | 
			
		||||
        attribution_domains: Heimasíður, sum hava loyvi at sipa til tín
 | 
			
		||||
        discoverable: Framheva vanga og postar í uppdagingar-algoritmum
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Spjaldur
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ fr-CA:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Un par ligne. Protège contre les fausses attributions.
 | 
			
		||||
        attribution_domains: Un par ligne. Protège contre les fausses attributions.
 | 
			
		||||
        discoverable: Vos messages publics et votre profil peuvent être mis en avant ou recommandés dans diverses parties de Mastodon et votre profil peut être suggéré à d’autres utilisateurs.
 | 
			
		||||
        display_name: Votre nom complet ou votre nom cool.
 | 
			
		||||
        fields: Votre page d'accueil, pronoms, âge, tout ce que vous voulez.
 | 
			
		||||
@@ -156,7 +156,7 @@ fr-CA:
 | 
			
		||||
        url: Là où les événements seront envoyés
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Sites web autorisés à vous citer
 | 
			
		||||
        attribution_domains: Sites web autorisés à vous citer
 | 
			
		||||
        discoverable: Autoriser des algorithmes de découverte à mettre en avant votre profil et vos messages
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Étiquette
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ fr:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Un par ligne. Protège contre les fausses attributions.
 | 
			
		||||
        attribution_domains: Un par ligne. Protège contre les fausses attributions.
 | 
			
		||||
        discoverable: Vos messages publics et votre profil peuvent être mis en avant ou recommandés dans diverses parties de Mastodon et votre profil peut être suggéré à d’autres utilisateurs.
 | 
			
		||||
        display_name: Votre nom complet ou votre nom rigolo.
 | 
			
		||||
        fields: Votre page personnelle, vos pronoms, votre âge, ce que vous voulez.
 | 
			
		||||
@@ -156,7 +156,7 @@ fr:
 | 
			
		||||
        url: Là où les événements seront envoyés
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Sites web autorisés à vous citer
 | 
			
		||||
        attribution_domains: Sites web autorisés à vous citer
 | 
			
		||||
        discoverable: Autoriser des algorithmes de découverte à mettre en avant votre profil et vos messages
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Étiquette
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ fy:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Ien per rigel. Beskermet tsjin falske attribúsjes.
 | 
			
		||||
        attribution_domains: Ien per rigel. Beskermet tsjin falske attribúsjes.
 | 
			
		||||
        discoverable: Jo iepenbiere berjochten kinne útljochte wurde op ferskate plakken binnen Mastodon en jo account kin oanrekommandearre wurde oan oare brûkers.
 | 
			
		||||
        display_name: Jo folsleine namme of in aardige bynamme.
 | 
			
		||||
        fields: Jo website, persoanlike foarnammewurden, leeftiid, alles wat jo mar kwyt wolle.
 | 
			
		||||
@@ -156,7 +156,7 @@ fy:
 | 
			
		||||
        url: Wêr’t eveneminten nei ta stjoerd wurde
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Websites dy’t jo wurdearring jaan meie
 | 
			
		||||
        attribution_domains: Websites dy’t jo wurdearring jaan meie
 | 
			
		||||
        discoverable: Profyl en bydragen yn sykalgoritmen opnimme litte
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Label
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ ga:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Ceann in aghaidh an líne. Cosnaíonn sé ó sannadh bréagach.
 | 
			
		||||
        attribution_domains: Ceann in aghaidh an líne. Cosnaíonn sé ó sannadh bréagach.
 | 
			
		||||
        discoverable: Seans go mbeidh do phostálacha poiblí agus do phróifíl le feiceáil nó molta i réimsí éagsúla de Mastodon agus is féidir do phróifíl a mholadh d’úsáideoirí eile.
 | 
			
		||||
        display_name: D'ainm iomlán nó d'ainm spraoi.
 | 
			
		||||
        fields: Do leathanach baile, forainmneacha, aois, rud ar bith is mian leat.
 | 
			
		||||
@@ -156,7 +156,7 @@ ga:
 | 
			
		||||
        url: An áit a seolfar imeachtaí chuig
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Tá cead ag suíomhanna Gréasáin creidmheas a thabhairt duit
 | 
			
		||||
        attribution_domains: Tá cead ag suíomhanna Gréasáin creidmheas a thabhairt duit
 | 
			
		||||
        discoverable: Próifíl gné agus postálacha in halgartaim fionnachtana
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Lipéad
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ gd:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Loidhne fa leth do gach fear. Dìonaidh seo o iomraidhean meallta.
 | 
			
		||||
        attribution_domains: Loidhne fa leth do gach fear. Dìonaidh seo o iomraidhean meallta.
 | 
			
		||||
        discoverable: Dh’fhaoidte gun dèid na postaichean poblach ’s a’ phròifil agad a bhrosnachadh no a mholadh ann an caochladh roinnean de Mhastodon agus gun dèid a’ phròifil agad a mholadh do chàch.
 | 
			
		||||
        display_name: D’ ainm slàn no spòrsail.
 | 
			
		||||
        fields: An duilleag-dhachaigh agad, roimhearan, aois, rud sam bith a thogras tu.
 | 
			
		||||
@@ -144,7 +144,7 @@ gd:
 | 
			
		||||
        url: Far an dèid na tachartasan a chur
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Na làraichean-lìn a dh’fhaodas iomradh a thoirt ort
 | 
			
		||||
        attribution_domains: Na làraichean-lìn a dh’fhaodas iomradh a thoirt ort
 | 
			
		||||
        discoverable: Brosnaich a’ phròifil is postaichean agad sna h-algairimean rùrachaidh
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Leubail
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ gl:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Un por liña. Protéxete das atribucións falsas.
 | 
			
		||||
        attribution_domains: Un por liña. Protéxete das atribucións falsas.
 | 
			
		||||
        discoverable: As túas publicacións públicas e perfil poden mostrarse ou recomendarse en varias zonas de Mastodon e o teu perfil ser suxerido a outras usuarias.
 | 
			
		||||
        display_name: O teu nome completo ou un nome divertido.
 | 
			
		||||
        fields: Páxina web, pronome, idade, o que ti queiras.
 | 
			
		||||
@@ -156,7 +156,7 @@ gl:
 | 
			
		||||
        url: A onde se enviarán os eventos
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Sitios web que poden acreditarte
 | 
			
		||||
        attribution_domains: Sitios web que poden acreditarte
 | 
			
		||||
        discoverable: Perfil destacado e publicacións nos algoritmos de descubrimento
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Etiqueta
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ he:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: אחד בכל שורה. יגן מפני יחוס מטעה.
 | 
			
		||||
        attribution_domains: אחד בכל שורה. יגן מפני יחוס מטעה.
 | 
			
		||||
        discoverable: הפוסטים והפרופיל שלך עשויים להיות מוצגים או מומלצים באזורים שונים באתר וייתכן שהפרופיל שלך יוצע למשתמשים אחרים.
 | 
			
		||||
        display_name: שמך המלא או שם הכיף שלך.
 | 
			
		||||
        fields: עמוד הבית שלך, לשון הפנייה, גיל, וכל מידע אחר לפי העדפתך האישית.
 | 
			
		||||
@@ -156,7 +156,7 @@ he:
 | 
			
		||||
        url: היעד שאליו יישלחו אירועים
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: אתרים המורשים לייחס אליך מאמרים
 | 
			
		||||
        attribution_domains: אתרים המורשים לייחס אליך מאמרים
 | 
			
		||||
        discoverable: הצג משתמש ופוסטים בעמוד התגליות
 | 
			
		||||
        fields:
 | 
			
		||||
          name: תווית
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ hu:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Megvéd a hamis forrásmegjelölésektől.
 | 
			
		||||
        attribution_domains: Megvéd a hamis forrásmegjelölésektől.
 | 
			
		||||
        discoverable: A nyilvános bejegyzéseid és a profilod kiemelhető vagy ajánlható a Mastodon különböző területein, a profilod más felhasználóknak is javasolható.
 | 
			
		||||
        display_name: Teljes neved vagy vicces neved.
 | 
			
		||||
        fields: Weboldalad, megszólításaid, korod, bármi, amit szeretnél.
 | 
			
		||||
@@ -153,7 +153,7 @@ hu:
 | 
			
		||||
        url: Ahová az eseményket küldjük
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Weboldalak, melyek szerzőként tüntethetnek fel
 | 
			
		||||
        attribution_domains: Weboldalak, melyek szerzőként tüntethetnek fel
 | 
			
		||||
        discoverable: Profil és bejegyzések szerepeltetése a felfedezési algoritmusokban
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Címke
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ ia:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Un per linea. Protege contra false attributiones.
 | 
			
		||||
        attribution_domains: Un per linea. Protege contra false attributiones.
 | 
			
		||||
        discoverable: Tu messages public e tu profilo pote esser mittite in evidentia o recommendate in varie areas de Mastodon e tu profilo pote esser suggerite a altere usatores.
 | 
			
		||||
        display_name: Tu prenomine e nomine de familia o tu pseudonymo.
 | 
			
		||||
        fields: Tu pagina principal, pronomines, etate, tote lo que tu vole.
 | 
			
		||||
@@ -156,7 +156,7 @@ ia:
 | 
			
		||||
        url: Ubi le eventos essera inviate
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Sitos web autorisate a accreditar te
 | 
			
		||||
        attribution_domains: Sitos web autorisate a accreditar te
 | 
			
		||||
        discoverable: Evidentiar le profilo e messages in le algorithmos de discoperta
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Etiquetta
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ is:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Eitt á hverja línu. Ver fyrir röngum tilvísunum.
 | 
			
		||||
        attribution_domains: Eitt á hverja línu. Ver fyrir röngum tilvísunum.
 | 
			
		||||
        discoverable: Opinberar færslur og notandasnið þitt geta birst eða verið mælt með á hinum ýmsu svæðum í Mastodon auk þess sem hægt er að mæla með þér við aðra notendur.
 | 
			
		||||
        display_name: Fullt nafn þitt eða eitthvað til gamans.
 | 
			
		||||
        fields: Heimasíðan þín, fornöfn, aldur eða eitthvað sem þú vilt koma á framfæri.
 | 
			
		||||
@@ -156,7 +156,7 @@ is:
 | 
			
		||||
        url: Hvert atburðir verða sendir
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Vefsvæði sem mega vitna í þig
 | 
			
		||||
        attribution_domains: Vefsvæði sem mega vitna í þig
 | 
			
		||||
        discoverable: Hafa notandasnið og færslur með í reikniritum leitar
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Skýring
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ it:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Uno per riga. Protegge da false attribuzioni.
 | 
			
		||||
        attribution_domains: Uno per riga. Protegge da false attribuzioni.
 | 
			
		||||
        discoverable: I tuoi post pubblici e il tuo profilo potrebbero essere presenti o consigliati in varie aree di Mastodon e il tuo profilo potrebbe essere suggerito ad altri utenti.
 | 
			
		||||
        display_name: Il tuo nome completo o il tuo soprannome.
 | 
			
		||||
        fields: La tua homepage, i pronomi, l'età, tutto quello che vuoi.
 | 
			
		||||
@@ -156,7 +156,7 @@ it:
 | 
			
		||||
        url: Dove gli eventi saranno inviati
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Siti web autorizzati ad accreditarti
 | 
			
		||||
        attribution_domains: Siti web autorizzati ad accreditarti
 | 
			
		||||
        discoverable: Include il profilo e i post negli algoritmi di scoperta
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Etichetta
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ ja:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: 1行につき1つずつ入力してください。この設定は関わりのないwebサイトに対して虚偽の帰属表示が行われることを防止する役割があります。
 | 
			
		||||
        attribution_domains: 1行につき1つずつ入力してください。この設定は関わりのないwebサイトに対して虚偽の帰属表示が行われることを防止する役割があります。
 | 
			
		||||
        discoverable: プロフィールと公開投稿をMastodonのおすすめやハイライトとしてほかのユーザーに表示することを許可します。
 | 
			
		||||
        display_name: フルネーム、ハンドルネームなど
 | 
			
		||||
        fields: ホームページ、代名詞、年齢など何でも構いません。
 | 
			
		||||
@@ -156,7 +156,7 @@ ja:
 | 
			
		||||
        url: イベントの送信先
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: あなたの著者表示を許可するwebサイト
 | 
			
		||||
        attribution_domains: あなたの著者表示を許可するwebサイト
 | 
			
		||||
        discoverable: アカウントを見つけやすくする
 | 
			
		||||
        fields:
 | 
			
		||||
          name: ラベル
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ ko:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: 한 줄에 하나씩. 가짜 기여로부터 보호합니다.
 | 
			
		||||
        attribution_domains: 한 줄에 하나씩. 가짜 기여로부터 보호합니다.
 | 
			
		||||
        discoverable: 내 공개 게시물과 프로필이 마스토돈의 다양한 추천 기능에 나타날 수 있고 프로필이 다른 사용자에게 제안될 수 있습니다
 | 
			
		||||
        display_name: 진짜 이름 또는 재미난 이름.
 | 
			
		||||
        fields: 홈페이지, 호칭, 나이, 뭐든지 적고 싶은 것들.
 | 
			
		||||
@@ -151,7 +151,7 @@ ko:
 | 
			
		||||
        url: 이벤트가 어디로 전송될 지
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: 나를 기여자로 올릴 수 있도록 허용된 웹사이트들
 | 
			
		||||
        attribution_domains: 나를 기여자로 올릴 수 있도록 허용된 웹사이트들
 | 
			
		||||
        discoverable: 발견하기 알고리즘에 프로필과 게시물을 추천하기
 | 
			
		||||
        fields:
 | 
			
		||||
          name: 라벨
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ lt:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Po vieną eilutėje. Apsaugo nuo klaidingų atributų.
 | 
			
		||||
        attribution_domains: Po vieną eilutėje. Apsaugo nuo klaidingų atributų.
 | 
			
		||||
        discoverable: Tavo vieši įrašai ir profilis gali būti rodomi arba rekomenduojami įvairiose Mastodon vietose, o profilis gali būti siūlomas kitiems naudotojams.
 | 
			
		||||
        display_name: Tavo pilnas vardas arba smagus vardas.
 | 
			
		||||
        fields: Tavo pagrindinis puslapis, įvardžiai, amžius, bet kas, ko tik nori.
 | 
			
		||||
@@ -119,7 +119,7 @@ lt:
 | 
			
		||||
        role: Vaidmuo valdo, kokius leidimus naudotojas turi.
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Svetainės, kuriuose leidžiama jus nurodyti
 | 
			
		||||
        attribution_domains: Svetainės, kuriuose leidžiama jus nurodyti
 | 
			
		||||
        discoverable: Rekomenduoti profilį ir įrašus į atradimo algoritmus
 | 
			
		||||
        indexable: Įtraukti viešus įrašus į paieškos rezultatus
 | 
			
		||||
        show_collections: Rodyti sekimus ir sekėjus profilyje
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ lv:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Viens katrā līnijā. Aizsargā no nepatiesa attiecinājuma.
 | 
			
		||||
        attribution_domains: Viens katrā līnijā. Aizsargā no nepatiesa attiecinājuma.
 | 
			
		||||
        discoverable: Tavas publiskās ziņas un profils var tikt piedāvāti vai ieteikti dažādās Mastodon vietās, un tavs profils var tikt ieteikts citiem lietotājiem.
 | 
			
		||||
        display_name: Tavs pilnais vārds vai tavs joku vārds.
 | 
			
		||||
        fields: Tava mājas lapa, vietniekvārdi, vecums, viss, ko vēlies.
 | 
			
		||||
@@ -144,7 +144,7 @@ lv:
 | 
			
		||||
        url: Kur notikumi tiks nosūtīti
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Tīmekļvietnes, kurām ir tiesības uzskaitīt Tevi
 | 
			
		||||
        attribution_domains: Tīmekļvietnes, kurām ir tiesības uzskaitīt Tevi
 | 
			
		||||
        discoverable: Funkcijas profils un ziņas atklāšanas algoritmos
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Marķējums
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ nl:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Eén per regel. Beschermt tegen ongeldige attributies.
 | 
			
		||||
        attribution_domains: Eén per regel. Beschermt tegen ongeldige attributies.
 | 
			
		||||
        discoverable: Jouw openbare berichten kunnen worden uitgelicht op verschillende plekken binnen Mastodon en jouw account kan worden aanbevolen aan andere gebruikers.
 | 
			
		||||
        display_name: Jouw volledige naam of een leuke bijnaam.
 | 
			
		||||
        fields: Jouw website, persoonlijke voornaamwoorden, leeftijd, alles wat je maar kwijt wilt.
 | 
			
		||||
@@ -156,7 +156,7 @@ nl:
 | 
			
		||||
        url: Waar gebeurtenissen naartoe worden verzonden
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Websites die jou credit mogen geven
 | 
			
		||||
        attribution_domains: Websites die jou credit mogen geven
 | 
			
		||||
        discoverable: Jouw account en berichten laten uitlichten door Mastodon
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Label
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ nn:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Ein per line. Vernar mot falske krediteringar.
 | 
			
		||||
        attribution_domains: Ein per line. Vernar mot falske krediteringar.
 | 
			
		||||
        discoverable: Dei offentlege innlegga dine og profilen din kan dukka opp i tilrådingar på ulike stader på Mastodon, og profilen din kan bli føreslegen for andre folk.
 | 
			
		||||
        display_name: Ditt fulle namn eller ditt tøysenamn.
 | 
			
		||||
        fields: Heimesida di, pronomen, alder, eller kva du måtte ynskje.
 | 
			
		||||
@@ -156,7 +156,7 @@ nn:
 | 
			
		||||
        url: Kvar hendingar skal sendast
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Nettstader som har lov å kreditera deg
 | 
			
		||||
        attribution_domains: Nettstader som har lov å kreditera deg
 | 
			
		||||
        discoverable: Ta med profilen og innlegga i oppdagingsalgoritmar
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Merkelapp
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ pl:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Jedna na linię. Chroni przed fałszywym przypisaniem wpisów.
 | 
			
		||||
        attribution_domains: Jedna na linię. Chroni przed fałszywym przypisaniem wpisów.
 | 
			
		||||
        discoverable: Twój profil i publiczne wpisy mogą być promowane lub polecane na Mastodonie i twój profil może być sugerowany innym użytkownikom.
 | 
			
		||||
        display_name: Twoje imię lub pseudonim.
 | 
			
		||||
        fields: Co ci się tylko podoba – twoja strona domowa, zaimki, wiek…
 | 
			
		||||
@@ -145,7 +145,7 @@ pl:
 | 
			
		||||
        url: Dokąd będą wysłane zdarzenia
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Strony które mogą ci przypisywać autorstwo.
 | 
			
		||||
        attribution_domains: Strony które mogą ci przypisywać autorstwo.
 | 
			
		||||
        discoverable: Udostępniaj profil i wpisy funkcjom odkrywania
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Nazwa
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ pt-BR:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Um por linha. Protege de falsas atribuições.
 | 
			
		||||
        attribution_domains: Um por linha. Protege de falsas atribuições.
 | 
			
		||||
        discoverable: Suas publicações e perfil públicos podem ser destaques ou recomendados em várias áreas de Mastodon, e seu perfil pode ser sugerido a outros usuários.
 | 
			
		||||
        display_name: Seu nome completo ou apelido.
 | 
			
		||||
        fields: Sua página inicial, pronomes, idade ou qualquer coisa que quiser.
 | 
			
		||||
@@ -147,7 +147,7 @@ pt-BR:
 | 
			
		||||
        url: Aonde os eventos serão enviados
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Sites permitidos para credenciar você
 | 
			
		||||
        attribution_domains: Sites permitidos para credenciar você
 | 
			
		||||
        discoverable: Destacar perfil e publicações nos algoritmos de descoberta
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Rótulo
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ pt-PT:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Um por linha. Protege contra falsas atribuições.
 | 
			
		||||
        attribution_domains: Um por linha. Protege contra falsas atribuições.
 | 
			
		||||
        discoverable: As suas publicações e perfil públicos podem ser destacados ou recomendados em várias áreas do Mastodon e o seu perfil pode ser sugerido a outros utilizadores.
 | 
			
		||||
        display_name: O seu nome completo ou o seu nome divertido.
 | 
			
		||||
        fields: A sua página inicial, os seus pronomes, idade e tudo o que quiser.
 | 
			
		||||
@@ -156,7 +156,7 @@ pt-PT:
 | 
			
		||||
        url: Para onde os eventos serão enviados
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Sites autorizados a atribuir-lhe crédito
 | 
			
		||||
        attribution_domains: Sites autorizados a atribuir-lhe crédito
 | 
			
		||||
        discoverable: Destacar perfil e publicações nos algoritmos de descoberta
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Rótulo
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ ro:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Una pe linie. Protejează împotriva atribuirilor false.
 | 
			
		||||
        attribution_domains: Una pe linie. Protejează împotriva atribuirilor false.
 | 
			
		||||
        discoverable: Este posibil ca postările și profilul tău să fie recomandate în diferite zone ale Mastodon, iar profilul tău ar poate fi sugerat altor utilizatori.
 | 
			
		||||
        display_name: Numele dvs. complet sau numele dvs. amuzant.
 | 
			
		||||
        fields: Pagina ta principală, pronumele tale, vârsta, sau orice îți dorești.
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ ru:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: По одному на строку. Защищает от ложных атрибуций.
 | 
			
		||||
        attribution_domains: По одному на строку. Защищает от ложных атрибуций.
 | 
			
		||||
        discoverable: Ваши публичные сообщения и профиль могут быть показаны или рекомендованы в различных разделах Mastodon, и ваш профиль может быть предложен другим пользователям.
 | 
			
		||||
        display_name: Ваше полное имя или псевдоним.
 | 
			
		||||
        fields: Ваша домашняя страница, местоимения, возраст - все, что угодно.
 | 
			
		||||
@@ -156,7 +156,7 @@ ru:
 | 
			
		||||
        url: Куда события будут отправляться
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Веб-сайты, которым разрешено ссылаться на вас
 | 
			
		||||
        attribution_domains: Веб-сайты, которым разрешено ссылаться на вас
 | 
			
		||||
        discoverable: Профиль и сообщения в алгоритмах обнаружения
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Пункт
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ sq:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Një për rresht. Kjo mbron nga atribuime të rreme.
 | 
			
		||||
        attribution_domains: Një për rresht. Kjo mbron nga atribuime të rreme.
 | 
			
		||||
        discoverable: Postimet dhe profili juaj publik mund të shfaqen, ose rekomandohen në zona të ndryshme të Mastodon-it dhe profili juaj mund të sugjerohet përdoruesve të tjerë.
 | 
			
		||||
        display_name: Emri juaj i plotë, ose emri juaj lojcak.
 | 
			
		||||
        fields: Faqja juaj hyrëse, përemra, moshë, ç’të keni qejf.
 | 
			
		||||
@@ -155,7 +155,7 @@ sq:
 | 
			
		||||
        url: Ku do të dërgohen aktet
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Sajte të lejuar t’ju japin hakë
 | 
			
		||||
        attribution_domains: Sajte të lejuar t’ju japin hakë
 | 
			
		||||
        discoverable: Profilin dhe postimet bëji objekt të algoritmeve të zbulimit
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Etiketë
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ sv:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: En per rad. Skyddar mot falska attributioner.
 | 
			
		||||
        attribution_domains: En per rad. Skyddar mot falska attributioner.
 | 
			
		||||
        discoverable: Dina offentliga inlägg och din profil kan komma att presenteras eller rekommenderas inom olika områden av Mastodon och din profil kan komma att föreslås till andra användare.
 | 
			
		||||
        display_name: Ditt fullständiga namn eller ditt roliga namn.
 | 
			
		||||
        fields: Din hemsida, ditt pronomen, din ålder, vadhelst du vill.
 | 
			
		||||
@@ -153,7 +153,7 @@ sv:
 | 
			
		||||
        url: Dit händelser kommer skickas
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Webbplatser som får kreditera dig
 | 
			
		||||
        attribution_domains: Webbplatser som får kreditera dig
 | 
			
		||||
        discoverable: Presentera profil och inlägg med upptäcktsalgoritmer
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Etikett
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ th:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: หนึ่งรายการต่อบรรทัด ปกป้องจากการระบุแหล่งที่มาที่ผิด
 | 
			
		||||
        attribution_domains: หนึ่งรายการต่อบรรทัด ปกป้องจากการระบุแหล่งที่มาที่ผิด
 | 
			
		||||
        discoverable: อาจแสดงหรือแนะนำโพสต์และโปรไฟล์สาธารณะของคุณในพื้นที่ต่าง ๆ ของ Mastodon และอาจเสนอแนะโปรไฟล์ของคุณให้กับผู้ใช้อื่น ๆ
 | 
			
		||||
        display_name: ชื่อเต็มของคุณหรือชื่อแบบสนุกสนานของคุณ
 | 
			
		||||
        fields: หน้าแรก, สรรพนาม, อายุของคุณ สิ่งใดก็ตามที่คุณต้องการ
 | 
			
		||||
@@ -144,7 +144,7 @@ th:
 | 
			
		||||
        url: ที่ซึ่งจะส่งเหตุการณ์ไปยัง
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: เว็บไซต์ที่ได้รับอนุญาตให้ให้เครดิตคุณ
 | 
			
		||||
        attribution_domains: เว็บไซต์ที่ได้รับอนุญาตให้ให้เครดิตคุณ
 | 
			
		||||
        discoverable: แสดงโปรไฟล์และโพสต์ในอัลกอริทึมการค้นพบ
 | 
			
		||||
        fields:
 | 
			
		||||
          name: ป้ายชื่อ
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ tok:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: linja sitelen wan la wan taso o lon. ni la, sona pona pi jan pali li lon.
 | 
			
		||||
        attribution_domains: linja sitelen wan la wan taso o lon. ni la, sona pona pi jan pali li lon.
 | 
			
		||||
        display_name: nimi sina ale anu nimi sina musi.
 | 
			
		||||
        fields: lipu open sina, en nimi pi kon sina, en suli tenpo sina, en ijo ante ale pi wile sina.
 | 
			
		||||
        note: 'sina ken @mu e jan ante, li ken lon e #kulupu toki suli.'
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ tr:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Her satırda bir tanesi. Sahte atıflardan korur.
 | 
			
		||||
        attribution_domains: Her satırda bir tanesi. Sahte atıflardan korur.
 | 
			
		||||
        discoverable: Herkese açık gönderileriniz ve profiliniz Mastodon'un çeşitli kısımlarında öne çıkarılabilir veya önerilebilir ve profiliniz başka kullanıcılara önerilebilir.
 | 
			
		||||
        display_name: Tam adınız veya kullanıcı adınız.
 | 
			
		||||
        fields: Ana sayfanız, zamirleriniz, yaşınız, istediğiniz herhangi bir şey.
 | 
			
		||||
@@ -156,7 +156,7 @@ tr:
 | 
			
		||||
        url: Olayların gönderileceği yer
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Size atıf verebilecek websiteleri
 | 
			
		||||
        attribution_domains: Size atıf verebilecek websiteleri
 | 
			
		||||
        discoverable: Profil ve gönderileri keşif algoritmalarında kullan
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Etiket
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ uk:
 | 
			
		||||
  simple_form:
 | 
			
		||||
    hints:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Один на рядок. Захищає від фальшивих атрибутів.
 | 
			
		||||
        attribution_domains: Один на рядок. Захищає від фальшивих атрибутів.
 | 
			
		||||
        discoverable: Ваші дописи та профіль можуть бути рекомендовані в різних частинах Mastodon і ваш профіль може бути запропонований іншим користувачам.
 | 
			
		||||
        display_name: Ваше повне ім'я або ваш псевдонім.
 | 
			
		||||
        fields: Ваша домашня сторінка, займенники, вік, все, що вам заманеться.
 | 
			
		||||
@@ -156,7 +156,7 @@ uk:
 | 
			
		||||
        url: Куди надсилатимуться події
 | 
			
		||||
    labels:
 | 
			
		||||
      account:
 | 
			
		||||
        attribution_domains_as_text: Сайти дозволяють вам вказувати ваше авторство
 | 
			
		||||
        attribution_domains: Сайти дозволяють вам вказувати ваше авторство
 | 
			
		||||
        discoverable: Функції профілю та дописів у алгоритмах виявлення
 | 
			
		||||
        fields:
 | 
			
		||||
          name: Мітка
 | 
			
		||||
 
 | 
			
		||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user