
diff --git a/app/views/layouts/embed.html.erb b/app/views/layouts/embed.html.erb
index d1cf2be33e..42b70d08fe 100644
--- a/app/views/layouts/embed.html.erb
+++ b/app/views/layouts/embed.html.erb
@@ -2,7 +2,7 @@
>
-
+
<%= discourse_stylesheet_link_tag 'embed', theme_ids: nil %>
<%- unless customization_disabled? %>
<%= discourse_stylesheet_link_tag :embedded_theme %>
@@ -13,7 +13,7 @@
<%= @topic_view.page_title %> - <%= SiteSetting.title %>
<%- end %>
-
+
<%= preload_script 'embed-application' %>
<%= yield :head %>
diff --git a/app/views/users/omniauth_callbacks/complete.html.erb b/app/views/users/omniauth_callbacks/complete.html.erb
index 5eb0ab9db9..dc6a0b0d4d 100644
--- a/app/views/users/omniauth_callbacks/complete.html.erb
+++ b/app/views/users/omniauth_callbacks/complete.html.erb
@@ -26,7 +26,7 @@
diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb
index 55f9b38a17..007a600d54 100644
--- a/app/views/users/show.html.erb
+++ b/app/views/users/show.html.erb
@@ -1,5 +1,5 @@
-
) %>)
+
<%= @user.username %>
diff --git a/bin/unicorn b/bin/unicorn
index cff2163997..865e8d87dc 100755
--- a/bin/unicorn
+++ b/bin/unicorn
@@ -8,11 +8,15 @@ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
require 'rubygems'
require 'bundler/setup'
+dev_mode = false
+
# in development do some fussing around, to automate config
if !ARGV.include?("-E") &&
!ARGV.include?("--env") &&
(ENV["RAILS_ENV"] == "development" || !ENV["RAILS_ENV"])
+ dev_mode = true
+
ARGV.push("-N")
if !ARGV.include?("-c") && !ARGV.include?("--config-file")
ARGV.push("-c")
@@ -46,4 +50,36 @@ if ARGV.include?("--help")
exit
end
-load Gem.bin_path('unicorn', 'unicorn')
+# this dev_mode hackery enables, the following to be used to restart unicorn:
+#
+# pkill -USR2 -f 'ruby bin/unicorn'
+#
+# This is handy if you want to bind a key to restarting unicorn in dev
+
+if dev_mode
+ restart = true
+ while restart
+ restart = false
+ pid = fork do
+ load Gem.bin_path('unicorn', 'unicorn')
+ end
+ done = false
+
+ Signal.trap('INT') do
+ # wait for parent to be done
+ end
+
+ Signal.trap('USR2') do
+ Process.kill('QUIT', pid)
+ puts "RESTARTING UNICORN"
+ restart = true
+ end
+
+ while !done
+ sleep 1
+ done = Process.waitpid(pid, Process::WNOHANG)
+ end
+ end
+else
+ load Gem.bin_path('unicorn', 'unicorn')
+end
diff --git a/config/application.rb b/config/application.rb
index 2d946b30ec..932aed2806 100644
--- a/config/application.rb
+++ b/config/application.rb
@@ -93,6 +93,8 @@ module Discourse
# issue is image_optim crashes on missing dependencies
config.assets.image_optim = false
+ config.autoloader = :classic
+
# Custom directories with classes and modules you want to be autoloadable.
config.autoload_paths += Dir["#{config.root}/app/serializers"]
config.autoload_paths += Dir["#{config.root}/lib/validators/"]
diff --git a/config/environments/development.rb b/config/environments/development.rb
index eb62346400..6c080046d7 100644
--- a/config/environments/development.rb
+++ b/config/environments/development.rb
@@ -41,6 +41,9 @@ Discourse::Application.configure do
BetterErrors::Middleware.allow_ip! ENV['TRUSTED_IP'] if ENV['TRUSTED_IP']
config.load_mini_profiler = true
+ if hosts = ENV['DISCOURSE_DEV_HOSTS']
+ config.hosts.concat(hosts.split(","))
+ end
require 'middleware/turbo_dev'
config.middleware.insert 0, Middleware::TurboDev
diff --git a/config/initializers/008-rack-cors.rb b/config/initializers/008-rack-cors.rb
index 8c6560d476..5f1c6f4068 100644
--- a/config/initializers/008-rack-cors.rb
+++ b/config/initializers/008-rack-cors.rb
@@ -39,7 +39,7 @@ class Discourse::Cors
end
headers['Access-Control-Allow-Origin'] = origin || cors_origins[0]
- headers['Access-Control-Allow-Headers'] = 'Content-Type, Cache-Control, X-Requested-With, X-CSRF-Token, Discourse-Visible, User-Api-Key, User-Api-Client-Id'
+ headers['Access-Control-Allow-Headers'] = 'Content-Type, Cache-Control, X-Requested-With, X-CSRF-Token, Discourse-Visible, User-Api-Key, User-Api-Client-Id, Authorization'
headers['Access-Control-Allow-Credentials'] = 'true'
headers['Access-Control-Allow-Methods'] = 'POST, PUT, GET, OPTIONS, DELETE'
end
diff --git a/config/initializers/100-sidekiq.rb b/config/initializers/100-sidekiq.rb
index 0bb77a09ff..9f41ec5799 100644
--- a/config/initializers/100-sidekiq.rb
+++ b/config/initializers/100-sidekiq.rb
@@ -53,7 +53,7 @@ if Sidekiq.server?
# warm up AR
RailsMultisite::ConnectionManagement.safe_each_connection do
- (ActiveRecord::Base.connection.tables - %w[schema_migrations]).each do |table|
+ (ActiveRecord::Base.connection.tables - %w[schema_migrations versions]).each do |table|
table.classify.constantize.first rescue nil
end
end
diff --git a/config/locales/client.ar.yml b/config/locales/client.ar.yml
index d302cda024..a5df8c084b 100644
--- a/config/locales/client.ar.yml
+++ b/config/locales/client.ar.yml
@@ -354,6 +354,8 @@ ar:
title:
search: "ابحث في الرسائل باستخدام العنوان"
review:
+ explain:
+ total: "مجموع"
awaiting_approval: "بأنتضار موافقة"
delete: "أحذف"
settings:
@@ -1243,7 +1245,6 @@ ar:
title_missing: "العنوان مطلوب"
title_too_short: "العنوان يجب أن يكون علي الاقل {{min}} حرف"
title_too_long: "العنوان يجب أن لا يزيد عن {{max}} حرف"
- post_missing: "لا يمكن أن يكون المنشور فارغ"
post_length: "المنشور يجب أن يكون علي الاقل {{min}} حرف"
category_missing: "يجب عليك إختيار احد الأقسام"
save_edit: "أحفظ التعديل"
@@ -1258,7 +1259,6 @@ ar:
title_placeholder: "بجملة واحدة، صف ما الذي تود المناقشة فية؟"
title_or_link_placeholder: "اكتب عنوانًا أو ألصق رابطًا"
edit_reason_placeholder: "لماذا تقوم بالتعديل؟"
- show_edit_reason: "(أضف سبب التعديل)"
topic_featured_link_placeholder: "ضع رابطاً يظهر مع العنوان"
remove_featured_link: "حذف الرابط من الموضوع"
reply_placeholder: "اكتب ما تريد هنا. استخدم Markdown، أو BBCode، أو HTML للتنسيق. اسحب الصور أو ألصقها."
@@ -1307,7 +1307,6 @@ ar:
title: "إشعارات الإشارة إلى @اسمك، والردود على موضوعاتك و منشوراتك ، والرسائل، وغيرها"
none: "تعذّر تحميل الإشعارات الآن."
empty: "لا إشعارات."
- more: "اعرض الإشعارات الأقدم من هذه"
mentioned: "
{{username}}{{description}}"
group_mentioned: "
{{username}}{{description}} "
quoted: "
{{username}}{{description}} "
diff --git a/config/locales/client.be.yml b/config/locales/client.be.yml
index 9c83a61739..bac4093016 100644
--- a/config/locales/client.be.yml
+++ b/config/locales/client.be.yml
@@ -192,6 +192,8 @@ be:
title:
placeholder: "увядзіце назву тэмы"
review:
+ explain:
+ total: "агульны"
delete: "Выдаліць"
settings:
save_changes: "Захаваць"
@@ -722,7 +724,6 @@ be:
title_missing: "Загаловак неабходна"
title_too_short: "Загаловак павінен быць мінімум {{min}} сімвалаў"
title_too_long: "Загаловак не можа быць менш, чым {{max}} сімвалаў"
- post_missing: "Паведамленне не можа быць пустым"
post_length: "Найменшы памер паведамленні павінна быць {{min}} сімвалаў"
category_missing: "Вы павінны выбраць катэгорыю"
save_edit: "захаваць змены"
@@ -736,7 +737,6 @@ be:
users_placeholder: "дадаць карыстальніка"
title_placeholder: "Пра што гэта абмеркаванне, у адным кароткім сказе?"
edit_reason_placeholder: "чаму Вы рэдагуеце паведамленне?"
- show_edit_reason: "(Дадаць прычыну рэдагавання)"
view_new_post: "Перагледзьце свой новы паведамленне."
saving: "захаванне"
saved: "Захавана!"
@@ -772,7 +772,6 @@ be:
create_topic:
label: "пачаць новую тэму"
notifications:
- more: "перагледзець старыя абвесткі"
popup:
confirm_title: "Апавяшчэння ўключаная -% {SITE_TITLE}"
confirm_body: "Поспех! Паведамлення былі ўключаны."
diff --git a/config/locales/client.bg.yml b/config/locales/client.bg.yml
index ee44eadbf9..e0bc6e8ca2 100644
--- a/config/locales/client.bg.yml
+++ b/config/locales/client.bg.yml
@@ -249,6 +249,8 @@ bg:
title:
placeholder: "Въведете заглавието на темата тук"
review:
+ explain:
+ total: "Общо"
delete: "Изтрий"
settings:
save_changes: "Запази промените"
@@ -1010,7 +1012,6 @@ bg:
title_missing: "Заглавието е задължително"
title_too_short: "Заглавието трябва да е минимум {{min}} символа"
title_too_long: "Заглавието не може да е повече от {{max}} символа"
- post_missing: "Публикацията не може да е празна"
post_length: "Публикацията трябва да е най-малко {{min}} символа."
category_missing: "Трябва да изберете категория"
tags_missing: "Трябва да изберете поне %{count} етикети."
@@ -1026,7 +1027,6 @@ bg:
title_placeholder: "За какво става дума в дискусията с едно изречение?"
title_or_link_placeholder: "Напишете заглавие или поставете линк тук"
edit_reason_placeholder: "защо редактирате ?"
- show_edit_reason: "(причина за редакцията)"
reply_placeholder: "Пиши тук. Използвай Markdown, BBCode, или HTML за форматиране. Издърпайте или поставете изображенията."
view_new_post: "Вижте публикацията."
saving: "Запаметяване"
@@ -1068,7 +1068,6 @@ bg:
title: "уведомления за @name споменавания, отговори на вашите публикации и теми, лични съобщения, и т.н."
none: "В момента не могат да бъдат заредени уведомленията."
empty: "Няма намерени нотификации."
- more: "виж стари известия"
popup:
mentioned: '{{username}} ви спомена в "{{topic}}" - {{site_title}}'
group_mentioned: '{{username}} ви спомена в "{{topic}}" - {{site_title}}'
@@ -1251,7 +1250,7 @@ bg:
toggle_information: "Показване / скриване на подробна информация за дадена тема "
read_more_in_category: "Искате да прочетете повече ? Разгледайте други теми в {{catLink}} или {{latestLink}}."
read_more: "Искате да прочетете повече ? {{catLink}} или {{latestLink}}."
- read_more_MF: "Ето { UNREAD, plural, =0 {} one {
1 непрочетено } other {
# непрочетено } } { NEW, plural, =0 {} one { {BOTH, select, true{and } false {is } other{}}
1 нова тема} other { {BOTH, select, true{and } false {are } other{}}
# теми } } напомняне, или {CATEGORY, select, true {потърски други теми в {catLink}} погрешен {{latestLink}} other {}}"
+ read_more_MF: "Има { UNREAD, plural, =0 {} one {
1 непрочетено } other {
# непрочетени } } { NEW, plural, =0 {} one { {BOTH, select, true{and } false {is } other{}}
1 нова тема} other { {BOTH, select, true{and } false {are } other{}}
# теми } } или {CATEGORY, select, true {потърси други теми в {catLink}} false {{latestLink}} other {}}"
browse_all_categories: Прегледай всички категории
view_latest_topics: виж последните теми
suggest_create_topic: "Защо не създадете тема ?"
diff --git a/config/locales/client.bs_BA.yml b/config/locales/client.bs_BA.yml
index fb1e41f60d..dee8bc6d73 100644
--- a/config/locales/client.bs_BA.yml
+++ b/config/locales/client.bs_BA.yml
@@ -112,6 +112,14 @@ bs_BA:
one: "prije %{count} dan "
few: "Prije par dana "
other: "%{count} dana prije"
+ x_months:
+ one: "%{count} prije mjesec dana"
+ few: "%{count} mjeseca"
+ other: "%{count} mjeseca"
+ x_years:
+ one: "%{count} prije godinu dana"
+ few: "%{count} godina"
+ other: "%{count} godina"
later:
x_days:
one: "Prije %{count} dan"
@@ -1234,9 +1242,6 @@ bs_BA:
enabled: "Ovaj sajt je u read only mod-u: Dozvoljeno je čitati. Možete nastaviti sa pregledom, ali odgovaranje na objave, lajkanje i ostale akcije su isključene za sada."
login_disabled: "Ulogovanje je isključeno jer je sajt u read only načinu rada."
logout_disabled: "Odjava je isključena sve dok je sajt u read only tj. samo čitanje je dozvoljeno načinu rada."
- too_few_topics_and_posts_notice: "Počnimo
raspravu! Postoje teme
%{currentTopics} / %{requiredTopics} i
%{currentPosts} / %{requiredPosts} postovi - posjetiteljima je potrebno više za čitanje i odgovaranje. Samo osoblje može vidjeti ovu poruku."
- too_few_topics_notice: "Počnimo
raspravu! Postoje teme
%{currentTopics} / %{requiredTopics} - posjetiteljima je potrebno više za čitanje i odgovaranje. Samo osoblje može vidjeti ovu poruku."
- too_few_posts_notice: "Počnimo
raspravu! Postoje
postovi %{currentPosts} / %{requiredPosts} - posjetiteljima je potrebno više za čitanje i odgovaranje. Samo osoblje može vidjeti ovu poruku."
logs_error_rate_notice:
reached_hour_MF: "
{realtivna starost} -
{stopa, množina, jedna {# pogreška / sat} ostala {# errors / hour}} dostigla je granicu postavljanja stranice {granica, množina, jednu {# error / hour} druge {# errors / hour}}."
learn_more: "saznaj više..."
@@ -1494,7 +1499,6 @@ bs_BA:
title_missing: "Naslov je obavezan"
title_too_short: "Naslov mora biti najmanje {{min}} karaktera"
title_too_long: "Naslov ne može biti više od {{max}} karaktera"
- post_missing: "Odgovor ne može biti prazan"
post_length: "Odgovor mora biti najmanje {{min}} karaktera"
try_like: "Dail ste pokušali{{heart}}dugme?"
category_missing: "Morate odabrati kategoriju"
@@ -1515,7 +1519,6 @@ bs_BA:
title_placeholder: "O čemu je ova diskusija u jednoj rečenici?"
title_or_link_placeholder: "Ukucajte naziv, ili zalijepite link ovdje"
edit_reason_placeholder: "zašto pravite izmjenu?"
- show_edit_reason: "(dodaj razlog izmjene)"
topic_featured_link_placeholder: "Unesite link prikazan sa nazivom"
remove_featured_link: "Odstranite link sa teme."
reply_placeholder: "Ovdje kucate vaš tekst. Koristite Markdown, BBcode ili HTML kako bi formatirali isti. Povucite ili zaljepite slike."
@@ -1604,7 +1607,6 @@ bs_BA:
title: "obaviještenja na spomenuto @ime, odgovori na vaše teme i postove, privatne poruke, itd"
none: "Nemate obavijesti trenutno."
empty: "Nema obavještenja."
- more: "pogledaj starija obaviještenja"
post_approved: "Vaš post je odobren"
reviewable_items: "stvari koje zahtijevaju pregled"
mentioned: "
{{username}} {{description}}"
diff --git a/config/locales/client.ca.yml b/config/locales/client.ca.yml
index 06e3a320c0..e28d249ea7 100644
--- a/config/locales/client.ca.yml
+++ b/config/locales/client.ca.yml
@@ -95,6 +95,12 @@ ca:
x_days:
one: "fa %{count} dia"
other: "fa %{count} dies"
+ x_months:
+ one: "fa %{count} mes"
+ other: "fa %{count} mesos"
+ x_years:
+ one: "fa %{count} any"
+ other: "fa %{count} anys"
later:
x_days:
one: "%{count} dia després"
@@ -314,6 +320,26 @@ ca:
review:
order_by: "Ordena per"
in_reply_to: "en resposta a"
+ explain:
+ why: "expliqueu per què aquest element ha acabat a la cua"
+ title: "Puntuació revisable"
+ formula: "Fórmula"
+ subtotal: "Subtotal"
+ total: "Total"
+ min_score_visibility: "Puntuació mínima per a visibilitat"
+ score_to_hide: "Puntuació per a amagar la publicació"
+ take_action_bonus:
+ name: "ha actuat"
+ title: "Quan un membre de l'equip responsable decideix actuar, es dóna una bonificació a la bandera. "
+ user_accuracy_bonus:
+ name: "precisió de l’usuari"
+ title: "Es dóna una bonificació als usuaris que hagin creat banderes amb les quals històricament s'hagi estat d'acord. "
+ trust_level_bonus:
+ name: "nivell de confiança"
+ title: "Els elements revisables creats per usuaris de nivell superior de confiança tenen una puntuació més alta."
+ type_bonus:
+ name: "bonificació tipus"
+ title: "El personal pot assignar una bonificació a certs tipus revisables perquè tinguin una prioritat més alta."
claim_help:
optional: "Podeu reclamar aquest element per a impedir que altres el revisin."
required: "Heu de reclamar elements abans de poder revisar-los"
@@ -1138,8 +1164,8 @@ ca:
more_badges: "Més insígnies"
top_links: "Enllaços principals"
no_links: "Encara no hi ha enllaços"
- most_liked_by: "Més apreciat per"
- most_liked_users: "Més apreciat"
+ most_liked_by: "Ha tingut més 'm'agrada' per"
+ most_liked_users: "Ha tingut més 'm'agrada'"
most_replied_to_users: "Amb més respostes"
no_likes: "Encara sense :heart:"
top_categories: "Categories principals"
@@ -1190,9 +1216,9 @@ ca:
enabled: "El lloc web és en mode només de lectura. Continueu navegant, però de moment estan desactivades les accions de respondre, 'm'agrada' i altres."
login_disabled: "S'ha desactivat l'inici de sessió mentre aquest lloc web es trobi en mode només de lectura."
logout_disabled: "S'ha desactivat el tancament de sessió mentre aquest lloc web es trobi en mode només de lectura."
- too_few_topics_and_posts_notice: "Comencem
la discussió! Hi ha
%{currentTopics} / %{requiredTopics} temes i
%{currentPosts} / %{requiredPosts} publicacions. Els visitants en necessiten més per a llegir i respondre. Sols l'equip responsable pot veure aquest missatge."
- too_few_topics_notice: "Comencem
la discussió! Hi ha
%{currentTopics} / %{requiredTopics} temes. Els visitants en necessiten més per a llegir i respondre. Sols l'equip responsable pot veure aquest missatge."
- too_few_posts_notice: "Comencem
la discussió! Hi ha
%{currentPosts} / %{requiredPosts} publicacions. Els visitants en necessiten més per a llegir i respondre. Sols l'equip responsable pot veure aquest missatge."
+ too_few_topics_and_posts_notice: "Comencem
la discussió! Hi ha
%{currentTopics} temes i
%{currentPosts} publicacions. Els visitants en necessiten més per a llegir i respondre. Recomanem almenys
%{requiredTopics} temes i
%{requiredPosts} publicacions. Sols l'equip responsable pot veure aquest missatge."
+ too_few_topics_notice: "Comencem
la discussió! Hi ha
%{currentTopics} / temes. Els visitants en necessiten més per a llegir i respondre. Recomanem almenys
%{requiredTopics} temes. Sols l'equip responsable pot veure aquest missatge."
+ too_few_posts_notice: "Comencem
la discussió! Hi ha
%{currentPosts} publicacions. Els visitants en necessiten més per a llegir i respondre. Recomanem almenys
%{requiredPosts} publicacions. Sols l'equip responsable pot veure aquest missatge."
logs_error_rate_notice:
reached_hour_MF: "
{relativeAge} -
{rate, plural, one {# error/hora} other {# errors/hora} s'ha arribat al límit de configuració del lloc web de {limit, plural, one {# error/hora} other {# errors/hora}}."
reached_minute_MF: "
{relativeAge} -
{rate, plural, one {# error/minut} other {# errors/minut}} s'ha arribat al límit de configuració del lloc web de {limit, plural, one {# error/minut} other {# errors/minut}}."
@@ -1343,6 +1369,8 @@ ca:
message: "Autenticant amb GitHub (assegureu-vos que no teniu activats els blocadors de finestres emergents)"
discord:
name: "Discord"
+ title: "amb Discord"
+ message: "Autenticació amb Discord"
invites:
accept_title: "Invitació"
welcome_to: "Benvingut a %{site_name}!"
@@ -1456,6 +1484,7 @@ ca:
try_like: "Heu provat el botó {{heart}}?"
category_missing: "Heu de triar una categoria"
tags_missing: "Cal triar almenys {{count}} etiquetes."
+ topic_template_not_modified: "Afegiu detalls i especificacions al tema editant la plantilla."
save_edit: "Desa l'edició"
overwrite_edit: "Sobreescriu l'edició"
reply_original: "Respon en el tema original"
@@ -1472,7 +1501,6 @@ ca:
title_placeholder: "De què tracta aquesta discussió (en una frase curta)?"
title_or_link_placeholder: "Escriviu aquí el títol o enganxeu-hi un enllaç"
edit_reason_placeholder: "per què ho editeu?"
- show_edit_reason: "(afegeix motiu de l'edició)"
topic_featured_link_placeholder: "Introduïu un enllaç mostrat amb títol."
remove_featured_link: "Elimina l'enllaç del tema."
reply_placeholder: "Escriviu aquí. Feu servir Markdown, BBCode o HTML per a donar format. Arrossegueu o enganxeu imatges."
@@ -1559,7 +1587,6 @@ ca:
title: "notificacions de mencions via @nom, respostes a les vostres publicacions i temes, missatges, etc."
none: "És impossible carregar ara mateix les notificacions"
empty: "No hi ha notificacions."
- more: "mostra notificacions més antigues"
post_approved: "La vostra publicació ha estat aprovada"
reviewable_items: "elements que requereixen revisió"
mentioned: "
{{username}} {{description}}"
@@ -1583,7 +1610,7 @@ ca:
invitee_accepted: "
{{username}} ha acceptat la vostra invitació"
moved_post: "
{{username}} ha mogut {{description}}"
linked: "
{{username}} {{description}}"
- granted_badge: "Ha guanyat '{{description}}'"
+ granted_badge: "Heu guanyat '{{description}}'"
topic_reminder: "
{{username}} {{description}}"
watching_first_post: "
Tema nou {{description}}"
membership_request_accepted: "Membre acceptat en '{{group_name}}'"
@@ -1643,7 +1670,7 @@ ca:
latest_post: "Publicacions més recents"
latest_topic: "Temes més recents"
most_viewed: "Més vists"
- most_liked: "Més apreciats"
+ most_liked: "Ha tingut més 'm'agrada'"
select_all: "Selecciona-ho tot"
clear_all: "Neteja-ho tot"
too_short: "El terme de la vostra cerca és massa curt"
@@ -1717,6 +1744,7 @@ ca:
go_back: "vés enrere"
not_logged_in_user: "pàgina d'usuari amb resum de l'activitat actual i preferències "
current_user: "vés a la meva pàgina d'usuari"
+ view_all: "mostra-ho tot"
topics:
new_messages_marker: "darrera visita"
bulk:
@@ -2878,7 +2906,7 @@ ca:
traffic: "Peticions d'aplicacions web"
page_views: "Pàgines vistes"
page_views_short: "Pàgines vistes"
- show_traffic_report: "Mostra l'informe detallat de tràfic"
+ show_traffic_report: "Mostra el report detallat de tràfic"
community_health: Salut de la comunitat
moderators_activity: Activitat dels moderadors
whats_new_in_discourse: "Què hi ha de nou en Discourse?"
@@ -2907,7 +2935,7 @@ ca:
all: "Tot"
view_table: "taula"
view_graph: "gràfica"
- refresh_report: "Actualitza l'informe"
+ refresh_report: "Actualitza el report"
start_date: "Data d'inici (UTC)"
end_date: "Data de finalització (UTC)"
groups: "Tots els grups"
@@ -2961,6 +2989,7 @@ ca:
owners: "Propietaris del grup"
description: "Els administradors poden veure tots els grups."
members_visibility_levels:
+ title: "Qui pot veure els membres d’aquest grup?"
description: "Els administradors poden veure membres de tots els grups."
publish_read_state: "En els missatges de grup publica l'estat de lectura del grup"
membership:
@@ -3101,17 +3130,17 @@ ca:
completion: "Temps de finalització"
actions: "Accions"
plugins:
- title: "Connectors (plugins)"
- installed: "Connectors (plugins) instal·lats"
+ title: "Connectors"
+ installed: "Connectors instal·lats"
name: "Nom"
- none_installed: "No teniu cap complement instal·lat."
+ none_installed: "No teniu cap connector instal·lat."
version: "Versió"
enabled: "Activat?"
is_enabled: "S"
not_enabled: "N"
change_settings: "Canvia la configuració"
change_settings_short: "Configuració"
- howto: "Com instal·lo complements?"
+ howto: "Com s'instal·len els connectors?"
official: "Connector (plugin) oficial"
backups:
title: "Còpies de seguretat"
@@ -3969,7 +3998,7 @@ ca:
uncategorized: "Altres"
backups: "Còpies de seguretat"
login: "Inicia la sessió"
- plugins: "Connectors (plugins)"
+ plugins: "Connectors"
user_preferences: "Preferències d'usuari"
tags: "Etiquetes"
search: "Cerca"
diff --git a/config/locales/client.cs.yml b/config/locales/client.cs.yml
index a7dceac026..d3da86f080 100644
--- a/config/locales/client.cs.yml
+++ b/config/locales/client.cs.yml
@@ -339,6 +339,8 @@ cs:
placeholder: "sem napište název tématu"
review:
in_reply_to: "v odpovědi na"
+ explain:
+ total: "Celkem"
delete: "Smazat"
settings:
save_changes: "Uložit změny"
@@ -1312,7 +1314,6 @@ cs:
title_missing: "Název musí být vyplněn"
title_too_short: "Název musí být dlouhý alespoň {{min}} znaků"
title_too_long: "Název nemůže být delší než {{max}} znaků"
- post_missing: "Příspěvek nemůže být prázdný"
post_length: "Příspěvek musí být alespoň {{min}} znaků dlouhý"
category_missing: "Musíte vybrat kategorii"
tags_missing: "Vybraných tagů musí být nejméně {{count}}"
@@ -1332,7 +1333,6 @@ cs:
title_placeholder: "O čem je ve zkratce tato diskuze?"
title_or_link_placeholder: "Sem vložte název téma"
edit_reason_placeholder: "proč byla nutná úprava?"
- show_edit_reason: "(přidat důvod úpravy)"
topic_featured_link_placeholder: "Zadej odkaz ukázaný názvem"
remove_featured_link: "Odstranit odkaz z tématu."
reply_placeholder: "Pište sem. Můžete použít Markdown, BBCode nebo HTML. Obrázky nahrajte přetáhnutím nebo vložením ze schránky."
@@ -1421,7 +1421,6 @@ cs:
title: "oznámení o zmínkách pomocí @name, odpovědi na vaše příspěvky a témata, zprávy, atd."
none: "Notifikace nebylo možné načíst."
empty: "Žádné upozornění nenalezeny."
- more: "zobrazit starší oznámení"
mentioned: "
{{username}} {{description}}"
group_mentioned: "
{{username}} {{description}}"
quoted: "
{{username}} {{description}}"
diff --git a/config/locales/client.da.yml b/config/locales/client.da.yml
index 4cca73e266..afe04258e6 100644
--- a/config/locales/client.da.yml
+++ b/config/locales/client.da.yml
@@ -95,6 +95,12 @@ da:
x_days:
one: "%{count} dag siden"
other: "%{count} dage siden"
+ x_months:
+ one: "%{count} måned siden"
+ other: "%{count} måneder siden"
+ x_years:
+ one: "%{count} år siden"
+ other: "%{count} år siden"
later:
x_days:
one: "%{count} dag senere"
@@ -312,6 +318,10 @@ da:
review:
order_by: "Filtrér efter"
in_reply_to: "som svar til"
+ explain:
+ total: "Total"
+ trust_level_bonus:
+ name: "tillidsniveau"
claim_help:
optional: "Du kan gøre krav på dette punkt, for at forhindre andre i at gennemgå det."
required: "Du skal kræve punkter, før du kan gennemgå dem."
@@ -583,6 +593,7 @@ da:
remove_owner: "Fjern som Ejer"
remove_owner_description: "Fjern
%{username} som ejer af denne gruppe"
owner: "Ejer"
+ forbidden: "Du har ikke tilladelse til at se medlemmerne."
topics: "Emner"
posts: "Indlæg"
mentions: "Omtaler"
@@ -1187,9 +1198,6 @@ da:
enabled: "Dette website kan kun læses lige nu. Fortsæt endelig med at kigge, men der kan ikke svares, likes eller andet indtil videre."
login_disabled: "Log in er deaktiveret midlertidigt, da forummet er i \"kun læsnings\" tilstand."
logout_disabled: "Log ud er deaktiveret mens websitet er i læs kun tilstand"
- too_few_topics_and_posts_notice: "Lad os
starte diskussionen! Der er
%{currentTopics} / %{requiredTopics} emner og
%{currentPosts} / %{requiredPosts} indlæg - besøgende har brug for mere at læse og svare på. Kun hjælperteam kan se denne besked."
- too_few_topics_notice: "Lad os
starte diskussionen! Der er
%{currentTopics} / %{requiredTopics} emner - besøgende har brug for mere at læse og svare på. Kun hjælperteam kan se denne besked."
- too_few_posts_notice: "Lad os
starte diskussionen! Der er
%{currentPosts} / %{requiredPosts} indlæg - besøgende har brug for mere at læse og svare på. Kun hjælperteam kan se denne besked."
logs_error_rate_notice:
reached_hour_MF: "
{relativeAge} -
{rate, plural, en {# error / hour} anden {# fejl / time}} nåede indstillingsgrænsen på {limit, plural, en {# error / hour} anden {# fejl / hour}}."
reached_minute_MF: "
{relativeAge} -
{rate, plural, en {# error / minute} other {# fejl / minut}} nåede indstillingsgrænsen på {limit, plural, en {# error / minute} anden {# fejl / minut}}."
@@ -1338,6 +1346,9 @@ da:
name: "GitHub"
title: "med GitHub"
message: "Logger ind med GitHub (kontrollér at pop-op-blokering ikke er aktiv)"
+ discord:
+ name: "Discord"
+ title: "med Discord"
invites:
accept_title: "Invitation"
welcome_to: "Velkommen til %{site_name}!"
@@ -1446,7 +1457,7 @@ da:
title_missing: "Titlen er påkrævet"
title_too_short: "Titlen skal være på mindst {{min}} tegn"
title_too_long: "Titlen skal være kortere end {{max}} tegn."
- post_missing: "Indlægget kan ikke være tomt."
+ post_missing: "Indlæg kan ikke være tomt"
post_length: "Indlægget skal være på mindst {{min}} tegn."
try_like: "Har du prøvet {{heart}}knappen?"
category_missing: "Du skal vælge en kategori."
@@ -1467,7 +1478,6 @@ da:
title_placeholder: "Hvad handler diskussionen om i korte træk?"
title_or_link_placeholder: "Skriv titlen eller indsæt et link her"
edit_reason_placeholder: "hvorfor redigerer du?"
- show_edit_reason: "(tilføj en begrundelse for ændringen)"
topic_featured_link_placeholder: "Indtast link som vises med titel."
remove_featured_link: "Fjern link fra emne."
reply_placeholder: "Skriv her. Brug Markdown, BBCode eller HTML til at formattere. Træk eller indsæt billeder."
@@ -1554,7 +1564,6 @@ da:
title: "notifikationer ved @navns nævnelse, svar på dine indlæg og emner, beskeder, mv."
none: "Ikke i stand til at indlæse notifikationer for tiden."
empty: "Ingen notifikationer fundet."
- more: "se ældre notifikationer"
post_approved: "Dit indlæg blev godkendt"
reviewable_items: "genstande, der kræver gennemgang"
mentioned: "
{{username}} {{description}}"
@@ -1711,6 +1720,7 @@ da:
go_back: "gå tilbage"
not_logged_in_user: "bruger side, med oversigt over aktivitet og indstillinger"
current_user: "gå til brugerside"
+ view_all: "vis alle"
topics:
new_messages_marker: "sidste besøg"
bulk:
@@ -2197,6 +2207,7 @@ da:
reply: "begynd at skrive et svar på dette indlæg"
like: "like dette indlæg"
has_liked: "Du liker dette indlæg"
+ read_indicator: "medlemmer der har læst dette indlæg"
undo_like: "fortryd like"
edit: "redigér dette indlæg"
edit_action: "Rediger"
@@ -2898,6 +2909,8 @@ da:
view_table: "tabel"
view_graph: "graf"
refresh_report: "Genopfrisk rapporten"
+ start_date: "Startdato (UTC)"
+ end_date: "Slutdato (UTC)"
groups: "Alle grupper"
disabled: "Denne rapport er deaktiveret"
totals_for_sample: "Totaler for prøve"
@@ -2948,6 +2961,9 @@ da:
staff: "Gruppeejer og hjælpeteam"
owners: "Gruppeejere"
description: "Administratorer kan se alle grupper."
+ members_visibility_levels:
+ title: "Hvem kan se medlemmer for denne gruppe?"
+ description: "Admins kan se medlemmer af alle grupper."
membership:
automatic: Automatisk
trust_level: Tillidsniveau
@@ -3377,6 +3393,7 @@ da:
warning: "Dette vil tilsidesætte alle relaterede sideindstillinger permanent."
overridden: Dit websteds standard robots.txt-fil er tilsidesat.
email_style:
+ html: "HTML skabelon"
css: "CSS"
email:
title: "Emails"
diff --git a/config/locales/client.de.yml b/config/locales/client.de.yml
index 910fdef06a..c024d073b4 100644
--- a/config/locales/client.de.yml
+++ b/config/locales/client.de.yml
@@ -95,6 +95,12 @@ de:
x_days:
one: "vor einem Tag"
other: "vor %{count} Tagen"
+ x_months:
+ one: "vor %{count} Monat"
+ other: "vor %{count} Monaten"
+ x_years:
+ one: "vor %{count} Jahr"
+ other: "vor %{count} Jahren"
later:
x_days:
one: "einen Tag später"
@@ -314,6 +320,26 @@ de:
review:
order_by: "beauftragt von"
in_reply_to: "Antwort auf"
+ explain:
+ why: "Erkläre, warum dieses Element in der Warteschlange gelandet ist"
+ title: "Überprüfbares Scoring"
+ formula: "Formel"
+ subtotal: "Zwischensumme"
+ total: "Insgesamt"
+ min_score_visibility: "Minimaler Score für Sichtbarkeit"
+ score_to_hide: "Score, um den Beitrag zu verbergen"
+ take_action_bonus:
+ name: "Maßnahme ergriffen"
+ title: "Wenn ein Teammitglied entscheidet, eine Maßnahme zu ergreifen, bekommt das Kennzeichen einen Bonus."
+ user_accuracy_bonus:
+ name: "Benutzer-Genauigkeit"
+ title: "Benutzer, deren Kennzeichen in Vergangenheit mit einem gewährten Bonus übereinstimmten"
+ trust_level_bonus:
+ name: "Vertrauensstufe"
+ title: "Überprüfbare Elemente, die von Benutzern höherer Vertrauensstufen angelegt wurden, haben einen höheren Score."
+ type_bonus:
+ name: "Bonus Typ"
+ title: "Bestimmte überprüfbare Typen können vom Team mit einem Bonus ausgestattet werden, damit sie höher priorisiert sind."
claim_help:
optional: "Du kannst dieses Element reservieren, damit andere es nicht überprüfen."
required: "Du musst Elemente reservieren, bevor du sie überprüfen kannst."
@@ -1190,9 +1216,9 @@ de:
enabled: "Diese Website befindet sich im Nur-Lesen-Modus. Du kannst weiterhin Inhalte lesen, aber das Erstellen von Beiträgen, Vergeben von Likes und Durchführen einiger weiterer Aktionen ist derzeit nicht möglich."
login_disabled: "Die Anmeldung ist deaktiviert während sich die Website im Nur-Lesen-Modus befindet."
logout_disabled: "Die Abmeldung ist deaktiviert während sich die Website im Nur-Lesen-Modus befindet."
- too_few_topics_and_posts_notice: "Lass
die Diskussion starten! Da sind
%{currentTopics} / %{requiredTopics} Themen und
%{currentPosts} / %{requiredPosts} Beiträge – Besucher brauchen mehr zum Lesen und Beantworten. Nur Teammitglieder können diese Nachricht sehen."
- too_few_topics_notice: "Lass
die Diskussion starten! Da sind
%{currentTopics} / %{requiredTopics} Themen – Besucher brauchen mehr zum Lesen und Beantworten. Nur Teammitglieder können diese Nachricht sehen."
- too_few_posts_notice: "Lass
die Diskussion starten! Da sind
%{currentPosts} / %{requiredPosts} Beiträge – Besucher brauchen mehr zum Lesen und Beantworten. Nur Teammitglieder können diese Nachricht sehen."
+ too_few_topics_and_posts_notice: "Lass
die Diskussion beginnen! Es gibt
%{currentTopics} Themen und
%{currentPosts} Beiträge. Besucher brauchen mehr zum Lesen und Beantworten – wir empfehlen mindestens
%{requiredTopics} Themen und
%{requiredPosts} Beiträge. Diese Nachricht ist nur für das Team sichtbar."
+ too_few_topics_notice: "Lass
die Diskussion beginnen! Es gibt
%{currentTopics} Themen. Besucher brauchen mehr zum Lesen und Beantworten – wir empfehlen mindestens
%{requiredTopics} Themen. Diese Nachricht ist nur für das Team sichtbar."
+ too_few_posts_notice: "Lass
die Diskussion beginnen! Es gibt
%{currentPosts} Beiträge. Besucher brauchen mehr zum Lesen und Beantworten – wir empfehlen mindestens
%{requiredPosts} Beiträge. Diese Nachricht ist nur für das Team sichtbar."
logs_error_rate_notice:
reached_hour_MF: "
{relativeAge} –
{rate, plural, one {# Fehler/Stunde} other {# errors/hour}} hat die Grenze der Webseiten-Einstellung von {limit, plural, one {# Fehler/Stunde} other {# Fehler/Stunde}} erreicht."
reached_minute_MF: "
{relativeAge} –
{rate, plural, one {# Fehler/Minute} other {# Fehler/Minute}} hat die Grenze der Webseiten-Einstellung von {limit, plural, one {# Fehler/Minute} other {# Fehler/Minute}} erreicht."
@@ -1343,6 +1369,8 @@ de:
message: "Authentifiziere mit GitHub (stelle sicher, dass keine Pop-up-Blocker aktiviert sind)"
discord:
name: "Discord"
+ title: "mit Discord"
+ message: "Authenitfizierung mit Discord"
invites:
accept_title: "Einladung"
welcome_to: "Willkommen bei %{site_name}!"
@@ -1456,6 +1484,7 @@ de:
try_like: "Hast du schon die {{heart}}-Schaltfläche ausprobiert?"
category_missing: "Du musst eine Kategorie auswählen"
tags_missing: "Du musst mindestens %{count} Schlagwörter wählen."
+ topic_template_not_modified: "Bitte füge Details und Spezifikationen zu deinem Thema hinzu, indem du die Themenvorlage anpasst."
save_edit: "Speichern"
overwrite_edit: "Bearbeitung überschreiben"
reply_original: "Auf das ursprünglichen Thema antworten"
@@ -1472,7 +1501,6 @@ de:
title_placeholder: "Um was geht es in dieser Diskussion? Schreib einen kurzen Satz."
title_or_link_placeholder: "Gib einen Titel ein oder füge einen Link ein"
edit_reason_placeholder: "Warum bearbeitest du?"
- show_edit_reason: "(Bearbeitungsgrund hinzufügen)"
topic_featured_link_placeholder: "Gib einen Link, der mit dem Titel angezeigt wird."
remove_featured_link: "Link aus Thema entfernen."
reply_placeholder: "Schreib hier. Verwende Markdown, BBCode oder HTML zur Formatierung. Füge Bilder ein oder ziehe sie herein."
@@ -1559,7 +1587,6 @@ de:
title: "Benachrichtigung über @Name-Erwähnungen, Antworten auf deine Beiträge und Themen, Nachrichten, usw."
none: "Die Benachrichtigungen können derzeit nicht geladen werden."
empty: "Keine Benachrichtigungen gefunden."
- more: "ältere Benachrichtigungen anzeigen"
post_approved: "Dein Beitrag wurde genehmigt."
reviewable_items: "Elemente, die eine Überprüfung benötigen"
mentioned: "
{{username}} {{description}}"
@@ -1717,6 +1744,7 @@ de:
go_back: "zurückgehen"
not_logged_in_user: "Benutzerseite mit einer Zusammenfassung der Benutzeraktivitäten und Einstellungen"
current_user: "zu deiner Benutzerseite gehen"
+ view_all: "alle ansehen"
topics:
new_messages_marker: "letzter Besuch"
bulk:
@@ -1829,6 +1857,7 @@ de:
group_request: "Um dieses Thema zu sehen, musst du die Mitgliedschaft der Gruppe `{{name}}` beantragen"
group_join: "Du muss der Gruppe `{{name}}` beitreten, um dieses Thema zu sehen"
group_request_sent: "Dein Mitgliedschafts-Antrag wurde gesendet. Du bekommst eine Information, ob er akzepiert wurde."
+ unread_indicator: "Kein Mitglied hat den letzten Beitrag dieses Themas bisher gelesen."
read_more_MF: "Du {UNREAD, plural, =0 {} one {hast
ein ungelesenes Thema } other {hast
# ungelesene Themen } } {NEW, plural, =0 {} one { {BOTH, select, true{und } false {hast } other{}}
ein neues Thema} other { {BOTH, select, true{und } false {hast } other{}}
# neue Themen} }. Oder {CATEGORY, select, true {entdecke andere Themen in {catLink}} false {{latestLink}} other {}}"
browse_all_categories: Alle Kategorien durchsehen
view_latest_topics: aktuelle Themen anzeigen
@@ -2956,6 +2985,7 @@ de:
owners: "Gruppenbesitzer"
description: "Administratoren können alle Gruppen sehen."
members_visibility_levels:
+ title: "Wer kann die Mitglieder dieser Gruppe sehen?"
description: "Administratoren können die Mitglieder aller Gruppen sehen."
publish_read_state: "Auf Gruppen-Benachrichtigungen veröffentliche Gruppen-gelesen-Status"
membership:
diff --git a/config/locales/client.el.yml b/config/locales/client.el.yml
index 77544b904c..e6f9df7b4a 100644
--- a/config/locales/client.el.yml
+++ b/config/locales/client.el.yml
@@ -256,6 +256,8 @@ el:
title:
placeholder: "γράψε εδώ τον τίτλο του νήματος"
review:
+ explain:
+ total: "Σύνολο"
delete: "Σβήσιμο"
settings:
save_changes: "Αποθήκευση Αλλαγών"
@@ -1076,7 +1078,6 @@ el:
title_missing: "Απαιτείται τίτλος"
title_too_short: "Ο τίτλος πρέπει να έχει τουλάχιστον {{min}} χαρακτήρες"
title_too_long: "Ο τίτλος δεν μπορεί να έχει πάνω από {{max}} χαρακτήρες"
- post_missing: "Μία ανάρτηση δεν μπορεί να είναι κενή"
post_length: "Κάθε ανάρτηση πρέπει να περιέχει τουλάχιστον {{min}} χαρακτήρες"
category_missing: "Πρέπει να διαλέξεις μια κατηγορία"
save_edit: "Αποθήκευση Επεξεργασίας"
@@ -1092,7 +1093,6 @@ el:
title_placeholder: "Τι αφορά αυτή η συζήτησης σε μία σύντομη πρόταση;"
title_or_link_placeholder: "Πληκτρολόγησε τίτλο, ή κάνε επικόλληση ένα σύνδεσμο εδώ"
edit_reason_placeholder: "γιατί αναθεωρείς;"
- show_edit_reason: "(δώσε αιτιολόγηση για την επεξεργασία) "
topic_featured_link_placeholder: "Εισάγετε τον συνδέσμο που εμφανίζεται με τον τίτλο"
reply_placeholder: "Πληκτρολόγησε εδώ. Χρησιμοποίησε την μορφή Markdown, BBCode, ή HTML. Σύρε ή επικόλλησε εικόνες."
view_new_post: "Δες τη νέα σου ανάρτηση."
@@ -1140,7 +1140,6 @@ el:
title: "ειδοποιήσεις για αναφορές στο @name, απαντήσεις στις αναρτήσεις σου και στα νήματά σου, προσωπικά μηνύματα, κλπ."
none: "Αυτή τη στιγμή δεν είναι δυνατόν να φορτωθούν οι ειδοποιήσεις."
empty: "Δεν βρέθηκαν ειδοποιήσεις."
- more: "εμφάνιση παλαιότερων ειδοποιήσεων"
mentioned: "
{{username}} {{description}}"
group_mentioned: "
{{username}} {{description}}"
quoted: "
{{username}} {{description}}"
diff --git a/config/locales/client.en.yml b/config/locales/client.en.yml
index 2b0eab6e19..4d73f53c06 100644
--- a/config/locales/client.en.yml
+++ b/config/locales/client.en.yml
@@ -124,6 +124,12 @@ en:
x_days:
one: "%{count} day ago"
other: "%{count} days ago"
+ x_months:
+ one: "%{count} month ago"
+ other: "%{count} months ago"
+ x_years:
+ one: "%{count} year ago"
+ other: "%{count} years ago"
later:
x_days:
one: "%{count} day later"
@@ -378,6 +384,9 @@ en:
total: "Total"
min_score_visibility: "Minimum Score for Visibility"
score_to_hide: "Score to Hide Post"
+ take_action_bonus:
+ name: "took action"
+ title: "When a staff member chooses to take action the flag is given a bonus."
user_accuracy_bonus:
name: "user accuracy"
title: "Users whose flags have been historically agreed with are given a bonus."
@@ -1316,9 +1325,9 @@ en:
enabled: "This site is in read only mode. Please continue to browse, but replying, likes, and other actions are disabled for now."
login_disabled: "Login is disabled while the site is in read only mode."
logout_disabled: "Logout is disabled while the site is in read only mode."
- too_few_topics_and_posts_notice: "Let's
start the discussion! There are
%{currentTopics} / %{requiredTopics} topics and
%{currentPosts} / %{requiredPosts} posts – visitors need more to read and reply to. Only staff can see this message."
- too_few_topics_notice: "Let's
start the discussion! There are
%{currentTopics} / %{requiredTopics} topics – visitors need more to read and reply to. Only staff can see this message."
- too_few_posts_notice: "Let's
start the discussion! There are
%{currentPosts} / %{requiredPosts} posts – visitors need more to read and reply to. Only staff can see this message."
+ too_few_topics_and_posts_notice: "Let's
start the discussion! There are
%{currentTopics} topics and
%{currentPosts} posts. Visitors need more to read and reply to – we recommend at least
%{requiredTopics} topics and
%{requiredPosts} posts. Only staff can see this message."
+ too_few_topics_notice: "Let's
start the discussion! There are
%{currentTopics} topics. Visitors need more to read and reply to – we recommend at least
%{requiredTopics} topics. Only staff can see this message."
+ too_few_posts_notice: "Let's
start the discussion! There are
%{currentPosts} posts. Visitors need more to read and reply to – we recommend at least
%{requiredPosts} posts. Only staff can see this message."
logs_error_rate_notice:
# keys ending with _MF use message format, see https://meta.discourse.org/t/message-format-support-for-localization/7035 for details
reached_hour_MF: "
{relativeAge} –
{rate, plural, one {# error/hour} other {# errors/hour}} reached site setting limit of {limit, plural, one {# error/hour} other {# errors/hour}}."
@@ -1612,11 +1621,12 @@ en:
title_missing: "Title is required"
title_too_short: "Title must be at least {{min}} characters"
title_too_long: "Title can't be more than {{max}} characters"
- post_missing: "Post can't be empty"
+ post_missing: "Post can’t be empty"
post_length: "Post must be at least {{min}} characters"
try_like: "Have you tried the {{heart}} button?"
category_missing: "You must choose a category"
tags_missing: "You must choose at least {{count}} tags"
+ topic_template_not_modified: "Please add details and specifics to your topic by editing the topic template."
save_edit: "Save Edit"
overwrite_edit: "Overwrite Edit"
@@ -1635,7 +1645,6 @@ en:
title_placeholder: "What is this discussion about in one brief sentence?"
title_or_link_placeholder: "Type title, or paste a link here"
edit_reason_placeholder: "why are you editing?"
- show_edit_reason: "(add edit reason)"
topic_featured_link_placeholder: "Enter link shown with title."
remove_featured_link: "Remove link from topic."
reply_placeholder: "Type here. Use Markdown, BBCode, or HTML to format. Drag or paste images."
@@ -1726,7 +1735,6 @@ en:
title: "notifications of @name mentions, replies to your posts and topics, messages, etc"
none: "Unable to load notifications at this time."
empty: "No notifications found."
- more: "view older notifications"
post_approved: "Your post was approved"
reviewable_items: "items requiring review"
mentioned: "
{{username}} {{description}}"
@@ -1892,6 +1900,7 @@ en:
go_back: "go back"
not_logged_in_user: "user page with summary of current activity and preferences"
current_user: "go to your user page"
+ view_all: "view all"
topics:
new_messages_marker: "last visit"
diff --git a/config/locales/client.es.yml b/config/locales/client.es.yml
index f3c60de7c2..b4c0c59ca6 100644
--- a/config/locales/client.es.yml
+++ b/config/locales/client.es.yml
@@ -265,7 +265,7 @@ es:
new_private_message: "Nuevo borrador de mensaje privado"
topic_reply: "Borrador de respuesta"
abandon:
- confirm: "Ya has abierto otro borrador en este tema. ¿Seguro que quieres abandonarlo?"
+ confirm: "Ya has abierto otro borrador en este tema. ¿Estás seguro de que quieres abandonarlo?"
yes_value: "Sí, abandonar"
no_value: "No, mantener"
topic_count_latest:
@@ -314,6 +314,26 @@ es:
review:
order_by: "Ordenar por"
in_reply_to: "en respuesta a"
+ explain:
+ why: "explica por qué ha acabado en la cola"
+ title: "Puntuación de revisable"
+ formula: "Fórmula"
+ subtotal: "Subtotal"
+ total: "Total"
+ min_score_visibility: "Puntuación mínima para ser visible"
+ score_to_hide: "Puntuación mínima para ocultar publicación"
+ take_action_bonus:
+ name: "acción tomada"
+ title: "cuando un miembro del staff decide tomar acciones, se le otorga un bono al reporte"
+ user_accuracy_bonus:
+ name: "precisión del usuario"
+ title: "Los usuarios con los que se ha coincidido en reportes anteriores reciben puntos extra."
+ trust_level_bonus:
+ name: "nivel de confianza"
+ title: "Los revisables creados por usuarios con niveles de confianza elevados reciben una puntuación más alta."
+ type_bonus:
+ name: "tipo de bonificación"
+ title: "Algunos tipos de revisables pueden recibir una bonificación por el staff para que tengan mayor prioridad."
claim_help:
optional: "Puedes reclamar este artículo para evitar que otros lo revisen."
required: "Debes reclamar los artículos antes de poder revisarlos."
@@ -549,7 +569,7 @@ es:
group_name: "Nombre del grupo"
user_count: "Usuarios"
bio: "Acerca del grupo"
- selector_placeholder: "introduce tu nombre de usuario"
+ selector_placeholder: "Ingresa tu nombre de usuario"
owner: "propietario"
index:
title: "Grupos"
@@ -681,7 +701,7 @@ es:
read_time: "tiempo de lectura"
topics_entered: "temas ingresados"
post_count: "# publicaciones"
- confirm_delete_other_accounts: "¿Seguro que quieres eliminar estas cuentas?"
+ confirm_delete_other_accounts: "¿Estás seguro de que quieres eliminar estas cuentas?"
powered_by: "usando
MaxMindDB"
copied: "copiado"
user_fields:
@@ -704,8 +724,8 @@ es:
ignore_duration_username: "Nombre de usuario"
ignore_duration_when: "Duración:"
ignore_duration_save: "Ignorar"
- ignore_duration_note: "Por favor ten en cuenta que todos los ignorados se eliminan automaticamente al expirar la duración especificada para esta acción."
- ignore_duration_time_frame_required: "Por favor selecciona un intervalo de tiempo"
+ ignore_duration_note: "Por favor, ten en cuenta que todos los ignorados se eliminan automáticamente al expirar la duración especificada para esta acción."
+ ignore_duration_time_frame_required: "Por favor, selecciona un intervalo de tiempo"
ignore_no_users: "No ignoras a ningún usuario"
ignore_option: "Ignorado"
ignore_option_title: "No recibirás notificaciones relacionadas con este usuario y todos sus temas y respuestas se ocultarán."
@@ -857,7 +877,7 @@ es:
use: "
Usar un código de respaldo"
enable_prerequisites: "Debes habilitar un segundo factor primario antes de generar códigos de respaldo."
codes:
- title: "Códigos de seguridad generados"
+ title: "Códigos de respaldo generados"
description: "Cada uno de estos códigos de respaldo puede ser usado una única vez. Manténlos en un lugar seguro pero accesible."
second_factor:
title: "Autenticación en dos pasos"
@@ -870,7 +890,7 @@ es:
disable_description: "Por favor ingresa el código de autenticación que aparece en tu aplicación"
show_key_description: "Ingresa el código manualmente"
short_description: |
- Protege tu cuenta mediante códigos de seguridad de un solo uso.
+ Protege tu cuenta mediante códigos de respaldo de un solo uso.
extended_description: |
La verificación en dos pasos incrementa la seguridad de tu cuenta al requerir un código de único solo uso además de tu contraseña. Los códigos se pueden generar tanto en dispositivos
Android como
iOS.
oauth_enabled_warning: "Por favor ten en cuenta que el acceso a tu cuenta a través de redes sociales se inhabilitará si activas la autenticación en dos pasos."
@@ -903,7 +923,7 @@ es:
change_avatar:
title: "Cambiar tu imagen de perfil"
gravatar: "
Gravatar, basado en"
- gravatar_title: "Cambia tu avatar en la página web de Gravatar"
+ gravatar_title: "Cambia tu avatar en el sitio web de Gravatar"
gravatar_failed: "No hemos encontrado ningún Gravatar con esta dirección de correo electrónico."
refresh_gravatar_title: "Actualizar tu Gravatar"
letter_based: "Imagen de perfil asignada por el sistema"
@@ -964,7 +984,7 @@ es:
default: "(por defecto)"
any: "cualquiera"
password_confirmation:
- title: "Introduce de nuevo la contraseña"
+ title: "Ingresa de nuevo la contraseña"
auth_tokens:
title: "Dispositivos utilizados recientemente"
ip: "IP"
@@ -1133,9 +1153,9 @@ es:
top_topics: "Temas destacados"
no_topics: "No hay temas aún."
more_topics: "Más temas"
- top_badges: "Medallas destacadas"
- no_badges: "Todavía no hay medallas."
- more_badges: "Más medallas"
+ top_badges: "Insignias destacadas"
+ no_badges: "Todavía no hay insignias."
+ more_badges: "Más insignias"
top_links: "Enlaces destacados"
no_links: "No hay enlaces aún."
most_liked_by: "Los que dieron más me gusta"
@@ -1190,9 +1210,9 @@ es:
enabled: "Este sitio está en modo de solo lectura. Puedes continuar navegando pero algunas acciones como responder o dar me gusta no están disponibles por ahora."
login_disabled: "Iniciar sesión está desactivado mientras el foro se encuentre en modo de solo lectura."
logout_disabled: "Cerrar sesión está desactivado mientras el sitio se encuentre en modo de solo lectura."
- too_few_topics_and_posts_notice: "
¡Comencemos la discusión! Hay
%{currentTopics} / %{requiredTopics} temas y
%{currentPosts} / %{requiredPosts} publicaciones. Los visitantes necesitan más para leer y responder. Solo el staff puede ver este mensaje."
- too_few_topics_notice: "
¡Comencemos la discusión! Hay
%{currentTopics} / %{requiredTopics} temas. Los visitantes necesitan más para leer y responder. Solo el staff puede ver este mensaje."
- too_few_posts_notice: "
¡Comencemos la discusión! Hay
%{currentPosts} / %{requiredPosts} publicaciones. Los visitantes necesitan más para leer y responder. Solo el staff puede ver este mensaje."
+ too_few_topics_and_posts_notice: "
¡Comencemos la discusión! Hay
%{currentTopics} temas y
%{currentPosts} publicaciones. Los visitantes necesitan más cosas para leer y responder. Recomendamos al menos
%{requiredTopics} temas y
%{requiredPosts} publicaciones. Solo el staff puede ver este mensaje."
+ too_few_topics_notice: "
¡Comencemos la discusión! Hay
%{currentTopics} temas. Los visitantes necesitan más cosas para leer y responder. Recomendamos al menos
%{requiredTopics} temas. Solo el staff puede ver este mensaje."
+ too_few_posts_notice: "
¡Comencemos la discusión! Hay
%{currentPosts} publicaciones. Los visitantes necesitan más cosas para leer y responder. Recomendamos al menos
%{requiredPosts} publicaciones. Solo el staff puede ver este mensaje."
logs_error_rate_notice:
reached_hour_MF: "
{relativeAge} –
{rate, plural, one {# error/hour} otros {# errors/hour}} alcanzó el límite de la configuración del sitio de {limit, plural, one {# error/hour} otros {# errors/hour}}."
reached_minute_MF: "
{relativeAge} –
{rate, plural, one {# error/minute} otros {# errors/minute}} alcanzó el límite de la configuración del sitio de {limit, plural, one {# error/minute} otros {# errors/minute}}."
@@ -1259,7 +1279,7 @@ es:
forgot_password:
title: "Restablecer contraseña"
action: "Olvidé mi contraseña"
- invite: "Introduce tu nombre de usuario o tu dirección de correo electrónico, y te enviaremos un correo para reestablecer tu contraseña."
+ invite: "Ingresa tu nombre de usuario o tu dirección de correo electrónico, y te enviaremos un correo para reestablecer tu contraseña."
reset: "Restablecer Contraseña"
complete_username: "Si una cuenta coincide con el nombre de usuario
%{username}, en breve deberías recibir un correo electrónico con las instrucciones para reestablecer tu contraseña."
complete_email: "Si una cuenta coincide con
%{email}, en breve deberías recibir un correo electrónico con las instrucciones para reestablecer tu contraseña."
@@ -1267,7 +1287,7 @@ es:
complete_email_found: "Encontramos una cuenta que coincide con
%{email}, deberías recibir en breve un correo electrónico con instrucciones para restablecer tu contraseña."
complete_username_not_found: "No hay ninguna cuenta que coincida con el nombre de usuario
%{username}"
complete_email_not_found: "No hay ninguna cuenta que coincida con el correo electrónico
%{email}"
- help: "¿No te ha llegado el correo? Asegúrate de comprobar primero tu carpeta de correo no deseado.
¿No estás seguro de qué correo has usado? Introduce tu correo electrónico y te avisaremos si lo tenemos registrado.
Si no tienes acceso al correo electrónico asociado a tu cuenta, por favor contacta a nuestro amable staff.
"
+ help: "¿No te ha llegado el correo? Asegúrate de comprobar primero tu carpeta de correo no deseado.
¿No estás seguro de qué correo has usado? Ingresa tu correo electrónico y te avisaremos si lo tenemos registrado.
Si no tienes acceso al correo electrónico asociado a tu cuenta, por favor contacta a nuestro amable staff.
"
button_ok: "OK"
button_help: "Ayuda"
email_login:
@@ -1290,7 +1310,7 @@ es:
second_factor_description: "Por favor ingresa el código de autenticación desde tu aplicación:"
second_factor_backup: "
Iniciar sesión usando un código de respaldo"
second_factor_backup_title: "Respaldo de la autenticación en dos pasos"
- second_factor_backup_description: "Por favor, introduce uno de los códigos de respaldo:"
+ second_factor_backup_description: "Por favor, ingresa uno de los códigos de respaldo:"
second_factor: "
Inicia sesión usando la app Authenticator"
email_placeholder: "dirección de correo electrónico o nombre de usuario"
caps_lock_warning: "El bloqueo de mayúsculas está activado"
@@ -1423,7 +1443,7 @@ es:
notice: "Este tema es visible solamente por quienes pueden ver la categoría
{{category}}."
destination_category: "Categoría de destino"
publish: "Publicar borrador compartido"
- confirm_publish: "¿Estás seguro que quieres publicar este borrador?"
+ confirm_publish: "¿Estás seguro de que quieres publicar este borrador?"
publishing: "Publicando Tema..."
composer:
emoji: "Emoji :)"
@@ -1453,11 +1473,12 @@ es:
title_missing: "Es necesario un título"
title_too_short: "El título debe tener por lo menos {{min}} caracteres."
title_too_long: "El título no puede tener más de {{max}} caracteres."
- post_missing: "La publicación no puede estar vacía."
+ post_missing: "Las publicaciones no pueden estar vacías"
post_length: "La publicación debe tener por lo menos {{min}} caracteres."
try_like: "¿Has probado el botón {{heart}}?"
category_missing: "Debes escoger una categoría."
tags_missing: "Debes seleccionar al menos {{count}} etiquetas"
+ topic_template_not_modified: "Por favor agrega detalles y especificaciones a tu tema editando la plantilla de tema."
save_edit: "Guardar edición"
overwrite_edit: "Sobrescribir edición"
reply_original: "Responder en el tema original"
@@ -1474,8 +1495,7 @@ es:
title_placeholder: "En una frase breve, ¿de qué trata este tema?"
title_or_link_placeholder: "Escribe un título o pega un enlace aquí"
edit_reason_placeholder: "¿Por qué lo estás editando?"
- show_edit_reason: "(añadir motivo de edición)"
- topic_featured_link_placeholder: "Introducir el enlace mostrado con el título."
+ topic_featured_link_placeholder: "Ingresa el enlace mostrado con el título."
remove_featured_link: "Eliminar enlace del tema."
reply_placeholder: "Escribe aquí. Usa Markdown, BBCode o HTML para darle formato. Arrastra o pega imágenes."
reply_placeholder_no_images: "Escribe aquí. Usa Markdown, BBCode o HTML para darle formato."
@@ -1495,7 +1515,7 @@ es:
italic_title: "Cursiva"
italic_text: "Texto en cursiva"
link_title: "Hipervínculo"
- link_description: "introduzca descripción del enlace aquí"
+ link_description: "Ingresa la descripción del enlace aquí"
link_dialog_title: "Insertar hipervínculo"
link_optional_text: "título opcional"
link_url_placeholder: "https://ejemplo.com"
@@ -1505,10 +1525,10 @@ es:
code_text: "texto preformateado con sangría de 4 espacios"
paste_code_text: "escribe o pega el código aquí"
upload_title: "Subir"
- upload_description: "introduce una descripción del archivo subido aquí"
+ upload_description: "Ingresa una descripción del archivo subido aquí"
olist_title: "Lista numerada"
ulist_title: "Lista con viñetas"
- list_item: "Lista de ítems"
+ list_item: "Lista de elementos"
toggle_direction: "Alternar dirección"
help: "Ayuda de edición con Markdown"
collapse: "minimizar el panel de edición"
@@ -1561,7 +1581,6 @@ es:
title: "notificaciones por menciones a tu @nombre, respuestas a tus publicaciones y temas, mensajes, etc"
none: "No se pudieron cargar las notificaciones en este momento."
empty: "No se encontraron notificaciones."
- more: "ver notificaciones antiguas"
post_approved: "Tu publicación ha sido aprobada"
reviewable_items: "elementos que requieren revisión"
mentioned: "
{{username}} {{description}}"
@@ -1585,7 +1604,7 @@ es:
invitee_accepted: "
{{username}} aceptó tu invitación"
moved_post: "
{{username}} movió {{description}}"
linked: "
{{username}} {{description}}"
- granted_badge: "Ganó '{{description}}'"
+ granted_badge: "Ganaste '{{description}}'"
topic_reminder: "
{{username}} {{description}}"
watching_first_post: "
Nuevo tema {{description}}"
membership_request_accepted: "Membresía aceptada en «{{group_name}}»"
@@ -1616,7 +1635,7 @@ es:
posted: "nueva publicación"
moved_post: "publicación movida"
linked: "enlazado"
- granted_badge: "medalla concedida"
+ granted_badge: "insignia concedida"
invited_to_topic: "invitado al tema"
group_mentioned: "grupo mencionado"
group_message_summary: "nuevos mensajes grupales"
@@ -1680,7 +1699,7 @@ es:
in_group:
label: En el grupo
with_badge:
- label: Con la medalla
+ label: Con la insignia
with_tags:
label: Etiquetado
filters:
@@ -1719,6 +1738,7 @@ es:
go_back: "volver"
not_logged_in_user: "página de usuario con resumen de la actividad y preferencias actuales"
current_user: "ir a tu página de usuario"
+ view_all: "ver todo"
topics:
new_messages_marker: "última visita"
bulk:
@@ -2233,7 +2253,7 @@ es:
rebake: "Reconstruir HTML"
unhide: "Deshacer ocultar"
change_owner: "Cambiar dueño"
- grant_badge: "Conceder medalla"
+ grant_badge: "Conceder insignia"
lock_post: "Bloquear publicación"
lock_post_description: "impedir que el usuario que realizó esta publicación la edite"
unlock_post: "Desbloquear publicación"
@@ -2349,7 +2369,7 @@ es:
topic: "tema de la categoría"
logo: "Imagen (logo) para la categoría"
background_image: "Imagen de fondo de la categoría"
- badge_colors: "Colores de las medallas"
+ badge_colors: "Colores de las insignias"
background_color: "Color de fondo"
foreground_color: "Colores de primer plano"
name_placeholder: "Una o dos palabras máximo"
@@ -2380,7 +2400,7 @@ es:
sort_order: "Ordenar lista de temas:"
default_view: "Orden por defecto:"
default_top_period: "Período por defecto para estar en la parte superior:"
- allow_badges_label: "Permitir que se concedan medallas en esta categoría"
+ allow_badges_label: "Permitir que se concedan insignias en esta categoría"
edit_permissions: "Editar permisos"
reviewable_by_group: "Además del staff, las publicaciones y los reportes en esta categoría también pueden ser revisados por:"
review_group_name: "nombre del grupo"
@@ -2449,7 +2469,7 @@ es:
notify_action: "Mensaje"
official_warning: "Advertencia oficial"
delete_spammer: "Eliminar spammer"
- delete_confirm_MF: "Estás a punto de eliminar {POSTS, plural, one {
1 post} other {
# posts}} y {TOPICS, plural, one {
1 topic} other {
# topics}} de este usuario, eliminar su cuenta, bloquear registros desde su dirección IP
{ip_address}, y añadir su dirección de correo electrónico
{email} a la lista de bloqueo permanente. ¿Seguro que este usuario es un spammer?"
+ delete_confirm_MF: "Estás a punto de eliminar {POSTS, plural, one {
1 post} other {
# posts}} y {TOPICS, plural, one {
1 topic} other {
# topics}} de este usuario, eliminar su cuenta, bloquear registros desde su dirección IP
{ip_address}, y añadir su dirección de correo electrónico
{email} a la lista de bloqueo permanente. ¿Estás seguro de que este usuario es un spammer?"
yes_delete_spammer: "Sí, borrar spammer"
ip_address_missing: "(N/D)"
hidden_email_address: "(oculto)"
@@ -2465,8 +2485,8 @@ es:
custom_placeholder_notify_moderators: "Haznos saber qué te preocupa específicamente y, siempre que sea posible, incluye enlaces y ejemplos relevantes."
custom_message:
at_least:
- one: "introduce al menos un carácter"
- other: "introduce al menos {{count}} caracteres"
+ one: "introduce al menos %{count} caracteres"
+ other: "ingresa al menos {{count}} caracteres"
more:
one: "%{count} más..."
other: "{{count}} más..."
@@ -2697,22 +2717,22 @@ es:
badges:
earned_n_times:
one: "Ganó esta medalla %{count} vez"
- other: "Ganó esta medalla %{count} veces"
+ other: "Insignia ganada %{count} veces"
granted_on: "Concedido el %{date}"
- others_count: "Otras personas con esta medalla (%{count})"
- title: Medalla
- allow_title: "Puedes usar esta medalla como título"
- multiple_grant: "Puedes ganar esta medalla varias veces"
+ others_count: "Otras personas con esta insignia (%{count})"
+ title: Insignia
+ allow_title: "Puedes usar esta insignia como título"
+ multiple_grant: "Puedes ganar esta insignia varias veces"
badge_count:
one: "%{count} medalla"
- other: "%{count} medallas"
+ other: "%{count} insignias"
more_badges:
one: "+%{count} Más"
other: "+%{count} Más"
granted:
one: "%{count} concedido"
other: "%{count} concedidas"
- select_badge_for_title: Seleccionar una medalla para utilizar como tu título
+ select_badge_for_title: Seleccionar una insignia para utilizar como tu título
none: "(ninguna)"
successfully_granted: "%{badge} concedida exitosamente a %{username}"
badge_grouping:
@@ -2844,8 +2864,8 @@ es:
reports:
title: "Lista de informes disponibles"
dashboard:
- title: "Panel"
- last_updated: "Panel actualizado:"
+ title: "Dashboard"
+ last_updated: "Dashboard actualizado:"
discourse_last_updated: "Discourse actualizado:"
version: "Versión"
up_to_date: "¡Estás actualizado!"
@@ -2873,7 +2893,7 @@ es:
uploads: "Archivos subidos"
backups: "Copias de respaldo"
backup_count:
- one: "%{count} copia de seguridad en %{location}"
+ one: "%{count} copia de respaldo en %{location}"
other: "%{count} copias de respaldo en %{location}"
lastest_backup: "Recientes: %{date}"
traffic_short: "Tráfico"
@@ -2893,7 +2913,7 @@ es:
report_filter_any: "cualquiera"
disabled: Desactivado
timeout_error: "Lo sentimos, la solicitud está durando demasiado, por favor selecciona un periodo más corto"
- exception_error: "Lo siento, se produjo un error al ejecutar la consulta"
+ exception_error: "Lo sentimos, se produjo un error al ejecutar la consulta"
too_many_requests: Has realizado esta acción demasiadas veces. Por favor espera antes de intentarlo de nuevo.
not_found_error: "Lo sentimos, este reporte no existe"
filter_reports: Filtrar informes
@@ -2952,7 +2972,7 @@ es:
interaction:
email: Correo electrónico
incoming_email: "Dirección de correo electrónico entrante personalizada"
- incoming_email_placeholder: "introducir dirección de correo electrónico"
+ incoming_email_placeholder: "ingresa dirección de correo electrónico"
visibility: Visibilidad
visibility_levels:
title: "¿Quién puede ver este grupo?"
@@ -2963,6 +2983,7 @@ es:
owners: "Propietarios del grupo"
description: "Los administradores pueden ver todos los grupos."
members_visibility_levels:
+ title: "¿Quién puede ver los miembros de este grupo?"
description: "Los administradores pueden ver los miembros de todos los grupos."
publish_read_state: "Publicar confirmaciones de lectura en los mensajes grupales"
membership:
@@ -3071,7 +3092,7 @@ es:
details: "Cuando un elemento nuevo está disponible para ser revisado y cuando su estado se actualiza."
notification_event:
name: "Evento de notificación"
- details: "Cuando un usuario recibe una notificación"
+ details: "Cuando un usuario recibe una notificación."
delivery_status:
title: "Estado de entrega"
inactive: "Inactivo"
@@ -3159,7 +3180,7 @@ es:
alert: "El enlace para descargar esta copia de respaldo se te envió por correo electrónico."
destroy:
title: "Borrar la copia de respaldo"
- confirm: "¿Estás seguro de que quieres borrar esta copia de seguridad?"
+ confirm: "¿Estás seguro de que quieres borrar esta copia de respaldo?"
restore:
is_disabled: "Restaurar está deshabilitado en la configuración del sitio."
label: "Restaurar"
@@ -3530,8 +3551,8 @@ es:
unsuspend_user: "desbloquear usuario"
removed_suspend_user: "suspender usuario (eliminado)"
removed_unsuspend_user: "desbloquear usuario (eliminado)"
- grant_badge: "conceder medalla"
- revoke_badge: "retirar medalla"
+ grant_badge: "conceder insignia"
+ revoke_badge: "retirar insignia"
check_email: "comprobar correo electrónico"
delete_topic: "eliminar tema"
recover_topic: "recuperar tema"
@@ -3572,9 +3593,9 @@ es:
topic_published: "tema publicado"
post_approved: "publicación aprobada"
post_rejected: "publicación rechazada"
- create_badge: "crear medalla"
- change_badge: "cambiar medalla"
- delete_badge: "borrar medalla"
+ create_badge: "crear insignia"
+ change_badge: "cambiar insignia"
+ delete_badge: "eliminar insignia"
merge_user: "fusionar usuario"
entity_export: "entidad exportadora"
change_name: "cambiar nombre"
@@ -3749,7 +3770,7 @@ es:
clear_penalty_history:
title: "Borrar historial de faltas"
description: "usuarios con faltas no pueden alcanzar NC3"
- delete_all_posts_confirm_MF: "Estás a punto de eliminar {POSTS, plural, one {1 post} other {# posts}} y {TOPICS, plural, one {1 topic} other {# topics}}. ¿Seguro?"
+ delete_all_posts_confirm_MF: "Estás a punto de eliminar {POSTS, plural, one {1 post} other {# posts}} y {TOPICS, plural, one {1 topic} other {# topics}}. ¿Estás seguro?"
silence: "Silenciar"
unsilence: "Dejar de silenciar"
silenced: "¿Silenciado?"
@@ -3807,8 +3828,8 @@ es:
one: "No se pueden eliminar todos los posts. Algunos tienen más de %{count} día de antigüedad. (Ver la opción delete_user_max_post_age )"
other: "No se pueden eliminar todas las publicaciones. Algunas publicaciones tienen más de %{count} días de antigüedad. (Ver la opción delete_user_max_post_age)"
cant_delete_all_too_many_posts:
- one: "No se pueden eliminar todos los posts porque el usuario tiene más de %{count} post. (Ver la opción delete_all_posts_max)"
- other: "No se pueden eliminar todas las publicaciones porque el usuario tiene más de %{count} publicaciones. (delete_all_posts_max)"
+ one: "No se pueden eliminar todos los posts porque el usuario tiene más de %{count}. (delete_all_posts_max)"
+ other: "No se pueden eliminar todas las publicaciones porque el usuario tiene más de %{count}. (delete_all_posts_max)"
delete_confirm: "Por lo general es preferible anonimizar usuarios en vez de eliminarlos para evitar quitar contenido de debates existentes.
¿Estás SEGURO de que quieres eliminar este usuario? ¡Esta acción es permanente!"
delete_and_block: "Eliminar y
bloquear este correo electrónico y esta dirección IP"
delete_dont_block: "Solo eliminar"
@@ -3976,51 +3997,51 @@ es:
tags: "Etiquetas"
search: "Búsqueda"
groups: "Grupos"
- dashboard: "Panel"
+ dashboard: "Dashboard"
secret_list:
invalid_input: "Los campos no pueden estar vacíos o contener el carácter de barra vertical."
badges:
- title: Medallas
- new_badge: Nueva medalla
+ title: Insignias
+ new_badge: Nueva insignia
new: Nuevo
name: Nombre
- badge: Medalla
+ badge: Insignia
display_name: Nombre que se muestra
description: Descripción
long_description: Descripción completa
- badge_type: Tipo de medalla
+ badge_type: Tipo de insignia
badge_grouping: Grupo
badge_groupings:
- modal_title: Grupos de medallas
+ modal_title: Grupos de insignias
granted_by: Concedido por
granted_at: Concedido en
reason_help: (Enlace a una publicación o tema)
save: Guardar
delete: Eliminar
- delete_confirm: "¿Estás seguro de que quieres eliminar esta medalla?"
+ delete_confirm: "¿Estás seguro de que quieres eliminar esta insignia?"
revoke: Revocar
reason: Motivo
expand: Expandir …
- revoke_confirm: "¿Estás seguro de que quieres revocar esta medalla?"
- edit_badges: Editar medallas
- grant_badge: Condecer medallas
- granted_badges: Medallas concedidas
+ revoke_confirm: "¿Estás seguro de que quieres revocar esta insignia?"
+ edit_badges: Editar insignias
+ grant_badge: Condecer insignias
+ granted_badges: Insignias concedidas
grant: Conceder
- no_user_badges: "%{name} no ha recibido ninguna medalla."
- no_badges: No hay medallas para conceder.
- none_selected: "Selecciona una medalla para empezar"
- allow_title: Permitir que se use la medalla como título
+ no_user_badges: "%{name} no ha recibido ninguna insignia."
+ no_badges: No hay insignias para conceder.
+ none_selected: "Selecciona una insignia para empezar"
+ allow_title: Permitir que se use la insignia como título
multiple_grant: Puede ser concedida varias veces
- listable: Mostrar medalla en la página pública de medallas
- enabled: Activar medalla
+ listable: Mostrar insignia en la página pública de insignias
+ enabled: Activar insignia
icon: Icono
image: Imagen
- icon_help: "Introduce un nombre de icono de Font Awesome (usa el prefijo 'far-' para iconos regulares y 'fab-' para iconos de marca)"
+ icon_help: "ingresa un nombre de icono de Font Awesome (usa el prefijo 'far-' para iconos regulares y 'fab-' para iconos de marca)"
image_help: "Ingresa la URL de la imagen (sobrescribe el campo del icono si ambos están configurados)"
- query: Consulta (SQL) para otorgar la medalla
+ query: Consulta (SQL) para otorgar la insignia
target_posts: Publicaciones destino de la consulta
auto_revoke: Ejecutar diariamente la consulta de revocación
- show_posts: Mostrar la publicación por la cual se concedió la medalla en la página de medallas
+ show_posts: Mostrar la publicación por la cual se concedió la insignia en la página de insignias
trigger: Disparador
trigger_type:
none: "Actualizar diariamente"
@@ -4030,18 +4051,18 @@ es:
user_change: "Cuando se edita o se crea un usuario"
post_processed: "Después de procesar una publicación"
preview:
- link_text: "Vista previa de las medallas concedidas"
+ link_text: "Vista previa de las insignias concedidas"
plan_text: "Vista previa con el plan de ejecución de tu consulta"
- modal_title: "Vista previa de la consulta para la medalla"
+ modal_title: "Vista previa de la consulta para la insignias"
sql_error_header: "Ocurrió un error con la consulta."
- error_help: "Mira los siguientes enlaces para ayudarte con las solicitudes de las medallas"
+ error_help: "Mira los siguientes enlaces para ayudarte con las solicitudes de las insignias"
bad_count_warning:
header: "¡ADVERTENCIA!"
- text: "Faltan algunas muestras muestras de concesiones. Esto ocurre cuando la solicitud de la medalla devuelve ID de usuarios o de publicaciones que no existen. Esto podría causar resultados inesperados más tarde - por favor revisa de nuevo tu solicitud."
- no_grant_count: "No hay medallas para asignar."
+ text: "Faltan algunas muestras muestras de concesiones. Esto ocurre cuando la solicitud de la insignia devuelve ID de usuarios o de publicaciones que no existen. Esto podría causar resultados inesperados más tarde - por favor revisa de nuevo tu solicitud."
+ no_grant_count: "No hay insignias para asignar."
grant_count:
one: "
%{count} medalla para conceder."
- other: "
%{count} medallas para conceder."
+ other: "
%{count} insignias para conceder."
sample: "Muestra:"
grant:
with: "
%{username}"
@@ -4049,9 +4070,9 @@ es:
with_post_time: "
%{username} por la publicación en %{link} a las
%{time}"
with_time: "
%{username} a las
%{time}"
badge_intro:
- title: "Selecciona una medalla existente o crea una para empezar"
- what_are_badges_title: "¿Qué son las medallas?"
- badge_query_examples_title: "Ejemplos de consultas de medallas"
+ title: "Selecciona una insignia existente o crea una para empezar"
+ what_are_badges_title: "¿Qué son las insignias?"
+ badge_query_examples_title: "Ejemplos de consultas de insignias"
emoji:
title: "Emoji"
help: "Añade emojis nuevos que estarán disponibles para todos. (CONSEJO: arrasta varios archivos a la vez)"
diff --git a/config/locales/client.et.yml b/config/locales/client.et.yml
index ea254f3d26..25fcf02c77 100644
--- a/config/locales/client.et.yml
+++ b/config/locales/client.et.yml
@@ -279,6 +279,8 @@ et:
title:
placeholder: "kirjuta teema pealkiri siia"
review:
+ explain:
+ total: "Kokku"
delete: "Kustuta"
settings:
save_changes: "Salvesta muudatused"
@@ -1152,7 +1154,6 @@ et:
title_missing: "Pealkiri on kohustuslik"
title_too_short: "Pealkiri peab olema vähemalt {{min}} sümbolit pikk"
title_too_long: "Pealkiri ei saa olla pikem kui {{max}} sümbolit"
- post_missing: "Positus ei saa olla tühi"
post_length: "Postitus peab olema vähemalt {{min}} sümbolit pikk"
try_like: "Oled sa proovinud {{heart}} nuppu?"
category_missing: "Pead valima foorumi"
@@ -1173,7 +1174,6 @@ et:
title_placeholder: "Kuidas seda vestlust ühe lausega kirjeldada?"
title_or_link_placeholder: "Kirjuta pealkiri või kleebi link siia"
edit_reason_placeholder: "miks sa seda muudad?"
- show_edit_reason: "(lisa muutmise põhjus)"
topic_featured_link_placeholder: "Järgi pealkirjas näidatud viidet."
remove_featured_link: "Eemalda teemast link."
reply_placeholder: "Kirjuta siia. Kujundamiseks kasuta Markdown, BBCode, või HTML-i. Pildid võid siia lohistada või kleepida."
@@ -1238,7 +1238,6 @@ et:
title: "teavitused @name mainimiste, oma postitustele ja teemadele vastamiste, sõnumite, jne kohta"
none: "Hetkel ei saa teavitusi laadida."
empty: "Teavitusi ei leitud."
- more: "vaata vanemaid teavitusi"
mentioned: "
{{username}} {{description}}"
group_mentioned: "
{{username}} {{description}}"
quoted: "
{{username}} {{description}}"
diff --git a/config/locales/client.fa_IR.yml b/config/locales/client.fa_IR.yml
index a367cbff04..a218afc100 100644
--- a/config/locales/client.fa_IR.yml
+++ b/config/locales/client.fa_IR.yml
@@ -95,6 +95,12 @@ fa_IR:
x_days:
one: "%{count} روز پیش"
other: "%{count} روز پیش"
+ x_months:
+ one: "%{count} ماه قبل"
+ other: "%{count} ماههای قبل"
+ x_years:
+ one: "%{count} سال قبل"
+ other: "%{count} سال قبل"
later:
x_days:
one: "%{count} روز بعد"
@@ -299,6 +305,8 @@ fa_IR:
banner:
close: "این بنر را ببند."
edit: "این بنر را ویرایش کنید >>"
+ pwa:
+ install_banner: "ایامایل هستید تا
، %{title} را برروی دستگاه شما نصب کند؟"
choose_topic:
none_found: "موضوعی یافت نشد."
title:
@@ -312,6 +320,14 @@ fa_IR:
review:
order_by: "به ترتیب"
in_reply_to: "در پاسخ به"
+ explain:
+ why: "توضیح دهید که چرا این مورد در صف پایان یافت"
+ formula: "فرمول"
+ total: "مجموع"
+ user_accuracy_bonus:
+ name: "دقت کاربر"
+ trust_level_bonus:
+ name: "سطح اعتماد"
claim_help:
optional: "میتوانید این مورد را درخواست کنید تا دیگران را از بازنگری آن بازنگه دارید."
required: "شما قبل از بازنگری موارد باید آنها را درخواست دهید ."
@@ -583,6 +599,7 @@ fa_IR:
remove_owner: "حذف توسط مالک"
remove_owner_description: "حذف کاربر
%{username} به عنوان مالک این گروه"
owner: "مالک"
+ forbidden: "شما مجاز به دیدن کاربران نیستید."
topics: "موضوعات"
posts: "نوشتهها"
mentions: "اشارهها"
@@ -1212,7 +1229,7 @@ fa_IR:
time_read_recently_tooltip: "%{time_read} زمان مطالعه کل (%{recent_time_read}در ۶۰ روز گذشته)"
last_reply_lowercase: آخرین پاسخ
replies_lowercase:
- one: 'پاسخها '
+ one: پاسخ
other: 'پاسخها '
signup_cta:
sign_up: "ثبت نام"
@@ -1261,6 +1278,7 @@ fa_IR:
complete_email_found: "ما حساب کاربری که با ایمیل
%{email}همخوانی دارد را پیدا کردیم، بزودی یک ایمیل با دستورالعمل بازیابی رمز دریافت میکنید."
complete_username_not_found: "هیچ حساب کاربری که با
%{username} همخوانی داشته باشد پیدا نشد"
complete_email_not_found: "هیچ حساب کاربری که
%{email} همخوانی داشته باشد پیدا نشد"
+ help: "رایانامه دریافت نکردهاید؟ ابتدا پوشهٔ اسپم را بررسی کنید.
مطمئن نیستید از کدام آدرس رایانامه استفاده کردهاید؟ یک آدرس رایانامه وارد کنید تا درصورت موجود بودن به شما بگوییم.
اگر به آدرس رایانامهٔ حساب کاربری خود دسترسی ندارید با کارکنان ما تماس بگیرید.
"
button_ok: "اوکی"
button_help: "کمک"
email_login:
@@ -1334,6 +1352,9 @@ fa_IR:
name: "گیت هاب"
title: "با گیتهاب"
message: "اعتبارسنجی با گیتهاب (مطمئن شوید که بازدارندههای pop up فعال نباشند)"
+ discord:
+ name: "دیسکورد"
+ message: "اعتبارسنجی توسط دیسکورد"
invites:
accept_title: "دعوتنامه"
welcome_to: "به %{site_name} خوش آمدید!"
@@ -1437,17 +1458,20 @@ fa_IR:
title_missing: "عنوان الزامی است"
title_too_short: "عنوان دستکم باید {{min}} نویسه باشد"
title_too_long: "عنوان نمیتواند بیشتر از {{max}} نویسه باشد"
- post_missing: "نوشته نمیتواند خالی باشد"
+ post_missing: "فرسته نمیتواند خالی باشد."
post_length: "نوشته باید دستکم {{min}} نویسه داشته باشد"
+ try_like: "دکمهی {{heart}} را امتحان کردهاید؟ "
category_missing: "باید یک دستهبندی انتخاب کنید"
tags_missing: "شما باید حداقل {{count}}برچسب انتخاب کنید"
save_edit: "ذخیره ویرایش"
+ overwrite_edit: "بازنویسی ویرایش"
reply_original: "پاسخ دادن در موضوع اصلی"
reply_here: "در اینجا پاسخ دهید"
reply: "پاسخ"
cancel: "لغو کردن"
create_topic: "ایجاد موضوع"
create_pm: "پیام"
+ create_whisper: "زمزمه"
create_shared_draft: "ایجاد پیشنویس مشترک"
edit_shared_draft: "ویرایش درفت مشترک"
title: "یا Ctrl+Enter را بفشارید"
@@ -1455,7 +1479,6 @@ fa_IR:
title_placeholder: "در یک جملهی کوتاه بگویید که این موضوع در چه موردی است؟"
title_or_link_placeholder: "عنوان را بنویسید،یا پیوند را بچسبانید"
edit_reason_placeholder: "چرا ویرایش میکنید؟"
- show_edit_reason: "(افزودن دلیل ویرایش)"
topic_featured_link_placeholder: "پیوندی که با عنوان نمایش داده میشود را وارد کنید."
remove_featured_link: "حذف لینک از موضوع"
reply_placeholder: "اینجا بنویسید. برای قالببندی متن از Markdown، BBCode یا HTML استفاده کنید. عکسها را به اینجا بکشید یا بچسبانید."
@@ -1509,6 +1532,7 @@ fa_IR:
draft: درفت
edit: ویرایش
reply_to_post:
+ label: "پاسخ به پست %{postNumber} توسط %{postUsername}"
desc: پاسخ به یک پست خاص
reply_as_new_topic:
label: پاسخ به تاپیک لینک شده
@@ -1541,7 +1565,6 @@ fa_IR:
title: "اطلاعرسانیهای اشاره به @نام، پاسخ به نوشتهها، موضوعات، پیامهای شما و ..."
none: "قادر به بارگیری اعلانها در این زمان نیستیم."
empty: "اعلانی پیدا نشد."
- more: "نمایش اعلانهای قدیمیتر"
post_approved: "نوشته ی شما تایید شد"
reviewable_items: "موارد نیازمند بازبینی است"
mentioned: "
{{username}}{{description}}"
@@ -1578,8 +1601,12 @@ fa_IR:
quoted: '{{username}} از شما در "{{topic}}" - {{site_title}} نقل قول کرد '
replied: '{{username}} در "{{topic}}" - {{site_title}} به شما پاسخ داد'
posted: '{{username}} در "{{topic}}" - {{site_title}} مطلبی نوشت'
+ private_message: '{{username}} برای شما یک پیام خصوصی در "{{topic}}" - {{site_title}} ارسال کرد'
linked: '{{username}} در "{{topic}}" - {{site_title}} به نوشتهی شما پیوندی قرار داد'
+ watching_first_post: '{{username}} یک مبحث جدید در "{{topic}}" - {{site_title}} ساخته'
+ confirm_title: "اعلانات فعال شد - %{site_title}"
confirm_body: "موفق شدید. اگاهسازیها فعال شدند."
+ custom: "اعلان از طرف {{username}} بر روی %{site_title}"
titles:
mentioned: "احضار شده"
replied: "پاسخ جدید"
@@ -1632,6 +1659,7 @@ fa_IR:
searching: "در حال جستجو..."
post_format: "#{{post_number}} توسط {{username}}"
results_page: "نتایج جستجو برای '{{term}}'"
+ more_results: "نتایج بیشتری موجود است. لطفاً معیارهای جستوجوی خود را محدودتر کنید."
cant_find: "چیزی را که به دنبالش بودید نیافتید؟"
start_new_topic: "شاید باید یک موضوع جدید را شروع کنید؟"
or_search_google: "یا بهجای این، جستوجو با گوگل را امتحان کنید:"
@@ -1691,6 +1719,7 @@ fa_IR:
go_back: "برگردید"
not_logged_in_user: "صفحه کاربر با خلاصه ای از فعالیت های و تنظیمات"
current_user: "به صفحهی کاربریتان بروید"
+ view_all: "مشاهده همه"
topics:
new_messages_marker: "آخرین بازدید"
bulk:
@@ -1800,6 +1829,9 @@ fa_IR:
toggle_information: " تغییر وضعیت جزئیات موضوع"
read_more_in_category: "میخواهید بیشتر بخوانید؟موضوعات دیگر را در {{catLink}} یا {{latestLink}} مرور کنید."
read_more: "میخواهید بیشتر بخوانید؟ {{catLink}} یا {{latestLink}}."
+ group_request: "برای مشاهده این مبحث نیازمند درخواست عضویت در گروه `{{name}}` میباشید"
+ group_join: "برای مشاهده این مبحث نیازمند پیوستن به گروه `{{name}}` میباشید"
+ unread_indicator: "هیچ کاربری آخرین فرستهٔ این مبحث را نخوانده است."
read_more_MF: "{ UNREAD, plural, =0 {} one {
یک پیام خوانده نشده } other {
# پیام خوانده نشده } } { NEW, plural, =0 {} one { {BOTH, select, true{و } false { } other{}}
1 موضوع جدید } other { {BOTH, select, true{و } false { } other{}}
# موضوع جدید } } وجود دارد, یا {CATEGORY, select, true {نمایش سایر موضوعات دستهبندی {catLink}} false {{latestLink}} other {}}"
browse_all_categories: جستوجوی همهی دستهبندیها
view_latest_topics: مشاهده آخرین موضوع
@@ -2020,6 +2052,7 @@ fa_IR:
success_email: "lما از طریق ایمیل دعوت نامه ارسال کردیم
{{emailOrUsername}} B>. هنگامی که به دعوت شما پاسخ داده شد ما به شما اطلاع خواهیم داد.برای پی گیری به تب دعوت ها در پنل کاربری مراجعه نمایید"
success_username: "ما آن کاربر را برای شرکت در این جستار دعوت کردیم."
error: "متاسفیم٬ ما آن شخص را نمی توانیم دعوت کنیم. شاید قبلا دعوت شده اند. (فراخوان ها تعداد محدودی دارند)"
+ success_existing_email: "یک کاربر با رایانامه {{emailOrUsername}} وجو دارد. ما آن کاربر را برای شرکت در این مبحث دعوت کردیم."
login_reply: "برای پاسخ دادن وارد شوید"
filters:
n_posts:
@@ -2107,6 +2140,7 @@ fa_IR:
deleted_by_author:
one: "(نوشته های ارسال شده توسط نویسنده،بصورت خودکار در %{count} ساعت حذف می شود مگر اینکه پرچم شود)"
other: "(نوشته های ارسال شده توسط نویسنده،بصورت خودکار در %{count} ساعت حذف می شود مگر اینکه پرچم شود)"
+ collapse: "جمع کردن"
expand_collapse: "باز کردن/بستن"
locked: "یکی از دستاندرکاران انجمن این پست را جهت جلوگیری از ویرایش قفل کرده است"
gap:
@@ -2127,7 +2161,9 @@ fa_IR:
create: "متأسفیم، در ایجاد نوشتهی شما خطایی روی داد. لطفاً دوباره تلاش کنید."
edit: "متأسفیم، در ویرایش نوشتهی شما خطایی روی داد. لطفاً دوباره تلاش کنید."
upload: "متأسفیم، در بارگذاری آن پرونده خطایی روی داد. لطفاً دوباره تلاش کنید."
+ file_too_large: "با عرض پوزش، حجم پرونده بسیار بالاست (بالاترین حجم قابل بارگذاری {{max_size_kb}} کیلوبایت است). چرا فایلهای حجیم را در سرویسهای ابری بارگذاری نمیکنید و پیوند آن را اینجا نمیچسبانید؟"
too_many_uploads: "متأسفیم، هر بار تنها میتوانید یک پرونده را بارگذاری کنید."
+ too_many_dragged_and_dropped_files: "با عرض پوزش، شما فقط میتوانید {{max}} پرونده به صورت یکجا بارگذاری کنید."
upload_not_authorized: "با عرض پوزش، فایلی که در حال بارگذاری آن هستید مجاز نیست. (پسوندهای قابل بارگذاری: {{authorized_extensions}})."
image_upload_not_allowed_for_new_user: "با عرض پوزش، کاربران جدید نمی توانند تصویر بارگذاری کنند."
attachment_upload_not_allowed_for_new_user: "با عرض پوزش، کاربران جدید نمی توانند فایل پیوست بارگذاری کنند."
@@ -2149,6 +2185,7 @@ fa_IR:
reply: "آغاز ساخت یک پاسخ به این نوشته"
like: "پسندیدن این نوشته"
has_liked: "شما این نوشته را پسندیدهاید"
+ read_indicator: "کاربرانی که این فرسته را خواندهاند."
undo_like: "برداشتن پسند"
edit: "ویرایش این نوشته"
edit_action: "ویرایش"
@@ -2174,6 +2211,7 @@ fa_IR:
lock_post_description: "ممانعت از ویرایش پست توسط فرستنده"
unlock_post: "بازکردن پست"
unlock_post_description: "اجازه به فرستنده پست برای ویرایش پست"
+ delete_topic_disallowed_modal: "شما دسترسی برای حذف این مبحث را ندارید. اگر واقعاً میخواهید حذف شود، یک علامت همراه دلیل برای خبردار کردن مدیر ثبت کنید."
delete_topic_disallowed: "شما مجاز به حذف این تاپیک نمیباشید"
delete_topic: "حذف موضوع"
add_post_notice: "اطلاعیه کارکنان را اضافه کنید"
@@ -2181,6 +2219,9 @@ fa_IR:
remove_timer: "حذف زمانسنج"
actions:
flag: "پرچم"
+ defer_flags:
+ one: "چشمپوشی از پرچم"
+ other: "چشمپوشی از پرچمها"
undo:
off_topic: "برداشتن پرچم"
spam: "برداشتن پرچم"
@@ -2214,6 +2255,7 @@ fa_IR:
revert: "بازگشت به این بازبینی"
edit_wiki: "ویرایش دانشنامه"
edit_post: "ویرایش نوشته"
+ comparing_previous_to_current_out_of_total: "{{previous}}{{icon}}{{current}}/{{total}}"
displays:
inline:
title: "نمایش خروجی رندر با اضافات و از بین بردن درون خطی"
@@ -2431,7 +2473,7 @@ fa_IR:
original_post: "نوشته اصلی"
views: "نمایشها"
views_lowercase:
- one: "بازدیدها"
+ one: "بازدید"
other: "بازدیدها"
replies: "پاسخها"
views_long:
@@ -3078,6 +3120,7 @@ fa_IR:
theme: "قالب"
component: "کامپوننت "
components: "کامپوننتها"
+ theme_name: "نام قالب"
component_name: "نام کامپوننت"
browse_themes: "مرور تم های انجمن"
customize_desc: "شخصیسازی:"
@@ -3154,6 +3197,9 @@ fa_IR:
theme_settings: "تنظیمات تم"
no_settings: "این تم تنظیماتی ندارد."
theme_translations: "ترجمه تم"
+ commits_behind:
+ one: "قالب %{count}تغییر دیگر نیاز دارد."
+ other: "قالب {{count}} تغییر دیگر نیاز دارد."
scss:
text: "سی اس اس"
title: "کد CSS مد نظرتان را وارد کنید، از تمام کدهای CSS و SCSS معتبر پشتیبانی میشود."
@@ -3216,11 +3262,15 @@ fa_IR:
email_style:
html: "قالب HTML"
css: "سی اس اس"
+ reset: "بازگردانی به پیشفرض"
+ save_error_with_reason: "تغییرات شما ذخیره نشدهاست. %{error}"
email:
title: "ایمیلها"
settings: "تنظیمات"
templates: "قالبها"
preview_digest: "پیشنمایش خلاصه"
+ advanced_test:
+ email: "پیام اصلی"
sending_test: "فرستادن ایمیل آزمایشی..."
error: "خطا - %{server_error}"
test_error: "در ارسال ایمیل آزمایشی مشکلی وجود داشته است. لطفاً مجدداً تنظیمات ایمیل خود را بررسی کنید، از این که هاستتان اتصالات ایمیل را مسدود نکرده اطمینان حاصل کرده و مجدداً تلاش کنید."
@@ -3296,6 +3346,7 @@ fa_IR:
do_nothing: "هیچ کاری نکن"
staff_actions:
all: "همه"
+ filter: "فیلتر:"
title: "عملیات همکارا"
clear_filters: "همه چیز را نشان بده "
staff_user: "کاربر"
@@ -3348,7 +3399,11 @@ fa_IR:
change_readonly_mode: "تغییر حالت فقط خواندنی"
backup_download: "دانلود نسخه پشتیبان"
backup_destroy: "حذف نسخه پشتیبان"
+ disabled_second_factor: "غیرفعاسازی احراز هویت دو مرحله ای"
post_approved: "نوشته تایید شده"
+ change_name: "تغییر دادن نام"
+ approve_user: "کاربر پذیرفتهشده"
+ change_theme_setting: "تغییر دادن تنظیمات قالب"
screened_emails:
title: "ایمیل ها نمایش داده شده"
description: "وقتی کسی سعی می کند یک حساب جدید ایجاد کند، آدرسهای ایمیل زیر بررسی و ثبت نام مسدود خواهد شد، و یا برخی از اقدام های دیگر انجام می شود."
@@ -3380,19 +3435,34 @@ fa_IR:
text: "جمع کردن"
title: "ساخت مسدود سازی زیر شبکه جدید اگر آنها آخرین 'min_ban_entries_for_roll_up' ورودی ها بودند."
search_logs:
+ searches: "جستجوها"
types:
header: "سربرگ"
+ full_page: "صفحهٔ کامل"
logster:
title: "گزارش خطا"
watched_words:
+ search: "جستوجو"
clear_filter: "واضح"
+ show_words: "نمایش واژهها"
download: دانلود
clear_all: پاکسازی همه
+ word_count:
+ one: "%{count} واژه"
+ other: "%{count} واژه"
actions:
block: "بستن"
+ censor: "سانسور"
+ require_approval: "نیازمند تصویب"
flag: "پرچم"
+ action_descriptions:
+ block: "از فرستادن فرستههایی که دارای این واژهها هستند جلوگیری کنید. کاربر هنگام ارسال فرسته با پیام خطا مواجه میشود."
+ require_approval: "فرستههای دارای این واژهها پیش از دیده شدن نیاز به تائید کارکنان دارند."
form:
+ label: "واژه تازه:"
add: "افزودن"
+ success: "موفقیت"
+ upload_successful: "بارگذاری با موفقیت انجام شد. واژهها اضافه شدند."
test:
no_matches: "چیزی یافت نشد."
impersonate:
@@ -3406,7 +3476,9 @@ fa_IR:
last_emailed: "آخرین ایمیل فرستاده شده"
not_found: "متاسفیم٬ این کاربر در سیستم ما وجود ندارد."
id_not_found: "متاسفیم٬ این شناسه کاربری در سیستم ما وجود ندارد."
+ active: "فعال شد"
show_emails: "ایمیل ها را نشان بده"
+ hide_emails: "مخفی کردن رایانامهها"
nav:
new: "جدید"
active: "فعال"
@@ -3439,10 +3511,15 @@ fa_IR:
suspend_duration: "کاربر چه مدت در تعلیق خواهد بود؟"
suspend_reason_label: "شما چرا معلق شدهاید؟ این متن بر روی صفحهی نمایهی کاربر برای همه قابل مشاهده خواهد بود، و در هنگام ورود به سیستم نیز به خود کاربر نشان داده خواهد شد. لطفاً خلاصه بنویسید."
suspend_reason: "دلیل"
+ suspend_reason_placeholder: "دلیل تعلیق شدن"
+ suspend_message_placeholder: "به صورت اختیاری اطلاعات بیشتری درمورد تعلیق ارائه دهید تا به رایانامه کاربر ارسال شود."
suspended_by: "تعلیق شده توسط"
silence_reason: "دلیل"
suspended_until: "(تا %{until})"
+ cant_suspend: "این کاربر نمیتواند معلق شود."
delete_all_posts: "پاک کردن همهی نوشتهها"
+ delete_posts_progress: "درحال حذف فرستهها..."
+ penalty_post_edit: "ویرایش فرسته"
delete_all_posts_confirm_MF: "شما در حال حذف {POSTS, plural, one {1 نوشته} other {# نوشته}} and {TOPICS, plural, one {1 نوشته} other {# موضوع}} هستید. ادامه میدهید؟"
moderator: "مدیر؟ "
admin: "مدیر ارشد؟"
@@ -3470,6 +3547,7 @@ fa_IR:
private_topics_count: موضوعات خصوصی
posts_read_count: نوشتههای خوانده شده
post_count: نوشتههای ایجاد شده
+ second_factor_enabled: احراز هویت دو مرحلهای فعال شد
topics_entered: " موضوعات بازدید شده"
flags_given_count: پرچمهای داده شده
flags_received_count: پرچمهای دریافت شده
@@ -3498,6 +3576,7 @@ fa_IR:
other: "نمی توان همه نوشته ها را خذف کرد. چون تعداد کاربران از %{count} تعداد نوشته ها بیشتر است.(delete_all_posts_max)"
delete_and_block: "آدرس IP و ایمیل را حذف و مسدودکن."
delete_dont_block: "فقط حذف"
+ deleting_user: "درحال حذف کاربر..."
deleted: "کاربر حذف شد."
delete_failed: "خطایی در پاک کردن آن کاربر روی داد. پیش از تلاش برای پاک کردن کاربر، مطمئن شوید همهی نوشتههای او پاک شوند."
send_activation_email: "ارسال ایمیل فعالسازی"
@@ -3615,8 +3694,10 @@ fa_IR:
add_url: "اضافه کردن URL"
add_host: "اضافه کردن هاست"
uploaded_image_list:
+ label: "ویرایش فهرست"
upload:
label: "بارگذاری"
+ title: "بارگذاری تصویر(ها)"
categories:
all_results: "همه"
required: "مورد نیاز"
@@ -3766,6 +3847,7 @@ fa_IR:
modal:
categories: "دستهبندیها"
topics: "موضوعات"
+ replace: "جایگزینی"
wizard_js:
wizard:
done: "انجام شد"
diff --git a/config/locales/client.fi.yml b/config/locales/client.fi.yml
index bb8bd1bc0d..3483da96f4 100644
--- a/config/locales/client.fi.yml
+++ b/config/locales/client.fi.yml
@@ -311,6 +311,8 @@ fi:
review:
order_by: "Järjestä"
in_reply_to: "vastauksena"
+ explain:
+ total: "Yhteensä"
claim_help:
optional: "Voit vaatia tämän itsellesi, jolloin muut eivät voi käsitellä sitä."
required: "Sinun täytyy osoittaa asia itsellesi ennen kuin voit käsitellä sen."
@@ -1400,7 +1402,6 @@ fi:
title_missing: "Otsikko on pakollinen"
title_too_short: "Otsikon täytyy olla vähintään {{min}} merkkiä pitkä"
title_too_long: "Otsikko voi olla korkeintaan {{max}} merkkiä pitkä"
- post_missing: "Viesti ei voi olla tyhjä"
post_length: "Viestissä täytyy olla vähintään {{min}} merkkiä"
try_like: "Oletko kokeillut {{heart}}-nappia?"
category_missing: "Sinun täytyy valita viestille alue"
@@ -1421,7 +1422,6 @@ fi:
title_placeholder: "Kuvaile lyhyesti mistä tässä ketjussa on kyse?"
title_or_link_placeholder: "Kirjoita otsikko tai liitä linkki tähän"
edit_reason_placeholder: "miksi muokkaat viestiä?"
- show_edit_reason: "(lisää syy muokkaukselle)"
topic_featured_link_placeholder: "Tähän linkki, joka näytetään otsikon yhteydessä."
remove_featured_link: "Poista ketjulinkki"
reply_placeholder: "Kirjoita tähän. Käytä Markdownia, BBCodea tai HTML:ää muotoiluun. Raahaa tai liitä kuvia."
@@ -1508,7 +1508,6 @@ fi:
title: "ilmoitukset @nimeen viittauksista, vastauksista omiin viesteihin ja ketjuihin, viesteistä ym."
none: "Ilmoitusten lataaminen ei onnistunut."
empty: "Ilmoituksia ei löydetty."
- more: "vanhat ilmoitukset"
post_approved: "Viestisi hyväksyttiin"
reviewable_items: "käsittelyä odottavaa asiaa"
mentioned: "{{username}} {{description}}"
diff --git a/config/locales/client.fr.yml b/config/locales/client.fr.yml
index 89768bc4d1..183c9a531c 100644
--- a/config/locales/client.fr.yml
+++ b/config/locales/client.fr.yml
@@ -314,6 +314,8 @@ fr:
review:
order_by: "Trier par"
in_reply_to: "en réponse à"
+ explain:
+ total: "Total"
claim_help:
optional: "Vous pouvez réserver cet élément pour empêcher d'autres de le vérifier."
required: "Vous devez réserver des éléments avant des les vérifier."
@@ -1191,9 +1193,6 @@ fr:
enabled: "Le site est en mode lecture seule. Vous pouvez continer à naviguer, mais les réponses, J'aime et autre interactions sont désactivées pour l'instant."
login_disabled: "La connexion est désactivée quand le site est en lecture seule."
logout_disabled: "La déconnexion est désactivée quand le site est en lecture seule."
- too_few_topics_and_posts_notice: "Commençons la discussion! Il y a %{currentTopics} / %{requiredTopics} sujets et %{currentPosts} / %{requiredPosts} messages - les visiteurs ont besoin de plus à consulter et répondre. Seul le personnel peut voir ce message."
- too_few_topics_notice: "Commençons la discussion! Il y a %{currentTopics} / %{requiredTopics} sujets - les visiteurs ont besoin de plus à lire pour répondre. Seul le personnel peut voir ce message."
- too_few_posts_notice: "Commençons la discussion! Il y a %{currentPosts} / %{requiredPosts} messages - les visiteurs ont besoin de plus à lire pour répondre. Seul le personnel peut voir ce message."
logs_error_rate_notice:
reached_hour_MF: "{relativeAge} – {rate, plural, one {# erreur/heure} other {# erreurs/heure}} arrive à la limite paramétrée de {limit, plural, one {# erreur/heure} other {# erreurs/heure}}."
reached_minute_MF: "{relativeAge} – {rate, plural, one {# erreur/minute} other {# erreurs/minute}} arrive à la limite paramétrée de {limit, plural, one {# erreur/minute} other {# erreurs/minute}}."
@@ -1452,7 +1451,6 @@ fr:
title_missing: "Le titre est obligatoire."
title_too_short: "Le titre doit avoir au moins {{min}} caractères"
title_too_long: "Le titre ne doit pas dépasser les {{max}} caractères"
- post_missing: "Le message ne peut être vide"
post_length: "Le message doit avoir au moins {{min}} caractères"
try_like: "Avez-vous essayé le bouton {{heart}} ?"
category_missing: "Vous devez choisir une catégorie"
@@ -1473,7 +1471,6 @@ fr:
title_placeholder: "Quel est le sujet en une courte phrase ?"
title_or_link_placeholder: "Entrez un titre, ou copiez un lien ici"
edit_reason_placeholder: "pourquoi modifiez-vous le message ?"
- show_edit_reason: "(ajouter la raison de la modification)"
topic_featured_link_placeholder: "Entrez un lien affiché avec le titre."
remove_featured_link: "Retirer le lien du sujet"
reply_placeholder: "Écrivez ici. Utilisez Markdown, BBCode, ou HTML pour mettre en forme. Glissez ou collez des images."
@@ -1560,7 +1557,6 @@ fr:
title: "notifications des mentions de votre @pseudo, des réponses à vos messages, à vos sujets, etc."
none: "Impossible de charger les notifications pour le moment."
empty: "Aucune notification trouvée."
- more: "voir les anciennes notifications"
post_approved: "Votre message a été approuvé"
reviewable_items: "éléments en attente de vérification"
mentioned: "{{username}} {{description}}"
@@ -1718,6 +1714,7 @@ fr:
go_back: "retour"
not_logged_in_user: "page utilisateur avec un résumé de l'activité et les préférences "
current_user: "aller à votre page utilisateur"
+ view_all: "Tout voir"
topics:
new_messages_marker: "dernière visite"
bulk:
diff --git a/config/locales/client.gl.yml b/config/locales/client.gl.yml
index e69b13f80d..eb047a48b0 100644
--- a/config/locales/client.gl.yml
+++ b/config/locales/client.gl.yml
@@ -245,6 +245,8 @@ gl:
title:
placeholder: "escribe o título do tema aquí"
review:
+ explain:
+ total: "Total"
delete: "Eliminar"
settings:
save_changes: "Gardar os cambios"
@@ -858,7 +860,6 @@ gl:
title_missing: "O título é obrigatorio"
title_too_short: "O título debe ter alomenos {{min}} caracteres"
title_too_long: "O título non debe ter máis de {{max}} caracteres"
- post_missing: "A publicación non pode estar baleira"
post_length: "A publicación debe ter alomenos {{min}} caracteres"
category_missing: "Debes seleccionar unha categoría"
save_edit: "Gardar a edición"
@@ -872,7 +873,6 @@ gl:
users_placeholder: "Engadir un usuario"
title_placeholder: "Sobre que trata a discusión nunha soa frase?"
edit_reason_placeholder: "por que estás editando?"
- show_edit_reason: "(engadir unha razón para editar)"
reply_placeholder: "Escribe aquí. Usa Markdown, BBCode ou HTML para formatar. Arrastra ou pega imaxes."
view_new_post: "Ver a nova publicación."
saving: "Gardando"
@@ -912,7 +912,6 @@ gl:
notifications:
title: "notificacións das mencións ao teu @nome, respostas ás túas publicacións e temas, mensaxes, etc"
none: "Non é posíbel cargar as notificacións neste intre"
- more: "ver notificacións anteriores"
popup:
mentioned: '{{username}} mencionoute en "{{topic}}" - {{site_title}}'
group_mentioned: '{{username}} mencionoute en "{{topic}}" - {{site_title}}'
diff --git a/config/locales/client.he.yml b/config/locales/client.he.yml
index 61ef6b254e..3cf86aa31b 100644
--- a/config/locales/client.he.yml
+++ b/config/locales/client.he.yml
@@ -129,6 +129,16 @@ he:
two: "שלשום"
many: "לפני %{count} ימים"
other: "לפני %{count} ימים"
+ x_months:
+ one: "לפני חודש"
+ two: "לפני חודשיים"
+ many: "לפני %{count} חודשים"
+ other: "לפני %{count} חודשים"
+ x_years:
+ one: "לפני שנה"
+ two: "לפני שנתיים"
+ many: "לפני %{count} שנים"
+ other: "לפני %{count} שנים"
later:
x_days:
one: "יום לאחר מכן"
@@ -189,7 +199,7 @@ he:
topic_admin_menu: "פעולות ניהול לנושא"
wizard_required: "ברוך בואך ל־Discourse החדש שלך! נתחיל עם אשף ההתקנה ✨"
emails_are_disabled: "כל הדוא״ל היוצא נוטרל באופן גורף על ידי מנהל אתר. שום הודעת דוא״ל, מכל סוג שהוא, לא תשלח."
- bootstrap_mode_enabled: "כדי להקל על הקמת האתר החדש שלכם, אתם במצב איתחול-ראשוני. כל המשתמשים החדשים יקבלו רמת אמון 1 ויקבלו תמצות יומי במייל. אפשרות זו תכובה אוטומטית כאשר יהיו יותר מ %{min_users} משתמשים."
+ bootstrap_mode_enabled: "כדי להקל על הקמת האתר החדש שלך, כרגע המערכת במצב אתחול ראשוני. לכל המשתמשים החדשים תוענק דרגת האמון 1 ויישלח אליהם תמצות יומי בדוא״ל. אפשרות זו תכבה אוטומטית לאחר הצטרפות של למעלה מ־%{min_users} משתמשים."
bootstrap_mode_disabled: "מצב Bootstrap יבוטל תוך 24 שעות."
themes:
default_description: "בררת מחדל"
@@ -364,6 +374,26 @@ he:
review:
order_by: "סידור לפי"
in_reply_to: "בתגובה ל"
+ explain:
+ why: "נא להסביר למה הפריט הזה הגיע לתור"
+ title: "ניקוד שניתן לסקירה"
+ formula: "נוסחה"
+ subtotal: "סכום ביניים"
+ total: "סה״כ"
+ min_score_visibility: "ניקוד מזערי כדי שיופיע"
+ score_to_hide: "ניקוד להסתרת הפוסט"
+ take_action_bonus:
+ name: "ננקטה פעולה"
+ title: "כאשר חבר סגל בוחר לנקוט בפעולה הדגל מקבל בונוס."
+ user_accuracy_bonus:
+ name: "דיוק משתמש"
+ title: "משתמשים שסימון הדגל שלהם קיבל הסכמה בעבר מקבלים בונוס."
+ trust_level_bonus:
+ name: "דרגת אמון"
+ title: "לפריטים לסקירה שנוצרו על ידי משתמשים בדרגות אמון גבוהות יותר יש ניקוד גבוה יותר."
+ type_bonus:
+ name: "בונוס סוג"
+ title: "לסוגים מסוימים של פריטים לסקירה ניתן להקצות בונוס על ידי הסגל כדי שהעדיפות שלהם תעלה."
claim_help:
optional: "באפשרותך לדרוש את הפריט כדי למנוע מאחרים לסקור אותו."
required: "עליך לדרוש פריטים לפני שיתאפשר לך לסקור אותם."
@@ -753,7 +783,7 @@ he:
other_accounts: "חשבונות נוספים עם כתובת IP זו:"
delete_other_accounts: "מחיקה %{count}"
username: "שם משתמש"
- trust_level: "רמת-אמון"
+ trust_level: "דרגת-אמון"
read_time: "זמן צפייה"
topics_entered: "כניסה לנושאים"
post_count: "# פוסטים"
@@ -798,7 +828,7 @@ he:
bookmarks: "סימניות"
bio: "אודותיי"
invited_by: "הוזמנו על ידי"
- trust_level: "רמת אמון"
+ trust_level: "דרגת אמון"
notifications: "התראות"
statistics: "סטטיסטיקות"
desktop_notifications:
@@ -1286,9 +1316,9 @@ he:
enabled: "אתר זה נמצא במצב קריאה בלבד. אנא המשיכו לשוטט, אך תגובות, לייקים, ופעולות נוספות כרגע אינם מאופשרים."
login_disabled: "הכניסה מנוטרלת בזמן שהאתר במצב קריאה בלבד."
logout_disabled: "היציאה מנוטרלת בזמן שהאתר במצב של קריאה בלבד."
- too_few_topics_and_posts_notice: "בואו נתחיל את הדיון! יש נושאים %{currentTopics} / %{requiredTopics} ו %{currentPosts} / %{requiredPosts} פרסומים - המבקרים צריכים לקרוא ולהשיב יותר. רק הצוות יכול לראות את ההודעה הזו."
- too_few_topics_notice: "הבה נתחיל להתדיין! כרגע ישנם %{currentTopics} / %{requiredTopics} נושאים – המבקרים זקוקים ליותר תוכן כדי להגיב. רק הסגל יכול לצפות בהודעה הזאת."
- too_few_posts_notice: "בואו נתחיל את הדיון! יש פרסומים %{currentPosts} / %{requiredPosts} - מבקרים צריכים יותר לקרוא ולענות. רק הצוות יכול לראות את ההודעה הזו."
+ too_few_topics_and_posts_notice: "הבה נתחיל להתדיין! כרגע ישנם %{currentTopics} נושאים ו־%{currentPosts} פוסטים. המבקרים זקוקים ליותר תוכן כדי לקרוא ולהגיב להם - אנו ממליצים על %{requiredTopics} נושאים ו־%{requiredPosts} פוסטים לפחות. רק הסגל יכול לראות את ההודעה הזאת."
+ too_few_topics_notice: "הבה נתחיל להתדיין! כרגע ישנם %{currentTopics} נושאים – המבקרים זקוקים ליותר תוכן כדי להגיב - אנו ממליצים על %{requiredTopics} נושאים לפחות. רק הסגל יכול לראות את ההודעה הזאת."
+ too_few_posts_notice: "הבה נתחיל להתדיין! כרגע ישנם %{currentPosts} פוסטים. המבקרים זקוקים ליותר תוכן כדי להגיב - אנו ממליצים על %{requiredPosts} פוסטים לפחות. רק הסגל יכול לראות את ההודעה הזאת."
logs_error_rate_notice:
reached_hour_MF: "{relativeAge} – {rate, plural, one {שגיאה אחת בשעה הגיעה} other {# שגיאות בשעה הגיעו}} למגבלת האתר שהיא {limit, plural, one {שגיאה אחת בשעה} other {# שגיאות בשעה}}."
reached_minute_MF: "{relativeAge} – {rate, plural, one {שגיאה אחת בדקה הגיעה} other {# שגיאות בדקה הגיעו}} למגבלת האתר שהיא {limit, plural, one {שגיאה אחת בדקה} other {# שגיאות בדקה}}."
@@ -1348,7 +1378,7 @@ he:
last_seen: "נצפה"
created: "נוצר"
created_lowercase: "נוצר/ו"
- trust_level: "רמת אמון"
+ trust_level: "דרגת אמון"
search_hint: "שם משתמש/ת, דוא\"ל או כתובת IP"
create_account:
disclaimer: "עצם הרשמתך מביעה את הסכמתך למדיניות הפרטיות ולתנאי השירות."
@@ -1557,11 +1587,12 @@ he:
title_missing: "יש להזין כותרת."
title_too_short: "על הכותרת להיות באורך {{min}} תווים לפחות."
title_too_long: "על הכותרת להיות באורך {{max}} לכל היותר."
- post_missing: "הפוסט אינו יכול להיות ריק"
+ post_missing: "הפוסט לא יכול להיות ריק"
post_length: "על הפוסט להיות באורך {{min}} תווים לפחות"
try_like: "האם ניסית את כפתור ה-{{heart}}?"
category_missing: "עליך לבחור קטגוריה."
tags_missing: "עליך לפחות לפחות {{count}} תגיות"
+ topic_template_not_modified: "נא להוסיף פרטים ותיאורים מדויקים לנושא שלך על ידי עריכת תבנית הנושא."
save_edit: "שמירת עריכה"
overwrite_edit: "שכתוב על עריכה"
reply_original: "תגובה לנושא המקורי"
@@ -1578,7 +1609,6 @@ he:
title_placeholder: " במשפט אחד, במה עוסק הדיון הזה?"
title_or_link_placeholder: "הקלידו כותרת, או הדביקו קישור כאן"
edit_reason_placeholder: "מדוע ערכת?"
- show_edit_reason: "(הוספת סיבת עריכה)"
topic_featured_link_placeholder: "הזינו קישור שיוצג עם הכותרת."
remove_featured_link: "הסר קישור מנושא"
reply_placeholder: "הקלידו כאן. השתמשו ב Markdown, BBCode או HTML כדי לערוך. גררו או הדביקו תמונות."
@@ -1669,7 +1699,6 @@ he:
title: "התראות אודות אזכור @שם, תגובות לפוסטים ולנושאים שלכם, הודעות, וכד'"
none: "לא ניתן לטעון כעת התראות."
empty: "לא נמצאו התראות."
- more: "הצגת התראות ישנות יותר"
post_approved: "הפוסט שלך אושר"
reviewable_items: "פריטים שדורשים סקירה"
mentioned: "{{username}} {{description}}"
@@ -1835,6 +1864,7 @@ he:
go_back: "חזור אחורה"
not_logged_in_user: "עמוד משתמש עם סיכום פעילות נוכחית והעדפות"
current_user: "לך לעמוד המשתמש שלך"
+ view_all: "להציג הכול"
topics:
new_messages_marker: "ביקור אחרון"
bulk:
@@ -2937,7 +2967,7 @@ he:
community:
name: קהילה
trust_level:
- name: רמת אמון
+ name: דרגת אמון
other:
name: אחר
posting:
@@ -3192,8 +3222,8 @@ he:
publish_read_state: "בהודעות קבוצתית לפרסם את מצב הקריאה של הקבוצה"
membership:
automatic: אוטומטי
- trust_level: רמת אמון
- trust_levels_title: "רמת אמון הניתנת אוטומטית למשתמשים כשהם נוספים:"
+ trust_level: דרגת אמון
+ trust_levels_title: "דרגת אמון המוענקת אוטומטית למשתמשים כאשר הם נוספים:"
trust_levels_none: "ללא"
automatic_membership_email_domains: "משתמשים אשר נרשמים עם מארח דוא\"ל שתואם בדיוק לאחד מהרשימה, יוספו באופן אוטומטי לקבוצה זו:"
automatic_membership_retroactive: "החלת כלל מארח דוא\"ל זהה כדי להוסיף משתמשים רשומים"
@@ -3751,7 +3781,7 @@ he:
deleted: "אין ערך חדש. הרשומה נמחקה."
actions:
delete_user: "מחק משתמש"
- change_trust_level: "שנוי רמת אמון"
+ change_trust_level: "שנוי דרגת אמון"
change_username: "שינוי שם משתמש/ת"
change_site_setting: "שנוי הגדרות אתר"
change_theme: "החלפת ערכת עיצוב"
@@ -3786,8 +3816,8 @@ he:
deleted_unused_tags: "נמחקו תגיות שאינן בשימוש"
renamed_tag: "תגית שונתה"
revoke_email: "שללו מייל"
- lock_trust_level: "נעילת רמת אמון"
- unlock_trust_level: "שחרור רמת אמון מנעילה"
+ lock_trust_level: "נעילת דרגת אמון"
+ unlock_trust_level: "שחרור דרגת אמון מנעילה"
activate_user: "הפעלת משתמש/ת"
deactivate_user: "ניטרול משתמש/ת"
change_readonly_mode: "שינוי מצב קריאה בלבד"
@@ -3933,11 +3963,11 @@ he:
active: "הפעל משתמשים"
new: "משתמשים חדשים"
pending: "משתמשים שממתינים לבדיקה"
- newuser: "משתמשים ברמת אמון 0 (משתמשים חדשים)"
- basic: "משתמשים ברמת אמון 1 (משתמשים בסיסיים)"
- member: "משתמשים ברמת אמון 2 (חברים)"
- regular: "משתמשים ברמת אמון 3 (רגילים)"
- leader: "משתמשים ברמת אמון 4 (מובילים)"
+ newuser: "משתמשים בדרגת אמון 0 (משתמשים חדשים)"
+ basic: "משתמשים בדרגת אמון 1 (משתמשים בסיסיים)"
+ member: "משתמשים בדרגת אמון 2 (חברים)"
+ regular: "משתמשים בדרגת אמון 3 (רגילים)"
+ leader: "משתמשים בדרגת אמון 4 (מובילים)"
staff: "סגל"
admins: "מנהלים ראשיים"
moderators: "מפקחים"
@@ -3981,7 +4011,7 @@ he:
penalty_count: "ספירת עונשין"
clear_penalty_history:
title: "מחיקת היסטוריית עונשין"
- description: "משתמשים עם עונשין לא יכולים להגיע לרמת אמון 3"
+ description: "משתמשים עם עונשין לא יכולים להגיע לדרגת אמון 3"
delete_all_posts_confirm_MF: "אתם עומדים להסיר {POSTS, plural, one {פוסט אחד} other {# פסוטים}} ו{TOPICS, plural, one {נושא אחד} other {# נושאים}}. האם אתם בטוחים?"
silence: "השתקה"
unsilence: "ביטול השתקה"
@@ -4078,16 +4108,16 @@ he:
none: "לא התקבלו החזרים לאחרונה מהמייל הזה."
some: "כמה החזרים התרחשו לאחרונה מהמייל הזה."
threshold_reached: "התקבלו יותר מידי החזרים מהמייל הזה."
- trust_level_change_failed: "הייתה בעיה בשינוי רמת האמון של המשתמש."
+ trust_level_change_failed: "הייתה בעיה בשינוי דרגת האמון של המשתמש."
suspend_modal_title: "השעה משתמש"
- trust_level_2_users: "משתמשי רמת אמון 2"
- trust_level_3_requirements: "דרישות רמת אמון 3"
+ trust_level_2_users: "משתמשים בדרגת אמון 2"
+ trust_level_3_requirements: "דרישות דרגת אמון 3"
trust_level_locked_tip: "רמות האמון נעולה, המערכת לא תקדם או או תנמיך משתמשים"
- trust_level_unlocked_tip: "רמת האמון אינן נעולות, המערכת תקדם ותנמיך דרגות של משתמשים"
- lock_trust_level: "נעילת רמת אמון"
- unlock_trust_level: "שחרור רמת אמון מנעילה"
+ trust_level_unlocked_tip: "דרגת האמון אינה נעולה, המערכת תקדם ותנמיך דרגות של משתמשים"
+ lock_trust_level: "נעילת דרגת אמון"
+ unlock_trust_level: "שחרור דרגת אמון מנעילה"
tl3_requirements:
- title: "דרישות עבור רמת אמון 3"
+ title: "דרישות עבור דרגת אמון 3"
table_title:
one: "מאז אתמול:"
two: "ביומיים האחרונים:"
@@ -4110,13 +4140,13 @@ he:
likes_received_users: "לייקים שהתקבלו: לפי משתמשים"
suspended: "השעיה (בחצי השנה האחרונה)"
silenced: "השתקה (בחצי השנה האחרונה)"
- qualifies: "דרישות עבור רמת אמון 3"
- does_not_qualify: "אין עומד בדרישות עבור רמת אמון 3."
+ qualifies: "דרישות עבור דרגת אמון 3"
+ does_not_qualify: "אין עמידה בדרישות עבור דרגת אמון 3."
will_be_promoted: "יקודם בקרוב."
will_be_demoted: "הורדה קרובה בדרגה."
on_grace_period: "כרגע בתקופת חחסד של העלאה בדרכה, לא תתבצע הורדה בטבלה."
- locked_will_not_be_promoted: "רמת האמון נעולה. לא תתבצע העלאה בדרגה."
- locked_will_not_be_demoted: "רמת האמון נעולה. לא תתבצע הורדה בדרגה."
+ locked_will_not_be_promoted: "דרגת האמון נעולה. לא תתבצע העלאה בדרגה."
+ locked_will_not_be_demoted: "דרגת האמון נעולה. לא תתבצע הורדה בדרגה."
sso:
title: "התחברות חד פעמית"
external_id: "ID חיצוני"
@@ -4198,7 +4228,7 @@ he:
posting: "פרסומים"
email: "דואר אלקטרוני"
files: "קבצים"
- trust: "רמת אמון"
+ trust: "דרגת אמון"
security: "אבטחה"
onebox: "תיבת תחימה"
seo: "SEO"
@@ -4267,7 +4297,7 @@ he:
none: "עדכון יומי"
post_action: "כשמשתמש משנה פוסט"
post_revision: "כשמשתש משנה או יוצר פוסט"
- trust_level_change: "כשמשתמש משנה רמת אמון"
+ trust_level_change: "כשמשתמש מחליף דרגת אמון"
user_change: "כשמשתמש נערך או נוצר"
post_processed: "לאחר שפוסט מעובד"
preview:
diff --git a/config/locales/client.hu.yml b/config/locales/client.hu.yml
index 87e16c641e..1e5957588c 100644
--- a/config/locales/client.hu.yml
+++ b/config/locales/client.hu.yml
@@ -312,6 +312,14 @@ hu:
review:
order_by: "Rendezés:"
in_reply_to: "válasz erre:"
+ explain:
+ total: "Összesen"
+ user_accuracy_bonus:
+ name: "felhasználói pontosság"
+ trust_level_bonus:
+ name: "bizalmi szint"
+ type_bonus:
+ name: "típusbónusz"
claim_help:
optional: "Zárolhatja ezt az elemet, hogy mások ne hagyhassák jóvá."
required: "Zárolnia kell az elemeket, hogy jóvá tudja őket hagyni."
@@ -1300,10 +1308,10 @@ hu:
from: From
to: To
emoji_picker:
- filter_placeholder: Emoyi keresése
+ filter_placeholder: Emodzsi keresése
objects: Tárgyak
flags: Jelölések
- custom: Egyéni emojik
+ custom: Egyéni emodzsik
recent: Nemrég használt
default_tone: Nincs bőrszín
light_tone: Világos bőrszín
@@ -1319,7 +1327,7 @@ hu:
confirm_publish: "Biztosan közzé akarod tenni ezt a vázlatot?"
publishing: "Téma közzététele..."
composer:
- emoji: "Emoji :)"
+ emoji: "Emodzsi :)"
more_emoji: "több..."
options: "Beállítások"
whisper: "suttogás"
@@ -1341,7 +1349,6 @@ hu:
title_missing: "A címet kötelező megadni"
title_too_short: "A címnek legalább {{min}} karakter hosszúnak kell lennie"
title_too_long: "A cím nem lehet hosszabb, mint {{max}} katakter."
- post_missing: "A bejegyzés nem lehet üres"
post_length: "A bejegyzésnek legalább {{min}} karakter hosszúnak kell lennie"
category_missing: "Ki kéne választanod egy kategóriát"
tags_missing: "Kikell választanod legalább {{count}} címkét"
@@ -1361,7 +1368,6 @@ hu:
title_placeholder: "Mi lesz a témája ennek a beszélgetésnek, röviden?"
title_or_link_placeholder: "Adj címet vagy másolj ide egy linket"
edit_reason_placeholder: "miért szerkesztesz?"
- show_edit_reason: "(szerkesztés okának hozzáadása)"
remove_featured_link: "Hivatkozás eltávolítása a témából."
reply_placeholder: "Ide írhatsz. A feltöltéshez húzz- vagy illessz be képet! A formázáshoz használhatsz Markdown-, BBCode- vagy HTML kódokat is."
reply_placeholder_no_images: "Ide írj. Használhatsz Markdown-t, BBCode-ot, vagy HTML-t a formázáshoz."
@@ -1433,7 +1439,6 @@ hu:
title: "értesítések @felhasználónév hivatkozásokról, a hozzászólásaidra adott válaszokról, üzenetekről stb."
none: "Az értesítések betöltése sikertelen."
empty: "Nincs értesítés."
- more: "régebbi értesítések megtekintése"
reviewable_items: "felülvizsgálatot igénylő elemek"
mentioned: "{{username}}{{description}}"
group_mentioned: "{{username}} {{description}}"
@@ -1539,6 +1544,7 @@ hu:
go_back: "visszalépés"
not_logged_in_user: "felhasználói oldal összesítéssel a jelenleg aktivitásokról és beállításokról"
current_user: "a felhasználói oldalad meglátogatása"
+ view_all: "mindent megtekint"
topics:
new_messages_marker: "utoljára megtekintett"
bulk:
@@ -3153,10 +3159,12 @@ hu:
what_are_badges_title: "Mik azok a jelvények?"
badge_query_examples_title: "Jelvény lekérdezési példák"
emoji:
- title: "Emoji"
- add: "Új emoji hozzáadása"
+ title: "Emodzsi"
+ help: "Adjon hozzá egy új emodzsit, amely mindenki számára elérhető lesz. (PROTIP: fogjon és vigyen több fájlt egyszerre)"
+ add: "Új emodzsi hozzáadása"
name: "Név"
image: "Kép"
+ delete_confirm: "Biztos, hogy törli a(z) :%{name}: emodzsit?"
embedding:
get_started: "Ha szeretnéd a Discourse-t egy másik weboldalba ágyazni, kezdd a hoszt megadásával."
title: "Beágyazás"
diff --git a/config/locales/client.hy.yml b/config/locales/client.hy.yml
index c1323177c9..044d1452d2 100644
--- a/config/locales/client.hy.yml
+++ b/config/locales/client.hy.yml
@@ -26,9 +26,9 @@ hy:
thousands: "{{number}}հզ"
millions: "{{number}}մլն"
dates:
- time: "h:mm a"
+ time: "h:mm"
timeline_date: "MMM YYYY"
- long_no_year: "MMM D h:mm a"
+ long_no_year: "MMM D h:mm"
long_no_year_no_time: "MMM D"
full_no_year_no_time: "MMMM Do"
long_with_year: "MMM D, YYYY h:mm a"
@@ -95,6 +95,12 @@ hy:
x_days:
one: "%{count} օր առաջ"
other: "%{count} օր առաջ"
+ x_months:
+ one: "%{count} ամիս առաջ"
+ other: "%{count} ամիս առաջ"
+ x_years:
+ one: "%{count} տարի առաջ"
+ other: "%{count} տարի առաջ"
later:
x_days:
one: "%{count} օր հետո"
@@ -214,6 +220,8 @@ hy:
every_hour: "ժամը մեկ"
daily: "ամեն օր"
weekly: "շաբաթական"
+ every_month: "ամիսը մեկ"
+ every_six_months: "վեց ամիսը մեկ"
max_of_count: "առավելագույնը {{count}}"
alternation: "կամ"
character_count:
@@ -221,6 +229,7 @@ hy:
other: "{{count}} սիմվոլ"
related_messages:
title: " Առնչվող Հաղորդագրություններ"
+ see_all: 'Տեսնել %{username}-ի @բոլոր նամակները'
suggested_topics:
title: "Առաջարկվող Թեմաներ"
pm_title: "Առաջարկվող Հաղորդագրություններ"
@@ -294,6 +303,8 @@ hy:
banner:
close: "Փակել այս բանները"
edit: "Խմբագրել այս բանները >>"
+ pwa:
+ install_banner: "Դուք ցանկանու՞մ եք տեղադրել %{title}-ը այս սարքի վրա?"
choose_topic:
none_found: "Թեմաներ չեն գտնվել"
title:
@@ -305,6 +316,11 @@ hy:
search: "Փնտրել Հաղորդագրություն ըստ վերնագրի՝"
placeholder: "գրեք հաղորդագրության վերնագիրն այստեղ"
review:
+ order_by: "Դասավորել ըստ"
+ in_reply_to: "ի պատասխան"
+ explain:
+ formula: "Բանաձև"
+ total: "Ամբողջը"
delete: "Ջնջել"
settings:
save_changes: "Պահպանել Փոփոխությունները"
@@ -330,16 +346,16 @@ hy:
refresh: "Թարմացնել"
category: "Կատեգորիա"
priority:
- high: "Ցածր"
+ high: "Կարևոր"
scores:
- score: "Քանակ"
+ score: "Միավոր"
date: "Ամսաթիվ"
type: "Տիպ"
statuses:
pending:
title: "Սպասող"
rejected:
- title: "Մերժված է"
+ title: "Մերժված"
ignored:
title: "Անտեսված"
types:
@@ -347,7 +363,7 @@ hy:
title: "Օգտատեր"
approval:
title: "Գրառումը Հաստատման Կարիք Ունի"
- description: "Մենք ստացել ենք Ձեր նոր գրառումը, սակայն այն պետք է հաստատվի մոդերատորի կողմից մինչև ցուցադրվելը: Խնդրում ենք լինել համբերատար:"
+ description: "Մենք ստացել ենք Ձեր նոր գրառումը, սակայն այն պետք է հաստատվի մոդերատորի կողմից մինչև ցուցադրվելը: Խնդրում ենք սպասել:"
ok: "ՕԿ"
user_action:
user_posted_topic: "{{user}}-ը հրապարակել է այս թեման"
@@ -418,7 +434,7 @@ hy:
title: "Գրառումներ"
when: "Երբ"
action: "Գործողություն"
- acting_user: "Գործող օգտատեր"
+ acting_user: "Կատարող օգտատեր"
target_user: "Նպատակային օգտատեր"
subject: "Թեմա"
details: "Մանրամասներ"
@@ -629,8 +645,8 @@ hy:
dismiss_notifications: "Չեղարկել Բոլորը"
dismiss_notifications_tooltip: "Նշել բոլոր չկարդացած ծանուցումները որպես կարդացած:"
first_notification: "Ձեր առաջին ծանուցումն է! Ընտրեք այն՝ սկսելու համար:"
- theme_default_on_all_devices: "Դարձնել սա լռելյայն թեմա իմ բոլոր սարքավորումների վրա"
- text_size_default_on_all_devices: "Դարձնել սա լռելյայն տեքստի չափ իմ բոլոր սարքերի վրա"
+ theme_default_on_all_devices: "Դարձնել սա լռելյայն թեմա իմ բոլոր սարքավորումների համար"
+ text_size_default_on_all_devices: "Դարձնել սա լռելյայն տեքստի չափ իմ բոլոր սարքավորում համար"
allow_private_messages: "Թույլ տալ այլ օգտատերերին ուղարկել ինձ անձնական հաղորդագրություններ"
external_links_in_new_tab: "Բացել բոլոր արտաքին հղումները նոր ներդիրում(tab)"
enable_quoting: "Միացնել մեջբերմամբ պատասխանելը ընդգծված տեքստի համար"
@@ -881,6 +897,8 @@ hy:
every_hour: "ժամը մեկ"
daily: "օրը մեկ"
weekly: "շաբաթական"
+ every_month: "ամիսը մեկ"
+ every_six_months: "վեց ամիսը մեկ"
email_level:
title: "Ուղարկել ինձ էլ, նամակ, երբ որևէ մեկը մեջբերում է ինձ, պատասխանում է իմ գրառմանը, նշում է իմ @օգտանունը կամ հրավիրում է ինձ թեմայի:"
always: "միշտ"
@@ -1296,7 +1314,6 @@ hy:
title_missing: "Վերնագիրը պարտադիր է:"
title_too_short: "Վերնագիրը պետք է լինի առնվազն {{min}} սիմվոլ:"
title_too_long: "Վերնագիրը չպետք է գերազանցի {{max}} սիմվոլը:"
- post_missing: "Գրառումը չի կարող դատարկ լինել:"
post_length: "Գրառումը պետք է լինի առնվազն {{min}} սիմվոլ:"
try_like: "Դուք փորձե՞լ եք {{heart}} կոճակը:"
category_missing: "Դուք պետք է ընտրեք կատեգորիա:"
@@ -1317,7 +1334,6 @@ hy:
title_placeholder: "Համառոտ մեկ նախադասությամբ ներկայացրեք թե ինչի՞ մասին է քննարկումը:"
title_or_link_placeholder: "Գրեք վերնագիրը կամ տեղադրեք հղումն այստեղ"
edit_reason_placeholder: "Ո՞րն է խմբագրման պատճառը:"
- show_edit_reason: "(ավելացրել խմբագրման պատճառ)"
topic_featured_link_placeholder: "Մուտքագրել վերնագրի հետ ցուցադրվող հղում"
remove_featured_link: "Հեռացնել հղումը թեմայից:"
reply_placeholder: "Գրեք այստեղ: Օգտագործեք Markdown, BBCode, կամ HTML ֆորմատավորման համար: Քաշեք կամ տեղադրեք նկարներ:"
@@ -1403,7 +1419,6 @@ hy:
title: "@անունի հիշատակումների, Ձեր գրառումների և թեմաների պատասխանների, հաղորդագրությունների և այլնի մասին ծանուցումներ "
none: "Սյս պահին հնարավոր չէ բեռնել ծանուցումները"
empty: "Ծանուցումներ չեն գտնվել:"
- more: "դիտել ավելի հին ծանուցումները"
mentioned: "{{username}} {{description}}"
group_mentioned: "{{username}} {{description}}"
quoted: "{{username}} {{description}}"
diff --git a/config/locales/client.id.yml b/config/locales/client.id.yml
index ad245ca1f4..824489c5ad 100644
--- a/config/locales/client.id.yml
+++ b/config/locales/client.id.yml
@@ -244,6 +244,8 @@ id:
title:
placeholder: "tulis judul topik disini"
review:
+ explain:
+ total: "Total"
delete: "Hapus"
settings:
save_changes: "Simpan perubahan"
@@ -859,7 +861,6 @@ id:
title_missing: "Judul harus ada"
title_too_short: "Judul setidaknya {{min}} karakter"
title_too_long: "Judul tidak boleh lebih dari {{max}} karakter"
- post_missing: "Tulisan tidak boleh kosong"
post_length: "Tulisan setidaknya harus {{min}} karakter"
category_missing: "Anda harus memilih kategori"
save_edit: "Simpah Ubahan"
@@ -873,7 +874,6 @@ id:
users_placeholder: "Tambahkan pengguna"
title_placeholder: "Tentang apa diskusi ini dalam satu kalimat pendek?"
title_or_link_placeholder: "Ketik judul, atau tempel tautan disini"
- show_edit_reason: "(tambahkan alasan pengubahan)"
topic_featured_link_placeholder: "Masukkan tautan yang terlihat dengan judul."
remove_featured_link: "Hapus tautan dari topik"
reply_placeholder: "Ketik disini. Gunakan Markdown, BBCode, atau HTML untuk memformat. Tarik atau tempel gambar."
@@ -901,7 +901,6 @@ id:
label: "Topik Baru"
notifications:
empty: "Tidak ada pemberitahuan."
- more: "lihat notifikasi sebelumnya"
titles:
watching_first_post: "topik baru"
upload_selector:
diff --git a/config/locales/client.it.yml b/config/locales/client.it.yml
index d2659d4f97..36bcfc0897 100644
--- a/config/locales/client.it.yml
+++ b/config/locales/client.it.yml
@@ -311,6 +311,8 @@ it:
review:
order_by: "Ordina per"
in_reply_to: "in risposta a"
+ explain:
+ total: "Totale"
claim_help:
optional: "Puoi rivendicare questo elemento per evitare che altri lo revisionino."
required: "Per poter revisionare gli elementi devi prima rivendicarli."
@@ -1423,7 +1425,6 @@ it:
title_missing: "Il titolo è richiesto"
title_too_short: "Il titolo deve essere lungo almeno {{min}} caratteri"
title_too_long: "Il titolo non può essere più lungo di {{max}} caratteri"
- post_missing: "Il messaggio non può essere vuoto"
post_length: "Il messaggio deve essere lungo almeno {{min}} caratteri"
try_like: "Hai provato ad usare il pulsante {{heart}} ?"
category_missing: "Devi scegliere una categoria"
@@ -1444,7 +1445,6 @@ it:
title_placeholder: "In breve, di cosa tratta questo argomento?"
title_or_link_placeholder: "Digita il titolo, o incolla qui il collegamento "
edit_reason_placeholder: "perché stai scrivendo?"
- show_edit_reason: "(aggiungi motivo della modifica)"
topic_featured_link_placeholder: "Inserisci il collegamento mostrato con il titolo."
remove_featured_link: "Rimuovi il collegamento dall'argomento."
reply_placeholder: "Scrivi qui. Per formattare il testo usa Markdown, BBCode o HTML. Trascina o incolla le immagini."
@@ -1531,7 +1531,6 @@ it:
title: "notifiche di menzioni @nome, risposte ai tuoi messaggi e argomenti ecc."
none: "Impossibile caricare le notifiche al momento."
empty: "Nessuna notifica trovata."
- more: "visualizza le notifiche precedenti"
post_approved: "Il tuo messaggio è stato approvato"
reviewable_items: "elementi in attesa di revisione"
mentioned: "{{username}} {{description}}"
diff --git a/config/locales/client.ja.yml b/config/locales/client.ja.yml
index 9213a0d0c9..8f3e07f4d5 100644
--- a/config/locales/client.ja.yml
+++ b/config/locales/client.ja.yml
@@ -284,6 +284,8 @@ ja:
review:
order_by: "順"
in_reply_to: "こちらへの回答"
+ explain:
+ total: "合計"
claim:
title: "トピックを要請する"
unclaim:
@@ -1249,7 +1251,6 @@ ja:
title_missing: "タイトルを入力してください。"
title_too_short: "タイトルは{{min}}文字以上必要です。"
title_too_long: "タイトルは最長で{{max}}未満です。"
- post_missing: "内容が何もありません。"
post_length: "投稿は{{min}}文字以上必要です。"
try_like: " {{heart}} ボタンは試しましたか?"
category_missing: "カテゴリを選択してください。"
@@ -1266,7 +1267,6 @@ ja:
title_placeholder: "トピックのタイトルを入力してください。"
title_or_link_placeholder: "タイトルを記入するか、リンクを貼ってください"
edit_reason_placeholder: "編集する理由は何ですか?"
- show_edit_reason: "(編集理由を追加)"
topic_featured_link_placeholder: "タイトルにリンクを入力してください。"
remove_featured_link: "トピックからリンクを削除する。"
reply_placeholder: "文章を入力してください。 Markdown, BBコード, HTMLが使用出来ます。 画像はドラッグアンドドロップで貼り付けられます。"
@@ -1329,7 +1329,6 @@ ja:
title: "@ユーザ名 のメンション、投稿やトピックへの返信、メッセージなどの通知"
none: "通知を読み込むことができませんでした。"
empty: "通知はありません。"
- more: "通知をすべて確認する"
mentioned: "{{username}} {{description}}"
group_mentioned: "{{username}} {{description}}"
quoted: "{{username}} {{description}}"
diff --git a/config/locales/client.ko.yml b/config/locales/client.ko.yml
index b0839fb35f..8faa0b99d3 100644
--- a/config/locales/client.ko.yml
+++ b/config/locales/client.ko.yml
@@ -284,6 +284,8 @@ ko:
placeholder: "여기에 메시지 제목을 입력하십시오"
review:
in_reply_to: "답글"
+ explain:
+ total: "총"
delete: "삭제"
settings:
saved: "저장 완료"
@@ -1190,7 +1192,6 @@ ko:
title_missing: "제목은 필수 항목입니다"
title_too_short: "제목은 최소 {{min}} 글자 이상이어야 합니다."
title_too_long: "제목은 {{max}} 글자 이상일 수 없습니다."
- post_missing: "글 내용은 필수 입니다."
post_length: "글은 최소 {{min}} 글자 이상이어야 합니다."
category_missing: "카테고리를 선택해주세요."
save_edit: "편집 저장"
@@ -1205,7 +1206,6 @@ ko:
title_placeholder: "이야기 나누고자 하는 내용을 한문장으로 적는다면?"
title_or_link_placeholder: "제목을 입력하거나, 링크를 붙여넣으세요"
edit_reason_placeholder: "why are you editing?"
- show_edit_reason: "(수정사유 추가)"
topic_featured_link_placeholder: "타이틀과 함께 표시될 링크를 입력하세요."
reply_placeholder: "여기에 타이핑 하세요. 마크다운 또는 BBCode, HTML 포맷을 이용하세요. 이미지를 끌어오거나 붙여넣기 하세요."
view_new_post: "새로운 글을 볼 수 있습니다."
@@ -1263,7 +1263,6 @@ ko:
title: "@name 언급, 글과 주제에 대한 답글, 개인 메시지 등에 대한 알림"
none: "현재 알림을 불러올 수 없습니다."
empty: "알림이 없습니다."
- more: "이전 알림을 볼 수 있습니다."
mentioned: "{{username}} {{description}}"
group_mentioned: "{{username}} {{description}}"
quoted: "{{username}} {{description}}"
@@ -1379,6 +1378,7 @@ ko:
go_back: "돌아가기"
not_logged_in_user: "user page with summary of current activity and preferences"
current_user: "사용자 페이지로 이동"
+ view_all: "모두 보기"
topics:
new_messages_marker: "마지막 조회시간"
bulk:
diff --git a/config/locales/client.lt.yml b/config/locales/client.lt.yml
index 0f49a77586..a79f0495ab 100644
--- a/config/locales/client.lt.yml
+++ b/config/locales/client.lt.yml
@@ -328,6 +328,8 @@ lt:
choose_message:
none_found: "Žinučių nėra."
review:
+ explain:
+ total: "Viso"
delete: "Pašalinti"
settings:
save_changes: "Išsaugoti pakeitimus"
@@ -1165,7 +1167,6 @@ lt:
title_missing: "Antraštė turi būti užpildyta"
title_too_short: "Tekstas turi būti bent {{min}} simbolių ilgumo"
title_too_long: "Tekstas negali būti viršyti {{max}} simbolių"
- post_missing: "Įrašas negali būti tuščias"
post_length: "Įrašas turi būti bent {{min}} simbolių ilgumo"
category_missing: "Jūs privalote pasirinkti kategoriją"
tags_missing: "Privalote pasirinkti bent {{count}} gairę"
@@ -1182,7 +1183,6 @@ lt:
title_placeholder: "Apibūdinkite apie ka bus ši diskusija vienu trumpu sakiniu"
title_or_link_placeholder: "Įveskite pavadinimą, arba įklijuokite nuorodą čia"
edit_reason_placeholder: "kodėl jūs redaguojate?"
- show_edit_reason: "(pridėti redagavimo priežastį)"
reply_placeholder: "Įrašyti čia. "
view_new_post: "Peržiūrėksavo naują įrašą."
saving: "Saugoma..."
@@ -1248,7 +1248,6 @@ lt:
title: "pranešimai kai paminimas @name , atsakomi tavo įrašai, temos, žinutės ir pan."
none: "Šiuo metu neįmanoma pakrauti pranešimų."
empty: "Pranešimų nėra"
- more: "Žiūrėti senesnius pranešimus"
mentioned: "{{username}} {{description}}"
group_mentioned: "{{username}} {{description}}"
quoted: "{{username}} {{description}}"
diff --git a/config/locales/client.lv.yml b/config/locales/client.lv.yml
index 3c25fa534f..bc8595ba58 100644
--- a/config/locales/client.lv.yml
+++ b/config/locales/client.lv.yml
@@ -1088,7 +1088,6 @@ lv:
title_missing: "Vajadzīgs nosaukums"
title_too_short: "Nosaukumā jābūt vismaz {{min}} burtiem"
title_too_long: "Nosaukums nevar būt garāks par {{max}} burtiem"
- post_missing: "Ieraksts nevar būt tukšs"
post_length: "Ierakstā jābūt vismaz {{min}} burtiem"
category_missing: "Jums ir jāizvēlas sadaļa"
save_edit: "Saglabāt izmaiņas"
@@ -1103,7 +1102,6 @@ lv:
title_placeholder: "Aprakstiet šis diskusijas saturu īsā teikumā!"
title_or_link_placeholder: "Ierakstiet nosaukumu vai ievietojiet šeit saiti"
edit_reason_placeholder: "kāpēc jūs rediģējat?"
- show_edit_reason: "(pievienot rediģēšanas iemeslu)"
topic_featured_link_placeholder: "Ievadiet saiti, kas redzama virsrakstā."
reply_placeholder: "Rakstiet šeit. Izmantojiet Markdown, BBCode, vai HTML formatēšanai. Velciet vai ielīmējiet bildes."
view_new_post: "Apskatīt jūsu jauno ierakstu."
@@ -1151,7 +1149,6 @@ lv:
title: "paziņojumi par @vārda pieminēšanu, atbildēm uz jūsu ierakstiem un tēmām, ziņām, utt."
none: "Pašlaik neizdodas ielādēt paziņojumus."
empty: "Nav atrasti paziņojumi."
- more: "skatīt senākus paziņojumus"
popup:
mentioned: '{{username}} pieminēja jūs "{{topic}}" - {{site_title}}'
group_mentioned: '{{username}} pieminēja jūs "{{topic}}" - {{site_title}}'
diff --git a/config/locales/client.nb_NO.yml b/config/locales/client.nb_NO.yml
index 89558966b9..61368db1ad 100644
--- a/config/locales/client.nb_NO.yml
+++ b/config/locales/client.nb_NO.yml
@@ -302,6 +302,8 @@ nb_NO:
review:
order_by: "Sorter etter"
in_reply_to: "i svar til"
+ explain:
+ total: "Total"
awaiting_approval: "Venter på godkjenning"
delete: "Slett"
settings:
@@ -1250,7 +1252,6 @@ nb_NO:
title_missing: "Tittel er påkrevd"
title_too_short: "Tittel må være på minst {{min}} tegn"
title_too_long: "Tittel kan ikke være mer enn {{max}} tegn"
- post_missing: "Innlegget kan ikke være tomt"
post_length: "Innlegget må være på minst {{min}} tegn"
try_like: "Har du prøvd {{heart}}-knappen?"
category_missing: "Du må velge en kategori"
@@ -1270,7 +1271,6 @@ nb_NO:
title_placeholder: "Oppsummert i en setning, hva handler denne diskusjonen om?"
title_or_link_placeholder: "Skriv inn tittel eller lim inn en lenke her"
edit_reason_placeholder: "hvorfor endrer du?"
- show_edit_reason: "(legg till endringsbegrunnelse)"
topic_featured_link_placeholder: "Skriv inn lenke vist med tittel."
remove_featured_link: "Fjern lenke fra emnet."
reply_placeholder: "Skriv her. Bruk Markdown, BBCode eller HTML for å formatere innholdet. Dra bilder hit eller lim dem inn."
@@ -1351,7 +1351,6 @@ nb_NO:
title: "varsler om at @navnet ditt blir nevnt, svar på dine innlegg og emner, meldinger, osv"
none: "Notifikasjoner er ikke tilgjengelig for øyeblikket."
empty: "Ingen varsler funnet."
- more: "se gamle varsler"
mentioned: "{{username}} {{description}}"
group_mentioned: "{{username}} {{description}}"
quoted: "{{username}} {{description}}"
diff --git a/config/locales/client.nl.yml b/config/locales/client.nl.yml
index 608d83c6ee..685e5cd8f8 100644
--- a/config/locales/client.nl.yml
+++ b/config/locales/client.nl.yml
@@ -95,6 +95,12 @@ nl:
x_days:
one: "%{count} dag geleden"
other: "%{count} dagen geleden"
+ x_months:
+ one: "%{count} maand geleden"
+ other: "%{count} maanden geleden"
+ x_years:
+ one: "%{count} jaar geleden"
+ other: "%{count} jaar geleden"
later:
x_days:
one: "%{count} dag later"
@@ -314,6 +320,26 @@ nl:
review:
order_by: "Sorteren op"
in_reply_to: "in reactie op"
+ explain:
+ why: "leg uit waarom dit item in de wachtrij is beland"
+ title: "Beoordeelbare scores"
+ formula: "Formule"
+ subtotal: "Subtotaal"
+ total: "Totaal"
+ min_score_visibility: "Minimale score voor zichtbaarheid"
+ score_to_hide: "Score voor verbergen van bericht"
+ take_action_bonus:
+ name: "heeft actie ondernomen"
+ title: "Wanneer een staflid kiest voor het ondernemen van actie, wordt een bonus aan de markering gegeven."
+ user_accuracy_bonus:
+ name: "gebruikersnauwkeurigheid"
+ title: "Gebruikers waarvan markeringen in het verleden zijn geaccordeerd ontvangen een bonus."
+ trust_level_bonus:
+ name: "vertrouwensniveau"
+ title: "Beoordeelbare items die door gebruikers met een hoger vertrouwensniveau zijn gemaakt hebben een hogere score."
+ type_bonus:
+ name: "type bonus"
+ title: "Aan bepaalde beoordeelbare typen kan door stafleden een bonus worden toegekend om ze hogere prioriteit te geven."
claim_help:
optional: "U kunt dit item opeisen om te voorkomen dat anderen het beoordelen."
required: "U moet items opeisen voordat u ze kunt beoordelen."
@@ -1190,9 +1216,9 @@ nl:
enabled: "Deze website bevindt zich in alleen-lezenmodus. U kunt doorgaan met browsen, maar berichten beantwoorden, likes geven en andere acties zijn momenteel uitgeschakeld."
login_disabled: "Aanmelden is uitgeschakeld zolang de website zich in alleen-lezenmodus bevindt."
logout_disabled: "Afmelden is uitgeschakeld zolang de website zich in alleen-lezenmodus bevindt."
- too_few_topics_and_posts_notice: "Laten we de discussie starten! Er zijn %{currentTopics} / %{requiredTopics} topics en %{currentPosts} / %{requiredPosts} berichten – bezoekers hebben er meer nodig om te lezen en op te antwoorden. Alleen stafleden kunnen dit bericht zien."
- too_few_topics_notice: "Laten we de discussie starten! Er zijn %{currentTopics} / %{requiredTopics} topics – bezoekers hebben er meer nodig om te lezen en op te antwoorden. Alleen stafleden kunnen dit bericht zien."
- too_few_posts_notice: "Laten we de discussie starten! Er zijn %{currentPosts} / %{requiredPosts} berichten – bezoekers hebben er meer nodig om te lezen en op te antwoorden. Alleen stafleden kunnen dit bericht zien."
+ too_few_topics_and_posts_notice: "Laten we de discussie starten! Er zijn %{currentTopics} topics en %{currentPosts} berichten. Bezoekers hebben er meer nodig om te lezen en op te antwoorden – minstens %{requiredTopics} topics en %{requiredPosts} berichten wordt aanbevolen. Alleen stafleden kunnen dit bericht zien."
+ too_few_topics_notice: "Laten we de discussie starten! Er zijn %{currentTopics} topics. Bezoekers hebben er meer nodig om te lezen en op te antwoorden – minstens %{requiredTopics} topics wordt aanbevolen. Alleen stafleden kunnen dit bericht zien."
+ too_few_posts_notice: "Laten we de discussie starten! Er zijn %{currentPosts} berichten. Bezoekers hebben er meer nodig om te lezen en op te antwoorden – minstens %{requiredPosts} berichten wordt aanbevolen. Alleen stafleden kunnen dit bericht zien."
logs_error_rate_notice:
reached_hour_MF: "{relativeAge} – {rate, plural, one {# fout/uur} other {# fouten/uur}} heeft de limiet voor de website-instelling van {limit, plural, one {# fout/uur} other {# fouten/uur}} bereikt."
reached_minute_MF: "{relativeAge} – {rate, plural, one {# fout/minuut} other {# fouten/minuut}} heeft de limiet voor de website-instelling van {limit, plural, one {# fout/minuut} other {# fouten/minuut}} bereikt."
@@ -1458,6 +1484,7 @@ nl:
try_like: "Hebt u de knop {{heart}} geprobeerd?"
category_missing: "U moet een categorie kiezen"
tags_missing: "U moet minstens {{count}} tags kiezen"
+ topic_template_not_modified: "Voeg details en specifieke kenmerken toe aan uw topic door de topicsjabloon te bewerken."
save_edit: "Bewerking opslaan"
overwrite_edit: "Bewerking overschrijven"
reply_original: "Antwoorden op oorspronkelijke topic"
@@ -1474,7 +1501,6 @@ nl:
title_placeholder: "Waar gaat deze discussie over in één korte zin?"
title_or_link_placeholder: "Typ de titel, of plak hier een koppeling"
edit_reason_placeholder: "vanwaar deze bewerking?"
- show_edit_reason: "(geef een reden)"
topic_featured_link_placeholder: "Voer koppeling in die met titel wordt getoond."
remove_featured_link: "Koppeling uit topic verwijderen."
reply_placeholder: "Typ hier. Gebruik Markdown, BBCode of HTML voor opmaak. Sleep of plak afbeeldingen."
@@ -1561,7 +1587,6 @@ nl:
title: "meldingen van @naam-vermeldingen, antwoorden op uw berichten en topics, berichten, etc."
none: "Meldingen kunnen momenteel niet worden geladen."
empty: "Geen meldingen gevonden."
- more: "oudere meldingen bekijken"
post_approved: "Uw bericht is goedgekeurd"
reviewable_items: "items die beoordeling nodig hebben"
mentioned: "{{username}} {{description}}"
@@ -1719,6 +1744,7 @@ nl:
go_back: "terug"
not_logged_in_user: "gebruikerspagina met samenvatting van huidige activiteit en voorkeuren"
current_user: "naar uw gebruikerspagina"
+ view_all: "alle bekijken"
topics:
new_messages_marker: "laatste bezoek"
bulk:
diff --git a/config/locales/client.pl_PL.yml b/config/locales/client.pl_PL.yml
index 6a38a733c1..28ce2a6687 100644
--- a/config/locales/client.pl_PL.yml
+++ b/config/locales/client.pl_PL.yml
@@ -129,6 +129,16 @@ pl_PL:
few: "%{count} dni temu"
many: "%{count} dni temu"
other: "%{count} dni temu"
+ x_months:
+ one: "%{count} miesiąc temu"
+ few: "%{count} miesięcy temu"
+ many: "%{count} miesięcy temu"
+ other: "%{count} miesięcy temu"
+ x_years:
+ one: "%{count} rok temu"
+ few: "%{count} lat temu"
+ many: "%{count} lat temu"
+ other: "%{count} lat temu"
later:
x_days:
one: "%{count} dzień później"
@@ -269,6 +279,7 @@ pl_PL:
other: "{{count}} znaków"
related_messages:
title: "Wiadomości powiązane"
+ see_all: 'Zobacz wszystkie wiadomości od @ %{username} ...'
suggested_topics:
title: "Sugerowane tematy"
pm_title: "sugerowane wiadomości"
@@ -348,6 +359,8 @@ pl_PL:
banner:
close: "Zamknij ten baner."
edit: "Edytuj ten baner >>"
+ pwa:
+ install_banner: "Czy chcesz zainstalować %{title} na tym urządzeniu?"
choose_topic:
none_found: "Nie znaleziono tematów."
title:
@@ -361,6 +374,16 @@ pl_PL:
review:
order_by: "Segreguj według:"
in_reply_to: "w odpowiedzi na"
+ explain:
+ why: "wyjaśnij, dlaczego ten element znalazł się w kolejce"
+ formula: "Formuła"
+ total: "Łącznie"
+ take_action_bonus:
+ name: "Podjęto działanie"
+ user_accuracy_bonus:
+ name: "celność użytkownika"
+ trust_level_bonus:
+ name: "Poziom Zaufania"
awaiting_approval: "Oczekuje na zatwierdzenie"
delete: "Usuń"
settings:
@@ -613,6 +636,7 @@ pl_PL:
only_admins: "Tylko administratorzy"
mods_and_admins: "Tylko moderatorzy i administratorzy"
members_mods_and_admins: "Tylko członkowie grupy, moderatorzy i administratorzy"
+ owners_mods_and_admins: "Tylko właściciele, moderatorzy i administratorzy grup"
everyone: "Wszyscy"
notifications:
watching:
@@ -718,6 +742,7 @@ pl_PL:
ignore_duration_username: "Nazwa użytkownika"
ignore_duration_when: "Oczekiwanie"
ignore_duration_save: "Ignoruj"
+ ignore_duration_time_frame_required: "Wybierz przedział czasowy"
ignore_no_users: "Nie posiadasz ignorowanych użytkowników."
ignore_option: "Zignorowany"
add_ignored_user: "Dodaj..."
@@ -748,6 +773,9 @@ pl_PL:
dismiss_notifications: "Odrzuć wszystkie"
dismiss_notifications_tooltip: "Oznacz wszystkie powiadomienia jako przeczytane"
first_notification: "Twoje pierwsze powiadomienie! Kliknij aby zacząć."
+ dynamic_favicon: "Pokazuj liczbę nowych/zaktualizowanych tematów w ikonie przeglądarki."
+ theme_default_on_all_devices: "Ustaw to jako domyślny motyw na wszystkich urządzeniach"
+ text_size_default_on_all_devices: "Ustaw ten domyślny rozmiar tekstu na wszystkich urządzeniach"
allow_private_messages: "Pozwól innym użytkownikom wysyłać do mnie prywatne wiadomości"
external_links_in_new_tab: "Otwieraj wszystkie zewnętrzne odnośniki w nowej karcie"
enable_quoting: "Włącz cytowanie zaznaczonego tekstu"
@@ -771,6 +799,7 @@ pl_PL:
individual_no_echo: "Wysyłaj emaile dla każdego nowego postu oprócz mojego"
many_per_day: "Wyślij mi e-mail dla każdego nowego posta (około {{dailyEmailEstimate}} na dzień)"
few_per_day: "Wyślij mi e-mail dla każdego nowego posta (około 2 dziennie)"
+ warning: "Tryb listy mailingowej włączony. Ustawienia powiadomień e-mail są zastępowane."
tag_settings: "Tagi"
watched_tags: "Obserwowane"
watched_tags_instructions: "Będziesz automatycznie śledzić wszystkie nowe tematy z tymi tagami, będziesz otrzymywać powiadomienie o każdym nowym wpisie i temacie, a liczba nieprzeczytanych i nowych wpisów będzie wyświetlana obok tytułów na liście tematów. "
@@ -787,6 +816,8 @@ pl_PL:
watched_first_post_tags: "Oglądasz pierwszy post"
watched_first_post_tags_instructions: "Zostaniesz powiadomiony tylko o pierwszym wpisie w każdym nowym temacie oznaczonym tymi tagami."
muted_categories: "Wyciszone"
+ muted_categories_instructions: "Nie będziesz powiadamiany o nowych tematach w tych kategoriach. Nie pojawią się na liście nieprzeczytanych."
+ muted_categories_instructions_dont_hide: "Nie otrzymasz powiadomień o nowych tematach w tych kategoriach. "
no_category_access: "Jako moderator masz limitowany dostęp do kategorii, możliwość zapisu jest wyłączona."
delete_account: "Usuń moje konto"
delete_account_confirm: "Czy na pewno chcesz usunąć swoje konto? To nieodwracalne!"
@@ -798,6 +829,7 @@ pl_PL:
muted_users: "Uciszeni"
muted_users_instructions: "Wstrzymaj powiadomienia od tych użytkowników."
ignored_users: "Zignorowany"
+ ignored_users_instructions: "Wstrzymaj wszystkie posty i powiadomienia od tych użytkowników."
tracked_topics_link: "Pokaż"
automatically_unpin_topics: "Automatycznie odpinaj tematy kiedy dotrę do końca strony."
apps: "Aplikacje"
@@ -847,8 +879,10 @@ pl_PL:
regenerate: "Odnów"
disable: "Wyłącz"
enable: "Włącz"
+ enable_long: "Włącz kody zapasowe"
copied_to_clipboard: "Skopiowane do schowka"
copy_to_clipboard_error: "Wystąpił błąd w trakcie kopiowania do schowka"
+ use: "Użyj kodu zapasowego"
codes:
title: "Wygenerowano kody zapasowe"
second_factor:
@@ -856,9 +890,17 @@ pl_PL:
enable: "Zarządzaj autentykacją dwuetapową"
confirm_password_description: "Potwierdź swoje hasło, aby kontynuować"
label: "Kod"
+ rate_limit: "Poczekaj, zanim spróbujesz użyć innego kodu uwierzytelniającego."
disable_description: "Podaj kod uwierzytelniający ze swojej aplikacji"
show_key_description: "Wpisz ręcznie"
+ short_description: |
+ Chroń swoje konto za pomocą jednorazowych kodów bezpieczeństwa.
+ oauth_enabled_warning: "Pamiętaj, że loginy społecznościowe zostaną wyłączone po włączeniu uwierzytelniania dwuskładnikowego na Twoim koncie."
+ enforced_notice: "Aby uzyskać dostęp do tej witryny, musisz włączyć uwierzytelnianie dwuskładnikowe."
+ disable: "Wyłącz"
edit: "Edytuj"
+ totp:
+ title: "Uwierzytelnianie oparte na tokenach"
change_about:
title: "Zmień O mnie"
error: "Wystąpił błąd podczas zmiany tej wartości."
@@ -910,6 +952,8 @@ pl_PL:
revoke: "Unieważnij"
cancel: "Anuluj"
not_connected: "(nie połączony)"
+ confirm_description:
+ generic: "Twoje konto %{provider} zostanie wykorzystane do uwierzytelnienia."
name:
title: "Pełna nazwa"
instructions: "twoja pełna nazwa (opcjonalnie)"
@@ -944,6 +988,7 @@ pl_PL:
show_all: "Pokaż wszystko ({{count}})"
show_few: "Pokaż mniej"
was_this_you: "To byłes Ty?"
+ was_this_you_description: "Jeśli to nie ty, zalecamy zmianę hasła i wylogowanie się ze wszystkich urządzeń."
secure_account: "Zabezpiecz moje konto"
latest_post: "Twój ostatni wpis ..."
last_posted: "Ostatni wpis"
@@ -954,9 +999,14 @@ pl_PL:
location: "Lokalizacja"
website: "Strona internetowa"
email_settings: "Email"
+ hide_profile_and_presence: "Ukryj mój profil publiczny i funkcje obecności"
+ enable_physical_keyboard: "Włącz obsługę klawiatury fizycznej na iPadzie"
text_size:
title: "Rozmiar tekstu"
+ smaller: "Mniejszy"
normal: "Normalny"
+ larger: "Większy"
+ largest: "Największy"
title_count_mode:
notifications: "Nowe powiadomienia"
contextual: "Nowa zawartość strony"
@@ -972,6 +1022,7 @@ pl_PL:
always: "zawsze"
never: "nigdy"
email_digests:
+ title: "Gdy nie odwiedzam strony, wysyłaj e-mail podsumowujący z popularnymi tematami i odpowiedziami."
every_30_minutes: "co 30 minut"
every_hour: "co godzinę"
daily: "codziennie"
@@ -1386,7 +1437,6 @@ pl_PL:
title_missing: "tytuł jest wymagany"
title_too_short: "tytuł musi zawierać co najmniej {{min}} znaków"
title_too_long: "Tytuł nie może zawierać więcej niż {{max}} znaków"
- post_missing: "wpis nie może być pusty"
post_length: "Wpis musi zawierać przynajmniej {{min}} znaków"
category_missing: "Musisz wybrać kategorię"
tags_missing: "Musisz wybrać co najmniej {{count}} tagów"
@@ -1403,7 +1453,6 @@ pl_PL:
title_placeholder: "O czym jest ta dyskusja w jednym zwartym zdaniu. "
title_or_link_placeholder: "Wprowadź tytuł, lub wklej tutaj link"
edit_reason_placeholder: "powód edycji?"
- show_edit_reason: "(dodaj powód edycji)"
topic_featured_link_placeholder: "Wstaw link pod nazwą "
remove_featured_link: "Usuń link z tematu."
reply_placeholder: "Pisz w tym miejscu. Wspierane formatowanie to Markdown, BBCode lub HTML. Możesz też przeciągnąć tu obrazek."
@@ -1467,7 +1516,6 @@ pl_PL:
title: "powiadomienia o wywołanej @nazwie, odpowiedzi do twoich wpisów i tematów, prywatne wiadomości, itp"
none: "Nie udało się załadować listy powiadomień."
empty: "Nie znaleziono powiadomień."
- more: "pokaż starsze powiadomienia"
mentioned: "{{username}} {{description}}"
group_mentioned: "{{username}} {{description}}"
quoted: "{{username}} {{description}}"
@@ -1728,6 +1776,7 @@ pl_PL:
remove: "Usuń czas"
publish_to: "Opublikuj do:"
when: "Kiedy:"
+ time_frame_required: Wybierz przedział czasowy
auto_update_input:
none: "Wybierz przedział czasowy"
later_today: "Później dzisiaj"
diff --git a/config/locales/client.pt.yml b/config/locales/client.pt.yml
index d6998bc090..1bcc2ba7f3 100644
--- a/config/locales/client.pt.yml
+++ b/config/locales/client.pt.yml
@@ -308,6 +308,8 @@ pt:
placeholder: "escreva o título da mensagem aqui"
review:
in_reply_to: "Em resposta a"
+ explain:
+ total: "Total"
claim_help:
optional: "Pode reivindicar este item para prevenir que outras pessoas o revejam."
required: "Deve reivindicar items antes de as poder rever."
@@ -1296,7 +1298,6 @@ pt:
title_missing: "O título é obrigatório"
title_too_short: "O título tem que ter pelo menos {{min}} carateres."
title_too_long: "O título não pode conter mais do que {{max}} carateres."
- post_missing: "A publicação não pode estar vazia"
post_length: "A publicação tem que ter pelo menos {{min}} carateres"
try_like: "Já experimentou o botão {{heart}}?"
category_missing: "Tem de escolher uma categoria"
@@ -1317,7 +1318,6 @@ pt:
title_placeholder: "Numa breve frase, de que se trata esta discussão?"
title_or_link_placeholder: "Digite o título, ou cole aqui uma hiperligação"
edit_reason_placeholder: "Porque está a editar?"
- show_edit_reason: "(adicione motivo da edição)"
topic_featured_link_placeholder: "Inserir hiperligação mostrada com o título."
remove_featured_link: "Remover hiperligação do tópico."
reply_placeholder: "Digite aqui. Utilize Markdown, BBCode, ou HTML para formatar. Arraste ou cole imagens."
@@ -1403,7 +1403,6 @@ pt:
title: "notificações de menções de @name, respostas às suas publicações e tópicos, mensagens, etc"
none: "De momento, não é possível carregar as notificações."
empty: "Não foram encontradas notificações."
- more: "ver notificações antigas"
mentioned: "{{username}} {{description}}"
group_mentioned: "{{username}} {{description}}"
quoted: "{{username}} {{description}}"
diff --git a/config/locales/client.pt_BR.yml b/config/locales/client.pt_BR.yml
index e18db30a65..ada8dbd85f 100644
--- a/config/locales/client.pt_BR.yml
+++ b/config/locales/client.pt_BR.yml
@@ -312,6 +312,8 @@ pt_BR:
review:
order_by: "Ordenar por"
in_reply_to: "Em resposta a"
+ explain:
+ total: "Total"
claim_help:
optional: "Você pode reivindicar este item para impedir que outras pessoas o revisem."
required: "Você precisa reivindicar itens antes de poder revisá-los."
@@ -1187,9 +1189,6 @@ pt_BR:
enabled: "Este site está em modo de somente leitura. Por favor, continue a navegar, mas respostas, curtidas e outras ações estão desabilitadas por enquanto."
login_disabled: "O login é desabilitado enquanto o site está em modo de somente leitura."
logout_disabled: "O logout é desabilitado enquanto o site está em modo de somente leitura."
- too_few_topics_and_posts_notice: "Vamos começar a discussão! Há %{currentTopics} / %{requiredTopics} tópicos e %{currentPosts} / %{requiredPosts} postagens – visitantes precisam de mais para ler e responder. Apenas administradores podem ver esta mensagem."
- too_few_topics_notice: "Vamos começar a discussão! Há %{currentTopics} / %{requiredTopics} tópicos– visitantes precisam de mais para ler e responder. Apenas administradores podem ver esta mensagem."
- too_few_posts_notice: "Vamos começar a discussão! Há %{currentPosts} / %{requiredPosts} postagens – visitantes precisam de mais para ler e responder. Apenas administradores podem ver esta mensagem."
logs_error_rate_notice:
reached_hour_MF: "{relativeAge} – {rate, plural, one {# erro/hora} other {# erros/hora}} alcançou o limite de configuração do site de {limit, plural, one {# erro/hora} other {# erros/hora}}."
reached_minute_MF: "{relativeAge} – {rate, plural, one {# erro/minuto} other {# erros/minuto}} alcançou o limite de configuração do site de {limit, plural, one {# erro/minuto} other {# erros/minuto}}."
@@ -1448,7 +1447,6 @@ pt_BR:
title_missing: "Título é obrigatório"
title_too_short: "Título precisa ter no mínimo {{min}} caracteres"
title_too_long: "Título não pode ter mais de {{max}} caracteres"
- post_missing: "Postagem não pode estar vazia"
post_length: "Postagem precisa ter no mínimo {{min}} caracteres"
try_like: "Você já tentou o botão {{heart}}?"
category_missing: "Você precisa escolher uma categoria"
@@ -1469,7 +1467,6 @@ pt_BR:
title_placeholder: "Sobre o que é esta discussão em uma breve frase?"
title_or_link_placeholder: "Digite um título, ou cole um link aqui"
edit_reason_placeholder: "por que você está editando?"
- show_edit_reason: "(adicionar motivo da edição)"
topic_featured_link_placeholder: "Inserir link mostrado no título."
remove_featured_link: "Remover link do tópico."
reply_placeholder: "Digite aqui. Use Markdown, BBCode, ou HTML para formatar. Arraste ou cole imagens."
@@ -1556,7 +1553,6 @@ pt_BR:
title: "notificações de menção de @nome, respostas às suas postagens, tópicos, mensagens, etc"
none: "Não foi possível carregar notificações no momento."
empty: "Nenhuma notificação foi encontrada."
- more: "ver notificações antigas"
post_approved: "Sua postagem foi aprovada"
reviewable_items: "itens que exigem revisão"
mentioned: "{{username}} {{description}}"
diff --git a/config/locales/client.ro.yml b/config/locales/client.ro.yml
index 54da45fa17..ed79cc1d94 100644
--- a/config/locales/client.ro.yml
+++ b/config/locales/client.ro.yml
@@ -306,6 +306,8 @@ ro:
title:
placeholder: "Scrieți aici titlul subiectului"
review:
+ explain:
+ total: "Total"
delete: "Șterge"
settings:
save_changes: "Salvează schimbările"
@@ -1175,7 +1177,6 @@ ro:
title_missing: "Trebuie un titlu"
title_too_short: "Titlul trebuie să aibă minim {{min}} (de) caractere"
title_too_long: "Titlul nu poate avea mai mult de {{max}} (de) caractere"
- post_missing: "Postarea nu poate fi goală"
post_length: "Postarea trebuie să aibă minim {{min}} (de) caractere"
category_missing: "Trebuie să alegi o categorie"
save_edit: "Salvează editarea"
@@ -1191,7 +1192,6 @@ ro:
title_placeholder: "Despre ce e vorba în acest subiect - pe scurt?"
title_or_link_placeholder: "Introdu titlul, sau copiază aici un link"
edit_reason_placeholder: "de ce editezi?"
- show_edit_reason: "(adaugă motivul editării)"
topic_featured_link_placeholder: "Introdu link afișat cu titlu."
remove_featured_link: "Eliminați link-ul din discuție"
reply_placeholder: "Scrie aici. Utilizează formatarea Markdown, BBCode sau HTML. Trage sau lipește imagini."
@@ -1258,7 +1258,6 @@ ro:
title: "notificări la menționările @numelui tău, răspunsuri la postările sau subiectele tale, mesaje, etc."
none: "Nu pot încărca notificările în acest moment."
empty: "Nu au fost găsite notificări."
- more: "vezi notificările mai vechi"
mentioned: "{{username}} {{description}}"
group_mentioned: "{{username}} {{description}}"
quoted: "{{username}} {{description}}"
diff --git a/config/locales/client.ru.yml b/config/locales/client.ru.yml
index 44d2e3ea05..9eb2defe37 100644
--- a/config/locales/client.ru.yml
+++ b/config/locales/client.ru.yml
@@ -98,10 +98,10 @@ ru:
date_year: "MMM YYYY"
medium:
x_minutes:
- one: "%{count} минута"
- few: "%{count} минуты"
- many: "%{count} минут"
- other: "%{count} минут"
+ one: "%{count} мин"
+ few: "%{count} мин"
+ many: "%{count} мин"
+ other: "%{count} мин"
x_hours:
one: "%{count} час"
few: "%{count} часа"
@@ -115,20 +115,30 @@ ru:
date_year: "D MMM, YYYY"
medium_with_ago:
x_minutes:
- one: "%{count} минуту назад"
- few: "%{count} минуты назад"
- many: "%{count} минут назад"
- other: "%{count} минут назад"
+ one: "%{count} мин. назад"
+ few: "%{count} мин. назад"
+ many: "%{count} мин. назад"
+ other: "%{count} мин. назад"
x_hours:
- one: "%{count} час назад"
- few: "%{count} часа назад"
- many: "%{count} часов назад"
- other: "%{count} часов назад"
+ one: "%{count} ч. назад"
+ few: "%{count} ч. назад"
+ many: "%{count} ч. назад"
+ other: "%{count} ч. назад"
x_days:
- one: "%{count} день назад"
- few: "%{count} дня назад"
- many: "%{count} дней назад"
- other: "%{count} дней назад"
+ one: "%{count} дн. назад"
+ few: "%{count} дн. назад"
+ many: "%{count} дн. назад"
+ other: "%{count} дн. назад"
+ x_months:
+ one: "%{count} мес. назад"
+ few: "%{count} мес. назад"
+ many: "%{count} мес. назад"
+ other: "%{count} мес. назад"
+ x_years:
+ one: "%{count} г. назад"
+ few: "%{count} г. назад"
+ many: "%{count} г. назад"
+ other: "%{count} г. назад"
later:
x_days:
one: "%{count} день спустя"
@@ -344,7 +354,7 @@ ru:
undo: "Отменить"
revert: "Вернуть"
failed: "Проблема"
- switch_to_anon: "Войти в Анонимный режим"
+ switch_to_anon: "Войти в анонимный режим"
switch_from_anon: "Выйти из Анонимного режима"
banner:
close: "Больше не показывать это объявление."
@@ -364,6 +374,26 @@ ru:
review:
order_by: "Сортировать по"
in_reply_to: "в ответе"
+ explain:
+ why: "объяснить, почему этот элемент оказался в очереди"
+ title: "Обзорная Оценка"
+ formula: "Формула"
+ subtotal: "Промежуточный итог"
+ total: "Всего"
+ min_score_visibility: "Минимальная Оценка для Видимости"
+ score_to_hide: "Оценка, чтобы скрыть сообщение"
+ take_action_bonus:
+ name: "принята мера"
+ title: "Когда сотрудник решает принять меры, флаг получает бонус."
+ user_accuracy_bonus:
+ name: "точность пользователя"
+ title: "Пользователи, чьи флаги были исторически согласованы, получают бонус."
+ trust_level_bonus:
+ name: "уровень доверия"
+ title: "Проверяемые элементы, созданные пользователями с более высоким уровнем доверия, имеют более высокий балл."
+ type_bonus:
+ name: "тип бонуса"
+ title: "Некоторые проверяемые типы могут быть назначены бонус сотрудниками, чтобы сделать их более приоритетными."
claim_help:
optional: "Вы можете запросить этот элемент, чтобы другие не могли его просмотреть."
required: "Вы должны подать заявку до того, как сможете их просмотреть."
@@ -1286,9 +1316,9 @@ ru:
enabled: "Сайт работает в режиме \"только для чтения\". Сейчас вы можете продолжать просматривать сайт, но другие действия будут недоступны. "
login_disabled: "Вход отключён, пока сайт в режиме «только для чтения»"
logout_disabled: "Выход отключён, пока сайт в режиме «только для чтения»"
- too_few_topics_and_posts_notice: "Давайте приступим к обсуждению! Есть %{currentTopics} / %{requiredTopics} тем и %{currentPosts} / %{requiredPosts} постов – посетителям нужно больше читать и отвечать на них. Только сотрудники могут видеть это сообщение."
- too_few_topics_notice: "Давайте приступим к обсуждению! Есть %{currentTopics} / %{requiredTopics} тем – посетители должны больше читать и отвечать. Только сотрудники могут видеть это сообщение."
- too_few_posts_notice: "Давайте приступим к обсуждению! Есть %{currentPosts} / %{requiredPosts} постов – посетителям нужно больше читать и отвечать на них. Только сотрудники могут видеть это сообщение."
+ too_few_topics_and_posts_notice: "Давайте приступим к обсуждению! Есть %{currentTopics} тем и %{currentPosts} постов. Пользователи должны больше читать и отвечать – мы рекомендуем, по крайней мере %{requiredTopics} тем и %{requiredPosts} постов. Только сотрудники могут видеть это сообщение."
+ too_few_topics_notice: "Давайте приступим к обсуждению! Есть %{currentTopics} тем. Пользователи должны больше читать и отвечать – мы рекомендуем, по крайней мере %{requiredTopics} тем. Только сотрудники могут видеть это сообщение."
+ too_few_posts_notice: "Давайте приступим к обсуждению! Есть %{currentPosts} постов. Пользователям нужно больше читать и отвечать - мы рекомендуем хотя бы %{requiredPosts} постов. Только сотрудники могут видеть это сообщение."
logs_error_rate_notice:
reached_hour_MF: "{relativeAge} – {rate, plural, one {# error/hour} или {# errors/hour}} достигнут предел настройки сайта {limit, plural, one {# error/hour} или {# errors/hour}}."
reached_minute_MF: "{relativeAge} – {rate, plural, one {# error/minute} или {# errors/minute}} достигнут предел настройки сайта {limit, plural, one {# error/minute} или {# errors/minute}}."
@@ -1530,7 +1560,7 @@ ru:
composer:
emoji: "Смайлики :)"
more_emoji: "еще..."
- options: "Дополнительные опции"
+ options: "Опции"
whisper: "внутреннее сообщение"
unlist: "исключена из списков тем"
blockquote_text: "Цитата"
@@ -1560,8 +1590,9 @@ ru:
post_missing: "Сообщение не может быть пустым"
post_length: "Сообщение должно быть не короче {{min}} символов"
try_like: "Вы пробовали нажать на {{heart}} кнопку?"
- category_missing: "Нужно выбрать раздел"
+ category_missing: "Выберите раздел"
tags_missing: "Необходимо выбрать по крайней мере {{count}} тег"
+ topic_template_not_modified: "Впишите детали темы в шаблон"
save_edit: "Сохранить"
overwrite_edit: "Перезаписать, править"
reply_original: "Ответ в первоначальной теме"
@@ -1578,7 +1609,6 @@ ru:
title_placeholder: "Название: суть темы коротким предложением"
title_or_link_placeholder: "Введите название или вставьте здесь ссылку"
edit_reason_placeholder: "Причина редактирования..."
- show_edit_reason: "(добавить причину редактирования)"
topic_featured_link_placeholder: "Введите ссылку, отображаемую с названием."
remove_featured_link: "Удалить ссылку из темы."
reply_placeholder: "Поддерживаемые форматы: Markdown, BBCode и HTML. Чтобы вставить картинку, перетащите ее сюда или вставьте с помощью Ctrl+V, Command-V, или нажмите правой кнопкой мыши и выберите меню \"вставить\"."
@@ -1669,7 +1699,6 @@ ru:
title: "уведомления об упоминании @псевдонима, ответах на ваши посты и темы, сообщения и т.д."
none: "Уведомления не могут быть загружены."
empty: "Уведомления не найдены."
- more: "посмотреть более ранние уведомления"
post_approved: "Ваш пост был одобрен"
reviewable_items: "пункты, требующие рассмотрения"
mentioned: "{{username}} {{description}}"
@@ -1835,6 +1864,7 @@ ru:
go_back: "вернуться"
not_logged_in_user: "страница пользователя с историей его последней активности и настроек"
current_user: "перейти на вашу страницу пользователя"
+ view_all: "посмотреть все"
topics:
new_messages_marker: "последний визит"
bulk:
@@ -3185,6 +3215,7 @@ ru:
owners: "Владельцы группы"
description: "Администраторы могут видеть все группы."
members_visibility_levels:
+ title: "Кто может видеть участников этой группы?"
description: "Администраторы могут видеть участников всех групп."
publish_read_state: "В сообщениях группы публикуют состояние чтения группы"
membership:
diff --git a/config/locales/client.sk.yml b/config/locales/client.sk.yml
index cd909c7d90..09de5c718a 100644
--- a/config/locales/client.sk.yml
+++ b/config/locales/client.sk.yml
@@ -339,6 +339,8 @@ sk:
choose_message:
none_found: "Žiadne správy."
review:
+ explain:
+ total: "Celkovo"
delete: "Odstrániť"
settings:
save_changes: "Uložiť zmeny"
@@ -1223,7 +1225,6 @@ sk:
title_missing: "Názov je povinný"
title_too_short: "Názov musí mať minimálne {{min}} znakov"
title_too_long: "Názov nesmie byť dlhší než {{max}} znakov"
- post_missing: "Príspevok nesmie byť prázdny"
post_length: "Príspevok musí mať minimálne {{min}} znakov"
category_missing: "Musíte vybrať kategóriu"
save_edit: "Uložiť úpravy"
@@ -1237,7 +1238,6 @@ sk:
users_placeholder: "Pridať používateľa"
title_placeholder: "O čom je této diskusia v jednej stručnej vete?"
edit_reason_placeholder: "prečo upravujete?"
- show_edit_reason: "(pridajte dôvod úpravy)"
reply_placeholder: "Píšte sem. Formátujte pomocou Markdown, BBCode alebo HTML. Pretiahnite alebo vložte obrázky."
view_new_post: "Zobraziť nový príspevok."
saving: "Ukladanie"
@@ -1285,7 +1285,6 @@ sk:
title: "oznámenia o zmienkach pomocou @meno, odpovede na Vaše príspevky a témy, správy, atď."
none: "Notifikácie sa nepodarilo načítať"
empty: "Žiadne upozornenia sa nenašli."
- more: "zobraziť staršie upozornenia"
popup:
mentioned: '{{username}} Vás zmienil v "{{topic}}" - {{site_title}}'
group_mentioned: '{{username}} Vás zmienil v "{{topic}}" - {{site_title}}'
diff --git a/config/locales/client.sl.yml b/config/locales/client.sl.yml
index a28a4b2aa1..0e73a14bc3 100644
--- a/config/locales/client.sl.yml
+++ b/config/locales/client.sl.yml
@@ -1468,7 +1468,6 @@ sl:
title_missing: "Naslov je obvezen"
title_too_short: "Naslov mora vsebovati vsaj {{min}} znakov"
title_too_long: "Naslov ne more imeti več kot {{max}} znakov"
- post_missing: "Prispevek ne sme biti prazen"
post_length: "Prispevek mora vsebovati vsaj {{min}} znakov"
try_like: "Ste že uporabili {{heart}} gumb za všečkanje?"
category_missing: "Izbrati morate kategorijo"
@@ -1489,7 +1488,6 @@ sl:
title_placeholder: "Kaj je tema prispevka v kratkem stavku?"
title_or_link_placeholder: "vpiši naslov ali prilepi povezavo "
edit_reason_placeholder: "zakaj spreminjate prispevek?"
- show_edit_reason: "(dodaj razlog za spremembo)"
topic_featured_link_placeholder: "Vnesite povezavo prikazano z naslovom."
remove_featured_link: "Odstrani povezavo iz teme."
reply_placeholder: "Tu lahko pišeš. Možna je uporaba Markdown, BBcode ali HTML za oblikovanje. Sem lahko povlečeš ali prilepiš sliko."
@@ -1580,7 +1578,6 @@ sl:
title: "obvestila ko omeni vaše @ime, odgovorih na vaše prispevke in teme, zasebna sporočila"
none: "Ta trenutek ne moremo naložiti obvestil."
empty: "Ni obvestil."
- more: "prikaži starejša obvestila"
post_approved: "Vaš prispevek je bil odobren"
reviewable_items: "čakajo na pregled"
mentioned: "{{username}} {{description}}"
@@ -1728,6 +1725,7 @@ sl:
go_back: "pojdi nazaj"
not_logged_in_user: "stran uporabnika s povzetkom trenutnih aktivnosti in nastavitev"
current_user: "pojdi na svojo uporabniško stran"
+ view_all: "prikaži vse"
topics:
new_messages_marker: "zadnji obisk"
bulk:
diff --git a/config/locales/client.sq.yml b/config/locales/client.sq.yml
index eb9dd17e2d..1373e7b601 100644
--- a/config/locales/client.sq.yml
+++ b/config/locales/client.sq.yml
@@ -247,6 +247,8 @@ sq:
placeholder: "shkruaj titullin e temës këtu"
review:
in_reply_to: "në përgjigje të"
+ explain:
+ total: "Total"
delete: "Fshij"
settings:
save_changes: "Ruaj ndryshimet"
@@ -981,7 +983,6 @@ sq:
title_missing: "Titulli është i nevojshëm"
title_too_short: "Titulli duhet të ketë të paktën {{min} shkronja."
title_too_long: "Titulli nuk mund të ketë më shumë se {{max}} shkronja"
- post_missing: "Postimi s'mund të jetë bosh"
post_length: "Postimi duhet të ketë të paktën {{min} shkronja."
category_missing: "Duhet të zgjidhni një kategori"
save_edit: "Ruani modifikimet"
@@ -996,7 +997,6 @@ sq:
title_placeholder: "Në një fjali të shkurtër shpjegoni për çfarë bën fjalë tema"
title_or_link_placeholder: "Shkruani titullin ose ngjitni lidhjen këtu. "
edit_reason_placeholder: "pse jeni duke e redaktuar?"
- show_edit_reason: "(vendosni arsyen e redaktimit)"
reply_placeholder: "Shkruani këtu. Mund të përdorni Markdown, BBCode, ose kod HTML për formatimin. Tërhiqni (drag and drop) ose kopjoni dhe ngjisni imazhet. "
view_new_post: "Shikoni postimin tuaj të ri."
saving: "Duke e ruajtur"
@@ -1043,7 +1043,6 @@ sq:
title: "njoftimet për përmendjet @emri, përgjigjet ndaj postime dhe temave, mesazhet, etj."
none: "Nuk i hapëm dot njoftimet."
empty: "Nuk u gjet asnjë njoftim. "
- more: "shiko njoftimet e kaluara"
popup:
mentioned: '{{username}} ju përmendi në "{{topic}}" - {{site_title}}'
group_mentioned: '{{username}} ju përmendi në "{{topic}}" - {{site_title}}'
diff --git a/config/locales/client.sr.yml b/config/locales/client.sr.yml
index efb5f89d39..01412860e3 100644
--- a/config/locales/client.sr.yml
+++ b/config/locales/client.sr.yml
@@ -866,7 +866,6 @@ sr:
title_missing: "Naslov je obavezan"
title_too_short: "Naslov mora biti barem {{min}} karaktera"
title_too_long: "Naslov ne može biti više od {{max}} karaktera"
- post_missing: "Poruka ne može biti prazna"
post_length: "Poruka mora imati barem {{min}} karaktera"
category_missing: "Morate odabrati kategoriju"
save_edit: "Sačuvaj izmenu"
@@ -880,7 +879,6 @@ sr:
users_placeholder: "Dodaj korisnika"
title_placeholder: "O čemu je ova diskusija u jednoj kratkoj rečenici?"
edit_reason_placeholder: "zašto izmenjujete?"
- show_edit_reason: "(dodaj razlog izmene)"
reply_placeholder: "Kucaj ovde. Koristi Markdown, BBCode ili HTML za formatiranje teksta. Prevuci ili nalepi slike"
view_new_post: "Pogledajte svoju novu poruku."
saving: "Čuvanje"
@@ -925,7 +923,6 @@ sr:
notifications:
none: "Nemoguće je učitati notifikacije ovog trenutka."
empty: "Nisu pronađene notifikacije"
- more: "pogledaj starije notifikacije"
titles:
watching_first_post: "nova tema"
upload_selector:
diff --git a/config/locales/client.sv.yml b/config/locales/client.sv.yml
index 82a741ae20..96168c2d68 100644
--- a/config/locales/client.sv.yml
+++ b/config/locales/client.sv.yml
@@ -270,6 +270,8 @@ sv:
placeholder: "skriv ämnets rubrik här"
review:
in_reply_to: "som svar till"
+ explain:
+ total: "Totalt"
delete: "Radera"
settings:
save_changes: "Spara ändringar"
@@ -1037,7 +1039,6 @@ sv:
title_missing: "Du måste ange en rubrik"
title_too_short: "Rubriken måste vara minst {{min}} tecken lång."
title_too_long: "Rubriken får inte vara längre än {{max}} tecken"
- post_missing: "Inlägg får inte vara tomma"
post_length: "Inlägg måste vara minst {{min}} tecken långa."
category_missing: "Du måste välja en kategori"
save_edit: "Spara ändring"
@@ -1052,7 +1053,6 @@ sv:
title_placeholder: "Vad handlar ämnet om i en kort mening?"
title_or_link_placeholder: "Skriv in en titel, eller klistra in en länk här"
edit_reason_placeholder: "varför redigerar du?"
- show_edit_reason: "(lägg till anledningar för redigering)"
topic_featured_link_placeholder: "Ange länken som visas med titeln"
reply_placeholder: "Skriv här. Använd Markdown, BBCode eller HTML för formattering. Släpp eller klistra in bilder."
view_new_post: "Visa ditt nya inlägg."
@@ -1100,7 +1100,6 @@ sv:
title: "notiser från @namn-omnämnanden, svar på dina inlägg och ämnen, meddelanden, etc"
none: "Kan inte ladda notiser just nu."
empty: "Inga notifieringar hittades."
- more: "visa äldre notifikationer"
granted_badge: "Förtjänade '{{description}}'"
popup:
mentioned: '{{username}} nämnde dig i "{{topic}}" - {{site_title}}'
diff --git a/config/locales/client.sw.yml b/config/locales/client.sw.yml
index 0d655f4524..4e19c155d5 100644
--- a/config/locales/client.sw.yml
+++ b/config/locales/client.sw.yml
@@ -280,6 +280,8 @@ sw:
title:
placeholder: "andika kichwa cha mada hapa"
review:
+ explain:
+ total: "Jumla"
delete: "Futa"
settings:
save_changes: "Hifadhi Mabadiliko"
@@ -1186,7 +1188,6 @@ sw:
title_missing: "Kichwa cha habari ni muhimu"
title_too_short: "Kichwa kinatakiwa kuwa na tarakimu japo {{min}}"
title_too_long: "Kichwa hakitakiwi kuwa na tarakimu zaidi ya {{max}}"
- post_missing: "Chapisho haliwezi kuwa tupu"
post_length: "Posti/Chapisho linatakiwa kuwa na tarakimu japo {{min}}"
category_missing: "Ni sharti uchague kategoria"
tags_missing: "Unatakiwa kuchagua japo vitambulisho {{count}}"
@@ -1205,7 +1206,6 @@ sw:
title_placeholder: "Kwa kifupi majadiliano haya yanahusu nini?"
title_or_link_placeholder: "Andika kichwa cha habari, au bandika kiungo hapa"
edit_reason_placeholder: "kwa nini unahariri?"
- show_edit_reason: "(ongeza sababu ya kuhariri)"
topic_featured_link_placeholder: "Ingiza linki inayoonyeshwa na kichwa"
remove_featured_link: "Ondoa kiungo kwenye mada."
reply_placeholder: "Andika hapa. tumia Markdown, BBCode au HTML kuweka kwenye muundo mzuri. Vuta na kuweka picha"
@@ -1283,7 +1283,6 @@ sw:
title: "taarifa za @jina lililotajwa, majibu ya machapisho na mada, ujumbe, na zingine"
none: "Imeshindwa kupakia taarifa kwa mda huu."
empty: "Hakuna taarifa zilizopatikana."
- more: "angalia taarifa za mda zaidi"
mentioned: "{{jina la mtumiaji}} {{maelezo}}"
group_mentioned: "{{jina la mtumiaji}} {{maelezo}}"
quoted: "{{jina la mtumiaji}} {{maelezo}}"
diff --git a/config/locales/client.te.yml b/config/locales/client.te.yml
index f395e5355f..7dbfe03879 100644
--- a/config/locales/client.te.yml
+++ b/config/locales/client.te.yml
@@ -190,6 +190,8 @@ te:
title:
placeholder: "ఇక్కడ విషయపు శీర్షిక రాయండి"
review:
+ explain:
+ total: "మొత్తం"
delete: "తొలగించు"
settings:
save_changes: "మార్పులను భద్రపరచు"
@@ -689,7 +691,6 @@ te:
title_missing: "శీర్షిక తప్పనిసరి"
title_too_short: "శీర్షిక కనీసం {{min}} అక్షరాలు ఉండాలి"
title_too_long: "శీర్షిక {{max}} అక్షరాలకు మించి ఉండకూడదు"
- post_missing: "టపా ఖాళీగా ఉండకూడదు"
post_length: "టపా కనీసం {{min}} అక్షరాలు కలిగి ఉండాలి"
category_missing: "మీరు ఒక వర్గాన్ని ఎంచుకోవాలి"
save_edit: "దాచి సవరించు"
@@ -701,7 +702,6 @@ te:
users_placeholder: "ఒక సభ్యుడిని కలుపు"
title_placeholder: "ఈ చర్చ దేనిగురించో ఒక లైనులో చెప్పండి?"
edit_reason_placeholder: "మీరెందుకు సవరిస్తున్నారు?"
- show_edit_reason: "(సవరణ కారణం రాయండి)"
view_new_post: "మీ కొత్త టపా చూడండి"
saved: "భద్రం!"
saved_draft: "టపా చిత్తుప్రతి నడుస్తోంది. కొనసాగించుటకు ఎంచుకోండి."
@@ -737,7 +737,6 @@ te:
label: "కొత్త విషయం"
notifications:
none: "ఈ సమయంలో ప్రకటనలు చూపలేకున్నాము."
- more: "పాత ప్రకటనలు చూడు"
titles:
watching_first_post: "కొత్త విషయం"
upload_selector:
diff --git a/config/locales/client.th.yml b/config/locales/client.th.yml
index 00cd894276..c00c4ac25a 100644
--- a/config/locales/client.th.yml
+++ b/config/locales/client.th.yml
@@ -912,7 +912,6 @@ th:
title_missing: "ต้องมีชื่อเรื่อง"
title_too_short: "ชื่อเรื่องต้องมีอย่างน้อย {{min}} ตัวอักษร"
title_too_long: "ชื่อเรื่องต้องไม่ยาวเกิน {{max}} ตัวอักษร"
- post_missing: "โพสไม่สามารถว่างได้"
post_length: "โพสต้องมีอย่างน้อย {{min}} ตัวอักษร"
category_missing: "คุณต้องเลือกหมวดหมู่"
save_edit: "บันทึกการแก้ไข"
@@ -926,7 +925,6 @@ th:
users_placeholder: "เพิ่มผู้ใช้"
title_placeholder: "บทสนทนานี้เกี่ยวกับอะไร ขอสั้นๆ 1 ประโยค"
edit_reason_placeholder: "ทำไมคุณถึงแก้ไข?"
- show_edit_reason: "(เพิ่มสาเหตุที่แก้ไข)"
reply_placeholder: "พิมพ์ที่นี่. ใช้ Markdown, BBCode หรือ HTML เพื่อจัดรูปแบบ สามารถลากหรือวางรูปภาพได้"
view_new_post: "ดูโพสต์ใหม่ของคุณ"
saving: "กำลังบันทึก"
@@ -966,7 +964,6 @@ th:
notifications:
title: "การแจ้งเตือนการพูดถึง,การตอบกลับไปยังโพส กระทู้ หรือข้อความส่วนตัว และอื่นๆของ @name "
none: "ไม่สามารถโหลดการแจ้งเตือนในขณะนี้"
- more: "ดูการแจ้งเตือนก่อนหน้านี้"
popup:
mentioned: '{{username}} พูดถึงคุณใน "{{topic}}" - {{site_title}}'
group_mentioned: '{{username}} พูดถึงคุณใน "{{topic}}" - {{site_title}}'
diff --git a/config/locales/client.tr_TR.yml b/config/locales/client.tr_TR.yml
index 7f7db086c6..217db73609 100644
--- a/config/locales/client.tr_TR.yml
+++ b/config/locales/client.tr_TR.yml
@@ -314,6 +314,10 @@ tr_TR:
review:
order_by: "Sırala"
in_reply_to: "cevap olarak"
+ explain:
+ total: "Toplam"
+ trust_level_bonus:
+ name: "güven seviyesi"
claim_help:
optional: "Başkalarının incelemesini engellemek için bu öğeyi talep edebilirsiniz."
required: "Öğeleri inceleyebilmeniz için önce hak talebinde bulunmalısınız."
@@ -339,7 +343,7 @@ tr_TR:
topic_has_pending:
one: "Bu konuda %{count} adet onay bekleyen gönderi var"
other: "Bu konuda {{count}} adet onay bekleyen gönderi var"
- title: "incele"
+ title: "Gözden geçirmeler"
topic: "Konu:"
filtered_topic: "Tek konu içerisinde görüntülenebilir içerikleri filtrelediniz."
filtered_user: "Kullanıcı"
@@ -1188,7 +1192,6 @@ tr_TR:
enabled: "Bu site salt-okunur modda. Lütfen taramaya devam et, ancak yanıtlama, beğenme ve diğer eylemler şu an için devre dışı durumda. "
login_disabled: "Site salt-okunur modda iken giriş işlemi devre dışı bırakılır ."
logout_disabled: "Site salt-okunur modda iken çıkış işlemi yapılamaz."
- too_few_topics_and_posts_notice: "Tartışmaya başlayalım ! %{currentTopics} / %{requiredTopics} konuları ve %{currentPosts} / %{requiredPosts} gönderileri vardır - ziyaretçilerin okuması ve yanıtlaması gereken daha çok şey vardır. Bu mesajı yalnızca personel görebilir."
learn_more: "daha fazlasını öğren..."
all_time: "toplam"
all_time_desc: "oluşturulan tüm konular "
@@ -1278,8 +1281,10 @@ tr_TR:
password: "Şifre"
second_factor_title: "İki Faktörlü Kimlik Doğrulama"
second_factor_description: "Lütfen uygulamadan \"Kimlik Doğrulama Kodu\"nu gir:"
+ second_factor_backup: "Yedek kodları kullanarak oturum açın"
second_factor_backup_title: "İki Faktörlü Yedekleme"
second_factor_backup_description: "Lütfen yedek kodlarından birini gir:"
+ second_factor: "Authenticator uygulamasını kullanarak oturum açın"
email_placeholder: "e-posta veya kullanıcı adı"
caps_lock_warning: "Caps Lock açık"
error: "Bilinmeyen hata"
@@ -1439,8 +1444,8 @@ tr_TR:
title_missing: "Başlık gerekli"
title_too_short: "Başlık en az {{min}} karakter olmalı"
title_too_long: "Başlık {{max}} karakterden daha uzun olamaz"
- post_missing: "Gönderiler boş olamaz"
post_length: "Gönderi en az {{min}} karakter olmalı"
+ try_like: "{{heart}} düğmesini denediniz mi?"
category_missing: "Bir kategori seçmelisin"
tags_missing: "En azından {{count}} etiket seçmelisin"
save_edit: "Değişikliği Kaydet"
@@ -1459,7 +1464,6 @@ tr_TR:
title_placeholder: "Tek cümleyle açıklamak gerekirse bu tartışmanın konusu nedir?"
title_or_link_placeholder: "Buraya bir konu gir veya bir bağlantı paylaş"
edit_reason_placeholder: "neden düzenleme yapıyorsun?"
- show_edit_reason: "(düzenleme sebebi ekle)"
topic_featured_link_placeholder: "Başlığı olan bir bağlantı gir."
remove_featured_link: "Konudan bağlantıyı kaldır."
reply_placeholder: "Buraya yaz. Biçimlendirmek için Markdown, BBCode ya da HTML kullanabilirsin. Resimleri sürükleyebilir ya da yapıştırabilirsin."
@@ -1544,7 +1548,6 @@ tr_TR:
title: "@isime yapılan bildirimler, gönderilerin ve konularına verilen cevaplar, mesajlarla vb. ilgili bildiriler"
none: "Şu an için bildirimler yüklenemiyor."
empty: "Bildirim yok."
- more: "Eski bildirimleri görüntüle"
post_approved: "Gönderiniz onaylandı"
reviewable_items: "inceleme gerektiren öğeler"
mentioned: "{{username}} {{description}}"
@@ -1692,6 +1695,7 @@ tr_TR:
go_back: "geri dön"
not_logged_in_user: "güncel aktivitelerin ve tercihlerin özetinin bulunduğu kullanıcı sayfası"
current_user: "kendi kullanıcı sayfana git"
+ view_all: "tümünü görüntüle"
topics:
new_messages_marker: "son ziyaret"
bulk:
@@ -2133,7 +2137,9 @@ tr_TR:
create: "Üzgünüz, gönderin oluşturulurken bir hata oluştu. Lütfen tekrar dene."
edit: "Üzgünüz, gönderin düzenlenirken bir hata oluştu. Lütfen tekrar dene. "
upload: "Üzgünüz, dosya yüklenirken bir hata oluştu. Lütfen tekrar dene."
+ file_too_large: "Üzgünüz, bu dosya çok büyük (en fazla {{max_size_kb}}kb). Neden paylaşımını bir bulut sağlayıcısına yükleyip bağlantısını paylaşmıyorsun ?"
too_many_uploads: "Üzgünüz, aynı anda sadece tek dosya yüklenebilir."
+ too_many_dragged_and_dropped_files: "Üzgünüz, tek seferde sadece {{max}} dosya yükleyebilirsin."
upload_not_authorized: "Üzgünüz, yüklemeye çalıştığın dosya izinli değil (izinli uzantılar : {{izinli uzantılar}})."
image_upload_not_allowed_for_new_user: "Üzgünüz, yeni kullanıcılar resim yükleyemez."
attachment_upload_not_allowed_for_new_user: "Üzgünüz, yeni kullanıcılar dosya yükleyemez."
@@ -2167,6 +2173,9 @@ tr_TR:
more: "Daha fazla"
delete_replies:
confirm: "Bu gönderideki yanıtları da silmek istiyor musun?"
+ all_replies:
+ one: "Evet, ve %{count} yanıt"
+ other: "Evet, ve tüm {{count}} yanıtlar"
just_the_post: "Hayır, sadece bu gönderi"
admin: "gönderi yönetici eylemleri"
wiki: "Wiki Yap"
@@ -2207,6 +2216,9 @@ tr_TR:
bookmark: "bunu işaretledi"
like: "bunu beğendi"
read: "bunu oku"
+ like_capped:
+ one: "ve {{count}} diğer kişi bunu beğendi"
+ other: "ve {{count}} diğerleri bunu beğendi"
by_you:
off_topic: "Bunu bayrakla \"konu dışı\" olarak işaretledin"
spam: "Bunu bayrakla \"istenmeyen e-posta\" olarak işaretledin"
@@ -2234,6 +2246,7 @@ tr_TR:
revert: "Bu uyarlamaya geri dön"
edit_wiki: "Wiki'yi düzenle"
edit_post: "Gönderiyi düzenle"
+ comparing_previous_to_current_out_of_total: "{{previous}}{{icon}}{{current}}/{{total}}"
displays:
inline:
title: "Hazırlanan cevabı ekleme ve çıkarmalarla birlikte göster"
@@ -2302,6 +2315,7 @@ tr_TR:
security: "Güvenlik"
special_warning: "Uyarı: Bu kategori önceden ayarlanmış bir kategoridir ve güvenlik ayarları değiştirilemez. Eğer bu kategoriyi kullanmak istemiyorsan, başka bir amaçla kullanmak yerine sil."
uncategorized_security_warning: "Bu kategori özeldir. Kategorisi olmayan konular için tutma alanı olarak tasarlanmıştır; güvenlik ayarlarına sahip olamaz."
+ uncategorized_general_warning: 'Bu kategori özeldir. Kategori seçilmeyen yeni konular için varsayılan kategori olarak kullanılır. Bu davranışı önlemek ve kategori seçimini zorlamak istiyorsanız, lütfen buradaki ayarı devre dışı bırakın. Adı veya açıklamayı değiştirmek istiyorsanız, Özelleştir / Metin İçeriği''ne gidin.'
images: "Resimler"
email_in: "Kişiselleşmiş gelen e-posta adresi:"
email_in_allow_strangers: "Hesabı olmayan, isimsiz kullanıcılardan e-posta kabul et"
@@ -2554,6 +2568,7 @@ tr_TR:
this_week: "Hafta"
today: "Bugün"
other_periods: "yukarı bak"
+ browser_update: 'Maalesef, tarayıcın bu site için çok eski. Lütfen tarayıcını güncelle.'
permission_types:
full: "Oluştur / Cevapla / Bak"
create_post: "Cevapla / Bak"
@@ -2586,6 +2601,7 @@ tr_TR:
up_down: "%{shortcut} Seçileni taşı ↑ ↓"
open: "%{shortcut} Seçili konuyu aç"
next_prev: "%{shortcut} Önceki/Sonraki bölüm"
+ go_to_unread_post: "%{shortcut} Okunmamış ilk gönderiye git"
application:
title: "Uygulama"
create: "%{shortcut} Yeni konu oluştur"
@@ -2678,6 +2694,11 @@ tr_TR:
sort_by_name: "isim"
manage_groups: "Etiket Grubunu Yönet"
manage_groups_description: "Etiket grubunu yönetmek için grup tanımla"
+ upload: "Etiketleri Yükle"
+ upload_description: "Toplu olarak etiket oluşturmak için bir csv dosyası yükleyin"
+ upload_successful: "Etiketler başarıyla yüklendi"
+ delete_unused: "Kullanılmayan Etiketleri Sil"
+ delete_unused_description: "Hiçbir konuya veya kişisel mesaja eklenmeyen tüm etiketleri sil"
cancel_delete_unused: "İptal"
filters:
without_category: "%{filter} %{tag} konular"
@@ -2690,6 +2711,7 @@ tr_TR:
description: "Bu etiketi içeren tüm konuları otomatik olarak izleyeceksin. Tüm yeni mesajlar ve konulardan haberdar edileceksin, ayrıca konuların yanında okunmamış ve yeni mesajların sayısı da görünecek."
watching_first_post:
title: "İlk gönderi izlemesi"
+ description: "Bu etiketteki yeni konular size bildirilecektir ancak konulara cevap verilmeyecektir."
tracking:
title: "Takip ediliyor"
description: "Bu etiketi içeren tüm konuları otomatik olarak takip edeceksin. Konunun yanında okunmamış ve yeni yayınların sayısı görünecek."
@@ -2704,6 +2726,7 @@ tr_TR:
about: "Konuları kolayca yönetmek için onlara etiket ekle."
new: "Yeni Grup"
tags_label: "Bu gruptaki etiketler:"
+ tags_placeholder: "etiketler"
parent_tag_label: "Üst etiket:"
parent_tag_placeholder: "İsteğe Bağlı"
parent_tag_description: "Bu gruptaki etiketler üst etiket olduğu sürece kullanılamaz."
@@ -2752,6 +2775,8 @@ tr_TR:
title: "Mevcut raporlar listesi"
dashboard:
title: "Gösterge Paneli"
+ last_updated: "Kontrol paneli güncellendi:"
+ discourse_last_updated: "Discourse güncellendi:"
version: "Sürüm"
up_to_date: "Sistemin güncel durumda!"
critical_available: "Önemli bir güncelleme var."
@@ -2762,6 +2787,7 @@ tr_TR:
version_check_pending: "Yeni güncelleme yaptın. Harika!"
installed_version: "Yüklendi"
latest_version: "En son"
+ problems_found: "Mevcut site ayarlarınıza göre bazı öneriler"
last_checked: "Son kontrol"
refresh_problems: "Yenile"
no_problems: "Herhangi bir sorun bulunamadı."
@@ -2772,6 +2798,8 @@ tr_TR:
private_messages_short: "Mesajlar"
private_messages_title: "Mesajlar"
mobile_title: "Mobil"
+ space_used: "%{usedSize} kullanıldı"
+ space_used_and_free: "%{usedSize} (%{freeSize} kullanılabilir)"
uploads: "Yüklemeler"
backups: "Yedekler"
lastest_backup: "Güncel: %{date}"
@@ -2788,10 +2816,14 @@ tr_TR:
general_tab: "Genel"
moderation_tab: "Moderasyon"
security_tab: "Güvenlik"
+ reports_tab: "Raporlar"
report_filter_any: "hiçbir"
disabled: Devredışı
timeout_error: "Üzgünüz, sorgu çok uzun sürüyor. Lütfen daha kısa bir aralık seç."
exception_error: "Üzgünüz, sorguyu yürütürken bir hata oluştu"
+ too_many_requests: Bu işlemi çok fazla yaptınız. Lütfen tekrar denemeden önce bekleyin.
+ not_found_error: "Üzgünüz, bu rapor mevcut değil"
+ filter_reports: Raporları filtrele
reports:
today: "Bugün"
yesterday: "Dün"
@@ -2804,14 +2836,19 @@ tr_TR:
view_table: "tablo"
view_graph: "grafik"
refresh_report: "Raporu Yenile"
+ start_date: "Başlangıç Tarihi (UTC)"
+ end_date: "Bitiş Tarihi (UTC)"
groups: "Tüm gruplar"
disabled: "Bu rapor devre dışı"
totals_for_sample: "Örnek toplamlar"
+ average_for_sample: "Örnek için ortalama"
total: "Tüm zamanlar toplamı"
no_data: "Gösterilecek bilgi yok."
trending_search:
more: 'Arama Günlükleri'
filters:
+ file-extension:
+ label: Dosya uzantısı
group:
label: Grup
category:
@@ -2845,7 +2882,15 @@ tr_TR:
visibility_levels:
title: "Bu grubu kimler görebilir?"
public: "Herkes"
+ logged_on_users: "Giriş yapan kullanıcılar"
+ members: "Grup yöneticileri, üyeler"
staff: "Grup sahipleri ve personel"
+ owners: "Grup yöneticileri"
+ description: "Yöneticiler tüm grupları görebilir."
+ members_visibility_levels:
+ title: "Bu grubun üyelerini kim görebilir?"
+ description: "Yöneticiler tüm grupların üyelerini görebilir."
+ publish_read_state: "Grup mesajlarında grup okuma durumunu yayınla"
membership:
automatic: Otomatik
trust_level: Güven Seviyesi
@@ -2918,6 +2963,7 @@ tr_TR:
active_notice: "Etkinlik olduğunda, detaylarını göndereceğiz."
categories_filter_instructions: "İlgili web sayfaları yalnızca etkinlik belirtilen kategorilerle ilgiliyse tetiklenir. Tüm kategoriler için web sayfalarını tetiklemek için boş bırakın."
categories_filter: "Tetiklenmiş Kategoriler"
+ tags_filter: "Etkilenen Etiketler"
groups_filter_instructions: "İlgili web sayfaları yalnızca etkinlik belirtilen gruplarla ilgiliyse tetiklenir. Tüm gruplar için web sayfalarını tetiklemek için boş bırakın."
groups_filter: "Tetiklenmiş Gruplar"
delete_confirm: "Bu web kancası silinsin mi?"
@@ -3011,6 +3057,7 @@ tr_TR:
label: "Yükle"
title: "Bu oluşuma bir yedek yükle"
uploading: "Yükleniyor..."
+ uploading_progress: "Yükleniyor... {{progress}}%"
error: "'{{filename}}': {{message}} yüklenirken bir hata oluştu"
operations:
is_running: "İşlem devam ediyor..."
@@ -3040,6 +3087,8 @@ tr_TR:
label: "Geri al"
title: "Veritabanını calışan son haline geri al"
confirm: "Veritabanını çalışan son haline döndürmek istediğine emin misin?"
+ location:
+ local: "Yerel Depolama"
export_csv:
success: "Dışa aktarma işlemi başlatıldı. İşlem tamamlandığında mesajla bilgilendirileceksin."
failed: "Dışa aktarımda bir hata oluştu. Lütfen kayıtları kontrol et."
@@ -3063,6 +3112,7 @@ tr_TR:
save: "Kaydet"
new: "Yeni"
new_style: "Yeni Biçim"
+ install: "Yükle"
delete: "Sil"
color: "Renk"
opacity: "Saydam"
@@ -3094,9 +3144,11 @@ tr_TR:
desktop: "Masaüstü"
mobile: "Mobil"
settings: "Ayarlar"
+ translations: "Çeviriler"
preview: "Önizleme"
is_default: "Tema varsayılan olarak etkinleştirildi"
user_selectable: "Tema kullanıcılar tarafından seçilebilir"
+ color_scheme: "Renk Paleti"
color_scheme_select: "Temada kullanılacak renkleri seç"
custom_sections: "İsteğe uyarlanmış bölümler:"
theme_components: "Tema Öğeleri"
@@ -3120,13 +3172,18 @@ tr_TR:
edit_css_html_help: "Herhangi bir CSS veya HTML düzenlemedin"
delete_upload_confirm: "Yükleme silinsin mi?(Tema CSS çalışmayı durdurabilir!)"
import_web_tip: "Veri havuzu içeren tema"
+ import_web_advanced: "Gelişmiş..."
is_private: "Tema özel bir git veri havuzunda"
remote_branch: "Şube adı (isteğe bağlı)"
public_key: "Repo'ya aşağıdaki genel anahtar erişimini ver:"
+ install: "Yükle"
installed: "Yüklendi"
install_popular: "Gözde"
+ install_create: "Yeni oluştur"
about_theme: "Hakkında"
license: "Lisans"
+ version: "Versiyon:"
+ source_url: "Kaynak"
enable: "Etkinleştir"
disable: "Devre dışı bırak"
component_of: "Bileşen:"
@@ -3848,9 +3905,11 @@ tr_TR:
modal:
categories: "Kategoriler"
topics: "Konular"
+ replace: "Değiştir"
wizard_js:
wizard:
done: "Tamamlandı"
+ finish: "Bitir"
back: "Geri"
next: "İleri"
step: "%{current} / %{total}"
diff --git a/config/locales/client.uk.yml b/config/locales/client.uk.yml
index f9a8ef2d48..7a84019f06 100644
--- a/config/locales/client.uk.yml
+++ b/config/locales/client.uk.yml
@@ -362,6 +362,11 @@ uk:
review:
order_by: "Сортувати за"
in_reply_to: "у відповідь на"
+ explain:
+ formula: "Формула"
+ total: "Всього"
+ trust_level_bonus:
+ name: "рівень довіри"
claim_help:
optional: "Ви можете заявити права на цей елемент, щоб інші не могли його переглядати."
required: "Ви повинні заявити права на елементи, перш ніж ви зможете переглядати їх."
@@ -997,8 +1002,10 @@ uk:
no_secondary: "Немає другорядних електронних скриньок"
sso_override_instructions: "Електронну пошту можна оновити через SSO-провайдера."
instructions: "Ніколи не показується публічно."
+ ok: "Ми надішлемо Вам листа для підтвердження"
invalid: "Будь ласка, введіть вірний email"
associated_accounts:
+ connect: "Підключити"
revoke: "Анулювати"
cancel: "Скасувати"
name:
@@ -1010,6 +1017,7 @@ uk:
title: "Ім'я користувача"
available: "Ваше ім'я доступне"
not_available: "Не доступно. Спробуєте {{suggestion}}?"
+ not_available_no_suggestion: "Не доступно"
too_short: "Ваше ім'я закоротке"
too_long: "Ваше ім'я довге"
checking: "Перевірка доступності імені користувача..."
@@ -1198,6 +1206,8 @@ uk:
requires_invite: "Даруйте, доступ до цього форуму - лише за запрошеннями."
not_activated: "Ви ще не можете увійти. Ми вже надіслали Вам листа для активації на скриньку {{sentTo}}. Будь ласка, виконайте інструкції в цьому листі, щоб активувати обліковий запис."
resend_activation_email: "Натисніть тут, щоб отримати ще один лист з активацією."
+ resend_title: "Надіслати ще раз листа для активації"
+ change_email: "Змінити електронну скриньку"
sent_activation_email_again: "Ми надіслали на Вашу скриньку {{currentEmail}} ще один лист для активації облікового запису. Протягом кількох хвилин він має з'явитися у Вашій скриньці. Не забувайте також перевіряти теку зі спамом."
to_continue: "Будь ласка Увійдіть"
not_approved: "Ваш обліковий запис ще не було схвалено. Ви отримаєте сповіщення на електронну скриньку, коли зможете увійти."
@@ -1252,7 +1262,6 @@ uk:
title_missing: "Заголовок є необхідним"
title_too_short: "Заголовок має бути мінімум {{min}} символів"
title_too_long: "Заголовок не може бути менше, ніж {{max}} символів"
- post_missing: "Допис не може бути порожнім"
post_length: "Найменший розмір допису має бути {{min}} символів"
category_missing: "Ви повинні обрати категорію"
tags_missing: "Ви маєте вибрати хоча б {{count}} міток"
@@ -1267,7 +1276,6 @@ uk:
users_placeholder: "Додати користувача"
title_placeholder: "Про що це обговорення, у одному короткому реченні?"
edit_reason_placeholder: "чому Ви редагуєте допис?"
- show_edit_reason: "(додати причину редагування)"
view_new_post: "Перегляньте свій новий допис."
saving: "Збереження"
saved: "Збережено!"
@@ -1301,7 +1309,6 @@ uk:
create_topic:
label: "Нова тема"
notifications:
- more: "переглянути старіші сповіщення"
titles:
watching_first_post: "нова тема"
upload_selector:
diff --git a/config/locales/client.ur.yml b/config/locales/client.ur.yml
index 02d35ec8da..543823e7a8 100644
--- a/config/locales/client.ur.yml
+++ b/config/locales/client.ur.yml
@@ -95,6 +95,12 @@ ur:
x_days:
one: "%{count} دن قبل"
other: "%{count} دن قبل"
+ x_months:
+ one: "%{count} ماہ قبل"
+ other: " %{count} مہینے قبل"
+ x_years:
+ one: "%{count} سال قبل"
+ other: "%{count} سال قبل"
later:
x_days:
one: "%{count} دن بعد"
@@ -314,6 +320,26 @@ ur:
review:
order_by: "کے حساب سے آرڈر"
in_reply_to: "کے جواب میں"
+ explain:
+ why: "وضاحت کریں کہ یہ شے آخر میں قطار میں کیوں داخل ہو گئی"
+ title: "قابل تجدید اسکورنگ"
+ formula: "فارمولا"
+ subtotal: "ذیلی کل"
+ total: "کُل"
+ min_score_visibility: "نموداری کیلئے کم از کم اسکور"
+ score_to_hide: "پوسٹ چھپانے کیلئے اسکور"
+ take_action_bonus:
+ name: "کارروائی کی"
+ title: "جب سٹاف کا ایک ممبر کارروائی کرنے کا انتخاب کرتا ہے تو فلَیگ کو بَونَس دیا جاتا ہے۔"
+ user_accuracy_bonus:
+ name: "صارف کی درستگی"
+ title: "جن صارفین کے فلَیگز کے ساتھ تاریخی طور پر اتفاق کیا گیا ہو انہیں بَونَس دیا جاتا ہے۔"
+ trust_level_bonus:
+ name: "ٹرسٹ لَیول"
+ title: "اعلی ٹرسٹ لَیول صارفین کی طرف سے تخلیق کردہ قابل تجدید اشیاء کا اسکور زیادہ ہوتا ہے۔"
+ type_bonus:
+ name: "قِسم بَونَس"
+ title: "سٹاف کی طرف سے کچھ قابل تجدید اقسام کو بَونَس تفویض کیا جاسکتا ہے تاکہ ان کو اعلیٰ ترجیح بنایا جاسکے۔"
claim_help:
optional: "آپ اس چیز کو کََلیم کرسکتے ہیں کہ دوسروں کو اِسکا جائزہ لینے سے روکا جا سکے۔"
required: "اشیاء کا جائزہ لینے سے پہلے آپ کا اُن کو کََلیم کرنا ضروری ہے۔"
@@ -1190,9 +1216,9 @@ ur:
enabled: "یہ سائٹ صرف پڑھنے کے مَوڈ میں ہے۔ براہِ مہربانی براؤز کرتے رہئیے، لیکن جواب دینا، لائکس دینا، اور دیگر اعمال ابھی کے لئے غیر فعال ہیں۔"
login_disabled: "جب تک سائٹ صرف پڑھنے کے مَوڈ میں ہے لاگ اِن غیر فعال رہے گا۔"
logout_disabled: "جب تک سائٹ صرف پڑھنے کے مَوڈ میں ہے لاگ آؤٹ غیر فعال رہے گا۔"
- too_few_topics_and_posts_notice: "چلیں اِس بحث کو شروع کریں! %{currentTopics}/%{requiredTopics} ٹاپکس اور %{currentPosts}/%{requiredPosts} پوسٹس موجود ہیں – زائرین کو پڑھنے اور اُن کا جواب دینے کیلئے مذید اور کی ضرورت ہے۔ صرف سٹاف اِس پیغام کو دیکھ سکتے ہیں۔"
- too_few_topics_notice: "چلیں اِس بحث کو شروع کریں! %{currentTopics}/%{requiredTopics} ٹاپکس موجود ہیں – زائرین کو پڑھنے اور اُن کا جواب دینے کیلئے مذید اور کی ضرورت ہے۔ صرف سٹاف اِس پیغام کو دیکھ سکتے ہیں۔"
- too_few_posts_notice: "چلیں اِس بحث کو شروع کریں! %{currentPosts}/%{requiredPosts} پوسٹس موجود ہیں – زائرین کو پڑھنے اور اُن کا جواب دینے کیلئے مذید اور کی ضرورت ہے۔ صرف سٹاف اِس پیغام کو دیکھ سکتے ہیں۔"
+ too_few_topics_and_posts_notice: "چلیں اِس بحث کو شروع کریں! %{currentTopics} ٹاپکس اور %{currentPosts} پوسٹس موجود ہیں۔ زائرین کو پڑھنے اور اُن کا جواب دینے کیلئے مذید اور کی ضرورت ہے – ہم کم از کم %{requiredTopics} ٹاپکس اور %{requiredPosts} پوسٹس کی تجویز دیتے ہیں۔ صرف سٹاف اِس پیغام کو دیکھ سکتے ہیں۔"
+ too_few_topics_notice: "چلیں اِس بحث کو شروع کریں! %{currentTopics} ٹاپکس موجود ہیں۔ زائرین کو پڑھنے اور اُن کا جواب دینے کیلئے مذید اور کی ضرورت ہے – ہم کم از کم %{requiredTopics} ٹاپکس کی تجویز دیتے ہیں۔ صرف سٹاف اِس پیغام کو دیکھ سکتے ہیں۔"
+ too_few_posts_notice: "چلیں اِس بحث کو شروع کریں! %{currentPosts} پوسٹس موجود ہیں۔ زائرین کو پڑھنے اور اُن کا جواب دینے کیلئے مذید اور کی ضرورت ہے – ہم کم از کم %{requiredPosts} پوسٹس کی تجویز دیتے ہیں۔ صرف سٹاف اِس پیغام کو دیکھ سکتے ہیں۔"
learn_more: "اورجانیے..."
all_time: "کُل"
all_time_desc: "کُل ٹاپک بنائے گئے"
@@ -1453,6 +1479,7 @@ ur:
try_like: "کیا آپ نے {{heart}} بٹن اِستعمال کیا ہے؟"
category_missing: "ایک زمرہ کا انتخاب کرنا ضروری ہے"
tags_missing: "آپ کا کم از کم {{count}} ٹیگز کا انتخاب کرنا ضروری ہے"
+ topic_template_not_modified: "براہ مہربانی ٹاپک ٹَیمپلیٹ میں ترمیم کرکے اپنے ٹاپک میں تفصیلات اور مخصوصیات شامل کریں۔"
save_edit: "ترمیم محفوظ کریں"
overwrite_edit: "دوسری ترمیم کے اوپر لکھ ڈالیں"
reply_original: "حقیقی ٹاپک پر جواب دیں"
@@ -1469,7 +1496,6 @@ ur:
title_placeholder: "ایک مختصر جملہ میں بتائیے کہ یہ بحث کس چیز کے بارے میں ہے؟"
title_or_link_placeholder: "عنوان ٹائپ کریں، یا ایک لنک یہاں پیسٹ کریں"
edit_reason_placeholder: "آپ ترمیم کیوں کر رہے ہیں؟"
- show_edit_reason: "(ترمیم کی وجہ شامل کریں)"
topic_featured_link_placeholder: "عنوان کے ساتھ دکھایا گیا لنک درج کریں۔"
remove_featured_link: "ٹاپک سے لنک ہٹا ئیں۔"
reply_placeholder: "یہاں ٹائپ کریں۔ فارمیٹ کیلئے مارکڈائون، BBCode، یا HTML اِستعمال کریں۔ تصاویر ڈریگ یا پیسٹ کریں۔"
@@ -1556,7 +1582,6 @@ ur:
title: "@نام کے ذکر، آپ کی پوسٹ اور ٹاپک پر جوابات، پیغامات، وغیرہ کی اطلاعات"
none: "اِس وقت ویب سائٹ اطلاعات لوڈ کرنے سے قاصر ہے۔"
empty: "کوئی اطلاعات نہیں ملیں۔"
- more: "پرانی اطلاعات دیکھیے"
post_approved: "آپ کی پوسٹ منظور ہو گئی تھی"
reviewable_items: "اشیاء جن کا جائزہ لینے کی ضرورت ہے"
mentioned: "{{username}} {{description}}"
@@ -1714,6 +1739,7 @@ ur:
go_back: "واپس جائیں"
not_logged_in_user: "موجودہ سرگرمی کے خلاصہ اور ترجیحات کے ساتھ صفحہِ صارف"
current_user: "اپنے صفحہِ صارف پر جائیں"
+ view_all: "سب دیکھیں"
topics:
new_messages_marker: "آخری وزٹ"
bulk:
@@ -2958,6 +2984,7 @@ ur:
owners: "گروپ مالکان"
description: "ایڈمن تمام گروپس دیکھ سکتے ہیں۔"
members_visibility_levels:
+ title: "کون اِس گروپ کے ممبران کو دیکھ سکتا ہے؟"
description: "ایڈمن تمام گروپس کے ممبران کو دیکھ سکتے ہیں۔"
publish_read_state: "گروپ پیغامات پر گروپ رِیڈ اسٹیٹ شائع کریں۔"
membership:
diff --git a/config/locales/client.vi.yml b/config/locales/client.vi.yml
index bc8428fa1e..8b744a574d 100644
--- a/config/locales/client.vi.yml
+++ b/config/locales/client.vi.yml
@@ -286,6 +286,8 @@ vi:
review:
order_by: "Lọc bởi"
in_reply_to: "trong trả lời tới"
+ explain:
+ total: "Tổng số"
claim_help:
optional: "Bạn có thể phàn nàn mục này để tránh những người khác đánh giá nó."
awaiting_approval: "Đang đợi Phê duyệt"
@@ -1230,7 +1232,6 @@ vi:
title_missing: "Tiêu đề là bắt buộc"
title_too_short: "Tiêu để phải có ít nhất {{min}} ký tự"
title_too_long: "Tiêu đề có tối đa {{max}} ký tự"
- post_missing: "Bài viết không được bỏ trắng"
post_length: "Bài viết phải có ít nhất {{min}} ký tự"
category_missing: "Bạn phải chọn một phân loại"
save_edit: "Lưu chỉnh sửa"
@@ -1245,7 +1246,6 @@ vi:
title_placeholder: "Tóm tắt lại thảo luận này trong một câu ngắn gọn"
title_or_link_placeholder: "Nhập tiêu đề, hoặc dán đường dẫn vào đây"
edit_reason_placeholder: "Tại sao bạn sửa"
- show_edit_reason: "(thêm lý do sửa)"
reply_placeholder: "Gõ ở đây. Sử dụng Markdown, BBCode, hoặc HTML để định dạng. Kéo hoặc dán ảnh."
view_new_post: "Xem bài đăng mới của bạn. "
saving: "Đang lưu"
@@ -1291,7 +1291,6 @@ vi:
title: "thông báo của @name nhắc đến, trả lời bài của bạn và chủ đề, tin nhắn, vv"
none: "Không thể tải các thông báo tại thời điểm này."
empty: "Không có thông báo"
- more: "xem thông báo cũ hơn"
post_approved: "Bài đăng của bạn đã được phê duyệt"
liked_consolidated_description:
other: "đã thích {{count}} bài viết của bạn"
diff --git a/config/locales/client.zh_CN.yml b/config/locales/client.zh_CN.yml
index 8b4949cf9d..68c32d4820 100644
--- a/config/locales/client.zh_CN.yml
+++ b/config/locales/client.zh_CN.yml
@@ -78,6 +78,10 @@ zh_CN:
other: "%{count}小时前"
x_days:
other: "%{count}天前"
+ x_months:
+ other: "%{count}个月前"
+ x_years:
+ other: "%{count}年前"
later:
x_days:
other: "%{count}天后"
@@ -274,6 +278,8 @@ zh_CN:
banner:
close: "隐藏横幅。"
edit: "编辑该横幅 >>"
+ pwa:
+ install_banner: "你想要安装%{title}在此设备上吗?"
choose_topic:
none_found: "没有找到主题。"
title:
@@ -287,6 +293,16 @@ zh_CN:
review:
order_by: "排序依据"
in_reply_to: "回复给"
+ explain:
+ title: "需审核评分"
+ formula: "公式"
+ subtotal: "小计"
+ total: "总请求数"
+ min_score_visibility: "可见时的最低分数"
+ score_to_hide: "隐藏帖子的分数"
+ trust_level_bonus:
+ name: "信任等级"
+ title: "待审阅项目由较高信任级别且具有较高分数的用户创建的。"
claim_help:
optional: "你可以认领此条目以防止他人审核。"
required: "在你审核之前你必须认领此条目。"
@@ -896,6 +912,10 @@ zh_CN:
revoke: "撤销"
cancel: "取消"
not_connected: "(没有连接)"
+ confirm_modal_title: "连接%{provider}帐号"
+ confirm_description:
+ account_specific: "你的%{provider}帐号“%{account_description}”会被用作认证。"
+ generic: "你的%{provider}帐号会被用作认证。"
name:
title: "昵称"
instructions: "你的全名(可选)"
@@ -1136,9 +1156,6 @@ zh_CN:
enabled: "站点正处于只读模式。你可以继续浏览,但是回复、赞和其他操作暂时被禁用。"
login_disabled: "只读模式下不允许登录。"
logout_disabled: "站点在只读模式下无法登出。"
- too_few_topics_and_posts_notice: "让我们开始讨论吧!此站点上共有%{currentTopics}/%{requiredTopics}个主题与%{currentPosts}/%{requiredPosts}个帖子,用户需要进行更多阅读与回帖。仅站点管理员可看见此消息。"
- too_few_topics_notice: "让我们开始讨论吧!此站点上共有%{currentTopics}/%{requiredTopics}个主题,用户需要进行更多阅读与回帖。仅站点管理员可看见此消息。"
- too_few_posts_notice: "让我们开始讨论吧!此站点上共有%{currentPosts}/%{requiredPosts}个帖子,用户需要进行更多阅读与回帖。仅站点管理员可看见此消息。"
logs_error_rate_notice:
reached_hour_MF: "{relativeAge} – {rate, plural, one {# error/hour} other {# errors/hour}}达到了站点设置中的限制{limit, plural, one {# error/hour} other {# errors/hour}}。"
reached_minute_MF: "{relativeAge}1 – {rate, plural, one {# error/minute} other {# errors/minute}}已经达到站点设置限制 {limit, plural, one {# error/minute} other {# errors/minute}}。"
@@ -1288,6 +1305,7 @@ zh_CN:
message: "正在通过 GitHub 帐号验证登录(请确保浏览器没有禁止弹出窗口)"
discord:
name: "Discord"
+ message: "使用Discord验证"
invites:
accept_title: "邀请"
welcome_to: "欢迎来到%{site_name}!"
@@ -1398,6 +1416,7 @@ zh_CN:
try_like: "试试{{heart}}按钮?"
category_missing: "未选择分类"
tags_missing: "你必须至少选择{{count}}个标签"
+ topic_template_not_modified: "请通过编辑主题模板来为主题添加详情。"
save_edit: "保存编辑"
overwrite_edit: "覆盖编辑"
reply_original: "回复原始主题"
@@ -1414,7 +1433,6 @@ zh_CN:
title_placeholder: "一句话概况讨论内容…"
title_or_link_placeholder: "键入标题,或粘贴一个链接在这里"
edit_reason_placeholder: "编辑理由"
- show_edit_reason: "添加理由"
topic_featured_link_placeholder: "在标题里输入链接"
remove_featured_link: "从主题中移除链接。"
reply_placeholder: "在此键入。使用Markdown,BBCode,或HTML格式。可拖拽或粘贴图片。"
@@ -1499,7 +1517,6 @@ zh_CN:
title: "使用@提到你,回复你的内容、私信以及其他的通知"
none: "现在无法载入通知"
empty: "未发现通知"
- more: "看历史通知"
post_approved: "你的帖子已被审核"
reviewable_items: "待审核帖子"
mentioned: "{{username}} {{description}}"
@@ -1524,6 +1541,7 @@ zh_CN:
granted_badge: "获得 “{{description}}”"
topic_reminder: "{{username}} {{description}}"
watching_first_post: "新主题 {{description}}"
+ membership_request_accepted: "接受来自“{{group_name}}”的邀请"
group_message_summary:
other: "{{count}} 条私信在{{group_name}}组的收件箱中"
popup:
@@ -1652,6 +1670,7 @@ zh_CN:
go_back: "返回"
not_logged_in_user: "显示当前活动和设置的用户页面"
current_user: "转到用户页面"
+ view_all: "查看全部"
topics:
new_messages_marker: "上次访问"
bulk:
@@ -1756,6 +1775,7 @@ zh_CN:
group_request: "你需要请求加入`{{name}}`群组才能查看此主题。"
group_join: "你需要加入`{{name}}`群组以查看此主题"
group_request_sent: "你加入群组的请求已发送。当被接受时你会收到通知。"
+ unread_indicator: "还没有成员读过此主题的最新帖子。"
read_more_MF: "还有 { UNREAD, plural, =0 {} one { 1 个未读主题} other { # 个未读主题 } } { NEW, plural, =0 {} one { {BOTH, select, true{和 } false {} other{}} 1 个新主题} other { {BOTH, select, true{和 } false {} other{}} # 个近期主题} }可以阅读,或者{CATEGORY, select, true {浏览{catLink}中的其他主题} false {{latestLink}} other {}}"
browse_all_categories: 浏览所有分类
view_latest_topics: 查阅最新主题
@@ -2114,6 +2134,7 @@ zh_CN:
reply: "开始撰写本帖的回复"
like: "赞一下此帖"
has_liked: "已赞"
+ read_indicator: "阅读了帖子的用户"
undo_like: "取消赞"
edit: "编辑本帖"
edit_action: "编辑"
@@ -2167,6 +2188,7 @@ zh_CN:
notify_user: "发送私信"
bookmark: "收藏"
like: "赞了它"
+ read: "阅读"
like_capped:
other: "和其他 {{count}} 人赞了它"
by_you:
@@ -2264,6 +2286,7 @@ zh_CN:
special_warning: "警告:这个分类是已经自动建立好的分类,它的安全设置不能被更改。如果你不想要使用这个分类,直接删除它,而不是另作他用。"
uncategorized_security_warning: "这是个特殊的分类。如果不知道应该话题属于哪个分类,那么请使用这个分类。这个分类没有安全设置。"
uncategorized_general_warning: '这个分类很特别。它用作未选择分类的新主题的默认分类。如果要阻止此行为并强制选择分类,请在此处禁用此设置。如果要更改名称或说明,请转到自定义/文本内容。'
+ pending_permission_change_alert: "你还没有添加%{group}到此分类;点击此按钮添加。"
images: "图片"
email_in: "自定义进站电子邮件地址:"
email_in_allow_strangers: "接受无账户的匿名用户的邮件"
@@ -2786,6 +2809,8 @@ zh_CN:
view_table: "表格"
view_graph: "图表"
refresh_report: "刷新报告"
+ start_date: "开始日期(UTC)"
+ end_date: "结束日期(UTC)"
groups: "所有群组"
disabled: "此报告已禁用"
totals_for_sample: "总计样本"
@@ -2837,6 +2862,7 @@ zh_CN:
owners: "群组拥有者"
description: "管理员能看到所有群组。"
members_visibility_levels:
+ title: "谁可以看见这个群组的成员?"
description: "管理员可以查看所有群组的成员。"
membership:
automatic: 自动
@@ -2944,6 +2970,7 @@ zh_CN:
details: "当新条目准备审核时及其状态更新时。"
notification_event:
name: "通知事件"
+ details: "当用户在其feed中收到通知时。"
delivery_status:
title: "分发状态"
inactive: "不活跃"
@@ -3266,7 +3293,14 @@ zh_CN:
warning: "这会永久性地覆盖所有相关的站点设置。"
overridden: 你的站点的默认robots.txt文件已被覆盖。
email_style:
+ title: "邮件样式"
+ heading: "自定义邮件样式"
+ html: "HTML模板"
css: "CSS"
+ reset: "重置为默认"
+ reset_confirm: "你确定要重设为默认值%{fieldName}并且丢弃所有修改吗?"
+ save_error_with_reason: "你的修改没有保存。%{error}"
+ instructions: "自定义所有HTML邮件渲染所使用的模板,使用CSS样式化。"
email:
title: "邮件"
settings: "设置"
@@ -3530,6 +3564,9 @@ zh_CN:
upload_successful: "上传成功。敏感词已添加。"
test:
button_label: "测试"
+ modal_title: "测试“%{action}”敏感词"
+ description: "在下方输入文本以检查匹配的敏感词"
+ found_matches: "发现匹配:"
no_matches: "无符合的结果"
impersonate:
title: "检视用户视角"
diff --git a/config/locales/client.zh_TW.yml b/config/locales/client.zh_TW.yml
index 6348984f24..13a7ad64d4 100644
--- a/config/locales/client.zh_TW.yml
+++ b/config/locales/client.zh_TW.yml
@@ -78,6 +78,10 @@ zh_TW:
other: "%{count} 小時前"
x_days:
other: "%{count} 天前"
+ x_months:
+ other: "%{count} 個月前"
+ x_years:
+ other: "%{count} 年前"
later:
x_days:
other: "%{count} 天後"
@@ -201,6 +205,7 @@ zh_TW:
other: "{{count}} 個字元"
related_messages:
title: "相關訊息"
+ see_all: '參閱 @%{username} 的 所有訊息...'
suggested_topics:
title: "推薦的話題"
pm_title: "推薦訊息"
@@ -271,6 +276,8 @@ zh_TW:
banner:
close: "關閉此橫幅"
edit: "編輯此橫幅 >>"
+ pwa:
+ install_banner: "你希望在此裝置上 安裝 %{title} 嗎?"
choose_topic:
none_found: "未找到任何話題。"
title:
@@ -282,7 +289,10 @@ zh_TW:
search: "以標題尋找訊息"
placeholder: "輸入訊息標題"
review:
+ order_by: "排序按照"
in_reply_to: "回覆給"
+ explain:
+ total: "總計"
claim_help:
optional: "您可以聲明此項目以防止其他人審核。"
required: "您必須先審核項目才能查看它們。"
@@ -1338,7 +1348,6 @@ zh_TW:
title_missing: "標題為必填欄位"
title_too_short: "標題必須至少 {{min}} 個字"
title_too_long: "標題不能超過 {{max}} 個字"
- post_missing: "貼文不可空白"
post_length: "貼文必須至少 {{min}} 個字。"
try_like: "您用過{{heart}}了嗎?"
category_missing: "你必須選擇一個分類。"
@@ -1359,7 +1368,6 @@ zh_TW:
title_placeholder: "用一個簡短的句子來描述想討論的內容。"
title_or_link_placeholder: "鍵入標題,或貼上一個連結在這裡"
edit_reason_placeholder: "你為什麼做編輯?"
- show_edit_reason: "(請加入編輯原因)"
topic_featured_link_placeholder: "在標題裡輸入連結"
remove_featured_link: "移除標題裡的連結"
reply_placeholder: "在這裡輸入內文,可以使用 Markdown、BBCode 或 HTML 來格式化文字,也可以拖曳或貼上圖片。"
@@ -1444,7 +1452,6 @@ zh_TW:
title: "當有人以「@使用者名稱」提及您、回覆您的貼文、或是傳送訊息給您的時候通知您的設定。"
none: "目前無法載入通知。"
empty: "未找到任何通知。"
- more: "檢視較舊的通知"
post_approved: "你的貼文已通過"
reviewable_items: "需要審查的項目"
mentioned: "{{username}} {{description}}"
@@ -1484,7 +1491,9 @@ zh_TW:
confirm_body: "成功! 通知已啟用"
custom: "新的通知由{{username}}在%{site_title}"
titles:
+ liked: "新的讚"
watching_first_post: "新話題"
+ liked_consolidated: "新的讚"
post_approved: "貼文已通過審核"
upload_selector:
title: "加入圖片"
@@ -1580,6 +1589,7 @@ zh_TW:
go_back: "返回"
not_logged_in_user: "使用者頁面(包含目前活動及喜好的摘要)"
current_user: "到你的使用者頁面"
+ view_all: "查看全部"
topics:
new_messages_marker: "上次到訪"
bulk:
diff --git a/config/locales/server.be.yml b/config/locales/server.be.yml
index bd5de32316..237dd11792 100644
--- a/config/locales/server.be.yml
+++ b/config/locales/server.be.yml
@@ -910,7 +910,6 @@ be:
disabled_image_download_domains: "Выдаленыя малюнка не будуць загружацца з гэтых даменаў. Pipe коскамі спіс."
editing_grace_period_max_diff_high_trust: "Максімальную колькасць змяненняў сімвалаў, дазволеных для рэдагавання ільготнага перыяду, калі больш змененым крамы іншага паста перагляду (давер ўзроўню 2 і вышэй)"
staff_edit_locks_post: "Паведамленні будуць заблакаваныя ад рэдагавання, калі яны рэдагуюцца супрацоўнікамі"
- post_edit_time_limit: "Аўтар можа змяніць свой пост на працягу (п) хвілін пасля публікацыі. Усталюйце 0 для назаўжды."
edit_history_visible_to_public: "Вырашыць усе, каб убачыць папярэднія версіі рэдагуемага паста. Пры адключэнні толькі могуць праглядаць супрацоўнікі."
delete_removed_posts_after: "Паведамлення выдаленыя аўтарам будуць аўтаматычна выдаленыя пасля таго, як (п) гадзін. Калі ўсталявана значэнне 0, паведамленні будуць неадкладна выдаленыя."
max_image_width: "Максімальная шырыня мініяцюр малюнкаў у пасце"
@@ -1707,8 +1706,6 @@ be:
dashboard_problems:
title: "праблемы Dashboard"
subject_template: "Новыя рэкамендацыі на вашым сайце прыборнай панэлі"
- text_body_template: |-
- У нас ёсць некаторыя новыя парады і рэкамендацыі для Вас, грунтуючыся на бягучых наладах сайта.[Перайсці на ваш сайт панэль] (% {base_url}
new_user_of_the_month:
title: "Вы новы карыстальнік месяцы!"
subject_template: "Вы новы карыстальнік месяцы!"
diff --git a/config/locales/server.ca.yml b/config/locales/server.ca.yml
index 6cab3e9f98..a01e63f1ea 100644
--- a/config/locales/server.ca.yml
+++ b/config/locales/server.ca.yml
@@ -122,7 +122,7 @@ ca:
has_already_been_used: "ja s'ha fet servir"
inclusion: no és inclòs en la llista
invalid: no és vàlid
- is_invalid: "no sembla clar, és una frase sencera?"
+ is_invalid: "no sembla clar. És una frase sencera?"
contains_censored_words: "conté les següents paraules censurades: %{censored_words}"
less_than: "ha de ser menys de %{count}"
less_than_or_equal_to: "ha de ser igual o menor que %{count}"
@@ -235,6 +235,10 @@ ca:
replies:
one: "%{count} resposta"
other: "%{count} respostes"
+ likes:
+ one: "%{count} 'm'agrada'"
+ other: "%{count} 'm'agrada'"
+ last_reply: "Darrera resposta"
created: "Creat"
no_mentions_allowed: "No podeu mencionar altres usuaris"
too_many_mentions:
@@ -269,7 +273,7 @@ ca:
removed_direct_reply_full_quotes: "Citació de tota la publicació anterior eliminada automàticament."
just_posted_that: "és massa semblant al que heu publicat recentment"
invalid_characters: "conté caràcters no vàlids"
- is_invalid: "no sembla clar, és una frase sencera?"
+ is_invalid: "no sembla clar. És una frase sencera?"
next_page: "pàgina següent →"
prev_page: "← pàgina anterior"
page_num: "Pàgina %{num}"
@@ -781,7 +785,7 @@ ca:
others: "Sense preferits."
no_likes_given:
self: "Encara no us ha agradat cap publicació."
- others: "Sense publicacions que us hagin agradat. "
+ others: "Publicacions sense 'm'agrada'."
no_replies:
self: "No heu respost a cap publicació."
others: "No hi ha respostes."
@@ -1259,7 +1263,8 @@ ca:
editing_grace_period_max_diff: "Nombre màxim de canvis de caràcter permesos en el període de gràcia d'edició. Si se'n canvien més, emmagatzema una altra revisió de publicació (nivells de confiança 0 i 1)."
editing_grace_period_max_diff_high_trust: "Nombre màxim de canvis de caràcter permesos en el període de gràcia d'edició. Si se'n canvien més, emmagatzema una altra revisió de publicació (nivells de confiança 2 i superiors)."
staff_edit_locks_post: "Les publicacions seran blocades per a edició si són editades per membres de l'equip responsable."
- post_edit_time_limit: "L'autor pot editar la seva publicació durant (n) minuts després de publicar-la. Poseu a 0 per a temps il·limitat."
+ post_edit_time_limit: "Un autor tl0 o tl1 pot editar la seva publicació durant (n) minuts després de la publicació. Establiu el valor 0 perquè sigui per a sempre."
+ tl2_post_edit_time_limit: "Un autor de nivell de confiança 2 pot editar la seva publicació durant (n) minuts després de la publicació. Establiu el valor 0 perquè sigui per a sempre."
edit_history_visible_to_public: "Permet que qualsevol miri les versions prèvies d'una publicació editada. Si està desactivat, només seran visibles per a membres de l'equip responsable."
delete_removed_posts_after: "Les publicacions eliminades per l'autor se suprimiran automàticament al cap de (n) hores. Si es posa 0, se suprimiran immediatament."
max_image_width: "Amplada màxima de les miniatures d'imatges en una publicació"
@@ -1428,6 +1433,10 @@ ca:
enable_github_logins: "Activa l'autenticació GitHub. Requereix github_client_id i github_client_secret. Vegeu Configuració de l'inici de sessió de GitHub per a Discourse."
github_client_id: "Identificador del client per a l'autenticació GitHub, registrat en https://github.com/settings/developers"
github_client_secret: "Secret del client per a l'autenticació GitHub, registrat en https://github.com/settings/developers"
+ enable_discord_logins: 'S''ha de permetre als usuaris autenticar-se mitjançant Discord?'
+ discord_client_id: 'Identificador de client Discord (si us en cal un, visiteu el portal de desenvolupadors Discord)'
+ discord_secret: 'Clau secreta de Discord'
+ discord_trusted_guilds: 'Permet sols als membres d''aquests gremis Discord iniciar sessió mitjançant Discord. Utilitzeu l''identificador numèric per al gremi. Per a obtenir més informació, consulteu les instruccions aquí. Deixeu-ho en blanc per a permetre qualsevol gremi.'
readonly_mode_during_backup: "Activa el mode només de lectura mentre es fa la còpia de seguretat"
enable_backups: "Permet als administradors crear còpies de seguretat del fòrum"
allow_restore: "Permet restaurar, cosa que pot reemplaçar TOTES les dades del lloc web! Deixeu-ho com a \"fals\" si no preteneu restaurar una còpia de seguretat."
@@ -1729,6 +1738,7 @@ ca:
warn_reviving_old_topic_age: "Es mostra un avís quan algú comença una resposta a un tema on la darrera resposta té més dies que els indicats. Per a inhabilitar-ho, deixeu-ho a 0."
autohighlight_all_code: "Obliga l'ús de codi ressaltat per a tots els blocs de codi preformatat, fins i tot quan no n'hagin especificat el llenguatge."
highlighted_languages: "Regles incloses de ressaltat de sintaxi. (Advertència: incloure-hi massa llenguatges pot afectar el rendiment.) Vegeu: https://highlightjs.org/static/demo per a una demostració."
+ embed_any_origin: "Permet el contingut incrustable independentment de l’origen. Això és necessari per a aplicacions mòbils amb HTML estàtic."
embed_topics_list: "Permet incrustació HTML de llistes de temes"
embed_truncate: "Trunca les publicacions incrustades."
embed_support_markdown: "Admet el format de Markdown per a les publicacions incrustades."
@@ -1977,6 +1987,7 @@ ca:
omniauth_error:
generic: "Ho sentim, s'ha produït un error en autoritzar el vostre compte. Torneu a intentar-ho."
csrf_detected: "L'autorització ha esgotat el temps o heu canviat de navegador. Torneu a intentar-ho."
+ request_error: "S'ha produït un error en iniciar l'autorització. Torneu-ho a provar."
invalid_iat: "No es pot verificar el testimoni d'autorització a causa de les diferències del rellotge del servidor. Torneu a intentar-ho."
omniauth_error_unknown: "Alguna cosa ha fallat en processar l'inici de sessió. Torneu a provar-ho."
omniauth_confirm_title: "Inici de sessió mitjançant %{provider}"
@@ -2144,6 +2155,10 @@ ca:
title: "Publicació amagada una altra vegada"
subject_template: "Publicació amagada per les banderes de la comunitat. S'ha notificat l'equip responsable. "
text_body_template: "Bon dia, \n\nAixò és un missatge automàtic de %{site_name} per a fer-vos saber que la vostra publicació ha estat amagada de nou. \n\n<%{base_url}%{url}>\n\n%{flag_reason} \n\nDiversos membres de la comunitat han marcat amb bandera aquesta publicació i ara és amagada. **Atès que la publicació ha estat amagada més d'una vegada, romandrà amagada fins que no sigui revisada per un membre de l'equip responsable.** \n\nPer a obtenir més informació, consulteu les nostres [directrius comunitàries](%{base_url}/guidelines).\n"
+ flags_disagreed:
+ title: "Publicació marcada amb bandera restablerta per l'equip responsable"
+ subject_template: "Publicació marcada amb bandera restablerta per l'equip responsable"
+ text_body_template: "Bon dia, \n\nAquest és un missatge automatitzat de %{site_name} per a fer-vos saber que [la vostra publicació](%{base_url}%{url}) ha estat restablerta. Aquesta publicació va ser marcada amb bandera per la comunitat i un membre de l'equip responsable ha decidit restablir-la. \n\n[details=\"Feu clic per a ampliar la publicació restablerta\"]\n ```markdown\n%{flagged_post_raw_content}\n```\n[/detalls]\n"
flags_agreed_and_post_deleted:
title: "Publicació marcada amb bandera eliminada per l'equip responsable"
subject_template: "Publicació marcada amb bandera eliminada per l'equip responsable"
@@ -2407,7 +2422,7 @@ ca:
dashboard_problems:
title: "Problemes del tauler de control"
subject_template: "Nou consell al tauler de control del vostre lloc web"
- text_body_template: "Tenim uns quants consells i recomanacions basats en la configuració actual del lloc web. \n\nVisiteu el [tauler de control del lloc web](%{base_url}/admin) per a veure-ho.\n"
+ text_body_template: "Tenim uns quants consells i recomanacions basats en la configuració actual del lloc web. \n\nVisiteu el [tauler de control del lloc web](%{base_url}/admin) per a veure-ho.\n\nSi no hi ha res visible en el tauler de control, algun altre membre del personal responsable pot haver actuat segons aquestes recomanacions. Es pot veure una llista d'accions de l'equip responsable en el [registre d'accions de l'equip responsable](%{base_url}/admin/logs/staff_action_logs).\n"
new_user_of_the_month:
title: "Sou el nou usuari del mes!"
subject_template: "Sou un nou usuari del mes!"
@@ -2815,10 +2830,10 @@ ca:
Edita la primera publicació en aquest tema per a canviar els continguts de la pàgina %{page_name}.
guidelines_topic:
title: "Guies/PMF"
- body: " \n\n## [Aquest és un lloc web civilitzat per a la discussió pública](#civilized)\n\nTracteu aquest fòrum de discussió amb el mateix respecte amb què tractaríeu un parc públic. Nosaltres també som un recurs comunitari compartit: un lloc web per a compartir habilitats, coneixements i interessos mitjançant una conversa permanent. \n\nAquestes normes no són rígides i estrictes, sinó pautes per a ajudar el judici humà de la nostra comunitat i mantenir aquest lloc web net i endreçat per al debat públic civilitzat. \n\n\n\n## [Millorem la discussió](#improve)\n\nAjudeu-nos a fer d'aquest lloc web un lloc web ideal per a la discussió treballant sempre per millorar la discussió d'alguna manera, encara que sigui poca cosa. Si no esteu segur que la vostra publicació contribueix a la conversa d'alguna manera, penseu en el que voleu dir i torneu-ho a provar més tard.\n\nEls temes tractats aquí ens importen, i volem que actueu com si també us importessin. Sigueu respectuós amb els temes i les persones que els discuteixen, fins i tot si no esteu d'acord amb alguna cosa del que es diu.\n\nUna manera de millorar la discussió és descobrir les que ja estan en marxa. Dediqueu algun temps a navegar pels temes abans de respondre o de començar el vostre propi, i tindreu més possibilitats de conèixer altres persones que comparteixen els vostres interessos. \n\n\n\n## [Sigueu amable, fins i tot quan no esteu d'acord](#agreeable)\n\nPotser voleu respondre a alguna cosa mostrant-vos en desacord. Això està bé. Però no oblideu _criticar idees, no persones_. Eviteu:\n\n* els insults\n* els atacs _ad hominem_\n* respondre al to d'una publicació en comptes del seu contingut\n* la rèplica instintiva, reflexa\n\nEn lloc web d'això, proporcioneu contraarguments raonats que millorin la conversa.\n\n\n\n## [Els vostres comptes de participació](#participate)\n\nLes converses que tenim aquí estableixen el to per a cada nouvingut. Ajudeu-nos a influir en el futur d'aquesta comunitat triant converses que facin d'aquest fòrum un lloc web interessant, i evitant les que no ho fan.\n\nDiscourse proporciona eines que permeten a la comunitat identificar col·lectivament les millors (i les pitjors) contribucions: adreces d'interès, gustos, banderes, respostes, edicions, etc. Utilitzeu aquestes eines per a millorar la vostra pròpia experiència i la de tothom.\n\nDeixem la comunitat millor que com l'hem trobada.\n\n\n\n## [Si veieu un problema, marqueu-ho amb una bandera](#flag-problems)\n\nEls moderadors tenen una autoritat especial; són els responsables del fòrum. Però vós també. Amb la vostra ajuda, els moderadors poden ser facilitadors de la comunitat, no sols els vigilants o els policies. \n\nQuan vegeu un mal comportament, no respongueu. Això fomenta el mal comportament reconeixent-lo, consumeix la vostra energia i fa perdre el temps de tothom. _Simplement marca-ho amb una bandera_. Si s'acumulen prou banderes, es durà a terme una acció, de manera automàtica o bé amb la intervenció del moderador. \n\nPer a mantenir la comunitat, els moderadors es reserven el dret d'eliminar qualsevol contingut i qualsevol compte d'usuari per qualsevol motiu en qualsevol moment. Els moderadors no previsualitzen les publicacions noves; els moderadors i els operadors del lloc web no es responsabilitzen dels continguts publicats per la comunitat. \n\n\n\n## [Sigeu sempre educat](#be-civil)\n\nNo hi ha res que espatlli una conversa sana com la grolleria: \n* Sigueu educat. No publiqueu res que una persona raonable consideri un discurs ofensiu, abusiu o d'odi.\n* Manteniu-ho net. No publiqueu res obscè o sexualment explícit.\n* Respecteu-vos mútuament. No assetgeu ni ofengueu a ningú, no suplanteu cap persona ni exposeu la seva informació privada. \n* Respecteu el nostre fòrum. No publiqueu correu brossa ni feu actes vandàlics en el fòrum. \n\nNo són termes concrets amb definicions precises: eviteu la mera _aparença_ de qualsevol d'aquestes coses. Si no esteu segur, pregunteu-vos com us sentiríeu si la vostra publicació aparegués a la primera pàgina del New York Times. \n\nAquest és un fòrum públic i els motors de cerca indexen aquestes discussions. Manteniu el llenguatge, els enllaços i les imatges segurs per a familiars i amics. \n\n\n\n## [Manteniu les coses endreçades](#keep-tidy)\n\nFeu l'esforç de posar les coses al lloc web adequat, de manera que puguem dedicar més temps a parlar i menys a netejar. Així: \n* No inicieu un tema en la categoria incorrecta. \n* No publiqueu el mateix de manera encreuada en diversos temes. \n* No publiqueu respostes sense contingut. \n* No desvieu un tema canviant-lo a mitjan conversa. \n* No signeu les vostres publicacions: cada entrada té la vostra informació de perfil adjunta. \n\nEn lloc web de publicar \"+1\" o \"D'acord\", utilitzeu el botó 'M'agrada'. En lloc web de portar un tema existent en una direcció radicalment diferent, utilitzeu 'Respon com a tema enllaçat'. \n\n\n\n## [Publiqueu sols les vostres coses](#stealing)\n\nNo podeu publicar res digital que pertanyi a algú sense permís. No podeu publicar descripcions, enllaços o mètodes per a robar la propietat intel·lectual d'algú (programari, vídeo, àudio, imatges) o per a violar qualsevol altra llei. \n\n\n\n## [Amb el vostre suport](#power)\n\nAquest lloc web és operat per l'[equip responsable](%{base_path}/about) i la comunitat. Si teniu més preguntes sobre com funcionen les coses aquí, obriu un tema nou a la [secció de comentaris sobre el lloc web](%{base_path}/c/site-feedback) i en parlem! Si hi ha un problema crític o urgent que no pot ser manejat per un metatema o una bandera, poseu-vos en contacte amb nosaltres en la [pàgina de l'equip responsable](%{base_path}/about). \n\n\n\n## [Condicions del servei](#tos) Sí, el burocratès és avorrit, però hem de protegir-nos a nosaltres —i per extensió, a vosaltres i les vostres dades— contra gent poc amigable. Tenim unes [condicions del servei](%{base_path}/tos) que descriuen el vostre (i el nostre) comportament i els drets relacionats amb el contingut, la privacitat i les lleis. Per a utilitzar aquest servei, heu d'acceptar les nostres [condicions del servei](%{base_path}/tos).\n"
+ body: " \n\n## [Aquest és un lloc web civilitzat per a la discussió pública](#civilized)\n\nTracteu aquest fòrum de discussió amb el mateix respecte amb què tractaríeu un parc públic. Nosaltres també som un recurs comunitari compartit: un lloc web per a compartir habilitats, coneixements i interessos mitjançant una conversa permanent. \n\nAquestes normes no són rígides i estrictes, sinó pautes per a ajudar el judici humà de la nostra comunitat i mantenir aquest lloc web net i endreçat per al debat públic civilitzat. \n\n\n\n## [Millorem la discussió](#improve)\n\nAjudeu-nos a fer d'aquest lloc web un lloc web ideal per a la discussió treballant sempre per millorar la discussió d'alguna manera, encara que sigui poca cosa. Si no esteu segur que la vostra publicació contribueix a la conversa d'alguna manera, penseu en el que voleu dir i torneu-ho a provar més tard.\n\nEls temes tractats aquí ens importen, i volem que actueu com si també us importessin. Sigueu respectuós amb els temes i les persones que els discuteixen, fins i tot si no esteu d'acord amb alguna cosa del que es diu.\n\nUna manera de millorar la discussió és descobrir les que ja estan en marxa. Dediqueu algun temps a navegar pels temes abans de respondre o de començar el vostre propi, i tindreu més possibilitats de conèixer altres persones que comparteixen els vostres interessos. \n\n\n\n## [Sigueu amable, fins i tot quan no esteu d'acord](#agreeable)\n\nPotser voleu respondre a alguna cosa mostrant-vos en desacord. Això està bé. Però no oblideu _criticar idees, no persones_. Eviteu:\n\n* els insults\n* els atacs _ad hominem_\n* respondre al to d'una publicació en comptes del seu contingut\n* la rèplica instintiva, reflexa\n\nEn lloc d'això, proporcioneu contraarguments raonats que millorin la conversa.\n\n\n\n## [Els vostres comptes de participació](#participate)\n\nLes converses que tenim aquí estableixen el to per a cada nouvingut. Ajudeu-nos a influir en el futur d'aquesta comunitat triant converses que facin d'aquest fòrum un lloc web interessant, i evitant les que no ho fan.\n\nDiscourse proporciona eines que permeten a la comunitat identificar col·lectivament les millors (i les pitjors) contribucions: adreces d'interès, gustos, banderes, respostes, edicions, etc. Utilitzeu aquestes eines per a millorar la vostra pròpia experiència i la de tothom.\n\nDeixem la comunitat millor que com l'hem trobada.\n\n\n\n## [Si veieu un problema, marqueu-ho amb una bandera](#flag-problems)\n\nEls moderadors tenen una autoritat especial; són els responsables del fòrum. Però vós també. Amb la vostra ajuda, els moderadors poden ser facilitadors de la comunitat, no sols els vigilants o els policies. \n\nQuan vegeu un mal comportament, no respongueu. Això fomenta el mal comportament reconeixent-lo, consumeix la vostra energia i fa perdre el temps de tothom. _Simplement marca-ho amb una bandera_. Si s'acumulen prou banderes, es durà a terme una acció, de manera automàtica o bé amb la intervenció del moderador. \n\nPer a mantenir la comunitat, els moderadors es reserven el dret d'eliminar qualsevol contingut i qualsevol compte d'usuari per qualsevol motiu en qualsevol moment. Els moderadors no previsualitzen les publicacions noves; els moderadors i els operadors del lloc web no es responsabilitzen dels continguts publicats per la comunitat. \n\n\n\n## [Sigeu sempre educat](#be-civil)\n\nNo hi ha res que espatlli una conversa sana com la grolleria: \n* Sigueu educat. No publiqueu res que una persona raonable consideri un discurs ofensiu, abusiu o d'odi.\n* Manteniu-ho net. No publiqueu res obscè o sexualment explícit.\n* Respecteu-vos mútuament. No assetgeu ni ofengueu a ningú, no suplanteu cap persona ni exposeu la seva informació privada. \n* Respecteu el nostre fòrum. No publiqueu correu brossa ni feu actes vandàlics en el fòrum. \n\nNo són termes concrets amb definicions precises: eviteu la mera _aparença_ de qualsevol d'aquestes coses. Si no esteu segur, pregunteu-vos com us sentiríeu si la vostra publicació aparegués a la primera pàgina del New York Times. \n\nAquest és un fòrum públic i els motors de cerca indexen aquestes discussions. Manteniu el llenguatge, els enllaços i les imatges segurs per a familiars i amics. \n\n\n\n## [Manteniu les coses endreçades](#keep-tidy)\n\nFeu l'esforç de posar les coses al lloc web adequat, de manera que puguem dedicar més temps a parlar i menys a netejar. Així: \n* No inicieu un tema en la categoria incorrecta. \n* No publiqueu el mateix de manera encreuada en diversos temes. \n* No publiqueu respostes sense contingut. \n* No desvieu un tema canviant-lo a mitjan conversa. \n* No signeu les vostres publicacions: cada entrada té la vostra informació de perfil adjunta. \n\nEn lloc web de publicar \"+1\" o \"D'acord\", utilitzeu el botó 'M'agrada'. En lloc web de portar un tema existent en una direcció radicalment diferent, utilitzeu 'Respon com a tema enllaçat'. \n\n\n\n## [Publiqueu sols les vostres coses](#stealing)\n\nNo podeu publicar res digital que pertanyi a algú sense permís. No podeu publicar descripcions, enllaços o mètodes per a robar la propietat intel·lectual d'algú (programari, vídeo, àudio, imatges) o per a violar qualsevol altra llei. \n\n\n\n## [Amb el vostre suport](#power)\n\nAquest lloc web és operat per l'[equip responsable](%{base_path}/about) i la comunitat. Si teniu més preguntes sobre com funcionen les coses aquí, obriu un tema nou a la [secció de comentaris sobre el lloc web](%{base_path}/c/site-feedback) i en parlem! Si hi ha un problema crític o urgent que no pot ser manejat per un metatema o una bandera, poseu-vos en contacte amb nosaltres en la [pàgina de l'equip responsable](%{base_path}/about). \n\n\n\n## [Condicions del servei](#tos) \n\nSí, el burocratès és avorrit, però hem de protegir-nos a nosaltres —i per extensió, a vosaltres i les vostres dades— contra gent poc amigable. Tenim unes [condicions del servei](%{base_path}/tos) que descriuen el vostre (i el nostre) comportament i els drets relacionats amb el contingut, la privacitat i les lleis. Per a utilitzar aquest servei, heu d'acceptar les nostres [condicions del servei](%{base_path}/tos).\n"
tos_topic:
title: "Condicions del servei"
- body: "Aquestes condicions regeixen l'ús del fòrum d'Internet en <%{base_url}>. Per a utilitzar el fòrum, heu d'acceptar aquests termes amb %{company_name}, la companyia que porta el fòrum. \n\nL'empresa pot oferir altres productes i serveis sota diferents condicions. Aquestes condicions solament s'apliquen a l'ús del fòrum. \n\nSalteu a: \n- [Condicions importants](#heading--permission)\n- [El vostre permís per a utilitzar el fòrum](#heading--permission) \n- [Condicions d'ús del fòrum](#heading--conditions) \n- [Ús acceptable](#heading--acceptable-use) \n- [Normes de contingut](#heading--content-standards) \n- [Aplicació](#heading-enforcement) \n- [El vostre compte](#heading--your-account) \n- [El vostre contingut](#heading--your-account) \n- [La vostra responsabilitat](#heading--your-responsibility) \n- [Exempció de responsabilitat](#heading--disclaimers) \n- [Límits de responsabilitat](#heading--liability) \n- [Comentaris](#heading--feedback)\n- [Terminació](#heading--termination) \n- [Disputes](#heading--disputes) \n- [Condicions generals](#heading--general) \n- [Contacte](#heading-contact) \n- [Canvis](#heading--changes) \n\n\n***Aquestes condicions inclouen una sèrie de disposicions importants que afecten els vostres drets i responsabilitats, com ara les renúncies a [exempcions de responsabilitat](#heading--disclaimers), límits en la responsabilitat de l'empresa respecte a vós en [Límit de responsabilitat](#heading--liability), el vostre consentiment a cobrir l'empresa per danys causats pel vostre ús indegut del fòrum en [La vostra responsabilitat](#heading--responsibility) i un acord d'arbitratge de controvèrsies en [Disputes](#header--disputes).***\n\n \n\nSegons aquestes condicions, l'empresa us dóna permís per a utilitzar el fòrum. Tothom ha d'acceptar aquestes condicions per a fer servir el fòrum. \n\n \n\nEl permís que se us dóna per a utilitzar el fòrum està subjecte a les condicions següents: \n\n1. Heu de tenir almenys tretze anys. \n\n2. No podreu fer servir més el fòrum si l'empresa es posa en contacte directament amb vós per a dir-vos que no podeu. \n\n3. Heu d'utilitzar el fòrum d'acord amb l'[Ús acceptable](#heading--acceptable-use) i les [Normes de contingut](#heading--content-standards).\n\n \n\n1. No heu d'infringir la llei fent servir el fòrum. \n\n2. No podeu utilitzar o intentar utilitzar el compte d'altres persones en el fòrum sense el seu permís específic. \n\n3. No podeu comprar, vendre o comerciar en noms d'usuari o altres identificadors únics en el fòrum. \n\n4. No podeu enviar anuncis, cartes en cadena ni altres sol·licituds per mitjà del fòrum ni utilitzar el fòrum per a recopilar adreces o altres dades personals per a llistes de correu comercials o bases de dades. \n\n5. No podeu automatitzar l'accés al fòrum ni monitorar el fòrum, com ara amb un rastrejador web, un complement o connector del navegador, o un altre programa d'ordinador que no sigui un navegador web. Podeu rastrejar el fòrum per a indexar-lo per a un motor de cerca disponible públicament, si en gestioneu un. \n\n6. No podeu fer servir el fòrum per a enviar correu electrònic a llistes de distribució, grups de notícies o àlies de correu de grup. \n\n7. No podeu induir a pensar falsament que esteu afiliats amb la companyia o que teniu el seu suport. \n\n8. No podeu enllaçar a imatges o altres continguts que no siguin hipertext del fòrum en altres pàgines web. \n\n9. No podeu suprimir cap marca que mostri la propietat propietària dels materials que baixeu del fòrum. \n\n10. No podeu mostrar cap part del fòrum a altres llocs web amb `