Merge upstream!! #64 <3 <3

This commit is contained in:
kibigo!
2017-07-12 02:03:17 -07:00
340 changed files with 4980 additions and 2321 deletions

View File

@ -45,6 +45,7 @@ module Mastodon
:io,
:it,
:ja,
:ko,
:nl,
:no,
:oc,

View File

@ -62,6 +62,8 @@ Rails.application.configure do
# routes, locales, etc. This feature depends on the listen gem.
# config.file_watcher = ActiveSupport::EventedFileUpdateChecker
config.action_mailer.default_options = { from: 'notifications@localhost' }
# If using a Heroku, Vagrant or generic remote development environment,
# use letter_opener_web, accessible at /letter_opener.
# Otherwise, use letter_opener, which launches a browser window to view sent mail.

View File

@ -73,6 +73,8 @@ Rails.application.configure do
config.action_mailer.perform_caching = false
# E-mails
config.action_mailer.default_options = { from: ENV.fetch('SMTP_FROM_ADDRESS') }
config.action_mailer.smtp_settings = {
:port => ENV['SMTP_PORT'],
:address => ENV['SMTP_SERVER'],

View File

@ -30,6 +30,8 @@ Rails.application.configure do
config.action_controller.allow_forgery_protection = false
config.action_mailer.perform_caching = false
config.action_mailer.default_options = { from: 'notifications@localhost' }
# Tell Action Mailer not to deliver emails to the real world.
# The :test delivery method accumulates sent emails in the
# ActionMailer::Base.deliveries array.

View File

@ -0,0 +1,3 @@
ActiveModelSerializers.config.tap do |config|
config.default_includes = '**'
end

View File

@ -1,17 +1,29 @@
Warden::Manager.after_set_user except: :fetch do |user, warden|
SessionActivation.deactivate warden.raw_session['auth_id']
warden.raw_session['auth_id'] = user.activate_session(warden.request)
SessionActivation.deactivate warden.cookies.signed['_session_id']
warden.cookies.signed['_session_id'] = {
value: user.activate_session(warden.request),
expires: 1.year.from_now,
httponly: true,
}
end
Warden::Manager.after_fetch do |user, warden|
unless user.session_active?(warden.raw_session['auth_id'])
if user.session_active?(warden.cookies.signed['_session_id'] || warden.raw_session['auth_id'])
warden.cookies.signed['_session_id'] = {
value: warden.cookies.signed['_session_id'] || warden.raw_session['auth_id'],
expires: 1.year.from_now,
httponly: true,
}
else
warden.logout
throw :warden, message: :unauthenticated
end
end
Warden::Manager.before_logout do |_, warden|
SessionActivation.deactivate warden.raw_session['auth_id']
SessionActivation.deactivate warden.cookies.signed['_session_id']
warden.cookies.delete('_session_id')
end
Devise.setup do |config|

View File

@ -50,14 +50,14 @@ SimpleForm.setup do |config|
# b.use :full_error, wrap_with: { tag: :span, class: :error }
end
config.wrappers :with_label, class: :input, hint_class: :field_with_hint, error_class: :field_with_errors do |b|
config.wrappers :with_label, class: [:input, :with_label], hint_class: :field_with_hint, error_class: :field_with_errors do |b|
b.use :html5
b.use :label_input, wrap_with: { tag: :div, class: :label_input }
b.use :hint, wrap_with: { tag: :span, class: :hint }
b.use :error, wrap_with: { tag: :span, class: :error }
end
config.wrappers :with_block_label, class: :input, hint_class: :field_with_hint, error_class: :field_with_errors do |b|
config.wrappers :with_block_label, class: [:input, :with_block_label], hint_class: :field_with_hint, error_class: :field_with_errors do |b|
b.use :html5
b.use :label
b.use :hint, wrap_with: { tag: :span, class: :hint }

View File

@ -0,0 +1,12 @@
fr:
activerecord:
errors:
models:
account:
attributes:
username:
invalid: seulement des lettres, des nombres et des tirets bas
status:
attributes:
reblog:
taken: du statut existe déjà

View File

@ -1,5 +1,8 @@
ja:
activerecord:
attributes:
user:
email: メールアドレス
errors:
models:
account:

View File

@ -1,5 +1,8 @@
pl:
activerecord:
attributes:
user:
email: adres e-mail
errors:
models:
account:

View File

@ -3,23 +3,12 @@ ar:
about:
about_mastodon: ماستدون شبكة إجتماعية <em>حرة و مفتوحة المصدر</em>. هو بديل <em>لامركزي</em> لمنصات تجارية ، يمكنك من تجنب احتكار شركة واحدة للإتصالات الخاصة بك. يمكنك اختيار أي خادم تثق فيه. أيهما تختار، يمكنك التفاعل مع أي شخص آخر على الشبكة. يمكن لأي شخص تنصيب و تشغيل خادم ماستدون خاص به والمشاركة في <em>الشبكات الاجتماعية</em> بكل شفافية.
about_this: عن مثيل الخادوم هذا
apps: التطبيقات
business_email: 'البريد الإلكتروني المهني :'
closed_registrations: التسجيلات في مثيل الخادوم هذا مُغلقة حاليًا.
contact: للتواصل معنا
description_headline: ما هو %{domain}?
domain_count_after: خوادم أخرى
domain_count_before: متصل بـ
features:
api: واجهة برمجة مفتوحة للتطبيقات والخدمات
blocks: نص منسق وأدوات كتم
characters: 500 حرف في كل رسالة
chronology: خيوط متسلسلة زمنيا
ethics: 'تصميم أخلاقي : لا إعلانات و لا تعقُّب'
gifv: مجموعات صور GIFV وأشرطة فيديو قصيرة
privacy: إعدادات مدققة لخصوصية كل منشور
public: الخيوط الزمنية العمومية
features_headline: ما الذي يجعل ماستدون فريدًا ؟
get_started: إبدأ الآن
links: الروابط
other_instances: خوادم أخرى
@ -93,7 +82,7 @@ ar:
blocking: قائمة المحظورين
following: قائمة المستخدمين المتبوعين
upload: تحميل
landing_strip_html: <strong>%{name}</strong> is a user on %{link_to_root_path}. You can follow them or interact with them if you have an account anywhere in the fediverse..
landing_strip_html: "<strong>%{name}</strong> is a user on %{link_to_root_path}. You can follow them or interact with them if you have an account anywhere in the fediverse.."
landing_strip_signup_html: If you don't, you can <a href="%{sign_up_path}">sign up here</a>.
media_attachments:
validations:

View File

@ -3,23 +3,12 @@ bg:
about:
about_mastodon: Mastodon е <em>безплатен</em> сървър с <em>отворен код</em> за социални мрежи. Като <em>децентрализирана</em> алтернатива на комерсиалните платформи, той позволява избягването на риска от монополизация на твоята комуникация от единични компании. Изберете си сървър, на който се доверявате, и ще можете да контактувате с всички останали. Всеки може да пусне Mastodon и лесно да вземе участие в <em>социалната мрежа</em>.
about_this: За тази инстанция
apps: Приложения
business_email: 'Служебен e-mail:'
closed_registrations: В момента регистрациите за тази инстанция са затворени.
contact: За контакти
description_headline: Какво е %{domain}?
domain_count_after: други инстанции
domain_count_before: Свързани към
features:
api: Отворено API за приложения и услуги
blocks: Богат на инструменти за блокиране и заглушаване
characters: Публикации от 500 символа
chronology: Публикациите се показват хронологично
ethics: 'Етичен дизайн: без реклами и проследяване'
gifv: GIFV комплекти и кратки видео клипове
privacy: Настройване на поверителността за всяка публикация
public: Публични канали
features_headline: Какво откроява Mastodon
get_started: Първи стъпки
links: Връзки
other_instances: Други инстанции
@ -93,7 +82,7 @@ bg:
blocking: Списък на блокираните
following: Списък на последователите
upload: Качване
landing_strip_html: <strong>%{name}</strong> е потребител от %{link_to_root_path}. Можеш да ги следваш, или да контактуваш с тях, ако имаш акаунт където и да е из федерираната вселена на Mastodon.
landing_strip_html: "<strong>%{name}</strong> е потребител от %{link_to_root_path}. Можеш да ги следваш, или да контактуваш с тях, ако имаш акаунт където и да е из федерираната вселена на Mastodon."
landing_strip_signup_html: Ако нямаш акаунт, можеш да си <a href="%{sign_up_path}">създадеш ето тук</a>.
media_attachments:
validations:

View File

@ -3,23 +3,12 @@ ca:
about:
about_mastodon: Mastodon és un servidor de xarxa social <em>lliure i de codi obert</em>. Una alternativa <em>descentralitzada</em> a plataformes comercials, que evita el risc que una única companyia monopolitzi la teva comunicació. Qualsevol pot executar Mastodon i participar sense problemes en la <em>xarxa social</em>.
about_this: Sobre aquesta instància
apps: Apps
business_email: 'Adreça de contacte:'
closed_registrations: Els registres estan actualment tancats en aquesta instància.
contact: Contacte
description_headline: Què es %{domain}?
domain_count_after: altres instàncies
domain_count_before: Connectat a
features:
api: API pública per a aplicacions i serveis
blocks: Moderació de contingut
characters: 500 caràcters per publicació
chronology: Les histories son cronològiques
ethics: 'Disseny ètic: sense anuncis, sense rastrejos'
gifv: Vídeos curts i GIFV
privacy: Configuracions de privacitat ajustables
public: Història federada
features_headline: El que distingeix a Mastodon
get_started: Començar
links: Vincles
other_instances: Altres instàncies
@ -166,17 +155,13 @@ ca:
settings:
contact_information:
email: Introduir una adreça de correu electrònic pùblica
label: Informació de contacte
username: Introduir un nom d'usuari
registrations:
closed_message:
desc_html: Apareix en la primera pàgina quan es tanquen els registres<br>Pot utilitzar etiquetes HTML
title: Missatge de registre tancat
open:
disabled: Desactivat
enabled: Activat
title: Registre obert
setting: Ajust
site_description:
desc_html: Es mostra com un paràgraf a la pàgina principal i s'utilitza com una etiqueta meta.<br>Pots utilitzar etiquetes HTML, en particular <code>&lt;a&gt;</code> i <code>&lt;em&gt;</code>.
title: Descripció del lloc
@ -203,8 +188,8 @@ ca:
change_password: Canviar contrasenya
delete_account: Esborrar el compte
delete_account_html: Si vols esborrar el teu compte pots <a href="%{path}">fer-ho aquí</a>. S'et demanarà confirmació.
didnt_get_confirmation: "No vas rebre el correu de confirmació?"
forgot_password: "Has oblidat la contrasenya?"
didnt_get_confirmation: No vas rebre el correu de confirmació?
forgot_password: Has oblidat la contrasenya?
login: Iniciar sessió
logout: Tancar sessió
register: Enregistrarse

View File

@ -3,23 +3,12 @@ de:
about:
about_mastodon: Mastodon ist ein <em>freier, quelloffener</em> sozialer Netzwerkserver. Als <em>dezentralisierte</em> Alternative zu kommerziellen Plattformen verhindert es die Risiken, die entstehen, wenn eine einzelne Firma deine Kommunikation monopolisiert. Jeder kann Mastodon verwenden und ganz einfach am <em>sozialen Netzwerk</em> teilnehmen.
about_this: Über diese Instanz
apps: Apps
business_email: 'Geschäftliche E-Mail:'
closed_registrations: Die Registrierung ist auf dieser Instanz momentan geschlossen.
contact: Kontakt
description_headline: Was ist %{domain}?
domain_count_after: andere Instanzen
domain_count_before: Verbunden mit
features:
api: Offene API für Apps und Dienste
blocks: Mächtige Block- und Stummschaltungswerkzeuge
characters: 500 Zeichen pro Beitrag
chronology: Zeitleisten sind chronologisch
ethics: 'Ethisches Design: keine Werbung, kein Tracking'
gifv: GIFV-Sets und kurze Videos
privacy: Granulare Privatsphäre-Einstellungen für jeden Beitrag
public: Öffentliche Zeitleisten
features_headline: Was Mastodon einzigartig macht
get_started: Erste Schritte
links: Links
other_instances: Andere Instanzen
@ -140,17 +129,13 @@ de:
settings:
contact_information:
email: Eine öffentliche E-Mail-Adresse angeben
label: Kontaktinformationen
username: Einen Benutzernamen angeben
registrations:
closed_message:
desc_html: Wird auf der Frontseite angezeigt, wenn die Registrierung geschlossen ist<br>Du kannst HTML-Tags benutzen
title: Nachricht über geschlossene Registrierung
open:
disabled: Deaktiviert
enabled: Aktiviert
title: Offene Registrierung
setting: Einstellung
site_description:
desc_html: Wird als Absatz auf der Frontseite angezeigt und als Meta-Tag benutzt.<br>Du kannst HTML-Tags benutzen, insbesondere <code>&lt;a&gt;</code> und <code>&lt;em&gt;</code>.
title: Seitenbeschreibung

View File

@ -3,8 +3,8 @@ fr:
devise:
confirmations:
confirmed: Votre compte a été validé.
send_instructions: Vous allez recevoir les instructions nécessaires à la confirmation de votre compte dans quelques minutes.
send_paranoid_instructions: Si votre adresse e-mail existe dans notre base de données, vous allez bientôt recevoir un courriel contenant les instructions de confirmation de votre compte.
send_instructions: Vous allez recevoir les instructions nécessaires à la confirmation de votre compte dans quelques minutes. Sil vous plaît, dans le cas où vous ne recevriez pas ce message, vérifiez votre dossier dindésirables.
send_paranoid_instructions: Si votre adresse électronique existe dans notre base de données, vous allez bientôt recevoir un courriel contenant les instructions de confirmation de votre compte. Sil vous plaît, dans le cas où vous ne recevriez pas ce message, vérifiez votre dossier dindésirables.
failure:
already_authenticated: Vous êtes déjà connecté⋅e
inactive: Votre compte nest pas encore activé.
@ -25,12 +25,12 @@ fr:
unlock_instructions:
subject: Instructions pour déverrouiller votre compte
omniauth_callbacks:
failure: 'Nous navons pas pu vous authentifier via %{kind} : ''%{reason}''.'
failure: 'Nous navons pas pu vous authentifier via %{kind}: ''%{reason}''.'
success: Authentifié avec succès via %{kind}.
passwords:
no_token: Vous ne pouvez accéder à cette page sans passer par un courriel de réinitialisation de mot de passe. Si vous êtes passé⋅e par un courriel de ce type, assurez-vous d'utiliser l'URL complète.
send_instructions: Vous allez recevoir les instructions de réinitialisation du mot de passe dans quelques instants
send_paranoid_instructions: Si votre addresse e-mail existe dans notre base de données, vous allez recevoir un lien de réinitialisation par courriel
no_token: Vous ne pouvez accéder à cette page sans passer par un courriel de réinitialisation de mot de passe. Si vous êtes passé⋅e par un courriel de ce type, assurez-vous dutiliser lURL complète.
send_instructions: Vous allez recevoir les instructions de réinitialisation du mot de passe dans quelques instants. Sil vous plaît, dans le cas où vous ne recevriez pas ce message, vérifiez votre dossier dindésirables.
send_paranoid_instructions: Si votre addresse électronique existe dans notre base de données, vous allez recevoir un lien de réinitialisation par courriel. Sil vous plaît, dans le cas où vous ne recevriez pas ce message, vérifiez votre dossier dindésirables.
updated: Votre mot de passe a été modifié avec succès, vous êtes maintenant connecté⋅e
updated_not_active: Votre mot de passe a été modifié avec succès.
registrations:
@ -46,8 +46,8 @@ fr:
signed_in: Connecté.
signed_out: Déconnecté.
unlocks:
send_instructions: Vous allez recevoir les instructions nécessaires au déverrouillage de votre compte dans quelques instants
send_paranoid_instructions: Si votre compte existe, vous allez bientôt recevoir un courriel contenant les instructions pour le déverrouiller.
send_instructions: Vous allez recevoir les instructions nécessaires au déverrouillage de votre compte dans quelques instants. Sil vous plaît, dans le cas où vous ne recevriez pas ce message, vérifiez votre dossier dindésirables.
send_paranoid_instructions: Si votre compte existe, vous allez bientôt recevoir un courriel contenant les instructions pour le déverrouiller. Sil vous plaît, dans le cas où vous ne recevriez pas ce message, vérifiez votre dossier dindésirables.
unlocked: Votre compte a été déverrouillé avec succès, vous êtes maintenant connecté⋅e.
errors:
messages:

View File

@ -8,10 +8,10 @@ pl:
failure:
already_authenticated: Jesteś już zalogowany/zalogowana.
inactive: Twoje konto nie zostało jeszcze aktywowane.
invalid: Błędne %{authentication_keys} lub hasło.
invalid: Nieprawidłowy %{authentication_keys} lub hasło.
last_attempt: Masz jeszcze jedną próbę; Twoje konto zostanie zablokowane jeśli się nie powiedzie.
locked: Twoje konto zostało zablokowane.
not_found_in_database: Błędne %{authentication_keys} lub hasło.
not_found_in_database: Nieprawidłowy %{authentication_keys} lub hasło.
timeout: Twoja sesja wygasła. Zaloguj się ponownie aby kontynuować..
unauthenticated: Zapisz się lub zaloguj aby kontynuować.
unconfirmed: Zweryfikuj adres e-mail aby kontynuować.

View File

@ -6,12 +6,12 @@ fr:
remote_follow:
attributes:
acct:
blank: Le nom d'utilisateur ne doit pas être vide
blank: Le nom dutilisateur ne doit pas être vide
activerecord:
attributes:
doorkeeper/application:
name: Nom
redirect_uri: L'URL de redirection
redirect_uri: LURL de redirection
errors:
messages:
record_invalid: Données invalides
@ -50,17 +50,17 @@ fr:
edit: Modifier
submit: Envoyer
confirmations:
destroy: Êtes-vous certain ?
destroy: Êtes-vous certain·e?
edit:
title: Modifier l'application
title: Modifier lapplication
form:
error: Oups ! Vérifier votre formulaire pour des erreurs possibles
error: Oups! Vérifier votre formulaire pour des erreurs possibles
help:
native_redirect_uri: Utiliser %{native_redirect_uri} pour les tests locaux
redirect_uri: Utiliser une ligne par URL
scopes: Séparer les portées avec des espaces. Laisser vide pour utiliser les portées par défaut.
index:
callback_url: URL de retour d'appel
callback_url: URL de retour dappel
name: Nom
new: Nouvelle application
title: Vos applications
@ -68,11 +68,11 @@ fr:
title: Nouvelle application
show:
actions: Actions
application_id: ID de l'application
callback_urls: URL du retour d'appel
application_id: ID de lapplication
callback_urls: URL du retour dappel
scopes: Portées
secret: Secret
title: 'Application : %{name}'
title: 'Application: %{name}'
authorizations:
buttons:
authorize: Autoriser
@ -81,15 +81,15 @@ fr:
title: Une erreur est survenue
new:
able_to: Cette application pourra
prompt: Autoriser %{client_name} à utiliser votre compte ?
prompt: Autoriser %{client_name} à utiliser votre compte?
title: Autorisation requise
show:
title: Code d'autorisation
title: Code dautorisation
authorized_applications:
buttons:
revoke: Annuler
confirmations:
revoke: Êtes-vous certain ?
revoke: Êtes-vous certain·e?
index:
application: Application
created_at: Créé le
@ -98,24 +98,24 @@ fr:
title: Vos applications autorisées
errors:
messages:
access_denied: Le propriétaire de la ressource ou le serveur d'autorisation a refusé la requête.
credential_flow_not_configured: Le flux des identifiants du mot de passe du propriétaire de la ressource a échoué car Doorkeeper.configure.resource_owner_from_credentials n'est pas configuré.
invalid_client: L'authentification du client a échoué à cause d'un client inconnu, d'aucune authentification de client incluse ou d'une méthode d'authentification non prise en charge.
invalid_grant: Le consentement d'autorisation accordé n'est pas valide, a expiré, est annulé, ne concorde pas avec l'URL de redirection utilisée dans la requête d'autorisation ou a été émis à un autre client.
invalid_redirect_uri: L'URL de redirection n'est pas valide.
access_denied: Le propriétaire de la ressource ou le serveur dautorisation a refusé la requête.
credential_flow_not_configured: Le flux des identifiants du mot de passe du propriétaire de la ressource a échoué car Doorkeeper.configure.resource_owner_from_credentials nest pas configuré.
invalid_client: Lauthentification du client a échoué à cause dun client inconnu, daucune authentification de client incluse ou dune méthode dauthentification non prise en charge.
invalid_grant: Le consentement dautorisation accordé nest pas valide, a expiré, est annulé, ne concorde pas avec lURL de redirection utilisée dans la requête dautorisation ou a été émis à un autre client.
invalid_redirect_uri: LURL de redirection nest pas valide.
invalid_request: La requête omet un paramètre requis, inclut une valeur de paramètre non prise en charge ou est autrement mal formée.
invalid_resource_owner: Les identifiants fournis par le propriétaire de la ressource ne sont pas valides ou le propriétaire de la ressource ne peut être trouvé
invalid_scope: La portée demandée n'est pas valide, est inconnue ou mal formée.
invalid_scope: La portée demandée nest pas valide, est inconnue ou mal formée.
invalid_token:
expired: Le jeton d'accès a expiré
revoked: Le jeton d'accès a été révoqué
unknown: Le jeton d'accès n'est pas valide
resource_owner_authenticator_not_configured: La recherche du propriétaire de la ressource a échoué car Doorkeeper.configure.resource_owner_authenticator n'est pas configuré.
server_error: Le serveur d'autorisation a rencontré une condition inattendue l'empêchant de faire aboutir la requête.
temporarily_unavailable: Le serveur d'autorisation est actuellement incapable de traiter la requête à cause d'une surcharge ou d'une maintenance temporaire du serveur.
unauthorized_client: Le client n'est pas autorisé à effectuer cette requête à l'aide de cette méthode.
unsupported_grant_type: Le type de consentement d'autorisation n'est pas pris en charge par le serveur d'autorisation.
unsupported_response_type: Le serveur d'autorisation ne prend pas en charge ce type de réponse.
expired: Le jeton daccès a expiré
revoked: Le jeton daccès a été révoqué
unknown: Le jeton daccès nest pas valide
resource_owner_authenticator_not_configured: La recherche du propriétaire de la ressource a échoué car Doorkeeper.configure.resource_owner_authenticator nest pas configuré.
server_error: Le serveur dautorisation a rencontré une condition inattendue lempêchant de faire aboutir la requête.
temporarily_unavailable: Le serveur dautorisation est actuellement incapable de traiter la requête à cause dune surcharge ou dune maintenance temporaire du serveur.
unauthorized_client: Le client nest pas autorisé à effectuer cette requête à laide de cette méthode.
unsupported_grant_type: Le type de consentement dautorisation nest pas pris en charge par le serveur dautorisation.
unsupported_response_type: Le serveur dautorisation ne prend pas en charge ce type de réponse.
flash:
applications:
create:

View File

@ -1,28 +1,30 @@
---
en:
about:
about_mastodon: Mastodon is a <em>free, open-source</em> social network. A <em>decentralized</em> alternative to commercial platforms, it avoids the risks of a single company monopolizing your communication. Pick a server that you trust &mdash; whichever you choose, you can interact with everyone else. Anyone can run their own Mastodon instance and participate in the <em>social network</em> seamlessly.
about_this: About this instance
apps: Apps
about_mastodon_html: Mastodon is a social network based on open web protocols and free, open-source software. It is decentralized like e-mail.
about_this: About
business_email: 'Business e-mail:'
closed_registrations: Registrations are currently closed on this instance.
closed_registrations: Registrations are currently closed on this instance. However! You can find a different instance to make an account on and get access to the very same network from there.
contact: Contact
description_headline: What is %{domain}?
domain_count_after: other instances
domain_count_before: Connected to
features:
api: Open API for apps and services
blocks: Rich block and muting tools
characters: 500 characters per post
chronology: Timelines are chronological
ethics: 'Ethical design: no ads, no tracking'
gifv: GIFV sets and short videos
privacy: Granular, per-post privacy settings
public: Public timelines
features_headline: What sets Mastodon apart
humane_approach_body: Learning from failures of other networks, Mastodon aims to make ethical design choices to combat the misuse of social media.
humane_approach_title: A more humane approach
not_a_product_body: Mastodon is not a commercial network. No advertising, no data mining, no walled gardens. There is no central authority.
not_a_product_title: Youre a person, not a product
real_conversation_body: With 500 characters at your disposal and support for granular content and media warnings, you can express yourself the way you want to.
real_conversation_title: Built for real conversation
within_reach_body: Multiple apps for iOS, Android, and other platforms thanks to a developer-friendly API ecosystem allow you to keep up with your friends anywhere.
within_reach_title: Always within reach
find_another_instance: Find another instance
generic_description: "%{domain} is one server in the network"
get_started: Get started
hosted_on: Mastodon hosted on %{domain}
learn_more: Learn more
links: Links
other_instances: Other instances
other_instances: Instance list
source_code: Source code
status_count_after: statuses
status_count_before: Who authored
@ -30,6 +32,7 @@ en:
user_count_after: users
user_count_before: Home to
version: Version
what_is_mastodon: What is Mastodon?
accounts:
follow: Follow
followers: Followers
@ -165,25 +168,31 @@ en:
view: View
settings:
contact_information:
email: Enter a public e-mail address
label: Contact information
username: Enter a username
email: Business e-mail
username: Contact username
registrations:
closed_message:
desc_html: Displayed on frontpage when registrations are closed<br>You can use HTML tags
desc_html: Displayed on frontpage when registrations are closed. You can use HTML tags
title: Closed registration message
deletion:
desc_html: Allow anyone to delete their account
title: Open account deletion
open:
disabled: Disabled
enabled: Enabled
desc_html: Allow anyone to create an account
title: Open registration
setting: Setting
site_description:
desc_html: Displayed as a paragraph on the frontpage and used as a meta tag.<br>You can use HTML tags, in particular <code>&lt;a&gt;</code> and <code>&lt;em&gt;</code>.
title: Site description
desc_html: Introductory paragraph on the frontpage and in meta tags. You can use HTML tags, in particular <code>&lt;a&gt;</code> and <code>&lt;em&gt;</code>.
title: Instance description
site_description_extended:
desc_html: Displayed on extended information page<br>You can use HTML tags
title: Extended site description
site_title: Site title
desc_html: A good place for your code of conduct, rules, guidelines and other things that set your instance apart. You can use HTML tags
title: Custom extended information
site_terms:
desc_html: You can write your own privacy policy, terms of service or other legalese. You can use HTML tags
title: Custom terms of service
site_title: Instance name
timeline_preview:
desc_html: Display public timeline on landing page
title: Timeline preview
title: Site Settings
subscriptions:
callback_url: Callback URL
@ -204,6 +213,7 @@ en:
applications:
invalid_url: The provided URL is invalid
auth:
agreement_html: By signing up you agree to <a href="%{rules_path}">our terms of service</a> and <a href="%{terms_path}">privacy policy</a>.
change_password: Security
delete_account: Delete account
delete_account_html: If you wish to delete your account, you can <a href="%{path}">proceed here</a>. You will be asked for confirmation.
@ -218,6 +228,12 @@ en:
authorize_follow:
error: Unfortunately, there was an error looking up the remote account
follow: Follow
follow_request: 'You have sent a follow request to:'
following: 'Success! You are now following:'
post_follow:
close: Or, you can just close this window.
return: Return to the user's profile
web: Go to web
prompt_html: 'You (<strong>%{self}</strong>) have requested to follow:'
title: Follow %{acct}
datetime:
@ -387,6 +403,76 @@ en:
click_to_show: Click to show
reblogged: boosted
sensitive_content: Sensitive content
terms:
body_html: |
<h2>Privacy Policy</h2>
<h3 id="collect">What information do we collect?</h3>
<p>We collect information from you when you register on our site and gather data when you participate in the forum by reading, writing, and evaluating the content shared here.</p>
<p>When registering on our site, you may be asked to enter your name and e-mail address. You may, however, visit our site without registering. Your e-mail address will be verified by an email containing a unique link. If that link is visited, we know that you control the e-mail address.</p>
<p>When registered and posting, we record the IP address that the post originated from. We also may retain server logs which include the IP address of every request to our server.</p>
<h3 id="use">What do we use your information for?</h3>
<p>Any of the information we collect from you may be used in one of the following ways:</p>
<ul>
<li>To personalize your experience &mdash; your information helps us to better respond to your individual needs.</li>
<li>To improve our site &mdash; we continually strive to improve our site offerings based on the information and feedback we receive from you.</li>
<li>To improve customer service &mdash; your information helps us to more effectively respond to your customer service requests and support needs.</li>
<li>To send periodic emails &mdash; The email address you provide may be used to send you information, notifications that you request about changes to topics or in response to your user name, respond to inquiries, and/or other requests or questions.</li>
</ul>
<h3 id="protect">How do we protect your information?</h3>
<p>We implement a variety of security measures to maintain the safety of your personal information when you enter, submit, or access your personal information.</p>
<h3 id="data-retention">What is your data retention policy?</h3>
<p>We will make a good faith effort to:</p>
<ul>
<li>Retain server logs containing the IP address of all requests to this server no more than 90 days.</li>
<li>Retain the IP addresses associated with registered users and their posts no more than 5 years.</li>
</ul>
<h3 id="cookies">Do we use cookies?</h3>
<p>Yes. Cookies are small files that a site or its service provider transfers to your computer's hard drive through your Web browser (if you allow). These cookies enable the site to recognize your browser and, if you have a registered account, associate it with your registered account.</p>
<p>We use cookies to understand and save your preferences for future visits and compile aggregate data about site traffic and site interaction so that we can offer better site experiences and tools in the future. We may contract with third-party service providers to assist us in better understanding our site visitors. These service providers are not permitted to use the information collected on our behalf except to help us conduct and improve our business.</p>
<h3 id="disclose">Do we disclose any information to outside parties?</h3>
<p>We do not sell, trade, or otherwise transfer to outside parties your personally identifiable information. This does not include trusted third parties who assist us in operating our site, conducting our business, or servicing you, so long as those parties agree to keep this information confidential. We may also release your information when we believe release is appropriate to comply with the law, enforce our site policies, or protect ours or others rights, property, or safety. However, non-personally identifiable visitor information may be provided to other parties for marketing, advertising, or other uses.</p>
<h3 id="third-party">Third party links</h3>
<p>Occasionally, at our discretion, we may include or offer third party products or services on our site. These third party sites have separate and independent privacy policies. We therefore have no responsibility or liability for the content and activities of these linked sites. Nonetheless, we seek to protect the integrity of our site and welcome any feedback about these sites.</p>
<h3 id="coppa">Children's Online Privacy Protection Act Compliance</h3>
<p>Our site, products and services are all directed to people who are at least 13 years old. If this server is in the USA, and you are under the age of 13, per the requirements of COPPA (<a href="https://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act">Children's Online Privacy Protection Act</a>) do not use this site.</p>
<h3 id="online">Online Privacy Policy Only</h3>
<p>This online privacy policy applies only to information collected through our site and not to information collected offline.</p>
<h3 id="consent">Your Consent</h3>
<p>By using our site, you consent to our web site privacy policy.</p>
<h3 id="changes">Changes to our Privacy Policy</h3>
<p>If we decide to change our privacy policy, we will post those changes on this page.</p>
<p>This document is CC-BY-SA. It was last updated May 31, 2013.</p>
<p>Originally adapted from the <a href="https://github.com/discourse/discourse">Discourse privacy policy</a>.
title: "%{instance} Terms of Service and Privacy Policy"
time:
formats:
default: "%b %d, %Y, %H:%M"

View File

@ -3,22 +3,11 @@ eo:
about:
about_mastodon: Mastodon estas <em>senpaga, malfermitkoda</em> socia reto. Ĝi estas <em>sencentra</em> alia eblo al komercaj servoj. Ĝi evitigas, ke unusola firmao regu vian tutan komunikadon. Elektu servilon, kiun vi fidas. Kiu ajn estas via elekto, vi povas interagi kun ĉiuj aliaj uzantoj. Iu ajn povas krei sian propran aperaĵon de Mastodon en sia servilo, kaj partopreni en la <em>socia reto</em> tute glate.
about_this: Pri tiu aperaĵo
apps: Aplikaĵoj
business_email: 'Profesia retpoŝt-adreso:'
contact: Kontakti
description_headline: Kio estas %{domain}?
domain_count_after: aliaj aperaĵoj
domain_count_before: Konektita al
features:
api: Malfermita API por aplikaĵoj kaj servoj
blocks: Kompletaj iloj por bloki kaj kaŝi
characters: Po 500 signoj por ĉiu mesaĝo
chronology: Tempolinioj laŭtempaj
ethics: 'Etike kreita: neniu reklamo, neniu ŝpurado'
gifv: Eblo diskonigi etajn videojn kaj GIFV
privacy: Videbleco agordita laŭ la mesaĝo
public: Publikaj tempolinioj
features_headline: Kiel Mastodon estas malsimila
get_started: Komenci
links: Ligiloj
other_instances: Aliaj aperaĵoj
@ -92,7 +81,7 @@ eo:
blocking: Listo de blokitoj
following: Listo de sekvatoj
upload: Alporti
landing_strip_html: <strong>%{name}</strong> estas uzanto en %{link_to_root_path}. Vi povas sekvi tiun aŭ interagi kun tiu, se vi havas konton ie ajn en la Fediverse.
landing_strip_html: "<strong>%{name}</strong> estas uzanto en %{link_to_root_path}. Vi povas sekvi tiun aŭ interagi kun tiu, se vi havas konton ie ajn en la Fediverse."
landing_strip_signup_html: Se vi ne havas, vi povas <a href="%{sign_up_path}">membriĝi ĉi tie.</a>.
notification_mailer:
digest:
@ -105,19 +94,19 @@ eo:
one: "1 nova sciigo ekde via lasta vizito \U0001F418"
other: "%{count} novaj sciigoj ekde via lasta vizito \U0001F418"
favourite:
body: '%{name} favoris vian mesaĝon:'
body: "%{name} favoris vian mesaĝon:"
subject: "%{name} favoris vian mesaĝon"
follow:
body: "%{name} eksekvis vin:"
subject: "%{name} eksekvis vin"
follow_request:
body: "%{name} petis sekvi vin:"
subject: '%{name} petis sekvi vin'
subject: "%{name} petis sekvi vin"
mention:
body: '%{name} menciis vin en:'
subject: '%{name} menciis vin'
body: "%{name} menciis vin en:"
subject: "%{name} menciis vin"
reblog:
body: '%{name} diskonigis vian mesaĝon:'
body: "%{name} diskonigis vian mesaĝon:"
subject: "%{name} diskonigis vian mesaĝon"
pagination:
next: Sekva

View File

@ -3,23 +3,12 @@ es:
about:
about_mastodon: Mastodon es un servidor de red social <em>libre y de código abierto</em>. Una alternativa <em>descentralizada</em> a plataformas comerciales, que evita el riesgo de que una única compañía monopolice tu comunicación. Cualquiera puede ejecutar Mastodon y participar sin problemas en la <em>red social</em>.
about_this: Acerca de esta instancia
apps: Apps
business_email: 'Correo de negocios:'
closed_registrations: Los registros están actualmente cerrados en esta instancia.
contact: Contacto
description_headline: "¿Qué es %{domain}?"
domain_count_after: otras instancias
domain_count_before: Conectado a
features:
api: API pública para aplicaciones y servicios
blocks: Moderación de contenido
characters: 500 caracteres por publicación
chronology: Las historias son cronológicas
ethics: 'Diseño etico: sin anuncios, sin rastreos'
gifv: Videos cortos y GIFV
privacy: Configuraciones de privacidad ajustables
public: Historia federada
features_headline: Lo que distingue a Mastodon
get_started: Comenzar
links: Enlaces
other_instances: Otras instancias
@ -93,7 +82,7 @@ es:
blocking: Lista de bloqueados
following: Lista de seguidos
upload: Cargar
landing_strip_html: <strong>%{name}</strong> es un usuario en %{link_to_root_path}. Puedes seguirlo(a) o interactuar con el o ella si tienes una cuenta en cualquier parte del fediverse.
landing_strip_html: "<strong>%{name}</strong> es un usuario en %{link_to_root_path}. Puedes seguirlo(a) o interactuar con el o ella si tienes una cuenta en cualquier parte del fediverse."
landing_strip_signup_html: Si no tienes una, puedes <a href="%{sign_up_path}">registrar aquí</a>.
media_attachments:
validations:

View File

@ -3,23 +3,12 @@ fa:
about:
about_mastodon: ماستدون (Mastodon) یک شبکهٔ اجتماعی <em>آزاد و کدباز</em> است. یک جایگزین <em>غیرمتمرکز</em> برای شبکه‌های تجاری، که نمی‌گذارد ارتباط‌های شما را یک شرکت در انحصار خود بگیرد. یک سرور مورد اعتماد را انتخاب کنید &mdash; هر سروری که باشد، همچنان می‌توانید با سرورهای دیگر ارتباط داشته باشید. هر کسی می‌تواند سرور ماستدون خود را راه بیندازد و در <em>شبکهٔ اجتماعی</em> سهیم شود.
about_this: دربارهٔ این سرور
apps: برنامه‌ها
business_email: 'ایمیل کاری:'
closed_registrations: امکان ثبت نام روی این سرور هم‌اینک فعال نیست.
contact: تماس
description_headline: "%{domain} چیست؟"
domain_count_after: سرور دیگر
domain_count_before: متصل به
features:
api: رابط برنامه‌نویسی برای برنامه‌ها و سرویس‌های دیگر
blocks: ابزارهای قدرتمند برای مسدود یا بی‌صدا کردن دیگران
characters: ۵۰۰ حرف برای هر نوشته
chronology: نمایش نوشته‌های دیگران به ترتیب زمانی
ethics: 'اخلاق‌مدار: بدون تبلیغات، بدون ردگیری'
gifv: تصاویر متحرک و ویدیوهای کوتاه
privacy: تنظیمات حریم خصوصی جداگانه برای هر نوشته
public: نمایش نوشته‌های عمومی دیگران از همه‌جا
features_headline: برگ‌های برندهٔ ماستدون
get_started: آغاز کنید
links: پیوندها
other_instances: سرورهای دیگر
@ -152,17 +141,13 @@ fa:
settings:
contact_information:
email: یک نشانی ایمیل عمومی وارد کنید
label: اطلاعات تماس
username: یک نام کاربری وارد کنید
registrations:
closed_message:
desc_html: وقتی امکان ثبت نام روی سرور فعال نباشد در صفحهٔ اصلی نمایش می‌یابد<br>می‌توانید HTML بنویسید
title: پیغام برای فعال‌نبودن ثبت نام
open:
disabled: غیرفعال
enabled: فعال
title: امکان ثبت نام
setting: تنظیمات
site_description:
desc_html: روی صفحهٔ اصلی نمایش می‌یابد و همچنین به عنوان تگ‌های HTML.<br>می‌توانید HTML بنویسید, به‌ویژه <code>&lt;a&gt;</code> و <code>&lt;em&gt;</code>.
title: دربارهٔ سایت

View File

@ -3,22 +3,11 @@ fi:
about:
about_mastodon: Mastodon on <em>ilmainen, avoimeen lähdekoodiin perustuva</em> sosiaalinen verkosto. <em>Hajautettu</em> vaihtoehto kaupallisille alustoille, se välttää eiskit yhden yrityksen monopolisoinnin sinun viestinnässäsi. Valitse palvelin mihin luotat &mdash; minkä tahansa valitset, voit vuorovaikuttaa muiden kanssa. Kuka tahansa voi luoda Mastodon palvelimen ja ottaa osaa <em>sosiaaliseen verkkoon</em> saumattomasti.
about_this: Tietoja tästä palvelimesta
apps: Ohjelmat
business_email: 'Business e-mail:'
contact: Ota yhteyttä
description_headline: Mikä on %{domain}?
domain_count_after: muuhun palvelimeen
domain_count_before: Yhdistyneenä
features:
api: Avoin API ohjelmille ja palveluille
blocks: Rikkaat esto- ja hiljennystyökalut
characters: 500 kirjainta per viesti
chronology: Aikajana on kronologisessa järjestyksessä
ethics: 'Eettinen suunnittelu: ei mainoksia, ei seurantaa'
gifv: GIFV settejä ja lyhyitä videoita
privacy: Julkaisukohtainen yksityisyysasetus
public: Julkiset aikajanat
features_headline: Mikä erottaa Mastodonin muista
get_started: Aloita käyttö
links: Linkit
other_instances: Muut palvelimet
@ -92,7 +81,7 @@ fi:
blocking: Estetyt lista
following: Seuratut lista
upload: Lähetä
landing_strip_html: <strong>%{name}</strong> on käyttäjä domainilla %{link_to_root_path}. Voit seurata tai vuorovaikuttaa heidän kanssaan jos sinulla on tili yleisessä verkossa.
landing_strip_html: "<strong>%{name}</strong> on käyttäjä domainilla %{link_to_root_path}. Voit seurata tai vuorovaikuttaa heidän kanssaan jos sinulla on tili yleisessä verkossa."
landing_strip_signup_html: Jos sinulla ei ole tiliä, voit <a href="%{sign_up_path}">rekisteröityä täällä</a>.
notification_mailer:
digest:

View File

@ -3,23 +3,12 @@ fr:
about:
about_mastodon: Mastodon est un serveur <em>libre</em> de réseautage social. Alternative <em>décentralisée</em> aux plateformes commerciales, la monopolisation de vos communications par une entreprise unique est évitée. Tout un chacun peut faire tourner Mastodon et participer au <em>réseau social</em> de manière transparente.
about_this: À propos de cette instance
apps: Applications
business_email: Courriel professionnel
closed_registrations: Les inscriptions sont actuellement fermées sur cette instance.
contact: Contact
description_headline: Qu'est-ce que %{domain} ?
description_headline: Quest-ce que %{domain}?
domain_count_after: autres instances
domain_count_before: Connectés à
features:
api: API ouverte aux apps et services
blocks: Outils complets de bloquage et masquage
characters: 500 caractères par post
chronology: Fil chronologique
ethics: Pas de pubs, pas de pistage
gifv: Partage de vidéos et de GIFs
privacy: Réglages de confidentialité au niveau des posts
public: Fils publics
features_headline: Ce qui rend Mastodon différent
get_started: Rejoindre le réseau
links: Liens
other_instances: Autres instances
@ -27,21 +16,35 @@ fr:
status_count_after: posts
status_count_before: Ayant publié
terms: Conditions dutilisation
user_count_after: utilisateurs⋅trices
user_count_after: utilisateurices
user_count_before: Abrite
version: Version
accounts:
follow: Suivre
followers: Abonné⋅es
following: Abonnements
nothing_here: Rien à voir ici !
nothing_here: Rien à voir ici!
people_followed_by: Personnes suivies par %{name}
people_who_follow: Personnes qui suivent %{name}
posts: Statuts
remote_follow: Suivre à distance
reserved_username: Ce nom dutilisateur⋅ice est réservé
unfollow: Ne plus suivre
activitypub:
activity:
announce:
name: "%{account_name} a partagé une activité."
create:
name: "%{account_name} a créé une note."
outbox:
name: Boîte denvoi de %{account_name}
summary: Liste dactivités de %{account_name}
admin:
accounts:
are_you_sure: Êtes-vous certain ?
are_you_sure: Êtes-vous certain⋅e?
confirm: Confirmer
confirmed: Confirmé
disable_two_factor_authentication: Désactiver lauthentification à deux facteurs
display_name: Nom affiché
domain: Domaine
edit: Éditer
@ -49,6 +52,7 @@ fr:
feed_url: URL du flux
followers: Abonné⋅es
follows: Abonnements
ip: Adresse IP
location:
all: Tous
local: Local
@ -70,15 +74,25 @@ fr:
perform_full_suspension: Effectuer une suspension complète
profile_url: URL du profil
public: Public
push_subscription_expires: Expiration de l'abonnement PuSH
push_subscription_expires: Expiration de labonnement PuSH
redownload: Rafraîchir les avatars
reset: Réinitialiser
reset_password: Réinitialiser le mot de passe
resubscribe: Se réabonner
salmon_url: URL Salmon
search: Rechercher
show:
created_reports: Signalements créés par ce compte
report: signalement
targeted_reports: Signalements créés visant ce compte
silence: Rendre muet
statuses: Statuts
subscribe: Sabonner
title: Comptes
undo_silenced: Annuler le silence
undo_suspension: Annuler la suspension
username: Nom d'utilisateur
unsubscribe: Se désabonner
username: Nom dutilisateur⋅ice
web: Web
domain_blocks:
add_new: Ajouter
@ -87,14 +101,14 @@ fr:
domain: Domaine
new:
create: Créer le blocage
hint: Le blocage de domaine n'empêchera pas la création de comptes dans la base de données, mais il appliquera automatiquement et rétrospectivement des méthodes de modération spécifiques sur ces comptes.
hint: Le blocage de domaine nempêchera pas la création de comptes dans la base de données, mais il appliquera automatiquement et rétrospectivement des méthodes de modération spécifiques sur ces comptes.
severity:
desc_html: "<strong>Silence</strong> rendra les messages des comptes concernés invisibles à ceux qui ne les suivent pas. <strong>Suspend</strong> supprimera tout le contenu des comptes concernés, les médias, et les données du profil."
silence: Muet
suspend: Suspendre
title: Nouveau blocage de domaine
reject_media: Fichiers média rejetés
reject_media_hint: Supprime localement les fichiers média stockés et refuse d'en télécharger ultérieurement. Ne concerne pas les suspensions.
reject_media_hint: Supprime localement les fichiers média stockés et refuse den télécharger ultérieurement. Ne concerne pas les suspensions.
severities:
silence: Rendre muet
suspend: Suspendre
@ -110,14 +124,24 @@ fr:
undo: Annuler
title: Blocage de domaines
undo: Annuler
instances:
account_count: Comptes connus
domain_name: Domaine
title: Instances connues
reports:
action_taken_by: Intervention de
are_you_sure: Êtes vous certain⋅e?
comment:
label: Commentaire
none: Aucun
delete: Supprimer
id: ID
mark_as_resolved: Marquer comme résolu
nsfw:
'false': Ré-afficher les médias
'true': Masquer les médias
report: 'Signalement #%{id}'
report_contents: Contenu
reported_account: Compte signalé
reported_by: Signalé par
resolved: Résolus
@ -131,22 +155,18 @@ fr:
settings:
contact_information:
email: Entrez une adresse courriel publique
label: Informations de contact
username: Entrez un nom d'utilisateur
username: Entrez un nom dutilisateur⋅ice
registrations:
closed_message:
desc_html: Affiché sur la page d'accueil lorsque les inscriptions sont fermées<br>Vous pouvez utiliser des balises HTML
desc_html: Affiché sur la page daccueil lorsque les inscriptions sont fermées<br>Vous pouvez utiliser des balises HTML
title: Message de fermeture des inscriptions
open:
disabled: Désactivées
enabled: Activées
title: Inscriptions
setting: Paramètre
site_description:
desc_html: Affichée sous la forme d'un paragraphe sur la page d'accueil et utilisée comme balise meta.<br>Vous pouvez utiliser des balises HTML, en particulier <code>&lt;a&gt;</code> et <code>&lt;em&gt;</code>.
desc_html: Affichée sous la forme dun paragraphe sur la page daccueil et utilisée comme balise meta.<br>Vous pouvez utiliser des balises HTML, en particulier <code>&lt;a&gt;</code> et <code>&lt;em&gt;</code>.
title: Description du site
site_description_extended:
desc_html: Affichée sur la page d'informations complémentaires du site<br>Vous pouvez utiliser des balises HTML
desc_html: Affichée sur la page dinformations complémentaires du site<br>Vous pouvez utiliser des balises HTML
title: Description étendue du site
site_title: Titre du site
title: Paramètres du site
@ -158,16 +178,22 @@ fr:
title: PubSubHubbub
topic: Sujet
title: Administration
admin_mailer:
new_report:
body: "%{reporter} a signalé %{target}"
subject: Nouveau signalement sur %{instance} (#%{id})
application_mailer:
settings: 'Changer les préférences courriel : %{link}'
settings: 'Changer les préférences courriel: %{link}'
signature: Notifications de Mastodon depuis %{instance}
view: 'Voir :'
view: 'Voir:'
applications:
invalid_url: L'URL fournie est invalide
invalid_url: LURL fournie est invalide
auth:
change_password: Changer de mot de passe
didnt_get_confirmation: Vous navez pas reçu les consignes de confirmation ?
forgot_password: Mot de passe oublié ?
change_password: Sécurité
delete_account: Supprimer le compte
delete_account_html: Si vous désirez supprimer votre compte, vous pouvez cliquer ici. Il vous sera demandé de confirmer cette action.
didnt_get_confirmation: Vous navez pas reçu les consignes de confirmation?
forgot_password: Mot de passe oublié?
login: Se connecter
logout: Se déconnecter
register: Sinscrire
@ -177,7 +203,7 @@ fr:
authorize_follow:
error: Malheureusement, il y a eu une erreur en cherchant les détails du compte distant
follow: Suivre
prompt_html: 'Vous (<strong>%{self}</strong>) avez demandé à suivre :'
prompt_html: 'Vous (<strong>%{self}</strong>) avez demandé à suivre:'
title: Suivre %{acct}
datetime:
distance_in_words:
@ -189,9 +215,9 @@ fr:
almost_x_years:
one: un an
other: "%{count} ans"
half_a_minute: A l'instant
half_a_minute: À linstant
less_than_x_minutes: "%{count}min"
less_than_x_seconds: A l'instant
less_than_x_seconds: À linstant
over_x_years:
one: un an
other: "%{count} ans"
@ -199,89 +225,154 @@ fr:
x_minutes: "%{count}min"
x_months: "%{count}mois"
x_seconds: "%{count}s"
deletes:
bad_password_msg: Bien essayé! Mot de passe incorrect
confirm_password: Entrez votre mot de passe pour vérifier votre identité
description_html: Cela va supprimer votre compte et le désactiver de manière <strong>permanente et irréversible</strong>. Votre nom dutilisateur⋅ice restera réservé afin déviter la confusion
proceed: Supprimer compte
success_msg: Votre compte a été supprimé avec succès
warning_html: Seule la suppression du contenu depuis cette instance est garantie. Le contenu qui a été partagé est susceptible de laisser des traces. Les serveurs hors-lignes ainsi que ceux nétant plus abonnés à vos publications ne mettront pas leur base de données à jour.
warning_title: Disponibilité du contenu disséminé
errors:
'404': La page que vous recherchez n'existe pas.
'410': La page que vous recherchez n'existe plus.
'403': Vous navez pas accès à cette page.
'404': La page que vous recherchez nexiste pas.
'410': La page que vous recherchez nexiste plus.
'422':
content: Vérification de sécurité échouée. Bloquez-vous les cookies ?
content: Vérification de sécurité échouée. Bloquez-vous les cookies?
title: Vérification de sécurité échouée
'429': Trop de requêtes émises dans un délai donné.
noscript: Pour utiliser Mastodon, veuillez activer JavaScript
exports:
blocks: Vous bloquez
csv: CSV
follows: Vous suivez
mutes: Vous faites taire
storage: Médias stockés
followers:
domain: Domaine
explanation_html: Si vous voulez être sûr⋅e que vos status restent privés, vous devez savoir qui vous suit. <strong>Vos status privés seront diffusés à toutes les instances des utilisateur⋅ice⋅s qui vous suivent</strong>. Vous voudrez peut-être les passer en revue et les supprimer si vous nêtes pas sûr⋅e que votre vie privée sera respectée par ladministration ou le logiciel de ces instances.
followers_count: Nombre dabonné⋅es
lock_link: Rendez votre compte privé
purge: Retirer de la liste dabonné⋅es
success:
one: Suppression des abonné⋅es venant dun domaine en cours…
other: Suppression des abonné⋅es venant de %{count} domaines en cours…
true_privacy_html: Soyez conscient⋅es <strong>quune vraie confidentialité ne peut être atteinte que par un chiffrement de bout-en-bout</strong>.
unlocked_warning_html: Nimporte qui peut vous suivre et voir vos status privés. %{lock_link} afin de pouvoir vérifier et rejeter des abonné⋅es.
unlocked_warning_title: Votre compte nest pas privé
generic:
changes_saved_msg: Les modifications ont été enregistrées avec succès !
changes_saved_msg: Les modifications ont été enregistrées avec succès!
powered_by: propulsé par %{link}
save_changes: Enregistrer les modifications
validation_errors:
one: Quelque chose ne va pas ! Vérifiez lerreur ci-dessous.
other: Certaines choses ne vont pas ! Vérifiez les erreurs ci-dessous.
one: Quelque chose ne va pas! Vérifiez lerreur ci-dessous.
other: Certaines choses ne vont pas! Vérifiez les erreurs ci-dessous.
imports:
preface: Vous pouvez importer certaines données comme les personnes que vous suivez ou bloquez sur votre compte sur cette instance à partir de fichiers créés sur une autre instance.
success: Vos données ont été importées avec succès et seront traitées en temps et en heure
types:
blocking: Liste d'utilisateurs⋅trices bloqué⋅es
following: Liste d'utilisateurs⋅trices suivi⋅es
muting: Liste d'utilisateurs⋅trices que vous faites taire
blocking: Liste dutilisateurices bloqué⋅es
following: Liste dutilisateurices suivi⋅es
muting: Liste dutilisateurices que vous faites taire
upload: Importer
landing_strip_html: <strong>%{name}</strong> utilise %{link_to_root_path}. Vous pouvez le/la suivre et interagir si vous possédez un compte quelque part dans le "fediverse".
landing_strip_signup_html: Si ce n'est pas le cas, vous pouvez <a href="%{sign_up_path}">en créer un ici</a>.
landing_strip_signup_html: Si ce nest pas le cas, vous pouvez <a href="%{sign_up_path}">en créer un ici</a>.
media_attachments:
validations:
images_and_video: Impossible de joindre une vidéo à un statut contenant déjà des images
too_many: Impossible de joindre plus de 4 fichiers
notification_mailer:
digest:
body: 'Voici ce que vous avez raté sur ${instance} depuis votre dernière visite (%{}) :'
body: 'Voici ce que vous avez raté sur ${instance} depuis votre dernière visite (%{}):'
mention: "%{name} vous a mentionné⋅e"
new_followers_summary:
one: Vous avez un⋅e nouvel⋅le abonné⋅e ! Youpi !
other: Vous avez %{count} nouveaux⋅elles abonné⋅e⋅s ! Incroyable !
one: Vous avez un⋅e nouvel⋅le abonné⋅e! Youpi!
other: Vous avez %{count} nouveaux⋅elles abonné⋅e⋅s! Incroyable!
subject:
one: "Une nouvelle notification depuis votre dernière visite \U0001F418"
other: "%{count} nouvelles notifications depuis votre dernière visite \U0001F418"
favourite:
body: "%{name} a ajouté votre post à ses favoris :"
body: "%{name} a ajouté votre post à ses favoris:"
subject: "%{name} a ajouté votre post à ses favoris"
follow:
body: "%{name} vous suit !"
body: "%{name} vous suit!"
subject: "%{name} vous suit"
follow_request:
body: "%{name} a demandé à vous suivre"
subject: 'Abonné⋅es en attente : %{name}'
subject: 'Abonné⋅es en attente: %{name}'
mention:
body: "%{name} vous a mentionné⋅e dans :"
body: "%{name} vous a mentionné⋅e dans:"
subject: "%{name} vous a mentionné⋅e"
reblog:
body: "%{name} a partagé votre statut :"
body: "%{name} a partagé votre statut:"
subject: "%{name} a partagé votre statut"
pagination:
next: Suivant
prev: Précédent
remote_follow:
acct: Entrez votre pseudo@instance depuis lequel vous voulez suivre ce⋅tte utilisateur⋅trice
missing_resource: L'URL de redirection n'a pas pu être trouvée
missing_resource: LURL de redirection na pas pu être trouvée
proceed: Continuez pour suivre
prompt: 'Vous allez suivre :'
prompt: 'Vous allez suivre:'
sessions:
activity: Dernière activité
browser: Navigateur
browsers:
alipay: Alipay
blackberry: Blackberry
chrome: Chrome
edge: Microsoft Edge
firefox: Firefox
generic: Navigateur inconnu
ie: Internet Explorer
micro_messenger: MicroMessenger
nokia: Nokia S40 Ovi Browser
opera: Opera
phantom_js: PhantomJS
qq: QQ Browser
safari: Safari
uc_browser: UCBrowser
weibo: Weibo
current_session: Session courante
description: "%{browser} sur %{platform}"
explanation: Ceci est la liste des navigateurs actuellement connectés à votre compte Mastodon.
ip: Adresse IP
platforms:
adobe_air: Adobe Air
android: Android
blackberry: Blackberry
chrome_os: ChromeOS
firefox_os: Firefox OS
ios: iOS
linux: Linux
mac: Mac
other: système inconnu
windows: Windows
windows_mobile: Windows Mobile
windows_phone: Windows Phone
title: Sessions
settings:
authorized_apps: Applications autorisées
back: Retour vers Mastodon
delete: Suppression de compte
edit_profile: Modifier le profil
export: Export de données
followers: Abonné⋅es autorisé⋅es
import: Import de données
preferences: Préférences
settings: Réglages
two_factor_authentication: Identification à deux facteurs (Two-factor auth)
two_factor_authentication: Identification à deux facteurs
statuses:
open_in_web: Ouvrir sur le web
over_character_limit: limite de caractères dépassée de %{max} caractères
show_more: Afficher plus
visibilities:
private: Abonné⋅es uniquement
private_long: Seul⋅es vos abonné⋅es verront vos status
public: Public
public_long: Tout le monde peut voir vos status
unlisted: Public sans être affiché sur le fil public
unlisted_long: Tout le monde peut voir vos status mais ils ne seront pas sur listés sur les fils publics
stream_entries:
click_to_show: Cliquer pour afficher
reblogged: partagé
@ -291,18 +382,20 @@ fr:
default: "%d %b %Y, %H:%M"
two_factor_authentication:
code_hint: Entrez le code généré par votre application pour confirmer
description_html: Si vous activez <strong>l'identification à deux facteurs</strong>, vous devrez être en possession de votre téléphone afin de générer un code de connexion.
description_html: Si vous activez <strong>lidentification à deux facteurs</strong>, vous devrez être en possession de votre téléphone afin de générer un code de connexion.
disable: Désactiver
enable: Activer
enabled: Lauthentification à deux facteurs est activée
enabled_success: Identification à deux facteurs activée avec succès
generate_recovery_codes: Générer les codes de récupération
instructions_html: "<strong>Scannez ce QR code grâce à Google Authenticator, Authy ou une application similaire sur votre téléphone</strong>. Désormais, cette application générera des jetons que vous devrez saisir à chaque connexion."
lost_recovery_codes: Les codes de récupération vous permettent de retrouver les accès à votre comptre si vous perdez votre téléphone. Si vous perdez vos codes de récupération, vous pouvez les générer à nouveau ici. Vos anciens codes de récupération seront invalidés.
manual_instructions: 'Si vous ne pouvez pas scanner ce QR code et devez l''entrer manuellement, voici le secret en clair :'
manual_instructions: 'Si vous ne pouvez pas scanner ce QR code et devez lentrer manuellement, voici le secret en clair:'
recovery_codes: Codes de récupération
recovery_codes_regenerated: Codes de récupération régénérés avec succès
recovery_instructions_html: Si vous perdez l'accès à votre téléphone, vous pouvez utiliser un des codes de récupération ci-dessous pour récupérer l'accès à votre compte. Conservez les codes de récupération en toute sécurité, par exemple, en les imprimant et en les stockant avec vos autres documents importants.
recovery_instructions_html: Si vous perdez laccès à votre téléphone, vous pouvez utiliser un des codes de récupération ci-dessous pour récupérer laccès à votre compte. Conservez les codes de récupération en toute sécurité, par exemple, en les imprimant et en les stockant avec vos autres documents importants.
setup: Installer
wrong_code: Les codes entrés sont incorrects ! L'heure du serveur et celle de votre appareil sont-elles correctes ?
wrong_code: Les codes entrés sont incorrects! Lheure du serveur et celle de votre appareil sont-elles correctes?
users:
invalid_email: L'adresse courriel est invalide
invalid_otp_token: Le code d'authentification à deux facteurs est invalide
invalid_email: Ladresse courriel est invalide
invalid_otp_token: Le code dauthentification à deux facteurs est invalide

View File

@ -3,23 +3,12 @@ he:
about:
about_mastodon: מסטודון היא רשת חברתית <em>חופשית, מבוססת תוכנה חופשית ("קוד פתוח")</em>. כאלטרנטיבה <em>בלתי ריכוזית</em> לפלטפרומות המסחריות, מסטודון מאפשרת להמנע מהסיכונים הנלווים להפקדת התקשורת שלך בידי חברה יחידה. שמת את מבטחך בשרת אחד &mdash; לא משנה במי בחרת, תמיד אפשר לדבר עם כל שאר המשתמשים. לכל מי שרוצה יש את האפשרות להקים שרת מסטודון עצמאי, ולהשתתף ב<em>רשת החברתית</em> באופן חלק.
about_this: אודות שרת זה
apps: ישומים
business_email: 'דוא"ל עסקי:'
closed_registrations: הרשמות סגורות לשרת זה לעת עתה.
contact: צור קשר
description_headline: מהו %{domain}?
domain_count_after: שרתים אחרים
domain_count_before: מחובר אל
features:
api: API פתוח לישומים ושירותים
blocks: כלי חסימה והשתקה חזקים
characters: 500 תווים להודעה
chronology: הטורים כרונולוגיים
ethics: 'תכנון מוסרי: אין פרסומות, אין מעקב'
gifv: GIFV וסרטונים קצרים
privacy: אפשרויות פרטיוּת נפרדות לכל הודעה
public: טורים פומביים
features_headline: מה מייחד קהילות מבוססות מסטודון
get_started: בואו נתחיל
links: קישורים
other_instances: שרתים אחרים
@ -160,17 +149,13 @@ he:
settings:
contact_information:
email: נא להקליד כתובת דוא"ל פומבית
label: פרטי התקשרות
username: נא להכניס שם משתמש
registrations:
closed_message:
desc_html: מוצג על הדף הראשי כאשר ההרשמות סגורות<br>ניתן להשתמש בתגיות HTML
title: מסר סגירת הרשמות
open:
disabled: מבוטל
enabled: מופעל
title: הרשמה פתוחה
setting: הגדרה
site_description:
desc_html: מוצג כפסקה על הדף הראשי ומשמש כתגית מטא.<br>ניתן להשתמש בתגיות HTML, ובמיוחד ב־<code>&lt;a&gt;</code> ו־<code>&lt;em&gt;</code>.
title: תיאור האתר

View File

@ -3,23 +3,12 @@ hr:
about:
about_mastodon: Mastodon je <em>besplatna, open-source</em> socijalna mreža. <em>Decentralizirana</em> alternativa komercijalnim platformama, izbjegava rizik toga da jedna tvrtka monopolizira vašu komunikaciju. Izaberite server kojem ćete vjerovati &mdash; koji god odabrali, moći ćete komunicirati sa svima ostalima. Bilo tko može imati svoju vlastitu Mastodon instancu i sudjelovati u <em>socijalnoj mreži</em> bez problema.
about_this: O ovoj instanci
apps: Aplikacije
business_email: 'Poslovni e-mail:'
closed_registrations: Registracije na ovoj instanci su trenutno zatvorene.
contact: Kontakt
description_headline: Što je %{domain}?
domain_count_after: druge instance
domain_count_before: Spojen na
features:
api: Otvoren API za aplikacije i servise
blocks: Bogati alati za blokiranje i ušutkivanje
characters: 500 znakova po postu
chronology: Timelines su kronološke
ethics: 'Etički dizajn: bez oglasa, bez praćenja'
gifv: GIFV setovi i kratki videi
privacy: Granularne postavke privatnosti, po postu
public: Javne timelines
features_headline: Po čemu se Mastodon razlikuje
get_started: Započni
links: Linkovi
other_instances: Druge instance
@ -94,7 +83,7 @@ hr:
following: Lista onih koje slijedim
muting: Lista utišanih
upload: Upload
landing_strip_html: <strong>%{name}</strong> je korisnik na %{link_to_root_path}. Možeš ih slijediti ili komunicirati s njima ako imaš račun igdje u fediversu.
landing_strip_html: "<strong>%{name}</strong> je korisnik na %{link_to_root_path}. Možeš ih slijediti ili komunicirati s njima ako imaš račun igdje u fediversu."
landing_strip_signup_html: Ako nemaš, možeš se <a href="%{sign_up_path}">registrirati ovdje</a>.
notification_mailer:
digest:

View File

@ -3,23 +3,12 @@ id:
about:
about_mastodon: Mastodon adalah sebuah jejaring sosial <em>terbuka, open-source</em. Sebuah alternatif <em>desentralisasi</em> dari platform komersial, menjauhkan anda resiko dari sebuah perusahaan yang memonopoli komunikasi anda. Pilih server yang anda percayai &mdash; apapun yang anda pilih, anda tetap dapat berinteraksi dengan semua orang. Semua orang dapat menjalankan server Mastodon sendiri dan berpartisipasi dalam <em>jejaring sosial</em> dengan mudah.
about_this: Tentang server ini
apps: Apl
business_email: 'E-mail bisnis:'
closed_registrations: Pendaftaran untuk server ini sedang ditutup.
contact: Kontak
description_headline: Apa itu %{domain}?
domain_count_after: server lain
domain_count_before: Terhubung dengan
features:
api: API terbuka untuk aplikasi dan layanan lain
blocks: Aneka ragam fitur blokir dan pembisuan
characters: 500 karakter per posting
chronology: Linimasa berurutan
ethics: 'Desain etis: tanpa iklan, tidak ada pelacakan'
gifv: Fitur GIFV dan video pendek
privacy: Terperinci, pengaturan privasi per postingan
public: Linimasa publik
features_headline: Yang berbeda dari Mastodon
get_started: Mulai
links: Link
other_instances: Server lain
@ -151,17 +140,13 @@ id:
settings:
contact_information:
email: Masukkan alamat email
label: Informasi kontak
username: Masukkan nama pengguna
registrations:
closed_message:
desc_html: Ditampilkan pada halaman depan saat pendaftaran ditutup<br>Anda bisa menggunakan tag HTML
title: Pesan penutupan pendaftaran
open:
disabled: Dinonaktifkan
enabled: Diaktifkan
title: Pendaftaran terbuka
setting: Pengaturan
site_description:
desc_html: Ditampilkan sebagai sebuah paragraf di halaman depan dan digunakan sebagai tag meta.<br>Anda bisa menggunakan tag HTML, khususnya <code>&lt;a&gt;</code> dan <code>&lt;em&gt;</code>.
title: Deskripsi situs

View File

@ -3,23 +3,12 @@ io:
about:
about_mastodon: Mastodon esas <em>gratuita, apertitkodexa</em> sociala reto. Ol esas <em>sencentra</em> altra alternativo a komercala servadi. Ol evitigas, ke sola firmo guvernez tua tota komunikadol. Selektez servero, quan tu fidas. Irge qua esas tua selekto, tu povas komunikar kun omna altra uzeri. Irgu povas krear sua propra instaluro di Mastodon en sua servero, e partoprenar en la <em>sociala reto</em> tote glate.
about_this: Pri ta instaluro
apps: Apliki
business_email: 'Profesionala retpost-adreso:'
closed_registrations: Membresko ne nun esas posible en ta instaluro.
contact: Kontaktar
description_headline: Quo esas %{domain}?
domain_count_after: altra instaluri
domain_count_before: Konektita ad
features:
api: Apertita API por apliki e servadi
blocks: Kompleta utensili por blokusar e celar
characters: Til 500 signi por singla mesajo
chronology: Tempolinei seguntempa
ethics: 'Etike kreita: nula anunco, nula trakado'
gifv: Posibleso diskononigar mikra videi e GIFV
privacy: Videbleso ajustita segun la mesajo
public: Publika tempolinei
features_headline: Quale Mastodon esas diferanta
get_started: Komencar
links: Ligili
other_instances: Altra instaluri
@ -139,17 +128,13 @@ io:
settings:
contact_information:
email: Enter a public e-mail address
label: Contact information
username: Enter a username
registrations:
closed_message:
desc_html: Displayed on frontpage when registrations are closed<br>You can use HTML tags
title: Closed registration message
open:
disabled: Disabled
enabled: Enabled
title: Open registration
setting: Setting
site_description:
desc_html: Displayed as a paragraph on the frontpage and used as a meta tag.<br>You can use HTML tags, in particular <code>&lt;a&gt;</code> and <code>&lt;em&gt;</code>.
title: Site description

View File

@ -3,23 +3,12 @@ it:
about:
about_mastodon: Mastodon è un social network <em>gratuito e open-source</em>. Un'alternativa <em>decentralizzata</em> alle piattaforme commerciali che evita che una singola compagnia monopolizzi il tuo modo di comunicare. Scegli un server di cui ti fidi &mdash; qualunque sia la tua scelta, potrai interagire con chiunque altro. Chiunque può sviluppare un suo server Mastodon e partecipare alla vita del <em>social network</em>.
about_this: A proposito di questo server
apps: Applicazioni
business_email: 'Email di lavoro:'
closed_registrations: Al momento le iscrizioni a questo server sono chiuse.
contact: Contatti
description_headline: Cos'è %{domain}?
domain_count_after: altri server
domain_count_before: Connesso a
features:
api: API aperto per applicazioni e servizi
blocks: Potenti strumenti di blocco e silenziamento
characters: 500 caratteri per status
chronology: Le timeline sono cronologiche
ethics: 'Design etico: niente pubblicità, niente tracking'
gifv: Set di GIFV e brevi video
privacy: Opzioni di privacy mirate per-post
public: Timeline pubbliche
features_headline: Cosa rende Mastodon migliore
get_started: Inizia
links: Links
other_instances: Altri server
@ -93,7 +82,7 @@ it:
blocking: Lista dei bloccati
following: Lista dei seguaci
upload: Carica
landing_strip_html: <strong>%{name}</strong> è un utente su %{link_to_root_path}. Puoi seguirlo o interagire con lui se possiedi un account ovunque nel fediverse.
landing_strip_html: "<strong>%{name}</strong> è un utente su %{link_to_root_path}. Puoi seguirlo o interagire con lui se possiedi un account ovunque nel fediverse."
landing_strip_signup_html: Se non possiedi un account, puoi <a href="%{sign_up_path}">iscriverti qui</a>.
media_attachments:
validations:

View File

@ -3,23 +3,12 @@ ja:
about:
about_mastodon: Mastodon は<em>自由でオープンソース</em>なソーシャルネットワークです。商用プラットフォームの代替となる<em>分散型</em>を採用し、あなたのやりとりが一つの会社によって独占されるのを防ぎます。信頼できるインスタンスを選択してください &mdash; どのインスタンスを選んでも、誰とでもやりとりすることができます。 だれでも自分の Mastodon インスタンスを作ることができ、シームレスに<em>ソーシャルネットワーク</em>に参加できます。
about_this: このインスタンスについて
apps: アプリ
business_email: 'ビジネスメールアドレス:'
closed_registrations: 現在このインスタンスでの新規登録は受け付けていません。
contact: 連絡先
description_headline: "%{domain} とは?"
domain_count_after: 個のインスタンス
domain_count_before: 接続中
features:
api: アプリやその他サービスにAPIを公開
blocks: 豊富なブロックやミュート機能
characters: 1つの投稿は500文字まで利用可能
chronology: 時系列順のタイムライン
ethics: 広告もトラッキングもありません
gifv: GIFVや短い動画にも対応
privacy: 投稿ごとに公開範囲を細かく設定可能
public: 公開タイムライン
features_headline: Mastodon の特徴
get_started: 参加する
links: リンク
other_instances: 他のインスタンス
@ -166,23 +155,22 @@ ja:
settings:
contact_information:
email: 公開するメールアドレスを入力
label: 連絡先情報
username: ユーザー名を入力
registrations:
closed_message:
desc_html: 新規登録を停止しているときにフロントページに表示されます。<br>HTMLタグが利用可能です。
title: 新規登録停止時のメッセージ
open:
disabled: 無効
enabled: 有効
title: 新規登録を受け付ける
setting: 設定
site_description:
desc_html: トップページへの表示と meta タグに使用されます。<br>HTMLタグ、特に<code>&lt;a&gt;</code> と <code>&lt;em&gt;</code>が利用可能です。
title: サイトの説明文
site_description_extended:
desc_html: インスタンスについてのページに表示されます。<br>HTMLタグが利用可能です。
title: サイトの詳細な説明
site_terms:
desc_html: プライバシーポリシーのページに表示されます。<br>HTMLタグが利用可能です。
title: サイトのプライバシーポリシー
site_title: サイトのタイトル
title: サイト設定
subscriptions:
@ -193,6 +181,10 @@ ja:
title: PubSubHubbub
topic: トピック
title: 管理
admin_mailer:
new_report:
body: "%{reporter} が %{target} を通報しました"
subject: "%{instance} の新しい通報 (#%{id})"
application_mailer:
settings: 'メール設定の変更: %{link}'
signature: Mastodon %{instance} インスタンスからの通知
@ -200,7 +192,7 @@ ja:
applications:
invalid_url: URLが無効です
auth:
change_password: ログイン情報
change_password: セキュリティ
delete_account: アカウントの削除
delete_account_html: アカウントを削除したい場合、<a href="%{path}">こちら</a>から手続きが行えます。削除前には確認画面があります。
didnt_get_confirmation: 確認メールを受信できませんか?
@ -320,6 +312,43 @@ ja:
missing_resource: リダイレクト先が見つかりませんでした
proceed: フォローする
prompt: 'フォローしようとしています:'
sessions:
activity: 最後のアクティビティ
browser: ブラウザ
browsers:
alipay: Alipay
blackberry: Blackberry
chrome: Chrome
edge: Microsoft Edge
firefox: Firefox
generic: 不明なブラウザ
ie: Internet Explorer
micro_messenger: MicroMessenger
nokia: Nokia S40 Ovi Browser
opera: Opera
phantom_js: PhantomJS
qq: QQ Browser
safari: Safari
uc_browser: UCBrowser
weibo: Weibo
current_session: 現在のセッション
description: "%{browser} on %{platform}"
explanation: あなたのMastodonアカウントに現在ログインしているウェブブラウザの一覧です。
ip: IP
platforms:
adobe_air: Adobe Air
android: Android
blackberry: Blackberry
chrome_os: ChromeOS
firefox_os: Firefox OS
ios: iOS
linux: Linux
mac: Mac
other: 不明なプラットフォーム
windows: Windows
windows_mobile: Windows Mobile
windows_phone: Windows Phone
title: セッション
settings:
authorized_apps: 認証済みアプリ
back: 戻る
@ -344,8 +373,78 @@ ja:
unlisted_long: 誰でも見ることができますが、公開タイムラインには表示されません
stream_entries:
click_to_show: クリックして表示
reblogged: ブーストされました
reblogged: さんにブーストされました
sensitive_content: 閲覧注意
terms:
body_html: |
<h2>プライバシーポリシー</h2>
<h3 id="collect">どのような情報を収集するのですか?</h3>
<p>あなたがこのサイトに登録すると、ここで共有された情報を読んだり、書いたり、評価したりして、フォーラムでの情報を集める事ができます。</p>
<p>このサイトに登録する際には、名前とメールアドレスの入力を求めることがあります。ただし、登録をすることなくこのサイトを利用することも可能です。あなたのメールアドレスは、固有のリンクを含んだメールで確認されます。そのリンクにアクセスした場合にメールアドレスを制御することとなります。</p>
<p>アカウントを登録し、投稿を行った際にはその投稿が行われたIPアドレスを記録します。また、このサーバーに対する全てのリクエストはIPアドレスを含むサーバーログとして保管されます。</p>
<h3 id="use">自分の情報を何に使うのですか?</h3>
<p>このサイトで収集された情報は、次のいくつかの方法で使用されます:</p>
<ul>
<li>パーソナライズ・エクスペリエンス &mdash; あなたの情報は、あなたや他のユーザーのニーズに対応するために役立ちます。</li>
<li>サイトの改善・最適化 &mdash; このサービスはあなたから受け取った情報やフィードバックに基づいて提供されるサイトの改善を行いつづけます。</li>
<li>サービスの向上 &mdash; あなたの情報は、ユーザーからの要求やサポートへより効果的に対応するために役立ちます。</li>
<li>定期メールの送信 &mdash; メールアドレスは、情報の送信、トピックの変更やユーザー名に関係するお知らせ、お問い合わせに関する返答、その他のリクエストや質問に関してお知らせするために使用されます。</li>
</ul>
<h3 id="protect">自分の情報はどのように保護されるのですか?</h3>
<p>このサービスはあなたの個人情報の入力、送信、またはアクセスに際してあなたの個人情報の安全性を維持するために様々なセキュリティ手段をとっています。</p>
<h3 id="data-retention>データ保持のポリシーはどのようになっていますか?</h3>
<p>このサービスはデータ保持に関して次のことを行うよう努めます。:</p>
<ul>
<li>このサーバーへのすべての要求に対して、IPアドレスを含むサーバーログを90日以内に渡って保持します。</li>
<li>登録されたユーザーとその投稿に関連付けされたIPアドレスを5年以内に渡って保持します。</li>
</ul>
<h3 id="cookies">クッキーを使用していますか?</h3>
<p>はい。クッキーはあなたがウェブブラウザ上で許可した場合にコンピュータのストレージに転送される小さなファイルです。これらのクッキーを使用すると、サイトでブラウザが識別され、登録済みのアカウントを持っている場合は登録済みのアカウントに関連付けがされます。</p>
<p>クッキーを使用して、今後再度閲覧された場合に前回のデータから設定を呼び出したり、今後の改善のためにサイトのトラフィックやサイトの相互作用に関する集計データを作成します。このサービスは、サイトを訪れた方との理解を深めるために、第三者のサービス提供者と契約することがあります。これらのサービス提供者というものは、このサービスでの業務を行ったり、改善するためにこのサービスの代わって収集された情報を使用することはできません。</p>
<h3 id="disclose">このサイトは外部に何らかの情報を開示していますか?</h3>
<p>私たちは、個人を特定出来る情報を外部へ販売、取引、または他の方法で渡すことはありません。これには、このサイトを操作したり、業務を行ったり、サービスを提供するのに役立つ信頼できる第三者は含まれません。法令遵守、サイトポリシーの施行、このサービスや他の人の権利、財産または安全の保護のために適切であると判断した場合に、あなたの情報を公開する場合があります。ただし、マーケティングや広告、その他の目的で匿名での訪問者情報を他者へ提供することができます。</p>
<h3 id="third-party">サードパーティのリンク</h3>
<p>必要に応じて、このサービスの方針にもとづいてこのサイトや第三者のサービスを提供することがあります。これらの第三者のサイトには、個別の独立したプライバシーポリシーがあります。従って、これらのリンク先のサイトに関するコンテンツや活動にかんしては一切責任を負いません。ですが、サイトの完全性やこれらのサイトに関するフィードバックは非常に重要なものであると認識しております。</p>
<h3 id="coppa">子供のオンライン・プライバシー保護法</h3>
<p>このサイト、製品、サービスはすべて13歳以上の人を対象としております。このサーバーが米国にあり、13歳未満の場合はCOPPA (<a href="https://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act">Children's Online Privacy Protection Act</a>) にもとづいてこのサイトを使用しないでください。</p>
<h3 id="online">オンライン限定のプライバシーポリシー</h3>
<p>このオンライン・プライバシーポリシーは、このサイトを通じて収集された情報のみに適用され、オフラインで収集される情報には適用されません。</p>
<h3 id="consent">あなたの同意</h3>
<p>このサービスを使用することにより、このサイトのプライバシーポリシーに同意するものとします。</p>
<h3 id="changes">プライバシーポリシーの変更</h3>
<p>プライバシーポリシーを変更する場合は、このページへ変更内容を掲載します。</p>
<p>この文章のライセンスはCC-BY-SAです。このページは2017年5月6日が最終更新です。</p>
<p>オリジナルの出典 <a href="https://github.com/discourse/discourse">Discourse privacy policy</a>.
title: "%{instance} 利用規約・プライバシーポリシー"
time:
formats:
default: "%Y年%m月%d日 %H:%M"
@ -354,13 +453,15 @@ ja:
description_html: "<strong>二段階認証</strong>を有効にするとログイン時、電話でコードを受け取る必要があります。"
disable: 無効
enable: 有効
enabled: 二段階認証は有効になっています
enabled_success: 二段階認証が有効になりました
generate_recovery_codes: リカバリーコードを生成
instructions_html: "<strong>Google Authenticatorか、もしくはほかのTOTPアプリでこのQRコードをスキャンしてください。</strong>これ以降、ログインするときはそのアプリで生成されるコードが必要になります。"
lost_recovery_codes: リカバリーコードを使用すると携帯電話を紛失した場合でもアカウントにアクセスできるようになります。 リカバリーコードを紛失した場合もここで再生成することができますが、古いリカバリーコードは無効になります。
manual_instructions: 'QRコードがスキャンできず、手動での登録を希望の場合はこのシークレットコードを利用してください。:'
recovery_codes: リカバリーコード
recovery_codes_regenerated: リカバリーコードが再生成されました。
recovery_instructions_html: 携帯電話を紛失した場合、以下の内どれかのリカバリーコードを使用してアカウントへアクセスすることができます。 リカバリーコードは印刷して安全に保してください。
recovery_instructions_html: 携帯電話を紛失した場合、以下の内どれかのリカバリーコードを使用してアカウントへアクセスすることができます。<strong>リカバリーコードは大切に保してください。</strong>たとえば印刷してほかの重要な書類と一緒に保管することができます。
setup: 初期設定
wrong_code: コードが間違っています。サーバー上の時間とデバイス上の時間が一致していることを確認してください。
users:

396
config/locales/ko.yml Normal file
View File

@ -0,0 +1,396 @@
---
ko:
about:
about_mastodon: Mastodon 은<em>자유로운 오픈 소스</em>소셜 네트워크입니다. 상용 플랫폼의 대체로써 <em>분산형 구조</em>를 채택해, 여러분의 대화가 한 회사에 독점되는 것을 방지합니다. 신뢰할 수 있는 인스턴스를 선택하세요 &mdash; 어떤 인스턴스를 고르더라도, 누구와도 대화할 수 있습니다. 누구나 자신만의 Mastodon 인스턴스를 만들 수 있으며, Seamless하게 <em>소셜 네트워크</em>에 참가할 수 있습니다.
about_this: 이 인스턴스에 대해서
business_email: '비즈니스 메일 주소:'
closed_registrations: 현재 이 인스턴스에서는 신규 등록을 받고 있지 않습니다.
contact: 연락처
description_headline: "%{domain} 는 무엇인가요?"
domain_count_after: 개의 인스턴스
domain_count_before: 연결됨
get_started: 참가하기
links: 링크
other_instances: 다른 인스턴스
source_code: 소스 코드
status_count_after: Toot
status_count_before: Toot 수
terms: 개인 정보 보호 정책
user_count_after:
user_count_before: 사용자 수
version: 버전
accounts:
follow: 팔로우
followers: 팔로워
following: 팔로잉
nothing_here: 아무 것도 없습니다.
people_followed_by: "%{name} 님이 팔로우 중인 계정"
people_who_follow: "%{name} 님을 팔로우 중인 계정"
posts: 포스트
remote_follow: 리모트 팔로우
reserved_username: 이 아이디는 예약되어 있습니다.
unfollow: 팔로우 해제
activitypub:
activity:
announce:
name: "%{account_name} 님이 액티비티를 공유했습니다"
create:
name: "%{account_name} 님이 노트를 작성했습니다"
outbox:
name: "%{account_name} 님의 송신함"
summary: "%{account_name} 님의 액티비티 모음"
admin:
accounts:
are_you_sure: 정말로 실행하시겠습니까?
confirm: 확인
confirmed: 확인됨
disable_two_factor_authentication: 2단계 인증을 비활성화
display_name: 이름
domain: 도메인
edit: 편집
email: E-mail
feed_url: 피드 URL
followers: 팔로워 수
follows: 팔로잉 수
ip: IP
location:
all: 전체
local: 로컬
remote: 리모트
title: 위치
media_attachments: 첨부된 미디어
moderation:
all: 전체
silenced: 침묵 중
suspended: 정지 중
title: 모더레이션
most_recent_activity: 최근 활동
most_recent_ip: 최근 IP
not_subscribed: 구독하지 않음
order:
alphabetic: 알파벳 순
most_recent: 최근 활동 순
title: 순서
perform_full_suspension: 완전히 정지시키기
profile_url: 프로필 URL
public: 전체 공개
push_subscription_expires: PuSH 구독 기간 만료
redownload: 아바타 업데이트
reset: 초기화
reset_password: 비밀번호 초기화
resubscribe: 다시 구독
salmon_url: Salmon URL
search: 검색
show:
created_reports: 이 계정에서 제출된 신고
report: 신고
targeted_reports: 이 계정에 대한 신고
silence: 침묵
statuses: Toot 수
subscribe: 구독하기
title: 계정
undo_silenced: 침묵 해제
undo_suspension: 정지 해제
unsubscribe: 구독 해제
username: 아이디
web: Web
domain_blocks:
add_new: 추가하기
created_msg: 도메인 차단 처리를 완료했습니다.
destroyed_msg: 도메인 차단을 해제했습니다.
domain: 도메인
new:
create: 차단 추가
hint: 도메인 차단은 내부 데이터베이스에 계정이 생성되는 것까지는 막을 수 없지만, 그 도메인에서 생성된 계정에 자동적으로 특정한 모더레이션을 적용하게 할 수 있습니다.
severity:
desc_html: "<strong>침묵</strong>은 계정을 팔로우 하지 않고 있는 사람들에겐 계정의 Toot을 보이지 않게 합니다. <strong>정지</strong>는 계정의 컨텐츠, 미디어, 프로필 데이터를 삭제합니다."
silence: 침묵
suspend: 정지
title: 새로운 도메인 차단
reject_media: 미디어 파일 거부하기
reject_media_hint: 로컬에 저장된 미디어 파일을 삭제하고, 이후로도 다운로드를 거부합니다. 정지하고는 관계 없습니다.
severities:
silence: 침묵
suspend: 정지
severity: 심각도
show:
affected_accounts:
one: 데이터베이스 중 1개의 계정에 영향을 끼칩니다
other: 데이터베이스 중 %{count}개의 계정에 영향을 끼칩니다
retroactive:
silence: 이 도메인에 존재하는 모든 계정의 침묵를 해제
suspend: 이 도메인에 존재하는 모든 계정의 계정 정지를 해제
title: "%{domain}의 도메인 차단을 해제"
undo: 실행 취소
title: 도메인 차단
undo: 실행 취소
instances:
account_count: 알려진 계정의 수
domain_name: 도메인 이름
title: 알려진 인스턴스들
reports:
action_taken_by: 신고 처리자
are_you_sure: 정말로 실행하시겠습니까?
comment:
label: 코멘트
none: 없음
delete: 삭제
id: ID
mark_as_resolved: 해결 완료 처리
nsfw:
'false': NSFW 꺼짐
'true': NSFW 켜짐
report: '신고 #%{id}'
report_contents: 내용
reported_account: 신고 대상 계정
reported_by: 신고자
resolved: 해결됨
silence_account: 계정을 침묵 처리
status: 상태
suspend_account: 계정을 정지
target: 대상
title: 신고
unresolved: 미해결
view: 표시
settings:
contact_information:
email: 공개할 메일 주소를 입력
username: 아이디를 입력
registrations:
closed_message:
desc_html: 신규 등록을 받지 않을 때 프론트 페이지에 표시됩니다. <br>HTML 태그를 사용할 수 있습니다.
title: 신규 등록 정지 시 메시지
open:
title: 신규 등록을 받음
site_description:
desc_html: 탑 페이지와 meta 태그에 사용됩니다.<br>HTML 태그, 예를 들어<code>&lt;a&gt;</code> 태그와 <code>&lt;em&gt;</code> 태그를 사용할 수 있습니다.
title: 사이트 설명
site_description_extended:
desc_html: 인스턴스 정보 페이지에 표시됩니다.<br>HTML 태그를 사용할 수 있습니다.
title: 사이트 상세 설명
site_title: 사이트 이름
title: 사이트 설정
subscriptions:
callback_url: 콜백 URL
confirmed: 확인됨
expires_in: 기한
last_delivery: 최종 발송
title: PubSubHubbub
topic: 토픽
title: 관리
admin_mailer:
new_report:
body: "%{reporter} 가 %{target} 를 신고했습니다"
subject: "%{instance} 에 새 신고 등록됨 (#%{id})"
application_mailer:
settings: '메일 설정을 변경: %{link}'
signature: Mastodon %{instance} 인스턴스로에서 알림
view: 'View:'
applications:
invalid_url: 올바르지 않은 URL입니다
auth:
change_password: 보안
delete_account: 계정 삭제
delete_account_html: 계정을 삭제하고 싶은 경우, <a href="%{path}">여기서</a> 삭제할 수 있습니다. 삭제 전 확인 화면이 표시됩니다.
didnt_get_confirmation: 확인 메일을 받지 못하셨습니까?
forgot_password: 비밀번호를 잊어버리셨습니까?
login: 로그인
logout: 로그아웃
register: 등록하기
resend_confirmation: 확인 메일을 다시 보내기
reset_password: 비밀번호 재설정
set_new_password: 새 비밀번호
authorize_follow:
error: 리모트 팔로우 도중 오류가 발생했습니다.
follow: 팔로우
prompt_html: '나(<strong>%{self}</strong>) 는 아래 계정의 팔로우를 요청했습니다:'
title: "%{acct} 를 팔로우"
datetime:
distance_in_words:
about_x_hours: "%{count}시간"
about_x_months: "%{count}월"
about_x_years: "%{count}년"
almost_x_years: "%{count}년"
half_a_minute: 지금
less_than_x_minutes: "%{count}분"
less_than_x_seconds: 지금
over_x_years: "%{count}년"
x_days: "%{count}일"
x_minutes: "%{count}분"
x_months: "%{count}월"
x_seconds: "%{count}초"
deletes:
bad_password_msg: 비밀번호가 올바르지 않습니다
confirm_password: 본인 확인을 위해, 현재 사용 중인 비밀번호를 입력해 주십시오.
description_html: 계정에 업로드된 모든 컨텐츠가 삭제되며, 계정은 비활성화 됩니다. 이것은 영구적으로 이루어지는 것이므로 <strong>되돌릴 수 없습니다</strong>. 사칭 행위를 방지하기 위해 같은 아이디로 다시 등록하는 것은 불가능합니다.
proceed: 계정 삭제
success_msg: 계정이 정상적으로 삭제되었습니다.
warning_html: 삭제가 보장되는 것은 이 인스턴스 상에서의 컨텐츠에 한합니다. 타 인스턴스 등, 외부에 멀리 공유된 컨텐츠는 흔적이 남아 삭제되지 않는 경우도 있습니다. 그리고 현재 접속이 불가능한 서버나, 업데이트를 받지 않게 된 서버에 대해서는 삭제가 반영되지 않을 수도 있습니다.
warning_title: 공유된 컨텐츠에 대해서
errors:
'403': 이 페이지를 표시할 권한이 없습니다
'404': 페이지를 찾을 수 없습니다
'410': 이 페이지는 더 이상 존재하지 않습니다
'422':
content: 보안 인증에 실패했습니다. Cookie를 차단하고 있진 않습니까?
title: 보안 인증 실패
'429': 요청 횟수 제한에 도달했습니다.
noscript: Mastodon을 사용하기 위해서는 JavaScript를 켜 주십시오.
exports:
blocks: 차단
csv: CSV
follows: 팔로우
mutes: 뮤트
storage: 미디어
followers:
domain: 도메인
explanation_html: 프라이버시를 확보하고 싶은 경우, 누가 여러분을 팔로우 하고 있는지 파악해둘 필요가 있습니다. <strong>프라이빗 포스팅은 여러분의 팔로워가 소속하는 모든 인스턴스로 배달됩니다</strong>. 팔로워가 소속된 인스턴스 관리자나 소프트웨어가 여러분의 프라이버시를 존중하고 있는지 잘 모를 경우, 그 팔로워를 삭제하는 것이 좋을 수도 있습니다.
followers_count: 팔로워 수
lock_link: 비공개 계정
purge: 팔로워에서 삭제
success:
one: 1개 도메인에서 팔로워를 soft-block 처리 중...
other: "%{count}개 도메인에서 팔로워를 soft-block 처리 중..."
true_privacy_html: "<strong>프라이버시 보호는 End-to-End 암호화로만 이루어 질 수 있다는 것에 유의</strong>해 주십시오."
unlocked_warning_html: 누구든 여러분을 팔로우 할 수 있으며, 여러분의 프라이빗 투고를 볼 수 있습니다. 팔로우 할 수 있는 사람을 제한하고 싶은 경우 %{lock_link}에서 설정해 주십시오.
unlocked_warning_title: 이 계정은 비공개로 설정되어 있지 않습니다.
generic:
changes_saved_msg: 정상적으로 변경되었습니다.
powered_by: powered by %{link}
save_changes: 변경 사항을 저장
validation_errors:
one: 오류가 발생했습니다. 아래 오류를 확인해 주십시오
other: 오류가 발생했습니다. 아래 %{count}개 오류를 확인해 주십시오
imports:
preface: 다른 인스턴스에서 내보내기 한 파일에서 팔로우 / 차단 정보를 이 인스턴스 계정으로 불러올 수 있습니다.
success: 파일이 정상적으로 업로드 되었으며, 현재 처리 중입니다. 잠시 후 다시 확인해 주십시오.
types:
blocking: 차단한 계정 목록
following: 팔로우 중인 계정 목록
muting: 뮤트 중인 계정 목록
upload: 업로드
landing_strip_html: "<strong>%{name}</strong> 님은 %{link_to_root_path} 인스턴스의 사용자입니다. 계정을 가지고 있다면 팔로우 하거나 대화할 수 있습니다."
landing_strip_signup_html: 아직 계정이 없다면 <a href="%{sign_up_path}">여기서</a> 등록할 수 있습니다.
media_attachments:
validations:
images_and_video: 이미 사진이 첨부되어 있으므로 동영상을 첨부할 수 없습니다.
too_many: 최대 4개까지 첨부할 수 있습니다.
notification_mailer:
digest:
body: "%{instance} 에서 마지막 로그인 뒤로 일어난 일:"
mention: "%{name} 님이 답장했습니다:"
new_followers_summary:
one: 새 팔로워가 생겼습니다!
other: "%{count} 명의 팔로워가 생겼습니다!"
subject:
one: "1건의 새로운 알림 \U0001F418"
other: "%{count}건의 새로운 알림 \U0001F418"
favourite:
body: "%{name} 님이 내 Toot을 즐겨찾기에 등록했습니다."
subject: "%{name} 님이 내 Toot을 즐겨찾기에 등록했습니다"
follow:
body: "%{name} 님이 나를 팔로우 했습니다"
subject: "%{name} 님이 나를 팔로우 했습니다"
follow_request:
body: "%{name} 님이 내게 팔로우 요청을 보냈습니다."
subject: "%{name} 님이 보낸 팔로우 요청"
mention:
body: "%{name} 님이 답장을 보냈습니다:"
subject: "%{name} 님이 답장을 보냈습니다"
reblog:
body: "%{name} 님이 내 Toot을 부스트 했습니다:"
subject: "%{name} 님이 내 Toot을 부스트 했습니다"
pagination:
next: 다음
prev: 이전
truncate: "&hellip;"
remote_follow:
acct: 아이디@도메인을 입력해 주십시오
missing_resource: 리디렉션 대상을 찾을 수 없습니다
proceed: 팔로우 하기
prompt: 팔로우 하려 하고 있습니다
sessions:
activity: 마지막 활동
browser: 브라우저
browsers:
alipay: Alipay
blackberry: Blackberry
chrome: Chrome
edge: Microsoft Edge
firefox: Firefox
generic: 알 수 없는 브라우저
ie: Internet Explorer
micro_messenger: MicroMessenger
nokia: Nokia S40 Ovi Browser
opera: Opera
phantom_js: PhantomJS
qq: QQ Browser
safari: Safari
uc_browser: UCBrowser
weibo: Weibo
current_session: 현재 세션
description: "%{browser} on %{platform}"
explanation: 내 Mastodon 계정에 현재 로그인 중인 웹 브라우저 목록입니다.
ip: IP
platforms:
adobe_air: Adobe Air
android: Android
blackberry: Blackberry
chrome_os: ChromeOS
firefox_os: Firefox OS
ios: iOS
linux: Linux
mac: Mac
other: 알 수 없는 플랫폼
windows: Windows
windows_mobile: Windows Mobile
windows_phone: Windows Phone
title: 세션
settings:
authorized_apps: 인증된 어플리케이션
back: 돌아가기
delete: 계정 삭제
edit_profile: 프로필 편집
export: 데이터 내보내기
followers: 신뢰 중인 인스턴스
import: 데이터 가져오기
preferences: 사용자 설정
settings: 설정
two_factor_authentication: 2단계 인증
statuses:
open_in_web: Web으로 열기
over_character_limit: 최대 %{max}자까지 입력할 수 있습니다
show_more: 더 보기
visibilities:
private: 비공개
private_long: 팔로워에게만 표시됩니다
public: 공개
public_long: 누구나 볼 수 있으며, 공개 타임라인에 표시됩니다
unlisted: Unlisted
unlisted_long: 누구나 볼 수 있지만, 공개 타임라인에는 표시되지 않습니다
stream_entries:
click_to_show: 클릭해서 표시
reblogged: 님이 부스트 했습니다
sensitive_content: 민감한 컨텐츠
time:
formats:
default: "%Y년 %m월 %d일 %H:%M"
two_factor_authentication:
code_hint: 확인하기 위해서 인증 어플리케이션에서 표시된 코드를 입력해 주십시오
description_html: "<strong>2단계 인증</strong>을 활성화 하면 로그인 시 전화로 인증 코드를 받을 필요가 있습니다."
disable: 비활성화
enable: 활성화
enabled: 2단계 인증이 활성화 되어 있습니다
enabled_success: 2단계 인증이 활성화 되었습니다
generate_recovery_codes: 복구 코드 생성
instructions_html: "<strong>Google Authenticator, 또는 타 TOTP 어플리케이션에서 이 QR 코드를 스캔해 주십시오.</strong> 이후 로그인 시에는 이 어플리케이션에서 생성되는 코드가 필요합니다."
lost_recovery_codes: 복구 코드를 사용하면 휴대전화를 분실한 경우에도 계정에 접근할 수 있게 됩니다. 복구 코드를 분실한 경우에도 여기서 다시 생성할 수 있지만, 예전 복구 코드는 비활성화 됩니다.
manual_instructions: 'QR 코드를 스캔할 수 없어 수동으로 등록을 원하시는 경우 이 비밀 코드를 사용해 주십시오: '
recovery_codes: 복구 코드
recovery_codes_regenerated: 복구 코드가 다시 생성되었습니다.
recovery_instructions_html: 휴대전화를 분실한 경우, 아래 복구 코드 중 하나를 사용해 계정에 접근할 수 있습니다. <strong>복구 코드는 안전하게 보관해 주십시오.</strong> 이 코드를 인쇄해 중요한 서류와 함께 보관하는 것도 좋습니다.
setup: 초기 설정
wrong_code: 코드가 올바르지 않습니다. 서버와 휴대전화 간의 시간이 일치하는지 확인해 주십시오.
users:
invalid_email: 메일 주소가 올바르지 않습니다
invalid_otp_token: 2단계 인증 코드가 올바르지 않습니다

View File

@ -3,23 +3,12 @@ nl:
about:
about_mastodon: Mastodon is een <em>vrij, gratis en open-source</em> sociaal netwerk. Een <em>gedecentraliseerd</em> alternatief voor commerciële platforms. Het voorkomt de risico's van een enkel bedrijf dat jouw communicatie monopoliseert. Kies een server die je vertrouwt &mdash; welke je ook kiest, je kunt met elke andere server communiceren. Iedereen kan een eigen Mastodon-server draaien en naadloos deelnemen in het <em>sociale netwerk</em>.
about_this: Over deze server
apps: Apps
business_email: 'E-mailadres:'
closed_registrations: Registreren op deze server is momenteel uitgeschakeld.
contact: Contact
description_headline: Wat is %{domain}?
domain_count_after: andere servers
domain_count_before: Verbonden met
features:
api: Open API voor apps en diensten
blocks: Uitgebreide blokkeer- en negeerhulpmiddelen
characters: 500 tekens per bericht
chronology: Tijdlijnen zijn chronologisch
ethics: 'Ethisch design: geen advertenties, geen spionage'
gifv: GIFV-sets en korte video's
privacy: Nauwkeurige privacyinstellingen per toot (bericht)
public: Openbare tijdlijnen
features_headline: Wat maakt Mastodon anders
get_started: Beginnen
links: Links
other_instances: Andere servers
@ -36,24 +25,43 @@ nl:
nothing_here: Hier is niets!
people_followed_by: Mensen die %{name} volgt
people_who_follow: Mensen die %{name} volgen
posts: Berichten
posts: Toots
remote_follow: Extern volgen
unfollow: Ontvolgen
admin:
reports:
action_taken_by: Actie uitgevoerd door
are_you_sure: Weet je het zeker?
comment:
label: Opmerking
none: Geen
delete: Verwijderen
id: ID
mark_as_resolved: Markeer als opgelost
nsfw:
'false': Media tonen
'true': Media verbergen
report: 'Gerapporteerde toot #%{id}'
reported_account: Gerapporteerde account
reported_by: Gerapporteerd door
resolved: Opgelost
silence_account: Account stilzwijgen
status: Toot
suspend_account: Account blokkeren
target: Target
title: Gerapporteerde toots
unresolved: Onopgelost
view: Weergeven
settings:
contact_information:
email: Vul een openbaar gebruikt e-mailadres in
label: Contactgegevens
username: Vul een gebruikersnaam in
registrations:
closed_message:
desc_html: Wordt op de voorpagina weergegeven wanneer registratie van nieuwe accounts is uitgeschakeld<br>En ook hier kan je HTML gebruiken
title: Bericht wanneer registratie is uitgeschakeld
open:
disabled: Uitgeschakeld
enabled: Ingeschakeld
title: Open registratie
setting: Instelling
site_description:
desc_html: Dit wordt als een alinea op de voorpagina getoond en gebruikt als meta-tag in de paginabron.<br>Je kan HTML gebruiken, zoals <code>&lt;a&gt;</code> en <code>&lt;em&gt;</code>.
title: Omschrijving Mastodon-server
@ -62,24 +70,11 @@ nl:
title: Uitgebreide omschrijving Mastodon-server
site_title: Naam Mastodon-server
title: Server-instellingen
admin.reports:
comment:
label: Opmerking
none: Geen
delete: Verwijderen
id: ID
mark_as_resolved: Markeer als opgelost
report: 'Gerapporteerde toot #%{id}'
reported_account: Gerapporteerde account
reported_by: Gerapporteerd door
resolved: Opgelost
silence_account: Account stilzwijgen
status: Toot
suspend_account: Account blokkeren
target: Target
title: Gerapporteerde toots
unresolved: Onopgelost
view: Weergeven
title: Beheer
admin_mailer:
new_report:
body: "%{reporter} heeft %{target} gerapporteerd"
subject: Nieuwe toots gerapporteerd op %{instance} (#%{id})
application_mailer:
settings: 'E-mailvoorkeuren wijzigen: %{link}'
signature: Mastodon-meldingen van %{instance}
@ -87,7 +82,9 @@ nl:
applications:
invalid_url: De opgegevens URL is ongeldig
auth:
change_password: Inloggegevens
change_password: Beveiliging
delete_account: Account verwijderen
delete_account_html: Wanneer je jouw account graag wilt verwijderen, kan je dat <a href="%{path}">hier doen</a>. We vragen jou daar om een bevestiging.
didnt_get_confirmation: Geen bevestigingsinstructies ontvangen?
forgot_password: Wachtwoord vergeten?
login: Aanmelden
@ -115,12 +112,23 @@ nl:
x_minutes: "%{count}m"
x_months: "%{count}ma"
x_seconds: "%{count}s"
deletes:
bad_password_msg: Goed geprobeerd hackers! Ongeldig wachtwoord
confirm_password: Voer jouw huidige wachtwoord in om jouw identiteit te bevestigen
description_html: Hierdoor worden alle gegevens van jouw account <strong>permanent, onomkeerbaar</strong> verwijderd en wordt deze gedeactiveerd. Om toekomstige identiteitsdiefstal te voorkomen, kan op deze server jouw gebruikersnaam niet meer gebruikt worden.
proceed: Account verwijderen
success_msg: Jouw account is succesvol verwijderd
warning_html: We kunnen alleen garanderen dat jouw gegevens op deze server worden verwijderd. Berichten (toots), incl. media, die veel zijn gedeeld laten mogelijk sporen achter. Offline servers en servers die niet meer op jouw updates zijn geabonneerd zullen niet hun databases updaten.
warning_title: Verwijdering gegevens op andere servers
errors:
'403': Jij hebt geen toestemming om deze pagina te bekijken.
'404': De pagina waarnaar jij op zoek bent bestaat niet.
'410': De pagina waarnaar jij op zoek bent bestaat niet meer.
'422':
content: Veiligheidsverificatie mislukt. Blokkeer je toevallig cookies?
title: Veiligheidsverificatie mislukt
'429': Te veel verbindingsaanvragen.
noscript: Schakel JavaScript in om Mastodon te kunnen gebruiken.
exports:
blocks: Jij blokkeert
csv: CSV
@ -141,7 +149,7 @@ nl:
unlocked_warning_title: Jouw account is niet besloten
generic:
changes_saved_msg: Wijzigingen succesvol opgeslagen!
powered_by: mogelijk gemaakt door %{link}
powered_by: wordt mogelijk gemaakt door %{link}
save_changes: Wijzigingen opslaan
validation_errors:
one: Er is iets niet helemaal goed! Bekijk onderstaande fout
@ -154,7 +162,7 @@ nl:
following: Volglijst
muting: Negeerlijst
upload: Uploaden
landing_strip_html: <strong>%{name}</strong> is een gebruiker op %{link_to_root_path}. Je kunt deze volgen en ermee communiceren als je ergens in deze fediverse een account hebt.
landing_strip_html: "<strong>%{name}</strong> is een gebruiker op %{link_to_root_path}. Je kunt deze volgen en ermee communiceren als je ergens in deze fediverse een account hebt."
landing_strip_signup_html: Als je dat niet hebt, kun je je <a href="%{sign_up_path}">hier registreren</a>.
notification_mailer:
digest:
@ -189,6 +197,43 @@ nl:
missing_resource: Kon vereiste doorverwijzings-URL voor jouw account niet vinden
proceed: Ga door om te volgen
prompt: 'Jij gaat volgen:'
sessions:
activity: Laatst actief
browser: Webbrowser
browsers:
alipay: Alipay
blackberry: Blackberry
chrome: Chrome
edge: Microsoft Edge
firefox: Firefox
generic: Onbekende webbrowser
ie: Internet Explorer
micro_messenger: MicroMessenger
nokia: Nokia S40 Ovi Browser
opera: Opera
phantom_js: PhantomJS
qq: QQ Browser
safari: Safari
uc_browser: UCBrowser
weibo: Weibo
current_session: Huidige sessie
description: "%{browser} op %{platform}"
explanation: Dit zijn de webbrowsers die momenteel met jouw Mastodon-account zijn ingelogd.
ip: IP
platforms:
adobe_air: Adobe Air
android: Android
blackberry: Blackberry
chrome_os: ChromeOS
firefox_os: Firefox OS
ios: iOS
linux: Linux
mac: Mac
other: Onbekend platform
windows: Windows
windows_mobile: Windows Mobile
windows_phone: Windows Phone
title: Sessies
settings:
authorized_apps: Geautoriseerde apps
back: Terug naar Mastodon
@ -226,7 +271,7 @@ nl:
generate_recovery_codes: Herstelcodes genereren
instructions_html: "<strong>Scan deze QR-code in Google Authenticator of een soortgelijke app op jouw mobiele telefoon</strong>. Van nu af aan genereert deze app aanmeldcodes die je bij het aanmelden moet invoeren."
lost_recovery_codes: Met herstelcodes kun je toegang tot jouw account krijgen wanneer je jouw telefoon bent kwijtgeraakt. Wanneer je jouw herstelcodes bent kwijtgeraakt, kan je ze hier opnieuw genereren. Jouw oude herstelcodes zijn daarna ongeldig.
manual_instructions: 'Hieronder vind je de geheime code in platte tekst. Voor het geval je de QR-code niet kunt scannen en het handmatig moet invoeren.'
manual_instructions: Hieronder vind je de geheime code in platte tekst. Voor het geval je de QR-code niet kunt scannen en het handmatig moet invoeren.
recovery_codes_regenerated: Opnieuw genereren herstelcodes geslaagd
recovery_instructions_html: Wanneer je ooit de toegang verliest tot jouw telefoon, kan je met behulp van een van de herstelcodes hieronder opnieuw toegang krijgen tot jouw account. Zorg ervoor dat je de herstelcodes op een veilige plek bewaard. (Je kunt ze bijvoorbeeld printen en ze samen met andere belangrijke documenten bewaren.)
setup: Instellen

View File

@ -3,23 +3,12 @@
about:
about_mastodon: Mastodon er et sosialt nettverk laget med <em>fri programvare</em>. Et <em>desentralisert</em> alternativ til kommersielle plattformer. Slik kan det unngå risikoene ved å ha et enkelt selskap som monopoliserer din kommunikasjon. Velg en tjener du stoler på &mdash; uansett hvilken du velger så kan du kommunisere med alle andre. Alle kan kjøre sin egen Mastodon og delta sømløst i det sosiale nettverket.
about_this: Om denne instansen
apps: Applikasjoner
business_email: 'Bedriftsepost:'
closed_registrations: Registreringer er for øyeblikket lukket på denne instansen.
contact: Kontakt
description_headline: Hva er %{domain}?
domain_count_after: andre instanser
domain_count_before: Koblet til
features:
api: Åpent API for applikasjoner og tjenester
blocks: Rikholdige blokkeringsverktøy
characters: 500 tegn per status
chronology: Tidslinjer er kronologiske
ethics: 'Etisk design: Ingen reklame, ingen sporing'
gifv: Støtte for GIFV og korte videoer
privacy: Finmaskede personvernsinnstillinger
public: Felles tidslinjer
features_headline: Hva skiller Mastodon fra andre sosiale nettverk
get_started: Kom i gang
links: Lenker
other_instances: Andre instanser
@ -153,17 +142,13 @@
settings:
contact_information:
email: Skriv en offentlig e-postadresse
label: Kontaktinformasjon
username: Skriv brukernavn
registrations:
closed_message:
desc_html: Vises på forsiden når registreringer er lukket<br>Du kan bruke HTML-tagger
title: Melding for lukket registrering
open:
disabled:
enabled: Av
title: Åpen registrering
setting: Innstilling
site_description:
desc_html: Vises som et avsnitt på forsiden og brukes som en meta-tagg.<br> Du kan bruke HTML-tagger, spesielt <code>&lt;a&gt;</code> og <code>&lt;em&gt;</code>.
title: Nettstedsbeskrivelse
@ -321,6 +306,76 @@
click_to_show: Klikk for å vise
reblogged: fremhevde
sensitive_content: Følsomt innhold
terms:
body_html: |
<h2>Personvernserklæring</h2>
<h3 id='collect'>Hvilke opplysninger samler vi?</h3>
<p>Vi samler opplysninger fra deg når du registrerer deg på nettstedet vårt, og vi samler data når du deltar på forumet ved å lese, skrive og evaluere innholdet som deles her.</p>
<p>Når du registrerer deg på nettstedet vårt, kan du bli bedt om å oppgi navnet og e-postadressen din. Imidlertid kan du besøke nettstedet vårt uten å registrere deg. E-postadressen din vil bli bekreftet med en e-post som inneholder en unik lenke. Hvis siden den lenker til, blir besøkt, vet vi at du har kontroll over e-postadressen.</p>
<p>Når du registrerer deg og skriver innlegg, registrerer vi IP-adressen som innlegget stammer fra. Vi kan også oppbevare logger som inkluderer IP-adressen til alle forespørslene sendt til tjeneren vår.</p>
<h3 id='use'>Hva bruker vi opplysningene dine til?</h3>
<p>Alle opplysningene vi samler fra deg, kan bli brukt på en av følgende måter:</p>
<ul>
<li>For å gjøre opplevelsen din mer personlig. Opplysningene dine hjelper oss å svare bedre på dine individuelle behov.</li>
<li>For å forbedre nettstedet vårt. Vi jobber konstant for å forbedre nettstedets tilbud basert på opplysningene og tilbakemeldingene vi mottar fra deg.</li>
<li>For å forbedre vår kundeservice. Dine opplysninger hjelper oss å svare mer effektivt på dine forespørsler sendt til kundeservice eller behov om støtte.</li>
<li>For å sende periodiske e-poster. E-postadressen du oppgir, kan bli brukt til å sende deg informasjon, påminnelser som du ber om ved endringer av emner eller ved svar til brukernavnet ditt, til henvendelser, og/eller andre forspørsler eller andre spørsmål.</li>
</ul>
<h3 id='protect'>Hvordan sikrer vi opplysningene?</h3>
<p>Vi gjennomfører flere sikkerhetstiltak for å holde personopplysningene dine sikre når du skriver inn, lagrer eller henter dem.</p>
<h3 id='data-retention'>Hva er retningslinjene deres for lagring av data?</h3>
<p>Vi vil forsøke i god tro å:</p>
<ul>
<li>Ikke oppbevare tjener-logger som inneholder IP-adressen til alle forespørslene til denne tjeneren i lenger enn i 90 dager.</li>
<li>Ikke oppbevare IP-adressene forbundet med registrerte brukere og deres innlegg lenger enn i 5 år.</li>
</ul>
<h3 id='cookies'>Bruker vi informasjonskapsler?</h3>
<p>Ja. Informasjonskapsler er små filer som et nettsted eller dets tjenesteleverandør overfører til harddisken på datamaskinen din gjennom nettleseren din (dersom du tillater det). Disse informasjonskapslene gjør det mulig for nettstedet å gjenkjenne nettleseren din og, dersom du har en konto, knytte nettleseren til den.</p>
<p>Vi bruker informasjonskapsler for å forstå og lagre preferansene dine for fremtidige besøk og for å samle aggregatdata om trafikk på og samhandling med nettstedet slik at vi kan tilby bedre opplevelser og verktøy på nettstedet i fremtiden. Vi kan inngå avtaler med tredjeparts tjenesteleverandører for å bistå oss i å forstå besøkerne våres bedre. Disse tjenesteleverandørene har ikke lov til å bruke opplysningene samlet på våres vegne unntatt til å hjelpe oss å gjennomføre og forbedre anliggendet vårt.</p>
<h3 id='disclose'>Gir vi noen opplysninger videre til andre parter?</h3>
<p>Vi verken selger, handler med eller overfører på noen annen måte til andre parter dine identifiserbare personopplysninger. Dette inkluderer ikke tredjeparter som har vår tillit og bistår oss i å drive nettstedet, utføre våre anliggender eller yter tjenester til deg, så lenge disse partene samtykker til å behandle disse opplysningene fortrolig. Vi kan også frigi opplysningene dine dersom vi tror at å frigi dem er hensiktsmessig for å overholde loven, håndheve nettstedet retningslinjer eller beskytte våre og andres rettigheter. Imidlertid kan opplysninger som ikke er personlig identifiserbare, bli delt med andre parter for markedsføring, reklame eller annet bruk.</p>
<h3 id='third-party'>Tredjeparts lenker</h3>
<p>Av og til, etter skjønn, kan vil inkludere eller tilby tredjeparts produkter eller tjenester på nettstedet vårt. Disse tredjeparts nettstedene har separate og selvstendige personvernerklæringer. Vi bærer derfor intet ansvar eller forpliktelser for innholdet eller aktivitetene til disse nettstedene det lenkes til. Ikke mindre prøver vi å bevare vår eget nettsteds integritet og ønsker enhver tilbakemelding om disse nettstedene velkomne.</p>
<h3 id='coppa'>Overensstemmelse med Children's Online Privacy Protection Act</h3>
<p>Nettstedet er rettet mot folk som er minst 13 år gamle. Dersom denne tjeneren er i USA, og du er under 13 år i henhold til kravene i COPPA (<a href="https://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act">Children&#39;s Online Privacy Protection Act</a>), ikke bruk dette nettstedet.</p>
<h3 id='online'>Personvernerklæring bare for nettet</h3>
<p>Denne nett-personvernerklæringen gjelder bare for informasjon samlet gjennom nettstedet vårt og ikke for opplysninger samlet når en er frakoblet.</p>
<h3 id='consent'>Ditt samtykke</h3>
<p>Ved å bruke dette nettstedet samtykker du til nettstedets personvernerklæring.</p>
<h3 id='changes'>Endringer i vår personvernerklæring</h3>
<p>Dersom vi beslutter å endre personvernerklæringen vår, vil vi publisere disse endringene på denne siden.</p>
<p>Dette dokumentet er lisensiert under CC-BY-SA. De ble sist oppdatert 12. april 2017.</p>
<p>Dokumentet er en adoptert og endret versjon fra <a href="https://github.com/discourse/discourse">Discourse privacy policy</a>.</p>
title: "%{instance} Personvern og villkår for bruk av nettstedet"
time:
formats:
default: "%-d. %b %Y, %H:%M"

View File

@ -3,23 +3,12 @@ oc:
about:
about_mastodon: Mastodon es un malhum social <em>liure e open-source</em>. Una alternativa <em>decentralizada</em> a las platformas comercialas, aquò evita quuna sola companiá monopolize vòstra comunicacion. Causissètz une servidor que vos fisatz, quina que siague vòstra causida, podètz interagir amb tot lo mond. Qual que siague pòt aver son instància Mastodon e participar al <em>malhum social</em> sens cap de problèmas.
about_this: A prepaus daquesta instància
apps: Aplicacions
business_email: 'Corrièl professional :'
closed_registrations: Las inscripcions son clavadas pel moment sus aquesta instància.
contact: Contacte
description_headline: Qué es %{domain} ?
domain_count_after: autras instàncias
domain_count_before: Connectat a
features:
api: API dubèrta per las aplicacions e servicis
blocks: Aisinas complètas per blocar e rescondre
characters: 500 caractèrs per publicacion
chronology: Flux dactualitat cronologic
ethics: 'Ethical design: pas cap de reclama o traçador'
gifv: Partatge de GIFs e vidèos cortas
privacy: Nivèl de confidencialitat configurable per cada publicacion
public: Fluxes dactualitat publics
features_headline: Çò que fa que Mastodon es diferent
get_started: Venètz al malhum
links: Ligams
other_instances: Autras instàncias
@ -160,17 +149,13 @@ oc:
settings:
contact_information:
email: Picatz una adreça de corrièl
label: Informacions de contacte
username: Picatz un nom dutilizaire
registrations:
closed_message:
desc_html: Afichat sus las pagina dacuèlh quand las inscripcions son tampadas.<br>Podètz utilizar de balisas HTML
title: Messatge de barradura de las inscripcions
open:
disabled: Desactivadas
enabled: Activadas
title: Inscripcions
setting: Paramètre
site_description:
desc_html: Afichada jos la forma de paragrafe sus la pagina dacuèlh e utilizada coma balisa meta.<br> Podètz utilizar de balisas HTML, coma <code>&lt;a&gt;</code> et <code>&lt;em&gt;</code>.
title: Descripcion del site
@ -220,7 +205,7 @@ oc:
- dv
- ds
abbr_month_names:
-
-
- gen
- feb
- mar
@ -242,11 +227,11 @@ oc:
- divendres
- dissabte
formats:
default: "%d/%m/%Y"
long: Lo %B %d de %Y
short: "%b %d"
default: "%e/%m/%Y"
long: Lo %e %B de %Y
short: "%e %b"
month_names:
-
-
- de genièr
- de febrièr
- de març

View File

@ -3,23 +3,12 @@ pl:
about:
about_mastodon: Mastodon jest <em>wolną i otwartą</em> siecią społecznościową, <em>zdecentralizowaną</em> alternatywą dla zamkniętych, komercyjnych platform. Pozwala uniknąć ryzyka monopolizacji Twojej komunikacji przez jedną korporację. Wybierz serwer, któremu ufasz &mdash; nie ograniczy to Twoich możliwości komunikacji z innymi osobami w sieci. Każdy może też uruchomić własną instancję Mastodona i dołączyć do reszty tej <em>sieci społecznościowej</em>.
about_this: O tej instancji
apps: Aplikacje
business_email: 'Służbowy adres e-mail:'
closed_registrations: Rejestracja na tej instancji jest obecnie zamknięta.
contact: Kontakt
description_headline: Czym jest %{domain}?
domain_count_after: instancji
domain_count_before: Serwer połączony z
features:
api: Otwarte API dla aplikacji i usług
blocks: Rozbudowane narzędzia blokowania i ukrywania
characters: 500 znaków na wpis
chronology: Chronologiczny porządek wyświetlania
ethics: 'Etyczne założenia: nie śledzimy, bez reklam'
gifv: obsługa GIFV i krótkich wideo
privacy: Precyzyjne ustawienia widoczności poszczególnych postów
public: Publiczne osie czasu
features_headline: Co wyróżnia Mastodona
get_started: Rozpocznijmy!
links: Odnośniki
other_instances: Inne instancje
@ -61,8 +50,8 @@ pl:
edit: Edytuj
email: Adres e-mail
feed_url: Adres kanału
followers: Obserwujący
follows: Obserwacje
followers: Śledzący
follows: Śledzeni
ip: Adres IP
location:
all: Wszystkie
@ -114,7 +103,7 @@ pl:
create: Utwórz blokadę
hint: Blokada domen nie zabroni tworzenia wpisów kont w bazie danych, ale pozwoli na automatyczną moderację kont do nich należących.
severity:
desc_html: "<strong>Wyciszenie</strong> uczyni wpisy użytkownika niewidoczne dla osób, które go nie obserwują. <strong>Zawieszenie</strong> spowoduje usunięcie całej zawartości dodanej przez użytkownika."
desc_html: "<strong>Wyciszenie</strong> uczyni wpisy użytkownika widoczne tylko dla osób, które go śledzą. <strong>Zawieszenie</strong> spowoduje usunięcie całej zawartości dodanej przez użytkownika."
silence: Wycisz
suspend: Zawieś
title: Nowa blokada domen
@ -166,23 +155,22 @@ pl:
settings:
contact_information:
email: Wprowadź publiczny adres e-mail
label: Informacje kontaktowe
username: Wprowadź nazwę użytkownika
registrations:
closed_message:
desc_html: Wyświetlana na stronie głównej, gdy możliwość otwarej rejestracji<br>nie jest dostępna. Możesz korzystać z tagów HTML
title: Wiadomość o nieaktywnej rejestracji
open:
disabled: Nieaktywna
enabled: Aktywna
title: Otwarta rejestracja
setting: Ustawienie
site_description:
desc_html: Wyświetlany jako nagłówek na stronie głównej oraz jako meta tag.<br>Możesz korzystać z tagów HTML, w szczególności z <code>&lt;a&gt;</code> i <code>&lt;em&gt;</code>.
title: Opis strony
site_description_extended:
desc_html: Wyświetlany w rozszerzonych informacjach o stronie<br>Możesz korzystać z tagów HTML
title: Extended site description
site_terms:
desc_html: Wyświetlana na stronie zasad użytkowania<br>Możesz używać tagów HTML
title: Polityka prywatności strony
site_title: Tytuł strony
title: Ustawienia strony
subscriptions:
@ -195,7 +183,7 @@ pl:
title: Administracja
admin_mailer:
new_report:
body: "Użytkownik %{reporter} zgłosił %{target}"
body: Użytkownik %{reporter} zgłosił %{target}
subject: Nowe zgłoszenie na %{instance} (#%{id})
application_mailer:
settings: 'Zmień ustawienia powiadamiania: %{link}'
@ -206,9 +194,9 @@ pl:
auth:
change_password: Bezpieczeństwo
delete_account: Usunięcie konta
delete_account_html: Jeżeli próbowałeś usunąć konto, <a href="%{path}">przejdź tutaj</a>. Otrzymasz prośbę o potwierdzenie.
delete_account_html: Jeżeli chcesz usunąć konto, <a href="%{path}">przejdź tutaj</a>. Otrzymasz prośbę o potwierdzenie.
didnt_get_confirmation: Nie otrzymałeś instrukcji weryfikacji?
forgot_password: Zapomniane hasło
forgot_password: Nie pamiętasz hasła?
login: Zaloguj się
logout: Wyloguj się
register: Rejestracja
@ -218,6 +206,12 @@ pl:
authorize_follow:
error: Niestety, podczas sprawdzania zdalnego konta wystąpił błąd
follow: Śledź
follow_request: 'Wysłano prośbę o pozwolenie na obserwację:'
following: 'Pomyślnie! Od teraz śledzisz:'
post_follow:
close: Ewentualnie, możesz po prostu zamknąć tą stronę.
return: Powróć do strony użytkownika
web: Przejdź do sieci
prompt_html: 'Ty (<strong>%{self}</strong>) chcesz śledzić:'
title: Śledź %{acct}
datetime:
@ -259,15 +253,15 @@ pl:
storage: Urządzenie przechowujące dane
followers:
domain: Domena
explanation_html: Jeżeli chcesz mieć pewność, kto może przeczytać Twoje statusy, musisz kontrolować, kto Cię obserwuje. <strong>Twoje prywatne statusy są dostarczane na te instancje, na których jesteś obserwowany</strong>. Możesz sprawdzać swoich obserwowanych i blokować ich, jeśli nie ufasz właścicielom lub oprogramowaniu danej instancji.
followers_count: Liczba obserwujących
explanation_html: Jeżeli chcesz mieć pewność, kto może przeczytać Twoje statusy, musisz kontrolować, kto śledzi Twój profil. <strong>Twoje prywatne statusy są dostarczane na te instancje, na których jesteś śledzony</strong>. Możesz sprawdzać, kto Cię śledzi i blokować ich, jeśli nie ufasz właścicielom lub oprogramowaniu danej instancji.
followers_count: Liczba śledzących
lock_link: Zablokuj swoje konto
purge: Usuń z obserwujących
purge: Przestań śledzić
success:
one: W trakcie usuwania obserwujcych z jednej domeny…
other: W trakcie usuwania obserwujących z %{count} domen…
one: W trakcie usuwania śledzących z jednej domeny…
other: W trakcie usuwania śledzących z %{count} domen…
true_privacy_html: Pamiętaj, że <strong>rzeczywista prywatność może zostać uzyskana wyłącznie dzięki szyfrowaniu end-to-end</strong>.
unlocked_warning_html: Każdy może cię zaobserwować, aby natychmiastowo zobaczyć twoje statusy. %{lock_link} aby móc kontrolować obserwujących.
unlocked_warning_html: Każdy może cię śledzić, aby natychmiastowo zobaczyć twoje statusy. %{lock_link} aby móc kontrolować, kto Cię śledzi.
unlocked_warning_title: Twoje konto nie jest zablokowane
generic:
changes_saved_msg: Ustawienia zapisane!
@ -371,7 +365,7 @@ pl:
delete: Usuń konto
edit_profile: Edytuj profil
export: Eksportuj dane
followers: Autoryzowani obserwujący
followers: Autoryzowani śledzący
import: Importuj dane
preferences: Preferencje
settings: Ustawienia
@ -382,15 +376,85 @@ pl:
show_more: Pokaż więcej
visibilities:
private: Tylko dla śledzących
private_long: Widoczne tylko obserwowanych
private_long: Widoczne tylko dla śledzących
public: Publiczny
public_long: Widoczne dla wszystkich
unlisted: Niewypisany
unlisted_long: Widoczne dla wszystkich, ale nie wyświetlane na publicznych osiach czasu
stream_entries:
click_to_show: Naciśnij aby wyświetlić
reblogged: podbito
reblogged: podbił
sensitive_content: Wrażliwa zawartość
terms:
body_html: |
<h2>Polityka prywatności</h2>
<h3 id="collect">Jakie informacje zbieramy?</h3>
<p>Zbieramy informacje podane przy rejestracji i treści utworzone w trakcie korzystania z serwisu.</p>
<p>Podczas rejestracji, możesz otrzymać prośbę o podanie adresu e-mail. Możesz jednak odwiedzać stronę bez rejestracji. Adres zostanie zweryfikowany przez kliknięcie w link wysłany w wiadomości. Dzięki temu wiemy, że jesteś właścicielem tego adresu.</p>
<p>Podczas rejestracji i tworzenia postów, Twój adres IP jest zapisywany na naszych serwerach. Możemy też przechowywać adres IP użyty przy każdej operacji w serwisie.</p>
<h3 id="use">Jak wykorzystujemy zebrane informacje?</h3>
<p>Zebrane informacje mogą zostać w jednym z następujących celach:</p>
<ul>
<li>Aby poprawić wrażenia &mdash; informacje o Tobie pomagają w dostosowywaniu serwisu do Twoich potrzeb.</li>
<li>Aby usprawnić stronę &mdash; nieustannie staramy się ulepszyć stronę na podstawie informacji o Tobie i Twoich opinii.</li>
<li>Aby usprawnić obsługę klienta &mdash; informacje pomogą obsłudze klienta utrzymywać kontakt z Tobą.</li>
<li>Aby okazjonalnie wysyłać wiadomości e-mail &mdash; Na podany adres e-mail mogą zostać wysłane wiadomości o wspomnieniu o Tobie we wpisach, przejrzeniu Twojego zgłoszenia i innych interakcji z Tobą.</li>
</ul>
<h3 id="protect">Jak zabezpieczamy dane?</h3>
<p>Korzystamy z wielu zabezpieczeń, aby utrudnić osobom niepowołanym dostęp do danych, które wprowadzasz, publikujesz i czytasz.</p>
<h3 id="data-retention">Jak długo przechowujecie dane?</h3>
<p>Dołożymy wszelkich starań, aby przechowywać:</p>
<ul>
<li>dzienniki serwera zawierające adresy IP przypisane do każdych operacji nie dłużej niż 90 dni.</li>
<li>adresy IP przypisane do użytkowników i ich wpisów nie dłużej niż 5 lat.</li>
</ul>
<h3 id="cookies">Czy używamy plików cookies?</h3>
<p>Tak. Pliki cookies (zwane często ciasteczkami) są małymi zbiorami danych przechowywanych na Twoim dysku przez stronę internetową, aby rozpoznawać przeglądarkę i powiązać ją (jeżeli jesteś zarejestrowany/a) z Twoim kontem, jeżeli na to pozwolisz.</p>
<p>Możemy używać ciasteczek, aby skonfigurować stronę na podstawie zapisanych preferencji, oraz dostosować ją do potrzeb innych użytkowników. Możemy korzystać z usług firm trzecich pomagających w zrozumieniu potrzeb użytkownika. Te usługi nie mogą korzystać ze zdobytych danych w celach innych niż analiza pomagająca ulepszać ten serwis.</p>
<h3 id="disclose">Czy przekazujecie dane podmiotów trzecim?</h3>
<p>Nie dokonujemy transakcji danych pozwalających na identyfikację Twojej osoby umieszczonych na tym serwisie. Nie oznacza to, że nie przekazujemy ich zaufanym podmiotom, które korzystają z nich poufnie. Możemy jednak udostępniać dane, jeżeli jest to wymagane prawnie, lub dla utrzymania bezpieczeństwa strony i innych użytkowników. W celach marketingowych (i podobnych) mogą zostać użyte jedynie dane niepozwalające na identyfikację osoby.</p>
<h3 id="third-party">Odnośniki do treści stron trzecich</h3>
<p>Czasem na stronie mogą pojawić się odnośniki do stron trzecich. Mają one odrębne regulaminy i politykę prywatności. Nie odpowiadamy więc za zawartość tych stron. Dokładamy jednak wszelkich starań, aby nie stanowiły one zagrożenia, prosimy jednak o opinie na temat ich wykorzystania.</p>
<h3 id="coppa">Children's Online Privacy Protection Act Compliance</h3>
<p>Ta strona i usługa jest przeznaczona dla osób, które ukończyły 13 lat. Jeżeli serwer znajduje się na terenie USA i nie masz ukończonych 13 lat, zgodnie z amerykańską ustawą COPPA (<a href="https://pl.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act">Children's Online Privacy Protection Act</a>) nie możesz korzystać z tego serwisu.</p>
<h3 id="online">Polityka prywatności dotyczy tylko Internetu</h3>
<p>Ta polityka prywatności dotyczy jedynie danych zbieranych w Internecie, nie tych, które przechowywane są na Twoim kompurerze, np. pliki cookies.</p>
<h3 id="consent">Wyrażenie zgody</h3>
<p>Korzystanie ze strony jest równoznaczne z akceptacją naszej polityki prywatności.</p>
<h3 id="changes">Zmiany w naszej polityce prywatności</h3>
<p>Jeżeli zdecydujemy się na zmiany w polityce prywatności, zmiany pojawią się na tej stronie.</p>
<p>Dokument jest dostępny na licencji CC-BY-SA. Ostatnio modyfikowany 31 maja 2013, przetłumaczony 4 lipca 2017. Tłumaczenie (mimo dołożenia wszelkich starań) może nie być w pełni poprawne.</p>
<p>Tekst bazuje na <a href="https://github.com/discourse/discourse">polityce prywatności Discourse</a>.
title: Zasady korzystania i polityka prywatności %{instance}
time:
formats:
default: "%b %d, %Y, %H:%M"

View File

@ -3,23 +3,12 @@ pt-BR:
about:
about_mastodon: Mastodon é um servidor de rede social <em>grátis, e open-source</em>. Uma alternativa <em>descentralizada</em> ás plataformas comerciais, que evita o risco de uma única empresa monopolizar a sua comunicação. Escolha um servidor que você confie &mdash; qualquer um que escolher, você poderá interagir com todo o resto. Qualquer um pode ter uma instância Mastodon e assim participar na <em>rede social federada</em> sem problemas.
about_this: Sobre essa instância
apps: Aplicações
business_email: 'Email comercial:'
closed_registrations: Registros estão fechadas para essa instância.
contact: Contato
description_headline: O que é %{domain}?
domain_count_after: outras instâncias
domain_count_before: Conectado a
features:
api: Aberto para API de aplicações e serviços
blocks: Bloqueos e ferramentas para mudar
characters: 500 caracteres por post
chronology: Timeline são cronologicas
ethics: 'Design ético: sem propaganda, sem tracking'
gifv: GIFV e vídeos curtos
privacy: Granular, privacidade setada por post
public: Timelines públicas
features_headline: O que torna Mastodon diferente
get_started: Comece aqui
links: Links
other_instances: Outras instâncias
@ -152,17 +141,13 @@ pt-BR:
settings:
contact_information:
email: Entre um endereço de email público
label: Informação de contato
username: Entre com usuário
registrations:
closed_message:
desc_html: Mostrar na página inicial quando registros estão fecados<br/>Você pode usar tags HTML
title: Mensagem de registro fechados
open:
disabled: Desabilitado
enabled: Habilitado
title: Aberto para registro
setting: Preferências
site_description:
desc_html: Mostrar como parágrafo e usado como meta tag.<br/>Vôce pode usar tags HTML, em particular <code>&lt;a&gt;</code> e <code>&lt;em&gt;</code>.
title: Descrição do site

View File

@ -3,23 +3,12 @@ pt:
about:
about_mastodon: Mastodon é uma rede social <em>grátis e em código aberto</em>. Uma alternativa <em>descentralizada</em> às plataformas comerciais, que evita o risco de uma única empresa monopolizar a tua comunicação. Escolhe um servidor que confies, não importa qual, pois vais poder comunicar com todos os outros. Qualquer um pode criar uma instância Mastodon e participar nesta <em>rede social</em>.
about_this: Sobre esta instância
apps: Aplicações
business_email: 'Email comercial:'
closed_registrations: Novos registos estão fechados nesta instância.
contact: Contacto
description_headline: O que é o %{domain}?
domain_count_after: outras instâncias
domain_count_before: Ligado a
features:
api: API aberta para aplicações e serviços
blocks: Ferramentas para silenciar e bloquear
characters: 500 caracteres por post
chronology: Timelines cronológicas
ethics: 'Design ético: sem públicidade ou tracking'
gifv: GIFV e pequenos vídeos
privacy: Privacidade granular por post
public: Timelines públicas
features_headline: O que torna Mastodon diferente
get_started: Começar
links: Links
other_instances: Outras instâncias
@ -147,17 +136,13 @@ pt:
settings:
contact_information:
email: Inserir um endereço de email para tornar público
label: Informação de contacto
username: Insira um nome de utilizador
registrations:
closed_message:
desc_html: Mostrar na página inicial quando registos estão encerrados<br/>Podes usar tags HTML
title: Mensagem de registos encerrados
open:
disabled: Desabilitado
enabled: Habilitado
title: Aceitar novos registos
setting: Preferências
site_description:
desc_html: Mostrar como parágrafo na página inicial e usado como meta tag.<br/>Podes usar tags HTML, em particular <code>&lt;a&gt;</code> e <code>&lt;em&gt;</code>.
title: Descrição do site

View File

@ -3,23 +3,12 @@ ru:
about:
about_mastodon: Mastodon - это <em>свободная</em> социальная сеть с <em>открытым исходным кодом</em>. Как <em>децентрализованная</em> альтернатива коммерческим платформам, Mastodon предотвращает риск монополизации Вашего общения одной компанией. Выберите сервер, которому Вы доверяете &mdash; что бы Вы ни выбрали, Вы сможете общаться со всеми остальными. Любой может запустить свой собственный узел Mastodon и участвовать в <em>социальной сети</em> совершенно бесшовно.
about_this: Об этом узле
apps: Приложения
business_email: 'Деловой e-mail:'
closed_registrations: В данный момент регистрация на этом узле закрыта.
contact: Связаться
description_headline: Что такое %{domain}?
domain_count_after: другими узлами
domain_count_before: Связан с
features:
api: Открытый API для приложений и сервисов
blocks: Продвинутые инструменты блокирования и глушения
characters: 500 символов на пост
chronology: Хронологические ленты
ethics: 'Этичный дизайн: нет рекламы, нет слежения'
gifv: GIFV и короткие видео
privacy: Тонкие настройки приватности для каждого поста
public: Публичные ленты
features_headline: Что выделяет Mastodon
get_started: Начать
links: Ссылки
other_instances: Другие узлы
@ -134,17 +123,13 @@ ru:
settings:
contact_information:
email: Введите публичный e-mail
label: Контактная информация
username: Введите имя пользователя
registrations:
closed_message:
desc_html: Отображается на титульной странице, когда закрыта регистрация<br>Можно использовать HTML-теги
title: Сообщение о закрытой регистрации
open:
disabled: Закрыта
enabled: Открыта
title: Открыть регистрацию
setting: Настройка
site_description:
desc_html: Отображается в качестве параграфа на титульной странице и используется в качестве мета-тега.<br>Можно использовать HTML-теги, в особенности <code>&lt;a&gt;</code> и <code>&lt;em&gt;</code>.
title: Описание сайта
@ -292,6 +277,43 @@ ru:
missing_resource: Поиск требуемого перенаправления URL для Вашего аккаунта завершился неудачей
proceed: Продолжить подписку
prompt: 'Вы хотите подписаться на:'
sessions:
activity: Последняя активность
browser: Браузер
browsers:
alipay: Alipay
blackberry: Blackberry
chrome: Chrome
edge: Microsoft Edge
firefox: Firefox
generic: Неизвестный браузер
ie: Internet Explorer
micro_messenger: MicroMessenger
nokia: Nokia S40 Ovi Browser
opera: Opera
phantom_js: PhantomJS
qq: QQ Browser
safari: Safari
uc_browser: UCBrowser
weibo: Weibo
current_session: Текущая сессия
description: "%{browser} на %{platform}"
explanation: Это веб-браузеры, в которых на данный момент выполнен вход в Ваш аккаунт Mastodon.
ip: IP
platforms:
adobe_air: Adobe Air
android: Android
blackberry: Blackberry
chrome_os: ChromeOS
firefox_os: Firefox OS
ios: iOS
linux: Linux
mac: Mac
other: неизвестной платформе
windows: Windows
windows_mobile: Windows Mobile
windows_phone: Windows Phone
title: Сессии
settings:
authorized_apps: Авторизованные приложения
back: Назад в Mastodon

View File

@ -37,7 +37,9 @@ en:
setting_auto_play_gif: Auto-play animated GIFs
setting_boost_modal: Show confirmation dialog before boosting
setting_default_privacy: Post privacy
setting_default_sensitive: Always mark media as sensitive
setting_delete_modal: Show confirmation dialog before deleting a toot
setting_system_font_ui: Use system's default font
severity: Severity
type: Import type
username: Username

View File

@ -4,12 +4,20 @@ fr:
hints:
defaults:
avatar: Au format PNG, GIF ou JPG. 2Mo maximum. Sera réduit à 120x120px
display_name: 30 caractères maximum
display_name:
one: <span class="name-counter">1</span> caractère restant
other: <span class="name-counter">%{count}</span> caractères restants
header: Au format PNG, GIF ou JPG. 2Mo maximum. Sera réduit à 700x335px
locked: Vous devrez approuver chaque abonné⋅e et vos statuts ne s'afficheront qu'à vos abonné⋅es
note: 160 caractères maximum
locked: Vous devrez approuver chaque abonné⋅e et vos statuts ne safficheront quà vos abonné⋅es
note:
one: <span class="note-counter">1</span> caractère restant
other: <span class="note-counter">%{count}</span> caractères restants
imports:
data: Un fichier CSV généré par une autre instance de Mastodon
sessions:
otp: Entrez le code dauthentification à deux facteurs depuis votre téléphone ou utilisez un de vos codes de récupération.
user:
filtered_languages: Les langues sélectionnées seront retirées de vos fils publics.
labels:
defaults:
avatar: Image de profil
@ -21,15 +29,18 @@ fr:
email: Adresse courriel
header: Image den-tête
locale: Langue
locked: Rendre le compte privé
locked: Verrouiller le compte
new_password: Nouveau mot de passe
note: Présentation
otp_attempt: Code d'identification à deux facteurs
otp_attempt: Code didentification à deux facteurs
password: Mot de passe
setting_auto_play_gif: Lire automatiquement les GIFs animés
setting_boost_modal: Afficher un dialogue de confirmation avant de partager
setting_default_privacy: Confidentialité des statuts
setting_delete_modal: Afficher un dialogue de confirmation avant de supprimer un pouet
setting_system_font_ui: Utiliser la police par défaut du système
severity: Séverité
type: Type d'import
type: Type dimport
username: Identifiant
interactions:
must_be_follower: Masquer les notifications des personnes qui ne vous suivent pas
@ -38,7 +49,7 @@ fr:
digest: Envoyer des courriels récapitulatifs
favourite: Envoyer un courriel lorsque quelquun ajoute mes statuts à ses favoris
follow: Envoyer un courriel lorsque quelquun me suit
follow_request: Envoyer un courriel lorsque quelqu'un demande à me suivre
follow_request: Envoyer un courriel lorsque quelquun demande à me suivre
mention: Envoyer un courriel lorsque quelquun me mentionne
reblog: Envoyer un courriel lorsque quelquun partage mes statuts
'no': Non

View File

@ -34,7 +34,9 @@ ja:
setting_auto_play_gif: アニメーションGIFを自動再生する
setting_boost_modal: ブーストする前に確認ダイアログを表示する
setting_default_privacy: 投稿の公開範囲
setting_default_sensitive: メディアを常に閲覧注意としてマークする
setting_delete_modal: トゥートを削除する前に確認ダイアログを表示する
setting_system_font_ui: システムのデフォルトフォントを使う
severity: 重大性
type: インポートする項目
username: ユーザー名

View File

@ -0,0 +1,58 @@
---
ko:
simple_form:
hints:
defaults:
avatar: PNG, GIF 혹은 JPG. 최대 2MB. 120x120px로 다운스케일 됨
display_name:
one: <span class="name-counter">1</span> 글자 남음
other: <span class="name-counter">%{count}</span> 글자 남음
header: PNG, GIF 혹은 JPG. 최대 2MB. 700x335px로 다운스케일 됨
locked: 수동으로 팔로워를 승인하고, 기본 Toot 프라이버시 설정을 팔로워 전용으로 변경
note:
one: <span class="note-counter">1</span> 글자 남음
other: <span class="note-counter">%{count}</span> 글자 남음
imports:
data: 다른 마스토돈 인스턴스에서 추출된 CSV 파일
sessions:
otp: 2단계 인증 코드를 휴대전화를 보고 입력하거나, 복구 코드 중 하나를 사용
user:
filtered_languages: 선택된 언어가 공개 타임라인에서 제외 될 것입니다.
labels:
defaults:
avatar: 아바타
confirm_new_password: 새로운 비밀번호 다시 입력
confirm_password: 현재 비밀번호 다시 입력
current_password: 현재 비밀번호 입력
data: 데이터
display_name: 표시되는 이름
email: 이메일 주소
header: 헤더
locale: 언어
locked: 계정 잠금
new_password: 새로운 비밀번호 입력
note: 자기소개
otp_attempt: 2단계 인증 코드
password: 비밀번호
setting_auto_play_gif: 애니메이션 GIF를 자동 재생
setting_boost_modal: 부스트 전 확인 창을 보여주기
setting_default_privacy: Toot 프라이버시
setting_delete_modal: Toot 삭제 전 확인 창을 보여주기
severity: 심각도
type: 불러오기 종류
username: 유저 이름
interactions:
must_be_follower: 나를 팔로우 하지 않는 사람에게서 온 알림을 차단
must_be_following: 내가 팔로우 하지 않는 사람에게서 온 알림을 차단
notification_emails:
digest: 요약 이메일 보내기
favourite: 누군가 내 상태를 즐겨찾기로 등록했을 때 이메일 보내기
follow: 누군가 나를 팔로우 했을 때 이메일 보내기
follow_request: 누군가 나를 팔로우 하길 원할 때 이메일 보내기
mention: 누군가 나에게 답장했을 때 이메일 보내기
reblog: 누군가 내 Toot을 부스트 했을 때 이메일 보내기
'no': '아니오'
required:
mark: "*"
text: 필수 항목
'yes': '네'

View File

@ -42,7 +42,9 @@ pl:
setting_auto_play_gif: Automatycznie odtwarzaj animowane GIFy
setting_boost_modal: Pytaj o potwierdzenie przed podbiciem
setting_default_privacy: Widoczność posta
setting_default_sensitive: Zawsze oznaczaj zawartość multimedialną jako wrażliwą
setting_delete_modal: Pytaj o potwierdzenie przed usunięciem postu
setting_system_font_ui: Używaj domyślnej czcionki systemu
severity: Priorytet
type: Typ importu
username: Nazwa użytkownika

View File

@ -3,23 +3,12 @@ th:
about:
about_mastodon: แมสโทดอน เป็น <em>ดีเซ็นทรัลไลซ์</em><em>ฟรีโอเพ่นซอร์ส</em> โซเชี่ยวเน็ตเวริ์ค. เป็นทางเลือกทดแทนโซเชี่ยวเน็ตเวิร์คที่ทำเป็นธุรกิจการค้า, ป้องกันการผูกขาดช่องทางการสื่อสารของคุณ. เลือกเซร์ฟเวอร์ที่คุณไว้ใจ &mdash; ที่คุณเลือกได้เอง, สื่อสารกับคนที่คุณต้องการได้เสมอ. ใครๆก็รันแมสโทดอนอินซะแตนซ์ได้ และ เชื่อมต่อกับ<em>โซเชี่ยวเน็ตเวิร์ค</em> โดยไม่มีอะไรมาขวางกั้น.
about_this: เกี่ยวกับอินซะแตนซ์นี้
apps: แอ๊ฟ
business_email: 'อีเมล์ธุรกิจ:'
closed_registrations: อินซะแตนซ์นี้ปิดรับลงทะเบียนแล้ว.
contact: ติดต่อ
description_headline: โดเมนคือ %{domain} ?
domain_count_after: อินซะแตนซ์อื่นๆ
domain_count_before: เชื่อมต่อกับ
features:
api: API เปิดสำหรับ Apps และ Services
blocks: มีเครื่องมือสำหรับ Block และ Mute
characters: เขียนได้ 500 ตัวอักษรต่อโพสต์
chronology: Timelines are chronological
ethics: 'ออกแบบด้วยจรรยาบรรณ: ไม่มีโฆษณา, ไม่มีการแทรค'
gifv: รองรับภาพ GIFV และ วีดีโอสั้น
privacy: Granular, per-post privacy settings
public: ไทม์ไลน์สาธารณะ
features_headline: What sets Mastodon apart
get_started: เริ่มกันเลย
links: ลิงก์
other_instances: อินซะแตนซ์อื่นๆ
@ -153,17 +142,13 @@ th:
settings:
contact_information:
email: กรอกที่อยู่อีเมล์สาธารณะ
label: ข้อมูลที่ติดต่อ
username: กรอกชื่อผู้ใช้
registrations:
closed_message:
desc_html: Displayed on frontpage when registrations are closed<br> ใช้ HTML tags ได้
title: ปิดข้อความลงทะเบียน
open:
disabled: ปิดการใช้งาน
enabled: ปิดใช้งาน
title: เปิดรับลงทะเบียน
setting: ตั้งค่า
site_description:
desc_html: Displayed as a paragraph on the frontpage and used as a meta tag.<br> ใช้ HTML tags ได้, in particular <code>&lt;a&gt;</code> และ <code>&lt;em&gt;</code>.
title: คำอธิบายไซต์

View File

@ -3,23 +3,12 @@ tr:
about:
about_mastodon: Mastodon <em>ücretsiz ve açık kaynaklı</em> bir sosyal ağdır. <em>Merkezileştirilmemiş</em> yapısı sayesinde diğer ticari sosyal platformların aksine iletişimininizin tek bir firmada tutulmasının/yönetilmesinin önüne geçer. Güvendiğiniz bir sunucuyu seçerek oradaki kişilerle etkileşimde bulunabilirsiniz. Herkes kendi Mastodon sunucusunu kurabilir ve sorunsuz bir şekilde Mastodon <em>sosyal ağına</em> dahil edebilir.
about_this: Bu sunucu hakkında
apps: Uygulamalar
business_email: 'İş e-postası:'
closed_registrations: Bu sunucu şu anda yeni kayıt almamaktadır.
contact: İletişim
description_headline: Peki %{domain} nedir?
domain_count_after: sunucu var.
domain_count_before: Bağlı olduğu
features:
api: Uygulama ve servisler için açık API
blocks: Zengin blok ve iletişim araçları
characters: 500 karakterlik gönderiler
chronology: Kronolojik zaman tüneli
ethics: 'Etik tasarım: reklam ve izleme yok'
gifv: GIFV ve diğer video türleri
privacy: Gönderi bazlı gizlilik
public: Herkese açık zaman tünelleri
features_headline: Mastodon'ı diğerlerinden ayıran nedir?
get_started: Kayıt ol
links: Bağlantılar
other_instances: Diğer sunucular
@ -152,17 +141,13 @@ tr:
settings:
contact_information:
email: Herkese açık e-posta adresiniz
label: İletişim bilgisi
username: Bir kullanıcı adı giriniz
registrations:
closed_message:
desc_html: Kayıt alımları kapatıldığında ana sayfada görüntülenecek mesajdır. <br> HTML etiketleri kullanabilirsiniz.
title: Kayıt alımları kapatılma mesajı
open:
disabled: Kapalı
enabled: ık
title: Kayıt alımları
setting: Ayar adı
site_description:
desc_html: Ana sayfada paragraf olarak görüntülenecek bilgidir.<br>Özellikle <code>&lt;a&gt;</code> ve <code>&lt;em&gt;</code> olmak suretiyle HTML etiketlerini kullanabilirsiniz.
title: Site açıklaması

View File

@ -3,23 +3,12 @@ uk:
about:
about_mastodon: Mastodon - це <em>вільна</em> соціальна мережа з <em>відкритим вихідним кодом</em>. Вона є <em>децентралізованою</em> альтернативою комерційним платформам, що дозволяє уникнути ризиків монополізації вашого спілкування однією компанією. Виберіть сервер, якому ви довіряєте &mdash; що б ви не вибрали, Ви зможете спілкуватись з усіма іншими. Будь-який користувач може запустити власну інстанцію Mastodon та без проблем брати участь в <em>соціальній мережі</em>.
about_this: Про цю інстанцію
apps: Додатки
business_email: 'Діловий email:'
closed_registrations: На даний момент реєстрація на цій інстанції закрита.
contact: Зв'язатися
description_headline: Що таке %{domain}?
domain_count_after: іншими інстанціями
domain_count_before: Зв'язаний з
features:
api: Відкритий API для додаків та сервісів
blocks: Продвинуті інструменти самомодерації
characters: 500 символів на пост
chronology: Хронологічні стрічки
ethics: 'Этичний дизайн: немає реклами, немає стеження'
gifv: GIFV та короткі відео
privacy: Тонкі налаштування приватності для кожного поста
public: Публічні стрічки
features_headline: Що виділяє Mastodon
get_started: Почати
links: Посилання
other_instances: Інші інстанції
@ -134,17 +123,13 @@ uk:
settings:
contact_information:
email: Введіть публічний email
label: Контактна інформація
username: Введіть ім'я користувача
registrations:
closed_message:
desc_html: Відображається на титульній сторінці, коли реєстрація закрита <br>Можна використовувати HTML-теги
title: Повідомлення про закриту реєстрацію
open:
disabled: Закрита
enabled: Відкрита
title: Відкрити реєстрацію
setting: Налаштування
site_description:
desc_html: Відображається у якості параграфа на титульній сторінці та використовується у якості мета-тега.<br>Можна використовувати HTML-теги, особливо <code>&lt;a&gt;</code> і <code>&lt;em&gt;</code>.
title: Опис сайту

View File

@ -3,23 +3,12 @@ zh-CN:
about:
about_mastodon: Mastodon长毛象是一个<em>自由、开放源码</em>的社交网站。它是一个分布式的服务,避免你的通信被单一商业机构垄断操控。请你选择一家你信任的 Mastodon 实例,在上面创建帐号,然后你就可以和任一 Mastodon 实例上的用户互通,享受无缝的<em>社交</em>交流。
about_this: 关于本实例
apps: 应用程序
business_email: 商业电邮︰
closed_registrations: 这个实例目前不开放注册 _(:3」∠)_
contact: 联络
description_headline: 关于 %{domain}
domain_count_after: 个其它实例
domain_count_before: 现已接入
features:
api: 开放 API供各式应用程序及服务接入
blocks: 完善的封锁用户、静音功能
characters: 每篇嘟文最多 500 字
chronology: 纯粹按时间排序,不作多余处理
ethics: 良心设计︰没有广告,不追踪你的使用行为
gifv: 支持显示 GIFV 动图小视频
privacy: 可逐篇嘟文设置隐私
public: 提供公共时间轴
features_headline: 是什么让 Mastodon 与众不同
get_started: 上手使用
links: 链接
other_instances: 其它实例
@ -159,17 +148,13 @@ zh-CN:
settings:
contact_information:
email: 输入一个公开的电邮地址
label: 联系数据
username: 输入用户名称
registrations:
closed_message:
desc_html: 当本站暂停接受注册时,会显示这个消息。<br/> 可使用 HTML
title: 暂停注册消息
open:
disabled: 停用
enabled: 启用
title: 开放注册
setting: 设置
site_description:
desc_html: 在首页显示,及在 meta 标签中用作网站介绍。<br>你可以在此使用 HTML 标签,尤其是<code>&lt;a&gt;</code> 和 <code>&lt;em&gt;</code>。
title: 本站介绍

View File

@ -3,23 +3,12 @@ zh-HK:
about:
about_mastodon: Mastodon萬象是<em>自由、開源</em>的社交網絡。服務站<em>各自獨立而互連</em>,避免單一商業機構壟斷。找你所信任的服務站,建立帳號,你即可與任何服務站上的用戶溝通,享受無縫的<em>網絡交流</em>。
about_this: 關於本服務站
apps: 應用程式
business_email: 聯絡網站管理者︰
closed_registrations: 本服務站暫時停止接受登記。
contact: 聯絡
description_headline: 關於 %{domain}
domain_count_after: 個其他服務站
domain_count_before: 已連接至
features:
api: 開放 API供各式應用程式及服務連入
blocks: 完善的封鎖用戶、靜音功能
characters: 每篇文章最多 500 字
chronology: 時間軸忠實按時排序,不多餘處理
ethics: 良心設計︰無廣告,不追蹤用戶
gifv: 支援顯示 GIFV 短片圖組
privacy: 可逐篇文章設定私隱度
public: 公共時間軸
features_headline: 甚麼讓 Mastodon 與眾不同
get_started: 立即登記
links: 連結
other_instances: 其他服務站
@ -152,17 +141,13 @@ zh-HK:
settings:
contact_information:
email: 輸入一個公開的電郵地址
label: 聯絡資料
username: 輸入用戶名稱
registrations:
closed_message:
desc_html: 當本站暫停接受註冊時,會顯示這個訊息。<br/> 可使用 HTML
title: 暫停註冊訊息
open:
disabled: 停用
enabled: 啟用
title: 開放註冊
setting: 設定
site_description:
desc_html: 在首頁顯示,及在 meta 標籤使用作網站介紹。<br/> 你可以在此使用 <code>&lt;a&gt;</code> 和 <code>&lt;em&gt;</code> 等 HTML 標籤。
title: 本站介紹

View File

@ -3,23 +3,12 @@ zh-TW:
about:
about_mastodon: Mastodon (長毛象)是一個<em>自由、開放原始碼</em>的社群網站。它是一個分散式的服務,避免您的通訊被單一商業機構壟斷操控。請您選擇一家您信任的 Mastodon 服務站,在上面建立帳號,然後您就可以和任一 Mastodon 服務站上的使用者互通,享受無縫的<em>社群網路</em>交流。
about_this: 關於本服務站
apps: 應用程式
business_email: 商務信箱︰
closed_registrations: 本服務站暫時停止接受註冊。
contact: 聯絡我們
description_headline: 關於 %{domain}
domain_count_after: 個服務站相連
domain_count_before: 與其他
features:
api: 開放 API供各式應用程式及服務串接
blocks: 完善的封鎖使用者、靜音功能
characters: 每篇文章最多 500 字
chronology: 時間軸按時序顯示文章,不作多餘處理
ethics: 良心設計︰沒有廣告,不追蹤您的使用行為
gifv: 支援顯示 GIFV 短片
privacy: 可逐篇文章調整隱私設定
public: 公開時間軸
features_headline: Mastodon 與眾不同之處
get_started: 立即註冊
links: 連結
other_instances: 其他服務站
@ -113,17 +102,13 @@ zh-TW:
settings:
contact_information:
email: 請輸入輸入一個公開電子信箱
label: 聯絡資訊
username: 請輸入使用者名稱
registrations:
closed_message:
desc_html: 關閉註冊時顯示在首頁的內容,可使用 HTML 標籤。
title: 關閉註冊訊息
open:
disabled: 停用
enabled: 啟用
title: 開放註冊
setting: 設定
site_description:
desc_html: 顯示在首頁並且作為 meta 標籤的短文。<br>可使用 HTML 標籤,包括 <code>&lt;a&gt;</code> 及 <code>&lt;em&gt;</code>。
title: 網站描述

View File

@ -10,14 +10,17 @@ defaults: &defaults
site_title: 'dev.glitch.social'
site_description: ''
site_extended_description: ''
site_terms: ''
site_contact_username: ''
site_contact_email: ''
open_registrations: true
closed_registrations_message: ''
open_deletion: true
timeline_preview: true
boost_modal: false
auto_play_gif: true
auto_play_gif: false
delete_modal: true
system_font_ui: false
notification_emails:
follow: false
reblog: false

View File

@ -12,7 +12,6 @@ module.exports = merge(sharedConfig, {
stats: 'normal',
plugins: [
new webpack.optimize.ModuleConcatenationPlugin(),
new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
mangle: true,

View File

@ -2,7 +2,7 @@ const fs = require('fs');
const path = require('path');
const { default: manageTranslations } = require('react-intl-translations-manager');
const RFC5646_REGEXP = /^[a-z]{2,3}(?:|[A-Z]+)$/;
const RFC5646_REGEXP = /^[a-z]{2,3}(?:|-[A-Z]+)$/;
const rootDirectory = path.resolve(__dirname, '..', '..');
const translationsDirectory = path.resolve(rootDirectory, 'app', 'javascript', 'mastodon', 'locales');

View File

@ -19,7 +19,7 @@ development:
<<: *default
dev_server:
host: 0.0.0.0
host: 127.0.0.1
port: 8080
https: false