From b8837d57820368b52417618b45f67078670a417b Mon Sep 17 00:00:00 2001 From: Claire Date: Mon, 23 Mar 2026 11:32:41 +0100 Subject: [PATCH 1/8] Change media description length limit for remote media attachments from 1500 to 10000 characters (#37921) --- FEDERATION.md | 1 + app/lib/activitypub/parser/media_attachment_parser.rb | 2 +- app/models/media_attachment.rb | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/FEDERATION.md b/FEDERATION.md index c98f5924cf..076c8f9856 100644 --- a/FEDERATION.md +++ b/FEDERATION.md @@ -66,3 +66,4 @@ The following table attempts to summary those limits. | Account `attributionDomains` | 256 | List will be truncated | | Account aliases (actor `alsoKnownAs`) | 256 | List will be truncated | | Custom emoji shortcode (`Emoji` `name`) | 2048 | Emoji will be rejected | +| Media descriptions (`name`/`summary`) | 10000 | Description will be truncated | diff --git a/app/lib/activitypub/parser/media_attachment_parser.rb b/app/lib/activitypub/parser/media_attachment_parser.rb index 1f4f43cb15..2212c24c45 100644 --- a/app/lib/activitypub/parser/media_attachment_parser.rb +++ b/app/lib/activitypub/parser/media_attachment_parser.rb @@ -30,7 +30,7 @@ class ActivityPub::Parser::MediaAttachmentParser def description str = @json['summary'].presence || @json['name'].presence - str = str.strip[0...MediaAttachment::MAX_DESCRIPTION_LENGTH] if str.present? + str = str.strip[0...MediaAttachment::MAX_DESCRIPTION_HARD_LENGTH_LIMIT] if str.present? str end diff --git a/app/models/media_attachment.rb b/app/models/media_attachment.rb index f5407ca210..f69bfe06ee 100644 --- a/app/models/media_attachment.rb +++ b/app/models/media_attachment.rb @@ -38,6 +38,7 @@ class MediaAttachment < ApplicationRecord enum :processing, { queued: 0, in_progress: 1, complete: 2, failed: 3 }, prefix: true MAX_DESCRIPTION_LENGTH = 1_500 + MAX_DESCRIPTION_HARD_LENGTH_LIMIT = 10_000 IMAGE_LIMIT = 16.megabytes VIDEO_LIMIT = 99.megabytes From 76a1fb02a7a728c092d534e9e3363cbc4be75a69 Mon Sep 17 00:00:00 2001 From: Claire Date: Mon, 16 Mar 2026 11:00:08 +0100 Subject: [PATCH 2/8] Fixes some model definitions in `tootctl maintenance fix-duplicates` (#38214) --- lib/mastodon/cli/maintenance.rb | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/lib/mastodon/cli/maintenance.rb b/lib/mastodon/cli/maintenance.rb index 532fbc328a..29f8998d85 100644 --- a/lib/mastodon/cli/maintenance.rb +++ b/lib/mastodon/cli/maintenance.rb @@ -26,7 +26,6 @@ module Mastodon::CLI class ListAccount < ApplicationRecord; end class PollVote < ApplicationRecord; end class Mention < ApplicationRecord; end - class Notification < ApplicationRecord; end class NotificationPermission < ApplicationRecord; end class NotificationRequest < ApplicationRecord; end class AccountDomainBlock < ApplicationRecord; end @@ -40,8 +39,6 @@ module Mastodon::CLI class CanonicalEmailBlock < ApplicationRecord; end class Appeal < ApplicationRecord; end class Webhook < ApplicationRecord; end - class BulkImport < ApplicationRecord; end - class SoftwareUpdate < ApplicationRecord; end class SeveredRelationship < ApplicationRecord; end class TagFollow < ApplicationRecord; end @@ -58,6 +55,18 @@ module Mastodon::CLI self.inheritance_column = nil end + class Notification < ApplicationRecord + self.inheritance_column = nil + end + + class BulkImport < ApplicationRecord + self.inheritance_column = nil + end + + class SoftwareUpdate < ApplicationRecord + self.inheritance_column = nil + end + class AccountStat < ApplicationRecord belongs_to :account, inverse_of: :account_stat end From f3bdd4cca7fc83f0165b56ce74f5a0b152916430 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 11:44:51 +0100 Subject: [PATCH 3/8] New Crowdin Translations for stable-4.3 (automated) (#38342) Co-authored-by: GitHub Actions --- app/javascript/mastodon/locales/ast.json | 1 + app/javascript/mastodon/locales/be.json | 16 +- app/javascript/mastodon/locales/ca.json | 2 +- app/javascript/mastodon/locales/cs.json | 2 +- app/javascript/mastodon/locales/cy.json | 6 +- app/javascript/mastodon/locales/da.json | 72 +- app/javascript/mastodon/locales/de.json | 262 +-- app/javascript/mastodon/locales/el.json | 210 +-- app/javascript/mastodon/locales/en-GB.json | 24 +- app/javascript/mastodon/locales/eo.json | 2 +- app/javascript/mastodon/locales/es-AR.json | 40 +- app/javascript/mastodon/locales/es-MX.json | 78 +- app/javascript/mastodon/locales/et.json | 162 +- app/javascript/mastodon/locales/eu.json | 13 +- app/javascript/mastodon/locales/fa.json | 20 +- app/javascript/mastodon/locales/fi.json | 114 +- app/javascript/mastodon/locales/fil.json | 9 + app/javascript/mastodon/locales/fo.json | 12 +- app/javascript/mastodon/locales/fr-CA.json | 34 +- app/javascript/mastodon/locales/fr.json | 98 +- app/javascript/mastodon/locales/ga.json | 44 +- app/javascript/mastodon/locales/gd.json | 2 +- app/javascript/mastodon/locales/gl.json | 4 +- app/javascript/mastodon/locales/he.json | 2 +- app/javascript/mastodon/locales/hi.json | 1 + app/javascript/mastodon/locales/hr.json | 1 + app/javascript/mastodon/locales/ia.json | 4 +- app/javascript/mastodon/locales/is.json | 10 +- app/javascript/mastodon/locales/it.json | 40 +- app/javascript/mastodon/locales/kab.json | 4 + app/javascript/mastodon/locales/kk.json | 1 + app/javascript/mastodon/locales/ko.json | 68 +- app/javascript/mastodon/locales/ku.json | 2 +- app/javascript/mastodon/locales/la.json | 71 +- app/javascript/mastodon/locales/lad.json | 6 + app/javascript/mastodon/locales/lt.json | 108 +- app/javascript/mastodon/locales/lv.json | 57 +- app/javascript/mastodon/locales/nan-TW.json | 815 +++++++++ app/javascript/mastodon/locales/nl.json | 8 +- app/javascript/mastodon/locales/nn.json | 12 +- app/javascript/mastodon/locales/no.json | 17 +- app/javascript/mastodon/locales/oc.json | 25 +- app/javascript/mastodon/locales/pa.json | 24 +- app/javascript/mastodon/locales/pl.json | 16 +- app/javascript/mastodon/locales/pt-BR.json | 168 +- app/javascript/mastodon/locales/pt-PT.json | 76 +- app/javascript/mastodon/locales/ru.json | 2 +- app/javascript/mastodon/locales/sv.json | 4 +- app/javascript/mastodon/locales/szl.json | 34 +- app/javascript/mastodon/locales/tok.json | 78 +- app/javascript/mastodon/locales/tr.json | 22 +- app/javascript/mastodon/locales/ug.json | 11 + app/javascript/mastodon/locales/uk.json | 8 +- app/javascript/mastodon/locales/vi.json | 166 +- app/javascript/mastodon/locales/zh-CN.json | 16 +- app/javascript/mastodon/locales/zh-TW.json | 166 +- config/locales/activerecord.de.yml | 4 +- config/locales/activerecord.en-GB.yml | 8 +- config/locales/activerecord.es-AR.yml | 2 +- config/locales/activerecord.fr.yml | 4 +- config/locales/activerecord.lad.yml | 1 + config/locales/activerecord.lt.yml | 2 +- config/locales/activerecord.ms.yml | 4 + config/locales/activerecord.nan-TW.yml | 16 + config/locales/activerecord.no.yml | 2 + config/locales/be.yml | 6 +- config/locales/br.yml | 15 + config/locales/cs.yml | 2 +- config/locales/cy.yml | 10 +- config/locales/da.yml | 126 +- config/locales/de.yml | 282 +-- config/locales/devise.da.yml | 8 +- config/locales/devise.de.yml | 2 +- config/locales/devise.el.yml | 10 +- config/locales/devise.en-GB.yml | 30 +- config/locales/devise.es-AR.yml | 4 +- config/locales/devise.et.yml | 12 +- config/locales/devise.fi.yml | 2 +- config/locales/devise.fr.yml | 2 +- config/locales/devise.ko.yml | 2 +- config/locales/devise.lv.yml | 8 +- config/locales/devise.nan-TW.yml | 23 + config/locales/doorkeeper.de.yml | 8 +- config/locales/doorkeeper.el.yml | 44 +- config/locales/doorkeeper.en-GB.yml | 4 +- config/locales/doorkeeper.es-AR.yml | 8 +- config/locales/doorkeeper.es-MX.yml | 12 +- config/locales/doorkeeper.et.yml | 10 +- config/locales/doorkeeper.fi.yml | 6 +- config/locales/doorkeeper.lv.yml | 6 +- config/locales/doorkeeper.nan-TW.yml | 17 + config/locales/doorkeeper.no.yml | 2 + config/locales/doorkeeper.pt-BR.yml | 2 +- config/locales/doorkeeper.pt-PT.yml | 6 +- config/locales/doorkeeper.vi.yml | 10 +- config/locales/el.yml | 240 +-- config/locales/en-GB.yml | 98 +- config/locales/eo.yml | 4 +- config/locales/es-AR.yml | 56 +- config/locales/es-MX.yml | 96 +- config/locales/es.yml | 12 +- config/locales/et.yml | 72 +- config/locales/eu.yml | 39 + config/locales/fa.yml | 24 +- config/locales/fi.yml | 188 +- config/locales/fr-CA.yml | 12 +- config/locales/fr.yml | 24 +- config/locales/gl.yml | 2 +- config/locales/hu.yml | 22 +- config/locales/ia.yml | 2 +- config/locales/is.yml | 48 +- config/locales/it.yml | 44 +- config/locales/kab.yml | 18 + config/locales/ko.yml | 10 +- config/locales/lad.yml | 5 + config/locales/lt.yml | 104 +- config/locales/lv.yml | 94 +- config/locales/nan-TW.yml | 1756 +++++++++++++++++++ config/locales/nl.yml | 6 +- config/locales/nn.yml | 6 +- config/locales/no.yml | 6 +- config/locales/pt-BR.yml | 21 +- config/locales/pt-PT.yml | 40 +- config/locales/ru.yml | 436 +++-- config/locales/simple_form.be.yml | 8 +- config/locales/simple_form.cy.yml | 2 +- config/locales/simple_form.da.yml | 12 +- config/locales/simple_form.de.yml | 78 +- config/locales/simple_form.el.yml | 120 +- config/locales/simple_form.en-GB.yml | 58 +- config/locales/simple_form.eo.yml | 4 +- config/locales/simple_form.es-AR.yml | 18 +- config/locales/simple_form.es-MX.yml | 4 +- config/locales/simple_form.et.yml | 26 +- config/locales/simple_form.eu.yml | 2 + config/locales/simple_form.fa.yml | 2 +- config/locales/simple_form.fi.yml | 26 +- config/locales/simple_form.fr.yml | 6 +- config/locales/simple_form.is.yml | 2 +- config/locales/simple_form.it.yml | 2 +- config/locales/simple_form.kab.yml | 3 + config/locales/simple_form.ko.yml | 4 +- config/locales/simple_form.lad.yml | 3 + config/locales/simple_form.lt.yml | 35 +- config/locales/simple_form.lv.yml | 6 +- config/locales/simple_form.nan-TW.yml | 12 + config/locales/simple_form.nl.yml | 4 +- config/locales/simple_form.no.yml | 2 + config/locales/simple_form.pt-BR.yml | 10 +- config/locales/simple_form.pt-PT.yml | 12 +- config/locales/simple_form.ru.yml | 80 +- config/locales/simple_form.tr.yml | 2 +- config/locales/simple_form.uk.yml | 6 +- config/locales/simple_form.vi.yml | 8 +- config/locales/simple_form.zh-CN.yml | 12 +- config/locales/simple_form.zh-TW.yml | 14 +- config/locales/sq.yml | 2 +- config/locales/th.yml | 14 +- config/locales/uk.yml | 12 +- config/locales/vi.yml | 22 +- config/locales/zh-CN.yml | 50 +- config/locales/zh-TW.yml | 6 +- 162 files changed, 5568 insertions(+), 2598 deletions(-) create mode 100644 app/javascript/mastodon/locales/nan-TW.json create mode 100644 config/locales/activerecord.nan-TW.yml create mode 100644 config/locales/devise.nan-TW.yml create mode 100644 config/locales/doorkeeper.nan-TW.yml create mode 100644 config/locales/nan-TW.yml create mode 100644 config/locales/simple_form.nan-TW.yml diff --git a/app/javascript/mastodon/locales/ast.json b/app/javascript/mastodon/locales/ast.json index 01430c9e2d..532109876f 100644 --- a/app/javascript/mastodon/locales/ast.json +++ b/app/javascript/mastodon/locales/ast.json @@ -65,6 +65,7 @@ "admin.dashboard.retention.average": "Media", "admin.dashboard.retention.cohort": "Mes de rexistru", "admin.dashboard.retention.cohort_size": "Perfiles nuevos", + "admin.impact_report.instance_followers": "Seguidores que perderíen los nuestros usuarios", "alert.rate_limited.message": "Volvi tentalo dempués de la hora: {retry_time, time, medium}.", "alert.unexpected.message": "Prodúxose un error inesperáu.", "alert.unexpected.title": "¡Meca!", diff --git a/app/javascript/mastodon/locales/be.json b/app/javascript/mastodon/locales/be.json index 3da1c2f7d6..2ec36487bf 100644 --- a/app/javascript/mastodon/locales/be.json +++ b/app/javascript/mastodon/locales/be.json @@ -21,7 +21,7 @@ "account.blocked": "Заблакіраваны", "account.cancel_follow_request": "Скасаваць запыт на падпіску", "account.copy": "Скапіраваць спасылку на профіль", - "account.direct": "Згадаць асабіста @{name}", + "account.direct": "Згадаць прыватна @{name}", "account.disable_notifications": "Не паведамляць мне пра публікацыі @{name}", "account.domain_blocked": "Дамен заблакіраваны", "account.edit_profile": "Рэдагаваць профіль", @@ -150,7 +150,7 @@ "compose.published.open": "Адкрыць", "compose.saved.body": "Допіс захаваны.", "compose_form.direct_message_warning_learn_more": "Даведацца больш", - "compose_form.encryption_warning": "Допісы ў Mastodon не абаронены скразным шыфраваннем. Не дзяліцеся ніякай канфідэнцыяльнай інфармацыяй праз Mastodon.", + "compose_form.encryption_warning": "Допісы ў Mastodon не абароненыя скразным шыфраваннем. Не дзяліцеся ніякай канфідэнцыяльнай інфармацыяй праз Mastodon.", "compose_form.hashtag_warning": "Гэты допіс не будзе паказаны пад аніякім хэштэгам, бо ён не публічны. Толькі публічныя допісы можна знайсці па хэштэгу.", "compose_form.lock_disclaimer": "Ваш уліковы запіс не {locked}. Усе могуць падпісацца на вас, каб бачыць допісы толькі для падпісчыкаў.", "compose_form.lock_disclaimer.lock": "закрыты", @@ -187,7 +187,7 @@ "confirmations.logout.title": "Выйсці?", "confirmations.mute.confirm": "Ігнараваць", "confirmations.redraft.confirm": "Выдаліць і перапісаць", - "confirmations.redraft.message": "Вы ўпэўнены, што хочаце выдаліць допіс і перапісаць яго? Упадабанні і пашырэнні згубяцца, а адказы да арыгінальнага допісу асірацеюць.", + "confirmations.redraft.message": "Вы ўпэўненыя, што хочаце выдаліць допіс і перапісаць яго? Упадабанні і пашырэнні згубяцца, а адказы да арыгінальнага допісу асірацеюць.", "confirmations.redraft.title": "Выдаліць і перапісаць допіс?", "confirmations.reply.confirm": "Адказаць", "confirmations.reply.message": "Калі вы адкажаце зараз, гэта ператрэ паведамленне, якое вы пішаце. Вы ўпэўнены, што хочаце працягнуць?", @@ -330,7 +330,7 @@ "follow_suggestions.similar_to_recently_followed_longer": "Падобныя профілі, за якімі Вы нядаўна сачылі", "follow_suggestions.view_all": "Праглядзець усё", "follow_suggestions.who_to_follow": "На каго падпісацца", - "followed_tags": "Падпіскі", + "followed_tags": "Падпіскі на хэштэгі", "footer.about": "Пра нас", "footer.directory": "Дырэкторыя профіляў", "footer.get_app": "Спампаваць праграму", @@ -522,9 +522,9 @@ "notification.moderation_warning": "Вы атрымалі папярэджанне ад мадэратараў", "notification.moderation_warning.action_delete_statuses": "Некаторыя Вашыя допісы былі выдаленыя.", "notification.moderation_warning.action_disable": "Ваш уліковы запіс быў адключаны.", - "notification.moderation_warning.action_mark_statuses_as_sensitive": "Некаторыя з вашых допісаў былі пазначаныя як далікатныя.", + "notification.moderation_warning.action_mark_statuses_as_sensitive": "Некаторыя з вашых допісаў былі пазначаныя як адчувальныя.", "notification.moderation_warning.action_none": "Ваш уліковы запіс атрымаў папярэджанне ад мадэратараў.", - "notification.moderation_warning.action_sensitive": "З гэтага моманту вашыя допісы будуць пазначаныя як далікатныя.", + "notification.moderation_warning.action_sensitive": "З гэтага моманту вашыя допісы будуць пазначаныя як адчувальныя.", "notification.moderation_warning.action_silence": "Ваш уліковы запіс быў абмежаваны.", "notification.moderation_warning.action_suspend": "Ваш уліковы запіс быў заблакіраваны.", "notification.own_poll": "Ваша апытанне скончылася", @@ -561,7 +561,7 @@ "notifications.clear_confirmation": "Вы ўпэўнены, што хочаце назаўсёды сцерці ўсе свае паведамленні?", "notifications.clear_title": "Ачысціць апавяшчэнні?", "notifications.column_settings.admin.report": "Новыя скаргі:", - "notifications.column_settings.admin.sign_up": "Новыя ўваходы:", + "notifications.column_settings.admin.sign_up": "Новыя рэгістрацыі:", "notifications.column_settings.alert": "Апавяшчэнні на працоўным стале", "notifications.column_settings.favourite": "Упадабанае:", "notifications.column_settings.filter_bar.advanced": "Паказаць усе катэгорыі", @@ -822,7 +822,7 @@ "status.reply": "Адказаць", "status.replyAll": "Адказаць у ланцугу", "status.report": "Паскардзіцца на @{name}", - "status.sensitive_warning": "Уражвальны змест", + "status.sensitive_warning": "Адчувальнае змесціва", "status.share": "Абагуліць", "status.show_less_all": "Згарнуць усё", "status.show_more_all": "Разгарнуць усё", diff --git a/app/javascript/mastodon/locales/ca.json b/app/javascript/mastodon/locales/ca.json index f5968101ba..d61ba275fa 100644 --- a/app/javascript/mastodon/locales/ca.json +++ b/app/javascript/mastodon/locales/ca.json @@ -672,7 +672,7 @@ "privacy.public.short": "Públic", "privacy.unlisted.additional": "Es comporta igual que públic, excepte que la publicació no apareixerà als canals en directe o etiquetes, l'explora o a la cerca de Mastodon, fins i tot si ho heu activat a nivell de compte.", "privacy.unlisted.long": "Menys fanfàrries algorísmiques", - "privacy.unlisted.short": "Públic silenciós", + "privacy.unlisted.short": "Pública però discreta", "privacy_policy.last_updated": "Darrera actualització {date}", "privacy_policy.title": "Política de Privacitat", "recommended": "Recomanat", diff --git a/app/javascript/mastodon/locales/cs.json b/app/javascript/mastodon/locales/cs.json index ebcb251295..026940d040 100644 --- a/app/javascript/mastodon/locales/cs.json +++ b/app/javascript/mastodon/locales/cs.json @@ -77,7 +77,7 @@ "admin.dashboard.retention.average": "Průměr", "admin.dashboard.retention.cohort": "Měsíc registrace", "admin.dashboard.retention.cohort_size": "Noví uživatelé", - "admin.impact_report.instance_accounts": "Profily účtů, které by byli odstaněny", + "admin.impact_report.instance_accounts": "Profily účtů, které by byly smazány", "admin.impact_report.instance_followers": "Sledující, o které by naši uživatelé přišli", "admin.impact_report.instance_follows": "Sledující, o které by jejich uživatelé přišli", "admin.impact_report.title": "Shrnutí dopadu", diff --git a/app/javascript/mastodon/locales/cy.json b/app/javascript/mastodon/locales/cy.json index 05e40c4802..860a62e8b1 100644 --- a/app/javascript/mastodon/locales/cy.json +++ b/app/javascript/mastodon/locales/cy.json @@ -1,6 +1,6 @@ { "about.blocks": "Gweinyddion wedi'u cymedroli", - "about.contact": "Cysylltwch â:", + "about.contact": "Cysylltiad:", "about.disclaimer": "Mae Mastodon yn feddalwedd cod agored rhydd ac o dan hawlfraint Mastodon gGmbH.", "about.domain_blocks.no_reason_available": "Dyw'r rheswm ddim ar gael", "about.domain_blocks.preamble": "Fel rheol, mae Mastodon yn caniatáu i chi weld cynnwys gan unrhyw weinyddwr arall yn y ffedysawd a rhyngweithio â hi. Dyma'r eithriadau a wnaed ar y gweinydd penodol hwn.", @@ -211,7 +211,7 @@ "directory.recently_active": "Ar-lein yn ddiweddar", "disabled_account_banner.account_settings": "Gosodiadau'r cyfrif", "disabled_account_banner.text": "Mae eich cyfrif {disabledAccount} wedi ei analluogi ar hyn o bryd.", - "dismissable_banner.community_timeline": "Dyma'r postiadau cyhoeddus diweddaraf gan bobl y caiff eu cyfrifon eu cynnal ar {domain}.", + "dismissable_banner.community_timeline": "Dyma'r postiadau cyhoeddus diweddaraf gan bobl sydd a'u cyfrifon ar {domain}.", "dismissable_banner.dismiss": "Diystyru", "dismissable_banner.explore_links": "Dyma straeon newyddion sy’n cael eu rhannu fwyaf ar y we gymdeithasol heddiw. Mae'r straeon newyddion diweddaraf sy'n cael eu postio gan fwy o unigolion gwahanol yn cael eu graddio'n uwch.", "dismissable_banner.explore_statuses": "Dyma postiadau o bob gwr o'r we gymdeithasol sy'n derbyn sylw heddiw. Mae postiadau mwy diweddar sydd â mwy o hybiau a ffefrynnau'n cael eu graddio'n uwch.", @@ -223,7 +223,7 @@ "domain_block_modal.they_cant_follow": "All neb o'r gweinydd hwn eich dilyn.", "domain_block_modal.they_wont_know": "Fyddan nhw ddim yn gwybod eu bod wedi cael eu blocio.", "domain_block_modal.title": "Blocio parth?", - "domain_block_modal.you_will_lose_num_followers": "Byddwch yn colli {followersCount, plural, one {{followersCountDisplay} dilynwr} other {{followersCountDisplay} dilynwyr}} a {followingCount, plural, one {{followingCountDisplay} person rydych yn dilyn} other {{followingCountDisplay} o bobl rydych yn eu dilyn}}.", + "domain_block_modal.you_will_lose_num_followers": "Byddwch yn colli {followersCount, plural, one {{followersCountDisplay} dilynwr} other {{followersCountDisplay} dilynwr}} a {followingCount, plural, one {{followingCountDisplay} person rydych yn dilyn} other {{followingCountDisplay} o bobl rydych yn eu dilyn}}.", "domain_block_modal.you_will_lose_relationships": "Byddwch yn colli'r holl ddilynwyr a phobl rydych chi'n eu dilyn o'r gweinydd hwn.", "domain_block_modal.you_wont_see_posts": "Fyddwch chi ddim yn gweld postiadau na hysbysiadau gan ddefnyddwyr ar y gweinydd hwn.", "domain_pill.activitypub_lets_connect": "Mae'n caniatáu ichi gysylltu a rhyngweithio â phobl nid yn unig ar Mastodon, ond ar draws gwahanol apiau cymdeithasol hefyd.", diff --git a/app/javascript/mastodon/locales/da.json b/app/javascript/mastodon/locales/da.json index 64940cafeb..c68467189f 100644 --- a/app/javascript/mastodon/locales/da.json +++ b/app/javascript/mastodon/locales/da.json @@ -13,7 +13,7 @@ "about.rules": "Serverregler", "account.account_note_header": "Personligt notat", "account.add_or_remove_from_list": "Tilføj eller fjern fra lister", - "account.badges.bot": "Bot", + "account.badges.bot": "Automatiseret", "account.badges.group": "Gruppe", "account.block": "Blokér @{name}", "account.block_domain": "Blokér domænet {domain}", @@ -36,7 +36,7 @@ "account.followers.empty": "Ingen følger denne bruger endnu.", "account.followers_counter": "{count, plural, one {{counter} følger} other {{counter} følgere}}", "account.following": "Følger", - "account.following_counter": "{count, plural, one {{counter} følger} other {{counter} følger}}", + "account.following_counter": "{count, plural, one {{counter} fulgt} other {{counter} fulgte}}", "account.follows.empty": "Denne bruger følger ikke nogen endnu.", "account.go_to_profile": "Gå til profil", "account.hide_reblogs": "Skjul fremhævelser fra @{name}", @@ -99,20 +99,20 @@ "block_modal.you_wont_see_mentions": "Du vil ikke se indlæg, som omtaler vedkommende.", "boost_modal.combo": "Du kan trykke {combo} for at springe dette over næste gang", "boost_modal.reblog": "Fremhæv indlæg?", - "boost_modal.undo_reblog": "Fjern fremhævning af indlæg?", + "boost_modal.undo_reblog": "Fjern fremhævelse af indlæg?", "bundle_column_error.copy_stacktrace": "Kopiér fejlrapport", "bundle_column_error.error.body": "Den anmodede side kunne ikke gengives. Dette kan skyldes flere typer fejl.", "bundle_column_error.error.title": "Åh nej!", - "bundle_column_error.network.body": "En fejl opstod under forsøget på at indlæse denne side. Dette kan skyldes flere typer af fejl.", + "bundle_column_error.network.body": "Der opstod en fejl under indlæsning af denne side. Dette kan skyldes et midlertidigt problem med din internetforbindelse eller denne server.", "bundle_column_error.network.title": "Netværksfejl", "bundle_column_error.retry": "Forsøg igen", "bundle_column_error.return": "Tilbage til hjem", - "bundle_column_error.routing.body": "Den anmodede side kunne ikke findes. Er du sikker på, at URL'en er korrekt?", + "bundle_column_error.routing.body": "Den ønskede side kunne ikke findes. Er du sikker på, at URL'en i adresselinjen er korrekt?", "bundle_column_error.routing.title": "404", "bundle_modal_error.close": "Luk", "bundle_modal_error.message": "Noget gik galt under indlæsningen af denne komponent.", "bundle_modal_error.retry": "Forsøg igen", - "closed_registrations.other_server_instructions": "Da Mastodon er decentraliseret, kan du oprette en konto på en anden server og stadig interagere med denne.", + "closed_registrations.other_server_instructions": "Eftersom Mastodon er decentraliseret, kan du oprette en konto på en anden server og stadig interagere med denne.", "closed_registrations_modal.description": "Oprettelse af en konto på {domain} er i øjeblikket ikke muligt, men husk på, at du ikke behøver en konto specifikt på {domain} for at bruge Mastodon.", "closed_registrations_modal.find_another_server": "Find en anden server", "closed_registrations_modal.preamble": "Mastodon er decentraliseret, så uanset hvor du opretter din konto, vil du være i stand til at følge og interagere med hvem som helst på denne server. Du kan endda selv være vært for den!", @@ -122,7 +122,7 @@ "column.bookmarks": "Bogmærker", "column.community": "Lokal tidslinje", "column.direct": "Private omtaler", - "column.directory": "Tjek profiler", + "column.directory": "Gennemse profiler", "column.domain_blocks": "Blokerede domæner", "column.favourites": "Favoritter", "column.firehose": "Live feeds", @@ -154,7 +154,7 @@ "compose_form.hashtag_warning": "Da indlægget ikke er offentligt, vises det ikke under noget hashtag, da kun offentlige indlæg er søgbare via hashtags.", "compose_form.lock_disclaimer": "Din konto er ikke {locked}. Enhver kan følge dig og se indlæg kun beregnet for følgere.", "compose_form.lock_disclaimer.lock": "låst", - "compose_form.placeholder": "Hvad har du på hjertet?", + "compose_form.placeholder": "Hvad har du på hjerte?", "compose_form.poll.duration": "Afstemningens varighed", "compose_form.poll.multiple": "Multivalg", "compose_form.poll.option_placeholder": "Valgmulighed {number}", @@ -197,7 +197,7 @@ "confirmations.unfollow.title": "Følg ikke længere bruger?", "content_warning.hide": "Skjul indlæg", "content_warning.show": "Vis alligevel", - "content_warning.show_more": "Vis flere", + "content_warning.show_more": "Vis mere", "conversation.delete": "Slet samtale", "conversation.mark_as_read": "Markér som læst", "conversation.open": "Vis samtale", @@ -211,7 +211,7 @@ "directory.recently_active": "Aktive for nyligt", "disabled_account_banner.account_settings": "Kontoindstillinger", "disabled_account_banner.text": "Din konto {disabledAccount} er pt. deaktiveret.", - "dismissable_banner.community_timeline": "Disse er de seneste offentlige indlæg fra personer med konti hostet af {domain}.", + "dismissable_banner.community_timeline": "Dette er de seneste offentlige indlæg fra personer med konti hostet af {domain}.", "dismissable_banner.dismiss": "Afvis", "dismissable_banner.explore_links": "Der tales lige nu om disse nyhedshistorier af folk på denne og andre servere i det decentraliserede netværk.", "dismissable_banner.explore_statuses": "Disse indlæg fra diverse sociale netværk vinder fodfæste i dag. Nyere indlæg med flere fremhævelser og favoritter rangeres højere.", @@ -219,14 +219,14 @@ "dismissable_banner.public_timeline": "Dette er de seneste offentlige indlæg fra folk på det sociale netværk, som folk på {domain} følger.", "domain_block_modal.block": "Blokér server", "domain_block_modal.block_account_instead": "Blokér i stedet @{name}", - "domain_block_modal.they_can_interact_with_old_posts": "Folk fra denne server kan interagere med de gamle indlæg.", + "domain_block_modal.they_can_interact_with_old_posts": "Folk fra denne server kan interagere med dine gamle indlæg.", "domain_block_modal.they_cant_follow": "Ingen fra denne server kan følge dig.", "domain_block_modal.they_wont_know": "De ser ikke den aktive blokering.", "domain_block_modal.title": "Blokér domæne?", "domain_block_modal.you_will_lose_num_followers": "Du vil miste {followersCount, plural, one {{followersCountDisplay} følger} other {{followersCountDisplay} følgere}} og {followingCount, plural, one {{followingCountDisplay} person, du følger} other {{followingCountDisplay} personer, du følger}}.", - "domain_block_modal.you_will_lose_relationships": "Alle følgere og personer som følges på denne server mistes.", - "domain_block_modal.you_wont_see_posts": "Indlæg eller notifikationer fra brugere på denne server vises ikke.", - "domain_pill.activitypub_lets_connect": "Det muliggører at forbinde og interagere med folk, ikke kun på Mastodon, men også på tværs af forskellige sociale apps.", + "domain_block_modal.you_will_lose_relationships": "Du vil miste alle følgere og personer, du følger, fra denne server.", + "domain_block_modal.you_wont_see_posts": "Du vil ikke se indlæg eller notifikationer fra brugere på denne server.", + "domain_pill.activitypub_lets_connect": "Det giver dig mulighed for at oprette forbindelse og interagere med mennesker, ikke kun på Mastodon, men også på tværs af forskellige sociale apps.", "domain_pill.activitypub_like_language": "ActivityPub er \"sproget\", som Mastodon taler med andre sociale netværk.", "domain_pill.server": "Server", "domain_pill.their_handle": "Deres handle:", @@ -238,7 +238,7 @@ "domain_pill.who_you_are": "Fordi dit handle fortæller, hvem du er, og hvor du er, kan du interagere med folk på tværs af det sociale net af .", "domain_pill.your_handle": "Dit handle:", "domain_pill.your_server": "Dit digitale hjem, hvor alle dine indlæg lever. Synes ikke om den her server? Du kan til enhver tid rykke over på en anden server og beholde dine følgere.", - "domain_pill.your_username": "Din entydige identifikator på denne server. Det er muligt at finde brugere med samme brugernavn på forskellige servere.", + "domain_pill.your_username": "Din unikke identifikator på denne server. Det er muligt at finde brugere med samme brugernavn på forskellige servere.", "embed.instructions": "Indlejr dette indlæg på din hjemmeside ved at kopiere nedenstående kode.", "embed.preview": "Sådan kommer det til at se ud:", "emoji_button.activity": "Aktivitet", @@ -251,7 +251,7 @@ "emoji_button.not_found": "Ingen matchende emojis fundet", "emoji_button.objects": "Objekter", "emoji_button.people": "Personer", - "emoji_button.recent": "Oftest brugt", + "emoji_button.recent": "Ofte brugt", "emoji_button.search": "Søg...", "emoji_button.search_results": "Søgeresultater", "emoji_button.symbols": "Symboler", @@ -260,7 +260,7 @@ "empty_column.account_suspended": "Konto suspenderet", "empty_column.account_timeline": "Ingen indlæg her!", "empty_column.account_unavailable": "Profil utilgængelig", - "empty_column.blocks": "Ingen brugere blokeret endnu.", + "empty_column.blocks": "Du har ikke blokeret nogle brugere endnu.", "empty_column.bookmarked_statuses": "Du har ingen bogmærkede indlæg endnu. Når du bogmærker ét, vil det dukke op hér.", "empty_column.community": "Den lokale tidslinje er tom. Skriv noget offentligt for at sætte tingene i gang!", "empty_column.direct": "Du har ikke nogen private omtaler endnu. Når du sender eller modtager en, vil den blive vist her.", @@ -271,7 +271,7 @@ "empty_column.follow_requests": "Du har endnu ingen følgeanmodninger. Når du modtager én, vil den dukke op her.", "empty_column.followed_tags": "Ingen hashtags følges endnu. Når det sker, vil de fremgå her.", "empty_column.hashtag": "Der er intet med dette hashtag endnu.", - "empty_column.home": "Din hjem-tidslinje er tom! Følg nogle personer, for at fylde den op.", + "empty_column.home": "Din hjem-tidslinje er tom! Følg flere personer, for at fylde den op.", "empty_column.list": "Der er ikke noget på denne liste endnu. Når medlemmer af denne liste udgiver nye indlæg, vil de blive vist her.", "empty_column.lists": "Du har endnu ikke nogen lister. Når du opretter én, vil den vises her.", "empty_column.mutes": "Du har endnu ikke skjult nogle brugere.", @@ -314,22 +314,22 @@ "firehose.remote": "Andre servere", "follow_request.authorize": "Godkend", "follow_request.reject": "Afvis", - "follow_requests.unlocked_explanation": "Selvom din konto ikke er låst, synes {domain}-personalet, du måske bør gennemgå disse anmodninger manuelt.", + "follow_requests.unlocked_explanation": "Selvom din konto ikke er låst, mente {domain}-personalet, at du måske ville gennemgå følgeanmodninger fra disse konti manuelt.", "follow_suggestions.curated_suggestion": "Personaleudvalgt", "follow_suggestions.dismiss": "Vis ikke igen", "follow_suggestions.featured_longer": "Håndplukket af {domain}-teamet", "follow_suggestions.friends_of_friends_longer": "Populær blandt personer, du følger", "follow_suggestions.hints.featured": "Denne profil er håndplukket af {domain}-teamet.", - "follow_suggestions.hints.friends_of_friends": "Denne profil er populær blandt de personer, som følges.", + "follow_suggestions.hints.friends_of_friends": "Denne profil er populær blandt de personer, du følger.", "follow_suggestions.hints.most_followed": "Denne profil er en af de mest fulgte på {domain}.", "follow_suggestions.hints.most_interactions": "Denne profil har for nylig fået stor opmærksomhed på {domain}.", - "follow_suggestions.hints.similar_to_recently_followed": "Denne profil svarer til de profiler, som senest er blevet fulgt.", + "follow_suggestions.hints.similar_to_recently_followed": "Denne profil minder om de profiler, du senest har fulgt.", "follow_suggestions.personalized_suggestion": "Personligt forslag", "follow_suggestions.popular_suggestion": "Populært forslag", - "follow_suggestions.popular_suggestion_longer": "Populært på {domain}", + "follow_suggestions.popular_suggestion_longer": "Populær på {domain}", "follow_suggestions.similar_to_recently_followed_longer": "Minder om profiler, du har fulgt for nylig", "follow_suggestions.view_all": "Vis alle", - "follow_suggestions.who_to_follow": "Hvem, som skal følges", + "follow_suggestions.who_to_follow": "Profiler, du kan følge", "followed_tags": "Hashtags, som følges", "footer.about": "Om", "footer.directory": "Profiloversigt", @@ -367,7 +367,7 @@ "home.column_settings.show_reblogs": "Vis fremhævelser", "home.column_settings.show_replies": "Vis svar", "home.hide_announcements": "Skjul bekendtgørelser", - "home.pending_critical_update.body": "Opdatér venligst din Mastodon-server snarest muligt!", + "home.pending_critical_update.body": "Opdatér din Mastodon-server snarest muligt!", "home.pending_critical_update.link": "Se opdateringer", "home.pending_critical_update.title": "Kritisk sikkerhedsopdatering tilgængelig!", "home.show_announcements": "Vis bekendtgørelser", @@ -424,7 +424,7 @@ "keyboard_shortcuts.open_media": "Åbn medier", "keyboard_shortcuts.pinned": "Åbn liste over fastgjorte indlæg", "keyboard_shortcuts.profile": "Åbn forfatters profil", - "keyboard_shortcuts.reply": "Besvar indlægget", + "keyboard_shortcuts.reply": "Besvar indlæg", "keyboard_shortcuts.requests": "Åbn liste over følgeanmodninger", "keyboard_shortcuts.search": "Fokusér søgebjælke", "keyboard_shortcuts.spoilers": "Vis/skjul indholdsadvarsel-felt", @@ -458,10 +458,10 @@ "lists.replies_policy.title": "Vis svar til:", "lists.search": "Søg blandt personer, som følges", "lists.subheading": "Dine lister", - "load_pending": "{count, plural, one {# nyt emne} other {# nye emner}}", + "load_pending": "{count, plural, one {# nyt element} other {# nye elementer}}", "loading_indicator.label": "Indlæser…", "media_gallery.hide": "Skjul", - "moved_to_account_banner.text": "Din konto {disabledAccount} er pt. deaktiveret, da du flyttede til {movedToAccount}.", + "moved_to_account_banner.text": "Din konto {disabledAccount} er i øjeblikket deaktiveret, fordi du er flyttet til {movedToAccount}.", "mute_modal.hide_from_notifications": "Skjul fra notifikationer", "mute_modal.hide_options": "Skjul valgmuligheder", "mute_modal.indefinite": "Indtil jeg vælger at se dem igen", @@ -486,7 +486,7 @@ "navigation_bar.filters": "Skjulte ord", "navigation_bar.follow_requests": "Følgeanmodninger", "navigation_bar.followed_tags": "Hashtags, som følges", - "navigation_bar.follows_and_followers": "Følges og følgere", + "navigation_bar.follows_and_followers": "Følger og følgere", "navigation_bar.lists": "Lister", "navigation_bar.logout": "Log af", "navigation_bar.moderation": "Moderering", @@ -526,7 +526,7 @@ "notification.moderation_warning.action_none": "Din konto har fået en moderationsadvarsel.", "notification.moderation_warning.action_sensitive": "Dine indlæg markeres fra nu af som følsomme.", "notification.moderation_warning.action_silence": "Din konto er blevet begrænset.", - "notification.moderation_warning.action_suspend": "Din konto er suspenderet.", + "notification.moderation_warning.action_suspend": "Din konto er blevet suspenderet.", "notification.own_poll": "Din afstemning er afsluttet", "notification.poll": "En afstemning, hvori du har stemt, er slut", "notification.reblog": "{name} fremhævede dit indlæg", @@ -568,7 +568,7 @@ "notifications.column_settings.filter_bar.category": "Hurtigfiltreringsbjælke", "notifications.column_settings.follow": "Nye følgere:", "notifications.column_settings.follow_request": "Nye følgeanmodninger:", - "notifications.column_settings.group": "Gruppere", + "notifications.column_settings.group": "Gruppér", "notifications.column_settings.mention": "Omtaler:", "notifications.column_settings.poll": "Afstemningsresultater:", "notifications.column_settings.push": "Push-notifikationer", @@ -606,7 +606,7 @@ "notifications.policy.filter_not_followers_title": "Personer, som ikke følger dig", "notifications.policy.filter_not_following_hint": "Indtil du manuelt godkender dem", "notifications.policy.filter_not_following_title": "Personer, du ikke følger", - "notifications.policy.filter_private_mentions_hint": "Filtreret, medmindre det er i svar på egen omtale, eller hvis afsenderen følges", + "notifications.policy.filter_private_mentions_hint": "Filtreret, medmindre det er et svar på din egen omtale, eller hvis du følger afsenderen", "notifications.policy.filter_private_mentions_title": "Uopfordrede private omtaler", "notifications.policy.title": "Håndtér notifikationer fra…", "notifications_permission_banner.enable": "Aktivér computernotifikationer", @@ -619,9 +619,9 @@ "onboarding.compose.template": "Hej #Mastodon!", "onboarding.follows.empty": "Ingen resultater tilgængelige pt. Prøv at bruge søgning eller gennemse siden for at finde personer at følge, eller forsøg igen senere.", "onboarding.follows.lead": "Man kurerer sin eget hjemme-feed. Jo flere personer man følger, des mere aktiv og interessant vil det være. Disse profiler kan være et godt udgangspunkt – de kan altid fjernes senere!", - "onboarding.follows.title": "Populært på Mastodon", + "onboarding.follows.title": "Tilpas dit hjem-feed", "onboarding.profile.discoverable": "Gør min profil synlig", - "onboarding.profile.discoverable_hint": "Når man vælger at være synlig på Mastodon, kan ens indlæg fremgå i søgeresultater og tendenser, og profilen kan blive foreslået til andre med tilsvarende interesse.", + "onboarding.profile.discoverable_hint": "Når du vælger at være synlig på Mastodon, kan dine indlæg blive vist i søgeresultater og trender, og din profil kan blive foreslået til personer med samme interesser som dig.", "onboarding.profile.display_name": "Vist navn", "onboarding.profile.display_name_hint": "Dit fulde navn eller dit sjove navn…", "onboarding.profile.lead": "Dette kan altid færdiggøres senere i indstillingerne, hvor endnu flere tilpasningsmuligheder forefindes.", @@ -768,7 +768,7 @@ "search_results.title": "Søg efter {q}", "server_banner.about_active_users": "Personer, som brugte denne server de seneste 30 dage (månedlige aktive brugere)", "server_banner.active_users": "aktive brugere", - "server_banner.administered_by": "Håndteres af:", + "server_banner.administered_by": "Administreret af:", "server_banner.is_one_of_many": "{domain} er en af de mange uafhængige Mastodon-servere, du kan bruge for at deltage i fediverset.", "server_banner.server_stats": "Serverstatstik:", "sign_in_banner.create_account": "Opret konto", @@ -793,7 +793,7 @@ "status.edited": "Senest redigeret {date}", "status.edited_x_times": "Redigeret {count, plural, one {{count} gang} other {{count} gange}}", "status.embed": "Hent indlejringskode", - "status.favourite": "Favorit", + "status.favourite": "Favoritmarkér", "status.favourites": "{count, plural, one {# favorit} other {# favoritter}}", "status.filter": "Filtrér dette indlæg", "status.history.created": "{name} oprettet {date}", @@ -850,7 +850,7 @@ "units.short.million": "{count} mio.", "units.short.thousand": "{count} tusind", "upload_area.title": "Træk og slip for at uploade", - "upload_button.label": "Tilføj billed-, video- eller lydfil(er)", + "upload_button.label": "Tilføj billeder, en video- eller lydfil", "upload_error.limit": "Grænse for filupload nået.", "upload_error.poll": "Filupload ikke tilladt for afstemninger.", "upload_form.audio_description": "Beskrivelse til hørehæmmede", diff --git a/app/javascript/mastodon/locales/de.json b/app/javascript/mastodon/locales/de.json index ed09550d3b..7ecf9831d3 100644 --- a/app/javascript/mastodon/locales/de.json +++ b/app/javascript/mastodon/locales/de.json @@ -1,33 +1,33 @@ { - "about.blocks": "Moderierte Server", + "about.blocks": "Eingeschränkte Server", "about.contact": "Kontakt:", "about.disclaimer": "Mastodon ist eine freie, quelloffene Software und eine Marke der Mastodon gGmbH.", - "about.domain_blocks.no_reason_available": "Grund unbekannt", + "about.domain_blocks.no_reason_available": "Keinen Grund angegeben", "about.domain_blocks.preamble": "Mastodon erlaubt es dir grundsätzlich, alle Inhalte von allen Nutzer*innen auf allen Servern im Fediverse zu sehen und mit ihnen zu interagieren. Für diesen Server gibt es aber ein paar Ausnahmen.", "about.domain_blocks.silenced.explanation": "Standardmäßig werden von diesem Server keine Inhalte oder Profile angezeigt. Du kannst die Profile und Inhalte aber dennoch sehen, wenn du explizit nach diesen suchst oder diesen folgst.", - "about.domain_blocks.silenced.title": "Ausgeblendet", - "about.domain_blocks.suspended.explanation": "Es werden keine Daten von diesem Server verarbeitet, gespeichert oder ausgetauscht, sodass eine Interaktion oder Kommunikation mit Nutzer*innen dieses Servers nicht möglich ist.", + "about.domain_blocks.silenced.title": "Stummgeschaltet", + "about.domain_blocks.suspended.explanation": "Es werden keine Daten von diesem Server verarbeitet, gespeichert oder ausgetauscht, sodass eine Interaktion oder Kommunikation mit Profilen dieses Servers nicht möglich ist.", "about.domain_blocks.suspended.title": "Gesperrt", "about.not_available": "Diese Informationen sind auf diesem Server nicht verfügbar.", - "about.powered_by": "Ein dezentralisiertes soziales Netzwerk, angetrieben von {mastodon}", + "about.powered_by": "Ein dezentralisiertes soziales Netzwerk, ermöglicht durch {mastodon}", "about.rules": "Serverregeln", "account.account_note_header": "Persönliche Notiz", - "account.add_or_remove_from_list": "Hinzufügen oder Entfernen von Listen", - "account.badges.bot": "Automatisiert", + "account.add_or_remove_from_list": "Listen verwalten", + "account.badges.bot": "Bot", "account.badges.group": "Gruppe", "account.block": "@{name} blockieren", - "account.block_domain": "{domain} sperren", + "account.block_domain": "{domain} blockieren", "account.block_short": "Blockieren", "account.blocked": "Blockiert", - "account.cancel_follow_request": "Follower-Anfrage zurückziehen", + "account.cancel_follow_request": "Anfrage zurückziehen", "account.copy": "Link zum Profil kopieren", "account.direct": "@{name} privat erwähnen", - "account.disable_notifications": "Höre auf mich zu benachrichtigen wenn @{name} etwas postet", - "account.domain_blocked": "Domain versteckt", + "account.disable_notifications": "Benachrichtige mich nicht mehr, wenn @{name} etwas veröffentlicht", + "account.domain_blocked": "Domain blockiert", "account.edit_profile": "Profil bearbeiten", - "account.enable_notifications": "Benachrichtige mich wenn @{name} etwas postet", + "account.enable_notifications": "Benachrichtige mich, wenn @{name} etwas veröffentlicht", "account.endorse": "Im Profil vorstellen", - "account.featured_tags.last_status_at": "Letzter Beitrag am {date}", + "account.featured_tags.last_status_at": "Neuester Beitrag vom {date}", "account.featured_tags.last_status_never": "Keine Beiträge", "account.featured_tags.title": "Von {name} vorgestellte Hashtags", "account.follow": "Folgen", @@ -41,9 +41,9 @@ "account.go_to_profile": "Profil aufrufen", "account.hide_reblogs": "Geteilte Beiträge von @{name} ausblenden", "account.in_memoriam": "Zum Andenken.", - "account.joined_short": "Mitglied seit", - "account.languages": "Sprache ändern.", - "account.link_verified_on": "Das Profil mit dieser E-Mail-Adresse wurde bereits am {date} verifiziert", + "account.joined_short": "Registriert am", + "account.languages": "Sprachen verwalten", + "account.link_verified_on": "Das Profil mit dieser E-Mail-Adresse wurde bereits am {date} bestätigt", "account.locked_info": "Die Privatsphäre dieses Kontos wurde auf „geschützt“ gesetzt. Die Person bestimmt manuell, wer ihrem Profil folgen darf.", "account.media": "Medien", "account.mention": "@{name} erwähnen", @@ -54,16 +54,16 @@ "account.muted": "Stummgeschaltet", "account.mutual": "Gegenseitig", "account.no_bio": "Keine Beschreibung verfügbar.", - "account.open_original_page": "Ursprüngliche Seite öffnen", + "account.open_original_page": "Originalbeitrag öffnen", "account.posts": "Beiträge", - "account.posts_with_replies": "Beiträge und Antworten", + "account.posts_with_replies": "Beiträge & Antworten", "account.report": "@{name} melden", "account.requested": "Die Genehmigung steht noch aus. Klicke hier, um die Follower-Anfrage zurückzuziehen", "account.requested_follow": "{name} möchte dir folgen", "account.share": "Profil von @{name} teilen", "account.show_reblogs": "Geteilte Beiträge von @{name} anzeigen", "account.statuses_counter": "{count, plural, one {{counter} Beitrag} other {{counter} Beiträge}}", - "account.unblock": "{name} nicht mehr blockieren", + "account.unblock": "Blockierung von {name} aufheben", "account.unblock_domain": "Blockierung von {domain} aufheben", "account.unblock_short": "Blockierung aufheben", "account.unendorse": "Im Profil nicht mehr vorstellen", @@ -71,20 +71,20 @@ "account.unmute": "Stummschaltung von @{name} aufheben", "account.unmute_notifications_short": "Stummschaltung der Benachrichtigungen aufheben", "account.unmute_short": "Stummschaltung aufheben", - "account_note.placeholder": "Klicken, um Notiz hinzuzufügen", - "admin.dashboard.daily_retention": "Verweildauer der Nutzer*innen pro Tag nach der Registrierung", - "admin.dashboard.monthly_retention": "Verweildauer der Nutzer*innen pro Monat nach der Registrierung", + "account_note.placeholder": "Klicken, um private Anmerkung hinzuzufügen", + "admin.dashboard.daily_retention": "Verweildauer der Nutzer*innen pro Tag seit der Registrierung", + "admin.dashboard.monthly_retention": "Verweildauer der Nutzer*innen pro Monat seit der Registrierung", "admin.dashboard.retention.average": "Durchschnitt", "admin.dashboard.retention.cohort": "Monat der Registrierung", "admin.dashboard.retention.cohort_size": "Neue Konten", - "admin.impact_report.instance_accounts": "Profilkonten, die dadurch gelöscht würden", + "admin.impact_report.instance_accounts": "Konten, die dadurch gelöscht würden", "admin.impact_report.instance_followers": "Follower, die unsere Nutzer*innen verlieren würden", "admin.impact_report.instance_follows": "Follower, die deren Nutzer*innen verlieren würden", "admin.impact_report.title": "Zusammenfassung der Auswirkung", - "alert.rate_limited.message": "Bitte versuche es nach {retry_time, time, medium} erneut.", + "alert.rate_limited.message": "Bitte versuche es um {retry_time, time, medium} erneut.", "alert.rate_limited.title": "Anfragelimit überschritten", "alert.unexpected.message": "Ein unerwarteter Fehler ist aufgetreten.", - "alert.unexpected.title": "Oha!", + "alert.unexpected.title": "Ups!", "alt_text_badge.title": "Bildbeschreibung", "announcement.announcement": "Ankündigung", "attachments_list.unprocessed": "(ausstehend)", @@ -97,13 +97,13 @@ "block_modal.they_will_know": "Das Profil wird erkennen können, dass du es blockiert hast.", "block_modal.title": "Profil blockieren?", "block_modal.you_wont_see_mentions": "Du wirst keine Beiträge sehen, die dieses Profil erwähnen.", - "boost_modal.combo": "Mit {combo} erscheint dieses Fenster beim nächsten Mal nicht mehr", + "boost_modal.combo": "Mit {combo} erscheint dieses Fenster nicht mehr", "boost_modal.reblog": "Beitrag teilen?", "boost_modal.undo_reblog": "Beitrag nicht mehr teilen?", "bundle_column_error.copy_stacktrace": "Fehlerbericht kopieren", "bundle_column_error.error.body": "Die angeforderte Seite konnte nicht dargestellt werden. Dies könnte auf einen Fehler in unserem Code oder auf ein Browser-Kompatibilitätsproblem zurückzuführen sein.", "bundle_column_error.error.title": "Oh nein!", - "bundle_column_error.network.body": "Beim Versuch, diese Seite zu laden, ist ein Fehler aufgetreten. Dies könnte auf ein vorübergehendes Problem mit Ihrer Internetverbindung oder diesem Server zurückzuführen sein.", + "bundle_column_error.network.body": "Beim Laden dieser Seite ist ein Fehler aufgetreten. Die Ursache könnte ein vorübergehendes Problem mit deiner Internetverbindung oder diesem Server sein.", "bundle_column_error.network.title": "Netzwerkfehler", "bundle_column_error.retry": "Erneut versuchen", "bundle_column_error.return": "Zurück zur Startseite", @@ -112,17 +112,17 @@ "bundle_modal_error.close": "Schließen", "bundle_modal_error.message": "Beim Laden dieser Komponente ist etwas schiefgelaufen.", "bundle_modal_error.retry": "Erneut versuchen", - "closed_registrations.other_server_instructions": "Da Mastodon dezentralisiert ist, kannst du ein Konto auf einem anderen Server erstellen und trotzdem mit diesem Server interagieren.", - "closed_registrations_modal.description": "Das Anlegen eines Kontos auf {domain} ist derzeit nicht möglich, aber bedenke, dass du kein extra Konto auf {domain} benötigst, um Mastodon nutzen zu können.", - "closed_registrations_modal.find_another_server": "Einen anderen Server auswählen", - "closed_registrations_modal.preamble": "Mastodon ist dezentralisiert, das heißt, unabhängig davon, wo du dein Konto erstellt hast, kannst du jedem Profil auf diesem Server folgen und mit ihm interagieren. Du kannst sogar deinen eigenen Server hosten!", + "closed_registrations.other_server_instructions": "Da Mastodon dezentralisiert ist, kannst du dich auch woanders im Fediverse registrieren und trotzdem mit diesem Server in Kontakt bleiben.", + "closed_registrations_modal.description": "Das Anlegen eines Kontos auf {domain} ist derzeit nicht möglich, aber bedenke, dass du nicht zwingend auf {domain} ein Konto benötigst, um Mastodon nutzen zu können.", + "closed_registrations_modal.find_another_server": "Anderen Server suchen", + "closed_registrations_modal.preamble": "Mastodon ist dezentralisiert, das heißt, unabhängig davon, wo du dein Konto erstellst, kannst du jedem Profil auf diesem Server folgen und mit ihm interagieren. Du kannst sogar deinen eigenen Mastodon-Server hosten!", "closed_registrations_modal.title": "Bei Mastodon registrieren", "column.about": "Über", "column.blocks": "Blockierte Profile", "column.bookmarks": "Lesezeichen", "column.community": "Lokale Timeline", "column.direct": "Private Erwähnungen", - "column.directory": "Profile durchsuchen", + "column.directory": "Profile durchstöbern", "column.domain_blocks": "Blockierte Domains", "column.favourites": "Favoriten", "column.firehose": "Live-Feeds", @@ -143,25 +143,25 @@ "column_subheading.settings": "Einstellungen", "community.column_settings.local_only": "Nur lokal", "community.column_settings.media_only": "Nur Beiträge mit Medien", - "community.column_settings.remote_only": "Nur andere Mastodon-Server", + "community.column_settings.remote_only": "Nur andere Server im Fediverse", "compose.language.change": "Sprache festlegen", "compose.language.search": "Sprachen suchen …", "compose.published.body": "Beitrag veröffentlicht.", "compose.published.open": "Öffnen", "compose.saved.body": "Beitrag gespeichert.", "compose_form.direct_message_warning_learn_more": "Mehr erfahren", - "compose_form.encryption_warning": "Beiträge auf Mastodon sind nicht Ende-zu-Ende-verschlüsselt. Teile keine sensiblen Informationen über Mastodon.", + "compose_form.encryption_warning": "Beiträge auf Mastodon sind nicht Ende-zu-Ende-verschlüsselt. Teile keine sensiblen Informationen über Mastodon, auch nicht als „private Erwähnung“.", "compose_form.hashtag_warning": "Dieser Beitrag wird unter keinem Hashtag sichtbar sein, weil er nicht öffentlich ist. Nur öffentliche Beiträge können nach Hashtags durchsucht werden.", "compose_form.lock_disclaimer": "Dein Profil ist nicht {locked}. Andere können dir folgen und deine Beiträge sehen, die nur für Follower bestimmt sind.", "compose_form.lock_disclaimer.lock": "geschützt", "compose_form.placeholder": "Was gibts Neues?", - "compose_form.poll.duration": "Umfragedauer", + "compose_form.poll.duration": "Laufzeit", "compose_form.poll.multiple": "Mehrfachauswahl", "compose_form.poll.option_placeholder": "{number}. Auswahl", "compose_form.poll.single": "Einfachauswahl", "compose_form.poll.switch_to_multiple": "Mehrfachauswahl erlauben", "compose_form.poll.switch_to_single": "Nur Einfachauswahl erlauben", - "compose_form.poll.type": "Art", + "compose_form.poll.type": "Typ", "compose_form.publish": "Veröffentlichen", "compose_form.publish_form": "Neuer Beitrag", "compose_form.reply": "Antworten", @@ -175,7 +175,7 @@ "confirmations.delete.message": "Möchtest du diesen Beitrag wirklich löschen?", "confirmations.delete.title": "Beitrag löschen?", "confirmations.delete_list.confirm": "Löschen", - "confirmations.delete_list.message": "Möchtest du diese Liste für immer löschen?", + "confirmations.delete_list.message": "Bist du dir sicher, dass du diese Liste endgültig löschen möchtest?", "confirmations.delete_list.title": "Liste löschen?", "confirmations.discard_edit_media.confirm": "Verwerfen", "confirmations.discard_edit_media.message": "Du hast Änderungen an der Medienbeschreibung oder -vorschau vorgenommen, die noch nicht gespeichert sind. Trotzdem verwerfen?", @@ -183,12 +183,12 @@ "confirmations.edit.message": "Das Bearbeiten überschreibt die Nachricht, die du gerade verfasst. Möchtest du wirklich fortfahren?", "confirmations.edit.title": "Beitrag überschreiben?", "confirmations.logout.confirm": "Abmelden", - "confirmations.logout.message": "Möchtest du dich wirklich abmelden?", + "confirmations.logout.message": "Möchtest du dich wirklich ausloggen?", "confirmations.logout.title": "Abmelden?", "confirmations.mute.confirm": "Stummschalten", "confirmations.redraft.confirm": "Löschen und neu erstellen", "confirmations.redraft.message": "Möchtest du diesen Beitrag wirklich löschen und neu verfassen? Alle Favoriten sowie die bisher geteilten Beiträge werden verloren gehen und Antworten auf den ursprünglichen Beitrag verlieren den Zusammenhang.", - "confirmations.redraft.title": "Beitrag löschen und neu verfassen?", + "confirmations.redraft.title": "Beitrag löschen & neu verfassen?", "confirmations.reply.confirm": "Antworten", "confirmations.reply.message": "Wenn du jetzt darauf antwortest, wird der andere Beitrag, an dem du gerade geschrieben hast, verworfen. Möchtest du wirklich fortfahren?", "confirmations.reply.title": "Beitrag überschreiben?", @@ -206,8 +206,8 @@ "copypaste.copied": "Kopiert", "copypaste.copy_to_clipboard": "In die Zwischenablage kopieren", "directory.federated": "Aus bekanntem Fediverse", - "directory.local": "Nur von der Domain {domain}", - "directory.new_arrivals": "Neue Benutzer*innen", + "directory.local": "Nur von dieser Domain {domain}", + "directory.new_arrivals": "Neue Profile", "directory.recently_active": "Kürzlich aktiv", "disabled_account_banner.account_settings": "Kontoeinstellungen", "disabled_account_banner.text": "Dein Konto {disabledAccount} ist derzeit deaktiviert.", @@ -229,24 +229,24 @@ "domain_pill.activitypub_lets_connect": "Somit kannst du dich nicht nur auf Mastodon mit Leuten verbinden und mit ihnen interagieren, sondern über alle sozialen Apps hinweg.", "domain_pill.activitypub_like_language": "ActivityPub ist sozusagen die Sprache, die Mastodon mit anderen sozialen Netzwerken spricht.", "domain_pill.server": "Server", - "domain_pill.their_handle": "Deren Adresse:", - "domain_pill.their_server": "Deren digitale Heimat. Hier „leben“ alle Beiträge von diesem Profil.", - "domain_pill.their_username": "Deren eindeutigen Identität auf dem betreffenden Server. Es ist möglich, Profile mit dem gleichen Profilnamen auf verschiedenen Servern zu finden.", + "domain_pill.their_handle": "Vollständige Adresse:", + "domain_pill.their_server": "Die digitale Heimat, in der sich alle Beiträge dieses Profils befinden.", + "domain_pill.their_username": "Die eindeutige Identifizierung auf einem Server. Es ist möglich, denselben Profilnamen auf verschiedenen Servern im Fediverse zu finden.", "domain_pill.username": "Profilname", "domain_pill.whats_in_a_handle": "Woraus besteht eine Adresse?", - "domain_pill.who_they_are": "Adressen teilen mit, wer jemand ist und wo sich jemand aufhält. Daher kannst du mit Leuten im gesamten Social Web interagieren, wenn es eine durch ist.", - "domain_pill.who_you_are": "Deine Adresse teilt mit, wer du bist und wo du dich aufhältst. Daher können andere Leute im gesamten Social Web mit dir interagieren, wenn es eine durch ist.", + "domain_pill.who_they_are": "Adressen teilen mit, wer jemand ist und wo sich jemand aufhält. Daher kannst du mit Leuten im gesamten Social Web interagieren, wenn es eine durch ist.", + "domain_pill.who_you_are": "Deine Adresse teilt mit, wer du bist und wo du dich aufhältst. Daher können andere Leute im gesamten Social Web mit dir interagieren, wenn es eine durch ist.", "domain_pill.your_handle": "Deine Adresse:", "domain_pill.your_server": "Deine digitale Heimat. Hier „leben“ alle Beiträge von dir. Falls es dir hier nicht gefällt, kannst du jederzeit den Server wechseln und ebenso deine Follower übertragen.", "domain_pill.your_username": "Deine eindeutige Identität auf diesem Server. Es ist möglich, Profile mit dem gleichen Profilnamen auf verschiedenen Servern zu finden.", - "embed.instructions": "Du kannst diesen Beitrag auf deiner Website einbetten, indem du den nachfolgenden Code kopierst.", + "embed.instructions": "Du kannst diesen Beitrag außerhalb des Fediverse (z. B. in deine Website) einbetten, indem du diesen Code kopierst und dort einfügst.", "embed.preview": "Vorschau:", "emoji_button.activity": "Aktivitäten", "emoji_button.clear": "Leeren", "emoji_button.custom": "Spezielle Emojis dieses Servers", "emoji_button.flags": "Flaggen", "emoji_button.food": "Essen & Trinken", - "emoji_button.label": "Emoji einfügen", + "emoji_button.label": "Emoji hinzufügen", "emoji_button.nature": "Natur", "emoji_button.not_found": "Keine passenden Emojis gefunden", "emoji_button.objects": "Gegenstände", @@ -256,20 +256,20 @@ "emoji_button.search_results": "Suchergebnisse", "emoji_button.symbols": "Symbole", "emoji_button.travel": "Reisen & Orte", - "empty_column.account_hides_collections": "Das Konto hat sich dazu entschieden, diese Information nicht zu veröffentlichen", - "empty_column.account_suspended": "Konto gesperrt", + "empty_column.account_hides_collections": "Das Profil hat sich entschieden, diese Information nicht zu veröffentlichen", + "empty_column.account_suspended": "Konto dauerhaft gesperrt", "empty_column.account_timeline": "Keine Beiträge vorhanden!", "empty_column.account_unavailable": "Profil nicht verfügbar", "empty_column.blocks": "Du hast bisher keine Profile blockiert.", "empty_column.bookmarked_statuses": "Du hast bisher keine Beiträge als Lesezeichen abgelegt. Sobald du einen Beitrag als Lesezeichen speicherst, wird er hier erscheinen.", "empty_column.community": "Die lokale Timeline ist leer. Schreibe einen öffentlichen Beitrag, um den Stein ins Rollen zu bringen!", "empty_column.direct": "Du hast noch keine privaten Erwähnungen. Sobald du eine sendest oder erhältst, wird sie hier erscheinen.", - "empty_column.domain_blocks": "Du hast noch keine Domains blockiert.", - "empty_column.explore_statuses": "Momentan ist nichts im Trend. Schau später wieder vorbei!", + "empty_column.domain_blocks": "Du hast bisher keine Domains blockiert.", + "empty_column.explore_statuses": "Momentan trendet nichts. Schau später wieder vorbei!", "empty_column.favourited_statuses": "Du hast noch keine Beiträge favorisiert. Sobald du einen favorisierst, wird er hier erscheinen.", "empty_column.favourites": "Diesen Beitrag hat bisher noch niemand favorisiert. Sobald es jemand tut, wird das Profil hier erscheinen.", "empty_column.follow_requests": "Es liegen derzeit keine Follower-Anfragen vor. Sobald du eine erhältst, wird sie hier erscheinen.", - "empty_column.followed_tags": "Du folgst noch keinen Hashtags. Wenn du dies tust, werden sie hier erscheinen.", + "empty_column.followed_tags": "Du folgst noch keinen Hashtags. Sobald du Hashtags abonniert hast, werden sie hier angezeigt.", "empty_column.hashtag": "Unter diesem Hashtag gibt es noch nichts.", "empty_column.home": "Die Timeline deiner Startseite ist leer! Folge mehr Leuten, um sie zu füllen.", "empty_column.list": "Diese Liste ist derzeit leer. Wenn Konten auf dieser Liste neue Beiträge veröffentlichen, werden sie hier erscheinen.", @@ -277,7 +277,7 @@ "empty_column.mutes": "Du hast keine Profile stummgeschaltet.", "empty_column.notification_requests": "Alles klar! Hier gibt es nichts. Wenn Sie neue Mitteilungen erhalten, werden diese entsprechend Ihren Einstellungen hier angezeigt.", "empty_column.notifications": "Du hast noch keine Benachrichtigungen. Sobald andere Personen mit dir interagieren, wirst du hier darüber informiert.", - "empty_column.public": "Hier ist nichts zu sehen! Schreibe etwas öffentlich oder folge Profilen von anderen Servern, um die Timeline aufzufüllen", + "empty_column.public": "Hier ist nichts zu sehen! Schreibe einen öffentlichen Beitrag oder folge Profilen von anderen Servern im Fediverse, um die Timeline zu füllen", "error.unexpected_crash.explanation": "Wegen eines Fehlers in unserem Code oder aufgrund einer Browser-Inkompatibilität kann diese Seite nicht korrekt angezeigt werden.", "error.unexpected_crash.explanation_addons": "Diese Seite konnte nicht korrekt angezeigt werden. Dieser Fehler wird wahrscheinlich durch ein Browser-Add-on oder automatische Übersetzungswerkzeuge verursacht.", "error.unexpected_crash.next_steps": "Versuche, die Seite neu zu laden. Wenn das nicht helfen sollte, kannst du das Webinterface von Mastodon vermutlich über einen anderen Browser erreichen – oder du verwendest eine mobile (native) App.", @@ -287,7 +287,7 @@ "explore.search_results": "Suchergebnisse", "explore.suggested_follows": "Profile", "explore.title": "Entdecken", - "explore.trending_links": "Neuigkeiten", + "explore.trending_links": "Artikel", "explore.trending_statuses": "Beiträge", "explore.trending_tags": "Hashtags", "filter_modal.added.context_mismatch_explanation": "Diese Filterkategorie gilt nicht für den Kontext, in welchem du auf diesen Beitrag zugegriffen hast. Wenn der Beitrag auch in diesem Kontext gefiltert werden soll, musst du den Filter bearbeiten.", @@ -306,7 +306,7 @@ "filter_modal.select_filter.subtitle": "Einem vorhandenen Filter hinzufügen oder einen neuen erstellen", "filter_modal.select_filter.title": "Diesen Beitrag filtern", "filter_modal.title.status": "Beitrag per Filter ausblenden", - "filter_warning.matches_filter": "Ausgeblendet wegen des Filters „{title}“", + "filter_warning.matches_filter": "Ausgeblendet wegen deines Filters „{title}“", "filtered_notifications_banner.pending_requests": "Von {count, plural, =0 {keinem Profil, das dir möglicherweise bekannt ist} one {einem Profil, das dir möglicherweise bekannt ist} other {# Profilen, die dir möglicherweise bekannt sind}}", "filtered_notifications_banner.title": "Gefilterte Benachrichtigungen", "firehose.all": "Alle Server", @@ -327,15 +327,15 @@ "follow_suggestions.personalized_suggestion": "Persönliche Empfehlung", "follow_suggestions.popular_suggestion": "Beliebte Empfehlung", "follow_suggestions.popular_suggestion_longer": "Beliebt auf {domain}", - "follow_suggestions.similar_to_recently_followed_longer": "Ähnlich zu Profilen, denen du seit kurzem folgst", + "follow_suggestions.similar_to_recently_followed_longer": "Ähnelt deinen kürzlich gefolgten Profilen", "follow_suggestions.view_all": "Alle anzeigen", - "follow_suggestions.who_to_follow": "Empfohlene Profile", - "followed_tags": "Gefolgte Hashtags", + "follow_suggestions.who_to_follow": "Wem folgen?", + "followed_tags": "Abonnierte Hashtags", "footer.about": "Über", "footer.directory": "Profilverzeichnis", "footer.get_app": "App herunterladen", "footer.invite": "Leute einladen", - "footer.keyboard_shortcuts": "Tastenkombinationen", + "footer.keyboard_shortcuts": "Tastaturkürzel", "footer.privacy_policy": "Datenschutzerklärung", "footer.source_code": "Quellcode anzeigen", "footer.status": "Status", @@ -353,8 +353,8 @@ "hashtag.counter_by_accounts": "{count, plural, one{{counter} Beteiligte*r} other{{counter} Beteiligte}}", "hashtag.counter_by_uses": "{count, plural, one {{counter} Beitrag} other {{counter} Beiträge}}", "hashtag.counter_by_uses_today": "{count, plural, one {{counter} Beitrag} other {{counter} Beiträge}} heute", - "hashtag.follow": "Hashtag folgen", - "hashtag.unfollow": "Hashtag entfolgen", + "hashtag.follow": "Abonnieren", + "hashtag.unfollow": "Abbestellen", "hashtags.and_other": "… und {count, plural, one{# weiterer} other {# weitere}}", "hints.profiles.followers_may_be_missing": "Möglicherweise werden für dieses Profil nicht alle Follower angezeigt.", "hints.profiles.follows_may_be_missing": "Möglicherweise werden für dieses Profil nicht alle gefolgten Profile angezeigt.", @@ -365,7 +365,7 @@ "hints.threads.replies_may_be_missing": "Möglicherweise werden nicht alle Antworten von anderen Servern angezeigt.", "hints.threads.see_more": "Weitere Antworten auf {domain} ansehen", "home.column_settings.show_reblogs": "Geteilte Beiträge anzeigen", - "home.column_settings.show_replies": "Antworten anzeigen", + "home.column_settings.show_replies": "Antworten zu Beiträgen anzeigen", "home.hide_announcements": "Ankündigungen ausblenden", "home.pending_critical_update.body": "Bitte aktualisiere deinen Mastodon-Server so schnell wie möglich!", "home.pending_critical_update.link": "Updates ansehen", @@ -389,7 +389,7 @@ "interaction_modal.login.action": "Zurück zur Startseite", "interaction_modal.login.prompt": "Adresse deines Servers, z. B. mastodon.social", "interaction_modal.no_account_yet": "Nicht auf Mastodon?", - "interaction_modal.on_another_server": "Auf einem anderen Server", + "interaction_modal.on_another_server": "Auf anderem Server", "interaction_modal.on_this_server": "Auf diesem Server", "interaction_modal.sign_in": "Du bist auf diesem Server nicht angemeldet. Auf welchem Server wird dein Konto verwaltet?", "interaction_modal.sign_in_hint": "Hinweis: Hierbei handelt es sich um die Website, auf der du dich registriert hast. Wenn du dich nicht mehr daran erinnerst, dann kannst du sie in der Willkommens-E-Mail nachsehen. Du kannst auch deinen vollständigen Profilnamen eingeben! (z. B. @Mastodon@mastodon.social)", @@ -401,39 +401,39 @@ "intervals.full.hours": "{number, plural, one {# Stunde} other {# Stunden}}", "intervals.full.minutes": "{number, plural, one {# Minute} other {# Minuten}}", "keyboard_shortcuts.back": "Zurücknavigieren", - "keyboard_shortcuts.blocked": "Liste blockierter Profile öffnen", + "keyboard_shortcuts.blocked": "Blockierte Profile öffnen", "keyboard_shortcuts.boost": "Beitrag teilen", - "keyboard_shortcuts.column": "Auf die aktuelle Spalte fokussieren", + "keyboard_shortcuts.column": "Aktuelle Spalte fokussieren", "keyboard_shortcuts.compose": "Eingabefeld fokussieren", "keyboard_shortcuts.description": "Beschreibung", "keyboard_shortcuts.direct": "Private Erwähnungen öffnen", - "keyboard_shortcuts.down": "Ansicht nach unten bewegen", + "keyboard_shortcuts.down": "Auswahl nach unten bewegen", "keyboard_shortcuts.enter": "Beitrag öffnen", "keyboard_shortcuts.favourite": "Beitrag favorisieren", "keyboard_shortcuts.favourites": "Favoriten öffnen", "keyboard_shortcuts.federated": "Föderierte Timeline öffnen", - "keyboard_shortcuts.heading": "Tastenkombinationen", + "keyboard_shortcuts.heading": "Tastenkürzel", "keyboard_shortcuts.home": "Startseite öffnen", "keyboard_shortcuts.hotkey": "Tastenkürzel", - "keyboard_shortcuts.legend": "Tastenkombinationen anzeigen", + "keyboard_shortcuts.legend": "Tastenkürzel anzeigen (diese Seite)", "keyboard_shortcuts.local": "Lokale Timeline öffnen", "keyboard_shortcuts.mention": "Profil erwähnen", - "keyboard_shortcuts.muted": "Liste stummgeschalteter Profile öffnen", - "keyboard_shortcuts.my_profile": "Eigenes Profil aufrufen", - "keyboard_shortcuts.notifications": "Benachrichtigungen aufrufen", - "keyboard_shortcuts.open_media": "Medieninhalt öffnen", + "keyboard_shortcuts.muted": "Stummgeschaltete Profile öffnen", + "keyboard_shortcuts.my_profile": "Eigenes Profil öffnen", + "keyboard_shortcuts.notifications": "Benachrichtigungen öffnen", + "keyboard_shortcuts.open_media": "Medien öffnen", "keyboard_shortcuts.pinned": "Liste angehefteter Beiträge öffnen", "keyboard_shortcuts.profile": "Profil aufrufen", - "keyboard_shortcuts.reply": "Auf Beitrag antworten", - "keyboard_shortcuts.requests": "Liste der Follower-Anfragen aufrufen", - "keyboard_shortcuts.search": "Suchleiste fokussieren", - "keyboard_shortcuts.spoilers": "Feld für Inhaltswarnung anzeigen/ausblenden", + "keyboard_shortcuts.reply": "Beitrag beantworten", + "keyboard_shortcuts.requests": "Follower-Anfragen aufrufen", + "keyboard_shortcuts.search": "Eingabefeld / Suche fokussieren", + "keyboard_shortcuts.spoilers": "Feld für Inhaltswarnung anzeigen / ausblenden", "keyboard_shortcuts.start": "„Auf gehts!“ öffnen", - "keyboard_shortcuts.toggle_hidden": "Beitragstext hinter der Inhaltswarnung anzeigen/ausblenden", - "keyboard_shortcuts.toggle_sensitivity": "Medien anzeigen/ausblenden", + "keyboard_shortcuts.toggle_hidden": "Beitrag hinter Inhaltswarnung anzeigen / ausblenden", + "keyboard_shortcuts.toggle_sensitivity": "Medien anzeigen / ausblenden", "keyboard_shortcuts.toot": "Neuen Beitrag erstellen", - "keyboard_shortcuts.unfocus": "Eingabefeld/Suche nicht mehr fokussieren", - "keyboard_shortcuts.up": "Ansicht nach oben bewegen", + "keyboard_shortcuts.unfocus": "Eingabefeld / Suche nicht mehr fokussieren", + "keyboard_shortcuts.up": "Auswahl nach oben bewegen", "lightbox.close": "Schließen", "lightbox.next": "Vor", "lightbox.previous": "Zurück", @@ -452,19 +452,19 @@ "lists.exclusive": "Diese Beiträge in der Startseite ausblenden", "lists.new.create": "Neue Liste erstellen", "lists.new.title_placeholder": "Titel der neuen Liste", - "lists.replies_policy.followed": "Alle folgenden Profile", + "lists.replies_policy.followed": "alle folgenden Profile", "lists.replies_policy.list": "Mitglieder der Liste", - "lists.replies_policy.none": "Niemanden", + "lists.replies_policy.none": "niemanden", "lists.replies_policy.title": "Antworten anzeigen für:", "lists.search": "Suche nach Leuten, denen du folgst", "lists.subheading": "Deine Listen", "load_pending": "{count, plural, one {# neuer Beitrag} other {# neue Beiträge}}", - "loading_indicator.label": "Wird geladen …", + "loading_indicator.label": "Lädt …", "media_gallery.hide": "Ausblenden", "moved_to_account_banner.text": "Dein Konto {disabledAccount} ist derzeit deaktiviert, weil du zu {movedToAccount} umgezogen bist.", - "mute_modal.hide_from_notifications": "Benachrichtigungen ausblenden", - "mute_modal.hide_options": "Einstellungen ausblenden", - "mute_modal.indefinite": "Bis ich die Stummschaltung aufhebe", + "mute_modal.hide_from_notifications": "Auch aus den Benachrichtigungen entfernen", + "mute_modal.hide_options": "Optionen ausblenden", + "mute_modal.indefinite": "Dauerhaft, bis ich die Stummschaltung aufhebe", "mute_modal.show_options": "Optionen anzeigen", "mute_modal.they_can_mention_and_follow": "Das Profil wird dich weiterhin erwähnen und dir folgen können, aber du wirst davon nichts sehen.", "mute_modal.they_wont_know": "Das Profil wird nicht erkennen können, dass du es stummgeschaltet hast.", @@ -473,7 +473,7 @@ "mute_modal.you_wont_see_posts": "Deine Beiträge können von diesem stummgeschalteten Profil weiterhin gesehen werden, aber du wirst dessen Beiträge nicht mehr sehen.", "navigation_bar.about": "Über", "navigation_bar.administration": "Administration", - "navigation_bar.advanced_interface": "Im erweiterten Webinterface öffnen", + "navigation_bar.advanced_interface": "Erweitertes Webinterface öffnen", "navigation_bar.blocks": "Blockierte Profile", "navigation_bar.bookmarks": "Lesezeichen", "navigation_bar.community_timeline": "Lokale Timeline", @@ -485,8 +485,8 @@ "navigation_bar.favourites": "Favoriten", "navigation_bar.filters": "Stummgeschaltete Wörter", "navigation_bar.follow_requests": "Follower-Anfragen", - "navigation_bar.followed_tags": "Gefolgte Hashtags", - "navigation_bar.follows_and_followers": "Follower und Folge ich", + "navigation_bar.followed_tags": "Abonnierte Hashtags", + "navigation_bar.follows_and_followers": "Follower & Folge ich", "navigation_bar.lists": "Listen", "navigation_bar.logout": "Abmelden", "navigation_bar.moderation": "Moderation", @@ -522,7 +522,7 @@ "notification.moderation_warning": "Du wurdest von den Moderator*innen verwarnt", "notification.moderation_warning.action_delete_statuses": "Einige deiner Beiträge sind entfernt worden.", "notification.moderation_warning.action_disable": "Dein Konto wurde deaktiviert.", - "notification.moderation_warning.action_mark_statuses_as_sensitive": "Einige deiner Beiträge wurden mit einer Inhaltswarnung versehen.", + "notification.moderation_warning.action_mark_statuses_as_sensitive": "Einige deiner Beiträge haben eine Inhaltswarnung erhalten.", "notification.moderation_warning.action_none": "Dein Konto ist von den Moderator*innen verwarnt worden.", "notification.moderation_warning.action_sensitive": "Deine zukünftigen Beiträge werden mit einer Inhaltswarnung versehen.", "notification.moderation_warning.action_silence": "Dein Konto wurde eingeschränkt.", @@ -536,7 +536,7 @@ "notification.relationships_severance_event.domain_block": "Ein Admin von {from} hat {target} blockiert – darunter {followersCount} deiner Follower und {followingCount, plural, one {# Konto, dem} other {# Konten, denen}} du folgst.", "notification.relationships_severance_event.learn_more": "Mehr erfahren", "notification.relationships_severance_event.user_domain_block": "Du hast {target} blockiert – {followersCount} deiner Follower und {followingCount, plural, one {# Konto, dem} other {# Konten, denen}} du folgst, wurden entfernt.", - "notification.status": "{name} postete …", + "notification.status": "{name} veröffentlichte …", "notification.update": "{name} bearbeitete einen Beitrag", "notification_requests.accept": "Akzeptieren", "notification_requests.accept_multiple": "{count, plural, one {# Anfrage akzeptieren …} other {# Anfragen akzeptieren …}}", @@ -573,7 +573,7 @@ "notifications.column_settings.poll": "Umfrageergebnisse:", "notifications.column_settings.push": "Push-Benachrichtigungen", "notifications.column_settings.reblog": "Geteilte Beiträge:", - "notifications.column_settings.show": "In dieser Spalte anzeigen", + "notifications.column_settings.show": "Im Feed „Benachrichtigungen“ anzeigen", "notifications.column_settings.sound": "Ton abspielen", "notifications.column_settings.status": "Neue Beiträge:", "notifications.column_settings.unread_notifications.category": "Ungelesene Benachrichtigungen", @@ -582,10 +582,10 @@ "notifications.filter.all": "Alles", "notifications.filter.boosts": "Geteilte Beiträge", "notifications.filter.favourites": "Favoriten", - "notifications.filter.follows": "Folgt", + "notifications.filter.follows": "Neue Follower", "notifications.filter.mentions": "Erwähnungen", "notifications.filter.polls": "Umfrageergebnisse", - "notifications.filter.statuses": "Neue Beiträge von Personen, denen du folgst", + "notifications.filter.statuses": "Neue Beiträge von abonnierten Profilen", "notifications.grant_permission": "Berechtigung erteilen.", "notifications.group": "{count} Benachrichtigungen", "notifications.mark_as_read": "Alle Benachrichtigungen als gelesen markieren", @@ -595,22 +595,22 @@ "notifications.policy.accept": "Akzeptieren", "notifications.policy.accept_hint": "In Benachrichtigungen anzeigen", "notifications.policy.drop": "Ignorieren", - "notifications.policy.drop_hint": "In die Leere senden und nie wieder sehen", + "notifications.policy.drop_hint": "Ins Nirwana befördern und auf Nimmerwiedersehen!", "notifications.policy.filter": "Filtern", - "notifications.policy.filter_hint": "An gefilterte Benachrichtigungen im Posteingang senden", - "notifications.policy.filter_limited_accounts_hint": "Durch Server-Moderator*innen eingeschränkt", - "notifications.policy.filter_limited_accounts_title": "moderierten Konten", - "notifications.policy.filter_new_accounts.hint": "Innerhalb {days, plural, one {des letzten Tages} other {der letzten # Tagen}} erstellt", - "notifications.policy.filter_new_accounts_title": "neuen Konten", - "notifications.policy.filter_not_followers_hint": "Einschließlich Profilen, die dir seit weniger als {days, plural, one {einem Tag} other {# Tagen}} folgen", + "notifications.policy.filter_hint": "Im separaten Feed „Gefilterte Benachrichtigungen“ anzeigen", + "notifications.policy.filter_limited_accounts_hint": "Durch Server-Moderator*innen eingeschränkte Profile", + "notifications.policy.filter_limited_accounts_title": "eingeschränkten Konten", + "notifications.policy.filter_new_accounts.hint": "Konto {days, plural, one {seit gestern} other {in den vergangenen # Tagen}} registriert", + "notifications.policy.filter_new_accounts_title": "neuen Profilen", + "notifications.policy.filter_not_followers_hint": "Einschließlich Profilen, die mir seit weniger als {days, plural, one {einem Tag} other {# Tagen}} folgen", "notifications.policy.filter_not_followers_title": "Profilen, die mir nicht folgen", - "notifications.policy.filter_not_following_hint": "Bis du sie manuell genehmigst", + "notifications.policy.filter_not_following_hint": "… bis ich sie manuell genehmige", "notifications.policy.filter_not_following_title": "Profilen, denen ich nicht folge", - "notifications.policy.filter_private_mentions_hint": "Solange sie keine Antwort auf deine Erwähnung ist oder du dem Profil nicht folgst", + "notifications.policy.filter_private_mentions_hint": "… solange sie keine Antwort auf meine Erwähnungen sind – oder ich den Profilen nicht folge", "notifications.policy.filter_private_mentions_title": "unerwünschten privaten Erwähnungen", "notifications.policy.title": "Benachrichtigungen verwalten von …", "notifications_permission_banner.enable": "Aktiviere Desktop-Benachrichtigungen", - "notifications_permission_banner.how_to_control": "Um Benachrichtigungen zu erhalten, wenn Mastodon nicht geöffnet ist, aktiviere die Desktop-Benachrichtigungen. Du kannst genau bestimmen, welche Arten von Interaktionen Desktop-Benachrichtigungen über die {icon} -Taste erzeugen, sobald diese aktiviert sind.", + "notifications_permission_banner.how_to_control": "Aktiviere Desktop-Benachrichtigungen, um Mitteilungen zu erhalten, wenn Mastodon nicht geöffnet ist. Du kannst für jede Kategorie einstellen, ob du Desktop-Benachrichtigungen erhalten möchtest. Sobald sie aktiviert sind, klicke dafür auf das {icon} -Symbol.", "notifications_permission_banner.title": "Nichts verpassen", "onboarding.action.back": "Bring mich zurück", "onboarding.actions.back": "Bring mich zurück", @@ -642,7 +642,7 @@ "onboarding.steps.follow_people.title": "Personalisiere deine Startseite", "onboarding.steps.publish_status.body": "Begrüße die Welt mit Text, Fotos, Videos oder Umfragen. {emoji}", "onboarding.steps.publish_status.title": "Erstelle deinen ersten Beitrag", - "onboarding.steps.setup_profile.body": "Mit einem vollständigen Profil interagieren andere eher mit dir.", + "onboarding.steps.setup_profile.body": "Mit einem aussagekräftigen Profil interagieren andere eher mit dir.", "onboarding.steps.setup_profile.title": "Personalisiere dein Profil", "onboarding.steps.share_profile.body": "Lass deine Freund*innen wissen, wie sie dich auf Mastodon finden können.", "onboarding.steps.share_profile.title": "Teile dein Mastodon-Profil", @@ -664,11 +664,11 @@ "poll_button.add_poll": "Umfrage erstellen", "poll_button.remove_poll": "Umfrage entfernen", "privacy.change": "Sichtbarkeit anpassen", - "privacy.direct.long": "Alle in diesem Beitrag erwähnten Profile", + "privacy.direct.long": "Nur in diesem Beitrag erwähnte Profile", "privacy.direct.short": "Ausgewählte Profile", - "privacy.private.long": "Nur deine Follower", + "privacy.private.long": "Nur deine eigenen Follower", "privacy.private.short": "Follower", - "privacy.public.long": "Alle in und außerhalb von Mastodon", + "privacy.public.long": "Alle innerhalb und außerhalb von Mastodon", "privacy.public.short": "Öffentlich", "privacy.unlisted.additional": "Das Verhalten ist wie bei „Öffentlich“, jedoch gibt es einige Einschränkungen. Der Beitrag wird nicht in „Live-Feeds“, „Erkunden“, Hashtags oder über die Mastodon-Suchfunktion auffindbar sein – selbst wenn die zugehörige Einstellung aktiviert wurde.", "privacy.unlisted.long": "Weniger im Algorithmus berücksichtigt", @@ -682,7 +682,7 @@ "relative_time.days": "{number} T.", "relative_time.full.days": "vor {number, plural, one {# Tag} other {# Tagen}}", "relative_time.full.hours": "vor {number, plural, one {# Stunde} other {# Stunden}}", - "relative_time.full.just_now": "gerade eben", + "relative_time.full.just_now": "soeben", "relative_time.full.minutes": "vor {number, plural, one {# Minute} other {# Minuten}}", "relative_time.full.seconds": "vor {number, plural, one {1 Sekunde} other {# Sekunden}}", "relative_time.hours": "{number} Std.", @@ -695,7 +695,7 @@ "reply_indicator.poll": "Umfrage", "report.block": "Blockieren", "report.block_explanation": "Du wirst keine Beiträge mehr von diesem Konto sehen. Das blockierte Konto wird deine Beiträge nicht mehr sehen oder dir folgen können. Die Person könnte mitbekommen, dass du sie blockiert hast.", - "report.categories.legal": "Rechtlich", + "report.categories.legal": "Rechtliches", "report.categories.other": "Andere", "report.categories.spam": "Spam", "report.categories.violation": "Der Inhalt verletzt eine oder mehrere Serverregeln", @@ -704,9 +704,9 @@ "report.category.title_account": "Profil", "report.category.title_status": "Beitrag", "report.close": "Fertig", - "report.comment.title": "Gibt es etwas anderes, was wir wissen sollten?", - "report.forward": "Meldung zusätzlich an {target} weiterleiten", - "report.forward_hint": "Dieses Konto gehört zu einem anderen Server. Soll eine anonymisierte Kopie der Meldung auch dorthin gesendet werden?", + "report.comment.title": "Gibt es noch etwas, das wir wissen sollten?", + "report.forward": "Meldung auch an den externen Server {target} weiterleiten", + "report.forward_hint": "Das gemeldete Konto befindet sich auf einem anderen Server. Soll zusätzlich eine anonymisierte Kopie deiner Meldung an diesen Server geschickt werden?", "report.mute": "Stummschalten", "report.mute_explanation": "Du wirst keine Beiträge mehr von diesem Konto sehen. Das stummgeschaltete Konto wird dir weiterhin folgen und deine Beiträge sehen können. Die Person wird nicht mitbekommen, dass du sie stummgeschaltet hast.", "report.next": "Weiter", @@ -722,9 +722,9 @@ "report.reasons.violation": "Das verstößt gegen Serverregeln", "report.reasons.violation_description": "Du bist dir sicher, dass eine bestimmte Regel gebrochen wurde", "report.rules.subtitle": "Wähle alle zutreffenden Inhalte aus", - "report.rules.title": "Welche Regeln werden verletzt?", + "report.rules.title": "Gegen welche Regeln wurde verstoßen?", "report.statuses.subtitle": "Wähle alle zutreffenden Inhalte aus", - "report.statuses.title": "Gibt es Beiträge, die diese Meldung bekräftigen?", + "report.statuses.title": "Gibt es Beiträge, die diese Meldung stützen?", "report.submit": "Senden", "report.target": "{target} melden", "report.thanks.take_action": "Das sind deine Möglichkeiten zu bestimmen, was du auf Mastodon sehen möchtest:", @@ -741,7 +741,7 @@ "report_notification.categories.spam": "Spam", "report_notification.categories.spam_sentence": "Spam", "report_notification.categories.violation": "Regelverstoß", - "report_notification.categories.violation_sentence": "Regelverletzung", + "report_notification.categories.violation_sentence": "Verstoß gegen die Serverregeln", "report_notification.open": "Meldung öffnen", "search.no_recent_searches": "Keine früheren Suchanfragen", "search.placeholder": "Suchen", @@ -750,7 +750,7 @@ "search.quick_action.go_to_hashtag": "Hashtag {x} aufrufen", "search.quick_action.open_url": "URL in Mastodon öffnen", "search.quick_action.status_search": "Beiträge passend zu {x}", - "search.search_or_paste": "Suchen oder URL einfügen", + "search.search_or_paste": "Suche eingeben oder URL einfügen", "search_popout.full_text_search_disabled_message": "Auf {domain} nicht verfügbar.", "search_popout.full_text_search_logged_out_message": "Nur verfügbar, wenn angemeldet.", "search_popout.language_code": "ISO-Sprachcode", @@ -781,7 +781,7 @@ "status.admin_status": "Beitrag moderieren", "status.block": "@{name} blockieren", "status.bookmark": "Lesezeichen setzen", - "status.cancel_reblog_private": "Beitrag nicht mehr teilen", + "status.cancel_reblog_private": "Nicht mehr teilen", "status.cannot_reblog": "Dieser Beitrag kann nicht geteilt werden", "status.continued_thread": "Fortgeführter Thread", "status.copy": "Link zum Beitrag kopieren", @@ -791,10 +791,10 @@ "status.direct_indicator": "Private Erwähnung", "status.edit": "Beitrag bearbeiten", "status.edited": "Zuletzt am {date} bearbeitet", - "status.edited_x_times": "{count, plural, one {{count}-mal} other {{count}-mal}} bearbeitet", + "status.edited_x_times": "{count, plural, one {{count} ×} other {{count} ×}} bearbeitet", "status.embed": "Code zum Einbetten", "status.favourite": "Favorisieren", - "status.favourites": "{count, plural, one {Mal favorisiert} other {Mal favorisiert}}", + "status.favourites": "{count, plural, one {× favorisiert} other {× favorisiert}}", "status.filter": "Beitrag filtern", "status.history.created": "{name} erstellte {date}", "status.history.edited": "{name} bearbeitete {date}", @@ -813,7 +813,7 @@ "status.reblog": "Teilen", "status.reblog_private": "Mit der ursprünglichen Zielgruppe teilen", "status.reblogged_by": "{name} teilte", - "status.reblogs": "{count, plural, one {Mal geteilt} other {Mal geteilt}}", + "status.reblogs": "{count, plural, one {× geteilt} other {× geteilt}}", "status.reblogs.empty": "Diesen Beitrag hat bisher noch niemand geteilt. Sobald es jemand tut, wird das Profil hier erscheinen.", "status.redraft": "Löschen und neu erstellen", "status.remove_bookmark": "Lesezeichen entfernen", @@ -830,7 +830,7 @@ "status.title.with_attachments": "{user} veröffentlichte {attachmentCount, plural, one {ein Medium} other {{attachmentCount} Medien}}", "status.translate": "Übersetzen", "status.translated_from_with": "Aus {lang} mittels {provider} übersetzt", - "status.uncached_media_warning": "Vorschau nicht verfügbar", + "status.uncached_media_warning": "Vorschau noch nicht verfügbar", "status.unmute_conversation": "Stummschaltung der Unterhaltung aufheben", "status.unpin": "Vom Profil lösen", "subscribed_languages.lead": "Nach der Änderung werden nur noch Beiträge in den ausgewählten Sprachen in den Timelines deiner Startseite und deiner Listen angezeigt. Wähle keine Sprache aus, um alle Beiträge zu sehen.", @@ -853,16 +853,16 @@ "upload_button.label": "Bilder, Video oder Audio hinzufügen", "upload_error.limit": "Dateiupload-Limit überschritten.", "upload_error.poll": "Medien-Anhänge sind zusammen mit Umfragen nicht erlaubt.", - "upload_form.audio_description": "Beschreibe für Menschen mit Hörbehinderung", - "upload_form.description": "Beschreibe für Menschen mit Sehbehinderung", - "upload_form.drag_and_drop.instructions": "Drücke zum Aufnehmen eines Medienanhangs die Eingabe- oder Leertaste. Verwende beim Ziehen die Pfeiltasten, um den Medienanhang zur gewünschten Position zu bewegen. Drücke erneut die Eingabe- oder Leertaste, um den Medienanhang an der gewünschten Position abzulegen. Mit der Escape-Taste kannst du den Vorgang abbrechen.", + "upload_form.audio_description": "Für taube oder hörbehinderte Menschen beschreiben", + "upload_form.description": "Für blinde oder sehbehinderte Menschen beschreiben", + "upload_form.drag_and_drop.instructions": "Drücke zum Auswählen eines Medienanhangs die Eingabe- oder Leertaste. Verwende beim Ziehen die Pfeiltasten, um den Medienanhang zur gewünschten Position zu bewegen. Drücke erneut die Eingabe- oder Leertaste, um den Medienanhang an der gewünschten Position abzulegen. Mit der Escape-Taste kannst du den Vorgang abbrechen.", "upload_form.drag_and_drop.on_drag_cancel": "Das Ziehen wurde abgebrochen und der Medienanhang {item} wurde abgelegt.", "upload_form.drag_and_drop.on_drag_end": "Der Medienanhang {item} wurde abgelegt.", "upload_form.drag_and_drop.on_drag_over": "Der Medienanhang {item} wurde bewegt.", - "upload_form.drag_and_drop.on_drag_start": "Der Medienanhang {item} wurde aufgenommen.", + "upload_form.drag_and_drop.on_drag_start": "Der Medienanhang {item} wurde ausgewählt.", "upload_form.edit": "Bearbeiten", "upload_form.thumbnail": "Vorschaubild ändern", - "upload_form.video_description": "Beschreibe für Menschen mit einer Hör- oder Sehbehinderung", + "upload_form.video_description": "Beschreibe für taube / hörbehinderte sowie für blinde / sehbehinderte Menschen", "upload_modal.analyzing_picture": "Bild wird analysiert …", "upload_modal.apply": "Übernehmen", "upload_modal.applying": "Wird übernommen …", @@ -873,8 +873,8 @@ "upload_modal.hint": "Ziehe den Kreis auf die Stelle deines Bildes, um den Fokuspunkt festzulegen, der bei Vorschaubildern immer zu sehen sein soll.", "upload_modal.preparing_ocr": "Texterkennung wird vorbereitet …", "upload_modal.preview_label": "Vorschau ({ratio})", - "upload_progress.label": "Wird hochgeladen …", - "upload_progress.processing": "Wird verarbeitet…", + "upload_progress.label": "Upload läuft …", + "upload_progress.processing": "Wird verarbeitet …", "username.taken": "Dieser Profilname ist vergeben. Versuche einen anderen", "video.close": "Video schließen", "video.download": "Datei herunterladen", @@ -885,5 +885,5 @@ "video.mute": "Stummschalten", "video.pause": "Pausieren", "video.play": "Abspielen", - "video.unmute": "Stummschaltung aufheben" + "video.unmute": "Ton einschalten" } diff --git a/app/javascript/mastodon/locales/el.json b/app/javascript/mastodon/locales/el.json index 01adbd1d51..42ec256010 100644 --- a/app/javascript/mastodon/locales/el.json +++ b/app/javascript/mastodon/locales/el.json @@ -8,8 +8,8 @@ "about.domain_blocks.silenced.title": "Περιορισμένος", "about.domain_blocks.suspended.explanation": "Τα δεδομένα αυτού του διακομιστή, δε θα επεξεργάζονται, δε θα αποθηκεύονται και δε θα ανταλλάσσονται, καθιστώντας οποιαδήποτε αλληλεπίδραση ή επικοινωνία με χρήστες από αυτόν το διακομιστή αδύνατη.", "about.domain_blocks.suspended.title": "Σε αναστολή", - "about.not_available": "Αυτές οι πληροφορίες δεν έχουν είναι διαθέσιμες σε αυτόν τον διακομιστή.", - "about.powered_by": "Αποκεντρωμένα μέσα κοινωνικής δικτύωσης που βασίζονται στο {mastodon}", + "about.not_available": "Αυτές οι πληροφορίες δεν έχουν γίνει διαθέσιμες σε αυτόν τον διακομιστή.", + "about.powered_by": "Αποκεντρωμένο μέσο κοινωνικής δικτύωσης που βασίζεται στο {mastodon}", "about.rules": "Κανόνες διακομιστή", "account.account_note_header": "Προσωπική σημείωση", "account.add_or_remove_from_list": "Προσθήκη ή Αφαίρεση από λίστες", @@ -21,43 +21,43 @@ "account.blocked": "Αποκλεισμένος/η", "account.cancel_follow_request": "Απόσυρση αιτήματος παρακολούθησης", "account.copy": "Αντιγραφή συνδέσμου προφίλ", - "account.direct": "Ιδιωτική αναφορά @{name}", + "account.direct": "Ιδιωτική επισήμανση @{name}", "account.disable_notifications": "Σταμάτα να με ειδοποιείς όταν δημοσιεύει ο @{name}", "account.domain_blocked": "Ο τομέας αποκλείστηκε", "account.edit_profile": "Επεξεργασία προφίλ", "account.enable_notifications": "Ειδοποίησέ με όταν δημοσιεύει ο @{name}", - "account.endorse": "Προβολή στο προφίλ", + "account.endorse": "Ανάδειξη στο προφίλ", "account.featured_tags.last_status_at": "Τελευταία ανάρτηση στις {date}", "account.featured_tags.last_status_never": "Καμία ανάρτηση", - "account.featured_tags.title": "προβεβλημένες ετικέτες του/της {name}", + "account.featured_tags.title": "αναδεδειγμένες ετικέτες του/της {name}", "account.follow": "Ακολούθησε", "account.follow_back": "Ακολούθησε και εσύ", "account.followers": "Ακόλουθοι", - "account.followers.empty": "Κανείς δεν ακολουθεί αυτόν τον χρήστη ακόμα.", + "account.followers.empty": "Κανείς δεν ακολουθεί αυτόν τον χρήστη ακόμη.", "account.followers_counter": "{count, plural, one {{counter} ακόλουθος} other {{counter} ακόλουθοι}}", "account.following": "Ακολουθείτε", - "account.following_counter": "{count, plural, one {{counter} ακολουθεί} other {{counter} ακολουθούν}}", - "account.follows.empty": "Αυτός ο χρήστης δεν ακολουθεί κανέναν ακόμα.", + "account.following_counter": "{count, plural, one {{counter} ακολουθεί} other {{counter} ακολουθεί}}", + "account.follows.empty": "Αυτός ο χρήστης δεν ακολουθεί κανέναν ακόμη.", "account.go_to_profile": "Μετάβαση στο προφίλ", "account.hide_reblogs": "Απόκρυψη ενισχύσεων από @{name}", "account.in_memoriam": "Εις μνήμην.", "account.joined_short": "Έγινε μέλος", "account.languages": "Αλλαγή εγγεγραμμένων γλωσσών", - "account.link_verified_on": "Η ιδιοκτησία αυτού του συνδέσμου ελέχθηκε στις {date}", + "account.link_verified_on": "Η ιδιοκτησία αυτού του συνδέσμου ελέγχθηκε στις {date}", "account.locked_info": "Η κατάσταση απορρήτου αυτού του λογαριασμού έχει ρυθμιστεί σε κλειδωμένη. Ο ιδιοκτήτης αξιολογεί χειροκίνητα ποιος μπορεί να τον ακολουθήσει.", "account.media": "Πολυμέσα", - "account.mention": "Ανάφερε @{name}", + "account.mention": "Επισήμανση @{name}", "account.moved_to": "Ο/Η {name} έχει υποδείξει ότι ο νέος λογαριασμός του/της είναι τώρα:", - "account.mute": "Σώπασε τον @{name}", + "account.mute": "Σίγαση @{name}", "account.mute_notifications_short": "Σίγαση ειδοποιήσεων", "account.mute_short": "Σίγαση", - "account.muted": "Αποσιωπημένος/η", + "account.muted": "Σε σίγαση", "account.mutual": "Αμοιβαίοι", "account.no_bio": "Δεν υπάρχει περιγραφή.", - "account.open_original_page": "Άνοιγμα αυθεντικής σελίδας", - "account.posts": "Τουτ", - "account.posts_with_replies": "Τουτ και απαντήσεις", - "account.report": "Κατάγγειλε @{name}", + "account.open_original_page": "Άνοιγμα πρωτότυπης σελίδας", + "account.posts": "Αναρτήσεις", + "account.posts_with_replies": "Αναρτήσεις και απαντήσεις", + "account.report": "Αναφορά @{name}", "account.requested": "Εκκρεμεί έγκριση. Κάνε κλικ για να ακυρώσεις το αίτημα παρακολούθησης", "account.requested_follow": "Ο/Η {name} αιτήθηκε να σε ακολουθήσει", "account.share": "Κοινοποίηση του προφίλ @{name}", @@ -66,9 +66,9 @@ "account.unblock": "Άρση αποκλεισμού @{name}", "account.unblock_domain": "Άρση αποκλεισμού του τομέα {domain}", "account.unblock_short": "Άρση αποκλεισμού", - "account.unendorse": "Να μην παρέχεται στο προφίλ", + "account.unendorse": "Να μην αναδεικνύεται στο προφίλ", "account.unfollow": "Άρση ακολούθησης", - "account.unmute": "Διακοπή σίγασης @{name}", + "account.unmute": "Άρση σίγασης @{name}", "account.unmute_notifications_short": "Σίγαση ειδοποιήσεων", "account.unmute_short": "Κατάργηση σίγασης", "account_note.placeholder": "Κάνε κλικ για να προσθέσεις σημείωση", @@ -96,7 +96,7 @@ "block_modal.they_cant_see_posts": "Δεν μπορεί να δει τις αναρτήσεις σου και δε θα δεις τις δικές του.", "block_modal.they_will_know": "Μπορούν να δει ότι έχει αποκλειστεί.", "block_modal.title": "Αποκλεισμός χρήστη;", - "block_modal.you_wont_see_mentions": "Δε θα βλέπεις τις αναρτήσεις που τον αναφέρουν.", + "block_modal.you_wont_see_mentions": "Δε θα βλέπεις τις αναρτήσεις που τον επισημαίνουν.", "boost_modal.combo": "Μπορείς να πατήσεις {combo} για να το προσπεράσεις την επόμενη φορά", "boost_modal.reblog": "Ενίσχυση ανάρτησης;", "boost_modal.undo_reblog": "Αναίρεση ενίσχυσης;", @@ -121,7 +121,7 @@ "column.blocks": "Αποκλεισμένοι χρήστες", "column.bookmarks": "Σελιδοδείκτες", "column.community": "Τοπική ροή", - "column.direct": "Ιδιωτικές αναφορές", + "column.direct": "Ιδιωτικές επισημάνσεις", "column.directory": "Περιήγηση στα προφίλ", "column.domain_blocks": "Αποκλεισμένοι τομείς", "column.favourites": "Αγαπημένα", @@ -131,7 +131,7 @@ "column.lists": "Λίστες", "column.mutes": "Αποσιωπημένοι χρήστες", "column.notifications": "Ειδοποιήσεις", - "column.pins": "Καρφιτσωμένα τουτ", + "column.pins": "Καρφιτσωμένες αναρτήσεις", "column.public": "Ομοσπονδιακή ροή", "column_back_button.label": "Πίσω", "column_header.hide_settings": "Απόκρυψη ρυθμίσεων", @@ -141,7 +141,7 @@ "column_header.show_settings": "Εμφάνιση ρυθμίσεων", "column_header.unpin": "Ξεκαρφίτσωμα", "column_subheading.settings": "Ρυθμίσεις", - "community.column_settings.local_only": "Τοπικά μόνο", + "community.column_settings.local_only": "Τοπική μόνο", "community.column_settings.media_only": "Μόνο πολυμέσα", "community.column_settings.remote_only": "Απομακρυσμένα μόνο", "compose.language.change": "Αλλαγή γλώσσας", @@ -150,9 +150,9 @@ "compose.published.open": "Άνοιγμα", "compose.saved.body": "Η ανάρτηση αποθηκεύτηκε.", "compose_form.direct_message_warning_learn_more": "Μάθε περισσότερα", - "compose_form.encryption_warning": "Οι δημοσιεύσεις στο Mastodon δεν είναι κρυπτογραφημένες από άκρο σε άκρο. Μη μοιράζεσαι ευαίσθητες πληροφορίες μέσω του Mastodon.", + "compose_form.encryption_warning": "Οι αναρτήσεις στο Mastodon δεν είναι κρυπτογραφημένες από άκρο σε άκρο. Μη μοιράζεσαι ευαίσθητες πληροφορίες μέσω του Mastodon.", "compose_form.hashtag_warning": "Αυτή η ανάρτηση δεν θα εμφανίζεται κάτω από οποιαδήποτε ετικέτα καθώς δεν είναι δημόσια. Μόνο οι δημόσιες αναρτήσεις μπορούν να αναζητηθούν με ετικέτα.", - "compose_form.lock_disclaimer": "Ο λογαριασμός σου δεν είναι {locked}. Οποιοσδήποτε μπορεί να σε ακολουθήσει για να δει τις δημοσιεύσεις σου προς τους ακολούθους σου.", + "compose_form.lock_disclaimer": "Ο λογαριασμός σου δεν είναι {locked}. Οποιοσδήποτε μπορεί να σε ακολουθήσει για να δει τις μόνο για ακολούθους αναρτήσεις σου.", "compose_form.lock_disclaimer.lock": "κλειδωμένος", "compose_form.placeholder": "Τι σκέφτεσαι;", "compose_form.poll.duration": "Διάρκεια δημοσκόπησης", @@ -185,7 +185,7 @@ "confirmations.logout.confirm": "Αποσύνδεση", "confirmations.logout.message": "Σίγουρα θέλεις να αποσυνδεθείς;", "confirmations.logout.title": "Αποσύνδεση;", - "confirmations.mute.confirm": "Αποσιώπηση", + "confirmations.mute.confirm": "Σίγαση", "confirmations.redraft.confirm": "Διαγραφή & ξαναγράψιμο", "confirmations.redraft.message": "Σίγουρα θέλεις να σβήσεις αυτή την ανάρτηση και να την ξαναγράψεις; Οι προτιμήσεις και προωθήσεις θα χαθούν και οι απαντήσεις στην αρχική ανάρτηση θα μείνουν ορφανές.", "confirmations.redraft.title": "Διαγραφή & επανασύνταξη;", @@ -198,8 +198,8 @@ "content_warning.hide": "Απόκρυψη ανάρτησης", "content_warning.show": "Εμφάνιση ούτως ή άλλως", "content_warning.show_more": "Εμφάνιση περισσότερων", - "conversation.delete": "Διαγραφή συζήτησης", - "conversation.mark_as_read": "Σήμανση ως αναγνωσμένο", + "conversation.delete": "Διαγραφή συνομιλίας", + "conversation.mark_as_read": "Σήμανση ως αναγνωσμένη", "conversation.open": "Προβολή συνομιλίας", "conversation.with": "Με {names}", "copy_icon_button.copied": "Αντιγράφηκε στο πρόχειρο", @@ -213,7 +213,7 @@ "disabled_account_banner.text": "Ο λογαριασμός σου {disabledAccount} είναι προς το παρόν απενεργοποιημένος.", "dismissable_banner.community_timeline": "Αυτές είναι οι πιο πρόσφατες δημόσιες αναρτήσεις ατόμων των οποίων οι λογαριασμοί φιλοξενούνται στο {domain}.", "dismissable_banner.dismiss": "Παράβλεψη", - "dismissable_banner.explore_links": "Αυτές οι ειδήσεις συζητούνται σε αυτόν και άλλους διακομιστές του αποκεντρωμένου δικτύου αυτή τη στιγμή.", + "dismissable_banner.explore_links": "Αυτά είναι ρεπορτάζ που μοιράζονται περισσότερο στο κοινωνικό δίκτυο σήμερα. Νεότερα ρεπορτάζ που αναρτώνται από περισσότερα διαφορετικά άτομα, κατατάσσονται υψηλότερα.", "dismissable_banner.explore_statuses": "Αυτές είναι οι αναρτήσεις που έχουν απήχηση στο κοινωνικό δίκτυο σήμερα. Οι νεώτερες αναρτήσεις με περισσότερες προωθήσεις και προτιμήσεις κατατάσσονται ψηλότερα.", "dismissable_banner.explore_tags": "Αυτές οι ετικέτες αποκτούν απήχηση σε αυτόν και άλλους διακομιστές του αποκεντρωμένου δικτύου αυτή τη στιγμή.", "dismissable_banner.public_timeline": "Αυτές είναι οι πιο πρόσφατες δημόσιες αναρτήσεις από άτομα στον κοινωνικό ιστό που ακολουθούν άτομα από το {domain}.", @@ -234,10 +234,10 @@ "domain_pill.their_username": "Το μοναδικό του αναγνωριστικό στο διακομιστή του. Είναι πιθανό να βρεις χρήστες με το ίδιο όνομα χρήστη σε διαφορετικούς διακομιστές.", "domain_pill.username": "Όνομα χρήστη", "domain_pill.whats_in_a_handle": "Τί υπάρχει σε ένα πλήρες όνομα χρήστη;", - "domain_pill.who_they_are": "Από τη στιγμή που τα πλήρη ονόματα λένε ποιος είναι κάποιος και πού είναι, μπορείς να αλληλεπιδράσεις με άτομα απ' όλο τον κοινωνικό ιστό των .", + "domain_pill.who_they_are": "Από τη στιγμή που τα πλήρη ονόματα χρηστών λένε ποιος είναι κάποιος και πού είναι, μπορείς να αλληλεπιδράσεις με άτομα απ' όλο τον κοινωνικό ιστό των .", "domain_pill.who_you_are": "Επειδή το πλήρες όνομα χρήστη σου λέει ποιος είσαι και πού βρίσκεσαι, άτομα μπορούν να αλληλεπιδράσουν μαζί σου στον κοινωνικό ιστό των .", "domain_pill.your_handle": "Το πλήρες όνομα χρήστη σου:", - "domain_pill.your_server": "Το ψηφιακό σου σπίτι, όπου ζουν όλες σου οι αναρτήσεις. Δε σ' αρέσει αυτός; Μετακινήσου σε διακομιστές ανά πάσα στιγμή και πάρε και τους ακόλουθούς σου.", + "domain_pill.your_server": "Το ψηφιακό σου σπίτι, όπου ζουν όλες σου οι αναρτήσεις. Δε σ' αρέσει αυτός; Μετακινήσου σε διακομιστές ανά πάσα στιγμή και πάρε και τους ακόλουθούς σου μαζί.", "domain_pill.your_username": "Το μοναδικό σου αναγνωριστικό σε τούτο τον διακομιστή. Είναι πιθανό να βρεις χρήστες με το ίδιο όνομα χρήστη σε διαφορετικούς διακομιστές.", "embed.instructions": "Ενσωμάτωσε αυτή την ανάρτηση στην ιστοσελίδα σου αντιγράφοντας τον παρακάτω κώδικα.", "embed.preview": "Ορίστε πως θα φαίνεται:", @@ -246,7 +246,7 @@ "emoji_button.custom": "Προσαρμοσμένα", "emoji_button.flags": "Σημαίες", "emoji_button.food": "Φαγητά & Ποτά", - "emoji_button.label": "Εισάγετε emoji", + "emoji_button.label": "Εισαγωγή emoji", "emoji_button.nature": "Φύση", "emoji_button.not_found": "Δε βρέθηκε αντιστοίχιση εμότζι", "emoji_button.objects": "Αντικείμενα", @@ -260,23 +260,23 @@ "empty_column.account_suspended": "Λογαριασμός σε αναστολή", "empty_column.account_timeline": "Δεν έχει αναρτήσεις εδώ!", "empty_column.account_unavailable": "Μη διαθέσιμο προφίλ", - "empty_column.blocks": "Δεν έχεις αποκλείσει κανέναν χρήστη ακόμα.", - "empty_column.bookmarked_statuses": "Δεν έχεις καμία ανάρτηση με σελιδοδείκτη ακόμα. Μόλις βάλεις κάποιον, θα εμφανιστεί εδώ.", + "empty_column.blocks": "Δεν έχεις αποκλείσει κανέναν χρήστη ακόμη.", + "empty_column.bookmarked_statuses": "Δεν έχεις καμία ανάρτηση με σελιδοδείκτη ακόμη. Μόλις βάλεις κάποιον, θα εμφανιστεί εδώ.", "empty_column.community": "Η τοπική ροή είναι κενή. Γράψε κάτι δημόσια για να αρχίσει να κυλά η μπάλα!", - "empty_column.direct": "Δεν έχεις καμία προσωπική επισήμανση ακόμα. Όταν στείλεις ή λάβεις μία, θα εμφανιστεί εδώ.", - "empty_column.domain_blocks": "Δεν υπάρχουν αποκλεισμένοι τομείς ακόμα.", + "empty_column.direct": "Δεν έχεις καμία προσωπική επισήμανση ακόμη. Όταν στείλεις ή λάβεις μία, θα εμφανιστεί εδώ.", + "empty_column.domain_blocks": "Δεν υπάρχουν αποκλεισμένοι τομείς ακόμη.", "empty_column.explore_statuses": "Τίποτα δεν βρίσκεται στις τάσεις αυτή τη στιγμή. Έλεγξε αργότερα!", - "empty_column.favourited_statuses": "Δεν έχεις καμία αγαπημένη ανάρτηση ακόμα. Μόλις αγαπήσεις κάποια, θα εμφανιστεί εδώ.", - "empty_column.favourites": "Κανείς δεν έχει αγαπήσει αυτή την ανάρτηση ακόμα. Μόλις το κάνει κάποιος, θα εμφανιστεί εδώ.", - "empty_column.follow_requests": "Δεν έχεις κανένα αίτημα παρακολούθησης ακόμα. Μόλις λάβεις κάποιο, θα εμφανιστεί εδώ.", - "empty_column.followed_tags": "Δεν έχετε ακολουθήσει ακόμα καμία ετικέτα. Όταν το κάνετε, θα εμφανιστούν εδώ.", - "empty_column.hashtag": "Δεν υπάρχει ακόμα κάτι για αυτή την ετικέτα.", + "empty_column.favourited_statuses": "Δεν έχεις καμία αγαπημένη ανάρτηση ακόμη. Μόλις αγαπήσεις κάποια, θα εμφανιστεί εδώ.", + "empty_column.favourites": "Κανείς δεν έχει αγαπήσει αυτή την ανάρτηση ακόμη. Μόλις το κάνει κάποιος, θα εμφανιστεί εδώ.", + "empty_column.follow_requests": "Δεν έχεις κανένα αίτημα παρακολούθησης ακόμη. Μόλις λάβεις κάποιο, θα εμφανιστεί εδώ.", + "empty_column.followed_tags": "Δεν έχεις ακολουθήσει καμία ετικέτα ακόμη. Όταν το κάνεις, θα εμφανιστούν εδώ.", + "empty_column.hashtag": "Δεν υπάρχει τίποτα σε αυτή την ετικέτα ακόμη.", "empty_column.home": "Η τοπική σου ροή είναι κενή! Πήγαινε στο {public} ή κάνε αναζήτηση για να ξεκινήσεις και να γνωρίσεις άλλους χρήστες.", - "empty_column.list": "Δεν υπάρχει τίποτα σε αυτή τη λίστα ακόμα. Όταν τα μέλη της δημοσιεύσουν νέες καταστάσεις, θα εμφανιστούν εδώ.", - "empty_column.lists": "Δεν έχεις καμία λίστα ακόμα. Μόλις φτιάξεις μια, θα εμφανιστεί εδώ.", - "empty_column.mutes": "Δεν έχεις κανένα χρήστη σε σίγαση ακόμα.", + "empty_column.list": "Δεν υπάρχει τίποτα σε αυτή τη λίστα ακόμη. Όταν τα μέλη της δημοσιεύσουν νέες αναρτήσεις, θα εμφανιστούν εδώ.", + "empty_column.lists": "Δεν έχεις καμία λίστα ακόμη. Μόλις φτιάξεις μια, θα εμφανιστεί εδώ.", + "empty_column.mutes": "Δεν έχεις κανένα χρήστη σε σίγαση ακόμη.", "empty_column.notification_requests": "Όλα καθαρά! Δεν υπάρχει τίποτα εδώ. Όταν λαμβάνεις νέες ειδοποιήσεις, αυτές θα εμφανίζονται εδώ σύμφωνα με τις ρυθμίσεις σου.", - "empty_column.notifications": "Δεν έχεις ειδοποιήσεις ακόμα. Όταν άλλα άτομα αλληλεπιδράσουν μαζί σου, θα το δεις εδώ.", + "empty_column.notifications": "Δεν έχεις ειδοποιήσεις ακόμη. Όταν άλλα άτομα αλληλεπιδράσουν μαζί σου, θα το δεις εδώ.", "empty_column.public": "Δεν υπάρχει τίποτα εδώ! Γράψε κάτι δημόσιο ή ακολούθησε χειροκίνητα χρήστες από άλλους διακομιστές για να τη γεμίσεις", "error.unexpected_crash.explanation": "Είτε λόγω σφάλματος στον κώδικά μας ή λόγω ασυμβατότητας με τον περιηγητή, η σελίδα δε μπόρεσε να εμφανιστεί σωστά.", "error.unexpected_crash.explanation_addons": "Η σελίδα δεν μπόρεσε να εμφανιστεί σωστά. Το πρόβλημα οφείλεται πιθανόν σε κάποια επέκταση του φυλλομετρητή ή σε κάποιο αυτόματο εργαλείο μετάφρασης.", @@ -294,7 +294,7 @@ "filter_modal.added.context_mismatch_title": "Ασυμφωνία περιεχομένου!", "filter_modal.added.expired_explanation": "Αυτή η κατηγορία φίλτρων έχει λήξει, πρέπει να αλλάξετε την ημερομηνία λήξης για να ισχύσει.", "filter_modal.added.expired_title": "Ληγμένο φίλτρο!", - "filter_modal.added.review_and_configure": "Για να επιθεωρήσετε και να εξειδικεύσετε περαιτέρω αυτή την κατηγορία φίλτρων, πηγαίνετε στο {settings_link}.", + "filter_modal.added.review_and_configure": "Για να ελέγξετε και να ρυθμίσετε περαιτέρω αυτή την κατηγορία φίλτρων, πηγαίνετε στο {settings_link}.", "filter_modal.added.review_and_configure_title": "Ρυθμίσεις φίλτρου", "filter_modal.added.settings_link": "σελίδα ρυθμίσεων", "filter_modal.added.short_explanation": "Αυτή η ανάρτηση έχει προστεθεί στην ακόλουθη κατηγορία φίλτρου: {title}.", @@ -306,7 +306,7 @@ "filter_modal.select_filter.subtitle": "Χρησιμοποιήστε μια υπάρχουσα κατηγορία ή δημιουργήστε μια νέα", "filter_modal.select_filter.title": "Φιλτράρισμα αυτής της ανάρτησης", "filter_modal.title.status": "Φιλτράρισμα μιας ανάρτησης", - "filter_warning.matches_filter": "Ταιριάζει με το φίλτρο “{title}”", + "filter_warning.matches_filter": "Αντιστοιχεί με το φίλτρο “{title}”", "filtered_notifications_banner.pending_requests": "Από {count, plural, =0 {κανένα} one {ένα άτομο} other {# άτομα}} που μπορεί να ξέρεις", "filtered_notifications_banner.title": "Φιλτραρισμένες ειδοποιήσεις", "firehose.all": "Όλα", @@ -314,7 +314,7 @@ "firehose.remote": "Άλλοι διακομιστές", "follow_request.authorize": "Εξουσιοδότησε", "follow_request.reject": "Απέρριψε", - "follow_requests.unlocked_explanation": "Παρόλο που ο λογαριασμός σου δεν είναι κλειδωμένος, το προσωπικό του {domain} θεώρησαν πως ίσως να θέλεις να ελέγξεις χειροκίνητα αυτά τα αιτήματα ακολούθησης.", + "follow_requests.unlocked_explanation": "Παρόλο που ο λογαριασμός σου δεν είναι κλειδωμένος, το προσωπικό του {domain} θεώρησε πως ίσως να θέλεις να ελέγχεις χειροκίνητα αυτά τα αιτήματα ακολούθησης.", "follow_suggestions.curated_suggestion": "Επιλογή προσωπικού", "follow_suggestions.dismiss": "Να μην εμφανιστεί ξανά", "follow_suggestions.featured_longer": "Προσεκτικά επιλεγμένα απ' την ομάδα του {domain}", @@ -355,7 +355,7 @@ "hashtag.counter_by_uses_today": "{count, plural, one {{counter} ανάρτηση} other {{counter} αναρτήσεις}} σήμερα", "hashtag.follow": "Παρακολούθηση ετικέτας", "hashtag.unfollow": "Διακοπή παρακολούθησης ετικέτας", - "hashtags.and_other": "…και {count, plural, other {# ακόμη}}", + "hashtags.and_other": "…και {count, plural, other {# ακόμα}}", "hints.profiles.followers_may_be_missing": "Μπορεί να λείπουν ακόλουθοι για αυτό το προφίλ.", "hints.profiles.follows_may_be_missing": "Άτομα που ακολουθούνται μπορεί να λείπουν απ' αυτό το προφίλ.", "hints.profiles.posts_may_be_missing": "Κάποιες αναρτήσεις από αυτό το προφίλ μπορεί να λείπουν.", @@ -364,7 +364,7 @@ "hints.profiles.see_more_posts": "Δες περισσότερες αναρτήσεις στο {domain}", "hints.threads.replies_may_be_missing": "Απαντήσεις από άλλους διακομιστές μπορεί να λείπουν.", "hints.threads.see_more": "Δες περισσότερες απαντήσεις στο {domain}", - "home.column_settings.show_reblogs": "Εμφάνιση προωθήσεων", + "home.column_settings.show_reblogs": "Εμφάνιση ενισχύσεων", "home.column_settings.show_replies": "Εμφάνιση απαντήσεων", "home.hide_announcements": "Απόκρυψη ανακοινώσεων", "home.pending_critical_update.body": "Παρακαλούμε ενημέρωσε τον διακομιστή Mastodon σου το συντομότερο δυνατόν!", @@ -373,7 +373,7 @@ "home.show_announcements": "Εμφάνιση ανακοινώσεων", "ignore_notifications_modal.disclaimer": "Το Mastodon δε μπορεί να ενημερώσει τους χρήστες ότι αγνόησες τις ειδοποιήσεις του. Η αγνόηση ειδοποιήσεων δεν θα εμποδίσει την αποστολή των ίδιων των μηνυμάτων.", "ignore_notifications_modal.filter_instead": "Φίλτρο αντ' αυτού", - "ignore_notifications_modal.filter_to_act_users": "Θα μπορείς ακόμα να αποδεχθείς, να απορρίψεις ή να αναφέρεις χρήστες", + "ignore_notifications_modal.filter_to_act_users": "Θα μπορείς ακόμη να αποδεχθείς, να απορρίψεις ή να αναφέρεις χρήστες", "ignore_notifications_modal.filter_to_avoid_confusion": "Το φιλτράρισμα βοηθά στην αποφυγή πιθανής σύγχυσης", "ignore_notifications_modal.filter_to_review_separately": "Μπορείς να δεις τις φιλτραρισμένες ειδοποιήσεις ξεχωριστά", "ignore_notifications_modal.ignore": "Αγνόηση ειδοποιήσεων", @@ -381,10 +381,10 @@ "ignore_notifications_modal.new_accounts_title": "Αγνόηση ειδοποιήσεων από νέους λογαριασμούς;", "ignore_notifications_modal.not_followers_title": "Αγνόηση ειδοποιήσεων από άτομα που δε σας ακολουθούν;", "ignore_notifications_modal.not_following_title": "Αγνόηση ειδοποιήσεων από άτομα που δεν ακολουθείς;", - "ignore_notifications_modal.private_mentions_title": "Αγνόηση ειδοποιήσεων από μη ζητηθείσες ιδιωτικές αναφορές;", + "ignore_notifications_modal.private_mentions_title": "Αγνόηση ειδοποιήσεων από μη ζητηθείσες ιδιωτικές επισημάνσεις;", "interaction_modal.description.favourite": "Με έναν λογαριασμό στο Mastodon μπορείς να αγαπήσεις αυτή την ανάρτηση, για να ενημερώσεις τον συντάκτη ότι την εκτιμάς και να την αποθηκεύσεις για αργότερα.", "interaction_modal.description.follow": "Με έναν λογαριασμό Mastodon, μπορείς να ακολουθήσεις τον/την {name} ώστε να λαμβάνεις τις αναρτήσεις του/της στη δική σου ροή.", - "interaction_modal.description.reblog": "Με ένα λογαριασμό Mastodon, μπορείς να ενισχύσεις αυτή την ανάρτηση για να τη μοιραστείς με τους δικούς σου ακολούθους.", + "interaction_modal.description.reblog": "Με ένα λογαριασμό Mastodon, μπορείς να ενισχύσεις αυτή την ανάρτηση για να την κοινοποιήσεις με τους δικούς σου ακολούθους.", "interaction_modal.description.reply": "Με ένα λογαριασμό Mastodon, μπορείς να απαντήσεις σε αυτή την ανάρτηση.", "interaction_modal.login.action": "Πήγαινέ με στην αρχική σελίδα", "interaction_modal.login.prompt": "Τομέας του οικιακού σου διακομιστή, πχ. mastodon.social", @@ -466,11 +466,11 @@ "mute_modal.hide_options": "Απόκρυψη επιλογών", "mute_modal.indefinite": "Μέχρι να κάνω άρση σίγασης", "mute_modal.show_options": "Εμφάνιση επιλογών", - "mute_modal.they_can_mention_and_follow": "Μπορεί να σε αναφέρει και να σε ακολουθήσει, αλλά δε θα τον βλέπεις.", + "mute_modal.they_can_mention_and_follow": "Μπορεί να σε επισημάνει και να σε ακολουθήσει, αλλά δε θα τον βλέπεις.", "mute_modal.they_wont_know": "Δε θα ξέρει ότι είναι σε σίγαση.", "mute_modal.title": "Σίγαση χρήστη;", - "mute_modal.you_wont_see_mentions": "Δε θα βλέπεις τις αναρτήσεις που τον αναφέρουν.", - "mute_modal.you_wont_see_posts": "Μπορεί ακόμα να δει τις αναρτήσεις σου, αλλά δε θα βλέπεις τις δικές του.", + "mute_modal.you_wont_see_mentions": "Δε θα βλέπεις τις αναρτήσεις που τον επισημαίνουν.", + "mute_modal.you_wont_see_posts": "Μπορεί ακόμη να βλέπει τις αναρτήσεις σου, αλλά δε θα βλέπεις τις δικές του.", "navigation_bar.about": "Σχετικά με", "navigation_bar.administration": "Διαχείριση", "navigation_bar.advanced_interface": "Άνοιγμα σε προηγμένη διεπαφή ιστού", @@ -491,7 +491,7 @@ "navigation_bar.logout": "Αποσύνδεση", "navigation_bar.moderation": "Συντονισμός", "navigation_bar.mutes": "Αποσιωπημένοι χρήστες", - "navigation_bar.opened_in_classic_interface": "Δημοσιεύσεις, λογαριασμοί και άλλες συγκεκριμένες σελίδες ανοίγονται από προεπιλογή στην κλασική διεπαφή ιστού.", + "navigation_bar.opened_in_classic_interface": "Αναρτήσεις, λογαριασμοί και άλλες συγκεκριμένες σελίδες ανοίγονται από προεπιλογή στην κλασική διεπαφή ιστού.", "navigation_bar.personal": "Προσωπικά", "navigation_bar.pins": "Καρφιτσωμένες αναρτήσεις", "navigation_bar.preferences": "Προτιμήσεις", @@ -499,17 +499,17 @@ "navigation_bar.search": "Αναζήτηση", "navigation_bar.security": "Ασφάλεια", "not_signed_in_indicator.not_signed_in": "Πρέπει να συνδεθείς για να αποκτήσεις πρόσβαση σε αυτόν τον πόρο.", - "notification.admin.report": "Ο/Η {name} ανέφερε τον {target}", + "notification.admin.report": "Ο/Η {name} ανέφερε τον/την {target}", "notification.admin.report_account": "Ο χρήστης {name} ανέφερε {count, plural, one {μία ανάρτηση} other {# αναρτήσεις}} από {target} για {category}", "notification.admin.report_account_other": "Ο χρήστης {name} ανέφερε {count, plural, one {μία ανάρτηση} other {# αναρτήσεις}} από {target}", "notification.admin.report_statuses": "Ο χρήστης {name} ανέφερε τον χρήστη {target} για {category}", "notification.admin.report_statuses_other": "Ο χρήστης {name} ανέφερε τον χρήστη {target}", "notification.admin.sign_up": "{name} έχει εγγραφεί", - "notification.admin.sign_up.name_and_others": "{name} και {count, plural, one {# ακόμη} other {# ακόμη}} έχουν εγγραφεί", + "notification.admin.sign_up.name_and_others": "{name} και {count, plural, one {# ακόμα} other {# ακόμα}} έχουν εγγραφεί", "notification.favourite": "{name} αγάπησε την ανάρτηση σου", - "notification.favourite.name_and_others_with_link": "{name} και {count, plural, one {# ακόμη} other {# ακόμη}} αγάπησαν την ανάρτησή σου", + "notification.favourite.name_and_others_with_link": "{name} και {count, plural, one {# ακόμα} other {# ακόμα}} αγάπησαν την ανάρτησή σου", "notification.follow": "Ο χρήστης {name} σε ακολούθησε", - "notification.follow.name_and_others": "Ο χρήστης {name} και {count, plural, one {# ακόμη} other {# ακόμη}} σε ακολούθησαν", + "notification.follow.name_and_others": "Ο χρήστης {name} και {count, plural, one {# ακόμα} other {# ακόμα}} σε ακολούθησαν", "notification.follow_request": "Ο/H {name} ζήτησε να σε ακολουθήσει", "notification.follow_request.name_and_others": "{name} και {count, plural, one {# άλλος} other {# άλλοι}} ζήτησαν να σε ακολουθήσουν", "notification.label.mention": "Επισήμανση", @@ -522,15 +522,15 @@ "notification.moderation_warning": "Έχετε λάβει μία προειδοποίηση συντονισμού", "notification.moderation_warning.action_delete_statuses": "Ορισμένες από τις αναρτήσεις σου έχουν αφαιρεθεί.", "notification.moderation_warning.action_disable": "Ο λογαριασμός σου έχει απενεργοποιηθεί.", - "notification.moderation_warning.action_mark_statuses_as_sensitive": "Μερικές από τις αναρτήσεις σου έχουν επισημανθεί ως ευαίσθητες.", + "notification.moderation_warning.action_mark_statuses_as_sensitive": "Μερικές από τις αναρτήσεις σου έχουν σημανθεί ως ευαίσθητες.", "notification.moderation_warning.action_none": "Ο λογαριασμός σου έχει λάβει προειδοποίηση συντονισμού.", - "notification.moderation_warning.action_sensitive": "Οι αναρτήσεις σου θα επισημαίνονται, από εδώ και στο εξής, ως ευαίσθητες.", + "notification.moderation_warning.action_sensitive": "Οι αναρτήσεις σου θα σημαίνονται ως ευαίσθητες από 'δω και στο εξής.", "notification.moderation_warning.action_silence": "Ο λογαριασμός σου έχει περιοριστεί.", "notification.moderation_warning.action_suspend": "Ο λογαριασμός σου έχει ανασταλεί.", "notification.own_poll": "Η δημοσκόπησή σου έληξε", "notification.poll": "Μία ψηφοφορία στην οποία συμμετείχες έχει τελειώσει", "notification.reblog": "Ο/Η {name} ενίσχυσε την ανάρτηση σου", - "notification.reblog.name_and_others_with_link": "{name} και {count, plural, one {# ακόμη} other {# ακόμη}} ενίσχυσαν την ανάρτησή σου", + "notification.reblog.name_and_others_with_link": "{name} και {count, plural, one {# ακόμα} other {# ακόμα}} ενίσχυσαν την ανάρτησή σου", "notification.relationships_severance_event": "Χάθηκε η σύνδεση με το {name}", "notification.relationships_severance_event.account_suspension": "Ένας διαχειριστής από το {from} ανέστειλε το {target}, πράγμα που σημαίνει ότι δεν μπορείς πλέον να λαμβάνεις ενημερώσεις από αυτούς ή να αλληλεπιδράς μαζί τους.", "notification.relationships_severance_event.domain_block": "Ένας διαχειριστής από {from} έχει μπλοκάρει το {target}, συμπεριλαμβανομένων {followersCount} από τους ακόλουθούς σου και {followingCount, plural, one {# λογαριασμό} other {# λογαριασμοί}} που ακολουθείς.", @@ -544,9 +544,9 @@ "notification_requests.confirm_accept_multiple.message": "Πρόκειται να αποδεχτείς {count, plural, one {ένα αίτημα ειδοποίησης} other {# αιτήματα ειδοποίησης}}. Σίγουρα θες να συνεχίσεις;", "notification_requests.confirm_accept_multiple.title": "Αποδοχή αιτήσεων ειδοποίησης;", "notification_requests.confirm_dismiss_multiple.button": "{count, plural, one {Παράβλεψη αιτήματος} other {Παράβλεψη αιτημάτων}}", - "notification_requests.confirm_dismiss_multiple.message": "Πρόκειται να απορρίψεις {count, plural, one {ένα αίτημα ειδοποίησης} other {# αιτήματα ειδοποίησης}}. Δεν θα μπορείς να έχεις πρόσβαση εύκολα {count, plural, one {σε αυτό} other {σε αυτά}} ξανά. Σίγουρα θες να συνεχίσεις;", - "notification_requests.confirm_dismiss_multiple.title": "Απόρριψη αιτημάτων ειδοποίησης;", - "notification_requests.dismiss": "Απόρριψη", + "notification_requests.confirm_dismiss_multiple.message": "Πρόκειται να παραβλέψεις {count, plural, one {ένα αίτημα ειδοποίησης} other {# αιτήματα ειδοποίησης}}. Δεν θα μπορείς να έχεις πρόσβαση εύκολα {count, plural, one {σε αυτό} other {σε αυτά}} ξανά. Σίγουρα θες να συνεχίσεις;", + "notification_requests.confirm_dismiss_multiple.title": "Παράβλεψη αιτημάτων ειδοποίησης;", + "notification_requests.dismiss": "Παράβλεψη", "notification_requests.dismiss_multiple": "{count, plural, one {Παράβλεψη # αιτήματος…} other {Παράβλεψη # αιτημάτων…}}", "notification_requests.edit_selection": "Επεξεργασία", "notification_requests.exit_selection": "Έγινε", @@ -588,14 +588,14 @@ "notifications.filter.statuses": "Ενημερώσεις από όσους ακολουθείς", "notifications.grant_permission": "Χορήγηση άδειας.", "notifications.group": "{count} ειδοποιήσεις", - "notifications.mark_as_read": "Σημείωσε όλες τις ειδοποιήσεις ως αναγνωσμένες", + "notifications.mark_as_read": "Σήμανε όλες τις ειδοποιήσεις ως αναγνωσμένες", "notifications.permission_denied": "Οι ειδοποιήσεις στην επιφάνεια εργασίας δεν είναι διαθέσιμες διότι έχει απορριφθεί κάποιο προηγούμενο αίτημα άδειας", "notifications.permission_denied_alert": "Δεν είναι δυνατή η ενεργοποίηση των ειδοποιήσεων της επιφάνειας εργασίας, καθώς η άδεια του προγράμματος περιήγησης έχει απορριφθεί νωρίτερα", "notifications.permission_required": "Οι ειδοποιήσεις δεν είναι διαθέσιμες επειδή δεν έχει δοθεί η απαιτούμενη άδεια.", "notifications.policy.accept": "Αποδοχή", "notifications.policy.accept_hint": "Εμφάνιση στις ειδοποιήσεις", "notifications.policy.drop": "Αγνόηση", - "notifications.policy.drop_hint": "Στείλε τες στο υπερπέραν, να μην ξαναδούν το φως του ήλιου", + "notifications.policy.drop_hint": "Στείλε τες στο υπερπέραν, για να μην τις ξαναδείτε", "notifications.policy.filter": "Φίλτρο", "notifications.policy.filter_hint": "Αποστολή στα εισερχόμενα φιλτραρισμένων ειδοποιήσεων", "notifications.policy.filter_limited_accounts_hint": "Περιορισμένη από συντονιστές διακομιστή", @@ -606,16 +606,16 @@ "notifications.policy.filter_not_followers_title": "Άτομα που δε σε ακολουθούν", "notifications.policy.filter_not_following_hint": "Μέχρι να τους εγκρίνεις χειροκίνητα", "notifications.policy.filter_not_following_title": "Άτομα που δεν ακολουθείς", - "notifications.policy.filter_private_mentions_hint": "Φιλτραρισμένο εκτός αν είναι απάντηση σε δική σου αναφορά ή αν ακολουθείς τον αποστολέα", - "notifications.policy.filter_private_mentions_title": "Μη συναινετικές ιδιωτικές αναφορές", + "notifications.policy.filter_private_mentions_hint": "Φιλτράρισμα εκτός αν είναι απάντηση σε δική σου επισήμανση ή αν ακολουθείς τον αποστολέα", + "notifications.policy.filter_private_mentions_title": "Μη συναινετικές ιδιωτικές επισημάνσεις", "notifications.policy.title": "Διαχείριση ειδοποιήσεων από…", "notifications_permission_banner.enable": "Ενεργοποίηση ειδοποιήσεων επιφάνειας εργασίας", "notifications_permission_banner.how_to_control": "Για να λαμβάνεις ειδοποιήσεις όταν το Mastodon δεν είναι ανοιχτό, ενεργοποίησε τις ειδοποιήσεις επιφάνειας εργασίας. Μπορείς να ελέγξεις με ακρίβεια ποιοι τύποι αλληλεπιδράσεων δημιουργούν ειδοποιήσεις επιφάνειας εργασίας μέσω του κουμπιού {icon} μόλις ενεργοποιηθούν.", "notifications_permission_banner.title": "Μη χάσεις στιγμή", "onboarding.action.back": "Επιστροφή", "onboarding.actions.back": "Επιστροφή", - "onboarding.actions.go_to_explore": "See what's trending", - "onboarding.actions.go_to_home": "Πηγαίνετε στην αρχική σας ροή", + "onboarding.actions.go_to_explore": "Πήγαινέ με στις τάσεις", + "onboarding.actions.go_to_home": "Πήγαινέ με στην αρχική μου ροή", "onboarding.compose.template": "Γειά σου #Mastodon!", "onboarding.follows.empty": "Δυστυχώς, δεν μπορούν να εμφανιστούν αποτελέσματα αυτή τη στιγμή. Μπορείς να προσπαθήσεις να χρησιμοποιήσεις την αναζήτηση ή να περιηγηθείς στη σελίδα εξερεύνησης για να βρεις άτομα να ακολουθήσεις ή να δοκιμάσεις ξανά αργότερα.", "onboarding.follows.lead": "Η αρχική ροή σου είναι ο κύριος τρόπος για να βιώσεις το Mastodon. Όσο περισσότερα άτομα ακολουθείς, τόσο περισσότερο ενεργή και ενδιαφέρουσα θα είναι. Για να ξεκινήσεις, ορίστε μερικές προτάσεις:", @@ -626,26 +626,26 @@ "onboarding.profile.display_name_hint": "Το πλήρες ή το διασκεδαστικό σου όνομα…", "onboarding.profile.lead": "Μπορείς πάντα να το ολοκληρώσεις αργότερα στις ρυθμίσεις, όπου είναι διαθέσιμες ακόμα περισσότερες επιλογές προσαρμογής.", "onboarding.profile.note": "Βιογραφικό", - "onboarding.profile.note_hint": "Μπορείτε να @αναφέρετε άλλα άτομα ή #hashtags…", + "onboarding.profile.note_hint": "Μπορείς να @επισημάνεις άλλα άτομα ή #ετικέτες…", "onboarding.profile.save_and_continue": "Αποθήκευση και συνέχεια", "onboarding.profile.title": "Ρύθμιση προφίλ", "onboarding.profile.upload_avatar": "Μεταφόρτωση εικόνας προφίλ", "onboarding.profile.upload_header": "Μεταφόρτωση κεφαλίδας προφίλ", - "onboarding.share.lead": "Let people know how they can find you on Mastodon!\nΕνημερώστε άλλα άτομα πώς μπορούν να σας βρουν στο Mastodon!", + "onboarding.share.lead": "Ενημέρωσε άλλα άτομα πώς μπορούν να σε βρουν στο Mastodon!", "onboarding.share.message": "Με λένε {username} στο #Mastodon! Έλα να με ακολουθήσεις στο {url}", "onboarding.share.next_steps": "Πιθανά επόμενα βήματα:", - "onboarding.share.title": "Κοινοποίηση του προφίλ σου", - "onboarding.start.lead": "Your new Mastodon account is ready to go. Here's how you can make the most of it:", - "onboarding.start.skip": "Δε χρειάζεστε βοήθεια για να ξεκινήσετε;", - "onboarding.start.title": "You've made it!\nΤα καταφέρατε!", - "onboarding.steps.follow_people.body": "You curate your own feed. Lets fill it with interesting people.", - "onboarding.steps.follow_people.title": "Follow {count, plural, one {one person} other {# people}}", + "onboarding.share.title": "Κοινοποίησε το προφίλ σου", + "onboarding.start.lead": "Είσαι τώρα μέρος του Mastodon, μιας μοναδικής, αποκεντρωμένης πλατφόρμας μέσων κοινωνικής δικτύωσης όπου εσύ, όχι αλγόριθμος, επιμελείσαι τη δική σου εμπειρία. Ας ξεκινήσουμε σε αυτό το νέο κοινωνικό σύνορο:", + "onboarding.start.skip": "Δε χρειάζεσαι βοήθεια για να ξεκινήσεις;", + "onboarding.start.title": "Τα κατάφερες!", + "onboarding.steps.follow_people.body": "Το να ακολουθείς ενδιαφέροντα άτομα είναι όλη η ουσία του Mastodon.", + "onboarding.steps.follow_people.title": "Προσάρμοσε την αρχική ροή σου", "onboarding.steps.publish_status.body": "Πες γεια στον κόσμο με κείμενο, φωτογραφίες, βίντεο ή δημοσκοπήσεις {emoji}", - "onboarding.steps.publish_status.title": "Κάντε την πρώτη σας ανάρτηση", - "onboarding.steps.setup_profile.body": "Others are more likely to interact with you with a filled out profile.", - "onboarding.steps.setup_profile.title": "Customize your profile", - "onboarding.steps.share_profile.body": "Πείτε στους φίλους σας πως να σας βρουν στο Mastodon", - "onboarding.steps.share_profile.title": "Share your profile", + "onboarding.steps.publish_status.title": "Κάνε την πρώτη σου ανάρτηση", + "onboarding.steps.setup_profile.body": "Ενίσχυσε τις αλληλεπιδράσεις σου έχοντας ένα ολοκληρωμένο προφίλ.", + "onboarding.steps.setup_profile.title": "Προσάρμοσε το προφίλ σου", + "onboarding.steps.share_profile.body": "Πες στους φίλους σου πώς να σε βρουν στο Mastodon", + "onboarding.steps.share_profile.title": "Κοινοποίησε το Mastodon προφίλ σου", "onboarding.tips.2fa": "Το ήξερες; Μπορείς να ασφαλίσεις το λογαριασμό σου ρυθμίζοντας ταυτότητα δύο παραγόντων στις ρυθμίσεις του λογαριασμού σου. Λειτουργεί με οποιαδήποτε εφαρμογή TOTP της επιλογής σας, δεν απαιτείται αριθμός τηλεφώνου!", "onboarding.tips.accounts_from_other_servers": "Το ήξερες; Από τη στιγμή που το Mastodon είναι αποκεντρωμένο, κάποια προφίλ που συναντάς θα φιλοξενούνται σε διακομιστές διαφορετικούς από τον δικό σου. Και παρόλα αυτά μπορείς να αλληλεπιδράσεις μαζί τους απρόσκοπτα! Ο διακομιστής τους είναι στο δεύτερο μισό του ονόματος χρήστη!", "onboarding.tips.migration": "Το ήξερες; Αν αισθάνεσαι ότι το {domain} δεν είναι η κατάλληλη επιλογή διακομιστή για σένα στο μέλλον, μπορείς να μετακινηθείς σε άλλο διακομιστή Mastodon χωρίς να χάσεις τους ακόλουθούς σου. Μπορείς να κάνεις ακόμα και τον δικό σου διακομιστή!", @@ -664,7 +664,7 @@ "poll_button.add_poll": "Προσθήκη δημοσκόπησης", "poll_button.remove_poll": "Αφαίρεση δημοσκόπησης", "privacy.change": "Προσαρμογή ιδιωτικότητας ανάρτησης", - "privacy.direct.long": "Όλοι όσοι αναφέρθηκαν στην ανάρτηση", + "privacy.direct.long": "Όλοι όσοι επισημάνθηκαν στην ανάρτηση", "privacy.direct.short": "Συγκεκριμένα άτομα", "privacy.private.long": "Μόνο οι ακόλουθοί σας", "privacy.private.short": "Ακόλουθοι", @@ -675,7 +675,7 @@ "privacy.unlisted.short": "Ήσυχα δημόσια", "privacy_policy.last_updated": "Τελευταία ενημέρωση {date}", "privacy_policy.title": "Πολιτική Απορρήτου", - "recommended": "Προτεινόμενα", + "recommended": "Προτείνεται", "refresh": "Ανανέωση", "regeneration_indicator.label": "Φορτώνει…", "regeneration_indicator.sublabel": "Η αρχική σου ροή ετοιμάζεται!", @@ -708,9 +708,9 @@ "report.forward": "Προώθηση προς {target}", "report.forward_hint": "Ο λογαριασμός είναι από διαφορετικό διακομιστή. Να σταλεί ανώνυμο αντίγραφο της αναφοράς και εκεί;", "report.mute": "Σίγαση", - "report.mute_explanation": "Δεν θα βλέπεις τις αναρτήσεις του. Εκείνοι μπορούν ακόμα να σε ακολουθούν και να βλέπουν τις αναρτήσεις σου χωρίς να γνωρίζουν ότι είναι σε σίγαση.", + "report.mute_explanation": "Δεν θα βλέπεις τις αναρτήσεις τους. Εκείνοι μπορούν ακόμη να σε ακολουθούν και να βλέπουν τις αναρτήσεις σου χωρίς να γνωρίζουν ότι είναι σε σίγαση.", "report.next": "Επόμενο", - "report.placeholder": "Επιπλέον σχόλια", + "report.placeholder": "Επιπρόσθετα σχόλια", "report.reasons.dislike": "Δεν μου αρέσει", "report.reasons.dislike_description": "Δεν είναι κάτι που θα ήθελες να δεις", "report.reasons.legal": "Είναι παράνομο", @@ -726,12 +726,12 @@ "report.statuses.subtitle": "Επίλεξε όλα όσα ισχύουν", "report.statuses.title": "Υπάρχουν αναρτήσεις που τεκμηριώνουν αυτή την αναφορά;", "report.submit": "Υποβολή", - "report.target": "Καταγγελία {target}", + "report.target": "Αναφορά {target}", "report.thanks.take_action": "Αυτές είναι οι επιλογές σας για να ελέγχετε τι βλέπετε στο Mastodon:", "report.thanks.take_action_actionable": "Ενώ το εξετάζουμε, μπορείς να δράσεις εναντίον του @{name}:", "report.thanks.title": "Δε θες να το βλέπεις;", "report.thanks.title_actionable": "Σε ευχαριστούμε για την αναφορά, θα το διερευνήσουμε.", - "report.unfollow": "Κατάργηση ακολούθησης του @{name}", + "report.unfollow": "Άρση ακολούθησης του @{name}", "report.unfollow_explanation": "Ακολουθείς αυτό τον λογαριασμό. Για να μη βλέπεις τις αναρτήσεις τους στη δική σου ροή, πάψε να τον ακολουθείς.", "report_notification.attached_statuses": "{count, plural, one {{count} ανάρτηση} other {{count} αναρτήσεις}} επισυνάπτονται", "report_notification.categories.legal": "Νομικά", @@ -745,11 +745,11 @@ "report_notification.open": "Άνοιγμα αναφοράς", "search.no_recent_searches": "Καμία πρόσφατη αναζήτηση", "search.placeholder": "Αναζήτηση", - "search.quick_action.account_search": "Προφίλ που ταιριάζουν με {x}", + "search.quick_action.account_search": "Προφίλ που αντιστοιχούν με {x}", "search.quick_action.go_to_account": "Μετάβαση στο προφίλ {x}", "search.quick_action.go_to_hashtag": "Μετάβαση στην ετικέτα {x}", "search.quick_action.open_url": "Άνοιγμα διεύθυνσης URL στο Mastodon", - "search.quick_action.status_search": "Αναρτήσεις που ταιριάζουν με {x}", + "search.quick_action.status_search": "Αναρτήσεις που αντιστοιχούν με {x}", "search.search_or_paste": "Αναζήτηση ή εισαγωγή URL", "search_popout.full_text_search_disabled_message": "Μη διαθέσιμο στο {domain}.", "search_popout.full_text_search_logged_out_message": "Διαθέσιμο μόνο όταν συνδεθείς.", @@ -776,17 +776,17 @@ "sign_in_banner.mastodon_is": "Το Mastodon είναι ο καλύτερος τρόπος για να συμβαδίσεις με τα γεγονότα.", "sign_in_banner.sign_in": "Σύνδεση", "sign_in_banner.sso_redirect": "Συνδεθείτε ή Εγγραφείτε", - "status.admin_account": "Άνοιγμα διεπαφής συντονισμού για τον/την @{name}", - "status.admin_domain": "Άνοιγμα λειτουργίας διαμεσολάβησης για {domain}", + "status.admin_account": "Άνοιγμα διεπαφής συντονισμού για @{name}", + "status.admin_domain": "Άνοιγμα διεπαφής συντονισμού για {domain}", "status.admin_status": "Άνοιγμα αυτής της ανάρτησης σε διεπαφή συντονισμού", "status.block": "Αποκλεισμός @{name}", "status.bookmark": "Σελιδοδείκτης", "status.cancel_reblog_private": "Ακύρωση ενίσχυσης", "status.cannot_reblog": "Αυτή η ανάρτηση δεν μπορεί να ενισχυθεί", - "status.continued_thread": "Συνεχιζόμενο νήματος", + "status.continued_thread": "Συνεχιζόμενο νήμα", "status.copy": "Αντιγραφή συνδέσμου ανάρτησης", "status.delete": "Διαγραφή", - "status.detailed_status": "Προβολή λεπτομερούς συζήτησης", + "status.detailed_status": "Προβολή λεπτομερούς συνομιλίας", "status.direct": "Ιδιωτική επισήμανση @{name}", "status.direct_indicator": "Ιδιωτική επισήμανση", "status.edit": "Επεξεργασία", @@ -802,9 +802,9 @@ "status.media.open": "Κάνε κλικ για άνοιγμα", "status.media.show": "Κάνε κλικ για εμφάνιση", "status.media_hidden": "Κρυμμένο πολυμέσο", - "status.mention": "Επισήμανε @{name}", + "status.mention": "Επισήμανση @{name}", "status.more": "Περισσότερα", - "status.mute": "Σίγαση σε @{name}", + "status.mute": "Σίγαση @{name}", "status.mute_conversation": "Σίγαση συνομιλίας", "status.open": "Επέκταση ανάρτησης", "status.pin": "Καρφίτσωσε στο προφίλ", @@ -814,13 +814,13 @@ "status.reblog_private": "Ενίσχυση με αρχική ορατότητα", "status.reblogged_by": "{name} προώθησε", "status.reblogs": "{count, plural, one {ενίσχυση} other {ενισχύσεις}}", - "status.reblogs.empty": "Κανείς δεν ενίσχυσε αυτή την ανάρτηση ακόμα. Μόλις το κάνει κάποιος, θα εμφανιστεί εδώ.", + "status.reblogs.empty": "Κανείς δεν ενίσχυσε αυτή την ανάρτηση ακόμη. Μόλις το κάνει κάποιος, θα εμφανιστεί εδώ.", "status.redraft": "Σβήσε & ξαναγράψε", "status.remove_bookmark": "Αφαίρεση σελιδοδείκτη", - "status.replied_in_thread": "Απαντήθηκε σε νήμα", - "status.replied_to": "Απάντησε στον {name}", + "status.replied_in_thread": "Απάντησε σε νήμα", + "status.replied_to": "Απάντησε στον χρήστη {name}", "status.reply": "Απάντησε", - "status.replyAll": "Απάντησε στο νήμα συζήτησης", + "status.replyAll": "Απάντησε στο νήμα", "status.report": "Αναφορά @{name}", "status.sensitive_warning": "Ευαίσθητο περιεχόμενο", "status.share": "Κοινοποίηση", @@ -831,7 +831,7 @@ "status.translate": "Μετάφραση", "status.translated_from_with": "Μεταφράστηκε από {lang} χρησιμοποιώντας {provider}", "status.uncached_media_warning": "Μη διαθέσιμη προεπισκόπηση", - "status.unmute_conversation": "Αναίρεση σίγασης συνομιλίας", + "status.unmute_conversation": "Άρση σίγασης συνομιλίας", "status.unpin": "Ξεκαρφίτσωσε από το προφίλ", "subscribed_languages.lead": "Μόνο αναρτήσεις σε επιλεγμένες γλώσσες θα εμφανίζονται στην αρχική σου και θα παραθέτονται ροές μετά την αλλαγή. Επέλεξε καμία για να λαμβάνεις αναρτήσεις σε όλες τις γλώσσες.", "subscribed_languages.save": "Αποθήκευση αλλαγών", @@ -885,5 +885,5 @@ "video.mute": "Σίγαση ήχου", "video.pause": "Παύση", "video.play": "Αναπαραγωγή", - "video.unmute": "Αναπαραγωγή ήχου" + "video.unmute": "Άρση σίγασης ήχου" } diff --git a/app/javascript/mastodon/locales/en-GB.json b/app/javascript/mastodon/locales/en-GB.json index 21513881ca..fe83f56211 100644 --- a/app/javascript/mastodon/locales/en-GB.json +++ b/app/javascript/mastodon/locales/en-GB.json @@ -188,7 +188,7 @@ "confirmations.mute.confirm": "Mute", "confirmations.redraft.confirm": "Delete & redraft", "confirmations.redraft.message": "Are you sure you want to delete this post and re-draft it? Favourites and boosts will be lost, and replies to the original post will be orphaned.", - "confirmations.redraft.title": "Delete & redraft post?", + "confirmations.redraft.title": "Delete and redraft post?", "confirmations.reply.confirm": "Reply", "confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?", "confirmations.reply.title": "Overwrite post?", @@ -226,7 +226,7 @@ "domain_block_modal.you_will_lose_num_followers": "You will lose {followersCount, plural, one {{followersCountDisplay} follower} other {{followersCountDisplay} followers}} and {followingCount, plural, one {{followingCountDisplay} person you follow} other {{followingCountDisplay} people you follow}}.", "domain_block_modal.you_will_lose_relationships": "You will lose all followers and people you follow from this server.", "domain_block_modal.you_wont_see_posts": "You won't see posts or notifications from users on this server.", - "domain_pill.activitypub_lets_connect": "It lets you connect and interact with people not just on Mastodon, but across different social apps too.", + "domain_pill.activitypub_lets_connect": "It lets you connect and interact with people, not just on Mastodon, but across different social apps too.", "domain_pill.activitypub_like_language": "ActivityPub is like the language Mastodon speaks with other social networks.", "domain_pill.server": "Server", "domain_pill.their_handle": "Their handle:", @@ -237,7 +237,7 @@ "domain_pill.who_they_are": "Since handles say who someone is and where they are, you can interact with people across the social web of .", "domain_pill.who_you_are": "Because your handle says who you are and where you are, people can interact with you across the social web of .", "domain_pill.your_handle": "Your handle:", - "domain_pill.your_server": "Your digital home, where all of your posts live. Don’t like this one? Transfer servers at any time and bring your followers, too.", + "domain_pill.your_server": "Your digital home, where all of your posts live. Don’t like this one? Transfer servers at any time and bring your followers too.", "domain_pill.your_username": "Your unique identifier on this server. It’s possible to find users with the same username on different servers.", "embed.instructions": "Embed this post on your website by copying the code below.", "embed.preview": "Here is what it will look like:", @@ -256,7 +256,7 @@ "emoji_button.search_results": "Search results", "emoji_button.symbols": "Symbols", "emoji_button.travel": "Travel & Places", - "empty_column.account_hides_collections": "This user has chosen to not make this information available", + "empty_column.account_hides_collections": "This user has chosen not to make this information available", "empty_column.account_suspended": "Account suspended", "empty_column.account_timeline": "No posts here!", "empty_column.account_unavailable": "Profile unavailable", @@ -275,7 +275,7 @@ "empty_column.list": "There is nothing in this list yet. When members of this list post new statuses, they will appear here.", "empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.", "empty_column.mutes": "You haven't muted any users yet.", - "empty_column.notification_requests": "All clear! There is nothing here. When you receive new notifications, they will appear here according to your settings.", + "empty_column.notification_requests": "All clear! There is nothing here. When you receive new notifications, they will appear here, according to your settings.", "empty_column.notifications": "You don't have any notifications yet. When other people interact with you, you will see it here.", "empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other servers to fill it up", "error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.", @@ -488,7 +488,7 @@ "navigation_bar.followed_tags": "Followed hashtags", "navigation_bar.follows_and_followers": "Follows and followers", "navigation_bar.lists": "Lists", - "navigation_bar.logout": "Logout", + "navigation_bar.logout": "Log out", "navigation_bar.moderation": "Moderation", "navigation_bar.mutes": "Muted users", "navigation_bar.opened_in_classic_interface": "Posts, accounts, and other specific pages are opened by default in the classic web interface.", @@ -528,7 +528,7 @@ "notification.moderation_warning.action_silence": "Your account has been limited.", "notification.moderation_warning.action_suspend": "Your account has been suspended.", "notification.own_poll": "Your poll has ended", - "notification.poll": "A poll you voted in has ended", + "notification.poll": "A poll in which you voted has ended", "notification.reblog": "{name} boosted your post", "notification.reblog.name_and_others_with_link": "{name} and {count, plural, one {# other} other {# others}} boosted your post", "notification.relationships_severance_event": "Lost connections with {name}", @@ -553,7 +553,7 @@ "notification_requests.explainer_for_limited_account": "Notifications from this account have been filtered because the account has been limited by a moderator.", "notification_requests.explainer_for_limited_remote_account": "Notifications from this account have been filtered because the account or its server has been limited by a moderator.", "notification_requests.maximize": "Maximise", - "notification_requests.minimize_banner": "Minimize filtered notifications banner", + "notification_requests.minimize_banner": "Minimise filtered notifications banner", "notification_requests.notifications_from": "Notifications from {name}", "notification_requests.title": "Filtered notifications", "notification_requests.view": "View notifications", @@ -602,11 +602,11 @@ "notifications.policy.filter_limited_accounts_title": "Moderated accounts", "notifications.policy.filter_new_accounts.hint": "Created within the past {days, plural, one {one day} other {# days}}", "notifications.policy.filter_new_accounts_title": "New accounts", - "notifications.policy.filter_not_followers_hint": "Including people who have been following you fewer than {days, plural, one {one day} other {# days}}", + "notifications.policy.filter_not_followers_hint": "Including people who have been following you for fewer than {days, plural, one {one day} other {# days}}", "notifications.policy.filter_not_followers_title": "People not following you", "notifications.policy.filter_not_following_hint": "Until you manually approve them", "notifications.policy.filter_not_following_title": "People you don't follow", - "notifications.policy.filter_private_mentions_hint": "Filtered unless it's in reply to your own mention or if you follow the sender", + "notifications.policy.filter_private_mentions_hint": "Filtered, unless it's in reply to your own mention, or if you follow the sender", "notifications.policy.filter_private_mentions_title": "Unsolicited private mentions", "notifications.policy.title": "Manage notifications from…", "notifications_permission_banner.enable": "Enable desktop notifications", @@ -769,10 +769,10 @@ "server_banner.about_active_users": "People using this server during the last 30 days (Monthly Active Users)", "server_banner.active_users": "active users", "server_banner.administered_by": "Administered by:", - "server_banner.is_one_of_many": "{domain} is one of the many independent Mastodon servers you can use to participate in the fediverse.", + "server_banner.is_one_of_many": "{domain} is one of the many independent Mastodon servers you can use to participate in the Fediverse.", "server_banner.server_stats": "Server stats:", "sign_in_banner.create_account": "Create account", - "sign_in_banner.follow_anyone": "Follow anyone across the fediverse and see it all in chronological order. No algorithms, ads, or clickbait in sight.", + "sign_in_banner.follow_anyone": "Follow anyone across the Fediverse and see it all in chronological order. No algorithms, ads, or clickbait in sight.", "sign_in_banner.mastodon_is": "Mastodon is the best way to keep up with what's happening.", "sign_in_banner.sign_in": "Sign in", "sign_in_banner.sso_redirect": "Login or Register", diff --git a/app/javascript/mastodon/locales/eo.json b/app/javascript/mastodon/locales/eo.json index 64b8587c4b..cde36d4cbf 100644 --- a/app/javascript/mastodon/locales/eo.json +++ b/app/javascript/mastodon/locales/eo.json @@ -462,7 +462,7 @@ "loading_indicator.label": "Ŝargado…", "media_gallery.hide": "Kaŝi", "moved_to_account_banner.text": "Via konto {disabledAccount} estas malvalidigita ĉar vi movis ĝin al {movedToAccount}.", - "mute_modal.hide_from_notifications": "Kaŝi de sciigoj", + "mute_modal.hide_from_notifications": "Kaŝi el sciigoj", "mute_modal.hide_options": "Kaŝi agordojn", "mute_modal.indefinite": "Ĝis mi malsilentas ilin", "mute_modal.show_options": "Montri agordojn", diff --git a/app/javascript/mastodon/locales/es-AR.json b/app/javascript/mastodon/locales/es-AR.json index 31613af83a..f99a71e3e1 100644 --- a/app/javascript/mastodon/locales/es-AR.json +++ b/app/javascript/mastodon/locales/es-AR.json @@ -107,7 +107,7 @@ "bundle_column_error.network.title": "Error de red", "bundle_column_error.retry": "Intentá de nuevo", "bundle_column_error.return": "Volver al inicio", - "bundle_column_error.routing.body": "No se pudo encontrar la página solicitada. ¿Estás seguro que la dirección web es correcta?", + "bundle_column_error.routing.body": "No se pudo encontrar la página solicitada. ¿La dirección web es correcta?", "bundle_column_error.routing.title": "404", "bundle_modal_error.close": "Cerrar", "bundle_modal_error.message": "Algo salió mal al cargar este componente.", @@ -141,9 +141,9 @@ "column_header.show_settings": "Mostrar configuración", "column_header.unpin": "Dejar de fijar", "column_subheading.settings": "Configuración", - "community.column_settings.local_only": "Sólo local", - "community.column_settings.media_only": "Sólo medios", - "community.column_settings.remote_only": "Sólo remoto", + "community.column_settings.local_only": "Solo local", + "community.column_settings.media_only": "Solo medios", + "community.column_settings.remote_only": "Solo remoto", "compose.language.change": "Cambiar idioma", "compose.language.search": "Buscar idiomas…", "compose.published.body": "Mensaje publicado.", @@ -151,7 +151,7 @@ "compose.saved.body": "Mensaje guardado.", "compose_form.direct_message_warning_learn_more": "Aprendé más", "compose_form.encryption_warning": "Los mensajes en Mastodon no están cifrados de extremo a extremo. No compartas ninguna información sensible al usar Mastodon.", - "compose_form.hashtag_warning": "Este mensaje no se mostrará bajo ninguna etiqueta porque no es público. Sólo los mensajes públicos se pueden buscar por etiquetas.", + "compose_form.hashtag_warning": "Este mensaje no se mostrará bajo ninguna etiqueta porque no es público. Solo los mensajes públicos se pueden buscar por etiquetas.", "compose_form.lock_disclaimer": "Tu cuenta no es {locked}. Todos pueden seguirte para ver tus mensajes marcados como \"Sólo para seguidores\".", "compose_form.lock_disclaimer.lock": "privada", "compose_form.placeholder": "¿Qué onda?", @@ -172,28 +172,28 @@ "confirmation_modal.cancel": "Cancelar", "confirmations.block.confirm": "Bloquear", "confirmations.delete.confirm": "Eliminar", - "confirmations.delete.message": "¿Estás seguro que querés eliminar este mensaje?", + "confirmations.delete.message": "¿De verdad querés eliminar este mensaje?", "confirmations.delete.title": "¿Eliminar mensaje?", "confirmations.delete_list.confirm": "Eliminar", - "confirmations.delete_list.message": "¿Estás seguro que querés eliminar permanentemente esta lista?", + "confirmations.delete_list.message": "¿De verdad querés eliminar permanentemente esta lista?", "confirmations.delete_list.title": "¿Eliminar lista?", "confirmations.discard_edit_media.confirm": "Descartar", "confirmations.discard_edit_media.message": "Tenés cambios sin guardar en la descripción de medios o en la vista previa, ¿querés descartarlos de todos modos?", "confirmations.edit.confirm": "Editar", - "confirmations.edit.message": "Editar ahora sobreescribirá el mensaje que estás redactando actualmente. ¿Estás seguro que querés seguir?", + "confirmations.edit.message": "Editar ahora sobreescribirá el mensaje que estás redactando actualmente. ¿De verdad querés seguir?", "confirmations.edit.title": "¿Sobrescribir mensaje?", "confirmations.logout.confirm": "Cerrar sesión", - "confirmations.logout.message": "¿Estás seguro que querés cerrar la sesión?", + "confirmations.logout.message": "¿De verdad querés cerrar la sesión?", "confirmations.logout.title": "¿Cerrar sesión?", "confirmations.mute.confirm": "Silenciar", "confirmations.redraft.confirm": "Eliminar mensaje original y editarlo", - "confirmations.redraft.message": "¿Estás seguro que querés eliminar este mensaje y volver a editarlo? Se perderán las veces marcadas como favorito y sus adhesiones, y las respuestas al mensaje original quedarán huérfanas.", + "confirmations.redraft.message": "¿De verdad querés eliminar este mensaje y volver a editarlo? Se perderán las veces marcadas como favorito y sus adhesiones, y las respuestas al mensaje original quedarán huérfanas.", "confirmations.redraft.title": "¿Eliminar y volver a redactar mensaje?", "confirmations.reply.confirm": "Responder", - "confirmations.reply.message": "Responder ahora sobreescribirá el mensaje que estás redactando actualmente. ¿Estás seguro que querés seguir?", + "confirmations.reply.message": "Responder ahora sobreescribirá el mensaje que estás redactando actualmente. ¿De verdad querés seguir?", "confirmations.reply.title": "¿Sobrescribir mensaje?", "confirmations.unfollow.confirm": "Dejar de seguir", - "confirmations.unfollow.message": "¿Estás seguro que querés dejar de seguir a {name}?", + "confirmations.unfollow.message": "¿De verdad querés dejar de seguir a {name}?", "confirmations.unfollow.title": "¿Dejar de seguir al usuario?", "content_warning.hide": "Ocultar mensaje", "content_warning.show": "Mostrar de todos modos", @@ -206,7 +206,7 @@ "copypaste.copied": "Copiado", "copypaste.copy_to_clipboard": "Copiar al portapapeles", "directory.federated": "Desde fediverso conocido", - "directory.local": "Sólo de {domain}", + "directory.local": "Solo de {domain}", "directory.new_arrivals": "Recién llegados", "directory.recently_active": "Recientemente activos", "disabled_account_banner.account_settings": "Config. de la cuenta", @@ -541,10 +541,10 @@ "notification_requests.accept": "Aceptar", "notification_requests.accept_multiple": "{count, plural, one {Aceptar # solicitud…} other {Aceptar # solicitudes…}}", "notification_requests.confirm_accept_multiple.button": "{count, plural, one {Aceptar solicitud} other {Aceptar solicitudes}}", - "notification_requests.confirm_accept_multiple.message": "Estás a punto de aceptar {count, plural, one {una solicitud} other {# solicitudes}}. ¿Estás seguro de que querés continuar?", + "notification_requests.confirm_accept_multiple.message": "Estás a punto de aceptar {count, plural, one {una solicitud} other {# solicitudes}}. ¿De verdad querés continuar?", "notification_requests.confirm_accept_multiple.title": "¿Aceptar solicitudes de notificación?", "notification_requests.confirm_dismiss_multiple.button": "{count, plural, one {Descartar solicitud} other {Descartar solicitudes}}", - "notification_requests.confirm_dismiss_multiple.message": "Estás a punto de descartar {count, plural, one {una solicitud} other {# solicitudes}}. No vas a poder acceder fácilmente a {count, plural, one {ella} other {ellas}} de nuevo. ¿Estás seguro de que querés continuar?", + "notification_requests.confirm_dismiss_multiple.message": "Estás a punto de descartar {count, plural, one {una solicitud} other {# solicitudes}}. No vas a poder acceder fácilmente a {count, plural, one {ella} other {ellas}} de nuevo. ¿De verdad querés continuar?", "notification_requests.confirm_dismiss_multiple.title": "¿Descartar solicitudes de notificación?", "notification_requests.dismiss": "Descartar", "notification_requests.dismiss_multiple": "{count, plural, one {Descartar # solicitud…} other {Descartar # solicitudes…}}", @@ -558,7 +558,7 @@ "notification_requests.title": "Notificaciones filtradas", "notification_requests.view": "Ver notificaciones", "notifications.clear": "Limpiar notificaciones", - "notifications.clear_confirmation": "¿Estás seguro que querés limpiar todas tus notificaciones permanentemente?", + "notifications.clear_confirmation": "¿De verdad querés limpiar todas tus notificaciones permanentemente?", "notifications.clear_title": "¿Limpiar notificaciones?", "notifications.column_settings.admin.report": "Nuevas denuncias:", "notifications.column_settings.admin.sign_up": "Nuevos registros:", @@ -657,10 +657,10 @@ "poll.refresh": "Refrescar", "poll.reveal": "Ver resultados", "poll.total_people": "{count, plural, one {# persona} other {# personas}}", - "poll.total_votes": "{count, plural, one {# voto} other {# votos}}", + "poll.total_votes": "{count, plural, one {voto} other {votos}}", "poll.vote": "Votar", "poll.voted": "Votaste esta opción", - "poll.votes": "{votes, plural, one {# voto} other {# votos}}", + "poll.votes": "{votes, plural, one {voto} other {votos}}", "poll_button.add_poll": "Agregar encuesta", "poll_button.remove_poll": "Quitar encuesta", "privacy.change": "Configurar privacidad del mensaje", @@ -672,7 +672,7 @@ "privacy.public.short": "Público", "privacy.unlisted.additional": "Esto se comporta exactamente igual que con la configuración de privacidad de mensaje «Público», excepto que el mensaje no aparecerá en las líneas temporales en vivo, ni en las etiquetas, ni en la línea temporal «Explorá», ni en la búsqueda de Mastodon; incluso si optaste por hacer tu cuenta visible.", "privacy.unlisted.long": "Menos fanfarrias algorítmicas", - "privacy.unlisted.short": "Público silencioso", + "privacy.unlisted.short": "Público pero silencioso", "privacy_policy.last_updated": "Última actualización: {date}", "privacy_policy.title": "Política de privacidad", "recommended": "Opción recomendada", @@ -833,7 +833,7 @@ "status.uncached_media_warning": "Previsualización no disponible", "status.unmute_conversation": "Dejar de silenciar conversación", "status.unpin": "Dejar de fijar", - "subscribed_languages.lead": "Después del cambio, sólo los mensajes en los idiomas seleccionados aparecerán en tu línea temporal Principal y en las líneas de tiempo de lista. No seleccionés ningún idioma para poder recibir mensajes en todos los idiomas.", + "subscribed_languages.lead": "Después del cambio, solo los mensajes en los idiomas seleccionados aparecerán en tu línea temporal Principal y en las líneas de tiempo de lista. No seleccionés ningún idioma para poder recibir mensajes en todos los idiomas.", "subscribed_languages.save": "Guardar cambios", "subscribed_languages.target": "Cambiar idiomas suscritos para {target}", "tabs_bar.home": "Principal", diff --git a/app/javascript/mastodon/locales/es-MX.json b/app/javascript/mastodon/locales/es-MX.json index f8c5878b3e..ecd7175ecd 100644 --- a/app/javascript/mastodon/locales/es-MX.json +++ b/app/javascript/mastodon/locales/es-MX.json @@ -43,8 +43,8 @@ "account.in_memoriam": "En memoria.", "account.joined_short": "Se unió", "account.languages": "Cambiar idiomas suscritos", - "account.link_verified_on": "El proprietario de este enlace fue comprobado el {date}", - "account.locked_info": "El estado de privacidad de esta cuenta està configurado como bloqueado. El proprietario debe revisar manualmente quien puede seguirle.", + "account.link_verified_on": "Se verificó la propiedad de este enlace el {date}", + "account.locked_info": "El estado de privacidad de esta cuenta está configurado como bloqueado. El propietario revisa manualmente quién puede seguirlo.", "account.media": "Multimedia", "account.mention": "Mencionar a @{name}", "account.moved_to": "{name} ha indicado que su nueva cuenta es ahora:", @@ -71,7 +71,7 @@ "account.unmute": "Dejar de silenciar a @{name}", "account.unmute_notifications_short": "Dejar de silenciar notificaciones", "account.unmute_short": "Dejar de silenciar", - "account_note.placeholder": "Haz clic para agregar una nota", + "account_note.placeholder": "Haz clic para añadir una nota", "admin.dashboard.daily_retention": "Tasa de retención de usuarios por día después de unirse", "admin.dashboard.monthly_retention": "Tasa de retención de usuarios por mes después de unirse", "admin.dashboard.retention.average": "Promedio", @@ -125,21 +125,21 @@ "column.directory": "Buscar perfiles", "column.domain_blocks": "Dominios ocultados", "column.favourites": "Favoritos", - "column.firehose": "Cronologías", + "column.firehose": "Cronologías en vivo", "column.follow_requests": "Solicitudes de seguimiento", "column.home": "Inicio", "column.lists": "Listas", "column.mutes": "Usuarios silenciados", "column.notifications": "Notificaciones", "column.pins": "Publicaciones fijadas", - "column.public": "Línea de tiempo federada", + "column.public": "Cronología federada", "column_back_button.label": "Atrás", "column_header.hide_settings": "Ocultar configuración", "column_header.moveLeft_settings": "Mover columna a la izquierda", "column_header.moveRight_settings": "Mover columna a la derecha", "column_header.pin": "Fijar", "column_header.show_settings": "Mostrar ajustes", - "column_header.unpin": "Desfijar", + "column_header.unpin": "Dejar de fijar", "column_subheading.settings": "Ajustes", "community.column_settings.local_only": "Solo local", "community.column_settings.media_only": "Solo media", @@ -172,7 +172,7 @@ "confirmation_modal.cancel": "Cancelar", "confirmations.block.confirm": "Bloquear", "confirmations.delete.confirm": "Eliminar", - "confirmations.delete.message": "¿Estás seguro de que quieres borrar esta publicación?", + "confirmations.delete.message": "¿Estás seguro de que quieres eliminar esta publicación?", "confirmations.delete.title": "¿Deseas eliminar la publicación?", "confirmations.delete_list.confirm": "Eliminar", "confirmations.delete_list.message": "¿Estás seguro de que quieres eliminar esta lista de forma permanente?", @@ -186,9 +186,9 @@ "confirmations.logout.message": "¿Estás seguro de que quieres cerrar la sesión?", "confirmations.logout.title": "¿Deseas cerrar sesión?", "confirmations.mute.confirm": "Silenciar", - "confirmations.redraft.confirm": "Borrar y volver a borrador", - "confirmations.redraft.message": "¿Estás seguro de que quieres borrar esta publicación y editarla? Los favoritos e impulsos se perderán, y las respuestas a la publicación original quedarán separadas.", - "confirmations.redraft.title": "¿Deseas borrar y volver a redactar la publicación?", + "confirmations.redraft.confirm": "Eliminar y volver a redactar", + "confirmations.redraft.message": "¿Estás seguro de que quieres eliminar esta publicación y volver a redactarla? Se perderán tanto los «Me gusta» como los impulsos, y las respuestas a la publicación original quedarán sin referencia.", + "confirmations.redraft.title": "¿Deseas eliminar y volver a redactar la publicación?", "confirmations.reply.confirm": "Responder", "confirmations.reply.message": "Responder sobrescribirá el mensaje que estás escribiendo. ¿Estás seguro de que deseas continuar?", "confirmations.reply.title": "¿Deseas sobreescribir la publicación?", @@ -198,7 +198,7 @@ "content_warning.hide": "Ocultar publicación", "content_warning.show": "Mostrar de todos modos", "content_warning.show_more": "Mostrar más", - "conversation.delete": "Borrar conversación", + "conversation.delete": "Eliminar conversación", "conversation.mark_as_read": "Marcar como leído", "conversation.open": "Ver conversación", "conversation.with": "Con {names}", @@ -226,7 +226,7 @@ "domain_block_modal.you_will_lose_num_followers": "Vas a perder {followersCount, plural, one {{followersCountDisplay} seguidor} other {{followersCountDisplay} seguidores}} y {followingCount, plural, one {{followingCountDisplay} persona a la que sigues} other {{followingCountDisplay} personas a las que sigas}}.", "domain_block_modal.you_will_lose_relationships": "Perderás todos los seguidores y las personas que sigues de este servidor.", "domain_block_modal.you_wont_see_posts": "No verás publicaciones ni notificaciones de usuarios en este servidor.", - "domain_pill.activitypub_lets_connect": "Te permite conectar e interactuar con personas no sólo en Mastodon, sino también a través de diferentes aplicaciones sociales.", + "domain_pill.activitypub_lets_connect": "Te permite conectarte e interactuar con personas no solo en Mastodon, sino también en diferentes aplicaciones sociales.", "domain_pill.activitypub_like_language": "ActivityPub es como el idioma que Mastodon habla con otras redes sociales.", "domain_pill.server": "Servidor", "domain_pill.their_handle": "Su alias:", @@ -242,7 +242,7 @@ "embed.instructions": "Añade esta publicación a tu sitio web con el siguiente código.", "embed.preview": "Así es como se verá:", "emoji_button.activity": "Actividad", - "emoji_button.clear": "Borrar", + "emoji_button.clear": "Eliminar", "emoji_button.custom": "Personalizado", "emoji_button.flags": "Marcas", "emoji_button.food": "Comida y bebida", @@ -263,7 +263,7 @@ "empty_column.blocks": "Aún no has bloqueado a ningún usuario.", "empty_column.bookmarked_statuses": "Aún no tienes ninguna publicación guardada como marcador. Cuando guardes una, se mostrará aquí.", "empty_column.community": "La cronología local está vacía. ¡Escribe algo públicamente para ponerla en marcha!", - "empty_column.direct": "Aún no tienes menciones privadas. Cuando envíes o recibas una, aparecerán aquí.", + "empty_column.direct": "Aún no tienes ninguna mención privada. Cuando envíes o recibas una, aparecerá aquí.", "empty_column.domain_blocks": "Todavía no hay dominios ocultos.", "empty_column.explore_statuses": "Nada es tendencia en este momento. ¡Revisa más tarde!", "empty_column.favourited_statuses": "Todavía no tienes publicaciones favoritas. Cuando le des favorito a una publicación se mostrarán acá.", @@ -290,9 +290,9 @@ "explore.trending_links": "Noticias", "explore.trending_statuses": "Publicaciones", "explore.trending_tags": "Etiquetas", - "filter_modal.added.context_mismatch_explanation": "Esta categoría de filtro no se aplica al contexto en el que has accedido a esta publlicación. Si quieres que la publicación sea filtrada también en este contexto, tendrás que editar el filtro.", + "filter_modal.added.context_mismatch_explanation": "Esta categoría de filtro no se aplica al contexto en el que has accedido a esta publicación. Si deseas que la publicación también se filtre en este contexto, tendrás que editar el filtro.", "filter_modal.added.context_mismatch_title": "¡El contexto no coincide!", - "filter_modal.added.expired_explanation": "Esta categoría de filtro ha caducado, necesitaras cambiar la fecha de caducidad para que se aplique.", + "filter_modal.added.expired_explanation": "Esta categoría de filtro ha caducado; deberás cambiar la fecha de caducidad para que se aplique.", "filter_modal.added.expired_title": "¡Filtro expirado!", "filter_modal.added.review_and_configure": "Para revisar y configurar esta categoría de filtros, vaya a {settings_link}.", "filter_modal.added.review_and_configure_title": "Ajustes de filtro", @@ -381,7 +381,7 @@ "ignore_notifications_modal.new_accounts_title": "¿Ignorar notificaciones de cuentas nuevas?", "ignore_notifications_modal.not_followers_title": "¿Ignorar notificaciones de personas que no te siguen?", "ignore_notifications_modal.not_following_title": "¿Ignorar notificaciones de personas a las que no sigues?", - "ignore_notifications_modal.private_mentions_title": "¿Ignorar notificaciones de menciones privadas no solicitadas?", + "ignore_notifications_modal.private_mentions_title": "¿Ignorar las notificaciones de menciones privadas no solicitadas?", "interaction_modal.description.favourite": "Con una cuenta en Mastodon, puedes marcar como favorita esta publicación para que el autor sepa que te gusta, y guardala para más adelante.", "interaction_modal.description.follow": "Con una cuenta en Mastodon, puedes seguir {name} para recibir sus publicaciones en tu fuente de inicio.", "interaction_modal.description.reblog": "Con una cuenta en Mastodon, puedes impulsar esta publicación para compartirla con tus propios seguidores.", @@ -446,7 +446,7 @@ "link_preview.shares": "{count, plural, one {{counter} publicación} other {{counter} publicaciones}}", "lists.account.add": "Añadir a lista", "lists.account.remove": "Quitar de lista", - "lists.delete": "Borrar lista", + "lists.delete": "Eliminar lista", "lists.edit": "Editar lista", "lists.edit.submit": "Cambiar título", "lists.exclusive": "Ocultar estas publicaciones en inicio", @@ -504,7 +504,7 @@ "notification.admin.report_account_other": "{name} reportó {count, plural, one {una publicación} other {# publicaciones}} de {target}", "notification.admin.report_statuses": "{name} reportó {target} por {category}", "notification.admin.report_statuses_other": "{name} reportó {target}", - "notification.admin.sign_up": "{name} se unio", + "notification.admin.sign_up": "{name} se registró", "notification.admin.sign_up.name_and_others": "{name} y {count, plural, one {# otro} other {# otros}} se registraron", "notification.favourite": "{name} marcó como favorita tu publicación", "notification.favourite.name_and_others_with_link": "{name} y {count, plural, one {# otro} other {# otros}} marcaron tu publicación como favorita", @@ -558,7 +558,7 @@ "notification_requests.title": "Notificaciones filtradas", "notification_requests.view": "Ver notificaciones", "notifications.clear": "Limpiar notificaciones", - "notifications.clear_confirmation": "¿Seguro de querer borrar permanentemente todas tus notificaciones?", + "notifications.clear_confirmation": "¿Estás seguro de que quieres eliminar definitivamente todas tus notificaciones?", "notifications.clear_title": "¿Limpiar notificaciones?", "notifications.column_settings.admin.report": "Nuevas denuncias:", "notifications.column_settings.admin.sign_up": "Registros nuevos:", @@ -606,7 +606,7 @@ "notifications.policy.filter_not_followers_title": "Personas que no te siguen", "notifications.policy.filter_not_following_hint": "Hasta que las apruebes manualmente", "notifications.policy.filter_not_following_title": "Personas que no sigues", - "notifications.policy.filter_private_mentions_hint": "Filtrada, a menos que sea en respuesta a tu propia mención, o si sigues al remitente", + "notifications.policy.filter_private_mentions_hint": "Filtradas a menos que sea una respuesta a tu propia mención o si sigues al remitente", "notifications.policy.filter_private_mentions_title": "Menciones privadas no solicitadas", "notifications.policy.title": "Gestionar notificaciones de…", "notifications_permission_banner.enable": "Habilitar notificaciones de escritorio", @@ -620,9 +620,9 @@ "onboarding.follows.empty": "Desafortunadamente, no se pueden mostrar resultados en este momento. Puedes intentar usar la búsqueda o navegar por la página de exploración para encontrar gente a la que seguir, o inténtalo de nuevo más tarde.", "onboarding.follows.lead": "Tienes que personalizar tu inicio. Cuantas más personas sigas, más activo e interesante será. Estos perfiles pueden ser un buen punto de partida, ¡pero siempre puedes dejar de seguirlos más adelante!", "onboarding.follows.title": "Popular en Mastodon", - "onboarding.profile.discoverable": "Make my profile discoverable", - "onboarding.profile.discoverable_hint": "Cuando aceptas ser descubierto en Mastodon, tus publicaciones pueden aparecer en resultados de búsqueda y tendencias, y tu perfil puede ser sugerido a personas con intereses similares a los tuyos.", - "onboarding.profile.display_name": "Nombre a mostrar", + "onboarding.profile.discoverable": "Hacer que mi perfil aparezca en búsquedas", + "onboarding.profile.discoverable_hint": "Cuando permites que tu perfil aparezca en búsquedas en Mastodon, tus publicaciones pueden aparecer en los resultados de búsqueda y en las tendencias, y tu perfil puede ser sugerido a personas con intereses similares a los tuyos.", + "onboarding.profile.display_name": "Nombre para mostrar", "onboarding.profile.display_name_hint": "Tu nombre completo o tu apodo…", "onboarding.profile.lead": "Siempre puedes completar esto más tarde en los ajustes, donde hay aún más opciones de personalización disponibles.", "onboarding.profile.note": "Biografía", @@ -630,7 +630,7 @@ "onboarding.profile.save_and_continue": "Guardar y continuar", "onboarding.profile.title": "Configuración del perfil", "onboarding.profile.upload_avatar": "Subir foto de perfil", - "onboarding.profile.upload_header": "Subir foto de cabecera", + "onboarding.profile.upload_header": "Subir encabezado de perfil", "onboarding.share.lead": "¡Dile a la gente cómo te pueden encontrar en Mastodon!", "onboarding.share.message": "¡Soy {username} en #Mastodon! Ven a seguirme en {url}", "onboarding.share.next_steps": "Posibles siguientes pasos:", @@ -650,7 +650,7 @@ "onboarding.tips.accounts_from_other_servers": "¿Sabías que? Como Mastodon es descentralizado, algunos perfiles que encuentras están alojados en servidores distintos del tuyo. Y sin embargo, ¡puedes interactuar con ellos! ¡Su servidor corresponde a la segunda mitad de su nombre de usuario!", "onboarding.tips.migration": "¿Sabías que? Si sientes que {domain} no es una gran elección de servidor para ti en el futuro, puedes moverte a otro servidor de Mastodon sin perder a tus seguidores. ¡Incluso puedes alojar tu propio servidor!", "onboarding.tips.verification": "¿Sabías que? Puedes verificar tu cuenta poniendo un enlace a tu perfil de Mastodon en su propio sitio web y añadiendo el sitio web a su perfil. ¡Sin necesidad de comisiones ni documentos!", - "password_confirmation.exceeds_maxlength": "La contraseña de confirmación excede la longitud máxima de la contraseña", + "password_confirmation.exceeds_maxlength": "La contraseña de confirmación supera la longitud máxima permitida", "password_confirmation.mismatching": "La contraseña de confirmación no coincide", "picture_in_picture.restore": "Restaurar", "poll.closed": "Cerrada", @@ -666,11 +666,11 @@ "privacy.change": "Ajustar privacidad", "privacy.direct.long": "Todos los mencionados en la publicación", "privacy.direct.short": "Personas específicas", - "privacy.private.long": "Sólo tus seguidores", + "privacy.private.long": "Solo tus seguidores", "privacy.private.short": "Seguidores", "privacy.public.long": "Cualquiera dentro y fuera de Mastodon", "privacy.public.short": "Público", - "privacy.unlisted.additional": "Esto se comporta exactamente igual que el público, excepto que el post no aparecerá en las cronologías en directo o en las etiquetas, la exploración o busquedas en Mastodon, incluso si está optado por activar la cuenta de usuario.", + "privacy.unlisted.additional": "Esto funciona exactamente igual que «público», excepto que la publicación no aparecerá en las transmisiones en vivo ni en las etiquetas, en «explorar» ni en la búsqueda de Mastodon, incluso si has optado por ello en toda tu cuenta.", "privacy.unlisted.long": "Menos fanfares algorítmicos", "privacy.unlisted.short": "Pública, pero discreta", "privacy_policy.last_updated": "Actualizado por última vez {date}", @@ -682,7 +682,7 @@ "relative_time.days": "{number} d", "relative_time.full.days": "{number, plural, one {# día} other {# días hace}}", "relative_time.full.hours": "{number, plural, one {# hora} other {# horas}} hace", - "relative_time.full.just_now": "justo ahora", + "relative_time.full.just_now": "ahora mismo", "relative_time.full.minutes": "Hace {number, plural, one {# minute} other {# minutos}}", "relative_time.full.seconds": "Hace {number, plural, one {# second} other {# segundos}}", "relative_time.hours": "{number} h", @@ -694,7 +694,7 @@ "reply_indicator.cancel": "Cancelar", "reply_indicator.poll": "Encuesta", "report.block": "Bloquear", - "report.block_explanation": "No veras sus publicaciones. No podrán ver tus publicaciones ni seguirte. Podrán saber que están bloqueados.", + "report.block_explanation": "No verás sus publicaciones. Ellos no podrán ver tus publicaciones ni seguirte. Podrán saber que están bloqueados.", "report.categories.legal": "Legal", "report.categories.other": "Otro", "report.categories.spam": "Spam", @@ -706,9 +706,9 @@ "report.close": "Realizado", "report.comment.title": "¿Hay algo más que creas que deberíamos saber?", "report.forward": "Reenviar a {target}", - "report.forward_hint": "Esta cuenta es de otro servidor. ¿Enviar una copia anonimizada del informe allí también?", + "report.forward_hint": "La cuenta es de otro servidor. ¿Enviar también una copia anónima del informe allí?", "report.mute": "Silenciar", - "report.mute_explanation": "No veras sus publiaciones. Todavía pueden seguirte y ver tus publicaciones y no sabrán que están silenciados.", + "report.mute_explanation": "No verás sus publicaciones. Todavía pueden seguirte y ver tus publicaciones y no sabrán que están silenciados.", "report.next": "Siguiente", "report.placeholder": "Comentarios adicionales", "report.reasons.dislike": "No me gusta", @@ -732,7 +732,7 @@ "report.thanks.title": "¿No quieres ver esto?", "report.thanks.title_actionable": "Gracias por denunciar, revisaremos esto.", "report.unfollow": "Dejar de seguir @{name}", - "report.unfollow_explanation": "Estás siguiendo esta cuenta. Para no ver sus publicaciones en tu inicio, deja de seguirla.", + "report.unfollow_explanation": "Estás siguiendo esta cuenta. Para dejar de ver sus publicaciones en tu página de inicio, deja de seguirla.", "report_notification.attached_statuses": "{count, plural, one {{count} publicación} other {{count} publicaciones}} adjunta(s)", "report_notification.categories.legal": "Legal", "report_notification.categories.legal_sentence": "contenido ilegal", @@ -752,7 +752,7 @@ "search.quick_action.status_search": "Publicaciones que coinciden con {x}", "search.search_or_paste": "Buscar o pegar URL", "search_popout.full_text_search_disabled_message": "No disponible en {domain}.", - "search_popout.full_text_search_logged_out_message": "Sólo disponible al iniciar sesión.", + "search_popout.full_text_search_logged_out_message": "Solo disponible al iniciar sesión.", "search_popout.language_code": "Código de idioma ISO", "search_popout.options": "Opciones de búsqueda", "search_popout.quick_actions": "Acciones rápidas", @@ -785,7 +785,7 @@ "status.cannot_reblog": "Esta publicación no puede ser impulsada", "status.continued_thread": "Hilo continuado", "status.copy": "Copiar enlace al estado", - "status.delete": "Borrar", + "status.delete": "Eliminar", "status.detailed_status": "Vista de conversación detallada", "status.direct": "Mención privada @{name}", "status.direct_indicator": "Mención privada", @@ -799,8 +799,8 @@ "status.history.created": "{name} creó {date}", "status.history.edited": "{name} editado {date}", "status.load_more": "Cargar más", - "status.media.open": "Click para abrir", - "status.media.show": "Click para mostrar", + "status.media.open": "Haz clic para abrir", + "status.media.show": "Haz clic para mostrar", "status.media_hidden": "Contenido multimedia oculto", "status.mention": "Mencionar @{name}", "status.more": "Más", @@ -815,7 +815,7 @@ "status.reblogged_by": "Impulsado por {name}", "status.reblogs": "{count, plural, one {impulso} other {impulsos}}", "status.reblogs.empty": "Nadie impulsó esta publicación todavía. Cuando alguien lo haga, aparecerá aquí.", - "status.redraft": "Borrar y volver a borrador", + "status.redraft": "Eliminar y volver a redactar", "status.remove_bookmark": "Eliminar marcador", "status.replied_in_thread": "Respondido en el hilo", "status.replied_to": "Respondió a {name}", @@ -850,7 +850,7 @@ "units.short.million": "{count} M", "units.short.thousand": "{count} K", "upload_area.title": "Arrastra y suelta para subir", - "upload_button.label": "Subir multimedia (JPEG, PNG, GIF, WebM, MP4, MOV)", + "upload_button.label": "Añadir imágenes, un video o un archivo de audio", "upload_error.limit": "Límite de subida de archivos excedido.", "upload_error.poll": "No se permite subir archivos con las encuestas.", "upload_form.audio_description": "Describir para personas con problemas auditivos", diff --git a/app/javascript/mastodon/locales/et.json b/app/javascript/mastodon/locales/et.json index 1e875869b3..c3db80be2a 100644 --- a/app/javascript/mastodon/locales/et.json +++ b/app/javascript/mastodon/locales/et.json @@ -1,35 +1,35 @@ { "about.blocks": "Modereeritavad serverid", "about.contact": "Kontakt:", - "about.disclaimer": "Mastodon on tasuta ja vaba tarkvara ning Mastodon gGmbH kaubamärk.", - "about.domain_blocks.no_reason_available": "Põhjus teadmata", - "about.domain_blocks.preamble": "Mastodon lubab tavaliselt vaadata sisu ning suhelda kasutajatega ükskõik millisest teisest fediversumi serverist. Need on erandid, mis on paika pandud sellel kindlal serveril.", - "about.domain_blocks.silenced.explanation": "Sa ei näe üldiselt profiile ja sisu sellelt serverilt, kui sa just tahtlikult seda ei otsi või jälgimise moel nõusolekut ei anna.", + "about.disclaimer": "Mastodon on vaba, tasuta ja avatud lähtekoodiga tarkvara ning Mastodon gGmbH kaubamärk.", + "about.domain_blocks.no_reason_available": "Põhjus on teadmata", + "about.domain_blocks.preamble": "Mastodon lubab üldiselt vaadata sisu ning suhelda kasutajatega ükskõik millisest teisest födiversumi serverist. Need on erandid, mis kehtivad selles kindlas serveris.", + "about.domain_blocks.silenced.explanation": "Sa üldjuhul ei näe profiile ja sisu sellest serverist, kui sa just tahtlikult neid ei otsi või jälgimise moel nõusolekut ei anna.", "about.domain_blocks.silenced.title": "Piiratud", - "about.domain_blocks.suspended.explanation": "Mitte mingeid andmeid sellelt serverilt ei töödelda, salvestata ega vahetata, tehes igasuguse interaktsiooni või kirjavahetuse selle serveri kasutajatega võimatuks.", + "about.domain_blocks.suspended.explanation": "Mitte mingeid andmeid sellelt serverilt ei töödelda, salvestata ega vahetata, tehes igasuguse suhestumise või infovahetuse selle serveri kasutajatega võimatuks.", "about.domain_blocks.suspended.title": "Peatatud", - "about.not_available": "See info ei ole sellel serveril saadavaks tehtud.", + "about.not_available": "See info ei ole selles serveris saadavaks tehtud.", "about.powered_by": "Hajutatud sotsiaalmeedia, mille taga on {mastodon}", "about.rules": "Serveri reeglid", "account.account_note_header": "Isiklik märge", - "account.add_or_remove_from_list": "Lisa või Eemalda loeteludest", + "account.add_or_remove_from_list": "Lisa või eemalda loenditest", "account.badges.bot": "Robot", "account.badges.group": "Grupp", "account.block": "Blokeeri @{name}", - "account.block_domain": "Peida kõik domeenist {domain}", - "account.block_short": "Blokeerimine", + "account.block_domain": "Blokeeri kõik domeenist {domain}", + "account.block_short": "Blokeeri", "account.blocked": "Blokeeritud", - "account.cancel_follow_request": "Võta jälgimistaotlus tagasi", + "account.cancel_follow_request": "Võta jälgimissoov tagasi", "account.copy": "Kopeeri profiili link", - "account.direct": "Maini privaatselt @{name}", - "account.disable_notifications": "Peata teavitused @{name} postitustest", - "account.domain_blocked": "Domeen peidetud", + "account.direct": "Maini privaatselt kasutajat @{name}", + "account.disable_notifications": "Ära teavita, kui @{name} postitab", + "account.domain_blocked": "Domeen on blokeeritud", "account.edit_profile": "Muuda profiili", - "account.enable_notifications": "Teavita mind @{name} postitustest", - "account.endorse": "Too profiilil esile", - "account.featured_tags.last_status_at": "Viimane postitus {date}", + "account.enable_notifications": "Teavita mind, kui {name} postitab", + "account.endorse": "Too profiilis esile", + "account.featured_tags.last_status_at": "Viimane postitus: {date}", "account.featured_tags.last_status_never": "Postitusi pole", - "account.featured_tags.title": "{name} esiletõstetud sildid", + "account.featured_tags.title": "Kasutaja {name} esiletõstetud teemaviited", "account.follow": "Jälgi", "account.follow_back": "Jälgi vastu", "account.followers": "Jälgijad", @@ -37,45 +37,45 @@ "account.followers_counter": "{count, plural, one {{counter} jälgija} other {{counter} jälgijat}}", "account.following": "Jälgib", "account.following_counter": "{count, plural, one {{counter} jälgib} other {{counter} jälgib}}", - "account.follows.empty": "See kasutaja ei jälgi veel kedagi.", - "account.go_to_profile": "Mine profiilile", + "account.follows.empty": "See kasutaja ei jälgi veel mitte kedagi.", + "account.go_to_profile": "Vaata profiili", "account.hide_reblogs": "Peida @{name} jagamised", "account.in_memoriam": "In Memoriam.", "account.joined_short": "Liitus", "account.languages": "Muuda tellitud keeli", "account.link_verified_on": "Selle lingi autorsust kontrolliti {date}", "account.locked_info": "Selle konto privaatsussätteks on lukustatud. Omanik vaatab käsitsi üle, kes teda jälgida saab.", - "account.media": "Meedia", + "account.media": "Meedium", "account.mention": "Maini @{name}", "account.moved_to": "{name} on teada andnud, et ta uus konto on nüüd:", - "account.mute": "Vaigista @{name}", - "account.mute_notifications_short": "Vaigista teavitused", - "account.mute_short": "Vaigista", - "account.muted": "Vaigistatud", - "account.mutual": "Jälgite", + "account.mute": "Summuta @{name}", + "account.mute_notifications_short": "Summuta teavitused", + "account.mute_short": "Summuta", + "account.muted": "Summutatud", + "account.mutual": "Jälgite teineteist", "account.no_bio": "Kirjeldust pole lisatud.", "account.open_original_page": "Ava algne leht", "account.posts": "Postitused", "account.posts_with_replies": "Postitused ja vastused", - "account.report": "Raporteeri @{name}", + "account.report": "Teata kasutajast {name}", "account.requested": "Ootab kinnitust. Klõpsa jälgimise soovi tühistamiseks", - "account.requested_follow": "{name} on taodelnud sinu jälgimist", + "account.requested_follow": "{name} on soovinud sinu jälgimist", "account.share": "Jaga @{name} profiili", "account.show_reblogs": "Näita @{name} jagamisi", "account.statuses_counter": "{count, plural, one {{counter} postitus} other {{counter} postitust}}", - "account.unblock": "Eemalda blokeering @{name}", - "account.unblock_domain": "Tee {domain} nähtavaks", - "account.unblock_short": "Eemalda blokeering", - "account.unendorse": "Ära kuva profiilil", - "account.unfollow": "Jälgid", - "account.unmute": "Ära vaigista @{name}", - "account.unmute_notifications_short": "Tühista teadete vaigistamine", - "account.unmute_short": "Lõpeta vaigistamine", + "account.unblock": "Lõpeta {name} kasutaja blokeerimine", + "account.unblock_domain": "Lõpeta {domain} domeeni blokeerimine", + "account.unblock_short": "Lõpeta blokeerimine", + "account.unendorse": "Ära kuva profiilis", + "account.unfollow": "Ära jälgi", + "account.unmute": "Lõpeta {name} kasutaja summutamine", + "account.unmute_notifications_short": "Lõpeta teavituste summutamine", + "account.unmute_short": "Lõpeta summutamine", "account_note.placeholder": "Klõpsa märke lisamiseks", "admin.dashboard.daily_retention": "Kasutajate päevane allesjäämine peale registreerumist", "admin.dashboard.monthly_retention": "Kasutajate kuine allesjäämine peale registreerumist", "admin.dashboard.retention.average": "Keskmine", - "admin.dashboard.retention.cohort": "Registreerumiskuu", + "admin.dashboard.retention.cohort": "Liitumiskuu", "admin.dashboard.retention.cohort_size": "Uued kasutajad", "admin.impact_report.instance_accounts": "Kontode profiilid, mille see kustutaks", "admin.impact_report.instance_followers": "Jälgijad, kelle meie kasutajad kaotaks", @@ -84,11 +84,11 @@ "alert.rate_limited.message": "Palun proovi uuesti pärast {retry_time, time, medium}.", "alert.rate_limited.title": "Kiiruspiirang", "alert.unexpected.message": "Tekkis ootamatu viga.", - "alert.unexpected.title": "Oih!", - "alt_text_badge.title": "Alternatiivtekst", + "alert.unexpected.title": "Vaat kus lops!", + "alt_text_badge.title": "Selgitustekst", "announcement.announcement": "Teadaanne", "attachments_list.unprocessed": "(töötlemata)", - "audio.hide": "Peida audio", + "audio.hide": "Peida heliriba", "block_modal.remote_users_caveat": "Serverile {domain} edastatakse palve otsust järgida. Ometi pole see tagatud, kuna mõned serverid võivad blokeeringuid käsitleda omal moel. Avalikud postitused võivad tuvastamata kasutajatele endiselt näha olla.", "block_modal.show_less": "Kuva vähem", "block_modal.show_more": "Kuva rohkem", @@ -114,8 +114,8 @@ "bundle_modal_error.retry": "Proovi uuesti", "closed_registrations.other_server_instructions": "Kuna Mastodon on detsentraliseeritud, võib konto teha teise serverisse ja sellegipoolest siinse kontoga suhelda.", "closed_registrations_modal.description": "Praegu ei ole võimalik teha {domain} peale kontot, aga pea meeles, et sul ei pea olema just {domain} konto, et Mastodoni kasutada.", - "closed_registrations_modal.find_another_server": "Leia teine server", - "closed_registrations_modal.preamble": "Mastodon on detsentraliseeritud, mis tähendab, et konto võib luua ükskõik kuhu, kuid ikkagi saab jälgida ja suhelda igaühega sellel serveril. Võib isegi oma serveri püsti panna!", + "closed_registrations_modal.find_another_server": "Leia mõni muu server", + "closed_registrations_modal.preamble": "Mastodon on hajutatud võrk, mis tähendab, et konto võid luua ükskõik kuhu, kuid ikkagi saad jälgida ja suhelda igaühega selles serveris. Võid isegi oma serveri püsti panna!", "closed_registrations_modal.title": "Mastodoni registreerumine", "column.about": "Teave", "column.blocks": "Blokeeritud kasutajad", @@ -123,15 +123,15 @@ "column.community": "Kohalik ajajoon", "column.direct": "Privaatsed mainimised", "column.directory": "Sirvi profiile", - "column.domain_blocks": "Peidetud domeenid", + "column.domain_blocks": "Blokeeritud domeenid", "column.favourites": "Lemmikud", "column.firehose": "Postitused reaalajas", "column.follow_requests": "Jälgimistaotlused", "column.home": "Kodu", "column.lists": "Loetelud", - "column.mutes": "Vaigistatud kasutajad", + "column.mutes": "Summutatud kasutajad", "column.notifications": "Teated", - "column.pins": "Kinnitatud postitused", + "column.pins": "Esiletõstetud postitused", "column.public": "Föderatiivne ajajoon", "column_back_button.label": "Tagasi", "column_header.hide_settings": "Peida sätted", @@ -140,7 +140,7 @@ "column_header.pin": "Kinnita", "column_header.show_settings": "Näita sätteid", "column_header.unpin": "Eemalda kinnitus", - "column_subheading.settings": "Sätted", + "column_subheading.settings": "Seadistused", "community.column_settings.local_only": "Ainult kohalik", "community.column_settings.media_only": "Ainult meedia", "community.column_settings.remote_only": "Ainult kaug", @@ -151,7 +151,7 @@ "compose.saved.body": "Postitus salvestatud.", "compose_form.direct_message_warning_learn_more": "Vaata lisa", "compose_form.encryption_warning": "Postitused Mastodonis ei ole otsast-otsani krüpteeritud. Ära jaga mingeid delikaatseid andmeid Mastodoni kaudu.", - "compose_form.hashtag_warning": "See postitus ei ilmu ühegi märksõna all, kuna pole avalik. Vaid avalikud postitused on märksõnade kaudu leitavad.", + "compose_form.hashtag_warning": "See postitus ei ilmu ühegi teemaviite all, kuna pole avalik. Vaid avalikud postitused on teemaviidete kaudu leitavad.", "compose_form.lock_disclaimer": "Su konto ei ole {locked}. Igaüks saab sind jälgida, et näha su ainult-jälgijatele postitusi.", "compose_form.lock_disclaimer.lock": "lukus", "compose_form.placeholder": "Millest mõtled?", @@ -163,7 +163,7 @@ "compose_form.poll.switch_to_single": "Muuda küsitlust ainult ühe valiku lubamiseks", "compose_form.poll.type": "Stiil", "compose_form.publish": "Postita", - "compose_form.publish_form": "Postita", + "compose_form.publish_form": "Uus postitus", "compose_form.reply": "Vasta", "compose_form.save_changes": "Uuenda", "compose_form.spoiler.marked": "Tekst on hoiatuse taha peidetud", @@ -181,11 +181,11 @@ "confirmations.discard_edit_media.message": "Sul on salvestamata muudatusi meediakirjelduses või eelvaates, kas hülgad need?", "confirmations.edit.confirm": "Muuda", "confirmations.edit.message": "Muutes praegu kirjutatakse hetkel loodav sõnum üle. Kas oled kindel, et soovid jätkata?", - "confirmations.edit.title": "Kirjutada postitus üle?", + "confirmations.edit.title": "Kas kirjutame postituse üle?", "confirmations.logout.confirm": "Välju", "confirmations.logout.message": "Kas oled kindel, et soovid välja logida?", "confirmations.logout.title": "Logida välja?", - "confirmations.mute.confirm": "Vaigista", + "confirmations.mute.confirm": "Summuta", "confirmations.redraft.confirm": "Kustuta & taasalusta", "confirmations.redraft.message": "Kindel, et soovid postituse kustutada ja võtta uue aluseks? Lemmikuks märkimised ja jagamised lähevad kaotsi ning vastused jäävad ilma algse postituseta.", "confirmations.redraft.title": "Kustudada ja luua postituse mustand?", @@ -215,14 +215,14 @@ "dismissable_banner.dismiss": "Sulge", "dismissable_banner.explore_links": "Need on uudised, millest inimesed siin ja teistes serverites üle detsentraliseeritud võrgu praegu räägivad.", "dismissable_banner.explore_statuses": "Need postitused üle sotsiaalse võrgu koguvad praegu tähelepanu. Uued postitused, millel on rohkem jagamisi ja lemmikuks märkimisi, on kõrgemal kohal.", - "dismissable_banner.explore_tags": "Need sildid siit ja teistes serveritest detsentraliseeritud võrgus koguvad tähelepanu just praegu selles serveris.", + "dismissable_banner.explore_tags": "Need teemaviited siit ja teistest hajutatud võrgu serveritest koguvad tähelepanu just praegu selles serveris.", "dismissable_banner.public_timeline": "Need on kõige uuemad avalikud postitused inimestelt sotsiaalvõrgustikus, mida {domain} inimesed jälgivad.", "domain_block_modal.block": "Blokeeri server", "domain_block_modal.block_account_instead": "Selle asemel blokeeri @{name}", "domain_block_modal.they_can_interact_with_old_posts": "Inimesed sellest serverist saavad suhestuda sinu vanade postitustega.", "domain_block_modal.they_cant_follow": "Sellest serverist ei saa keegi sind jälgida.", "domain_block_modal.they_wont_know": "Nad ei tea, et nad on blokeeritud.", - "domain_block_modal.title": "Blokeerida domeen?", + "domain_block_modal.title": "Kas blokeerid domeeni?", "domain_block_modal.you_will_lose_num_followers": "Sult kaob {followersCount, plural, one {{followersCountDisplay} jälgija} other {{followersCountDisplay} jälgijat}} ja {followingCount, plural, one {{followingCountDisplay} inimene} other {{followingCountDisplay} inimest}}, keda sa ise jälgid.", "domain_block_modal.you_will_lose_relationships": "Sa kaotad kõik oma jälgijad ja inimesed, kes sind jälgivad sellest serverist.", "domain_block_modal.you_wont_see_posts": "Sa ei näe selle serveri kasutajate postitusi ega teavitusi.", @@ -248,7 +248,7 @@ "emoji_button.food": "Toit & jook", "emoji_button.label": "Lisa emoji", "emoji_button.nature": "Loodus", - "emoji_button.not_found": "Ei ole emojosi!! (╯°□°)╯︵ ┻━┻", + "emoji_button.not_found": "Ei ole sobivaid emoji'sid! (╯°□°)╯︵ ┻━┻", "emoji_button.objects": "Objektid", "emoji_button.people": "Inimesed", "emoji_button.recent": "Tihti kasutatud", @@ -269,12 +269,12 @@ "empty_column.favourited_statuses": "Pole veel lemmikpostitusi. Kui märgid mõne, näed neid siin.", "empty_column.favourites": "Keegi pole veel seda postitust lemmikuks märkinud. Kui keegi seda teeb, siis on ta nähtav siin.", "empty_column.follow_requests": "Pole hetkel ühtegi jälgimistaotlust. Kui saad mõne, näed neid siin.", - "empty_column.followed_tags": "Sa ei jälgi veel ühtegi märksõna. Kui jälgid, ilmuvad need siia.", - "empty_column.hashtag": "Selle sildi all ei ole ühtegi postitust.", + "empty_column.followed_tags": "Sa ei jälgi veel ühtegi teemaviidet. Kui jälgid, ilmuvad need siia.", + "empty_column.hashtag": "Selle teemaviite all ei ole ühtegi postitust.", "empty_column.home": "Su koduajajoon on tühi. Jälgi rohkemaid inimesi, et seda täita {suggestions}", "empty_column.list": "Siin loetelus pole veel midagi. Kui loetelu liikmed teevad uusi postitusi, näed neid siin.", "empty_column.lists": "Pole veel ühtegi loetelu. Kui lood mõne, näed neid siin.", - "empty_column.mutes": "Sa pole veel ühtegi kasutajat vaigistanud.", + "empty_column.mutes": "Sa pole veel ühtegi kasutajat summutanud.", "empty_column.notification_requests": "Kõik tühi! Siin pole mitte midagi. Kui saad uusi teavitusi, ilmuvad need siin vastavalt sinu seadistustele.", "empty_column.notifications": "Ei ole veel teateid. Kui keegi suhtleb sinuga, näed seda siin.", "empty_column.public": "Siin pole midagi! Kirjuta midagi avalikku või jälgi ise kasutajaid täitmaks seda ruumi", @@ -289,7 +289,7 @@ "explore.title": "Avasta", "explore.trending_links": "Uudised", "explore.trending_statuses": "Postitused", - "explore.trending_tags": "Sildid", + "explore.trending_tags": "Teemaviited", "filter_modal.added.context_mismatch_explanation": "See filtrikategooria ei rakendu kontekstis, kuidas postituseni jõudsid. Kui tahad postitust ka selles kontekstis filtreerida, pead muutma filtrit.", "filter_modal.added.context_mismatch_title": "Konteksti mittesobivus!", "filter_modal.added.expired_explanation": "Selle filtri kategooria on aegunud. pead muutma aegumiskuupäeva, kui tahad, et filter kehtiks.", @@ -330,7 +330,7 @@ "follow_suggestions.similar_to_recently_followed_longer": "Sarnane profiilile, mida hiljuti jälgima hakkasid", "follow_suggestions.view_all": "Vaata kõiki", "follow_suggestions.who_to_follow": "Keda jälgida", - "followed_tags": "Jälgitavad märksõnad", + "followed_tags": "Jälgitavad teemaviited", "footer.about": "Teave", "footer.directory": "Profiilikataloog", "footer.get_app": "Laadi rakendus", @@ -342,14 +342,14 @@ "generic.saved": "Salvestatud", "getting_started.heading": "Alustamine", "hashtag.column_header.tag_mode.all": "ja {additional}", - "hashtag.column_header.tag_mode.any": "või {additional}", - "hashtag.column_header.tag_mode.none": "ilma {additional}", + "hashtag.column_header.tag_mode.any": "või teemaviide {additional}", + "hashtag.column_header.tag_mode.none": "ilma teemaviiteta {additional}", "hashtag.column_settings.select.no_options_message": "Soovitusi ei leitud", "hashtag.column_settings.select.placeholder": "Sisesta sildid…", "hashtag.column_settings.tag_mode.all": "Kõik need", "hashtag.column_settings.tag_mode.any": "Mõni neist", "hashtag.column_settings.tag_mode.none": "Mitte ükski neist", - "hashtag.column_settings.tag_toggle": "Kaasa lisamärked selle tulba jaoks", + "hashtag.column_settings.tag_toggle": "Kaasa lisasildid selle veeru jaoks", "hashtag.counter_by_accounts": "{count, plural, one {{counter} osalejaga} other {{counter} osalejaga}}", "hashtag.counter_by_uses": "{count, plural, one {{counter} postitusega} other {{counter} postitusega}}", "hashtag.counter_by_uses_today": "{count, plural, one {{counter} postitust} other {{counter} postitust}} täna", @@ -363,7 +363,7 @@ "hints.profiles.see_more_follows": "Vaata rohkem jälgitavaid kohas {domain}", "hints.profiles.see_more_posts": "Vaata rohkem postitusi kohas {domain}", "hints.threads.replies_may_be_missing": "Vastuseid teistest serveritest võib olla puudu.", - "hints.threads.see_more": "Vaata rohkem vastuseid kohas {domain}", + "hints.threads.see_more": "Vaata rohkem vastuseid saidist {domain}", "home.column_settings.show_reblogs": "Näita jagamisi", "home.column_settings.show_replies": "Näita vastuseid", "home.hide_announcements": "Peida teadaanded", @@ -394,7 +394,7 @@ "interaction_modal.sign_in": "Sa pole sellesse serverisse sisse logitud. Kus sinu konto asub?", "interaction_modal.sign_in_hint": "Vihje: See on veebileht, millel sa registreerusid. Kui see ei meenu, otsi sisendkaustast tervitus-e-kirja. Võid sisestada ka oma täispika kasutajanime! (Näit. @Mastodon@mastodon.social)", "interaction_modal.title.favourite": "Lisa konto {name} postitus lemmikuks", - "interaction_modal.title.follow": "Jälgi kontot {name}", + "interaction_modal.title.follow": "Jälgi kasutajat {name}", "interaction_modal.title.reblog": "Jaga {name} postitust", "interaction_modal.title.reply": "Vasta kasutaja {name} postitusele", "intervals.full.days": "{number, plural, one {# päev} other {# päeva}}", @@ -418,11 +418,11 @@ "keyboard_shortcuts.legend": "Kuva see legend", "keyboard_shortcuts.local": "Ava kohalik ajajoon", "keyboard_shortcuts.mention": "Maini autorit", - "keyboard_shortcuts.muted": "Ava vaigistatud kasutajate loetelu", + "keyboard_shortcuts.muted": "Ava summutatud kasutajate loetelu", "keyboard_shortcuts.my_profile": "Ava oma profiil", "keyboard_shortcuts.notifications": "Ava teadete veerg", "keyboard_shortcuts.open_media": "Ava meedia", - "keyboard_shortcuts.pinned": "Ava kinnitatud postituste loetelu", + "keyboard_shortcuts.pinned": "Ava esiletõstetud postituste loend", "keyboard_shortcuts.profile": "Ava autori profiil", "keyboard_shortcuts.reply": "Vasta postitusele", "keyboard_shortcuts.requests": "Ava jälgimistaotluste loetelu", @@ -464,11 +464,11 @@ "moved_to_account_banner.text": "Kontot {disabledAccount} ei ole praegu võimalik kasutada, sest kolisid kontole {movedToAccount}.", "mute_modal.hide_from_notifications": "Peida teavituste hulgast", "mute_modal.hide_options": "Peida valikud", - "mute_modal.indefinite": "Kuni eemaldan neilt vaigistuse", + "mute_modal.indefinite": "Kuni eemaldan neilt summutamise", "mute_modal.show_options": "Kuva valikud", "mute_modal.they_can_mention_and_follow": "Ta saab sind mainida ja sind jälgida, kuid sa ei näe teda.", - "mute_modal.they_wont_know": "Ta ei tea, et ta on vaigistatud.", - "mute_modal.title": "Vaigistada kasutaja?", + "mute_modal.they_wont_know": "Ta ei tea, et ta on summutatud.", + "mute_modal.title": "Kas summutad kasutaja?", "mute_modal.you_wont_see_mentions": "Sa ei näe postitusi, mis teda mainivad.", "mute_modal.you_wont_see_posts": "Ta näeb jätkuvalt sinu postitusi, kuid sa ei näe tema omi.", "navigation_bar.about": "Teave", @@ -483,14 +483,14 @@ "navigation_bar.domain_blocks": "Peidetud domeenid", "navigation_bar.explore": "Avasta", "navigation_bar.favourites": "Lemmikud", - "navigation_bar.filters": "Vaigistatud sõnad", + "navigation_bar.filters": "Summutatud sõnad", "navigation_bar.follow_requests": "Jälgimistaotlused", - "navigation_bar.followed_tags": "Jälgitavad märksõnad", + "navigation_bar.followed_tags": "Jälgitavad teemaviited", "navigation_bar.follows_and_followers": "Jälgitavad ja jälgijad", "navigation_bar.lists": "Loetelud", "navigation_bar.logout": "Logi välja", "navigation_bar.moderation": "Modereerimine", - "navigation_bar.mutes": "Vaigistatud kasutajad", + "navigation_bar.mutes": "Summutatud kasutajad", "navigation_bar.opened_in_classic_interface": "Postitused, kontod ja teised spetsiaalsed lehed avatakse vaikimisi klassikalises veebiliideses.", "navigation_bar.personal": "Isiklik", "navigation_bar.pins": "Kinnitatud postitused", @@ -626,7 +626,7 @@ "onboarding.profile.display_name_hint": "Su täisnimi või naljanimi…", "onboarding.profile.lead": "Saad selle alati hiljem seadetes lõpuni viia, kus on saadaval veel rohkem kohandamisvalikuid.", "onboarding.profile.note": "Elulugu", - "onboarding.profile.note_hint": "Saad @mainida teisi kasutajaid või #sildistada…", + "onboarding.profile.note_hint": "Saad @mainida teisi kasutajaid või lisada #teemaviidet…", "onboarding.profile.save_and_continue": "Salvesta ja jätka", "onboarding.profile.title": "Profiili seadistamine", "onboarding.profile.upload_avatar": "Laadi üles profiilipilt", @@ -651,7 +651,7 @@ "onboarding.tips.migration": "Kas sa teadsid? Kui tunned, et {domain} ei ole tuleviku jaoks hea serveri valik, saad kolida teise Mastodoni serverisse, ilma oma jälgijaid kaotamata. Saad isegi käivitada oma serveri!", "onboarding.tips.verification": "Kas sa teadsid? Saad verifitseerida oma Mastodoni konto pannes oma veebilehele tagasilingi Mastodoni profiilile ja lisades profiilile lingi oma veebilehele. Dokumente ega raha pole vaja!", "password_confirmation.exceeds_maxlength": "Salasõnakinnitus on pikem kui salasõna maksimumpikkus", - "password_confirmation.mismatching": "Salasõnakinnitus ei sobi kokku", + "password_confirmation.mismatching": "Salasõnad ei klapi", "picture_in_picture.restore": "Pane tagasi", "poll.closed": "Suletud", "poll.refresh": "Värskenda", @@ -670,7 +670,7 @@ "privacy.private.short": "Jälgijad", "privacy.public.long": "Nii kasutajad kui mittekasutajad", "privacy.public.short": "Avalik", - "privacy.unlisted.additional": "See on olemuselt küll avalik, aga postitus ei ilmu voogudes ega märksõnades, lehitsedes ega Mastodoni otsingus, isegi kui konto on seadistustes avalik.", + "privacy.unlisted.additional": "See on olemuselt küll avalik, aga postitus ei ilmu voogudes ega teemaviidetes, lehitsedes ega Mastodoni otsingus, isegi kui konto on seadistustes avalik.", "privacy.unlisted.long": "Vähem algoritmilisi teavitusi", "privacy.unlisted.short": "Vaikselt avalik", "privacy_policy.last_updated": "Viimati uuendatud {date}", @@ -707,8 +707,8 @@ "report.comment.title": "Kas arvad, et on veel midagi, mida me peaks teadma?", "report.forward": "Edasta ka {target} domeeni", "report.forward_hint": "See kasutaja on teisest serverist. Kas saadan anonümiseeritud koopia sellest teatest sinna ka?", - "report.mute": "Vaigista", - "report.mute_explanation": "Sa ei näe tema postitusi. Ta võib ikka sind jälgida ja su postitusi näha. Ta ei saa teada, et ta on vaigistatud.", + "report.mute": "Summuta", + "report.mute_explanation": "Sa ei näe tema postitusi. Ta võib ikka sind jälgida ja su postitusi näha. Ta ei saa teada, et ta on summutatud.", "report.next": "Järgmine", "report.placeholder": "Lisaks kommentaarid", "report.reasons.dislike": "Mulle ei meeldi see", @@ -747,7 +747,7 @@ "search.placeholder": "Otsi", "search.quick_action.account_search": "Sobivaid profiile {x}", "search.quick_action.go_to_account": "Mine profiili {x}", - "search.quick_action.go_to_hashtag": "Ava silt {x}", + "search.quick_action.go_to_hashtag": "Ava teemaviide {x}", "search.quick_action.open_url": "Ava URL Mastodonis", "search.quick_action.status_search": "Sobivad postitused {x}", "search.search_or_paste": "Otsi või kleebi URL", @@ -804,8 +804,8 @@ "status.media_hidden": "Meedia peidetud", "status.mention": "Maini @{name}'i", "status.more": "Veel", - "status.mute": "Vaigista @{name}", - "status.mute_conversation": "Vaigista vestlus", + "status.mute": "Summuta @{name}", + "status.mute_conversation": "Summuta vestlus", "status.open": "Laienda postitus", "status.pin": "Kinnita profiilile", "status.pinned": "Kinnitatud postitus", @@ -831,7 +831,7 @@ "status.translate": "Tõlgi", "status.translated_from_with": "Tõlgitud {lang} keelest kasutades teenust {provider}", "status.uncached_media_warning": "Eelvaade pole saadaval", - "status.unmute_conversation": "Ära vaigista vestlust", + "status.unmute_conversation": "Lõpeta vestluse summutamine", "status.unpin": "Eemalda profiilile kinnitus", "subscribed_languages.lead": "Pärast muudatust näed koduvaates ja loetelude ajajoontel postitusi valitud keeltes. Ära vali midagi, kui tahad näha postitusi kõikides keeltes.", "subscribed_languages.save": "Salvesta muudatused", @@ -873,7 +873,7 @@ "upload_modal.hint": "Vajuta või tõmba ringi eelvaatel, et valida fookuspunkti, mis on alati nähtaval kõikidel eelvaadetel.", "upload_modal.preparing_ocr": "Valmistan masinlugemist…", "upload_modal.preview_label": "Eelvaade ({ratio})", - "upload_progress.label": "Laeb üles....", + "upload_progress.label": "Üleslaadimisel...", "upload_progress.processing": "Töötlen…", "username.taken": "See kasutajanimi on juba kasutusel. Proovi teist", "video.close": "Sulge video", @@ -882,7 +882,7 @@ "video.expand": "Suurenda video", "video.fullscreen": "Täisekraan", "video.hide": "Peida video", - "video.mute": "Vaigista heli", + "video.mute": "Summuta heli", "video.pause": "Paus", "video.play": "Mängi", "video.unmute": "Taasta heli" diff --git a/app/javascript/mastodon/locales/eu.json b/app/javascript/mastodon/locales/eu.json index 27173cdff2..bada9f8af1 100644 --- a/app/javascript/mastodon/locales/eu.json +++ b/app/javascript/mastodon/locales/eu.json @@ -223,6 +223,7 @@ "domain_block_modal.they_cant_follow": "Zerbitzari honetako inork ezin zaitu jarraitu.", "domain_block_modal.they_wont_know": "Ez dute jakingo blokeatuak izan direnik.", "domain_block_modal.title": "Domeinua blokeatu nahi duzu?", + "domain_block_modal.you_will_lose_num_followers": "{followersCount, plural, one {Jarraitzaile {followersCountDisplay}} other {{followersCountDisplay} jarraitzaile}} eta {followingCount, plural, one {jarraitzen duzun pertsona {followingCountDisplay}} other {jarraitzen dituzun beste {followingCountDisplay} pertsona}} galduko dituzu.", "domain_block_modal.you_will_lose_relationships": "Instantzia honetatik jarraitzen dituzun jarraitzaile eta pertsona guztiak galduko dituzu.", "domain_block_modal.you_wont_see_posts": "Ez dituzu zerbitzari honetako erabiltzaileen argitalpenik edota jakinarazpenik ikusiko.", "domain_pill.activitypub_lets_connect": "Mastodon-en ez ezik, beste sare sozialen aplikazioetako jendearekin konektatzea eta harremanetan jartzea uzten dizu.", @@ -508,6 +509,7 @@ "notification.favourite": "{name}(e)k zure bidalketa gogoko du", "notification.favourite.name_and_others_with_link": "{name} eta {count, plural, one {erabiltzaile # gehiagok} other {# erabiltzaile gehiagok}} zure bidalketa gogoko dute", "notification.follow": "{name}(e)k jarraitzen dizu", + "notification.follow.name_and_others": "{name} erabiltzaileak eta {count, plural, one {# gehiagok} other {# gehiagok}} jarraitu dizute", "notification.follow_request": "{name}(e)k zu jarraitzeko eskaera egin du", "notification.follow_request.name_and_others": "{name} eta {count, plural, one {erabiltzaile # gehiagok} other {# erabiltzaile gehiagok}} zu jarraitzeko eskaera egin dute", "notification.label.mention": "Aipamena", @@ -531,14 +533,18 @@ "notification.reblog.name_and_others_with_link": "{name} eta {count, plural, one {erabiltzaile # gehiagok} other {# erabiltzaile gehiagok}} bultzada eman diote zure bidalketari", "notification.relationships_severance_event": "{name} erabiltzailearekin galdutako konexioak", "notification.relationships_severance_event.account_suspension": "{from} zerbitzariko administratzaile batek {target} bertan behera utzi du, hau da, ezin izango dituzu jaso hango eguneratzerik edo hangoekin elkarreragin.", + "notification.relationships_severance_event.domain_block": "{from} zerbitzariko administratzaile batek {target} blokeatu du, tartean zure {followersCount} jarraitzaile eta jarraitzen duzun {followingCount, plural, one {kontu #} other {# kontu}}.", "notification.relationships_severance_event.learn_more": "Informazio gehiago", + "notification.relationships_severance_event.user_domain_block": "{target} blokeatu duzu, tartean zure {followersCount} jarraitzaile eta jarraitzen duzun {followingCount, plural, one {kontu #} other {# kontu}}.", "notification.status": "{name} erabiltzaileak bidalketa egin berri du", "notification.update": "{name} erabiltzaileak bidalketa bat editatu du", "notification_requests.accept": "Onartu", "notification_requests.accept_multiple": "{count, plural, one {Onartu eskaera…} other {Onartu # eskaerak…}}", "notification_requests.confirm_accept_multiple.button": "{count, plural, one {Onartu eskaera} other {Onartu eskaerak}}", + "notification_requests.confirm_accept_multiple.message": "{count, plural, one {Jakinarazpen eskaera bat} other {# jakinarazpen eskaera}} onartzekotan zaude. Jarraitu nahi duzu?", "notification_requests.confirm_accept_multiple.title": "Onartu jakinarazpen-eskaerak?", "notification_requests.confirm_dismiss_multiple.button": "{count, plural, one {Baztertu eskaera} other {Baztertu eskaerak}}", + "notification_requests.confirm_dismiss_multiple.message": "{count, plural, one {Jakinarazpen eskaera bat} other {# jakinarazpen eskaera}} baztertzekotan zaude. Gerora ezingo {count, plural, one {duzu} other {dituzu}} berriz erraz atzitu. Jarraitu nahi duzu?", "notification_requests.confirm_dismiss_multiple.title": "Baztertu jakinarazpen-eskaerak?", "notification_requests.dismiss": "Baztertu", "notification_requests.dismiss_multiple": "{count, plural, one {Baztertu eskaera…} other {Baztertu # eskaerak…}}", @@ -666,7 +672,7 @@ "privacy.public.short": "Publikoa", "privacy.unlisted.additional": "Aukera honek publiko modua bezala funtzionatzen du, baina argitalpena ez da agertuko zuzeneko jarioetan edo traoletan, \"Arakatu\" atalean edo Mastodonen bilaketan, nahiz eta kontua zabaltzeko onartu duzun.", "privacy.unlisted.long": "Tontakeria algoritmiko gutxiago", - "privacy.unlisted.short": "Deiadar urrikoa", + "privacy.unlisted.short": "Ikusgarritasun mugatua", "privacy_policy.last_updated": "Azkenengo eguneraketa {date}", "privacy_policy.title": "Pribatutasun politika", "recommended": "Gomendatua", @@ -849,6 +855,11 @@ "upload_error.poll": "Ez da inkestetan fitxategiak igotzea onartzen.", "upload_form.audio_description": "Deskribatu entzumen galera duten pertsonentzat", "upload_form.description": "Deskribatu ikusmen arazoak dituztenentzat", + "upload_form.drag_and_drop.instructions": "Multimedia eranskin bat aukeratzeko, sakatu espazioa edo enter. Arrastatu bitartean, erabili gezi-teklak multimedia eranskina edozein norabidetan mugitzeko. Sakatu berriz espazioa edon enter multimedia eranskina bere kokapen berrian jartzeko, edo sakatu ESC uzteko.", + "upload_form.drag_and_drop.on_drag_cancel": "Arrastatzea bertan behera utzi da. {item} multimedia eranskina ez da mugitu.", + "upload_form.drag_and_drop.on_drag_end": "{item} multimedia eranskina ez da mugitu.", + "upload_form.drag_and_drop.on_drag_over": "{item} multimedia eranskina mugitu da.", + "upload_form.drag_and_drop.on_drag_start": "{item} multimedia eranskina hautatu da.", "upload_form.edit": "Editatu", "upload_form.thumbnail": "Aldatu koadro txikia", "upload_form.video_description": "Deskribatu entzumen galera edo ikusmen urritasuna duten pertsonentzat", diff --git a/app/javascript/mastodon/locales/fa.json b/app/javascript/mastodon/locales/fa.json index 7b83f86c0d..1dd5a1816c 100644 --- a/app/javascript/mastodon/locales/fa.json +++ b/app/javascript/mastodon/locales/fa.json @@ -1,9 +1,9 @@ { - "about.blocks": "کارسازهای نظارت شده", + "about.blocks": "کارسازهای نظارت شده", "about.contact": "تماس:", "about.disclaimer": "ماستودون نرم‌افزار آزاد و نشان تجاری یک شرکت غیر انتفاعی با مسئولیت محدود آلمانی است.", "about.domain_blocks.no_reason_available": "دلیلی موجود نیست", - "about.domain_blocks.preamble": "ماستودون عموماً می‌گذارد محتوا را از از هر کارساز دیگری در دنیای شبکه‌های اجتماعی غیرمتمرکز دیده و با آنان برهم‌کنش داشته باشید. این‌ها استثناهایی هستند که روی این کارساز خاص وضع شده‌اند.", + "about.domain_blocks.preamble": "ماستودون عموماً می‌گذارد محتوا را از هر کارساز دیگری در دنیای شبکه‌های اجتماعی غیرمتمرکز دیده و با آنان برهم‌کنش داشته باشید. این‌ها استثناهایی هستند که روی این کارساز خاص وضع شده‌اند.", "about.domain_blocks.silenced.explanation": "عموماً نمایه‌ها و محتوا از این کارساز را نمی‌بینید، مگر این که به طور خاص دنبالشان گشته یا با پی گیری، داوطلب دیدنشان شوید.", "about.domain_blocks.silenced.title": "محدود", "about.domain_blocks.suspended.explanation": "هیچ داده‌ای از این کارساز پردازش، ذخیره یا مبادله نخواهد شد، که هرگونه برهم‌کنش یا ارتباط با کاربران این کارساز را غیرممکن خواهد کرد.", @@ -459,7 +459,7 @@ "lists.search": "جست‌وجو بین کسانی که پی‌گرفته‌اید", "lists.subheading": "سیاهه‌هایتان", "load_pending": "{count, plural, one {# مورد جدید} other {# مورد جدید}}", - "loading_indicator.label": "در حال بارگذاری…", + "loading_indicator.label": "بار کردن…", "media_gallery.hide": "نهفتن", "moved_to_account_banner.text": "حسابتان {disabledAccount} اکنون از کار افتاده؛ چرا که به {movedToAccount} منتقل شدید.", "mute_modal.hide_from_notifications": "نهفتن از آگاهی‌ها", @@ -541,10 +541,10 @@ "notification_requests.accept": "پذیرش", "notification_requests.accept_multiple": "{count, plural, one {پذیرش درخواست…} other {پذیرش درخواست‌ها…}}", "notification_requests.confirm_accept_multiple.button": "پذیرش {count, plural,one {درخواست} other {درخواست‌ها}}", - "notification_requests.confirm_accept_multiple.message": "در حال پذیرش {count, plural,one {یک}other {#}} درخواست آگاهی هستید. مطمئنید که می‌خواهید ادامه دهید؟", + "notification_requests.confirm_accept_multiple.message": "دارید {count, plural,one {یک}other {#}} درخواست آگاهی را می‌پذیرید. مطمئنید که می‌خواهید ادامه دهید؟", "notification_requests.confirm_accept_multiple.title": "پذیرش درخواست‌های آگاهی؟", "notification_requests.confirm_dismiss_multiple.button": "رد {count, plural,one {درخواست} other {درخواست‌ها}}", - "notification_requests.confirm_dismiss_multiple.message": "شما در شرف رد کردن {count, plural, one {یک درخواست آگاهی} other {درخواست آگاهی}} هستید. دیگر نمی توانید به راحتی به {count, plural, one {آن} other {آن‌ها}} دسترسی پیدا کنید. آیا مطمئن هستید که می خواهید ادامه دهید؟", + "notification_requests.confirm_dismiss_multiple.message": "دارید {count, plural, one {یک درخواست آگاهی} other {# درخواست آگاهی}} را رد می‌کنید که دیگر نمی توانید به راحتی به {count, plural, one {آن} other {آن‌ها}} دسترسی پیدا کنید. مطمئنید که می‌خواهید ادامه دهید؟", "notification_requests.confirm_dismiss_multiple.title": "رد کردن درخواست‌های آگاهی؟", "notification_requests.dismiss": "دورانداختن", "notification_requests.dismiss_multiple": "{count, plural, one {دورانداختن درخواست…} other {دورانداختن درخواست‌ها…}}", @@ -726,9 +726,9 @@ "report.statuses.subtitle": "همهٔ موارد انجام شده را برگزینید", "report.statuses.title": "آیا فرسته‌ای وجود دارد که از این گزارش پشتیبانی کند؟", "report.submit": "فرستادن", - "report.target": "در حال گزارش {target}", + "report.target": "گزارش کردن {target}", "report.thanks.take_action": "در اینجا گزینه‌هایی برای کنترل آنچه در ماستودون میبینید، وجود دارد:", - "report.thanks.take_action_actionable": "در حالی که ما این مورد را بررسی می‌کنیم، می‌توانید علیه ‎@{name} اقدام کنید:", + "report.thanks.take_action_actionable": "تا بررسیش می‌کنیم می‌توانید علیه ‎@{name} اقدام کنید:", "report.thanks.title": "نمی‌خواهید این را ببینید؟", "report.thanks.title_actionable": "ممنون بابت گزارش، ما آن را بررسی خواهیم کرد.", "report.unfollow": "پی‌نگرفتن ‎@{name}", @@ -843,7 +843,7 @@ "time_remaining.minutes": "{number, plural, one {# دقیقه} other {# دقیقه}} باقی مانده", "time_remaining.moments": "زمان باقی‌مانده", "time_remaining.seconds": "{number, plural, one {# ثانیه} other {# ثانیه}} باقی مانده", - "trends.counter_by_accounts": "{count, plural, one {{counter} نفر} other {{counter} نفر}} در {days, plural, one {روز} other {{days} روز}} گذشته", + "trends.counter_by_accounts": "‏{count, plural, one {{counter} نفر} other {{counter} نفر}} در {days, plural, one {روز} other {{days} روز}} گذشته", "trends.trending_now": "پرطرفدار", "ui.beforeunload": "اگر از ماستودون خارج شوید پیش‌نویس شما از دست خواهد رفت.", "units.short.billion": "{count}میلیارد", @@ -873,8 +873,8 @@ "upload_modal.hint": "حتی اگر تصویر بریده یا کوچک شود، نقطهٔ کانونی آن همیشه دیده خواهد شد. نقطهٔ کانونی را با کلیک یا جابه‌جا کردن آن تنظیم کنید.", "upload_modal.preparing_ocr": "در حال آماده سازی OCR…", "upload_modal.preview_label": "پیش‌نمایش ({ratio})", - "upload_progress.label": "در حال بارگذاری...", - "upload_progress.processing": "در حال پردازش…", + "upload_progress.label": "بار گذاشتن...", + "upload_progress.processing": "پردازش کردن…", "username.taken": "این نام کاربری گرفته شده. نام دیگری امتحان کنید", "video.close": "بستن ویدیو", "video.download": "بارگیری پرونده", diff --git a/app/javascript/mastodon/locales/fi.json b/app/javascript/mastodon/locales/fi.json index df5e52250f..cae0a60db1 100644 --- a/app/javascript/mastodon/locales/fi.json +++ b/app/javascript/mastodon/locales/fi.json @@ -12,7 +12,7 @@ "about.powered_by": "Hajautetun sosiaalisen median tarjoaa {mastodon}", "about.rules": "Palvelimen säännöt", "account.account_note_header": "Henkilökohtainen muistiinpano", - "account.add_or_remove_from_list": "Lisää tai poista listoista", + "account.add_or_remove_from_list": "Lisää tai poista listoilta", "account.badges.bot": "Botti", "account.badges.group": "Ryhmä", "account.block": "Estä @{name}", @@ -26,10 +26,10 @@ "account.domain_blocked": "Verkkotunnus estetty", "account.edit_profile": "Muokkaa profiilia", "account.enable_notifications": "Ilmoita minulle, kun @{name} julkaisee", - "account.endorse": "Suosittele profiilissa", + "account.endorse": "Esittele profiilissa", "account.featured_tags.last_status_at": "Viimeisin julkaisu {date}", "account.featured_tags.last_status_never": "Ei julkaisuja", - "account.featured_tags.title": "Käyttäjän {name} suosittelemat aihetunnisteet", + "account.featured_tags.title": "Käyttäjän {name} esittelemät aihetunnisteet", "account.follow": "Seuraa", "account.follow_back": "Seuraa takaisin", "account.followers": "Seuraajat", @@ -62,15 +62,15 @@ "account.requested_follow": "{name} on pyytänyt lupaa seurata sinua", "account.share": "Jaa käyttäjän @{name} profiili", "account.show_reblogs": "Näytä käyttäjän @{name} tehostukset", - "account.statuses_counter": "{count, plural, one {{counter} julkaisu} other {{counter} julkaisua}}", + "account.statuses_counter": "{count, plural, one {{counter} julkaisu} other {{counter} julkaisua}}", "account.unblock": "Kumoa käyttäjän @{name} esto", "account.unblock_domain": "Kumoa verkkotunnuksen {domain} esto", "account.unblock_short": "Kumoa esto", - "account.unendorse": "Kumoa suosittelu profiilissa", + "account.unendorse": "Kumoa profiilissa esittely", "account.unfollow": "Älä seuraa", - "account.unmute": "Poista käyttäjän @{name} mykistys", - "account.unmute_notifications_short": "Poista ilmoitusten mykistys", - "account.unmute_short": "Poista mykistys", + "account.unmute": "Kumoa käyttäjän @{name} mykistys", + "account.unmute_notifications_short": "Kumoa ilmoitusten mykistys", + "account.unmute_short": "Kumoa mykistys", "account_note.placeholder": "Lisää muistiinpano napsauttamalla", "admin.dashboard.daily_retention": "Käyttäjien pysyvyys päivittäin rekisteröitymisen jälkeen", "admin.dashboard.monthly_retention": "Käyttäjien pysyvyys kuukausittain rekisteröitymisen jälkeen", @@ -81,11 +81,11 @@ "admin.impact_report.instance_followers": "Seuraajat, jotka käyttäjämme menettäisivät", "admin.impact_report.instance_follows": "Seuraajat, jotka heidän käyttäjänsä menettäisivät", "admin.impact_report.title": "Vaikutusten yhteenveto", - "alert.rate_limited.message": "Yritä uudelleen {retry_time, time, medium} jälkeen.", + "alert.rate_limited.message": "Yritä uudelleen kello {retry_time, time, medium} jälkeen.", "alert.rate_limited.title": "Pyyntömäärää rajoitettu", "alert.unexpected.message": "Tapahtui odottamaton virhe.", "alert.unexpected.title": "Hups!", - "alt_text_badge.title": "Vaihtoehtoinen teksti", + "alt_text_badge.title": "Tekstivastine", "announcement.announcement": "Tiedote", "attachments_list.unprocessed": "(käsittelemätön)", "audio.hide": "Piilota ääni", @@ -149,7 +149,7 @@ "compose.published.body": "Julkaisu lähetetty.", "compose.published.open": "Avaa", "compose.saved.body": "Julkaisu tallennettu.", - "compose_form.direct_message_warning_learn_more": "Lisätietoja", + "compose_form.direct_message_warning_learn_more": "Lue lisää", "compose_form.encryption_warning": "Mastodonin julkaisut eivät ole päästä päähän salattuja. Älä jaa arkaluonteisia tietoja Mastodonissa.", "compose_form.hashtag_warning": "Tätä julkaisua ei voi liittää aihetunnisteisiin, koska se ei ole julkinen. Vain näkyvyydeltään julkisiksi määritettyjä julkaisuja voidaan hakea aihetunnisteiden avulla.", "compose_form.lock_disclaimer": "Tilisi ei ole {locked}. Kuka tahansa voi seurata tiliäsi ja nähdä vain seuraajille rajaamasi julkaisut.", @@ -223,7 +223,7 @@ "domain_block_modal.they_cant_follow": "Kukaan tältä palvelimelta ei voi seurata sinua.", "domain_block_modal.they_wont_know": "Hän ei saa tietää tulleensa estetyksi.", "domain_block_modal.title": "Estetäänkö verkkotunnus?", - "domain_block_modal.you_will_lose_num_followers": "Menetät {followersCount, plural, one {{followersCountDisplay} seuraajasi} other {{followersCountDisplay} seuraajaasi}} ja {followingCount, plural, one {{followingCountDisplay} seurattavasi} other {{followingCountDisplay} seurattavaasi}}.", + "domain_block_modal.you_will_lose_num_followers": "Menetät {followersCount, plural, one {{followersCountDisplay}:n seuraajasi} other {{followersCountDisplay} seuraajaasi}} ja {followingCount, plural, one {{followingCountDisplay}:n seurattavasi} other {{followingCountDisplay} seurattavaasi}}.", "domain_block_modal.you_will_lose_relationships": "Menetät kaikki tämän palvelimen seuraajasi ja seurattavasi.", "domain_block_modal.you_wont_see_posts": "Et enää näe julkaisuja etkä ilmoituksia tämän palvelimen käyttäjiltä.", "domain_pill.activitypub_lets_connect": "Sen avulla voit muodostaa yhteyden ja olla vuorovaikutuksessa ihmisten kanssa, ei vain Mastodonissa vaan myös muissa sosiaalisissa sovelluksissa.", @@ -259,7 +259,7 @@ "empty_column.account_hides_collections": "Käyttäjä on päättänyt pitää nämä tiedot yksityisinä", "empty_column.account_suspended": "Tili jäädytetty", "empty_column.account_timeline": "Ei julkaisuja täällä!", - "empty_column.account_unavailable": "Profiilia ei ole saatavilla", + "empty_column.account_unavailable": "Profiili ei saatavilla", "empty_column.blocks": "Et ole vielä estänyt käyttäjiä.", "empty_column.bookmarked_statuses": "Et ole vielä lisännyt julkaisuja kirjanmerkkeihisi. Kun lisäät yhden, se näkyy tässä.", "empty_column.community": "Paikallinen aikajana on tyhjä. Kirjoita jotain julkista, niin homma lähtee käyntiin!", @@ -280,7 +280,7 @@ "empty_column.public": "Täällä ei ole mitään! Kirjoita jotain julkisesti tai seuraa muiden palvelinten käyttäjiä, niin saat sisältöä", "error.unexpected_crash.explanation": "Sivua ei voida näyttää oikein ohjelmointivirheen tai selaimen yhteensopivuusvajeen vuoksi.", "error.unexpected_crash.explanation_addons": "Sivua ei voitu näyttää oikein. Tämä virhe johtuu todennäköisesti selaimen lisäosasta tai automaattisista käännöstyökaluista.", - "error.unexpected_crash.next_steps": "Kokeile päivittää sivu. Jos se ei auta, voi Mastodonin käyttö ehkä onnistua eri selaimella tai natiivisovelluksella.", + "error.unexpected_crash.next_steps": "Kokeile päivittää sivu. Jos se ei auta, Mastodonin käyttö voi ehkä onnistua eri selaimella tai natiivisovelluksella.", "error.unexpected_crash.next_steps_addons": "Yritä poistaa ne käytöstä, ja virkistä sitten sivunlataus. Mikäli ongelma jatkuu, voit mahdollisesti käyttää Mastodonia eri selaimella tai natiivilla sovelluksella.", "errors.unexpected_crash.copy_stacktrace": "Kopioi pinon jäljitys leikepöydälle", "errors.unexpected_crash.report_issue": "Ilmoita ongelmasta", @@ -329,7 +329,7 @@ "follow_suggestions.popular_suggestion_longer": "Suosittu palvelimella {domain}", "follow_suggestions.similar_to_recently_followed_longer": "Samankaltainen kuin äskettäin seuraamasi profiilit", "follow_suggestions.view_all": "Näytä kaikki", - "follow_suggestions.who_to_follow": "Ehdotuksia seurattavaksi", + "follow_suggestions.who_to_follow": "Seurantaehdotuksia", "followed_tags": "Seurattavat aihetunnisteet", "footer.about": "Tietoja", "footer.directory": "Profiilihakemisto", @@ -350,12 +350,12 @@ "hashtag.column_settings.tag_mode.any": "Mikä tahansa näistä", "hashtag.column_settings.tag_mode.none": "Ei mitään näistä", "hashtag.column_settings.tag_toggle": "Sisällytä lisätunnisteet tähän sarakkeeseen", - "hashtag.counter_by_accounts": "{count, plural, one {{counter} osallistuja} other {{counter} osallistujaa}}", - "hashtag.counter_by_uses": "{count, plural, one{{counter} julkaisu} other {{counter} julkaisua}}", - "hashtag.counter_by_uses_today": "{count, plural, one {{counter} julkaisu} other {{counter} julkaisua}} tänään", + "hashtag.counter_by_accounts": "{count, plural, one {{counter} osallistuja} other {{counter} osallistujaa}}", + "hashtag.counter_by_uses": "{count, plural, one {{counter} julkaisu} other {{counter} julkaisua}}", + "hashtag.counter_by_uses_today": "{count, plural, one {{counter} julkaisu} other {{counter} julkaisua}} tänään", "hashtag.follow": "Seuraa aihetunnistetta", "hashtag.unfollow": "Lopeta aihetunnisteen seuraaminen", - "hashtags.and_other": "…ja {count, plural, other {# lisää}}", + "hashtags.and_other": "…ja {count, plural, other {# lisää}}", "hints.profiles.followers_may_be_missing": "Tämän profiilin seuraajia saattaa puuttua.", "hints.profiles.follows_may_be_missing": "Tämän profiilin seurattavia saattaa puuttua.", "hints.profiles.posts_may_be_missing": "Tämän profiilin julkaisuja saattaa puuttua.", @@ -392,14 +392,14 @@ "interaction_modal.on_another_server": "Toisella palvelimella", "interaction_modal.on_this_server": "Tällä palvelimella", "interaction_modal.sign_in": "Et ole kirjautunut tälle palvelimelle. Millä palvelimella tilisi sijaitsee?", - "interaction_modal.sign_in_hint": "Vihje: Se on sama verkkosivusto, jolle rekisteröidyit. Jos et muista palvelintasi, etsi tervetulosähköposti saapuneista viesteistäsi. Voit syöttää myös koko käyttäjätunnuksesi! (Esimerkki: @Mastodon@Mastodon.social)", + "interaction_modal.sign_in_hint": "Vinkki: Se on sama verkkosivusto, jolle rekisteröidyit. Jos et muista palvelintasi, etsi tervetulosähköposti saapuneista viesteistäsi. Voit syöttää myös koko käyttäjätunnuksesi! (Esimerkki: @Mastodon@Mastodon.social)", "interaction_modal.title.favourite": "Lisää käyttäjän {name} julkaisu suosikkeihin", "interaction_modal.title.follow": "Seuraa käyttäjää {name}", "interaction_modal.title.reblog": "Tehosta käyttäjän {name} julkaisua", "interaction_modal.title.reply": "Vastaa käyttäjän {name} julkaisuun", - "intervals.full.days": "{number, plural, one {# päivä} other {# päivää}}", - "intervals.full.hours": "{number, plural, one {# tunti} other {# tuntia}}", - "intervals.full.minutes": "{number, plural, one {# minuutti} other {# minuuttia}}", + "intervals.full.days": "{number, plural, one {# päivä} other {# päivää}}", + "intervals.full.hours": "{number, plural, one {# tunti} other {# tuntia}}", + "intervals.full.minutes": "{number, plural, one {# minuutti} other {# minuuttia}}", "keyboard_shortcuts.back": "Siirry takaisin", "keyboard_shortcuts.blocked": "Avaa estettyjen käyttäjien luettelo", "keyboard_shortcuts.boost": "Tehosta julkaisua", @@ -428,7 +428,7 @@ "keyboard_shortcuts.requests": "Avaa seurantapyyntöjen luettelo", "keyboard_shortcuts.search": "Kohdista hakukenttään", "keyboard_shortcuts.spoilers": "Näytä tai piilota sisältövaroituskenttä", - "keyboard_shortcuts.start": "Avaa Näin pääset alkuun -sarake", + "keyboard_shortcuts.start": "Avaa ”Näin pääset alkuun” -⁠sarake", "keyboard_shortcuts.toggle_hidden": "Näytä tai piilota sisältövaroituksella merkitty teksti", "keyboard_shortcuts.toggle_sensitivity": "Näytä tai piilota media", "keyboard_shortcuts.toot": "Luo uusi julkaisu", @@ -443,7 +443,7 @@ "limited_account_hint.title": "Palvelimen {domain} moderaattorit ovat piilottaneet tämän profiilin.", "link_preview.author": "Tehnyt {name}", "link_preview.more_from_author": "Lisää tekijältä {name}", - "link_preview.shares": "{count, plural, one {{counter} julkaisu} other {{counter} julkaisua}}", + "link_preview.shares": "{count, plural, one {{counter} julkaisu} other {{counter} julkaisua}}", "lists.account.add": "Lisää listaan", "lists.account.remove": "Poista listasta", "lists.delete": "Poista lista", @@ -458,7 +458,7 @@ "lists.replies_policy.title": "Näytä vastaukset:", "lists.search": "Hae seuraamistasi käyttäjistä", "lists.subheading": "Omat listasi", - "load_pending": "{count, plural, one {# uusi kohde} other {# uutta kohdetta}}", + "load_pending": "{count, plural, one {# uusi kohde} other {# uutta kohdetta}}", "loading_indicator.label": "Ladataan…", "media_gallery.hide": "Piilota", "moved_to_account_banner.text": "Tilisi {disabledAccount} on tällä hetkellä poissa käytöstä, koska teit siirron tiliin {movedToAccount}.", @@ -509,7 +509,7 @@ "notification.favourite": "{name} lisäsi julkaisusi suosikkeihinsa", "notification.favourite.name_and_others_with_link": "{name} ja {count, plural, one {# muu} other {# muuta}} lisäsivät julkaisusi suosikkeihinsa", "notification.follow": "{name} seurasi sinua", - "notification.follow.name_and_others": "{name} ja {count, plural, one {# muu} other {# muuta}} seurasivat sinua", + "notification.follow.name_and_others": "{name} ja {count, plural, one {# muu} other {# muuta}} seurasivat sinua", "notification.follow_request": "{name} on pyytänyt lupaa seurata sinua", "notification.follow_request.name_and_others": "{name} ja {count, plural, one {# muu} other {# muuta}} pyysivät saada seurata sinua", "notification.label.mention": "Maininta", @@ -530,7 +530,7 @@ "notification.own_poll": "Äänestyksesi on päättynyt", "notification.poll": "Äänestys, johon osallistuit, on päättynyt", "notification.reblog": "{name} tehosti julkaisuasi", - "notification.reblog.name_and_others_with_link": "{name} ja {count, plural, one {# muu} other {# muuta}} tehostivat julkaisuasi", + "notification.reblog.name_and_others_with_link": "{name} ja {count, plural, one {# muu} other {# muuta}} tehostivat julkaisuasi", "notification.relationships_severance_event": "Menetettiin yhteydet palvelimeen {name}", "notification.relationships_severance_event.account_suspension": "Palvelimen {from} ylläpitäjä on jäädyttänyt palvelimen {target} vuorovaikutuksen. Enää et voi siis vastaanottaa päivityksiä heiltä tai olla yhteyksissä heidän kanssaan.", "notification.relationships_severance_event.domain_block": "Palvelimen {from} ylläpitäjä on estänyt palvelimen {target} vuorovaikutuksen – mukaan lukien {followersCount} seuraajistasi ja {followingCount, plural, one {# seurattavistasi} other {# seurattavistasi}}.", @@ -539,7 +539,7 @@ "notification.status": "{name} julkaisi juuri", "notification.update": "{name} muokkasi julkaisua", "notification_requests.accept": "Hyväksy", - "notification_requests.accept_multiple": "{count, plural, one {Hyväksy # pyyntö…} other {Hyväksy # pyyntöä…}}", + "notification_requests.accept_multiple": "{count, plural, one {Hyväksy # pyyntö…} other {Hyväksy # pyyntöä…}}", "notification_requests.confirm_accept_multiple.button": "{count, plural, one {Hyväksy pyyntö} other {Hyväksy pyynnöt}}", "notification_requests.confirm_accept_multiple.message": "Olet aikeissa hyväksyä {count, plural, one {ilmoituspyynnön} other {# ilmoituspyyntöä}}. Haluatko varmasti jatkaa?", "notification_requests.confirm_accept_multiple.title": "Hyväksytäänkö ilmoituspyynnöt?", @@ -602,7 +602,7 @@ "notifications.policy.filter_limited_accounts_title": "Moderoidut tilit", "notifications.policy.filter_new_accounts.hint": "Luotu {days, plural, one {viime päivän} other {viimeisen # päivän}} aikana", "notifications.policy.filter_new_accounts_title": "Uudet tilit", - "notifications.policy.filter_not_followers_hint": "Mukaan lukien alle {days, plural, one {päivän} other {# päivää}} sinua seuranneet", + "notifications.policy.filter_not_followers_hint": "Mukaan lukien alle {days, plural, one {päivän} other {# päivää}} sinua seuranneet", "notifications.policy.filter_not_followers_title": "Käyttäjät, jotka eivät seuraa sinua", "notifications.policy.filter_not_following_hint": "Kunnes hyväksyt heidät manuaalisesti", "notifications.policy.filter_not_following_title": "Käyttäjät, joita et seuraa", @@ -656,11 +656,11 @@ "poll.closed": "Päättynyt", "poll.refresh": "Päivitä", "poll.reveal": "Näytä tulokset", - "poll.total_people": "{count, plural, one {# käyttäjä} other {# käyttäjää}}", - "poll.total_votes": "{count, plural, one {# ääni} other {# ääntä}}", + "poll.total_people": "{count, plural, one {# käyttäjä} other {# käyttäjää}}", + "poll.total_votes": "{count, plural, one {# ääni} other {# ääntä}}", "poll.vote": "Äänestä", "poll.voted": "Äänestit tätä vastausta", - "poll.votes": "{votes, plural, one {# ääni} other {# ääntä}}", + "poll.votes": "{votes, plural, one {# ääni} other {# ääntä}}", "poll_button.add_poll": "Lisää äänestys", "poll_button.remove_poll": "Poista äänestys", "privacy.change": "Muuta julkaisun näkyvyyttä", @@ -679,18 +679,18 @@ "refresh": "Päivitä", "regeneration_indicator.label": "Ladataan…", "regeneration_indicator.sublabel": "Kotisyötettäsi valmistellaan!", - "relative_time.days": "{number} pv", - "relative_time.full.days": "{number, plural, one {# päivä} other {# päivää}} sitten", - "relative_time.full.hours": "{number, plural, one {# tunti} other {# tuntia}} sitten", + "relative_time.days": "{number} pv", + "relative_time.full.days": "{number, plural, one {# päivä} other {# päivää}} sitten", + "relative_time.full.hours": "{number, plural, one {# tunti} other {# tuntia}} sitten", "relative_time.full.just_now": "juuri nyt", - "relative_time.full.minutes": "{number, plural, one {# minuutti} other {# minuuttia}} sitten", - "relative_time.full.seconds": "{number, plural, one {# sekunti} other {# sekuntia}} sitten", - "relative_time.hours": "{number} t", + "relative_time.full.minutes": "{number, plural, one {# minuutti} other {# minuuttia}} sitten", + "relative_time.full.seconds": "{number, plural, one {# sekunti} other {# sekuntia}} sitten", + "relative_time.hours": "{number} t", "relative_time.just_now": "nyt", - "relative_time.minutes": "{number} min", - "relative_time.seconds": "{number} s", + "relative_time.minutes": "{number} min", + "relative_time.seconds": "{number} s", "relative_time.today": "tänään", - "reply_indicator.attachments": "{count, plural, one {# liite} other {# liitettä}}", + "reply_indicator.attachments": "{count, plural, one {# liite} other {# liitettä}}", "reply_indicator.cancel": "Peruuta", "reply_indicator.poll": "Äänestys", "report.block": "Estä", @@ -733,7 +733,7 @@ "report.thanks.title_actionable": "Kiitos raportista – tutkimme asiaa.", "report.unfollow": "Lopeta käyttäjän @{name} seuraaminen", "report.unfollow_explanation": "Seuraat tätä tiliä. Jotta et enää näkisi sen julkaisuja kotisyötteessäsi, lopeta tilin seuraaminen.", - "report_notification.attached_statuses": "{count, plural, one {{count} julkaisu} other {{count} julkaisua}} liitteenä", + "report_notification.attached_statuses": "{count, plural, one {{count} julkaisu} other {{count} julkaisua}} liitteenä", "report_notification.categories.legal": "Lakiseikat", "report_notification.categories.legal_sentence": "laiton sisältö", "report_notification.categories.other": "Muu", @@ -748,11 +748,11 @@ "search.quick_action.account_search": "Profiilit haulla {x}", "search.quick_action.go_to_account": "Siirry profiiliin {x}", "search.quick_action.go_to_hashtag": "Siirry aihetunnisteeseen {x}", - "search.quick_action.open_url": "Avaa URL-osoite Mastodonissa", + "search.quick_action.open_url": "Avaa URL-⁠osoite Mastodonissa", "search.quick_action.status_search": "Julkaisut haulla {x}", - "search.search_or_paste": "Hae tai liitä URL-osoite", + "search.search_or_paste": "Hae tai liitä URL-⁠osoite", "search_popout.full_text_search_disabled_message": "Ei saatavilla palvelimella {domain}.", - "search_popout.full_text_search_logged_out_message": "Käytettävissä vain sisäänkirjautuneena.", + "search_popout.full_text_search_logged_out_message": "Saatavilla vain sisäänkirjautuneena.", "search_popout.language_code": "ISO-kielikoodi", "search_popout.options": "Hakuvalinnat", "search_popout.quick_actions": "Pikatoiminnot", @@ -791,7 +791,7 @@ "status.direct_indicator": "Yksityismaininta", "status.edit": "Muokkaa", "status.edited": "Viimeksi muokattu {date}", - "status.edited_x_times": "Muokattu {count, plural, one {{count} kerran} other {{count} kertaa}}", + "status.edited_x_times": "Muokattu {count, plural, one {{count} kerran} other {{count} kertaa}}", "status.embed": "Hanki upotuskoodi", "status.favourite": "Suosikki", "status.favourites": "{count, plural, one {suosikki} other {suosikkia}}", @@ -827,10 +827,10 @@ "status.show_less_all": "Näytä kaikista vähemmän", "status.show_more_all": "Näytä kaikista enemmän", "status.show_original": "Näytä alkuperäinen", - "status.title.with_attachments": "{user} liitti {attachmentCount, plural, one {{attachmentCount} tiedoston} other {{attachmentCount} tiedostoa}}", + "status.title.with_attachments": "{user} julkaisi {attachmentCount, plural, one {liitteen} other {{attachmentCount} liitettä}}", "status.translate": "Käännä", - "status.translated_from_with": "Käännetty kielestä {lang} käyttäen palvelua {provider}", - "status.uncached_media_warning": "Esikatselu ei ole käytettävissä", + "status.translated_from_with": "Käännetty kielestä {lang} palvelulla {provider}", + "status.uncached_media_warning": "Esikatselu ei saatavilla", "status.unmute_conversation": "Kumoa keskustelun mykistys", "status.unpin": "Irrota profiilista", "subscribed_languages.lead": "Vain valituilla kielillä kirjoitetut julkaisut näkyvät koti- ja lista-aikajanoillasi muutoksen jälkeen. Älä valitse mitään, jos haluat nähdä julkaisuja kaikilla kielillä.", @@ -838,17 +838,17 @@ "subscribed_languages.target": "Vaihda tilattuja kieliä käyttäjältä {target}", "tabs_bar.home": "Koti", "tabs_bar.notifications": "Ilmoitukset", - "time_remaining.days": "{number, plural, one {# päivä} other {# päivää}} jäljellä", - "time_remaining.hours": "{number, plural, one {# tunti} other {# tuntia}} jäljellä", - "time_remaining.minutes": "{number, plural, one {# minuutti} other {# minuuttia}} jäljellä", + "time_remaining.days": "{number, plural, one {# päivä} other {# päivää}} jäljellä", + "time_remaining.hours": "{number, plural, one {# tunti} other {# tuntia}} jäljellä", + "time_remaining.minutes": "{number, plural, one {# minuutti} other {# minuuttia}} jäljellä", "time_remaining.moments": "Hetkiä jäljellä", - "time_remaining.seconds": "{number, plural, one {# sekunti} other {# sekuntia}} jäljellä", + "time_remaining.seconds": "{number, plural, one {# sekunti} other {# sekuntia}} jäljellä", "trends.counter_by_accounts": "{count, plural, one {{counter} käyttäjä} other {{counter} käyttäjää}} {days, plural, one {viime päivänä} other {viimeisenä {days} päivänä}}", "trends.trending_now": "Suosittua nyt", "ui.beforeunload": "Luonnos häviää, jos poistut Mastodonista.", - "units.short.billion": "{count} mrd.", - "units.short.million": "{count} milj.", - "units.short.thousand": "{count} t.", + "units.short.billion": "{count} mrd.", + "units.short.million": "{count} milj.", + "units.short.thousand": "{count} t.", "upload_area.title": "Lähetä raahaamalla ja pudottamalla tähän", "upload_button.label": "Lisää kuvia, video tai äänitiedosto", "upload_error.limit": "Tiedostolähetysten rajoitus ylitetty.", diff --git a/app/javascript/mastodon/locales/fil.json b/app/javascript/mastodon/locales/fil.json index 1d93f97c0d..abfa5bcbb7 100644 --- a/app/javascript/mastodon/locales/fil.json +++ b/app/javascript/mastodon/locales/fil.json @@ -56,13 +56,22 @@ "account.no_bio": "Walang nakalaan na paglalarawan.", "account.open_original_page": "Buksan ang pinagmulang pahina", "account.posts": "Mga post", + "account.posts_with_replies": "Mga Post at Reply", "account.report": "I-ulat si/ang @{name}", "account.requested": "Naghihintay ng pag-apruba. I-click upang ikansela ang hiling sa pagsunod", "account.requested_follow": "Hinihiling ni {name} na sundan ka", "account.share": "Ibahagi ang profile ni @{name}", "account.show_reblogs": "Ipakita ang mga pagpapalakas mula sa/kay {name}", + "account.statuses_counter": "{count,plural,one {{counter} i-post} other {{counter} mga post}}", + "account.unblock": "I-unblock si @{name}", + "account.unblock_domain": "I-unblock ang domain {domain}", + "account.unblock_short": "I-unblock", "account.unendorse": "Huwag itampok sa profile", "account.unfollow": "Huwag nang sundan", + "account.unmute": "I-unmute si @{name}", + "account.unmute_notifications_short": "I-unmute ang mga notification", + "account.unmute_short": "I-unmute", + "account_note.placeholder": "I-click para magdagdag ng note", "admin.dashboard.retention.cohort_size": "Mga bagong tagagamit", "alert.rate_limited.message": "Mangyaring subukan muli pagkatapos ng {retry_time, time, medium}.", "audio.hide": "Itago ang tunog", diff --git a/app/javascript/mastodon/locales/fo.json b/app/javascript/mastodon/locales/fo.json index 4111528145..92f009894d 100644 --- a/app/javascript/mastodon/locales/fo.json +++ b/app/javascript/mastodon/locales/fo.json @@ -39,7 +39,7 @@ "account.following_counter": "{count, plural, one {{counter} fylgir} other {{counter} fylgja}}", "account.follows.empty": "Hesin brúkari fylgir ongum enn.", "account.go_to_profile": "Far til vanga", - "account.hide_reblogs": "Fjal lyft frá @{name}", + "account.hide_reblogs": "Fjal stimbran frá @{name}", "account.in_memoriam": "In memoriam.", "account.joined_short": "Gjørdist limur", "account.languages": "Broyt fylgd mál", @@ -61,7 +61,7 @@ "account.requested": "Bíðar eftir góðkenning. Trýst fyri at angra umbønina", "account.requested_follow": "{name} hevur biðið um at fylgja tær", "account.share": "Deil vanga @{name}'s", - "account.show_reblogs": "Vís lyft frá @{name}", + "account.show_reblogs": "Vís stimbran frá @{name}", "account.statuses_counter": "{count, plural, one {{counter} postur} other {{counter} postar}}", "account.unblock": "Banna ikki @{name}", "account.unblock_domain": "Banna ikki økisnavnið {domain}", @@ -345,7 +345,7 @@ "hashtag.column_header.tag_mode.any": "ella {additional}", "hashtag.column_header.tag_mode.none": "uttan {additional}", "hashtag.column_settings.select.no_options_message": "Einki uppskot funnið", - "hashtag.column_settings.select.placeholder": "Áset fráboðanarmerki…", + "hashtag.column_settings.select.placeholder": "Áset frámerki…", "hashtag.column_settings.tag_mode.all": "Øll hesi", "hashtag.column_settings.tag_mode.any": "Okkurt av hesum", "hashtag.column_settings.tag_mode.none": "Einki av hesum", @@ -364,7 +364,7 @@ "hints.profiles.see_more_posts": "Sí fleiri postar á {domain}", "hints.threads.replies_may_be_missing": "Svar frá øðrum ambætarum mangla møguliga.", "hints.threads.see_more": "Sí fleiri svar á {domain}", - "home.column_settings.show_reblogs": "Vís lyft", + "home.column_settings.show_reblogs": "Vís stimbranir", "home.column_settings.show_replies": "Vís svar", "home.hide_announcements": "Fjal kunngerðir", "home.pending_critical_update.body": "Vinarliga dagfør Mastodon ambætaran hjá tær so skjótt sum møguligt!", @@ -402,7 +402,7 @@ "intervals.full.minutes": "{number, plural, one {# minuttur} other {# minuttir}}", "keyboard_shortcuts.back": "Bakka", "keyboard_shortcuts.blocked": "Siggj listan við bannaðum brúkarum", - "keyboard_shortcuts.boost": "Lyft post", + "keyboard_shortcuts.boost": "Stimbra post", "keyboard_shortcuts.column": "Fá teig í miðdepilin", "keyboard_shortcuts.compose": "Fá skriviøkið í miðdeplin", "keyboard_shortcuts.description": "Frágreiðing", @@ -529,7 +529,7 @@ "notification.moderation_warning.action_suspend": "Konta tín er ógildað.", "notification.own_poll": "Tín atkvøðugreiðsla er endað", "notification.poll": "Ein atkvøðugreiðsla, har tú atkvøddi, er endað", - "notification.reblog": "{name} lyfti tín post", + "notification.reblog": "{name} stimbraði tín post", "notification.reblog.name_and_others_with_link": "{name} og {count, plural, one {# annar/onnur} other {# onnur}} framhevjaðu tín post", "notification.relationships_severance_event": "Mist sambond við {name}", "notification.relationships_severance_event.account_suspension": "Ein umsitari frá {from} hevur gjørt {target} óvirkna, sum merkir, at tú ikki kanst móttaka dagføringar ella virka saman við teimum longur.", diff --git a/app/javascript/mastodon/locales/fr-CA.json b/app/javascript/mastodon/locales/fr-CA.json index ae84d2b61e..23f2a512f3 100644 --- a/app/javascript/mastodon/locales/fr-CA.json +++ b/app/javascript/mastodon/locales/fr-CA.json @@ -20,7 +20,7 @@ "account.block_short": "Bloquer", "account.blocked": "Bloqué·e", "account.cancel_follow_request": "Retirer cette demande d'abonnement", - "account.copy": "Copier le lien vers le profil", + "account.copy": "Copier le lien du profil", "account.direct": "Mention privée @{name}", "account.disable_notifications": "Ne plus me notifier quand @{name} publie", "account.domain_blocked": "Domaine bloqué", @@ -221,7 +221,7 @@ "domain_block_modal.block_account_instead": "Bloquer @{name} à la place", "domain_block_modal.they_can_interact_with_old_posts": "Les personnes de ce serveur peuvent interagir avec vos anciens messages.", "domain_block_modal.they_cant_follow": "Personne de ce serveur ne peut vous suivre.", - "domain_block_modal.they_wont_know": "Il ne saura pas qu'il a été bloqué.", + "domain_block_modal.they_wont_know": "Les utilisateur·rice·s du serveur ne sauront pas que celui-ci est bloqué.", "domain_block_modal.title": "Bloquer le domaine ?", "domain_block_modal.you_will_lose_num_followers": "Vous allez perdre {followersCount, plural, one {{followersCountDisplay} abonné·e} other {{followersCountDisplay} abonné·e·s}} et {followingCount, plural, one {{followingCountDisplay} personne que vous suivez} other {{followingCountDisplay} personnes que vous suivez}}.", "domain_block_modal.you_will_lose_relationships": "Vous allez perdre tous les abonné·e·s et les personnes que vous suivez sur ce serveur.", @@ -230,12 +230,12 @@ "domain_pill.activitypub_like_language": "ActivityPub est comme une langue que Mastodon utilise pour communiquer avec les autres réseaux sociaux.", "domain_pill.server": "Serveur", "domain_pill.their_handle": "Son identifiant :", - "domain_pill.their_server": "Son foyer numérique, là où tous ses posts résident.", + "domain_pill.their_server": "Son foyer numérique, là où tous ses messages résident.", "domain_pill.their_username": "Son identifiant unique sur leur serveur. Il est possible de rencontrer des utilisateur·rice·s avec le même nom sur différents serveurs.", - "domain_pill.username": "Nom d’utilisateur", + "domain_pill.username": "Nom d’utilisateur·rice", "domain_pill.whats_in_a_handle": "Qu'est-ce qu'un identifiant ?", "domain_pill.who_they_are": "Comme un identifiant contient le nom et le service hébergeant une personne, vous pouvez interagir sur .", - "domain_pill.who_you_are": "Comme un identifiant indique votre nom et le service vous hébergeant, vous pouvez interagir avec .", + "domain_pill.who_you_are": "Comme un identifiant indique votre nom et le service vous hébergeant, tout le monde peut interagir avec vous à l'aide de .", "domain_pill.your_handle": "Votre identifiant :", "domain_pill.your_server": "Votre foyer numérique, là où vos messages résident. Vous souhaitez changer ? Lancez un transfert vers un autre serveur quand vous le voulez et vos abonné·e·s suivront automatiquement.", "domain_pill.your_username": "Votre identifiant unique sur ce serveur. Il est possible de rencontrer des utilisateur·rice·s ayant le même nom d'utilisateur sur différents serveurs.", @@ -442,7 +442,7 @@ "limited_account_hint.action": "Afficher le profil quand même", "limited_account_hint.title": "Ce profil a été masqué par la modération de {domain}.", "link_preview.author": "Par {name}", - "link_preview.more_from_author": "Plus via {name}", + "link_preview.more_from_author": "Voir plus de {name}", "link_preview.shares": "{count, plural, one {{counter} message} other {{counter} messages}}", "lists.account.add": "Ajouter à une liste", "lists.account.remove": "Retirer d'une liste", @@ -464,13 +464,13 @@ "moved_to_account_banner.text": "Votre compte {disabledAccount} est actuellement désactivé parce que vous avez déménagé sur {movedToAccount}.", "mute_modal.hide_from_notifications": "Cacher des notifications", "mute_modal.hide_options": "Masquer les options", - "mute_modal.indefinite": "Jusqu'à ce que je les réactive", + "mute_modal.indefinite": "Jusqu'à ce que je l'affiche à nouveau", "mute_modal.show_options": "Afficher les options", - "mute_modal.they_can_mention_and_follow": "Ils peuvent vous mentionner et vous suivre, mais vous ne les verrez pas.", - "mute_modal.they_wont_know": "Ils ne sauront pas qu'ils ont été rendus silencieux.", - "mute_modal.title": "Rendre cet utilisateur silencieux ?", - "mute_modal.you_wont_see_mentions": "Vous ne verrez pas les publications qui le mentionne.", - "mute_modal.you_wont_see_posts": "Il peut toujours voir vos publications, mais vous ne verrez pas les siennes.", + "mute_modal.they_can_mention_and_follow": "Il peut vous mentionner et vous suivre, mais vous ne le verrez pas.", + "mute_modal.they_wont_know": "Il ne saura pas qu'il est masqué.", + "mute_modal.title": "Masquer le compte ?", + "mute_modal.you_wont_see_mentions": "Vous ne verrez pas les messages le mentionnant.", + "mute_modal.you_wont_see_posts": "Il peut toujours voir vos messages, mais vous ne verrez pas les siens.", "navigation_bar.about": "À propos", "navigation_bar.administration": "Administration", "navigation_bar.advanced_interface": "Ouvrir dans l’interface avancée", @@ -501,7 +501,7 @@ "not_signed_in_indicator.not_signed_in": "Vous devez vous connecter pour accéder à cette ressource.", "notification.admin.report": "{name} a signalé {target}", "notification.admin.report_account": "{name} a signalé {count, plural, one {un message} other {# messages}} de {target} pour {category}", - "notification.admin.report_account_other": "{name} a signalé {count, plural, one {un message} other {# messages}} depuis {target}", + "notification.admin.report_account_other": "{name} a signalé {count, plural, one {un message} other {# messages}} de {target}", "notification.admin.report_statuses": "{name} a signalé {target} pour {category}", "notification.admin.report_statuses_other": "{name} a signalé {target}", "notification.admin.sign_up": "{name} s'est inscrit·e", @@ -514,7 +514,7 @@ "notification.follow_request.name_and_others": "{name} et {count, plural, one {# autre} other {# autres}} ont demandé à vous suivre", "notification.label.mention": "Mention", "notification.label.private_mention": "Mention privée", - "notification.label.private_reply": "Répondre en privé", + "notification.label.private_reply": "Réponse privée", "notification.label.reply": "Réponse", "notification.mention": "Mention", "notification.mentioned_you": "{name} vous a mentionné·e", @@ -620,12 +620,12 @@ "onboarding.follows.empty": "Malheureusement, aucun résultat ne peut être affiché pour le moment. Vous pouvez essayer de rechercher ou de parcourir la page \"Explorer\" pour trouver des personnes à suivre, ou réessayer plus tard.", "onboarding.follows.lead": "You curate your own home feed. The more people you follow, the more active and interesting it will be. These profiles may be a good starting point—you can always unfollow them later!", "onboarding.follows.title": "Popular on Mastodon", - "onboarding.profile.discoverable": "Rendre mon profil découvrable", + "onboarding.profile.discoverable": "Permettre de découvrir mon profil", "onboarding.profile.discoverable_hint": "Lorsque vous acceptez d'être découvert sur Mastodon, vos messages peuvent apparaître dans les résultats de recherche et les tendances, et votre profil peut être suggéré à des personnes ayant des intérêts similaires aux vôtres.", "onboarding.profile.display_name": "Nom affiché", "onboarding.profile.display_name_hint": "Votre nom complet ou votre nom rigolo…", "onboarding.profile.lead": "Vous pouvez toujours compléter cela plus tard dans les paramètres. Vous y trouverez encore plus d'options de personnalisation.", - "onboarding.profile.note": "Biographie", + "onboarding.profile.note": "Bio", "onboarding.profile.note_hint": "Vous pouvez @mentionner d'autres personnes ou #hashtags…", "onboarding.profile.save_and_continue": "Enregistrer et continuer", "onboarding.profile.title": "Configuration du profil", @@ -769,7 +769,7 @@ "server_banner.about_active_users": "Personnes utilisant ce serveur au cours des 30 derniers jours (Comptes actifs mensuellement)", "server_banner.active_users": "comptes actifs", "server_banner.administered_by": "Administré par:", - "server_banner.is_one_of_many": "{domain} est l'un des nombreux serveurs Mastodon indépendants que vous pouvez utiliser pour participer au fédiverse.", + "server_banner.is_one_of_many": "{domain} est l'un des nombreux serveurs Mastodon indépendants que vous pouvez utiliser pour participer au fédivers.", "server_banner.server_stats": "Statistiques du serveur:", "sign_in_banner.create_account": "Créer un compte", "sign_in_banner.follow_anyone": "Suivez n'importe qui à travers le fédivers et affichez tout dans un ordre chronologique. Ni algorithmes, ni publicités, ni appâts à clics en perspective.", diff --git a/app/javascript/mastodon/locales/fr.json b/app/javascript/mastodon/locales/fr.json index ecb644aed4..3310c28b8c 100644 --- a/app/javascript/mastodon/locales/fr.json +++ b/app/javascript/mastodon/locales/fr.json @@ -3,7 +3,7 @@ "about.contact": "Contact :", "about.disclaimer": "Mastodon est un logiciel libre, open-source et une marque déposée de Mastodon gGmbH.", "about.domain_blocks.no_reason_available": "Raison non disponible", - "about.domain_blocks.preamble": "Mastodon vous permet généralement de visualiser le contenu et d'interagir avec les utilisateur⋅rices de n'importe quel autre serveur dans le fédivers. Voici les exceptions qui ont été faites sur ce serveur-là.", + "about.domain_blocks.preamble": "Mastodon vous permet généralement de visualiser le contenu et d'interagir avec les utilisateurs et utilisatrices de n'importe quel autre serveur dans le fédivers. Voici les exceptions qui ont été faites sur ce serveur.", "about.domain_blocks.silenced.explanation": "Vous ne verrez généralement pas les profils et le contenu de ce serveur, à moins que vous ne les recherchiez explicitement ou que vous ne choisissiez de les suivre.", "about.domain_blocks.silenced.title": "Limité", "about.domain_blocks.suspended.explanation": "Aucune donnée de ce serveur ne sera traitée, enregistrée ou échangée, rendant impossible toute interaction ou communication avec les comptes de ce serveur.", @@ -20,12 +20,12 @@ "account.block_short": "Bloquer", "account.blocked": "Bloqué·e", "account.cancel_follow_request": "Annuler l'abonnement", - "account.copy": "Copier le lien vers le profil", - "account.direct": "Mention privée @{name}", - "account.disable_notifications": "Ne plus me notifier quand @{name} publie quelque chose", + "account.copy": "Copier le lien du profil", + "account.direct": "Mentionner @{name} en privé", + "account.disable_notifications": "Ne plus me notifier les publications de @{name}", "account.domain_blocked": "Domaine bloqué", "account.edit_profile": "Modifier le profil", - "account.enable_notifications": "Me notifier quand @{name} publie quelque chose", + "account.enable_notifications": "Me notifier les publications de @{name}", "account.endorse": "Recommander sur votre profil", "account.featured_tags.last_status_at": "Dernier message le {date}", "account.featured_tags.last_status_never": "Aucun message", @@ -40,17 +40,17 @@ "account.follows.empty": "Cet·te utilisateur·rice ne suit personne pour l’instant.", "account.go_to_profile": "Voir le profil", "account.hide_reblogs": "Masquer les partages de @{name}", - "account.in_memoriam": "En mémoire de.", + "account.in_memoriam": "En mémoire.", "account.joined_short": "Ici depuis", "account.languages": "Modifier les langues d'abonnements", "account.link_verified_on": "La propriété de ce lien a été vérifiée le {date}", "account.locked_info": "Ce compte est privé. Son ou sa propriétaire approuve manuellement qui peut le suivre.", "account.media": "Médias", "account.mention": "Mentionner @{name}", - "account.moved_to": "{name} a indiqué que son nouveau compte est maintenant :", + "account.moved_to": "{name} a indiqué que son nouveau compte est maintenant :", "account.mute": "Masquer @{name}", "account.mute_notifications_short": "Désactiver les notifications", - "account.mute_short": "Mettre en sourdine", + "account.mute_short": "Masquer", "account.muted": "Masqué·e", "account.mutual": "Mutuel", "account.no_bio": "Aucune description fournie.", @@ -78,7 +78,7 @@ "admin.dashboard.retention.cohort": "Mois d'inscription", "admin.dashboard.retention.cohort_size": "Nouveaux comptes", "admin.impact_report.instance_accounts": "Profils de comptes que cela supprimerait", - "admin.impact_report.instance_followers": "Abonnées que nos utilisateurs perdraient", + "admin.impact_report.instance_followers": "Abonné·e·s que nos utilisateur·rice·s perdraient", "admin.impact_report.instance_follows": "Abonné·e·s que leurs utilisateur·rice·s perdraient", "admin.impact_report.title": "Résumé de l'impact", "alert.rate_limited.message": "Veuillez réessayer après {retry_time, time, medium}.", @@ -106,8 +106,8 @@ "bundle_column_error.network.body": "Une erreur s'est produite lors du chargement de cette page. Cela peut être dû à un problème temporaire avec votre connexion internet ou avec ce serveur.", "bundle_column_error.network.title": "Erreur réseau", "bundle_column_error.retry": "Réessayer", - "bundle_column_error.return": "Retour à l'accueil", - "bundle_column_error.routing.body": "La page demandée est introuvable. Êtes-vous sûr que l’URL dans la barre d’adresse est correcte ?", + "bundle_column_error.return": "Retourner à l'accueil", + "bundle_column_error.routing.body": "La page demandée est introuvable. Est-ce que l'URL dans la barre d’adresse est correcte ?", "bundle_column_error.routing.title": "404", "bundle_modal_error.close": "Fermer", "bundle_modal_error.message": "Une erreur s’est produite lors du chargement de ce composant.", @@ -118,9 +118,9 @@ "closed_registrations_modal.preamble": "Mastodon est décentralisé : peu importe où vous créez votre compte, vous serez en mesure de suivre et d'interagir avec quiconque sur ce serveur. Vous pouvez même l'héberger !", "closed_registrations_modal.title": "Inscription sur Mastodon", "column.about": "À propos", - "column.blocks": "Utilisateurs bloqués", + "column.blocks": "Comptes bloqués", "column.bookmarks": "Marque-pages", - "column.community": "Fil public local", + "column.community": "Fil local", "column.direct": "Mentions privées", "column.directory": "Parcourir les profils", "column.domain_blocks": "Domaines bloqués", @@ -144,9 +144,9 @@ "community.column_settings.local_only": "Local seulement", "community.column_settings.media_only": "Média uniquement", "community.column_settings.remote_only": "Distant seulement", - "compose.language.change": "Changer de langue", - "compose.language.search": "Rechercher des langues...", - "compose.published.body": "Message Publié.", + "compose.language.change": "Modifier la langue", + "compose.language.search": "Rechercher langue…", + "compose.published.body": "Message publié.", "compose.published.open": "Ouvrir", "compose.saved.body": "Message enregistré.", "compose_form.direct_message_warning_learn_more": "En savoir plus", @@ -159,8 +159,8 @@ "compose_form.poll.multiple": "Choix multiple", "compose_form.poll.option_placeholder": "Option {number}", "compose_form.poll.single": "Choix unique", - "compose_form.poll.switch_to_multiple": "Changer le sondage pour autoriser plusieurs choix", - "compose_form.poll.switch_to_single": "Modifier le sondage pour autoriser qu'un seul choix", + "compose_form.poll.switch_to_multiple": "Modifier le sondage pour autoriser plusieurs choix", + "compose_form.poll.switch_to_single": "Modifier le sondage pour autoriser un seul choix", "compose_form.poll.type": "Style", "compose_form.publish": "Publier", "compose_form.publish_form": "Nouveau message", @@ -177,8 +177,8 @@ "confirmations.delete_list.confirm": "Supprimer", "confirmations.delete_list.message": "Voulez-vous vraiment supprimer définitivement cette liste ?", "confirmations.delete_list.title": "Supprimer la liste ?", - "confirmations.discard_edit_media.confirm": "Rejeter", - "confirmations.discard_edit_media.message": "Vous avez des modifications non enregistrées de la description ou de l'aperçu du média, les supprimer quand même ?", + "confirmations.discard_edit_media.confirm": "Supprimer", + "confirmations.discard_edit_media.message": "Vous avez des modifications non enregistrées de la description ou de l'aperçu du média. Voulez-vous les supprimer ?", "confirmations.edit.confirm": "Modifier", "confirmations.edit.message": "Modifier maintenant écrasera votre message en cours de rédaction. Voulez-vous vraiment continuer ?", "confirmations.edit.title": "Remplacer le message ?", @@ -186,8 +186,8 @@ "confirmations.logout.message": "Voulez-vous vraiment vous déconnecter ?", "confirmations.logout.title": "Se déconnecter ?", "confirmations.mute.confirm": "Masquer", - "confirmations.redraft.confirm": "Supprimer et ré-écrire", - "confirmations.redraft.message": "Voulez-vous vraiment supprimer le message pour le réécrire ? Ses partages ainsi que ses mises en favori seront perdues, et ses réponses seront orphelines.", + "confirmations.redraft.confirm": "Supprimer et réécrire", + "confirmations.redraft.message": "Voulez-vous vraiment supprimer le message pour le réécrire ? Ses partages ainsi que ses mises en favori seront perdus, et ses réponses seront orphelines.", "confirmations.redraft.title": "Supprimer et réécrire le message ?", "confirmations.reply.confirm": "Répondre", "confirmations.reply.message": "Répondre maintenant écrasera votre message en cours de rédaction. Voulez-vous vraiment continuer ?", @@ -205,14 +205,14 @@ "copy_icon_button.copied": "Copié dans le presse-papier", "copypaste.copied": "Copié", "copypaste.copy_to_clipboard": "Copier dans le presse-papiers", - "directory.federated": "Du fédiverse connu", + "directory.federated": "Du fédivers connu", "directory.local": "De {domain} seulement", "directory.new_arrivals": "Inscrit·e·s récemment", "directory.recently_active": "Actif·ve·s récemment", "disabled_account_banner.account_settings": "Paramètres du compte", "disabled_account_banner.text": "Votre compte {disabledAccount} est actuellement désactivé.", "dismissable_banner.community_timeline": "Voici les messages publics les plus récents des comptes hébergés par {domain}.", - "dismissable_banner.dismiss": "Rejeter", + "dismissable_banner.dismiss": "Fermer", "dismissable_banner.explore_links": "On parle actuellement de ces nouvelles sur ce serveur, ainsi que sur d'autres serveurs du réseau décentralisé.", "dismissable_banner.explore_statuses": "Ces messages venant de tout le web social gagnent en popularité aujourd’hui. Les nouveaux messages avec plus de boosts et de favoris sont classés plus haut.", "dismissable_banner.explore_tags": "Ces hashtags sont actuellement en train de gagner de l'ampleur parmi les personnes sur les serveurs du réseau décentralisé dont celui-ci.", @@ -221,7 +221,7 @@ "domain_block_modal.block_account_instead": "Bloquer @{name} à la place", "domain_block_modal.they_can_interact_with_old_posts": "Les personnes de ce serveur peuvent interagir avec vos anciens messages.", "domain_block_modal.they_cant_follow": "Personne de ce serveur ne peut vous suivre.", - "domain_block_modal.they_wont_know": "Il ne saura pas qu'il a été bloqué.", + "domain_block_modal.they_wont_know": "Les utilisateur·rice·s du serveur ne sauront pas que celui-ci est bloqué.", "domain_block_modal.title": "Bloquer le domaine ?", "domain_block_modal.you_will_lose_num_followers": "Vous allez perdre {followersCount, plural, one {{followersCountDisplay} abonné·e} other {{followersCountDisplay} abonné·e·s}} et {followingCount, plural, one {{followingCountDisplay} personne que vous suivez} other {{followingCountDisplay} personnes que vous suivez}}.", "domain_block_modal.you_will_lose_relationships": "Vous allez perdre tous les abonné·e·s et les personnes que vous suivez sur ce serveur.", @@ -230,16 +230,16 @@ "domain_pill.activitypub_like_language": "ActivityPub est comme une langue que Mastodon utilise pour communiquer avec les autres réseaux sociaux.", "domain_pill.server": "Serveur", "domain_pill.their_handle": "Son identifiant :", - "domain_pill.their_server": "Son foyer numérique, là où tous ses posts résident.", + "domain_pill.their_server": "Son foyer numérique, là où tous ses messages résident.", "domain_pill.their_username": "Son identifiant unique sur leur serveur. Il est possible de rencontrer des utilisateur·rice·s avec le même nom sur différents serveurs.", - "domain_pill.username": "Nom d’utilisateur", + "domain_pill.username": "Nom d’utilisateur·rice", "domain_pill.whats_in_a_handle": "Qu'est-ce qu'un identifiant ?", "domain_pill.who_they_are": "Comme un identifiant contient le nom et le service hébergeant une personne, vous pouvez interagir sur .", - "domain_pill.who_you_are": "Comme un identifiant indique votre nom et le service vous hébergeant, vous pouvez interagir avec .", + "domain_pill.who_you_are": "Comme un identifiant indique votre nom et le service vous hébergeant, tout le monde peut interagir avec vous à l'aide de .", "domain_pill.your_handle": "Votre identifiant :", "domain_pill.your_server": "Votre foyer numérique, là où vos messages résident. Vous souhaitez changer ? Lancez un transfert vers un autre serveur quand vous le voulez et vos abonné·e·s suivront automatiquement.", "domain_pill.your_username": "Votre identifiant unique sur ce serveur. Il est possible de rencontrer des utilisateur·rice·s ayant le même nom d'utilisateur sur différents serveurs.", - "embed.instructions": "Intégrez ce message à votre site en copiant le code ci-dessous.", + "embed.instructions": "Intégrer ce message à votre site en copiant le code ci-dessous.", "embed.preview": "Il apparaîtra comme cela :", "emoji_button.activity": "Activités", "emoji_button.clear": "Effacer", @@ -287,7 +287,7 @@ "explore.search_results": "Résultats de la recherche", "explore.suggested_follows": "Personnes", "explore.title": "Explorer", - "explore.trending_links": "Nouvelles", + "explore.trending_links": "Actualités", "explore.trending_statuses": "Messages", "explore.trending_tags": "Hashtags", "filter_modal.added.context_mismatch_explanation": "Cette catégorie de filtre ne s'applique pas au contexte dans lequel vous avez accédé à ce message. Si vous voulez que le message soit filtré dans ce contexte également, vous devrez modifier le filtre.", @@ -442,7 +442,7 @@ "limited_account_hint.action": "Afficher le profil quand même", "limited_account_hint.title": "Ce profil a été masqué par la modération de {domain}.", "link_preview.author": "Par {name}", - "link_preview.more_from_author": "Plus via {name}", + "link_preview.more_from_author": "Voir plus de {name}", "link_preview.shares": "{count, plural, one {{counter} message} other {{counter} messages}}", "lists.account.add": "Ajouter à la liste", "lists.account.remove": "Supprimer de la liste", @@ -464,13 +464,13 @@ "moved_to_account_banner.text": "Votre compte {disabledAccount} est actuellement désactivé parce que vous l'avez déplacé à {movedToAccount}.", "mute_modal.hide_from_notifications": "Cacher des notifications", "mute_modal.hide_options": "Masquer les options", - "mute_modal.indefinite": "Jusqu'à ce que je les réactive", + "mute_modal.indefinite": "Jusqu'à ce que je l'affiche à nouveau", "mute_modal.show_options": "Afficher les options", - "mute_modal.they_can_mention_and_follow": "Ils peuvent vous mentionner et vous suivre, mais vous ne les verrez pas.", - "mute_modal.they_wont_know": "Ils ne sauront pas qu'ils ont été rendus silencieux.", - "mute_modal.title": "Rendre cet utilisateur silencieux ?", - "mute_modal.you_wont_see_mentions": "Vous ne verrez pas les publications qui le mentionne.", - "mute_modal.you_wont_see_posts": "Il peut toujours voir vos publications, mais vous ne verrez pas les siennes.", + "mute_modal.they_can_mention_and_follow": "Il peut vous mentionner et vous suivre, mais vous ne le verrez pas.", + "mute_modal.they_wont_know": "Il ne saura pas qu'il est masqué.", + "mute_modal.title": "Masquer le compte ?", + "mute_modal.you_wont_see_mentions": "Vous ne verrez pas les messages le mentionnant.", + "mute_modal.you_wont_see_posts": "Il peut toujours voir vos messages, mais vous ne verrez pas les siens.", "navigation_bar.about": "À propos", "navigation_bar.administration": "Administration", "navigation_bar.advanced_interface": "Ouvrir dans l’interface avancée", @@ -501,7 +501,7 @@ "not_signed_in_indicator.not_signed_in": "Vous devez vous connecter pour accéder à cette ressource.", "notification.admin.report": "{name} a signalé {target}", "notification.admin.report_account": "{name} a signalé {count, plural, one {un message} other {# messages}} de {target} pour {category}", - "notification.admin.report_account_other": "{name} a signalé {count, plural, one {un message} other {# messages}} depuis {target}", + "notification.admin.report_account_other": "{name} a signalé {count, plural, one {un message} other {# messages}} de {target}", "notification.admin.report_statuses": "{name} a signalé {target} pour {category}", "notification.admin.report_statuses_other": "{name} a signalé {target}", "notification.admin.sign_up": "{name} s'est inscrit·e", @@ -514,7 +514,7 @@ "notification.follow_request.name_and_others": "{name} et {count, plural, one {# autre} other {# autres}} ont demandé à vous suivre", "notification.label.mention": "Mention", "notification.label.private_mention": "Mention privée", - "notification.label.private_reply": "Répondre en privé", + "notification.label.private_reply": "Réponse privée", "notification.label.reply": "Réponse", "notification.mention": "Mention", "notification.mentioned_you": "{name} vous a mentionné·e", @@ -620,7 +620,7 @@ "onboarding.follows.empty": "Malheureusement, aucun résultat ne peut être affiché pour le moment. Vous pouvez essayer d'utiliser la recherche ou parcourir la page de découverte pour trouver des personnes à suivre, ou réessayez plus tard.", "onboarding.follows.lead": "Votre flux principal est le principal moyen de découvrir Mastodon. Plus vous suivez de personnes, plus il sera actif et intéressant. Pour commencer, voici quelques suggestions :", "onboarding.follows.title": "Personnaliser votre flux principal", - "onboarding.profile.discoverable": "Rendre mon profil découvrable", + "onboarding.profile.discoverable": "Permettre de découvrir mon profil", "onboarding.profile.discoverable_hint": "Lorsque vous acceptez d'être découvert sur Mastodon, vos messages peuvent apparaître dans les résultats de recherche et les tendances, et votre profil peut être suggéré à des personnes ayant des intérêts similaires aux vôtres.", "onboarding.profile.display_name": "Nom affiché", "onboarding.profile.display_name_hint": "Votre nom complet ou votre nom rigolo…", @@ -714,7 +714,7 @@ "report.reasons.dislike": "Cela ne me plaît pas", "report.reasons.dislike_description": "Ce n'est pas quelque chose que vous voulez voir", "report.reasons.legal": "C'est illégal", - "report.reasons.legal_description": "Vous pensez que cela viole la loi de votre pays ou celui du serveur", + "report.reasons.legal_description": "Vous pensez que cela viole la loi de votre pays ou de celui du serveur", "report.reasons.other": "Pour une autre raison", "report.reasons.other_description": "Le problème ne correspond pas aux autres catégories", "report.reasons.spam": "C'est du spam", @@ -733,7 +733,7 @@ "report.thanks.title_actionable": "Merci pour votre signalement, nous allons investiguer.", "report.unfollow": "Ne plus suivre @{name}", "report.unfollow_explanation": "Vous êtes abonné à ce compte. Pour ne plus voir ses messages dans votre fil principal, retirez-le de votre liste d'abonnements.", - "report_notification.attached_statuses": "{count, plural, one {{count} message lié} other {{count} messages liés}}", + "report_notification.attached_statuses": "{count, plural, one {{count} message joint} other {{count} messages joints}}", "report_notification.categories.legal": "Légal", "report_notification.categories.legal_sentence": "contenu illégal", "report_notification.categories.other": "Autre", @@ -769,7 +769,7 @@ "server_banner.about_active_users": "Personnes utilisant ce serveur au cours des 30 derniers jours (Comptes actifs mensuellement)", "server_banner.active_users": "comptes actifs", "server_banner.administered_by": "Administré par :", - "server_banner.is_one_of_many": "{domain} est l'un des nombreux serveurs Mastodon indépendants que vous pouvez utiliser pour participer au fédiverse.", + "server_banner.is_one_of_many": "{domain} est l'un des nombreux serveurs Mastodon indépendants que vous pouvez utiliser pour participer au fédivers.", "server_banner.server_stats": "Statistiques du serveur :", "sign_in_banner.create_account": "Créer un compte", "sign_in_banner.follow_anyone": "Suivez n'importe qui à travers le fédivers et affichez tout dans un ordre chronologique. Ni algorithmes, ni publicités, ni appâts à clics en perspective.", @@ -787,7 +787,7 @@ "status.copy": "Copier le lien vers le message", "status.delete": "Supprimer", "status.detailed_status": "Vue détaillée de la conversation", - "status.direct": "Mention privée @{name}", + "status.direct": "Mentionner @{name} en privé", "status.direct_indicator": "Mention privée", "status.edit": "Modifier", "status.edited": "Dernière modification le {date}", @@ -796,17 +796,17 @@ "status.favourite": "Ajouter aux favoris", "status.favourites": "{count, plural, one {favori} other {favoris}}", "status.filter": "Filtrer ce message", - "status.history.created": "créé par {name} {date}", - "status.history.edited": "modifié par {name} {date}", + "status.history.created": "Créé par {name} {date}", + "status.history.edited": "Modifié par {name} {date}", "status.load_more": "Charger plus", - "status.media.open": "Cliquez pour ouvrir", + "status.media.open": "Cliquer pour ouvrir", "status.media.show": "Cliquer pour afficher", "status.media_hidden": "Média caché", "status.mention": "Mentionner @{name}", "status.more": "Plus", "status.mute": "Masquer @{name}", "status.mute_conversation": "Masquer la conversation", - "status.open": "Afficher le message entier", + "status.open": "Développer ce message", "status.pin": "Épingler sur le profil", "status.pinned": "Message épinglé", "status.read_more": "Lire la suite", @@ -835,7 +835,7 @@ "status.unpin": "Retirer du profil", "subscribed_languages.lead": "Seuls les messages dans les langues sélectionnées apparaîtront sur votre fil principal et vos listes de fils après le changement. Sélectionnez aucune pour recevoir les messages dans toutes les langues.", "subscribed_languages.save": "Enregistrer les modifications", - "subscribed_languages.target": "Changer les langues abonnées pour {target}", + "subscribed_languages.target": "Modifier les langues d'abonnements pour {target}", "tabs_bar.home": "Accueil", "tabs_bar.notifications": "Notifications", "time_remaining.days": "{number, plural, one {# jour restant} other {# jours restants}}", diff --git a/app/javascript/mastodon/locales/ga.json b/app/javascript/mastodon/locales/ga.json index db1ccd3a3c..2e906276d5 100644 --- a/app/javascript/mastodon/locales/ga.json +++ b/app/javascript/mastodon/locales/ga.json @@ -1,9 +1,9 @@ { - "about.blocks": "Freastalaithe faoi stiúir", + "about.blocks": "Freastalaithe modhnaithe", "about.contact": "Teagmháil:", "about.disclaimer": "Bogearra foinse oscailte saor in aisce is ea Mastodon, agus is le Mastodon gGmbH an trádmharc.", - "about.domain_blocks.no_reason_available": "Níl an fáth ar fáil", - "about.domain_blocks.preamble": "Go hiondúil, tugann Mastadán cead duit a bheith ag plé le húsáideoirí as freastalaí ar bith eile sa chomhchruinne agus a gcuid inneachair a fheiceáil. Seo iad na heisceachtaí a rinneadh ar an bhfreastalaí áirithe seo.", + "about.domain_blocks.no_reason_available": "Cúis nach bhfuil ar fáil", + "about.domain_blocks.preamble": "Go ginearálta, tugann Mastodon deis duit ábhar a fheiceáil ó aon fhreastalaí eile sa fediverse agus idirghníomhú leo. Seo iad na heisceachtaí atá déanta ar an bhfreastalaí seo.", "about.domain_blocks.silenced.explanation": "Go hiondúil ní fheicfidh tú próifílí ná inneachar ón bhfreastalaí seo, ach amháin má bhíonn tú á lorg nó má ghlacann tú lena leanúint d'aon ghnó.", "about.domain_blocks.silenced.title": "Teoranta", "about.domain_blocks.suspended.explanation": "Ní dhéanfar aon sonra ón fhreastalaí seo a phróiseáil, a stóráil ná a mhalartú, rud a fhágann nach féidir aon teagmháil ná aon chumarsáid a dhéanamh le húsáideoirí ón fhreastalaí seo.", @@ -13,16 +13,16 @@ "about.rules": "Rialacha an fhreastalaí", "account.account_note_header": "Nóta pearsanta", "account.add_or_remove_from_list": "Cuir Le nó Bain De na liostaí", - "account.badges.bot": "Bota", + "account.badges.bot": "Uathoibrithe", "account.badges.group": "Grúpa", - "account.block": "Déan cosc ar @{name}", + "account.block": "Bac @{name}", "account.block_domain": "Bac ainm fearainn {domain}", - "account.block_short": "Bloc", + "account.block_short": "Bac", "account.blocked": "Bactha", - "account.cancel_follow_request": "Éirigh as iarratas leanta", + "account.cancel_follow_request": "Cealaigh leanúint", "account.copy": "Cóipeáil nasc chuig an bpróifíl", "account.direct": "Luaigh @{name} go príobháideach", - "account.disable_notifications": "Éirigh as ag cuir mé in eol nuair bpostálann @{name}", + "account.disable_notifications": "Stop ag cur in iúl dom nuair a dhéanann @{name} postáil", "account.domain_blocked": "Ainm fearainn bactha", "account.edit_profile": "Cuir an phróifíl in eagar", "account.enable_notifications": "Cuir mé in eol nuair bpostálann @{name}", @@ -31,7 +31,7 @@ "account.featured_tags.last_status_never": "Gan aon phoist", "account.featured_tags.title": "Haischlib faoi thrácht {name}", "account.follow": "Lean", - "account.follow_back": "Leanúint ar ais", + "account.follow_back": "Lean ar ais", "account.followers": "Leantóirí", "account.followers.empty": "Ní leanann éinne an t-úsáideoir seo fós.", "account.followers_counter": "{count, plural, one {{counter} leantóir} other {{counter} leantóirí}}", @@ -40,7 +40,7 @@ "account.follows.empty": "Ní leanann an t-úsáideoir seo aon duine go fóill.", "account.go_to_profile": "Téigh go dtí próifíl", "account.hide_reblogs": "Folaigh moltaí ó @{name}", - "account.in_memoriam": "Cuimhneachán.", + "account.in_memoriam": "Ón tseanaimsir.", "account.joined_short": "Cláraithe", "account.languages": "Athraigh teangacha foscríofa", "account.link_verified_on": "Seiceáladh úinéireacht an naisc seo ar {date}", @@ -82,9 +82,9 @@ "admin.impact_report.instance_follows": "Leanúna a bheadh ​​​​a n-úsáideoirí chailleadh", "admin.impact_report.title": "Achoimre ar an tionchar", "alert.rate_limited.message": "Atriail aris tar éis {retry_time, time, medium}.", - "alert.rate_limited.title": "Rátatheoranta", + "alert.rate_limited.title": "Ráta teoranta", "alert.unexpected.message": "Tharla earráid gan choinne.", - "alert.unexpected.title": "Hiúps!", + "alert.unexpected.title": "Úps!", "alt_text_badge.title": "Téacs alt", "announcement.announcement": "Fógra", "attachments_list.unprocessed": "(neamhphróiseáilte)", @@ -95,18 +95,18 @@ "block_modal.they_cant_mention": "Ní féidir leo tú a lua ná a leanúint.", "block_modal.they_cant_see_posts": "Ní féidir leo do chuid postálacha a fheiceáil agus ní fheicfidh tú a gcuid postanna.", "block_modal.they_will_know": "Is féidir leo a fheiceáil go bhfuil bac orthu.", - "block_modal.title": "An bhfuil fonn ort an t-úsáideoir a bhlocáil?", + "block_modal.title": "Úsáideoir a bhlocáil?", "block_modal.you_wont_see_mentions": "Ní fheicfidh tú postálacha a luann iad.", "boost_modal.combo": "Is féidir leat {combo} a bhrú chun é seo a scipeáil an chéad uair eile", "boost_modal.reblog": "An post a threisiú?", "boost_modal.undo_reblog": "An deireadh a chur le postáil?", "bundle_column_error.copy_stacktrace": "Cóipeáil tuairisc earráide", "bundle_column_error.error.body": "Ní féidir an leathanach a iarradh a sholáthar. Seans gurb amhlaidh mar gheall ar fhabht sa chód, nó mar gheall ar mhíréireacht leis an mbrabhsálaí.", - "bundle_column_error.error.title": "Ó, níl sé sin go maith!", + "bundle_column_error.error.title": "Ó, ní hea!", "bundle_column_error.network.body": "Tharla earráid agus an leathanach á lódáil. Seans gur mar gheall ar fhadhb shealadach le do nasc idirlín nó i ndáil leis an bhfreastalaí seo atá sé.", "bundle_column_error.network.title": "Earráid líonra", "bundle_column_error.retry": "Bain triail as arís", - "bundle_column_error.return": "Téigh abhaile", + "bundle_column_error.return": "Téigh ar ais abhaile", "bundle_column_error.routing.body": "Ní féidir teacht ar an leathanach a iarradh. An bhfuil tú cinnte go bhfuil an URL sa seoladh i gceart?", "bundle_column_error.routing.title": "404", "bundle_modal_error.close": "Dún", @@ -118,7 +118,7 @@ "closed_registrations_modal.preamble": "Ós rud é go bhfuil Mastodon díláraithe, is cuma cá háit a chruthaíonn tú do chuntas, beidh tú in ann idirghníomhú le haon duine ar an bhfreastalaí seo agus iad a leanúint. Is féidir fiú é a féin-óstáil!", "closed_registrations_modal.title": "Cláraigh le Mastodon", "column.about": "Maidir le", - "column.blocks": "Cuntais choiscthe", + "column.blocks": "Úsáideoirí blocáilte", "column.bookmarks": "Leabharmharcanna", "column.community": "Amlíne áitiúil", "column.direct": "Luann príobháideach", @@ -139,7 +139,7 @@ "column_header.moveRight_settings": "Bog an colún ar dheis", "column_header.pin": "Pionna", "column_header.show_settings": "Taispeáin socruithe", - "column_header.unpin": "Bain pionna", + "column_header.unpin": "Díbhioráin", "column_subheading.settings": "Socruithe", "community.column_settings.local_only": "Áitiúil amháin", "community.column_settings.media_only": "Meáin Amháin", @@ -150,12 +150,12 @@ "compose.published.open": "Oscail", "compose.saved.body": "Postáil sábháilte.", "compose_form.direct_message_warning_learn_more": "Tuilleadh eolais", - "compose_form.encryption_warning": "Ní criptiú taobh-go-taobh déanta ar theachtaireachtaí ar Mhastodon. Ná roinn eolas íogair ar Mhastodon.", + "compose_form.encryption_warning": "Ní bhíonn poist ar Mastodon criptithe ó cheann ceann. Ná roinn aon fhaisnéis íogair ar Mastodon.", "compose_form.hashtag_warning": "Ní áireofar an teachtaireacht seo faoi haischlib ar bith mar níl sí ar fáil don phobal. Ní féidir ach teachtaireachtaí poiblí a chuardach de réir haischlib.", "compose_form.lock_disclaimer": "Níl an cuntas seo {locked}. Féadfaidh duine ar bith tú a leanúint agus na postálacha atá dírithe agat ar do lucht leanúna amháin a fheiceáil.", "compose_form.lock_disclaimer.lock": "faoi ghlas", - "compose_form.placeholder": "Cad atá ag tarlú?", - "compose_form.poll.duration": "Achar suirbhéanna", + "compose_form.placeholder": "Cad atá ar d’intinn?", + "compose_form.poll.duration": "Fad an vótaíochta", "compose_form.poll.multiple": "Ilrogha", "compose_form.poll.option_placeholder": "Rogha {number}", "compose_form.poll.single": "Roghnaigh ceann amháin", @@ -170,7 +170,7 @@ "compose_form.spoiler.unmarked": "Cuir rabhadh ábhair", "compose_form.spoiler_placeholder": "Rabhadh ábhair (roghnach)", "confirmation_modal.cancel": "Cealaigh", - "confirmations.block.confirm": "Bac", + "confirmations.block.confirm": "Bloc", "confirmations.delete.confirm": "Scrios", "confirmations.delete.message": "An bhfuil tú cinnte gur mhaith leat an phostáil seo a scriosadh?", "confirmations.delete.title": "Scrios postáil?", @@ -184,7 +184,7 @@ "confirmations.edit.title": "Forscríobh postáil?", "confirmations.logout.confirm": "Logáil amach", "confirmations.logout.message": "An bhfuil tú cinnte gur mhaith leat logáil amach?", - "confirmations.logout.title": "Logáil Amach?", + "confirmations.logout.title": "Logáil amach?", "confirmations.mute.confirm": "Balbhaigh", "confirmations.redraft.confirm": "Scrios ⁊ athdhréachtaigh", "confirmations.redraft.message": "An bhfuil tú cinnte gur mhaith leat an postáil seo a scriosadh agus é a athdhréachtú? Caillfear ceanáin agus treisithe, agus dílleachtaí freagraí ar an mbunphostála.", diff --git a/app/javascript/mastodon/locales/gd.json b/app/javascript/mastodon/locales/gd.json index e98ac19b94..5015f5ef2d 100644 --- a/app/javascript/mastodon/locales/gd.json +++ b/app/javascript/mastodon/locales/gd.json @@ -672,7 +672,7 @@ "privacy.public.short": "Poblach", "privacy.unlisted.additional": "Tha seo coltach ris an fhaicsinneachd phoblach ach cha nochd am post air loidhnichean-ama an t-saoghail phoblaich, nan tagaichean hais no an rùrachaidh no ann an toraidhean luirg Mhastodon fiù ’s ma thug thu ro-aonta airson sin seachad.", "privacy.unlisted.long": "Ìre bheag an algairim", - "privacy.unlisted.short": "Poblach ach sàmhach", + "privacy.unlisted.short": "Sàmhach", "privacy_policy.last_updated": "An t-ùrachadh mu dheireadh {date}", "privacy_policy.title": "Poileasaidh prìobhaideachd", "recommended": "Molta", diff --git a/app/javascript/mastodon/locales/gl.json b/app/javascript/mastodon/locales/gl.json index 8196ebddc0..ff7d14e3b9 100644 --- a/app/javascript/mastodon/locales/gl.json +++ b/app/javascript/mastodon/locales/gl.json @@ -16,7 +16,7 @@ "account.badges.bot": "Automatizada", "account.badges.group": "Grupo", "account.block": "Bloquear @{name}", - "account.block_domain": "Agochar todo de {domain}", + "account.block_domain": "Bloquear o dominio {domain}", "account.block_short": "Bloquear", "account.blocked": "Bloqueada", "account.cancel_follow_request": "Desbotar a solicitude de seguimento", @@ -666,7 +666,7 @@ "privacy.change": "Axustar privacidade", "privacy.direct.long": "Todas as mencionadas na publicación", "privacy.direct.short": "Persoas mencionadas", - "privacy.private.long": "Só para seguidoras", + "privacy.private.long": "Só quen te segue", "privacy.private.short": "Seguidoras", "privacy.public.long": "Para todas dentro e fóra de Mastodon", "privacy.public.short": "Público", diff --git a/app/javascript/mastodon/locales/he.json b/app/javascript/mastodon/locales/he.json index 84dbbc77bf..12d6b888d2 100644 --- a/app/javascript/mastodon/locales/he.json +++ b/app/javascript/mastodon/locales/he.json @@ -29,7 +29,7 @@ "account.endorse": "קדם את החשבון בפרופיל", "account.featured_tags.last_status_at": "חצרוץ אחרון בתאריך {date}", "account.featured_tags.last_status_never": "אין חצרוצים", - "account.featured_tags.title": "התגיות המועדפות של {name}", + "account.featured_tags.title": "התגיות הנבחרות של {name}", "account.follow": "לעקוב", "account.follow_back": "לעקוב בחזרה", "account.followers": "עוקבים", diff --git a/app/javascript/mastodon/locales/hi.json b/app/javascript/mastodon/locales/hi.json index 4a513c1c07..32984295fe 100644 --- a/app/javascript/mastodon/locales/hi.json +++ b/app/javascript/mastodon/locales/hi.json @@ -11,6 +11,7 @@ "about.not_available": "यह जानकारी इस सर्वर पर उपलब्ध नहीं कराई गई है।", "about.powered_by": "{mastodon} द्वारा संचालित डेसेंट्रलीसेड सोशल मीडिया प्लैटफ़ॉर्म!", "about.rules": "सर्वर के नियम", + "account.account_note_header": "व्यक्तिगत नोंध", "account.add_or_remove_from_list": "सूची में जोड़ें या हटाए", "account.badges.bot": "बॉट", "account.badges.group": "समूह", diff --git a/app/javascript/mastodon/locales/hr.json b/app/javascript/mastodon/locales/hr.json index 26c527f2fe..c90fb5408f 100644 --- a/app/javascript/mastodon/locales/hr.json +++ b/app/javascript/mastodon/locales/hr.json @@ -80,6 +80,7 @@ "alert.rate_limited.title": "Ograničenje učestalosti", "alert.unexpected.message": "Dogodila se neočekivana greška.", "alert.unexpected.title": "Ups!", + "alt_text_badge.title": "Alternativni tekst", "announcement.announcement": "Najava", "attachments_list.unprocessed": "(neobrađeno)", "audio.hide": "Sakrij audio", diff --git a/app/javascript/mastodon/locales/ia.json b/app/javascript/mastodon/locales/ia.json index b96bd4f47d..eb77b1664c 100644 --- a/app/javascript/mastodon/locales/ia.json +++ b/app/javascript/mastodon/locales/ia.json @@ -125,7 +125,7 @@ "column.directory": "Navigar profilos", "column.domain_blocks": "Dominios blocate", "column.favourites": "Favorites", - "column.firehose": "Fluxos in directo", + "column.firehose": "Fluxos in vivo", "column.follow_requests": "Requestas de sequimento", "column.home": "Initio", "column.lists": "Listas", @@ -670,7 +670,7 @@ "privacy.private.short": "Sequitores", "privacy.public.long": "Quicunque, sur Mastodon o non", "privacy.public.short": "Public", - "privacy.unlisted.additional": "Isto es exactemente como public, excepte que le message non apparera in fluxos in directo, in hashtags, in Explorar, o in le recerca de Mastodon, mesmo si tu ha optate pro render tote le conto discoperibile.", + "privacy.unlisted.additional": "Isto es exactemente como public, excepte que le message non apparera in fluxos in vivo, in hashtags, in Explorar, o in le recerca de Mastodon, mesmo si tu ha optate pro render tote le conto discoperibile.", "privacy.unlisted.long": "Minus fanfares algorithmic", "privacy.unlisted.short": "Public, non listate", "privacy_policy.last_updated": "Ultime actualisation {date}", diff --git a/app/javascript/mastodon/locales/is.json b/app/javascript/mastodon/locales/is.json index 6e9d9da458..d9567aced7 100644 --- a/app/javascript/mastodon/locales/is.json +++ b/app/javascript/mastodon/locales/is.json @@ -45,7 +45,7 @@ "account.languages": "Breyta tungumálum í áskrift", "account.link_verified_on": "Eignarhald á þessum tengli var athugað þann {date}", "account.locked_info": "Staða gagnaleyndar á þessum aðgangi er stillt á læsingu. Eigandinn yfirfer handvirkt hverjir geti fylgst með honum.", - "account.media": "Myndskrár", + "account.media": "Myndefni", "account.mention": "Minnast á @{name}", "account.moved_to": "{name} hefur gefið til kynna að nýi notandaaðgangurinn sé:", "account.mute": "Þagga niður í @{name}", @@ -53,7 +53,7 @@ "account.mute_short": "Þagga niður", "account.muted": "Þaggaður", "account.mutual": "Sameiginlegir", - "account.no_bio": "Engri lýsingu útvegað.", + "account.no_bio": "Engin lýsing gefin upp.", "account.open_original_page": "Opna upprunalega síðu", "account.posts": "Færslur", "account.posts_with_replies": "Færslur og svör", @@ -241,14 +241,14 @@ "domain_pill.your_username": "Sértækt auðkenni þitt á þessum netþjóni. Það er mögulegt að finna notendur með sama notandanafn á mismunandi netþjónum.", "embed.instructions": "Felldu þessa færslu inn í vefsvæðið þitt með því að afrita kóðann hér fyrir neðan.", "embed.preview": "Svona mun þetta líta út:", - "emoji_button.activity": "Virkni", + "emoji_button.activity": "Athafnir", "emoji_button.clear": "Hreinsa", "emoji_button.custom": "Sérsniðin", "emoji_button.flags": "Flögg", "emoji_button.food": "Matur og drykkur", - "emoji_button.label": "Setja inn tjáningartákn", + "emoji_button.label": "Setja inn lyndistákn", "emoji_button.nature": "Náttúra", - "emoji_button.not_found": "Engin samsvarandi tjáningartákn fundust", + "emoji_button.not_found": "Engin samsvarandi lyndistákn fundust", "emoji_button.objects": "Hlutir", "emoji_button.people": "Fólk", "emoji_button.recent": "Oft notuð", diff --git a/app/javascript/mastodon/locales/it.json b/app/javascript/mastodon/locales/it.json index 43bce68b6d..3d0526a798 100644 --- a/app/javascript/mastodon/locales/it.json +++ b/app/javascript/mastodon/locales/it.json @@ -9,7 +9,7 @@ "about.domain_blocks.suspended.explanation": "Nessun dato proveniente da questo server verrà elaborato, conservato o scambiato, rendendo impossibile qualsiasi interazione o comunicazione con gli utenti da questo server.", "about.domain_blocks.suspended.title": "Sospeso", "about.not_available": "Queste informazioni non sono state rese disponibili su questo server.", - "about.powered_by": "Social media decentralizzato alimentato da {mastodon}", + "about.powered_by": "Social media decentralizzato basato su {mastodon}", "about.rules": "Regole del server", "account.account_note_header": "Note personali", "account.add_or_remove_from_list": "Aggiungi o Rimuovi dalle liste", @@ -34,7 +34,7 @@ "account.follow_back": "Segui a tua volta", "account.followers": "Follower", "account.followers.empty": "Ancora nessuno segue questo utente.", - "account.followers_counter": "{count, plural, one {{counter} seguace} other {{counter} seguaci}}", + "account.followers_counter": "{count, plural, one {{counter} follower} other {{counter} follower}}", "account.following": "Seguiti", "account.following_counter": "{count, plural, one {{counter} segui} other {{counter} seguiti}}", "account.follows.empty": "Questo utente non segue ancora nessuno.", @@ -78,8 +78,8 @@ "admin.dashboard.retention.cohort": "Mese d'iscrizione", "admin.dashboard.retention.cohort_size": "Nuovi utenti", "admin.impact_report.instance_accounts": "Profili di account che questo eliminerebbe", - "admin.impact_report.instance_followers": "I seguaci che i nostri utenti perderebbero", - "admin.impact_report.instance_follows": "I seguaci che i loro utenti perderebbero", + "admin.impact_report.instance_followers": "I follower che i nostri utenti perderebbero", + "admin.impact_report.instance_follows": "I follower che i loro utenti perderebbero", "admin.impact_report.title": "Riepilogo dell'impatto", "alert.rate_limited.message": "Sei pregato di riprovare dopo le {retry_time, time, medium}.", "alert.rate_limited.title": "Limitazione per eccesso di richieste", @@ -125,7 +125,7 @@ "column.directory": "Sfoglia profili", "column.domain_blocks": "Domini bloccati", "column.favourites": "Preferiti", - "column.firehose": "Feed dal vivo", + "column.firehose": "Feed in diretta", "column.follow_requests": "Richieste di seguirti", "column.home": "Home", "column.lists": "Liste", @@ -152,7 +152,7 @@ "compose_form.direct_message_warning_learn_more": "Scopri di più", "compose_form.encryption_warning": "I post su Mastodon non sono crittografati end-to-end. Non condividere alcuna informazione sensibile su Mastodon.", "compose_form.hashtag_warning": "Questo post non sarà elencato sotto alcun hashtag, poiché non è pubblico. Solo i post pubblici possono essere cercati per hashtag.", - "compose_form.lock_disclaimer": "Il tuo profilo non è {locked}. Chiunque può seguirti per visualizzare i tuoi post per soli seguaci.", + "compose_form.lock_disclaimer": "Il tuo profilo non è {locked}. Chiunque può seguirti per visualizzare i tuoi post per soli follower.", "compose_form.lock_disclaimer.lock": "bloccato", "compose_form.placeholder": "Cos'hai in mente?", "compose_form.poll.duration": "Durata del sondaggio", @@ -223,8 +223,8 @@ "domain_block_modal.they_cant_follow": "Nessuno da questo server può seguirti.", "domain_block_modal.they_wont_know": "Non sapranno di essere stati bloccati.", "domain_block_modal.title": "Bloccare il dominio?", - "domain_block_modal.you_will_lose_num_followers": "Perderai {followersCount, plural, one {{followersCountDisplay} seguace} other {{followersCountDisplay} seguaci}} e {followingCount, plural, one {{followingCountDisplay} persona che segui} other {{followingCountDisplay} persone che segui}}.", - "domain_block_modal.you_will_lose_relationships": "Perderai tutti i seguaci e le persone che segui da questo server.", + "domain_block_modal.you_will_lose_num_followers": "Perderai {followersCount, plural, one {{followersCountDisplay} follower} other {{followersCountDisplay} follower}} e {followingCount, plural, one {{followingCountDisplay} persona che segui} other {{followingCountDisplay} persone che segui}}.", + "domain_block_modal.you_will_lose_relationships": "Perderai tutti i follower e le persone che segui da questo server.", "domain_block_modal.you_wont_see_posts": "Non vedrai post o notifiche dagli utenti su questo server.", "domain_pill.activitypub_lets_connect": "Ti consente di connetterti e interagire con le persone non solo su Mastodon, ma anche su diverse app social.", "domain_pill.activitypub_like_language": "ActivityPub è come la lingua che Mastodon parla con altri social network.", @@ -237,7 +237,7 @@ "domain_pill.who_they_are": "Poiché i nomi univoci indicano chi sia qualcuno e dove si trovi, puoi interagire con le persone attraverso la rete sociale delle .", "domain_pill.who_you_are": "Poiché il tuo nome univoco indica chi tu sia e dove ti trovi, le persone possono interagire con te sulla rete sociale delle .", "domain_pill.your_handle": "Il tuo nome univoco:", - "domain_pill.your_server": "La tua casa digitale, dove vivono tutti i tuoi post. Non ti piace questa? Cambia server in qualsiasi momento e porta con te anche i tuoi seguaci.", + "domain_pill.your_server": "La tua casa digitale, dove vivono tutti i tuoi post. Non ti piace questa? Cambia server in qualsiasi momento e porta con te anche i tuoi follower.", "domain_pill.your_username": "Il tuo identificatore univoco su questo server. È possibile trovare utenti con lo stesso nome utente su server diversi.", "embed.instructions": "Incorpora questo post sul tuo sito web, copiando il seguente codice.", "embed.preview": "Ecco come apparirà:", @@ -324,7 +324,7 @@ "follow_suggestions.hints.most_followed": "Questo profilo è uno dei più seguiti su {domain}.", "follow_suggestions.hints.most_interactions": "Recentemente, questo profilo ha ricevuto molta attenzione su {domain}.", "follow_suggestions.hints.similar_to_recently_followed": "Questo profilo è simile ai profili che hai seguito più recentemente.", - "follow_suggestions.personalized_suggestion": "Suggerimenti personalizzati", + "follow_suggestions.personalized_suggestion": "Suggerimento personalizzato", "follow_suggestions.popular_suggestion": "Suggerimento frequente", "follow_suggestions.popular_suggestion_longer": "Popolare su {domain}", "follow_suggestions.similar_to_recently_followed_longer": "Simile ai profili che hai seguito di recente", @@ -356,15 +356,15 @@ "hashtag.follow": "Segui l'hashtag", "hashtag.unfollow": "Smetti di seguire l'hashtag", "hashtags.and_other": "…e {count, plural, other {# in più}}", - "hints.profiles.followers_may_be_missing": "I seguaci per questo profilo potrebbero essere mancanti.", + "hints.profiles.followers_may_be_missing": "I follower per questo profilo potrebbero essere mancanti.", "hints.profiles.follows_may_be_missing": "I profili seguiti per questo profilo potrebbero essere mancanti.", "hints.profiles.posts_may_be_missing": "Alcuni post da questo profilo potrebbero essere mancanti.", - "hints.profiles.see_more_followers": "Vedi altri seguaci su {domain}", + "hints.profiles.see_more_followers": "Vedi altri follower su {domain}", "hints.profiles.see_more_follows": "Vedi altri profili seguiti su {domain}", "hints.profiles.see_more_posts": "Vedi altri post su {domain}", "hints.threads.replies_may_be_missing": "Le risposte da altri server potrebbero essere mancanti.", "hints.threads.see_more": "Vedi altre risposte su {domain}", - "home.column_settings.show_reblogs": "Mostra reblog", + "home.column_settings.show_reblogs": "Mostra le condivisioni", "home.column_settings.show_replies": "Mostra risposte", "home.hide_announcements": "Nascondi annunci", "home.pending_critical_update.body": "Ti preghiamo di aggiornare il tuo server di Mastodon, il prima possibile!", @@ -384,10 +384,10 @@ "ignore_notifications_modal.private_mentions_title": "Ignorare le notifiche provenienti da menzioni private indesiderate?", "interaction_modal.description.favourite": "Con un account su Mastodon, puoi aggiungere questo post ai preferiti per far sapere all'autore che lo apprezzi e salvarlo per dopo.", "interaction_modal.description.follow": "Con un profilo di Mastodon, puoi seguire {name} per ricevere i suoi post nel feed della tua home.", - "interaction_modal.description.reblog": "Con un profilo di Mastodon, puoi rebloggare questo post per condividerlo con i tuoi seguaci.", + "interaction_modal.description.reblog": "Con un account su Mastodon, puoi condividere questo post per condividerlo con i tuoi follower.", "interaction_modal.description.reply": "Con un profilo di Mastodon, puoi rispondere a questo post.", "interaction_modal.login.action": "Portami alla pagina iniziale", - "interaction_modal.login.prompt": "Dominio del tuo server principale, ad esempio mastodon.social", + "interaction_modal.login.prompt": "Dominio del tuo server principale, per esempio mastodon.social", "interaction_modal.no_account_yet": "Non su Mastodon?", "interaction_modal.on_another_server": "Su un altro server", "interaction_modal.on_this_server": "Su questo server", @@ -486,7 +486,7 @@ "navigation_bar.filters": "Parole silenziate", "navigation_bar.follow_requests": "Richieste di seguirti", "navigation_bar.followed_tags": "Hashtag seguiti", - "navigation_bar.follows_and_followers": "Seguiti e seguaci", + "navigation_bar.follows_and_followers": "Seguiti e follower", "navigation_bar.lists": "Liste", "navigation_bar.logout": "Disconnettiti", "navigation_bar.moderation": "Moderazione", @@ -533,9 +533,9 @@ "notification.reblog.name_and_others_with_link": "{name} e {count, plural, one {# altro} other {altri #}} hanno condiviso il tuo post", "notification.relationships_severance_event": "Connessioni perse con {name}", "notification.relationships_severance_event.account_suspension": "Un amministratore da {from} ha sospeso {target}, il che significa che non puoi più ricevere aggiornamenti da loro o interagire con loro.", - "notification.relationships_severance_event.domain_block": "Un amministratore da {from} ha bloccato {target}, inclusi {followersCount} dei tuoi seguaci e {followingCount, plural, one {# account} other {# account}} che segui.", + "notification.relationships_severance_event.domain_block": "Un amministratore da {from} ha bloccato {target}, inclusi {followersCount} dei tuoi follower e {followingCount, plural, one {# account} other {# account}} che segui.", "notification.relationships_severance_event.learn_more": "Scopri di più", - "notification.relationships_severance_event.user_domain_block": "Tu hai bloccato {target}, rimuovendo {followersCount} dei tuoi seguaci e {followingCount, plural, one {# account} other {# account}} che segui.", + "notification.relationships_severance_event.user_domain_block": "Hai bloccato {target}, rimuovendo {followersCount} dei tuoi follower e {followingCount, plural, one {# account} other {# account}} che segui.", "notification.status": "{name} ha appena pubblicato un post", "notification.update": "{name} ha modificato un post", "notification_requests.accept": "Accetta", @@ -566,7 +566,7 @@ "notifications.column_settings.favourite": "Preferiti:", "notifications.column_settings.filter_bar.advanced": "Mostra tutte le categorie", "notifications.column_settings.filter_bar.category": "Barra del filtro veloce", - "notifications.column_settings.follow": "Nuovi seguaci:", + "notifications.column_settings.follow": "Nuovi follower:", "notifications.column_settings.follow_request": "Nuove richieste di seguirti:", "notifications.column_settings.group": "Gruppo", "notifications.column_settings.mention": "Menzioni:", @@ -648,7 +648,7 @@ "onboarding.steps.share_profile.title": "Condividi il tuo profilo", "onboarding.tips.2fa": "Lo sapevi? Puoi proteggere il tuo account impostando l'autenticazione a due fattori nelle impostazioni del tuo account. Funziona con qualsiasi app TOTP di tua scelta, nessun numero di telefono necessario!", "onboarding.tips.accounts_from_other_servers": "Lo sapevi? Dal momento che Mastodon è decentralizzato, alcuni profili che incontrerai sono ospitati su server diversi dal tuo. Ma puoi interagire con loro senza problemi! Il loro server è nella seconda metà del loro nome utente!", - "onboarding.tips.migration": "Lo sapevi? Se ritieni che {domain} non sia un'ottima scelta di server per te in futuro, puoi spostarti su un altro server Mastodon senza perdere i tuoi seguaci. Puoi persino ospitare il tuo server!", + "onboarding.tips.migration": "Lo sapevi? Se ritieni che {domain} non sia un'ottima scelta di server per te in futuro, puoi spostarti su un altro server Mastodon senza perdere i tuoi follower. Puoi persino ospitare il tuo server!", "onboarding.tips.verification": "Lo sapevi? Puoi verificare il tuo account inserendo un collegamento al tuo profilo Mastodon sul tuo sito web e aggiungendo il sito web al tuo profilo. Nessuna spesa o documento necessario!", "password_confirmation.exceeds_maxlength": "La conferma della password supera la lunghezza massima della password", "password_confirmation.mismatching": "Le password non corrispondono", diff --git a/app/javascript/mastodon/locales/kab.json b/app/javascript/mastodon/locales/kab.json index 5deee4f463..bc8b9cdeb3 100644 --- a/app/javascript/mastodon/locales/kab.json +++ b/app/javascript/mastodon/locales/kab.json @@ -86,6 +86,7 @@ "boost_modal.reblog": "Zuzer tasuffeɣt?", "bundle_column_error.copy_stacktrace": "Nɣel tuccḍa n uneqqis", "bundle_column_error.error.title": "Uh, ala !", + "bundle_column_error.network.body": "Teḍra-d tuccḍa deg usali n usebter-a. Aya yezmer ad yili d ugur akudan deg tuqqna-inek·inem ɣer internet neɣ deg uqeddac-a.", "bundle_column_error.network.title": "Tuccḍa deg uẓeṭṭa", "bundle_column_error.retry": "Ɛreḍ tikelt-nniḍen", "bundle_column_error.return": "Uɣal ɣer ugejdan", @@ -163,6 +164,7 @@ "confirmations.logout.title": "Tebɣiḍ ad teffɣeḍ ssya?", "confirmations.mute.confirm": "Sgugem", "confirmations.redraft.confirm": "Kkes sakin ɛiwed tira", + "confirmations.redraft.title": "Kkes sakin ɛiwed tira n tsuffeɣt?", "confirmations.reply.confirm": "Err", "confirmations.reply.message": "Tiririt akka tura ad k-degger izen-agi i tettaruḍ. Tebɣiḍ ad tkemmleḍ?", "confirmations.unfollow.confirm": "Ur ḍḍafaṛ ara", @@ -291,6 +293,7 @@ "hashtag.counter_by_uses": "{count, plural, one {{counter} n tsuffeɣt} other {{counter} n tsuffaɣ}}", "hashtag.counter_by_uses_today": "{count, plural, one {{counter} n tsuffeɣt} other {{counter} n tsuffaɣ}} ass-a", "hashtag.follow": "Ḍfeṛ ahacṭag", + "hashtag.unfollow": "Ḥbes aḍfar n uhacṭag", "hashtags.and_other": "…d {count, plural, one {}other {# nniḍen}}", "hints.profiles.see_more_posts": "Wali ugar n tsuffaɣ ɣef {domain}", "hints.threads.replies_may_be_missing": "Tiririyin d-yusan deg iqeddacen nniḍen, yezmer ur d-ddant ara.", @@ -420,6 +423,7 @@ "notification.follow": "iṭṭafar-ik·em-id {name}", "notification.follow.name_and_others": "{name} akked {count, plural, one {# nniḍen} other {# nniḍen}} iḍfeṛ-k·m-id", "notification.follow_request": "{name} yessuter-d ad k·m-yeḍfeṛ", + "notification.follow_request.name_and_others": "{name} d {count, plural, one {# nnayeḍ} other {# nniḍen}} yessuter-d ad k·kem-yeḍfer", "notification.label.mention": "Abdar", "notification.label.private_mention": "Abdar uslig", "notification.label.private_reply": "Tiririt tusligt", diff --git a/app/javascript/mastodon/locales/kk.json b/app/javascript/mastodon/locales/kk.json index 4830499124..d1cec06b96 100644 --- a/app/javascript/mastodon/locales/kk.json +++ b/app/javascript/mastodon/locales/kk.json @@ -80,6 +80,7 @@ "alert.rate_limited.title": "Бағалау шектеулі", "alert.unexpected.message": "Бір нәрсе дұрыс болмады.", "alert.unexpected.title": "Өй!", + "alt_text_badge.title": "Балама мазмұны", "announcement.announcement": "Хабарландыру", "boost_modal.combo": "Келесіде өткізіп жіберу үшін басыңыз {combo}", "bundle_column_error.retry": "Қайтадан көріңіз", diff --git a/app/javascript/mastodon/locales/ko.json b/app/javascript/mastodon/locales/ko.json index 72a2d87d44..358656e4e9 100644 --- a/app/javascript/mastodon/locales/ko.json +++ b/app/javascript/mastodon/locales/ko.json @@ -21,7 +21,7 @@ "account.blocked": "차단함", "account.cancel_follow_request": "팔로우 취소", "account.copy": "프로필 링크 복사", - "account.direct": "@{name} 님에게 개인적으로 멘션", + "account.direct": "@{name} 님에게 개인 멘션", "account.disable_notifications": "@{name} 의 게시물 알림 끄기", "account.domain_blocked": "도메인 차단함", "account.edit_profile": "프로필 편집", @@ -89,14 +89,14 @@ "announcement.announcement": "공지사항", "attachments_list.unprocessed": "(처리 안 됨)", "audio.hide": "소리 숨기기", - "block_modal.remote_users_caveat": "우리는 {domain} 서버가 당신의 결정을 존중해 주길 부탁할 것입니다. 하지만 몇몇 서버는 차단을 다르게 취급할 수 있기 때문에 규정이 준수되는 것을 보장할 수는 없습니다. 공개 게시물은 로그인 하지 않은 사용자들에게 여전히 보여질 수 있습니다.", + "block_modal.remote_users_caveat": "{domain} 서버에 요청을 보냈습니다. 하지만 일부 서버는 차단 처리 방식이 달라 반영되지 않을 수 있습니다. 또한 공개 게시물은 로그인하지 않은 사용자들에게 계속 노출될 수 있습니다.", "block_modal.show_less": "간략히 보기", "block_modal.show_more": "더 보기", "block_modal.they_cant_mention": "나를 멘션하거나 팔로우 할 수 없습니다.", - "block_modal.they_cant_see_posts": "내가 작성한 게시물을 볼 수 없고 나도 그가 작성한 게시물을 보지 않게 됩니다.", + "block_modal.they_cant_see_posts": "상대방이 내 게시물을 볼 수 없게 되며 나도 상대방의 게시물을 볼 수 없게 됩니다.", "block_modal.they_will_know": "자신이 차단 당했다는 사실을 확인할 수 있습니다.", "block_modal.title": "사용자를 차단할까요?", - "block_modal.you_wont_see_mentions": "그를 멘션하는 게시물을 더는 보지 않습니다.", + "block_modal.you_wont_see_mentions": "해당 사용자를 멘션한 게시물이 보이지 않게 됩니다.", "boost_modal.combo": "다음엔 {combo}를 눌러서 이 과정을 건너뛸 수 있습니다", "boost_modal.reblog": "게시물을 부스트할까요?", "boost_modal.undo_reblog": "게시물을 부스트 취소할까요?", @@ -121,7 +121,7 @@ "column.blocks": "차단한 사용자", "column.bookmarks": "북마크", "column.community": "로컬 타임라인", - "column.direct": "개인적인 멘션", + "column.direct": "개인 멘션", "column.directory": "프로필 둘러보기", "column.domain_blocks": "차단한 도메인", "column.favourites": "좋아요", @@ -218,7 +218,7 @@ "dismissable_banner.explore_tags": "이 해시태그들은 이 서버와 분산화된 네트워크의 다른 서버에서 사람들의 인기를 끌고 있는 것들입니다.", "dismissable_banner.public_timeline": "이것들은 {domain}에 있는 사람들이 팔로우한 사람들의 최신 공개 게시물들입니다.", "domain_block_modal.block": "서버 차단", - "domain_block_modal.block_account_instead": "대신 @{name}를 차단", + "domain_block_modal.block_account_instead": "대신 @{name} 차단", "domain_block_modal.they_can_interact_with_old_posts": "이 서버에 있는 사람들이 내 예전 게시물에 상호작용할 수는 있습니다.", "domain_block_modal.they_cant_follow": "이 서버의 누구도 나를 팔로우 할 수 없습니다.", "domain_block_modal.they_wont_know": "내가 차단했다는 사실을 모를 것입니다.", @@ -227,19 +227,19 @@ "domain_block_modal.you_will_lose_relationships": "이 서버의 팔로워와 팔로우를 모두 잃게 됩니다.", "domain_block_modal.you_wont_see_posts": "이 서버 사용자의 게시물이나 알림을 보지 않게 됩니다.", "domain_pill.activitypub_lets_connect": "이것은 마스토돈 뿐만이 아니라 다른 소셜 앱들을 넘나들며 사람들을 연결하고 상호작용 할 수 있게 합니다.", - "domain_pill.activitypub_like_language": "액티비티펍은 마스토돈이 다른 소셜 네트워크와 대화할 때 쓰는 언어 같은 것입니다.", + "domain_pill.activitypub_like_language": "액티비티펍은 마스토돈이 다른 소셜 네트워크와 대화할 때 사용하는 언어입니다.", "domain_pill.server": "서버", "domain_pill.their_handle": "이 사람의 핸들:", - "domain_pill.their_server": "그의 게시물이 살고 있는 디지털 거처입니다.", - "domain_pill.their_username": "그의 서버에서 유일한 식별자입니다. 다른 서버에서 같은 사용자명을 가진 사용자를 찾을 수도 있습니다.", + "domain_pill.their_server": "작성한 모든 글들이 담겨있는 디지털 공간입니다.", + "domain_pill.their_username": "서버 내에서 사용되는 고유 식별자입니다. 서버마다 동일한 사용자명이 존재할 수 있습니다.", "domain_pill.username": "사용자명", "domain_pill.whats_in_a_handle": "핸들엔 무엇이 담겨 있나요?", - "domain_pill.who_they_are": "핸들은 어디에 있는 누구인지를 나타내기 때문에 들의 소셜 웹을 넘나들며 사람들과 상호작용 할 수 있습니다.", - "domain_pill.who_you_are": "내 핸들은 내가 어디에 있는 누군지 나타내기 때문에 사람들은 을 통해 소셜 웹을 넘나들며 나와 상호작용 할 수 있습니다.", + "domain_pill.who_they_are": "핸들은 사용자가 누구이며 어디에 있는지 알려주므로 어디에서든 사람들과 자유롭게 소통할 수 있습니다.", + "domain_pill.who_you_are": "사용자의 핸들은 본인이 누구이며 어디에 있는지 나타내므로 어디에서든 사용자님과 소통할 수 있습니다.", "domain_pill.your_handle": "내 핸들:", - "domain_pill.your_server": "내 게시물들이 살고 있는 나의 디지털 거처입니다. 마음에 들지 않나요? 팔로워를 데리고 언제든지 다른 서버로 거처를 옮길 수도 있습니다.", + "domain_pill.your_server": "작성한 모든 글들이 담기는 디지털 공간입니다. 지금 서버가 마음에 들지 않나요? 언제든지 팔로워와 함께 서버를 이전할 수 있습니다.", "domain_pill.your_username": "이 서버에서 유일한 내 식별자입니다. 다른 서버에서 같은 사용자명을 가진 사용자를 찾을 수도 있습니다.", - "embed.instructions": "아래의 코드를 복사하여 대화를 원하는 곳으로 공유하세요.", + "embed.instructions": "아래 코드를 복사하여 이 게시물을 사용자님의 웹사이트에 임베드하세요.", "embed.preview": "이렇게 표시됩니다:", "emoji_button.activity": "활동", "emoji_button.clear": "지우기", @@ -263,11 +263,11 @@ "empty_column.blocks": "아직 아무도 차단하지 않았습니다.", "empty_column.bookmarked_statuses": "아직 북마크에 저장한 게시물이 없습니다. 게시물을 북마크 지정하면 여기에 나타납니다.", "empty_column.community": "로컬 타임라인에 아무것도 없습니다. 아무거나 적어 보세요!", - "empty_column.direct": "개인적인 멘션이 없습니다. 보내거나 받으면 여기에 표시됩니다.", + "empty_column.direct": "개인 멘션이 없습니다. 보내거나 받으면 여기에 표시됩니다.", "empty_column.domain_blocks": "아직 차단한 도메인이 없습니다.", "empty_column.explore_statuses": "아직 유행하는 것이 없습니다. 나중에 다시 확인하세요!", "empty_column.favourited_statuses": "아직 좋아요한 게시물이 없습니다. 게시물을 좋아요 하면 여기에 나타납니다.", - "empty_column.favourites": "아직 아무도 이 게시물을 좋아요를 하지 않았습니다. 누군가 좋아요를 하면 여기에 나타납니다.", + "empty_column.favourites": "아직 아무도 이 게시물에 좋아요를 표시하지 않았습니다. 누군가 좋아요를 표시하면 여기서 확인할 수 있습니다.", "empty_column.follow_requests": "아직 팔로우 요청이 없습니다. 요청을 받았을 때 여기에 나타납니다.", "empty_column.followed_tags": "아직 아무 해시태그도 팔로우하고 있지 않습니다. 해시태그를 팔로우하면, 여기에 표시됩니다.", "empty_column.hashtag": "이 해시태그는 아직 사용되지 않았습니다.", @@ -278,10 +278,10 @@ "empty_column.notification_requests": "깔끔합니다! 여기엔 아무 것도 없습니다. 알림을 받게 되면 설정에 따라 여기에 나타나게 됩니다.", "empty_column.notifications": "아직 알림이 없습니다. 다른 사람들이 당신에게 반응했을 때, 여기에서 볼 수 있습니다.", "empty_column.public": "여기엔 아직 아무 것도 없습니다! 공개적으로 무언가 포스팅하거나, 다른 서버의 사용자를 팔로우 해서 채워보세요", - "error.unexpected_crash.explanation": "버그 혹은 브라우저 호환성 문제로 이 페이지를 올바르게 표시할 수 없습니다.", - "error.unexpected_crash.explanation_addons": "이 페이지는 올바르게 보여질 수 없습니다. 브라우저 애드온이나 자동 번역 도구 등으로 인해 발생된 에러일 수 있습니다.", + "error.unexpected_crash.explanation": "버그 혹은 브라우저 호환성 문제로 이 페이지를 불러올 수 없습니다.", + "error.unexpected_crash.explanation_addons": "이 페이지를 불러올 수 없습니다. 브라우저 확장 프로그램이나 자동 번역 도구로 인해 발생된 오류일 수 있습니다.", "error.unexpected_crash.next_steps": "페이지를 새로고침 해보세요. 그래도 해결되지 않는 경우, 다른 브라우저나 네이티브 앱으로도 마스토돈을 이용하실 수 있습니다.", - "error.unexpected_crash.next_steps_addons": "그걸 끄고 페이지를 새로고침 해보세요. 그래도 해결되지 않으면, 다른 브라우저나 네이티브 앱으로 마스토돈을 이용해 보실 수 있습니다.", + "error.unexpected_crash.next_steps_addons": "해당 기능을 비활성화한 뒤 다시 시도해 보세요. 여전히 해결되지 않는다면 다른 브라우저나 앱을 통해 마스토돈을 이용하실 수 있습니다.", "errors.unexpected_crash.copy_stacktrace": "에러 내용을 클립보드에 복사", "errors.unexpected_crash.report_issue": "문제 신고", "explore.search_results": "검색 결과", @@ -314,13 +314,13 @@ "firehose.remote": "다른 서버", "follow_request.authorize": "승인", "follow_request.reject": "거부", - "follow_requests.unlocked_explanation": "귀하의 계정이 잠긴 계정이 아닐지라도, {domain} 스태프는 이 계정들의 팔로우 요청을 수동으로 처리해 주시면 좋겠다고 생각했습니다.", + "follow_requests.unlocked_explanation": "사용자님의 계정이 잠금 상태는 아니지만, {domain} 관리자는 사용자님이 직접 이 계정들의 팔로우 요청을 검토하기를 원하실 수 있다고 판단했습니다.", "follow_suggestions.curated_suggestion": "스태프의 추천", "follow_suggestions.dismiss": "다시 보지 않기", "follow_suggestions.featured_longer": "{domain} 팀이 손수 고름", "follow_suggestions.friends_of_friends_longer": "내가 팔로우한 사람들 사이에서 인기", "follow_suggestions.hints.featured": "이 프로필은 {domain} 팀이 손수 선택했습니다.", - "follow_suggestions.hints.friends_of_friends": "이 프로필은 내가 팔로우 하는 사람들에게서 유명합니다.", + "follow_suggestions.hints.friends_of_friends": "이 프로필은 내가 팔로우 하는 사람들에게 인기가 있습니다.", "follow_suggestions.hints.most_followed": "이 프로필은 {domain}에서 가장 많이 팔로우 된 사람들 중 하나입니다.", "follow_suggestions.hints.most_interactions": "이 프로필은 최근 {domain}에서 많은 관심을 받았습니다.", "follow_suggestions.hints.similar_to_recently_followed": "이 프로필은 내가 최근에 팔로우 한 프로필들과 유사합니다.", @@ -343,13 +343,13 @@ "getting_started.heading": "시작하기", "hashtag.column_header.tag_mode.all": "및 {additional}", "hashtag.column_header.tag_mode.any": "또는 {additional}", - "hashtag.column_header.tag_mode.none": "{additional}를 제외하고", + "hashtag.column_header.tag_mode.none": "{additional} 제외", "hashtag.column_settings.select.no_options_message": "추천할 내용이 없습니다", "hashtag.column_settings.select.placeholder": "해시태그를 입력하세요…", "hashtag.column_settings.tag_mode.all": "모두", "hashtag.column_settings.tag_mode.any": "어느것이든", "hashtag.column_settings.tag_mode.none": "이것들을 제외하고", - "hashtag.column_settings.tag_toggle": "추가 해시태그를 이 컬럼에 추가합니다", + "hashtag.column_settings.tag_toggle": "이 열에 추가 해시태그 포함", "hashtag.counter_by_accounts": "{count, plural, other {참여자 {counter}명}}", "hashtag.counter_by_uses": "{count, plural, other {게시물 {counter}개}}", "hashtag.counter_by_uses_today": "오늘 {count, plural, other {{counter} 개의 게시물}}", @@ -367,11 +367,11 @@ "home.column_settings.show_reblogs": "부스트 표시", "home.column_settings.show_replies": "답글 표시", "home.hide_announcements": "공지사항 숨기기", - "home.pending_critical_update.body": "서둘러 마스토돈 서버를 업데이트 하세요!", + "home.pending_critical_update.body": "서둘러 마스토돈 서버를 업데이트하세요!", "home.pending_critical_update.link": "업데이트 보기", "home.pending_critical_update.title": "긴급 보안 업데이트가 있습니다!", "home.show_announcements": "공지사항 보기", - "ignore_notifications_modal.disclaimer": "마스토돈은 당신이 그들의 알림을 무시했다는 걸 알려줄 수 없습니다. 알림을 무시한다고 해서 메시지가 오지 않는 것은 아닙니다.", + "ignore_notifications_modal.disclaimer": "사용자들은 그들의 알림이 무시되었다는 사실을 알 수 없습니다. 알림을 무시하더라도 해당 사용자가 보내는 메세지는 전송됩니다.", "ignore_notifications_modal.filter_instead": "대신 필터로 거르기", "ignore_notifications_modal.filter_to_act_users": "여전히 사용자를 수락, 거절, 신고할 수 있습니다", "ignore_notifications_modal.filter_to_avoid_confusion": "필터링은 혼란을 예방하는데 도움이 될 수 있습니다", @@ -406,7 +406,7 @@ "keyboard_shortcuts.column": "해당 컬럼에 포커스", "keyboard_shortcuts.compose": "작성창에 포커스", "keyboard_shortcuts.description": "설명", - "keyboard_shortcuts.direct": "개인적인 멘션 컬럼 열기", + "keyboard_shortcuts.direct": "개인 멘션 칼럼 열기", "keyboard_shortcuts.down": "리스트에서 아래로 이동", "keyboard_shortcuts.enter": "게시물 열기", "keyboard_shortcuts.favourite": "게시물 좋아요", @@ -465,12 +465,12 @@ "mute_modal.hide_from_notifications": "알림에서 숨기기", "mute_modal.hide_options": "옵션 숨기기", "mute_modal.indefinite": "내가 뮤트를 해제하기 전까지", - "mute_modal.show_options": "옵션 표시", - "mute_modal.they_can_mention_and_follow": "나를 멘션하거나 팔로우 할 수 있습니다, 다만 나에게 안 보일 것입니다.", - "mute_modal.they_wont_know": "내가 뮤트했다는 사실을 모를 것입니다.", + "mute_modal.show_options": "옵션 보기", + "mute_modal.they_can_mention_and_follow": "그들은 사용자님을 멘션하거나 팔로우할 수 있지만, 사용자님에게는 보이지 않습니다.", + "mute_modal.they_wont_know": "상대방은 자신이 뮤트되었다는 사실을 알 수 없습니다.", "mute_modal.title": "사용자를 뮤트할까요?", "mute_modal.you_wont_see_mentions": "그를 멘션하는 게시물을 더는 보지 않게 됩니다.", - "mute_modal.you_wont_see_posts": "내가 작성한 게시물을 볼 수는 있지만, 나는 그가 작성한 것을 보지 않게 됩니다.", + "mute_modal.you_wont_see_posts": "상대방은 사용자님의 게시물을 볼 수 있지만 사용자님에게는 상대방의 게시물이 보이지 않습니다.", "navigation_bar.about": "정보", "navigation_bar.administration": "관리", "navigation_bar.advanced_interface": "고급 웹 인터페이스에서 열기", @@ -478,7 +478,7 @@ "navigation_bar.bookmarks": "북마크", "navigation_bar.community_timeline": "로컬 타임라인", "navigation_bar.compose": "새 게시물 작성", - "navigation_bar.direct": "개인적인 멘션", + "navigation_bar.direct": "개인 멘션", "navigation_bar.discover": "발견하기", "navigation_bar.domain_blocks": "차단한 도메인", "navigation_bar.explore": "둘러보기", @@ -573,7 +573,7 @@ "notifications.column_settings.poll": "설문 결과:", "notifications.column_settings.push": "푸시 알림", "notifications.column_settings.reblog": "부스트:", - "notifications.column_settings.show": "컬럼에 표시", + "notifications.column_settings.show": "칼럼에서 보기", "notifications.column_settings.sound": "효과음 재생", "notifications.column_settings.status": "새 게시물:", "notifications.column_settings.unread_notifications.category": "읽지 않은 알림", @@ -607,7 +607,7 @@ "notifications.policy.filter_not_following_hint": "내가 수동으로 승인하지 않는 한", "notifications.policy.filter_not_following_title": "내가 팔로우하지 않는 사람들", "notifications.policy.filter_private_mentions_hint": "내가 한 멘션에 단 답글이거나 내가 발신자를 팔로우 한 것이 아닌 이상 걸러집니다", - "notifications.policy.filter_private_mentions_title": "청하지 않은 개인적인 멘션", + "notifications.policy.filter_private_mentions_title": "청하지 않은 개인 멘션", "notifications.policy.title": "알림 조건 설정", "notifications_permission_banner.enable": "데스크탑 알림 활성화", "notifications_permission_banner.how_to_control": "마스토돈이 열려 있지 않을 때에도 알림을 받으려면, 데스크탑 알림을 활성화 하세요. 당신은 어떤 종류의 반응이 데스크탑 알림을 발생할 지를 {icon} 버튼을 통해 세세하게 설정할 수 있습니다.", @@ -787,8 +787,8 @@ "status.copy": "게시물 링크 복사", "status.delete": "삭제", "status.detailed_status": "대화 자세히 보기", - "status.direct": "@{name} 님에게 개인적으로 멘션", - "status.direct_indicator": "개인적인 멘션", + "status.direct": "@{name} 님에게 개인 멘션", + "status.direct_indicator": "개인 멘션", "status.edit": "수정", "status.edited": "{date}에 마지막으로 편집됨", "status.edited_x_times": "{count, plural, other {{count}}} 번 수정됨", diff --git a/app/javascript/mastodon/locales/ku.json b/app/javascript/mastodon/locales/ku.json index faf952cecd..767d170c66 100644 --- a/app/javascript/mastodon/locales/ku.json +++ b/app/javascript/mastodon/locales/ku.json @@ -215,7 +215,7 @@ "empty_column.explore_statuses": "Tiştek niha di rojevê de tune. Paşê vegere!", "empty_column.follow_requests": "Hê jî daxwaza şopandinê tunne ye. Dema daxwazek hat, yê li vir were nîşan kirin.", "empty_column.hashtag": "Di vê hashtagê de hêj tiştekî tune.", - "empty_column.home": "Rojeva demnameya te vala ye! Ji bona tijîkirinê bêtir mirovan bişopîne. {suggestions}", + "empty_column.home": "Rojeva demnameya te vala ye! Bo tijîkirina wê bêtir mirovan bişopîne.", "empty_column.list": "Di vê rêzokê de hîn tiştek tune ye. Gava ku endamên vê rêzokê peyamên nû biweşînin, ew ê li vir xuya bibin.", "empty_column.lists": "Hîn tu rêzokên te tune ne. Dema yekî çê bikî, ew ê li vir xuya bibe.", "empty_column.mutes": "Te tu bikarhêner bêdeng nekiriye.", diff --git a/app/javascript/mastodon/locales/la.json b/app/javascript/mastodon/locales/la.json index 8cbee4a472..ec2d0da28d 100644 --- a/app/javascript/mastodon/locales/la.json +++ b/app/javascript/mastodon/locales/la.json @@ -221,7 +221,7 @@ "notification.update": "{name} nuntium correxit", "notification_requests.accept": "Accipe", "notification_requests.confirm_accept_multiple.message": "Tu es accepturus {count, plural, one {una notitia petitionem} other {# notitia petitiones}}. Certus esne procedere vis?", - "notification_requests.confirm_dismiss_multiple.message": "Tu {count, plural, one {unam petitionem notificationis} other {# petitiones notificationum}} abrogāre prōximum es. {count, plural, one {Illa} other {Eae}} facile accessū nōn erit. Certus es tē procedere velle?", + "notification_requests.confirm_dismiss_multiple.message": "Tu {count, plural, one {unam petitionem notificationis} other {# petitiones notificationum}} abrogāre prōximum es. {count, plural, one {it} other {Eae}} facile accessū nōn erit. Certus es tē procedere velle?", "notifications.filter.all": "Omnia", "notifications.filter.polls": "Eventus electionis", "notifications.group": "{count} Notificātiōnēs", @@ -302,31 +302,90 @@ "status.admin_status": "Open this status in the moderation interface", "status.block": "Impedire @{name}", "status.bookmark": "Signa paginaris", + "status.continued_thread": "Filum continuum", "status.copy": "Copy link to status", "status.delete": "Oblitterare", + "status.detailed_status": "Conspectus colloquii accuratus", + "status.direct": "Privatim mentionem fac @{name}", + "status.direct_indicator": "Mentiō Privāta", "status.edit": "Recolere", + "status.edited": "Novissime editum {date}", "status.edited_x_times": "Emendatum est {count, plural, one {{count} tempus} other {{count} tempora}}", + "status.embed": "Codicem insitum accipe", + "status.favourite": "Dilectum", "status.favourites": "{count, plural, one {favoritum} other {favorita}}", + "status.filter": "Hanc nuntium filtra", "status.history.created": "{name} creatum {date}", "status.history.edited": "{name} correxit {date}", - "status.open": "Expand this status", + "status.load_more": "Onera plura", + "status.media.open": "Preme ut aperias", + "status.media.show": "Preme ut ostendat", + "status.media_hidden": "Media occulta", + "status.mention": "Mentionem fac @{name}", + "status.more": "Plus", + "status.mute": "Tace @{nomen}", + "status.mute_conversation": "Colloquium mutus", + "status.open": "Hanc nuntium expande", + "status.read_more": "Plura lege", + "status.reblog": "Promovere", "status.reblogged_by": "{name} adiuvavit", "status.reblogs": "{count, plural, one {auctus} other {auctūs}}", + "status.reblogs.empty": "Nemo hanc publicationem adhuc promovit. Cum quis eam promoveat, hic apparebunt.", + "status.redraft": "Dele et redig", + "status.remove_bookmark": "Tolle signum", + "status.replied_in_thread": "In filo responsum", + "status.replied_to": "{name} respondit", + "status.reply": "Respondere", + "status.replyAll": "Responde ad filum", + "status.report": "Referre @{name}", + "status.sensitive_warning": "Materia delicata", + "status.share": "Communica", + "status.show_less_all": "Omnibus minus monstra", + "status.show_more_all": "Omnibus plura monstra", + "status.show_original": "Monstra originalem", "status.title.with_attachments": "{user} publicavit {attachmentCount, plural, one {unum annexum} other {{attachmentCount} annexa}}", + "status.translate": "Converte", + "status.translated_from_with": "Translatum ex {lang} per {provider}", + "status.uncached_media_warning": "Praevisum non praesto est", + "status.unmute_conversation": "Conversationem reserare", + "subscribed_languages.lead": "Tantum epistolae in linguis selectis in domo tua apparebunt et indices temporum post mutationem. Neminem eligatis qui epistolas in omnibus linguis recipiat.", + "subscribed_languages.save": "Servare mutationes", + "subscribed_languages.target": "Muta linguas subscriptas pro {target}", "tabs_bar.home": "Domi", + "tabs_bar.notifications": "Acta Vicimediorum", "time_remaining.days": "{number, plural, one {# die} other {# dies}} restant", "time_remaining.hours": "{number, plural, one {# hora} other {# horae}} restant", "time_remaining.minutes": "{number, plural, one {# minutum} other {# minuta}} restant", + "time_remaining.moments": "Momenta reliqua", "time_remaining.seconds": "{number, plural, one {# secundum} other {# secunda}} restant", - "trends.counter_by_accounts": "{count, plural, one {{counter} persōna} other {{counter} persōnae}} in {days, plural, one {diē prīdiē} other {diēbus praeteritīs {days}}}", + "trends.counter_by_accounts": "{count, plural, one {{counter} persōna} other {{counter} persōnae}} in {days, plural, one {days} other {diēbus praeteritīs {days}}}", + "trends.trending_now": "Nunc in usu", "ui.beforeunload": "Si Mastodon discesseris, tua epitome peribit.", "units.short.billion": "{count} millia milionum", "units.short.million": "{count} milionum", "units.short.thousand": "{count} millia", - "upload_button.label": "Imaginēs, vīdeō aut fīle audītūs adde", + "upload_area.title": "Trahe et depone ad imponendum", + "upload_button.label": "Adde imagines, pelliculam, aut fasciculum sonorum.", + "upload_error.limit": "Limes onerationis superatus est.", + "upload_error.poll": "Nullis suffragiis licet fascicula imponere.", "upload_form.audio_description": "Describe for people who are hard of hearing", + "upload_form.drag_and_drop.instructions": "Ad annexum mediorum tollendum, preme clavem \"Space\" aut \"Enter\". Dum traheis, utere clavibus sagittariis ad annexum mediorum in quamlibet partem movendum. Preme iterum \"Space\" aut \"Enter\" ad annexum mediorum in novo loco deponendum, aut preme \"Escape\" ad desinendum.", + "upload_form.drag_and_drop.on_drag_cancel": "Tractatio revocata est. Adiunctum medium {item} demissum est.", + "upload_form.drag_and_drop.on_drag_end": "Adhaesum medium {item} demissum est.", + "upload_form.drag_and_drop.on_drag_over": "Adhaesum medium {item} motum est.", + "upload_form.drag_and_drop.on_drag_start": "Adhaesum medium {item} sublatum est.", "upload_form.edit": "Recolere", "upload_modal.description_placeholder": "A velox brunneis vulpes salit super piger canis", - "upload_progress.label": "Uploading…", - "video.mute": "Confutare soni" + "upload_progress.label": "Oneratur...", + "upload_progress.processing": "Processus…", + "username.taken": "Illud nomen usoris occupatum est. Aliud tenta.", + "video.close": "Pelliculam claude", + "video.download": "Prehendere fasciculus", + "video.exit_fullscreen": "Exitus ex plenum monitorium", + "video.expand": "Expande pelliculam", + "video.fullscreen": "Plenum monitorium", + "video.hide": "celare pellicula", + "video.mute": "Confutare soni", + "video.pause": "intermittere", + "video.play": "gignere" } diff --git a/app/javascript/mastodon/locales/lad.json b/app/javascript/mastodon/locales/lad.json index cb78b7772f..3cd3c556b0 100644 --- a/app/javascript/mastodon/locales/lad.json +++ b/app/javascript/mastodon/locales/lad.json @@ -179,6 +179,7 @@ "confirmations.discard_edit_media.message": "Tienes trokamientos no guadrados en la deskripsion o vista previa. Keres efasarlos entanto?", "confirmations.edit.confirm": "Edita", "confirmations.edit.message": "Si edites agora, kitaras el mesaj kualo estas eskriviendo aktualmente. Estas siguro ke keres fazerlo?", + "confirmations.edit.title": "Sovreeskrivir puvlikasyon?", "confirmations.logout.confirm": "Sal", "confirmations.logout.message": "Estas siguro ke keres salir de tu kuento?", "confirmations.logout.title": "Salir?", @@ -188,6 +189,7 @@ "confirmations.redraft.title": "Efasar i reeskrivir?", "confirmations.reply.confirm": "Arisponde", "confirmations.reply.message": "Si arispondas agora, kitaras el mesaj kualo estas eskriviendo aktualmente. Estas siguro ke keres fazerlo?", + "confirmations.reply.title": "Sovreeskrivir puvlikasyon?", "confirmations.unfollow.confirm": "Desige", "confirmations.unfollow.message": "Estas siguro ke keres deshar de segir a {name}?", "confirmations.unfollow.title": "Desige utilizador?", @@ -725,6 +727,7 @@ "status.bookmark": "Marka", "status.cancel_reblog_private": "No repartaja", "status.cannot_reblog": "Esta publikasyon no se puede repartajar", + "status.continued_thread": "Kontinuasion del filo", "status.copy": "Kopia atadijo de publikasyon", "status.delete": "Efasa", "status.detailed_status": "Vista de konversasyon detalyada", @@ -733,7 +736,9 @@ "status.edit": "Edita", "status.edited": "Ultima edisyon: {date}", "status.edited_x_times": "Editado {count, plural, one {{count} vez} other {{count} vezes}}", + "status.embed": "Obtiene kodiche para enkrustar", "status.favourite": "Te plaze", + "status.favourites": "{count, plural, one {# favorito} other {# favoritos}}", "status.filter": "Filtra esta publikasyon", "status.history.created": "{name} kriyo {date}", "status.history.edited": "{name} edito {date}", @@ -752,6 +757,7 @@ "status.reblog": "Repartaja", "status.reblog_private": "Repartaja kon vizibilita orijinala", "status.reblogged_by": "{name} repartajo", + "status.reblogs": "{count, plural, one {repartajamyento} other {repartajamyentos}}", "status.reblogs.empty": "Ainda nadie tiene repartajado esta publikasyon. Kuando algien lo aga, se amostrara aki.", "status.redraft": "Efasa i eskrive de muevo", "status.remove_bookmark": "Kita markador", diff --git a/app/javascript/mastodon/locales/lt.json b/app/javascript/mastodon/locales/lt.json index 1818218550..3a6f5a1e09 100644 --- a/app/javascript/mastodon/locales/lt.json +++ b/app/javascript/mastodon/locales/lt.json @@ -12,7 +12,7 @@ "about.powered_by": "Decentralizuota socialinė medija, veikianti pagal „{mastodon}“", "about.rules": "Serverio taisyklės", "account.account_note_header": "Asmeninė pastaba", - "account.add_or_remove_from_list": "Pridėti arba pašalinti iš sąrašų", + "account.add_or_remove_from_list": "Įtraukti arba šalinti iš sąrašų", "account.badges.bot": "Automatizuotas", "account.badges.group": "Grupė", "account.block": "Blokuoti @{name}", @@ -29,14 +29,14 @@ "account.endorse": "Rodyti profilyje", "account.featured_tags.last_status_at": "Paskutinis įrašas {date}", "account.featured_tags.last_status_never": "Nėra įrašų", - "account.featured_tags.title": "{name} rodomi saitažodžiai", + "account.featured_tags.title": "{name} rekomenduojamos grotažymės", "account.follow": "Sekti", "account.follow_back": "Sekti atgal", "account.followers": "Sekėjai", "account.followers.empty": "Šio naudotojo dar niekas neseka.", "account.followers_counter": "{count, plural, one {{counter} sekėjas} few {{counter} sekėjai} many {{counter} sekėjo} other {{counter} sekėjų}}", "account.following": "Sekama", - "account.following_counter": "{count, plural, one {{counter} sekimas} few {{counter} sekimai} many {{counter} sekimo} other {{counter} sekimų}}", + "account.following_counter": "{count, plural, one {{counter} seka} few {{counter} seka} many {{counter} seka} other {{counter} seka}}", "account.follows.empty": "Šis naudotojas dar nieko neseka.", "account.go_to_profile": "Eiti į profilį", "account.hide_reblogs": "Slėpti pasidalinimus iš @{name}", @@ -92,7 +92,7 @@ "block_modal.remote_users_caveat": "Paprašysime serverio {domain} gerbti tavo sprendimą. Tačiau atitiktis negarantuojama, nes kai kurie serveriai gali skirtingai tvarkyti blokavimus. Vieši įrašai vis tiek gali būti matomi neprisijungusiems naudotojams.", "block_modal.show_less": "Rodyti mažiau", "block_modal.show_more": "Rodyti daugiau", - "block_modal.they_cant_mention": "Jie negali tave paminėti ar sekti.", + "block_modal.they_cant_mention": "Jie negali tau parašyti ar sekti.", "block_modal.they_cant_see_posts": "Jie negali matyti tavo įrašus, o tu nematysi jų.", "block_modal.they_will_know": "Jie gali matyti, kad yra užblokuoti.", "block_modal.title": "Blokuoti naudotoją?", @@ -121,7 +121,7 @@ "column.blocks": "Užblokuoti naudotojai", "column.bookmarks": "Žymės", "column.community": "Vietinė laiko skalė", - "column.direct": "Privatūs paminėjimai", + "column.direct": "Paminėjimai", "column.directory": "Naršyti profilius", "column.domain_blocks": "Užblokuoti serveriai", "column.favourites": "Mėgstami", @@ -151,7 +151,7 @@ "compose.saved.body": "Įrašas išsaugotas.", "compose_form.direct_message_warning_learn_more": "Sužinoti daugiau", "compose_form.encryption_warning": "„Mastodon“ įrašai nėra visapusiškai šifruojami. Per „Mastodon“ nesidalyk jokia slapta informacija.", - "compose_form.hashtag_warning": "Šis įrašas nebus įtrauktas į jokį saitažodį, nes ji nėra vieša. Tik viešų įrašų galima ieškoti pagal saitažodį.", + "compose_form.hashtag_warning": "Šis įrašas nebus įtrauktas į jokį grotažodį, nes jis nėra viešas. Tik vieši įrašai gali būti ieškomi pagal grotažymę.", "compose_form.lock_disclaimer": "Tavo paskyra nėra {locked}. Bet kas gali sekti tave ir peržiūrėti tik sekėjams skirtus įrašus.", "compose_form.lock_disclaimer.lock": "užrakinta", "compose_form.placeholder": "Kas tavo mintyse?", @@ -215,7 +215,7 @@ "dismissable_banner.dismiss": "Atmesti", "dismissable_banner.explore_links": "Tai – naujienos, kuriomis šiandien daugiausiai bendrinamasi socialiniame saityne. Naujesnės naujienų istorijos, kurias paskelbė daugiau skirtingų žmonių, vertinamos aukščiau.", "dismissable_banner.explore_statuses": "Tai – įrašai iš viso socialinio saityno, kurie šiandien sulaukia daug dėmesio. Naujesni įrašai, turintys daugiau pasidalinimų ir mėgstamų, vertinami aukščiau.", - "dismissable_banner.explore_tags": "Tai – saitažodžiai, kurie šiandien sulaukia daug dėmesio socialiniame saityne. Saitažodžiai, kuriuos naudoja daugiau skirtingų žmonių, vertinami aukščiau.", + "dismissable_banner.explore_tags": "Tai – grotažymės, kurios šiandien sulaukia daug dėmesio socialiniame tinkle. Grotažymės, kuriuos naudoja daugiau skirtingų žmonių, vertinami aukščiau.", "dismissable_banner.public_timeline": "Tai – naujausi vieši įrašai iš žmonių socialiniame saityne, kuriuos serveryje {domain} seka žmonės.", "domain_block_modal.block": "Blokuoti serverį", "domain_block_modal.block_account_instead": "Blokuoti @{name} vietoj to", @@ -261,18 +261,18 @@ "empty_column.account_timeline": "Nėra čia įrašų.", "empty_column.account_unavailable": "Profilis neprieinamas.", "empty_column.blocks": "Dar neužblokavai nė vieno naudotojo.", - "empty_column.bookmarked_statuses": "Dar neturi nė vienos įrašo pridėtos žymės. Kai vieną iš jų pridėsi į žymes, jis bus rodomas čia.", + "empty_column.bookmarked_statuses": "Dar neturi nė vienos įrašo su žyma. Kai vieną žymų pridėsi prie įrašo, jis bus rodomas čia.", "empty_column.community": "Vietinė laiko skalė yra tuščia. Parašyk ką nors viešai, kad pradėtum sąveikauti.", - "empty_column.direct": "Dar neturi jokių privačių paminėjimų. Kai išsiųsi arba gausi vieną iš jų, jis bus rodomas čia.", + "empty_column.direct": "Dar neturi jokių asmeninių susirašinėjimų (su žyma @). Kai išsiųsi arba gausi vieną iš jų, jis bus rodomas čia.", "empty_column.domain_blocks": "Kol kas nėra užblokuotų serverių.", "empty_column.explore_statuses": "Šiuo metu niekas nėra tendencinga. Patikrinkite vėliau!", "empty_column.favourited_statuses": "Dar neturi mėgstamų įrašų. Kai vieną iš jų pamėgsi, jis bus rodomas čia.", "empty_column.favourites": "Šio įrašo dar niekas nepamėgo. Kai kas nors tai padarys, jie bus rodomi čia.", "empty_column.follow_requests": "Dar neturi jokių sekimo prašymų. Kai gausi tokį prašymą, jis bus rodomas čia.", - "empty_column.followed_tags": "Dar neseki jokių saitažodžių. Kai tai padarysi, jie bus rodomi čia.", - "empty_column.hashtag": "Nėra nieko šiame saitažodyje kol kas.", + "empty_column.followed_tags": "Dar neseki jokių grotažymių. Kai tai padarysi, jos bus rodomos čia.", + "empty_column.hashtag": "Šioje gratažymėje kol kas nieko nėra.", "empty_column.home": "Tavo pagrindinio laiko skalė tuščia. Sek daugiau žmonių, kad ją užpildytum.", - "empty_column.list": "Nėra nieko šiame sąraše kol kas. Kai šio sąrašo nariai paskelbs naujų įrašų, jie bus rodomi čia.", + "empty_column.list": "Šiame sąraše dar nieko nėra. Kai šio sąrašo nariai paskelbs naujus įrašus, jie bus rodomi čia.", "empty_column.lists": "Dar neturite jokių sąrašų. Kai sukursite vieną, jis bus rodomas čia.", "empty_column.mutes": "Dar nesi nutildęs (-usi) nė vieno naudotojo.", "empty_column.notification_requests": "Viskas švaru! Čia nieko nėra. Kai gausi naujų pranešimų, jie bus rodomi čia pagal tavo nustatymus.", @@ -289,7 +289,7 @@ "explore.title": "Naršyti", "explore.trending_links": "Naujienos", "explore.trending_statuses": "Įrašai", - "explore.trending_tags": "Saitažodžiai", + "explore.trending_tags": "Grotažymės", "filter_modal.added.context_mismatch_explanation": "Ši filtro kategorija netaikoma kontekstui, kuriame peržiūrėjai šį įrašą. Jei nori, kad įrašas būtų filtruojamas ir šiame kontekste, turėsi redaguoti filtrą.", "filter_modal.added.context_mismatch_title": "Konteksto neatitikimas.", "filter_modal.added.expired_explanation": "Ši filtro kategorija nustojo galioti. Kad ji būtų taikoma, turėsi pakeisti galiojimo datą.", @@ -330,7 +330,7 @@ "follow_suggestions.similar_to_recently_followed_longer": "Panašūs į profilius, kuriuos neseniai seki", "follow_suggestions.view_all": "Peržiūrėti viską", "follow_suggestions.who_to_follow": "Ką sekti", - "followed_tags": "Sekami saitažodžiai", + "followed_tags": "Grotažymės", "footer.about": "Apie", "footer.directory": "Profilių katalogas", "footer.get_app": "Gauti programėlę", @@ -345,16 +345,16 @@ "hashtag.column_header.tag_mode.any": "ar {additional}", "hashtag.column_header.tag_mode.none": "be {additional}", "hashtag.column_settings.select.no_options_message": "Pasiūlymų nerasta.", - "hashtag.column_settings.select.placeholder": "Įvesti saitažodžius…", + "hashtag.column_settings.select.placeholder": "Įvesk grotažymes…", "hashtag.column_settings.tag_mode.all": "Visi šie", - "hashtag.column_settings.tag_mode.any": "Bet kuris iš šių", - "hashtag.column_settings.tag_mode.none": "Nė vienas iš šių", - "hashtag.column_settings.tag_toggle": "Įtraukti papildomas šio stulpelio žymes", - "hashtag.counter_by_accounts": "{count, plural, one {{counter} dalyvis} few {{counter} dalyviai} many {{counter} dalyvio} other {{counter} dalyvių}}", + "hashtag.column_settings.tag_mode.any": "Bet kuris šių", + "hashtag.column_settings.tag_mode.none": "Nei vienas šių", + "hashtag.column_settings.tag_toggle": "Įtraukti papildomas žymas į šį stulpelį", + "hashtag.counter_by_accounts": "{count, plural, one {{counter} dalyvis} few {{counter} dalyviai} many {{counter} dalyvių} other {{counter} dalyviai}}", "hashtag.counter_by_uses": "{count, plural, one {{counter} įrašas} few {{counter} įrašai} many {{counter} įrašo} other {{counter} įrašų}}", "hashtag.counter_by_uses_today": "{count, plural, one {{counter} įrašas} few {{counter} įrašai} many {{counter} įrašo} other {{counter} įrašų}} šiandien", - "hashtag.follow": "Sekti saitažodį", - "hashtag.unfollow": "Nebesekti saitažodį", + "hashtag.follow": "Sekti grotažymę", + "hashtag.unfollow": "Nebesekti grotažymės", "hashtags.and_other": "…ir {count, plural, one {# daugiau} few {# daugiau} many {# daugiau}other {# daugiau}}", "hints.profiles.followers_may_be_missing": "Sekėjai šiai profiliui gali būti nepateikti.", "hints.profiles.follows_may_be_missing": "Sekimai šiai profiliui gali būti nepateikti.", @@ -381,7 +381,7 @@ "ignore_notifications_modal.new_accounts_title": "Ignoruoti pranešimus iš naujų paskyrų?", "ignore_notifications_modal.not_followers_title": "Ignoruoti pranešimus iš žmonių, kurie tave neseka?", "ignore_notifications_modal.not_following_title": "Ignoruoti pranešimus iš žmonių, kuriuos neseki?", - "ignore_notifications_modal.private_mentions_title": "Ignoruoti pranešimus iš neprašytų privačių paminėjimų?", + "ignore_notifications_modal.private_mentions_title": "Ignoruoti pranešimus iš neprašytų privačių susirašinėjimų (su @)?", "interaction_modal.description.favourite": "Su „Mastodon“ paskyra galite pamėgti šį įrašą, kad autorius žinotų, jog vertinate tai ir išsaugoti jį vėliau.", "interaction_modal.description.follow": "Su „Mastodon“ paskyra galite sekti {name}, kad gautumėte jų įrašus pagrindiniame sraute.", "interaction_modal.description.reblog": "Su „Mastodon“ paskyra galite pasidalinti šiuo įrašu, kad bendrintumėte jį su savo sekėjais.", @@ -395,14 +395,14 @@ "interaction_modal.sign_in_hint": "Patarimas: tai svetainė, kurioje užsiregistravote. Jei neprisimenate, ieškokite sveikinimo el. laiško savo gautiejuose. Taip pat galite įvesti visą naudotojo vardą (pvz., @Mastodon@mastodon.social).", "interaction_modal.title.favourite": "Pamėgti {name} įrašą", "interaction_modal.title.follow": "Sekti {name}", - "interaction_modal.title.reblog": "Pakelti {name} įrašą", + "interaction_modal.title.reblog": "Dalintis {name} įrašu", "interaction_modal.title.reply": "Atsakyti į {name} įrašą", "intervals.full.days": "{number, plural, one {# diena} few {# dienos} many {# dienos} other {# dienų}}", "intervals.full.hours": "{number, plural, one {# valanda} few {# valandos} many {# valandos} other {# valandų}}", "intervals.full.minutes": "{number, plural, one {# minutė} few {# minutes} many {# minutės} other {# minučių}}", "keyboard_shortcuts.back": "Naršyti atgal", "keyboard_shortcuts.blocked": "Atidaryti užblokuotų naudotojų sąrašą", - "keyboard_shortcuts.boost": "Pakelti įrašą", + "keyboard_shortcuts.boost": "Dalintis įrašu", "keyboard_shortcuts.column": "Fokusuoti stulpelį", "keyboard_shortcuts.compose": "Fokusuoti rengykles teksto sritį", "keyboard_shortcuts.description": "Aprašymas", @@ -466,10 +466,10 @@ "mute_modal.hide_options": "Slėpti parinktis", "mute_modal.indefinite": "Kol atšauksiu jų nutildymą", "mute_modal.show_options": "Rodyti parinktis", - "mute_modal.they_can_mention_and_follow": "Jie gali tave paminėti ir sekti, bet tu jų nematysi.", + "mute_modal.they_can_mention_and_follow": "Jie gali tave paminėti tave su @ ir sekti tave, bet tu jų nematysi.", "mute_modal.they_wont_know": "Jie nežinos, kad buvo nutildyti.", "mute_modal.title": "Nutildyti naudotoją?", - "mute_modal.you_wont_see_mentions": "Nematysi įrašus, kuriuose jie paminimi.", + "mute_modal.you_wont_see_mentions": "Nematysi įrašų, kuriuose jie paminimi.", "mute_modal.you_wont_see_posts": "Jie vis tiek gali matyti tavo įrašus, bet tu nematysi jų.", "navigation_bar.about": "Apie", "navigation_bar.administration": "Administravimas", @@ -478,14 +478,14 @@ "navigation_bar.bookmarks": "Žymės", "navigation_bar.community_timeline": "Vietinė laiko skalė", "navigation_bar.compose": "Sukurti naują įrašą", - "navigation_bar.direct": "Privatūs paminėjimai", + "navigation_bar.direct": "Paminėjimai", "navigation_bar.discover": "Atrasti", "navigation_bar.domain_blocks": "Užblokuoti domenai", "navigation_bar.explore": "Naršyti", "navigation_bar.favourites": "Mėgstami", "navigation_bar.filters": "Nutildyti žodžiai", "navigation_bar.follow_requests": "Sekimo prašymai", - "navigation_bar.followed_tags": "Sekami saitažodžiai", + "navigation_bar.followed_tags": "Grotažymės", "navigation_bar.follows_and_followers": "Sekimai ir sekėjai", "navigation_bar.lists": "Sąrašai", "navigation_bar.logout": "Atsijungti", @@ -507,9 +507,11 @@ "notification.admin.sign_up": "{name} užsiregistravo", "notification.admin.sign_up.name_and_others": "{name} ir {count, plural, one {# kitas} few {# kiti} many {# kito} other {# kitų}} užsiregistravo", "notification.favourite": "{name} pamėgo tavo įrašą", + "notification.favourite.name_and_others_with_link": "{name} ir {count, plural,one {dar kažkas} few {# kiti} other {# kitų}} pamėgo tavo įrašą", "notification.follow": "{name} seka tave", "notification.follow.name_and_others": "{name} ir {count, plural, one {# kitas} few {# kiti} many {# kito} other {# kitų}} seka tave", "notification.follow_request": "{name} paprašė tave sekti", + "notification.follow_request.name_and_others": "{name} ir {count, plural,one {dar kažkas} few {# kiti} other {# kitų}} pradėjo tave sekti", "notification.label.mention": "Paminėjimas", "notification.label.private_mention": "Privatus paminėjimas", "notification.label.private_reply": "Privatus atsakymas", @@ -520,15 +522,18 @@ "notification.moderation_warning": "Gavai prižiūrėjimo įspėjimą", "notification.moderation_warning.action_delete_statuses": "Kai kurie tavo įrašai buvo pašalintos.", "notification.moderation_warning.action_disable": "Tavo paskyra buvo išjungta.", - "notification.moderation_warning.action_mark_statuses_as_sensitive": "Kai kurie tavo įrašai buvo pažymėtos kaip jautrios.", + "notification.moderation_warning.action_mark_statuses_as_sensitive": "Kai kurie tavo įrašai buvo pažymėti kaip turintys jautrią informaciją.", "notification.moderation_warning.action_none": "Tavo paskyra gavo prižiūrėjimo įspėjimą.", - "notification.moderation_warning.action_sensitive": "Nuo šiol tavo įrašai bus pažymėti kaip jautrūs.", + "notification.moderation_warning.action_sensitive": "Nuo šiol tavo įrašai bus pažymėti kaip su jautria informacija.", "notification.moderation_warning.action_silence": "Tavo paskyra buvo apribota.", "notification.moderation_warning.action_suspend": "Tavo paskyra buvo sustabdyta.", "notification.own_poll": "Tavo apklausa baigėsi", "notification.poll": "Baigėsi apklausa, kurioje balsavai", - "notification.reblog": "{name} pakėlė tavo įrašą", + "notification.reblog": "{name} dalinosi tavo įrašu", + "notification.reblog.name_and_others_with_link": "{name} ir {count, plural,one {dar kažkas} few {# kiti} other {# kitų}} pasidalino tavo įrašu", "notification.relationships_severance_event": "Prarasti sąryšiai su {name}", + "notification.relationships_severance_event.account_suspension": "Administratorius iš {from} sustabdė {target}, todėl jūs nebegalėsite gauti jų naujienų ar bendrauti su jais.", + "notification.relationships_severance_event.domain_block": "Administratorius iš {from} užblokavo {target}, įskaitant {followersCount} iš tavo sekėjų ir {followingCount, plural,one {# žmogų, kurį} few {# žmones, kuriuos} other {# žmonių, kuriuos}} seki.", "notification.relationships_severance_event.learn_more": "Sužinoti daugiau", "notification.relationships_severance_event.user_domain_block": "Tu užblokavai {target}. Pašalinama {followersCount} savo sekėjų ir {followingCount, plural, one {# paskyrą} few {# paskyrai} many {# paskyros} other {# paskyrų}}, kurios seki.", "notification.status": "{name} ką tik paskelbė", @@ -567,7 +572,7 @@ "notifications.column_settings.mention": "Paminėjimai:", "notifications.column_settings.poll": "Balsavimo rezultatai:", "notifications.column_settings.push": "Tiesioginiai pranešimai", - "notifications.column_settings.reblog": "Pakėlimai:", + "notifications.column_settings.reblog": "Pasidalinimai:", "notifications.column_settings.show": "Rodyti stulpelyje", "notifications.column_settings.sound": "Paleisti garsą", "notifications.column_settings.status": "Nauji įrašai:", @@ -575,12 +580,12 @@ "notifications.column_settings.unread_notifications.highlight": "Paryškinti neperskaitytus pranešimus", "notifications.column_settings.update": "Redagavimai:", "notifications.filter.all": "Visi", - "notifications.filter.boosts": "Pakėlimai", + "notifications.filter.boosts": "Pasidalinimai", "notifications.filter.favourites": "Mėgstami", "notifications.filter.follows": "Sekimai", "notifications.filter.mentions": "Paminėjimai", "notifications.filter.polls": "Balsavimo rezultatai", - "notifications.filter.statuses": "Naujinimai iš žmonių, kuriuos seki", + "notifications.filter.statuses": "Naujienos iš žmonių, kuriuos sekate", "notifications.grant_permission": "Suteikti leidimą.", "notifications.group": "{count} pranešimai", "notifications.mark_as_read": "Pažymėti kiekvieną pranešimą kaip perskaitytą", @@ -594,12 +599,15 @@ "notifications.policy.filter": "Filtruoti", "notifications.policy.filter_hint": "Siųsti į filtruotų pranešimų gautiejus", "notifications.policy.filter_limited_accounts_hint": "Apribota serverio prižiūrėtojų", - "notifications.policy.filter_limited_accounts_title": "Prižiūrėmi paskyrai", + "notifications.policy.filter_limited_accounts_title": "Moderuojamos paskyros", "notifications.policy.filter_new_accounts.hint": "Sukurta per {days, plural, one {vieną dieną} few {# dienas} many {# dienos} other {# dienų}}", "notifications.policy.filter_new_accounts_title": "Naujos paskyros", + "notifications.policy.filter_not_followers_hint": "Įskaitant žmones, kurie seka jus mažiau nei {days, plural, one {vieną dieną} few {# dienas} many {# dienų} other {# dienų}}", + "notifications.policy.filter_not_followers_title": "Žmonės, kurie neseka tavęs", "notifications.policy.filter_not_following_hint": "Kol jų nepatvirtinsi rankiniu būdu", "notifications.policy.filter_not_following_title": "Žmonių, kuriuos neseki", - "notifications.policy.filter_private_mentions_title": "Nepageidaujami privatūs paminėjimai", + "notifications.policy.filter_private_mentions_hint": "Filtruojama, išskyrus atsakymus į tavo paties paminėjimą arba jei seki siuntėją", + "notifications.policy.filter_private_mentions_title": "Nepageidaujami asmens paminėjimai", "notifications.policy.title": "Tvarkyti pranešimus iš…", "notifications_permission_banner.enable": "Įjungti darbalaukio pranešimus", "notifications_permission_banner.how_to_control": "Jei nori gauti pranešimus, kai Mastodon nėra atidarytas, įjunk darbalaukio pranešimus. Įjungęs (-usi) darbalaukio pranešimus, gali tiksliai valdyti, kokių tipų sąveikos generuoja darbalaukio pranešimus, naudojant pirmiau esančiu mygtuku {icon}.", @@ -634,7 +642,7 @@ "onboarding.steps.follow_people.title": "Suasmeninkite savo pagrindinį srautą", "onboarding.steps.publish_status.body": "Sakykite sveiki pasauliui tekstu, nuotraukomis, vaizdo įrašais ar apklausomis {emoji}.", "onboarding.steps.publish_status.title": "Sukūrkite savo pirmąjį įrašą", - "onboarding.steps.setup_profile.body": "Padidinkite savo sąveikas turint išsamų profilį.", + "onboarding.steps.setup_profile.body": "Padidinkite savo populiarumą, sukurdami išsamų profilį.", "onboarding.steps.setup_profile.title": "Suasmeninkite savo profilį", "onboarding.steps.share_profile.body": "Leiskite draugams žinoti, kaip jus rasti platformoje „Mastodon“.", "onboarding.steps.share_profile.title": "Bendrinkite savo „Mastodon“ profilį", @@ -662,7 +670,7 @@ "privacy.private.short": "Sekėjai", "privacy.public.long": "Bet kas iš Mastodon ir ne Mastodon", "privacy.public.short": "Vieša", - "privacy.unlisted.additional": "Tai veikia lygiai taip pat, kaip ir vieša, tik įrašas nebus rodomas tiesioginiuose srautuose, saitažodžiose, naršyme ar Mastodon paieškoje, net jei esi įtraukęs (-usi) visą paskyrą.", + "privacy.unlisted.additional": "Tai veikia lygiai taip pat, kaip ir vieša, tik įrašas nebus rodomas tiesioginiuose srautuose, grotažymėse, naršyme ar Mastodon paieškoje, net jei esi įtraukęs (-usi) visą paskyrą.", "privacy.unlisted.long": "Mažiau algoritminių fanfarų", "privacy.unlisted.short": "Tyliai vieša", "privacy_policy.last_updated": "Paskutinį kartą atnaujinta {date}", @@ -724,7 +732,7 @@ "report.thanks.title": "Nenori to matyti?", "report.thanks.title_actionable": "Ačiū, kad pranešei, mes tai išnagrinėsime.", "report.unfollow": "Nebesekti @{name}", - "report.unfollow_explanation": "Tu seki šią paskyrą. Jei nori nebematyti jų įrašų savo pagrindiniame sraute, nebesek jų.", + "report.unfollow_explanation": "Jūs sekate šią paskyrą. Kad nebematytumėte jų įrašų savo pagrindiniame sraute, nebesekite.", "report_notification.attached_statuses": "Pridėti {count, plural, one {{count} įrašas} few {{count} įrašai} many {{count} įrašo} other {{count} įrašų}}", "report_notification.categories.legal": "Teisinės", "report_notification.categories.legal_sentence": "nelegalus turinys", @@ -743,7 +751,7 @@ "search.quick_action.open_url": "Atidaryti URL adresą Mastodon", "search.quick_action.status_search": "Pranešimai, atitinkantys {x}", "search.search_or_paste": "Ieškoti arba įklijuoti URL", - "search_popout.full_text_search_disabled_message": "Nepasiekima {domain}.", + "search_popout.full_text_search_disabled_message": "Paieška {domain} įrašuose išjungta.", "search_popout.full_text_search_logged_out_message": "Pasiekiama tik prisijungus.", "search_popout.language_code": "ISO kalbos kodas", "search_popout.options": "Paieškos nustatymai", @@ -753,7 +761,7 @@ "search_popout.user": "naudotojas", "search_results.accounts": "Profiliai", "search_results.all": "Visi", - "search_results.hashtags": "Saitažodžiai", + "search_results.hashtags": "Grotažymės", "search_results.nothing_found": "Nepavyko rasti nieko pagal šiuos paieškos terminus.", "search_results.see_all": "Žiūrėti viską", "search_results.statuses": "Įrašai", @@ -772,8 +780,8 @@ "status.admin_domain": "Atidaryti prižiūrėjimo sąsają {domain}", "status.admin_status": "Atidaryti šį įrašą prižiūrėjimo sąsajoje", "status.block": "Blokuoti @{name}", - "status.bookmark": "Pridėti į žymės", - "status.cancel_reblog_private": "Nebepasidalinti", + "status.bookmark": "Žymė", + "status.cancel_reblog_private": "Nesidalinti", "status.cannot_reblog": "Šis įrašas negali būti pakeltas.", "status.continued_thread": "Tęsiama gijoje", "status.copy": "Kopijuoti nuorodą į įrašą", @@ -784,8 +792,9 @@ "status.edit": "Redaguoti", "status.edited": "Paskutinį kartą redaguota {date}", "status.edited_x_times": "Redaguota {count, plural, one {{count} kartą} few {{count} kartus} many {{count} karto} other {{count} kartų}}", + "status.embed": "Gaukite įterpimo kodą", "status.favourite": "Pamėgti", - "status.favourites": "{count, plural, one {mėgstamas} few {mėgstamai} many {mėgstamų} other {mėgstamų}}", + "status.favourites": "{count, plural, one {mėgsta} few {mėgsta} many {mėgsta} other {mėgsta}}", "status.filter": "Filtruoti šį įrašą", "status.history.created": "{name} sukurta {date}", "status.history.edited": "{name} redaguota {date}", @@ -797,14 +806,15 @@ "status.more": "Daugiau", "status.mute": "Nutildyti @{name}", "status.mute_conversation": "Nutildyti pokalbį", - "status.open": "Išplėsti šį įrašą", + "status.open": "Išskleisti šį įrašą", "status.pin": "Prisegti prie profilio", "status.pinned": "Prisegtas įrašas", "status.read_more": "Skaityti daugiau", - "status.reblog": "Pakelti", - "status.reblog_private": "Pakelti su originaliu matomumu", - "status.reblogged_by": "{name} pakėlė", - "status.reblogs.empty": "Šio įrašo dar niekas nepakėlė. Kai kas nors tai padarys, jie bus rodomi čia.", + "status.reblog": "Dalintis", + "status.reblog_private": "Dalintis su originaliais matomumo nustatymais", + "status.reblogged_by": "{name} pasidalino", + "status.reblogs": "{count, plural, one {pasidalinimas} few {pasidalinimai} many {pasidalinimų} other {pasidalinimai}}", + "status.reblogs.empty": "Šiuo įrašu dar niekas nesidalino. Kai kas nors tai padarys, jie bus rodomi čia.", "status.redraft": "Ištrinti ir parengti iš naujo", "status.remove_bookmark": "Pašalinti žymę", "status.replied_in_thread": "Atsakyta gijoje", diff --git a/app/javascript/mastodon/locales/lv.json b/app/javascript/mastodon/locales/lv.json index ccfb57e05f..34f1b55256 100644 --- a/app/javascript/mastodon/locales/lv.json +++ b/app/javascript/mastodon/locales/lv.json @@ -63,8 +63,8 @@ "account.share": "Dalīties ar @{name} profilu", "account.show_reblogs": "Parādīt @{name} pastiprinātos ierakstus", "account.statuses_counter": "{count, plural, zero {{counter} ierakstu} one {{counter} ieraksts} other {{counter} ieraksti}}", - "account.unblock": "Atbloķēt @{name}", - "account.unblock_domain": "Atbloķēt domēnu {domain}", + "account.unblock": "Atcelt liegšanu @{name}", + "account.unblock_domain": "Atcelt domēna {domain} liegšanu", "account.unblock_short": "Atbloķēt", "account.unendorse": "Neizcelt profilā", "account.unfollow": "Pārstāt sekot", @@ -89,11 +89,12 @@ "announcement.announcement": "Paziņojums", "attachments_list.unprocessed": "(neapstrādāti)", "audio.hide": "Slēpt audio", - "block_modal.remote_users_caveat": "Mēs vaicāsim serverim {domain} ņemt vērā Tavu lēmumu. Tomēr atbilstība nav nodrošināta, jo atsevišķi serveri liegšanu var apstrādāt citādi. Publiski ieraksti joprojām var būt redzami lietotājiem, kuri nav pieteikušies.", + "block_modal.remote_users_caveat": "Mēs lūgsim serverim {domain} ņemt vērā Tavu lēmumu. Tomēr sadarbība nav garantēta, jo atsevišķi serveri bloķēšanu var apstrādāt citādi. Publiski ieraksti, iespējams, joprojām būs redzami lietotājiem, kuri nav pieteikušies.", "block_modal.show_less": "Rādīt mazāk", - "block_modal.show_more": "Parādīt mazāk", - "block_modal.they_cant_mention": "Nevar Tevi pieminēt vai sekot Tev.", - "block_modal.they_cant_see_posts": "Lietotajs nevarēs redzēt Tavus ierakstus, un Tu neredzēsi lietotāja.", + "block_modal.show_more": "Rādīt vairāk", + "block_modal.they_cant_mention": "Lietotājs nevarēs Tevi pieminēt vai Tev sekot.", + "block_modal.they_cant_see_posts": "Lietotājs nevarēs redzēt Tavus, un Tu neredzēsi lietotāja ierakstus.", + "block_modal.they_will_know": "Lietotājs varēs redzēt, ka ir bloķēts.", "block_modal.title": "Bloķēt lietotāju?", "block_modal.you_wont_see_mentions": "Tu neredzēsi ierakstus, kuros ir minēts šis lietotājs.", "boost_modal.combo": "Nospied {combo}, lai nākamreiz šo izlaistu", @@ -117,12 +118,12 @@ "closed_registrations_modal.preamble": "Mastodon ir decentralizēts, tāpēc neatkarīgi no tā, kur Tu izveido savu kontu, varēsi sekot un mijiedarboties ar ikvienu šajā serverī. Tu pat vari to pašizvietot!", "closed_registrations_modal.title": "Reģistrēšanās Mastodon", "column.about": "Par", - "column.blocks": "Bloķētie lietotāji", + "column.blocks": "Liegtie lietotāji", "column.bookmarks": "Grāmatzīmes", "column.community": "Vietējā laika līnija", "column.direct": "Privātas pieminēšanas", "column.directory": "Pārlūkot profilus", - "column.domain_blocks": "Bloķētie domēni", + "column.domain_blocks": "Liegtie domēni", "column.favourites": "Izlase", "column.firehose": "Tiešraides plūsmas", "column.follow_requests": "Sekošanas pieprasījumi", @@ -169,7 +170,7 @@ "compose_form.spoiler.unmarked": "Pievienot satura brīdinājumu", "compose_form.spoiler_placeholder": "Satura brīdinājums (pēc izvēles)", "confirmation_modal.cancel": "Atcelt", - "confirmations.block.confirm": "Bloķēt", + "confirmations.block.confirm": "Liegt", "confirmations.delete.confirm": "Dzēst", "confirmations.delete.message": "Vai tiešām izdzēst šo ierakstu?", "confirmations.delete.title": "Izdzēst ierakstu?", @@ -216,11 +217,13 @@ "dismissable_banner.explore_statuses": "Šie ir ieraksti, kas šodien gūst arvien lielāku ievērību visā sociālajā tīklā. Augstāk tiek kārtoti jaunāki ieraksti, kuri tiek vairāk pastiprināti un ievietoti izlasēs.", "dismissable_banner.explore_tags": "Šie ir tēmturi, kas šodien gūst uzmanību sabiedriskajā tīmeklī. Tēmturi, kurus izmanto vairāk dažādu cilvēku, tiek vērtēti augstāk.", "dismissable_banner.public_timeline": "Šie ir jaunākie publiskie ieraksti no lietotājiem sociālajā tīmeklī, kuriem {domain} seko cilvēki.", - "domain_block_modal.block": "Bloķēt serveri", - "domain_block_modal.block_account_instead": "Tā vietā liegt @{name}", - "domain_block_modal.they_cant_follow": "Neviens šajā serverī nevar Tev sekot.", - "domain_block_modal.they_wont_know": "Viņi nezinās, ka tikuši bloķēti.", - "domain_block_modal.title": "Bloķēt domēnu?", + "domain_block_modal.block": "Liegt serveri", + "domain_block_modal.block_account_instead": "Tā vietā bloķēt @{name}", + "domain_block_modal.they_cant_follow": "Neviens no šī servera nevarēs Tev sekot.", + "domain_block_modal.they_wont_know": "Viņi nezinās, ka tikuši liegti.", + "domain_block_modal.title": "Liegt domēnu?", + "domain_block_modal.you_will_lose_num_followers": "Tu zaudēsi {followersCount, plural, one {{followersCountDisplay} sekotāju} other {{followersCountDisplay} sekotājus}} un {followingCount, plural, one {{followingCountDisplay} sekojamo} other {{followingCountDisplay} sekojamos}}.", + "domain_block_modal.you_will_lose_relationships": "Tu zaudēsi visus sekotājus un sekojamos no šī servera.", "domain_pill.activitypub_lets_connect": "Tas ļauj savienoties un mijiedarboties ar cilvēkiem ne tikai no Mastodon, bet arī starp dažādām sabiedriskajām lietotnēm.", "domain_pill.activitypub_like_language": "ActivityPub ir kā valoda, kurā Mastodon sazināš ar citiem sabiedriskajiem tīkliem.", "domain_pill.server": "Serveris", @@ -251,11 +254,11 @@ "empty_column.account_suspended": "Konta darbība ir apturēta", "empty_column.account_timeline": "Šeit nav ierakstu.", "empty_column.account_unavailable": "Profils nav pieejams", - "empty_column.blocks": "Pašreiz tu neesi nevienu bloķējis.", + "empty_column.blocks": "Pagaidām Tu neesi liedzis nevienu lietotāju.", "empty_column.bookmarked_statuses": "Pašlaik Tev nav neviena grāmatzīmēs pievienota ieraksta. Kad tādu pievienosi, tas parādīsies šeit.", "empty_column.community": "Vietējā laika līnija ir tukša. Uzraksti kaut ko publiski, lai iekustinātu visu!", "empty_column.direct": "Tev vēl nav privātu pieminēšanu. Kad Tu nosūtīsi vai saņemsi kādu, tā pārādīsies šeit.", - "empty_column.domain_blocks": "Vēl nav neviena bloķēta domēna.", + "empty_column.domain_blocks": "Vēl nav neviena liegta domēna.", "empty_column.explore_statuses": "Pašlaik nav nekā aktuāla. Ieskaties šeit vēlāk!", "empty_column.favourited_statuses": "Tev vēl nav izlasei pievienotu ierakstu. Kad pievienosi kādu, tas tiks parādīts šeit.", "empty_column.favourites": "Šo ierakstu vēl neviens nav pievienojis izlasei. Kad kāds to izdarīs, tas parādīsies šeit.", @@ -352,6 +355,9 @@ "home.pending_critical_update.title": "Ir pieejams būtisks drošības atjauninājums.", "home.show_announcements": "Rādīt paziņojumus", "ignore_notifications_modal.ignore": "Neņemt vērā paziņojumus", + "ignore_notifications_modal.limited_accounts_title": "Neņemt vērā paziņojumus no moderētiem kontiem?", + "ignore_notifications_modal.new_accounts_title": "Neņemt vērā paziņojumus no jauniem kontiem?", + "ignore_notifications_modal.not_followers_title": "Neņemt vērā paziņojumus no cilvēkiem, kas tev neseko?", "ignore_notifications_modal.not_following_title": "Neņemt vērā paziņojumus no cilvēkiem, kuriem neseko?", "interaction_modal.description.favourite": "Ar Mastodon kontu tu vari pievienot šo ziņu izlasei, lai informētu autoru, ka to novērtē, un saglabātu to vēlākai lasīšanai.", "interaction_modal.description.follow": "Ar Mastodon kontu Tu vari sekot {name}, lai saņemtu lietotāja ierakstus savā mājas plūsmā.", @@ -372,7 +378,7 @@ "intervals.full.hours": "{number, plural, one {# stunda} other {# stundas}}", "intervals.full.minutes": "{number, plural, one {# minūte} other {# minūtes}}", "keyboard_shortcuts.back": "Pāriet atpakaļ", - "keyboard_shortcuts.blocked": "Atvērt bloķēto lietotāju sarakstu", + "keyboard_shortcuts.blocked": "Atvērt liegto lietotāju sarakstu", "keyboard_shortcuts.boost": "Pastiprināt ierakstu", "keyboard_shortcuts.column": "Fokusēt kolonnu", "keyboard_shortcuts.compose": "Fokusēt veidojamā teksta lauku", @@ -439,13 +445,13 @@ "navigation_bar.about": "Par", "navigation_bar.administration": "Pārvaldība", "navigation_bar.advanced_interface": "Atvērt paplašinātā tīmekļa saskarnē", - "navigation_bar.blocks": "Bloķētie lietotāji", + "navigation_bar.blocks": "Liegtie lietotāji", "navigation_bar.bookmarks": "Grāmatzīmes", "navigation_bar.community_timeline": "Vietējā laika līnija", "navigation_bar.compose": "Izveidot jaunu ierakstu", "navigation_bar.direct": "Privātas pieminēšanas", "navigation_bar.discover": "Atklāt", - "navigation_bar.domain_blocks": "Bloķētie domēni", + "navigation_bar.domain_blocks": "Liegtie domēni", "navigation_bar.explore": "Izpētīt", "navigation_bar.favourites": "Izlase", "navigation_bar.filters": "Apklusinātie vārdi", @@ -472,7 +478,7 @@ "notification.favourite.name_and_others_with_link": "{name} un {count, plural, one {# cits} other {# citi}} pievienoja Tavu ierakstu izlasē", "notification.follow": "{name} uzsāka Tev sekot", "notification.follow_request": "{name} nosūtīja Tev sekošanas pieprasījumu", - "notification.mentioned_you": "{name} pieminēja jūs", + "notification.mentioned_you": "{name} pieminēja tevi", "notification.moderation-warning.learn_more": "Uzzināt vairāk", "notification.moderation_warning": "Ir saņemts satura pārraudzības brīdinājums", "notification.moderation_warning.action_delete_statuses": "Daži no Taviem ierakstiem tika noņemti.", @@ -596,10 +602,11 @@ "privacy.direct.short": "Noteikti cilvēki", "privacy.private.long": "Tikai Tavi sekotāji", "privacy.private.short": "Sekotāji", - "privacy.public.long": "Jebkurš Mastodon un ārpus tā", - "privacy.public.short": "Redzams visiem", + "privacy.public.long": "Jebkurš Mastodon platformā un ārpus tās", + "privacy.public.short": "Publisks", "privacy.unlisted.additional": "Šis uzvedas tieši kā publisks, izņemot to, ka ieraksts neparādīsies tiešraides barotnēs vai tēmturos, izpētē vai Mastodon meklēšanā, pat ja esi to norādījis visa konta ietvaros.", "privacy.unlisted.long": "Mazāk algoritmisku fanfaru", + "privacy.unlisted.short": "Klusi publisks", "privacy_policy.last_updated": "Pēdējo reizi atjaunināta {date}", "privacy_policy.title": "Privātuma politika", "recommended": "Ieteicams", @@ -620,8 +627,8 @@ "reply_indicator.attachments": "{count, plural, zero{# pielikumu} one {# pielikums} other {# pielikumi}}", "reply_indicator.cancel": "Atcelt", "reply_indicator.poll": "Aptauja", - "report.block": "Bloķēt", - "report.block_explanation": "Tu neredzēsi viņu ierakstus. Viņi nevarēs redzēt Tavus ierakstus vai sekot tev. Viņi varēs saprast, ka ir liegti.", + "report.block": "Liegt", + "report.block_explanation": "Tu neredzēsi viņu ierakstus. Viņi nevarēs redzēt Tavus ierakstus vai sekot Tev. Viņi varēs saprast, ka ir liegti.", "report.categories.legal": "Tiesisks", "report.categories.other": "Citi", "report.categories.spam": "Mēstule", @@ -704,7 +711,7 @@ "status.admin_account": "Atvērt @{name} satura pārraudzības saskarni", "status.admin_domain": "Atvērt {domain} satura pārraudzības saskarni", "status.admin_status": "Atvērt šo ziņu satura pārraudzības saskarnē", - "status.block": "Bloķēt @{name}", + "status.block": "Liegt @{name}", "status.bookmark": "Grāmatzīme", "status.cancel_reblog_private": "Nepastiprināt", "status.cannot_reblog": "Šo ierakstu nevar pastiprināt", diff --git a/app/javascript/mastodon/locales/nan-TW.json b/app/javascript/mastodon/locales/nan-TW.json new file mode 100644 index 0000000000..093d578efc --- /dev/null +++ b/app/javascript/mastodon/locales/nan-TW.json @@ -0,0 +1,815 @@ +{ + "about.blocks": "Siū 管制 ê 服侍器", + "about.contact": "聯絡方法:", + "about.disclaimer": "Mastodon是自由、開放原始碼ê軟體,mā是Mastodon gGmbH ê商標。", + "about.domain_blocks.no_reason_available": "原因bē-tàng用", + "about.domain_blocks.preamble": "Mastodon一般ē允准lí看別ê fediverse 服侍器來ê聯絡人kap hām用者交流。Tsiah ê 是本服侍器建立ê例外。", + "about.domain_blocks.silenced.explanation": "Lí一般buē-tàng tuì tsit ê服侍器看用戶ê紹介kap內容,除非lí明白tshiau-tshuē á是跟tuè伊。", + "about.domain_blocks.silenced.title": "有限制", + "about.domain_blocks.suspended.explanation": "Uì tsit ê服侍器來ê資料lóng bē處理、儲存á是交換,無可能kap tsit ê服侍器ê用者互動á是溝通。.", + "about.domain_blocks.suspended.title": "權限中止", + "about.not_available": "Tsit ê資訊bē-tàng tī tsit ê服侍器使用。", + "about.powered_by": "由 {mastodon} 提供ê非中心化社群媒體", + "about.rules": "服侍器ê規則", + "account.account_note_header": "個人ê註解", + "account.add_or_remove_from_list": "加添kàu列單á是uì列單thâi掉", + "account.badges.bot": "機器lâng", + "account.badges.group": "群組", + "account.block": "封鎖 @{name}", + "account.block_domain": "封鎖域名 {domain}", + "account.block_short": "封鎖", + "account.blocked": "Hőng封鎖", + "account.cancel_follow_request": "取消跟tuè", + "account.copy": "Khóo-pih個人資料ê連結", + "account.direct": "私人提起 @{name}", + "account.disable_notifications": "停止佇 {name} PO文ê時通知我", + "account.domain_blocked": "封鎖ê域名", + "account.edit_profile": "編輯個人資料", + "account.enable_notifications": "佇 {name} PO文ê時通知我", + "account.endorse": "用個人資料推薦對方", + "account.featured_tags.last_status_at": "頂kái tī {date} Po文", + "account.featured_tags.last_status_never": "無PO文", + "account.featured_tags.title": "{name} ê推薦hashtag", + "account.follow": "跟tuè", + "account.follow_back": "Tuè tńg去", + "account.followers": "跟tuè伊ê", + "account.followers.empty": "Tsit ê用者iáu bô lâng跟tuè。", + "account.followers_counter": "Hōo {count, plural, other {{count} ê lâng}}跟tuè", + "account.following": "伊跟tuè ê", + "account.following_counter": "Teh跟tuè {count,plural,other {{count} ê lâng}}", + "account.follows.empty": "Tsit ê用者iáu buē跟tuè別lâng。", + "account.go_to_profile": "行kàu個人資料", + "account.hide_reblogs": "Tshàng tuì @{name} 來ê轉PO", + "account.in_memoriam": "佇tsia追悼。", + "account.joined_short": "加入ê時", + "account.languages": "變更訂閱的語言", + "account.link_verified_on": "Tsit ê連結ê所有權佇 {date} 受檢查", + "account.locked_info": "Tsit ê口座ê隱私狀態鎖起來ah。所有者ē手動審查thang kā跟tuè ê lâng。", + "account.media": "媒體", + "account.mention": "提起 @{name}", + "account.moved_to": "{name} 指示tsit-má伊ê新口座是:", + "account.mute": "消音 @{name}", + "account.mute_notifications_short": "Kā通知消音", + "account.mute_short": "消音", + "account.muted": "消音ah", + "account.mutual": "相跟tuè", + "account.no_bio": "Bô提供敘述。", + "account.open_original_page": "開原來ê頁", + "account.posts": "PO文", + "account.posts_with_replies": "PO文kap回應", + "account.report": "檢舉 @{name}", + "account.requested": "Teh等待審查。Tshi̍h tsi̍t-ē 通取消跟tuè請求", + "account.requested_follow": "{name} 請求跟tuè lí", + "account.share": "分享 @{name} ê個人資料", + "account.show_reblogs": "顯示uì @{name} 來ê轉PO", + "account.statuses_counter": "{count, plural, other {{count} ê PO文}}", + "account.unblock": "取消封鎖 @{name}", + "account.unblock_domain": "Kā域名 {domain} 取消封鎖", + "account.unblock_short": "取消封鎖", + "account.unendorse": "Mài tī個人資料推薦伊", + "account.unfollow": "取消跟tuè", + "account.unmute": "取消消音 @{name}", + "account.unmute_notifications_short": "Kā通知取消消音", + "account.unmute_short": "取消消音", + "account_note.placeholder": "Tshi̍h tse加註kha", + "admin.dashboard.daily_retention": "註冊以後ê用者維持率(用kang計算)", + "admin.dashboard.monthly_retention": "註冊以後ê用者維持率", + "admin.dashboard.retention.average": "平均", + "admin.dashboard.retention.cohort": "註冊ê月", + "admin.dashboard.retention.cohort_size": "新用者", + "admin.impact_report.instance_accounts": "個人資料ē hőng thâi掉ê用者數", + "admin.impact_report.instance_followers": "本站ê跟tuè者ē流失ê數", + "admin.impact_report.instance_follows": "In ê跟tuè者ē流失ê數", + "admin.impact_report.title": "影響ê摘要", + "alert.rate_limited.message": "請tī {retry_time, time, medium} 以後koh試。", + "alert.rate_limited.title": "限速ah", + "alert.unexpected.message": "發生意外ê錯誤。.", + "alert.unexpected.title": "Ai-ioh!", + "alt_text_badge.title": "替代文字", + "announcement.announcement": "公告", + "attachments_list.unprocessed": "(Iáu bē處理)", + "audio.hide": "Tshàng聲音", + "block_modal.remote_users_caveat": "Guán ē要求服侍器 {domain} 尊重lí ê決定。但是bô法度保證ta̍k ê服侍器lóng遵守,因為tsi̍t-kuá服侍器huân-sè用別款方法處理封鎖。公開ê PO文可能iáu是ē hōo bô登入ê用者看著。", + "block_modal.show_less": "看khah少", + "block_modal.show_more": "顯示其他ê內容", + "block_modal.they_cant_mention": "In buē-tàng 提起á是跟tuè lí。", + "block_modal.they_cant_see_posts": "Lín buē-tàng互相看著對方ê PO文。", + "block_modal.they_will_know": "In通看見in hőng封鎖。", + "block_modal.title": "Kám beh封鎖用者?", + "block_modal.you_wont_see_mentions": "Lí buē看見提起in ê PO文。", + "boost_modal.combo": "後擺lí thang tshi̍h {combo} 跳過", + "boost_modal.reblog": "Kám beh轉PO?", + "boost_modal.undo_reblog": "Kám beh取消轉PO?", + "bundle_column_error.copy_stacktrace": "Khóo-pih錯誤報告", + "bundle_column_error.error.body": "請求ê頁bē-tàng 畫出來。有可能是guán程式碼內底ê錯誤,á是瀏覽器共存性ê議題。", + "bundle_column_error.error.title": "害ah!", + "bundle_column_error.network.body": "佇載入tsit頁ê時出現錯誤。可能因為lí ê網路連線á是tsit臺服侍器ê暫時ê問題。", + "bundle_column_error.network.title": "網路錯誤", + "bundle_column_error.retry": "Koh試", + "bundle_column_error.return": "Tńg去頭頁", + "bundle_column_error.routing.body": "Tshuē bô所要求ê頁面。Lí kám確定地址liâu-á ê URL正確?", + "bundle_column_error.routing.title": "404", + "bundle_modal_error.close": "關", + "bundle_modal_error.retry": "Koh試", + "closed_registrations.other_server_instructions": "因為Mastodon非中心化,所以lí ē當tī別ê服侍器建立口座,iáu ē當kap tsit ê服侍器來往。", + "closed_registrations_modal.description": "Tann bē當tī {domain} 建立新ê口座,m̄-koh著記得,lí bô需要 {domain} 服侍器ê帳號,mā ē當用 Mastodon。", + "closed_registrations_modal.find_another_server": "Tshuē別ê服侍器", + "closed_registrations_modal.preamble": "因為Mastodon非中心化,所以bô論tī tá tsi̍t ê服侍器建立口座,lí lóng ē當跟tuè tsi̍t ê服侍器ê逐ê lâng,kap hām in交流。Lí iā ē當ka-tī起tsi̍t ê站!", + "closed_registrations_modal.title": "註冊 Mastodon ê口座", + "column.about": "概要", + "column.blocks": "封鎖ê用者", + "column.bookmarks": "冊籤", + "column.community": "本地ê時間線", + "column.direct": "私人ê提起", + "column.directory": "瀏覽個人資料", + "column.domain_blocks": "封鎖ê域名", + "column.favourites": "Siōng kah意", + "column.firehose": "Tsit-má ê動態", + "column.follow_requests": "跟tuè請求", + "column.home": "頭頁", + "column.lists": "列單", + "column.mutes": "消音ê用者", + "column.notifications": "通知", + "column.pins": "釘起來ê PO文", + "column.public": "聯邦ê時間線", + "column_back_button.label": "頂頁", + "column_header.hide_settings": "Khàm掉設定", + "column_header.moveLeft_settings": "Kā欄sak khah倒pîng", + "column_header.moveRight_settings": "Kā欄sak khah正pîng", + "column_header.pin": "釘", + "column_header.show_settings": "顯示設定", + "column_header.unpin": "Pak掉", + "column_subheading.settings": "設定", + "community.column_settings.local_only": "Kan-ta展示本地ê", + "community.column_settings.media_only": "Kan-ta展示媒體", + "community.column_settings.remote_only": "Kan-ta展示遠距離ê", + "compose.language.change": "換語言", + "compose.language.search": "Tshiau-tshuē語言……", + "compose.published.body": "成功PO文。", + "compose.published.open": "開", + "compose.saved.body": "PO文儲存ah。", + "compose_form.direct_message_warning_learn_more": "詳細資訊", + "compose_form.encryption_warning": "Mastodon ê PO文無點tuì點加密。M̄通用Mastodon分享任何敏感ê資訊。", + "compose_form.hashtag_warning": "因為tsit êPO文m̄是公開ê,buē列tī任何ê hashtag。Kan-ta公開ê PO文tsiah ē當用hashtag tshuē。", + "compose_form.lock_disclaimer": "Lí ê口座iáu buē {locked}。逐ê lâng lóng通跟tuè lí,看lí kan-ta hōo跟tuè ê看ê PO文。", + "compose_form.lock_disclaimer.lock": "鎖起來ê", + "compose_form.placeholder": "Lí teh想siánn?", + "compose_form.poll.duration": "投票期間", + "compose_form.poll.multiple": "Tsē選擇", + "compose_form.poll.option_placeholder": "選項 {number}", + "compose_form.poll.single": "揀tsi̍t ê", + "compose_form.poll.switch_to_multiple": "Kā投票改做ē當選tsē-tsē ê。", + "compose_form.poll.switch_to_single": "Kā投票改做kan-ta通選tsi̍t-ê", + "compose_form.poll.type": "投票ê方法", + "compose_form.publish": "PO文", + "compose_form.publish_form": "新ê PO文", + "compose_form.reply": "回應", + "compose_form.save_changes": "更新", + "compose_form.spoiler.marked": "Thâi掉內容警告", + "compose_form.spoiler.unmarked": "加添內容警告", + "compose_form.spoiler_placeholder": "內容警告(m̄是必要)", + "confirmation_modal.cancel": "取消", + "confirmations.block.confirm": "封鎖", + "confirmations.delete.confirm": "Thâi掉", + "confirmations.delete.message": "Lí kám確定beh thâi掉tsit ê PO文?", + "confirmations.delete.title": "Kám beh thâi掉tsit ê PO文?", + "confirmations.delete_list.confirm": "Thâi掉", + "confirmations.delete_list.message": "Lí kám確定beh永永thâi掉tsit ê列單?", + "confirmations.delete_list.title": "Kám beh thâi掉tsit ê列單?", + "confirmations.discard_edit_media.confirm": "棄sak", + "confirmations.discard_edit_media.message": "Lí佇媒體敘述á是先看māi ê所在有iáu buē儲存ê改變,kám beh kā in棄sak?", + "confirmations.edit.confirm": "編輯", + "confirmations.edit.message": "Tsit-má編輯ē khàm掉lí tng-leh編寫ê訊息,lí kám beh繼續án-ne做?", + "confirmations.edit.title": "Kám beh khàm掉PO文?", + "confirmations.logout.confirm": "登出", + "confirmations.logout.message": "Lí kám確定beh登出?", + "confirmations.logout.title": "Lí kám beh登出?", + "confirmations.mute.confirm": "消音", + "confirmations.redraft.confirm": "Thâi掉了後重寫", + "confirmations.redraft.message": "Lí kám確定beh thâi掉tsit篇PO文了後koh重寫?收藏kap轉PO ē無去,而且原底ê PO文ê回應ē變孤立。", + "confirmations.redraft.title": "Kám beh thâi掉koh重寫PO文?", + "confirmations.reply.confirm": "回應", + "confirmations.reply.message": "Tsit-má回應ē khàm掉lí tng-leh編寫ê訊息。Lí kám確定beh繼續án-ne做?", + "confirmations.reply.title": "Kám beh khàm掉PO文?", + "confirmations.unfollow.confirm": "取消跟tuè", + "confirmations.unfollow.message": "Lí kám確定無愛跟tuè {name}?", + "confirmations.unfollow.title": "Kám beh取消跟tuè tsit ê用者?", + "content_warning.hide": "Am-khàm PO文", + "content_warning.show": "Mā tio̍h顯示", + "content_warning.show_more": "其他內容", + "conversation.delete": "Thâi掉會話", + "conversation.mark_as_read": "標做有讀", + "conversation.open": "顯示會話", + "conversation.with": "Kap {names}", + "copy_icon_button.copied": "有khóo-pih kàu tsián貼pang", + "copypaste.copied": "有khóo-pih", + "copypaste.copy_to_clipboard": "Khóo-pih kàu tsián貼pang", + "directory.federated": "Uì知影ê Fediverse", + "directory.local": "Kan-ta uì {domain}", + "directory.new_arrivals": "新來ê", + "directory.recently_active": "最近活動ê", + "disabled_account_banner.account_settings": "口座ê設定", + "disabled_account_banner.text": "Lí ê口座 {disabledAccount} tsit-má hōo lâng停止使用。", + "dismissable_banner.community_timeline": "Tsia sī uì 口座hē tī {domain} ê lâng,最近所公開PO ê。", + "dismissable_banner.dismiss": "Mài kā tshah", + "domain_block_modal.block": "封鎖服侍器", + "domain_block_modal.block_account_instead": "改做封鎖 @{name}", + "domain_block_modal.they_can_interact_with_old_posts": "Uì tsit ê服侍器來ê,通kap lí khah早ê PO交流。", + "domain_block_modal.they_cant_follow": "Tuì tsit ê服侍器來ê 通跟tuè lí。", + "domain_block_modal.they_wont_know": "In buē知影in受封鎖。", + "domain_block_modal.title": "Kám beh封鎖域名?", + "domain_block_modal.you_will_lose_num_followers": "Lí ē失去 {followersCount, plural, other {{followersCountDisplay} ê lâng跟tuè}} kap {followingCount, plural, other {{followingCountDisplay} ê lí所tuè ê 口座}}。", + "domain_block_modal.you_will_lose_relationships": "Lí ē失去逐ê佇tsit ê服侍器跟tuè lí ê,kap lí所跟tuè ê。", + "domain_block_modal.you_wont_see_posts": "Lí buē看見tsit ê服侍器ê用者所送ê PO文kap通知。", + "domain_pill.activitypub_lets_connect": "伊ē hōo lí kap Mastodon ê lâng連結kap互動,其他社交應用程式ê lâng mā ē使。", + "domain_pill.activitypub_like_language": "ActivityPub親像Mastodon kap其他社交應用程式所講ê語言。", + "domain_pill.server": "服侍器", + "domain_pill.their_handle": "In ê口座:", + "domain_pill.their_server": "In數位ê tau,in所有ê PO文lóng tī tsia。", + "domain_pill.their_username": "In佇in ê服侍器獨一ê稱呼。佇無kâng ê服侍器有可能tshuē著kāng名ê用者。", + "domain_pill.username": "用者ê名", + "domain_pill.whats_in_a_handle": "口座是siánn-mih?", + "domain_pill.who_they_are": "因為口座(handle)表示tsit ê lâng是siáng kap tī toh,lí ē當佇. ê社交網路kap lâng交流。", + "domain_pill.who_you_are": "因為口座(handle)表示lí是siáng kap tī toh,lâng ē當佇. ê社交網路kap lí交流。", + "domain_pill.your_handle": "Lí ê口座:", + "domain_pill.your_server": "Lí數位ê厝,內底有lí所有ê PO文。無kah意?Ē當轉kàu別ê服侍器,koh保有跟tuè lí êl âng。.", + "domain_pill.your_username": "Lí 佇tsit ê服侍器獨一ê稱呼。佇無kâng ê服侍器有可能tshuē著kāng名ê用者。", + "embed.instructions": "Khóo-pih 下kha ê程式碼,來kā tsit篇PO文tàu佇lí ê網站。", + "embed.preview": "伊e án-ne顯示:\n", + "emoji_button.activity": "活動", + "emoji_button.clear": "清掉", + "emoji_button.custom": "自訂ê", + "emoji_button.flags": "旗á", + "emoji_button.food": "Tsia̍h-mi̍h kap 飲料", + "emoji_button.label": "加入繪文字(emoji)", + "emoji_button.nature": "自然", + "emoji_button.not_found": "Tshuē無對應ê emoji", + "emoji_button.objects": "物件", + "emoji_button.people": "Lâng", + "emoji_button.recent": "Tsia̍p用ê", + "emoji_button.search": "Tshiau-tshuē……", + "emoji_button.search_results": "Tshiau-tshuē ê結果", + "emoji_button.symbols": "符號", + "emoji_button.travel": "旅行kap地點", + "empty_column.account_hides_collections": "Tsit位用者選擇無愛公開tsit ê資訊", + "empty_column.account_suspended": "口座已經受停止", + "empty_column.account_timeline": "Tsia無PO文!", + "empty_column.account_unavailable": "個人資料bē當看", + "empty_column.blocks": "Lí iáu無封鎖任何用者。", + "empty_column.bookmarked_statuses": "Lí iáu無加添任何冊籤。Nā是lí加添冊籤,伊ē佇tsia顯示。", + "empty_column.community": "本站時間線是空ê。緊來公開PO文oh!", + "empty_column.direct": "Lí iáu無任何ê私人訊息。Nā是lí送á是收著私人訊息,ē佇tsia顯示。.", + "empty_column.domain_blocks": "Iáu無封鎖任何域名。", + "empty_column.explore_statuses": "目前iáu無有流行ê趨勢,請sió等tsi̍t-ē,koh確認。", + "empty_column.favourited_statuses": "Lí iáu無加添任何收藏 ê PO文。Nā是lí加收藏,伊ē佇tsia顯示。", + "empty_column.favourites": "Iáu無lâng收藏tsit篇PO文。Nā是有lâng收藏,ē佇tsia顯示。", + "empty_column.follow_requests": "Lí iáu buē收著任何ê跟tuè請求。Nā是lí收著,伊ē佇tsia顯示。", + "empty_column.followed_tags": "Lí iáu buē收著任何ê hashtag。Nā是lí收著,ē佇tsia顯示。", + "empty_column.hashtag": "Tsit ê hashtag內底無物件。", + "empty_column.home": "Lí tshù ê時間線是空ê!跟tuè別lâng來kā充滿。", + "empty_column.list": "Tsit張列單內底iáu bô物件。若是列單內底ê成員貼新ê PO文,in ē tī tsia顯示。", + "empty_column.mutes": "Lí iáu無消音任何用者。", + "empty_column.notification_requests": "清hōo空ah!內底無物件。若是lí收著新ê通知,ē根據lí ê設定,佇tsia出現。", + "empty_column.notifications": "Lí iáu無收著任何通知。Nā別lâng kap lí互動,lí ē佇tsia看著。", + "empty_column.public": "內底無物件!寫beh公開ê PO文,á是主動跟tuè別ê服侍器ê用者,來加添內容。", + "error.unexpected_crash.explanation": "因為原始碼內底有錯誤,á是瀏覽器相容出tshê,tsit頁bē當正確顯示。", + "error.unexpected_crash.explanation_addons": "Tsit頁bē當正確顯示,可能是瀏覽器附ê功能,á是自動翻譯工具所致。", + "error.unexpected_crash.next_steps": "請試更新tsit頁。若是bē當改善,lí iáu是ē當改使用無kâng ê瀏覽器,á是app,來用Mastodon。", + "error.unexpected_crash.next_steps_addons": "請試kā in停止使用,suà落來更新tsit頁。若是bē當改善,lí iáu是ē當改使用無kâng ê瀏覽器,á是app,來用Mastodon。", + "errors.unexpected_crash.copy_stacktrace": "Khóo-pih stacktrace kàu剪貼pang-á", + "errors.unexpected_crash.report_issue": "報告問題", + "explore.suggested_follows": "用者", + "explore.title": "探索", + "explore.trending_links": "新聞", + "explore.trending_statuses": "PO文", + "explore.trending_tags": "Hashtag", + "filter_modal.added.context_mismatch_explanation": "Tsit ê過濾器類別bē當適用佇lí所接近使用ê PO文ê情境。若是lí mā beh佇tsit ê情境過濾tsit ê PO文,lí著編輯過濾器。.", + "filter_modal.added.context_mismatch_title": "本文無sio合!", + "filter_modal.added.expired_explanation": "Tsit ê過濾器類別過期ah,lí需要改到期ê日期來繼續用。", + "filter_modal.added.expired_title": "過期ê過濾器", + "filter_modal.added.review_and_configure": "Beh審視kap進前設定tsit ê過濾器ê類別,請kàu {settings_link}。", + "filter_modal.added.review_and_configure_title": "過濾器ê設定", + "filter_modal.added.settings_link": "設定頁", + "filter_modal.added.short_explanation": "Tsit ê PO文已經加添kàu下kha ê過濾器類別:{title}。", + "filter_modal.added.title": "過濾器加添ah!", + "filter_modal.select_filter.context_mismatch": "Mài用tī tsit ê內文", + "filter_modal.select_filter.expired": "過期ah", + "filter_modal.select_filter.prompt_new": "新ê類別:{name}", + "filter_modal.select_filter.search": "Tshiau-tshuē á是加添", + "filter_modal.select_filter.subtitle": "用有ê類別á是建立新ê", + "filter_modal.select_filter.title": "過濾tsit篇PO文", + "filter_modal.title.status": "過濾PO文", + "filter_warning.matches_filter": "合過濾器「{title}」", + "filtered_notifications_banner.pending_requests": "Tuì lí可能熟sāi ê {count, plural, =0 {0 ê人} other {# ê人}}", + "filtered_notifications_banner.title": "過濾ê通知", + "firehose.all": "Kui ê", + "firehose.local": "Tsit ê服侍器", + "firehose.remote": "別ê服侍器", + "follow_request.authorize": "授權", + "follow_request.reject": "拒絕", + "follow_requests.unlocked_explanation": "就算lí ê口座無hőng鎖,{domain} ê管理員leh想,lí可能beh手動審查tuì tsiah ê口座送ê跟tuè請求。", + "follow_suggestions.curated_suggestion": "精選ê內容", + "follow_suggestions.dismiss": "Mài koh顯示。", + "follow_suggestions.featured_longer": "{domain} 團隊所揀ê", + "follow_suggestions.friends_of_friends_longer": "時行佇lí所tuè ê lâng", + "follow_suggestions.hints.featured": "Tsit ê個人資料是 {domain} 團隊特別揀ê。", + "follow_suggestions.hints.friends_of_friends": "Tsit ê個人資料tī lí跟tuè ê lâng之間真流行。", + "follow_suggestions.hints.most_followed": "Tsit ê個人資料是 {domain} 內,有足tsē跟tuè者ê其中tsit ê。", + "follow_suggestions.hints.most_interactions": "Tsit ê個人資料tsi̍t-tsām-á佇 {domain} 有得著真tsē關注。", + "follow_suggestions.hints.similar_to_recently_followed": "Tsit ê個人資料kap lí最近跟tuè ê口座相siâng。", + "follow_suggestions.personalized_suggestion": "個人化ê推薦", + "follow_suggestions.popular_suggestion": "流行ê推薦", + "follow_suggestions.popular_suggestion_longer": "佇{domain} 足有lâng緣", + "follow_suggestions.similar_to_recently_followed_longer": "Kap lí最近跟tuè ê相siâng", + "follow_suggestions.view_all": "看全部", + "follow_suggestions.who_to_follow": "Thang tuè ê", + "followed_tags": "跟tuè ê hashtag", + "footer.about": "概要", + "footer.directory": "個人資料ê目錄", + "footer.get_app": "The̍h著app", + "footer.invite": "邀請lâng", + "footer.keyboard_shortcuts": "鍵盤kiu-té khí (shortcut)", + "footer.privacy_policy": "隱私權政策", + "footer.source_code": "看原始碼", + "footer.status": "狀態", + "generic.saved": "儲存ah", + "getting_started.heading": "開始用", + "hashtag.column_header.tag_mode.all": "kap {additional}", + "hashtag.column_header.tag_mode.any": "á是 {additional}", + "hashtag.column_header.tag_mode.none": "無需要 {additional}", + "hashtag.column_settings.select.no_options_message": "Tshuē無建議", + "hashtag.column_settings.select.placeholder": "請輸入hashtag……", + "hashtag.column_settings.tag_mode.all": "Kui ê", + "hashtag.column_settings.tag_mode.any": "任何tsi̍t ê", + "hashtag.column_settings.tag_mode.none": "Lóng mài", + "hashtag.column_settings.tag_toggle": "Kā追加ê標籤加添kàu tsit ê欄", + "hashtag.counter_by_accounts": "{count, plural, one {{counter} ê} other {{counter} ê}}參與ê", + "hashtag.counter_by_uses": "{count, plural, one {{counter} 篇} other {{counter} 篇}} PO文", + "hashtag.counter_by_uses_today": "Kin-á日有 {count, plural, one {{counter} 篇} other {{counter} 篇}} PO文", + "hashtag.follow": "跟tuè hashtag", + "hashtag.unfollow": "取消跟tuè hashtag", + "hashtags.and_other": "……kap 其他 {count, plural, other {# ê}}", + "hints.profiles.followers_may_be_missing": "Tsit ê個人資料ê跟tuè者資訊可能有落勾ê。", + "hints.profiles.follows_may_be_missing": "Tsit ê口座所跟tuè ê ê資訊可能有落勾ê。", + "hints.profiles.posts_may_be_missing": "Tsit ê口座ê tsi̍t kuá PO文可能有落勾ê。", + "hints.profiles.see_more_followers": "佇 {domain} 看koh khah tsē跟tuè lí ê", + "hints.profiles.see_more_follows": "佇 {domain} 看koh khah tsē lí跟tuè ê", + "hints.profiles.see_more_posts": "佇 {domain} 看koh khah tsē ê PO文", + "hints.threads.replies_may_be_missing": "Tuì其他ê服侍器來ê回應可能有phah m̄見。", + "hints.threads.see_more": "佇 {domain} 看koh khah tsē ê回應", + "home.column_settings.show_reblogs": "顯示轉PO", + "home.column_settings.show_replies": "顯示回應", + "home.hide_announcements": "Khàm掉公告", + "home.pending_critical_update.body": "請liōng早更新lí ê Mastodon ê服侍器!", + "home.pending_critical_update.link": "看更新內容", + "home.pending_critical_update.title": "有重要ê安全更新!", + "home.show_announcements": "顯示公告", + "ignore_notifications_modal.disclaimer": "Lí所忽略in ê通知ê用者,Mastodonbē當kā lí通知。忽略通知bē當阻擋訊息ê寄送。", + "ignore_notifications_modal.filter_instead": "改做過濾", + "ignore_notifications_modal.filter_to_act_users": "Lí猶原ē當接受、拒絕猶是檢舉用者", + "ignore_notifications_modal.filter_to_avoid_confusion": "過濾ē當避免可能ê bē分明。", + "ignore_notifications_modal.filter_to_review_separately": "Lí ē當個別檢視所過濾ê通知", + "ignore_notifications_modal.ignore": "Kā通知忽略", + "ignore_notifications_modal.limited_accounts_title": "Kám beh忽略受限制ê口座送來ê通知?", + "ignore_notifications_modal.new_accounts_title": "Kám beh忽略新口座送來ê通知?", + "ignore_notifications_modal.not_followers_title": "Kám beh忽略無跟tuè lí ê口座送來ê通知?", + "ignore_notifications_modal.not_following_title": "Kám beh忽略lí 無跟tuè ê口座送來ê通知?", + "ignore_notifications_modal.private_mentions_title": "忽略ka-kī主動送ê私人提起ê通知?", + "interaction_modal.on_another_server": "佇無kâng ê服侍器", + "interaction_modal.on_this_server": "Tī tsit ê服侍器", + "interaction_modal.title.favourite": "收藏 {name} ê PO文", + "interaction_modal.title.follow": "跟tuè {name}", + "interaction_modal.title.reblog": "轉送 {name} ê PO文", + "interaction_modal.title.reply": "回應 {name} ê PO文", + "intervals.full.days": "{number, plural, other {# kang}}", + "intervals.full.hours": "{number, plural, other {# 點鐘}}", + "intervals.full.minutes": "{number, plural, other {# 分鐘}}", + "keyboard_shortcuts.back": "Tńg去", + "keyboard_shortcuts.blocked": "開封鎖ê用者ê列單", + "keyboard_shortcuts.boost": "轉送PO文", + "keyboard_shortcuts.column": "揀tsit ê欄", + "keyboard_shortcuts.compose": "揀寫文字ê框仔", + "keyboard_shortcuts.description": "說明", + "keyboard_shortcuts.direct": "phah開私人提起ê欄", + "keyboard_shortcuts.down": "佇列單內kā suá khah 下kha", + "keyboard_shortcuts.enter": "Phah開PO文", + "keyboard_shortcuts.favourite": "收藏PO文", + "keyboard_shortcuts.favourites": "Phah開收藏ê列單", + "keyboard_shortcuts.federated": "Phah開聯邦ê時間線", + "keyboard_shortcuts.heading": "鍵盤ê快速key", + "keyboard_shortcuts.home": "Phah開tshù ê時間線", + "keyboard_shortcuts.hotkey": "快速key", + "keyboard_shortcuts.legend": "顯示tsit篇說明", + "keyboard_shortcuts.local": "Phah開本站ê時間線", + "keyboard_shortcuts.mention": "提起作者", + "keyboard_shortcuts.muted": "Phah開消音ê用者列單", + "keyboard_shortcuts.my_profile": "Phah開lí ê個人資料", + "keyboard_shortcuts.notifications": "Phah開通知欄", + "keyboard_shortcuts.open_media": "Phah開媒體", + "keyboard_shortcuts.pinned": "Phah開釘起來ê PO文列單", + "keyboard_shortcuts.profile": "Phah開作者ê個人資料", + "keyboard_shortcuts.reply": "回應PO文", + "keyboard_shortcuts.requests": "Phah開跟tuè請求ê列單", + "keyboard_shortcuts.search": "揀tshiau-tshuē條á", + "keyboard_shortcuts.spoilers": "顯示/隱藏內容警告", + "keyboard_shortcuts.start": "Phah開「開始用」欄", + "keyboard_shortcuts.toggle_hidden": "顯示/隱藏內容警告後壁ê PO文", + "keyboard_shortcuts.toggle_sensitivity": "顯示/tshàng媒體", + "keyboard_shortcuts.toot": "PO新PO文", + "keyboard_shortcuts.unfocus": "離開輸入框仔/tshiau-tshuē格仔", + "keyboard_shortcuts.up": "佇列單內kā suá khah面頂", + "lightbox.close": "關", + "lightbox.next": "下tsi̍t ê", + "lightbox.previous": "頂tsi̍t ê", + "lightbox.zoom_in": "Tshūn-kiu kàu實際ê sài-suh", + "lightbox.zoom_out": "Tshūn-kiu kàu適當ê sài-suh", + "limited_account_hint.action": "一直顯示個人資料", + "limited_account_hint.title": "Tsit ê 個人資料予 {domain} ê管理員tshàng起來ah。", + "link_preview.author": "Tuì {name}", + "link_preview.more_from_author": "看 {name} ê其他內容", + "link_preview.shares": "{count, plural, one {{counter} 篇} other {{counter} 篇}} PO文", + "lists.delete": "Thâi掉列單", + "lists.edit": "編輯列單", + "lists.replies_policy.followed": "所跟tuè ê任何用者", + "lists.replies_policy.list": "列單ê成員", + "lists.replies_policy.none": "無半位", + "load_pending": "{count, plural, other {# ê 項目}}", + "loading_indicator.label": "Leh載入……", + "media_gallery.hide": "Khàm掉", + "moved_to_account_banner.text": "Lí ê口座 {disabledAccount} 已經停止使用ah,因為suá kàu {movedToAccount}。", + "mute_modal.hide_from_notifications": "Tuì通知內底khàm掉", + "mute_modal.hide_options": "Khàm掉選項", + "mute_modal.indefinite": "直到我取消消音", + "mute_modal.show_options": "顯示選項", + "mute_modal.they_can_mention_and_follow": "In iáu ē當提起á是跟tuè lí,毋過lí看buē著in。", + "mute_modal.they_wont_know": "In buē知影in受消音。", + "mute_modal.title": "Kā用者消音?", + "mute_modal.you_wont_see_mentions": "Lí buē看見提起in ê PO文。", + "mute_modal.you_wont_see_posts": "In iáu ē當看著lí ê PO文,毋過lí看bē tio̍h in ê。", + "navigation_bar.about": "概要", + "navigation_bar.administration": "管理", + "navigation_bar.advanced_interface": "用進階ê網頁界面開", + "navigation_bar.blocks": "封鎖ê用者", + "navigation_bar.bookmarks": "冊籤", + "navigation_bar.community_timeline": "本地ê時間線", + "navigation_bar.compose": "寫新ê PO文", + "navigation_bar.direct": "私人ê提起", + "navigation_bar.discover": "發現", + "navigation_bar.domain_blocks": "封鎖ê域名", + "navigation_bar.explore": "探查", + "navigation_bar.favourites": "Siōng kah意", + "navigation_bar.filters": "消音ê詞", + "navigation_bar.follow_requests": "跟tuè請求", + "navigation_bar.followed_tags": "跟tuè ê hashtag", + "navigation_bar.follows_and_followers": "Leh跟tuè ê kap跟tuè lí ê", + "navigation_bar.lists": "列單", + "navigation_bar.logout": "登出", + "navigation_bar.moderation": "管理", + "navigation_bar.mutes": "消音ê用者", + "navigation_bar.opened_in_classic_interface": "PO文、口座kap其他指定ê頁面,預設ē佇經典ê網頁界面內phah開。", + "navigation_bar.personal": "個人", + "navigation_bar.pins": "釘起來ê PO文", + "navigation_bar.preferences": "偏愛ê設定", + "navigation_bar.public_timeline": "聯邦ê時間線", + "navigation_bar.search": "Tshiau-tshuē", + "navigation_bar.security": "安全", + "not_signed_in_indicator.not_signed_in": "Lí著登入來接近使用tsit ê資源。", + "notification.admin.report": "{name} kā {target} 檢舉ah", + "notification.admin.report_account": "{name} kā {target} 所寫ê {count, plural, other {# 篇PO文}}檢舉ah,原因是:{category}", + "notification.admin.report_account_other": "{name} kā {target} 所寫ê {count, plural, other {# 篇PO文}}檢舉ah", + "notification.admin.report_statuses": "{name} kā {target} 檢舉ah,原因是:{category}", + "notification.admin.report_statuses_other": "{name} kā {target} 檢舉ah", + "notification.admin.sign_up": "口座 {name} 有開ah。", + "notification.admin.sign_up.name_and_others": "{name} kap {count, plural, other {其他 # ê lâng}} ê口座有開ah", + "notification.favourite": "{name} kah意lí ê PO文", + "notification.favourite.name_and_others_with_link": "{name} kap{count, plural, other {另外 # ê lâng}}kah意lí ê PO文", + "notification.follow": "{name}跟tuè lí", + "notification.follow.name_and_others": "{name} kap{count, plural, other {另外 # ê lâng}}跟tuè lí", + "notification.follow_request": "{name} 請求跟tuè lí", + "notification.follow_request.name_and_others": "{name} kap{count, plural, other {另外 # ê lâng}}請求跟tuè lí", + "notification.label.mention": "提起", + "notification.label.private_mention": "私人ê提起", + "notification.label.private_reply": "私人ê回應", + "notification.label.reply": "回應", + "notification.mention": "提起", + "notification.mentioned_you": "{name}kā lí提起", + "notification.moderation-warning.learn_more": "看詳細", + "notification.moderation_warning": "Lí有收著管理ê警告", + "notification.moderation_warning.action_delete_statuses": "Lí ê一寡PO文hōo lâng thâi掉ah。", + "notification.moderation_warning.action_disable": "Lí ê口座hōo lâng停止使用ah。", + "notification.moderation_warning.action_mark_statuses_as_sensitive": "Lí ê一寡PO文,hōo lâng標做敏感ê內容。", + "notification.moderation_warning.action_none": "Lí ê口座有收著管理ê警告。", + "notification.moderation_warning.action_sensitive": "Tuì tsit-má開始,lí êPO文ē標做敏感ê內容。", + "notification.moderation_warning.action_silence": "Lí ê口座hōo lâng限制ah。", + "notification.moderation_warning.action_suspend": "Lí ê口座ê權限已經停止ah。", + "notification.own_poll": "Lí ê投票結束ah", + "notification.poll": "Lí bat投ê投票結束ah", + "notification.reblog": "{name} 轉送lí ê PO文", + "notification.reblog.name_and_others_with_link": "{name} kap{count, plural, other {另外 # ê lâng}}轉送lí ê PO文", + "notification.relationships_severance_event": "Kap {name} ê結連無去", + "notification.relationships_severance_event.account_suspension": "{from} ê管理員kā {target} 停止權限ah,意思是lí bē koh再接受tuì in 來ê更新,á是hām in互動。", + "notification.relationships_severance_event.domain_block": "{from} ê 管理員kā {target} 封鎖ah,包含 {followersCount} 位跟tuè lí ê lâng,kap {followingCount, plural, other {#}} 位lí跟tuè ê口座。", + "notification.relationships_severance_event.learn_more": "看詳細", + "notification.relationships_severance_event.user_domain_block": "Lí已經kā {target} 封鎖ah,ē suá走 {followersCount} 位跟tuè lí ê lâng,kap {followingCount, plural, other {#}} 位lí跟tuè ê口座。", + "notification.status": "{name} tú-á PO", + "notification.update": "{name}有編輯PO文", + "notification_requests.accept": "接受", + "notification_requests.accept_multiple": "{count, plural, other {接受 # ê請求……}}", + "notification_requests.confirm_accept_multiple.button": "{count, plural, other {接受請求}}", + "notification_requests.confirm_accept_multiple.message": "Lí teh-beh接受 {count, plural, other {# ê 通知ê請求}}。Lí kám確定beh繼續?", + "notification_requests.confirm_accept_multiple.title": "接受通知ê請求?", + "notification_requests.confirm_dismiss_multiple.button": "{count, plural, other {忽略請求}}", + "notification_requests.confirm_dismiss_multiple.message": "Lí teh-beh忽略 {count, plural, other {# ê 通知ê請求}}。Lí bē當koh容易the̍h著{count, plural, other {tsiah-ê}} 通知。Lí kám確定beh繼續?", + "notification_requests.confirm_dismiss_multiple.title": "忽略通知ê請求?", + "notification_requests.dismiss": "忽略", + "notification_requests.dismiss_multiple": "{count, plural, other {忽略 # ê請求……}}", + "notification_requests.edit_selection": "編輯", + "notification_requests.exit_selection": "做好ah", + "notification_requests.explainer_for_limited_account": "因為管理員限制tsit ê口座,tuì tsit ê口座來ê通知已經hōo過濾ah。", + "notification_requests.explainer_for_limited_remote_account": "因為管理員限制tsit ê口座á是伊ê服侍器,tuì tsit ê口座來ê通知已經hōo過濾ah。", + "notification_requests.maximize": "上大化", + "notification_requests.minimize_banner": "上細化受過濾ê通知ê條á", + "notification_requests.notifications_from": "Tuì {name} 來ê通知", + "notification_requests.title": "受過濾ê通知", + "notification_requests.view": "看通知", + "notifications.clear": "清掉通知", + "notifications.clear_confirmation": "Lí kám確定beh永永清掉lí所有ê通知?", + "notifications.clear_title": "清掉通知?", + "notifications.column_settings.admin.report": "新ê檢舉:", + "notifications.column_settings.admin.sign_up": "新註冊ê口座:", + "notifications.column_settings.alert": "桌面ê通知", + "notifications.column_settings.favourite": "收藏:", + "notifications.column_settings.filter_bar.advanced": "顯示逐ê類別", + "notifications.column_settings.filter_bar.category": "快速ê過濾器", + "notifications.column_settings.follow": "新ê跟tuè者:", + "notifications.column_settings.follow_request": "新ê跟tuè請求:", + "notifications.column_settings.group": "群組", + "notifications.column_settings.mention": "提起:", + "notifications.column_settings.poll": "投票ê結果:", + "notifications.column_settings.push": "Sak通知", + "notifications.column_settings.reblog": "轉送:", + "notifications.column_settings.show": "佇欄內底顯示", + "notifications.column_settings.sound": "播放聲音", + "notifications.column_settings.status": "新ê PO文:", + "notifications.column_settings.unread_notifications.category": "Iáu bē讀ê通知", + "notifications.column_settings.unread_notifications.highlight": "強調iáu bē讀ê通知", + "notifications.column_settings.update": "編輯:", + "notifications.filter.all": "Kui ê", + "notifications.filter.boosts": "轉送", + "notifications.filter.favourites": "收藏", + "notifications.filter.follows": "跟tuè", + "notifications.filter.mentions": "提起", + "notifications.filter.polls": "投票結果", + "notifications.filter.statuses": "Lí跟tuè ê lâng ê更新", + "notifications.grant_permission": "賦予權限。", + "notifications.group": "{count} 條通知", + "notifications.mark_as_read": "Kā ta̍k條通知lóng標做有讀", + "notifications.permission_denied": "因為khah早有拒絕瀏覽器權限ê請求,桌面通知bē當用。", + "notifications.permission_denied_alert": "桌面通知bē當phah開來用,因為khah早瀏覽器ê權限受拒絕", + "notifications.permission_required": "因為需要ê權限iáu無提供,桌面通知bē當用。", + "notifications.policy.accept": "接受", + "notifications.policy.accept_hint": "佇通知內底顯示", + "notifications.policy.drop": "忽略", + "notifications.policy.drop_hint": "送去虛空,bē koh看見", + "notifications.policy.filter": "過濾器", + "notifications.policy.filter_hint": "送kàu受過濾ê通知ê收件kheh-á", + "notifications.policy.filter_limited_accounts_hint": "Hōo服侍器ê管理員限制", + "notifications.policy.filter_limited_accounts_title": "受管制ê口座", + "notifications.policy.filter_new_accounts.hint": "建立tī最近 {days, plural, other {# kang}}內", + "notifications.policy.filter_new_accounts_title": "新ê口座", + "notifications.policy.filter_not_followers_hint": "包含最近{days, plural, other {# kang}}內跟tuè lí ê lâng", + "notifications.policy.filter_not_followers_title": "無跟tuè lí ê lâng", + "notifications.policy.filter_not_following_hint": "直到lí手動允准in", + "notifications.policy.filter_not_following_title": "Lí無跟tuè ê lâng", + "notifications.policy.filter_private_mentions_hint": "通知ē受過濾,除非是tī lí ê提起ê回應內底,á是lí跟tuè送PO文ê lâng", + "notifications.policy.filter_private_mentions_title": "家kī直接送來ê私人ê提起", + "notifications.policy.title": "管理通知tuì……", + "notifications_permission_banner.enable": "啟用桌面ê通知", + "notifications_permission_banner.how_to_control": "Nā beh佇Mastodon關起來ê時陣收通知,請啟用桌面通知。若準啟用,Lí ē當通過面頂ê {icon} 鈕á,準準控制siánn物互動ê類型ē生桌面通知。", + "notifications_permission_banner.title": "逐ê著看", + "onboarding.action.back": "Tńg去", + "onboarding.actions.back": "Tńg去", + "onboarding.follows.empty": "可惜,tsit-má無半條結果通顯示。Lí ē當試用tshiau-tshuē á是瀏覽探索ê頁,來tshuē beh跟tuè ê lâng,或者是sió等leh koh試。", + "onboarding.profile.discoverable": "Hōo我ê個人資料通tshuē著", + "onboarding.profile.discoverable_hint": "Nā lí揀beh佇Mastodon開hōo lâng發現ê功能,lí ê PO文通顯示佇tshiau-tshuē結果kap趨勢,而且你ê個人資料可能ē推薦hōo kap lí有相siâng興趣ê別lâng。", + "onboarding.profile.display_name": "顯示ê名", + "onboarding.profile.display_name_hint": "Lí ê全名á是別號……", + "onboarding.profile.note": "個人紹介", + "onboarding.profile.note_hint": "Lí ē當 @mention 別lâng á是用 #hashtag……", + "onboarding.profile.save_and_continue": "儲存了後繼續", + "onboarding.profile.title": "個人資料ê設定", + "onboarding.profile.upload_avatar": "Kā個人資料ê相片傳起去。", + "onboarding.profile.upload_header": "Kā個人資料ê橫條á ê圖傳起去", + "password_confirmation.exceeds_maxlength": "密碼確認超過上大ê密碼長度", + "password_confirmation.mismatching": "密碼確認kap密碼無合", + "picture_in_picture.restore": "復原", + "poll.closed": "關ah", + "poll.refresh": "Koh更新", + "poll.reveal": "看結果", + "poll.total_people": "{count, plural, other {# ê人}}", + "poll.total_votes": "{count, plural, other {# 張票}}", + "poll.vote": "投票", + "poll.voted": "Lí kā tse投票ah", + "poll.votes": "{votes, plural, other {# 張票}}", + "poll_button.add_poll": "加投票", + "poll_button.remove_poll": "Thâi掉投票", + "privacy.change": "改變PO文公開ê範圍", + "privacy.direct.long": "逐位tsit篇PO文所提起ê", + "privacy.private.long": "Kan-ta hōo跟tuè lí ê看", + "privacy.private.short": "跟tuè伊ê", + "privacy.public.long": "逐ê lâng(無論佇Mastodon以內á是以外)", + "privacy.public.short": "公開ê", + "privacy.unlisted.additional": "Tse ê行為kap公開相siâng,m̄-koh 就算lí佇口座設定phah開有關ê公開功能,PO文mā bē顯示佇即時ê動態、hashtag、探索kap Mastodon ê搜尋結果。", + "privacy.unlisted.long": "減少演算法ê宣傳", + "privacy.unlisted.short": "恬靜公開", + "privacy_policy.last_updated": "上尾更新tī:{date}", + "privacy_policy.title": "隱私權政策", + "recommended": "推薦", + "refresh": "Koh更新", + "relative_time.days": "{number} kang進前", + "relative_time.full.days": "{number, plural, other {# kang}}進前", + "relative_time.full.hours": "{number, plural, other {# 點鐘}}進前", + "relative_time.full.just_now": "頭tú-á", + "relative_time.full.minutes": "{number, plural, other {# 分鐘}}進前", + "relative_time.full.seconds": "{number, plural, other {# 秒}}進前", + "relative_time.hours": "{number}點鐘前", + "relative_time.just_now": "頭tú-á", + "relative_time.minutes": "{number} 分進前", + "relative_time.seconds": "{number} 秒進前", + "relative_time.today": "今á日", + "reply_indicator.attachments": "{count, plural, other {# ê附件}}", + "reply_indicator.cancel": "取消", + "reply_indicator.poll": "投票", + "report.block": "封鎖", + "report.block_explanation": "Lí bē koh看著in ê PO文。In bē當看tio̍h lí ê PO文kap跟tuè lí。In ē發現家kī受著封鎖。", + "report.categories.legal": "法律ê問題", + "report.categories.other": "其他", + "report.categories.spam": "Pùn-sò訊息", + "report.categories.violation": "內容違反tsi̍t ê以上服侍器ê規則", + "report.category.subtitle": "揀上合ê選項", + "report.category.title": "Kā guán講tsit ê {type} 有siánn-mih代誌", + "report.category.title_account": "個人資料", + "report.category.title_status": "PO文", + "report.close": "完成", + "report.comment.title": "Lí敢有別ê想beh hōo guán知ê?", + "report.forward": "轉送kàu {target}", + "report.forward_hint": "Tsit ê口座是別ê服侍器ê。Kám iā beh送bô落名ê檢舉ê khóo-pih?", + "report.mute": "消音", + "report.mute_explanation": "Lí bē koh看著in ê PO文。In iáu是ē當跟tuè lí,看lí ê PO文,而且m̄知in受消音。", + "report.next": "繼續", + "report.placeholder": "其他ê註釋", + "report.reasons.dislike": "我無kah意", + "report.reasons.dislike_description": "Tse是lí無愛看ê", + "report.reasons.legal": "Tse無合法", + "report.reasons.legal_description": "Lí相信伊違反lí ê國,á是服侍器所tiàm ê國ê法律", + "report.reasons.other": "其他原因", + "report.reasons.other_description": "Tsit ê問題bē當歸tī其他ê類別", + "report.reasons.spam": "Tse是pùn-sò訊息", + "report.reasons.spam_description": "Pháinn意ê連結、假互動,á是重複ê回應", + "report.reasons.violation": "伊違反服侍器ê規定", + "report.reasons.violation_description": "Lí明知伊違反特定ê規定", + "report.rules.subtitle": "請揀所有符合ê選項", + "report.rules.title": "違反siánn-mih規則?", + "report.statuses.subtitle": "請揀所有符合ê選項", + "report.statuses.title": "Kám有任何PO文證明tsit ê檢舉?", + "report.submit": "送出", + "report.target": "檢舉 {target}", + "report.thanks.take_action": "下kha是你控制所beh 佇Mastodon看ê內容ê選項:", + "report.thanks.take_action_actionable": "佇guán leh審核ê時陣,lí ē當tuì @{name} 做下kha ê行動:", + "report.thanks.title": "無想beh看著tse?", + "report.thanks.title_actionable": "多謝lí ê檢舉,guán ē處理。", + "report.unfollow": "取消跟tuè @{name}", + "report.unfollow_explanation": "Lí teh跟tuè tsit ê口座。Nā無beh佇頭頁ê時間線koh看見in ê PO文,請取消跟tuè。", + "report_notification.attached_statuses": "附 {count, plural, one {{count} 篇PO文} other {{count} 篇PO文}}ah", + "report_notification.categories.legal": "法規", + "report_notification.categories.legal_sentence": "違法ê內容", + "report_notification.categories.other": "其他", + "report_notification.categories.other_sentence": "其他", + "report_notification.categories.spam": "Pùn-sò訊息", + "report_notification.categories.spam_sentence": "pùn-sò訊息", + "report_notification.categories.violation": "違反規則", + "report_notification.categories.violation_sentence": "違反規則", + "report_notification.open": "Phah開檢舉", + "search.no_recent_searches": "無最近ê tshiau-tshuē", + "search.placeholder": "Tshiau-tshuē", + "search.quick_action.account_search": "合 {x} ê個人檔案", + "search.quick_action.go_to_account": "行去個人資料 {x}", + "search.quick_action.go_to_hashtag": "行去hashtag {x}", + "search.quick_action.open_url": "佇Mastodon來phah開URL", + "search.quick_action.status_search": "合 {x} ê PO文", + "search.search_or_paste": "Tshiau-tshuē á是貼URL", + "search_popout.full_text_search_disabled_message": "{domain} 頂bē當用。", + "search_popout.full_text_search_logged_out_message": "Kan-ta佇登入ê時通用。", + "search_popout.language_code": "ISO語言代碼", + "search_popout.options": "Tshiau-tshuē ê選項", + "search_popout.quick_actions": "快速ê行動", + "search_popout.recent": "最近ê tshiau-tshuē", + "search_popout.specific_date": "特定ê日", + "search_popout.user": "用者", + "search_results.accounts": "個人資料", + "search_results.all": "全部", + "search_results.hashtags": "Hashtag", + "search_results.see_all": "看全部", + "search_results.statuses": "PO文", + "server_banner.about_active_users": "最近30kang用本站êlâng(月ê活動ê用者)", + "server_banner.active_users": "活動ê用者", + "server_banner.administered_by": "管理員:", + "server_banner.is_one_of_many": "{domain} 屬佇tsē-tsē獨立ê Mastodonê服侍器,lí ē當用tse參與聯邦宇宙。", + "server_banner.server_stats": "服侍器ê統計:", + "sign_in_banner.create_account": "開口座", + "sign_in_banner.follow_anyone": "跟tuè聯邦宇宙ê任何tsi̍t ê,用時間ê順序看所有ê內容。無演算法、廣告、點滑鼠ê餌(clickbait)。", + "sign_in_banner.mastodon_is": "Mastodon是跟tuè siánn物當teh發生ê上贊ê方法。", + "sign_in_banner.sign_in": "登入", + "sign_in_banner.sso_redirect": "登入á是註冊", + "status.admin_account": "Phah開 @{name} ê管理界面", + "status.admin_domain": "Phah開 {domain} ê管理界面", + "status.admin_status": "Tī管理界面內底看tsit篇PO文", + "status.block": "封鎖 @{name}", + "status.bookmark": "冊籤", + "status.cancel_reblog_private": "取消轉送", + "status.cannot_reblog": "Tsit篇PO文bē當轉送", + "status.continued_thread": "接續ê討論線", + "status.copy": "Khóo-pih PO文ê連結", + "status.delete": "Thâi掉", + "status.detailed_status": "對話ê詳細", + "status.direct": "私人提起 @{name}", + "status.direct_indicator": "私人ê提起", + "status.edit": "編輯", + "status.edited": "上尾編輯tī:{date}", + "status.edited_x_times": "有編輯 {count, plural, one {{count} kái} other {{count} kái}}", + "status.embed": "The̍h相tàu ê (embed)程式碼", + "status.favourite": "收藏", + "status.favourites": "{count, plural, other {# 篇收藏}}", + "status.filter": "過濾tsit 篇 PO文", + "status.history.created": "{name} 佇 {date} 建立", + "status.history.edited": "{name} 佇 {date} 編輯", + "status.load_more": "載入其他ê內容", + "status.media.open": "點來開", + "status.media.show": "Tshi̍h來顯示", + "status.media_hidden": "Khàm起來ê媒體", + "status.mention": "提起 @{name}", + "status.more": "詳細", + "status.mute": "消音 @{name}", + "status.mute_conversation": "Kā對話消音", + "status.open": "Kā PO文展開", + "status.read_more": "讀詳細", + "status.reblog": "轉送", + "status.reblog_private": "照原PO ê通看見ê範圍轉送", + "status.reblogged_by": "{name} kā轉送ah", + "status.reblogs": "{count, plural, other {# ê 轉送}}", + "status.reblogs.empty": "Iáu無lâng轉送tsit篇PO文。Nā是有lâng轉送,ē佇tsia顯示。", + "status.redraft": "Thâi掉了後重寫", + "status.remove_bookmark": "Thâi掉冊籤", + "status.replied_in_thread": "佇討論線內應", + "status.replied_to": "回應 {name}", + "status.reply": "回應", + "status.replyAll": "應討論線", + "status.report": "檢舉 @{name}", + "status.sensitive_warning": "敏感ê內容", + "status.share": "分享", + "status.show_less_all": "Lóng收起來", + "status.show_more_all": "Lóng展開", + "status.show_original": "顯示原文", + "status.title.with_attachments": "{user} 有PO {attachmentCount, plural, other {{attachmentCount} ê附件}}", + "status.translate": "翻譯", + "status.translated_from_with": "用 {provider} 翻譯 {lang}", + "status.uncached_media_warning": "Bē當先看māi", + "status.unmute_conversation": "Kā對話取消消音", + "subscribed_languages.lead": "Tī改變了後,kan-ta所揀ê語言ê PO文tsiah ē顯示佇lí ê厝ê時間線kap列單。揀「無」來接受所有語言êPO文。", + "subscribed_languages.save": "儲存改變", + "subscribed_languages.target": "改 {target} ê訂ê語言", + "tabs_bar.home": "頭頁", + "tabs_bar.notifications": "通知", + "time_remaining.days": "Tshun {number, plural, other {# kang}}", + "time_remaining.hours": "Tshun {number, plural, other {# 點鐘}}", + "time_remaining.minutes": "Tshun {number, plural, other {# 分鐘}}", + "time_remaining.moments": "Tshun ê時間", + "time_remaining.seconds": "Tshun {number, plural, other {# 秒}}", + "trends.counter_by_accounts": "{count, plural, one {{counter} ê} other {{counter} ê}} lâng tī過去 {days, plural, one {kang} other {{days} kang}}內底", + "trends.trending_now": "Tsit-má ê趨勢", + "ui.beforeunload": "Nā離開Mastodon,lí ê草稿ē無去。", + "units.short.billion": "{count}B", + "units.short.million": "{count}M", + "units.short.thousand": "{count}K", + "upload_area.title": "Giú放來傳起去", + "upload_button.label": "加圖片、影片á是聲音檔", + "upload_error.limit": "超過檔案傳起去ê限制", + "upload_error.poll": "Bô允準佇投票ê時kā檔案傳起去。", + "upload_form.drag_and_drop.instructions": "Nā beh選媒體附件,請tshi̍h空白key á是Enter key。Giú ê時,請用方向key照指定ê方向suá媒體附件。Beh khǹg媒體附件佇伊ê新位置,請koh tshi̍h空白key á是Enter key,或者tshi̍h Esc key來取消。", + "upload_form.drag_and_drop.on_drag_cancel": "Suá位取消ah,媒體附件 {item} khǹg落來ah。", + "upload_form.drag_and_drop.on_drag_end": "媒體附件 {item} khǹg落來ah。", + "upload_form.drag_and_drop.on_drag_over": "媒體附件 {item} suá tín動ah。", + "upload_form.drag_and_drop.on_drag_start": "媒體附件 {item} 揀起來ah。", + "upload_form.edit": "編輯", + "upload_progress.label": "Teh傳起去……", + "upload_progress.processing": "Teh處理……", + "username.taken": "Tsit ê口座hōo lâng註冊ah,試別ê", + "video.close": "關影片", + "video.download": "Kā檔案載落去", + "video.exit_fullscreen": "離開全螢幕", + "video.expand": "展開影片", + "video.fullscreen": "全螢幕", + "video.hide": "Tshàng影片", + "video.pause": "暫停", + "video.play": "播出" +} diff --git a/app/javascript/mastodon/locales/nl.json b/app/javascript/mastodon/locales/nl.json index c9d7849fe1..dce08aa714 100644 --- a/app/javascript/mastodon/locales/nl.json +++ b/app/javascript/mastodon/locales/nl.json @@ -211,7 +211,7 @@ "directory.recently_active": "Onlangs actief", "disabled_account_banner.account_settings": "Accountinstellingen", "disabled_account_banner.text": "Jouw account {disabledAccount} is momenteel uitgeschakeld.", - "dismissable_banner.community_timeline": "Dit zijn de meest recente openbare berichten van accounts op {domain}. Je kunt onder 'instellingen > voorkeuren > overig' kiezen welke talen je wilt zien.", + "dismissable_banner.community_timeline": "Dit zijn de meest recente openbare berichten van gebruikers met een account op {domain}.", "dismissable_banner.dismiss": "Sluiten", "dismissable_banner.explore_links": "Dit zijn nieuwsberichten die vandaag het meest op het sociale web (fediverse) worden gedeeld. Nieuwere nieuwsberichten die door meer verschillende mensen zijn geplaatst staan hoger op de lijst.", "dismissable_banner.explore_statuses": "Dit zijn berichten op het sociale web (fediverse) die vandaag aan populariteit winnen. Nieuwere berichten met meer boosts en favorieten staan hoger.", @@ -509,7 +509,7 @@ "notification.favourite": "{name} markeerde jouw bericht als favoriet", "notification.favourite.name_and_others_with_link": "{name} en {count, plural, one {# ander persoon} other {# andere personen}} hebben jouw bericht als favoriet gemarkeerd", "notification.follow": "{name} volgt jou nu", - "notification.follow.name_and_others": "{name} en {count, plural, one {# ander persoon} other {# andere personen}} volgen jou nou", + "notification.follow.name_and_others": "{name} en {count, plural, one {# ander persoon} other {# andere personen}} volgen jou nu", "notification.follow_request": "{name} wil jou graag volgen", "notification.follow_request.name_and_others": "{name} en {count, plural, one {# ander persoon} other {# andere personen}} hebben gevraagd om je te volgen", "notification.label.mention": "Vermelding", @@ -638,7 +638,7 @@ "onboarding.start.lead": "Je maakt nu deel uit van Mastodon, een uniek, gedecentraliseerd sociaal mediaplatform waar jij - en dus geen algoritme - jouw eigen ervaring beheert. Laten we beginnen aan deze nieuwe sociale uitdaging:", "onboarding.start.skip": "Wil je meteen verdergaan?", "onboarding.start.title": "Het is je gelukt!", - "onboarding.steps.follow_people.body": "Op Mastodon draait het helemaal om het volgen van interessante mensen.", + "onboarding.steps.follow_people.body": "Op Mastodon draait het volledig om het volgen van interessante mensen.", "onboarding.steps.follow_people.title": "Je starttijdlijn aan jouw wensen aanpassen", "onboarding.steps.publish_status.body": "Zeg hallo tegen de wereld met tekst, foto's, video's of peilingen {emoji}", "onboarding.steps.publish_status.title": "Maak je eerste bericht", @@ -663,7 +663,7 @@ "poll.votes": "{votes, plural, one {# stem} other {# stemmen}}", "poll_button.add_poll": "Peiling toevoegen", "poll_button.remove_poll": "Peiling verwijderen", - "privacy.change": "Privacy voor een bericht aanpassen", + "privacy.change": "Privacy van dit bericht aanpassen", "privacy.direct.long": "Alleen voor mensen die specifiek in het bericht worden vermeld", "privacy.direct.short": "Privébericht", "privacy.private.long": "Alleen jouw volgers", diff --git a/app/javascript/mastodon/locales/nn.json b/app/javascript/mastodon/locales/nn.json index 84d5f5879f..ad4d8c64c6 100644 --- a/app/javascript/mastodon/locales/nn.json +++ b/app/javascript/mastodon/locales/nn.json @@ -36,7 +36,7 @@ "account.followers.empty": "Ingen fylgjer denne brukaren enno.", "account.followers_counter": "{count, plural, one {{counter} fylgjar} other {{counter} fylgjarar}}", "account.following": "Fylgjer", - "account.following_counter": "{count, plural, one {{counter} fylgjar} other {{counter} fylgjarar}}", + "account.following_counter": "{count, plural, one {fylgjer {counter}} other {fylgjer {counter}}}", "account.follows.empty": "Denne brukaren fylgjer ikkje nokon enno.", "account.go_to_profile": "Gå til profil", "account.hide_reblogs": "Gøym framhevingar frå @{name}", @@ -202,9 +202,9 @@ "conversation.mark_as_read": "Marker som lesen", "conversation.open": "Sjå samtale", "conversation.with": "Med {names}", - "copy_icon_button.copied": "Kopiert til utklyppstavla", + "copy_icon_button.copied": "Kopiert til utklippstavla", "copypaste.copied": "Kopiert", - "copypaste.copy_to_clipboard": "Kopier til utklyppstavla", + "copypaste.copy_to_clipboard": "Kopier til utklippstavla", "directory.federated": "Frå den kjende allheimen", "directory.local": "Berre frå {domain}", "directory.new_arrivals": "Nyleg tilkomne", @@ -486,7 +486,7 @@ "navigation_bar.filters": "Målbundne ord", "navigation_bar.follow_requests": "Fylgjeførespurnader", "navigation_bar.followed_tags": "Fylgde emneknaggar", - "navigation_bar.follows_and_followers": "Fylgje og fylgjarar", + "navigation_bar.follows_and_followers": "Fylgjer og fylgjarar", "navigation_bar.lists": "Lister", "navigation_bar.logout": "Logg ut", "navigation_bar.moderation": "Moderering", @@ -670,7 +670,7 @@ "privacy.private.short": "Fylgjarar", "privacy.public.long": "Kven som helst på og av Mastodon", "privacy.public.short": "Offentleg", - "privacy.unlisted.additional": "Dette er akkurat som offentleg, bortsett frå at innlegga ikkje dukkar opp i direktestraumar eller merkelappar, i oppdagingar eller Mastodon-søk, sjølv om du har sagt ja til at kontoen skal vera synleg.", + "privacy.unlisted.additional": "Dette er akkurat som offentleg, bortsett frå at innlegga ikkje dukkar opp i direktestraumar eller emneknaggar, i oppdagingar eller Mastodon-søk, sjølv om du har sagt ja til at kontoen skal vera synleg.", "privacy.unlisted.long": "Færre algoritmiske fanfarar", "privacy.unlisted.short": "Stille offentleg", "privacy_policy.last_updated": "Sist oppdatert {date}", @@ -848,7 +848,7 @@ "ui.beforeunload": "Kladden din forsvinn om du forlèt Mastodon no.", "units.short.billion": "{count}m.ard", "units.short.million": "{count}mill", - "units.short.thousand": "{count}T", + "units.short.thousand": "{count}k", "upload_area.title": "Dra & slepp for å lasta opp", "upload_button.label": "Legg til medium", "upload_error.limit": "Du har gått over opplastingsgrensa.", diff --git a/app/javascript/mastodon/locales/no.json b/app/javascript/mastodon/locales/no.json index 193d4702e1..760a8d5441 100644 --- a/app/javascript/mastodon/locales/no.json +++ b/app/javascript/mastodon/locales/no.json @@ -3,13 +3,13 @@ "about.contact": "Kontakt:", "about.disclaimer": "Mastodon er gratis, åpen kildekode-programvare og et varemerke fra Mastodon gGmbH.", "about.domain_blocks.no_reason_available": "Årsak ikke tilgjengelig", - "about.domain_blocks.preamble": "Mastodon lar deg normalt sett se innholdet fra og samhandle med brukere fra enhver annen tjener i fødiverset. Dette er unntakene som har blitt lagt inn på denne tjeneren.", - "about.domain_blocks.silenced.explanation": "Du vil vanligvis ikke se profiler og innhold fra denne tjeneren, med mindre du eksplisitt søker dem opp eller velger å følge dem.", + "about.domain_blocks.preamble": "Mastodon lar deg normalt sett se innholdet fra og samhandle med brukere fra enhver annen server i fødiverset. Dette er unntakene som har blitt lagt inn på denne serveren.", + "about.domain_blocks.silenced.explanation": "Du vil vanligvis ikke se profiler og innhold fra denne serveren, med mindre du eksplisitt søker dem opp eller velger å følge dem.", "about.domain_blocks.silenced.title": "Begrenset", - "about.domain_blocks.suspended.explanation": "Ikke noe innhold fra denne tjeneren vil bli behandlet, lagret eller utvekslet. Det gjør det umulig å samhandle eller kommunisere med brukere fra denne tjeneren.", + "about.domain_blocks.suspended.explanation": "Ikke noe innhold fra denne serveren vil bli behandlet, lagret eller utvekslet. Det gjør det umulig å samhandle eller kommunisere med brukere fra denne serveren.", "about.domain_blocks.suspended.title": "Suspendert", - "about.not_available": "Denne informasjonen er ikke gjort tilgjengelig på denne tjeneren.", - "about.powered_by": "Desentraliserte sosiale medier drevet av {mastodon}", + "about.not_available": "Denne informasjonen er ikke gjort tilgjengelig på denne serveren.", + "about.powered_by": "Desentralisert sosialt medie drevet av {mastodon}", "about.rules": "Regler for serveren", "account.account_note_header": "Personlig notat", "account.add_or_remove_from_list": "Legg til eller fjern fra lister", @@ -730,6 +730,7 @@ "report_notification.categories.spam": "Søppelpost", "report_notification.categories.spam_sentence": "spam", "report_notification.categories.violation": "Regelbrudd", + "report_notification.categories.violation_sentence": "regel brudd", "report_notification.open": "Åpne rapport", "search.no_recent_searches": "Ingen søk nylig", "search.placeholder": "Søk", @@ -780,6 +781,7 @@ "status.edited": "Sist endret {date}", "status.edited_x_times": "Redigert {count, plural,one {{count} gang} other {{count} ganger}}", "status.favourite": "Favoritt", + "status.favourites": "{count, plural, one {favoritt} other {favoritter}}", "status.filter": "Filtrer dette innlegget", "status.history.created": "{name} opprettet {date}", "status.history.edited": "{name} redigerte {date}", @@ -798,9 +800,11 @@ "status.reblog": "Fremhev", "status.reblog_private": "Fremhev til det opprinnelige publikummet", "status.reblogged_by": "Fremhevet av {name}", + "status.reblogs": "{count, plural, one {fremheving} other {fremhevinger}}", "status.reblogs.empty": "Ingen har fremhevet dette innlegget enda. Når noen gjør det, vil de dukke opp her.", "status.redraft": "Slett og skriv på nytt", "status.remove_bookmark": "Fjern bokmerke", + "status.replied_in_thread": "Svarte i tråd", "status.replied_to": "Som svar til {name}", "status.reply": "Svar", "status.replyAll": "Svar til samtale", @@ -831,13 +835,14 @@ "ui.beforeunload": "Din kladd vil bli forkastet om du forlater Mastodon.", "units.short.billion": "{count}m.ard", "units.short.million": "{count}mill", - "units.short.thousand": "{count}T", + "units.short.thousand": "{count}k", "upload_area.title": "Dra og slipp for å laste opp", "upload_button.label": "Legg til media", "upload_error.limit": "Filopplastingsgrensen er oversteget.", "upload_error.poll": "Filopplasting er ikke tillatt for avstemninger.", "upload_form.audio_description": "Beskriv det for folk med hørselstap", "upload_form.description": "Beskriv for synshemmede", + "upload_form.drag_and_drop.instructions": "For å plukke opp et medievedlegg, trykk på mellomrom eller enter. Bruk piltastene for å flytte medievedlegget i ønsket retning. Trykk mellomrom eller enter igjen for å slippe vedlegget på nytt sted, eller trykk på esc for å avbryte.", "upload_form.edit": "Rediger", "upload_form.thumbnail": "Endre miniatyrbilde", "upload_form.video_description": "Beskriv det for folk med hørselstap eller synshemminger", diff --git a/app/javascript/mastodon/locales/oc.json b/app/javascript/mastodon/locales/oc.json index c537d35898..dc32e13d55 100644 --- a/app/javascript/mastodon/locales/oc.json +++ b/app/javascript/mastodon/locales/oc.json @@ -144,8 +144,10 @@ "confirmations.block.confirm": "Blocar", "confirmations.delete.confirm": "Escafar", "confirmations.delete.message": "Volètz vertadièrament escafar l’estatut ?", + "confirmations.delete.title": "Suprimir la publicacion ?", "confirmations.delete_list.confirm": "Suprimir", "confirmations.delete_list.message": "Volètz vertadièrament suprimir aquesta lista per totjorn ?", + "confirmations.delete_list.title": "Suprimir la lista ?", "confirmations.discard_edit_media.confirm": "Ignorar", "confirmations.edit.confirm": "Modificar", "confirmations.logout.confirm": "Desconnexion", @@ -156,6 +158,8 @@ "confirmations.reply.message": "Respondre remplaçarà lo messatge que sètz a escriure. Volètz vertadièrament contunhar ?", "confirmations.unfollow.confirm": "Quitar de sègre", "confirmations.unfollow.message": "Volètz vertadièrament quitar de sègre {name} ?", + "content_warning.hide": "Amagar la publicacion", + "content_warning.show_more": "Ne veire mai", "conversation.delete": "Suprimir la conversacion", "conversation.mark_as_read": "Marcar coma legida", "conversation.open": "Veire la conversacion", @@ -311,6 +315,7 @@ "limited_account_hint.action": "Afichar lo perfil de tota manièra", "limited_account_hint.title": "Aqueste perfil foguèt rescondut per la moderacion de {domain}.", "link_preview.author": "Per {name}", + "link_preview.more_from_author": "Mai de {name}", "lists.account.add": "Ajustar a la lista", "lists.account.remove": "Levar de la lista", "lists.delete": "Suprimir la lista", @@ -326,7 +331,9 @@ "lists.subheading": "Vòstras listas", "load_pending": "{count, plural, one {# nòu element} other {# nòu elements}}", "loading_indicator.label": "Cargament…", + "media_gallery.hide": "Rescondre", "navigation_bar.about": "A prepaus", + "navigation_bar.administration": "Administracion", "navigation_bar.advanced_interface": "Dobrir l’interfàcia web avançada", "navigation_bar.blocks": "Personas blocadas", "navigation_bar.bookmarks": "Marcadors", @@ -343,6 +350,7 @@ "navigation_bar.follows_and_followers": "Abonament e seguidors", "navigation_bar.lists": "Listas", "navigation_bar.logout": "Desconnexion", + "navigation_bar.moderation": "Moderacion", "navigation_bar.mutes": "Personas rescondudas", "navigation_bar.personal": "Personal", "navigation_bar.pins": "Tuts penjats", @@ -356,10 +364,18 @@ "notification.favourite": "{name} a mes vòstre estatut en favorit", "notification.follow": "{name} vos sèc", "notification.follow_request": "{name} a demandat a vos sègre", + "notification.label.mention": "Mencion", + "notification.label.private_mention": "Mencion privada", + "notification.label.private_reply": "Responsa privada", + "notification.label.reply": "Respondre", + "notification.mention": "Mencionar", + "notification.mentioned_you": "{name} vos a mencionat", + "notification.moderation-warning.learn_more": "Ne saber mai", "notification.own_poll": "Vòstre sondatge es acabat", "notification.reblog": "{name} a partejat vòstre estatut", + "notification.relationships_severance_event.learn_more": "Ne saber mai", "notification.status": "{name} ven de publicar", - "notification.update": "{name} modiquè sa publicacion", + "notification.update": "{name} modifiquèt sa publicacion", "notifications.clear": "Escafar", "notifications.clear_confirmation": "Volètz vertadièrament escafar totas vòstras las notificacions ?", "notifications.column_settings.admin.report": "Senhalaments novèls :", @@ -427,7 +443,12 @@ "poll_button.add_poll": "Ajustar un sondatge", "poll_button.remove_poll": "Levar lo sondatge", "privacy.change": "Ajustar la confidencialitat del messatge", + "privacy.direct.long": "Sonque los qu’avètz mencionats dins la publicacion", + "privacy.private.long": "Mostrar pas qu’als seguidors", + "privacy.private.short": "Seguidors", + "privacy.public.long": "Tot lo monde de e defòra de Mastodon", "privacy.public.short": "Public", + "privacy.unlisted.short": "Public silenciós", "privacy_policy.last_updated": "Darrièra actualizacion {date}", "privacy_policy.title": "Politica de confidencialitat", "refresh": "Actualizar", @@ -473,6 +494,7 @@ "report.target": "Senhalar {target}", "report.thanks.title": "Volètz pas veire aquò ?", "report.unfollow": "Quitar de sègre {name}", + "report.unfollow_explanation": "Seguissètz aqueste compte. Per veire pas pus lors publicacions dins vòstra cronologia, quitatz de lo sègre.", "report_notification.attached_statuses": "{count, plural, one {{count} publicacion junta} other {{count} publicacions juntas}}", "report_notification.categories.other": "Autre", "report_notification.categories.spam": "Messatge indesirable", @@ -506,6 +528,7 @@ "status.bookmark": "Marcador", "status.cancel_reblog_private": "Quitar de partejar", "status.cannot_reblog": "Aqueste estatut pòt pas èsser partejat", + "status.continued_thread": "Seguida del fial", "status.copy": "Copiar lo ligam de l’estatut", "status.delete": "Escafar", "status.detailed_status": "Vista detalhada de la convèrsa", diff --git a/app/javascript/mastodon/locales/pa.json b/app/javascript/mastodon/locales/pa.json index 6609d514ff..31fe026a2a 100644 --- a/app/javascript/mastodon/locales/pa.json +++ b/app/javascript/mastodon/locales/pa.json @@ -49,6 +49,7 @@ "account.requested": "ਮਨਜ਼ੂਰੀ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ। ਫ਼ਾਲੋ ਬੇਨਤੀਆਂ ਨੂੰ ਰੱਦ ਕਰਨ ਲਈ ਕਲਿੱਕ ਕਰੋ", "account.requested_follow": "{name} ਨੇ ਤੁਹਾਨੂੰ ਫ਼ਾਲੋ ਕਰਨ ਦੀ ਬੇਨਤੀ ਕੀਤੀ ਹੈ", "account.share": "{name} ਦਾ ਪਰੋਫ਼ਾਇਲ ਸਾਂਝਾ ਕਰੋ", + "account.show_reblogs": "@{name} ਵਲੋਂ ਬੂਸਟ ਨੂੰ ਵੇਖਾਓ", "account.statuses_counter": "{count, plural, one {{counter} ਪੋਸਟ} other {{counter} ਪੋਸਟਾਂ}}", "account.unblock": "@{name} ਤੋਂ ਪਾਬੰਦੀ ਹਟਾਓ", "account.unblock_domain": "{domain} ਡੋਮੇਨ ਤੋਂ ਪਾਬੰਦੀ ਹਟਾਓ", @@ -78,6 +79,7 @@ "bundle_modal_error.close": "ਬੰਦ ਕਰੋ", "bundle_modal_error.message": "ਭਾਗ ਲੋਡ ਕਰਨ ਦੌਰਾਨ ਕੁਝ ਗਲਤ ਵਾਪਰਿਆ ਹੈ।", "bundle_modal_error.retry": "ਮੁੜ-ਕੋਸ਼ਿਸ਼ ਕਰੋ", + "closed_registrations_modal.find_another_server": "ਹੋਰ ਸਰਵਰ ਲੱਭੋ", "closed_registrations_modal.title": "Mastodon ਲਈ ਸਾਈਨ ਅੱਪ ਕਰੋ", "column.about": "ਸਾਡੇ ਬਾਰੇ", "column.blocks": "ਪਾਬੰਦੀ ਲਾਏ ਵਰਤੋਂਕਾਰ", @@ -116,6 +118,8 @@ "compose_form.lock_disclaimer": "ਤੁਹਾਡਾ ਖਾਤਾ {locked} ਨਹੀਂ ਹੈ। ਕੋਈ ਵੀ ਤੁਹਾਡੀਆਂ ਸਿਰਫ਼-ਫ਼ਾਲੋਅਰ ਪੋਸਟਾਂ ਵੇਖਣ ਵਾਸਤੇ ਤੁਹਾਨੂੰ ਫ਼ਾਲੋ ਕਰ ਸਕਦਾ ਹੈ।", "compose_form.lock_disclaimer.lock": "ਲਾਕ ਹੈ", "compose_form.placeholder": "ਤੁਹਾਡੇ ਮਨ ਵਿੱਚ ਕੀ ਹੈ?", + "compose_form.poll.duration": "ਵੋਟ ਲਈ ਸਮਾਂ", + "compose_form.poll.multiple": "ਕਈ ਚੋਣਾਂ", "compose_form.poll.option_placeholder": "{number} ਚੋਣ", "compose_form.poll.type": "ਸਟਾਈਲ", "compose_form.publish": "ਪੋਸਟ", @@ -140,6 +144,7 @@ "confirmations.logout.title": "ਲਾਗ ਆਉਟ ਕਰਨਾ ਹੈ?", "confirmations.mute.confirm": "ਮੌਨ ਕਰੋ", "confirmations.redraft.confirm": "ਹਟਾਓ ਤੇ ਮੁੜ-ਡਰਾਫਟ", + "confirmations.redraft.title": "ਪੋਸਟ ਨੂੰ ਹਟਾ ਕੇ ਮੁੜ-ਡਰਾਫਟ ਕਰਨਾ ਹੈ?", "confirmations.reply.confirm": "ਜਵਾਬ ਦੇਵੋ", "confirmations.unfollow.confirm": "ਅਣ-ਫ਼ਾਲੋ", "confirmations.unfollow.message": "ਕੀ ਤੁਸੀਂ {name} ਨੂੰ ਅਣ-ਫ਼ਾਲੋ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?", @@ -210,6 +215,7 @@ "filter_modal.select_filter.search": "ਖੋਜੋ ਜਾਂ ਬਣਾਓ", "filter_modal.select_filter.title": "ਇਸ ਪੋਸਟ ਨੂੰ ਫਿਲਟਰ ਕਰੋ", "filter_modal.title.status": "ਇੱਕ ਪੋਸਟ ਨੂੰ ਫਿਲਟਰ ਕਰੋ", + "filtered_notifications_banner.title": "ਫਿਲਟਰ ਕੀਤੇ ਨੋਟੀਫਿਕੇਸ਼ਨ", "firehose.all": "ਸਭ", "firehose.local": "ਇਹ ਸਰਵਰ", "firehose.remote": "ਹੋਰ ਸਰਵਰ", @@ -241,8 +247,10 @@ "hashtag.column_settings.tag_mode.any": "ਇਹਨਾਂ ਵਿੱਚੋਂ ਕੋਈ", "hashtag.column_settings.tag_mode.none": "ਇਹਨਾਂ ਵਿੱਚੋਂ ਕੋਈ ਨਹੀਂ", "hashtag.column_settings.tag_toggle": "Include additional tags in this column", + "hashtag.counter_by_accounts": "{count, plural, one {{counter} ਹਿੱਸੇਦਾਰ} other {{counter} ਹਿੱਸੇਦਾਰ}}", "hashtag.follow": "ਹੈਸ਼ਟੈਗ ਨੂੰ ਫ਼ਾਲੋ ਕਰੋ", "hashtag.unfollow": "ਹੈਸ਼ਟੈਗ ਨੂੰ ਅਣ-ਫ਼ਾਲੋ ਕਰੋ", + "hashtags.and_other": "…ਅਤੇ {count, plural, one {}other {# ਹੋਰ}}", "hints.profiles.see_more_followers": "{domain} ਉੱਤੇ ਹੋਰ ਫ਼ਾਲੋਅਰ ਵੇਖੋ", "hints.profiles.see_more_follows": "{domain} ਉੱਤੇ ਹੋਰ ਫ਼ਾਲੋ ਨੂੰ ਵੇਖੋ", "hints.profiles.see_more_posts": "{domain} ਉੱਤੇ ਹੋਰ ਪੋਸਟਾਂ ਨੂੰ ਵੇਖੋ", @@ -315,6 +323,7 @@ "loading_indicator.label": "ਲੋਡ ਹੋ ਰਿਹਾ ਹੈ…", "media_gallery.hide": "ਲੁਕਾਓ", "mute_modal.hide_from_notifications": "ਨੋਟੀਫਿਕੇਸ਼ਨਾਂ ਵਿੱਚੋਂ ਲੁਕਾਓ", + "mute_modal.hide_options": "ਚੋਣਾਂ ਨੂੰ ਲੁਕਾਓ", "mute_modal.show_options": "ਚੋਣਾਂ ਨੂੰ ਵੇਖਾਓ", "mute_modal.title": "ਵਰਤੋਂਕਾਰ ਨੂੰ ਮੌਨ ਕਰਨਾ ਹੈ?", "navigation_bar.about": "ਇਸ ਬਾਰੇ", @@ -369,16 +378,22 @@ "notification_requests.edit_selection": "ਸੋਧੋ", "notification_requests.exit_selection": "ਮੁਕੰਮਲ", "notification_requests.notifications_from": "{name} ਵਲੋਂ ਨੋਟੀਫਿਕੇਸ਼ਨ", + "notification_requests.title": "ਫਿਲਟਰ ਕੀਤੇ ਨੋਟੀਫਿਕੇਸ਼ਨ", + "notification_requests.view": "ਨੋਟਫਿਕੇਸ਼ਨਾਂ ਨੂੰ ਵੇਖੋ", + "notifications.clear": "ਸੂਚਨਾਵਾਂ ਨੂੰ ਮਿਟਾਓ", + "notifications.clear_confirmation": "ਕੀ ਤੁਸੀਂ ਆਪਣੇ ਸਾਰੇ ਨੋਟੀਫਿਕੇਸ਼ਨਾਂ ਨੂੰ ਪੱਕੇ ਤੌਰ ਉੱਤੇ ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?", "notifications.clear_title": "ਨੋਟਫਿਕੇਸ਼ਨਾਂ ਨੂੰ ਮਿਟਾਉਣਾ ਹੈ?", "notifications.column_settings.admin.report": "ਨਵੀਆਂ ਰਿਪੋਰਟਾਂ:", "notifications.column_settings.alert": "ਡੈਸਕਟਾਪ ਸੂਚਨਾਵਾਂ", "notifications.column_settings.favourite": "ਮਨਪਸੰਦ:", + "notifications.column_settings.filter_bar.advanced": "ਸਭ ਵਰਗਾਂ ਨੂੰ ਵੇਖਾਓ", "notifications.column_settings.filter_bar.category": "ਫੌਰੀ ਫਿਲਟਰ ਪੱਟੀ", "notifications.column_settings.follow": "ਨਵੇਂ ਫ਼ਾਲੋਅਰ:", "notifications.column_settings.follow_request": "ਨਵੀਆਂ ਫ਼ਾਲੋ ਬੇਨਤੀਆਂ:", "notifications.column_settings.group": "ਗਰੁੱਪ", "notifications.column_settings.mention": "ਜ਼ਿਕਰ:", "notifications.column_settings.poll": "ਪੋਲ ਦੇ ਨਤੀਜੇ:", + "notifications.column_settings.push": "ਪੁਸ਼ ਨੋਟੀਫਿਕੇਸ਼ਨ", "notifications.column_settings.reblog": "ਬੂਸਟ:", "notifications.column_settings.show": "ਕਾਲਮ ਵਿੱਚ ਵੇਖਾਓ", "notifications.column_settings.sound": "ਆਵਾਜ਼ ਚਲਾਓ", @@ -392,8 +407,10 @@ "notifications.filter.follows": "ਫ਼ਾਲੋ", "notifications.filter.mentions": "ਜ਼ਿਕਰ", "notifications.filter.polls": "ਪੋਲ ਦੇ ਨਤੀਜੇ", + "notifications.filter.statuses": "ਤੁਹਾਡੇ ਵਲੋਂ ਫ਼ਾਲੋ ਕੀਤੇ ਲੋਕਾਂ ਤੋਂ ਅੱਪਡੇਟ", "notifications.grant_permission": "ਇਜਾਜ਼ਤ ਦਿਓ।", "notifications.group": "{count} ਨੋਟੀਫਿਕੇਸ਼ਨ", + "notifications.mark_as_read": "ਹਰ ਨੋਟੀਫਿਕੇਸ਼ਨ ਨੂੰ ਪੜ੍ਹੇ ਵਜੋਂ ਨਿਸ਼ਾਨੀ ਲਾਓ", "notifications.policy.accept": "ਮਨਜ਼ੂਰ", "notifications.policy.accept_hint": "ਨੋਟੀਫਿਕੇਸ਼ਨਾਂ ਵਿੱਚ ਵੇਖਾਓ", "notifications.policy.drop": "ਅਣਡਿੱਠਾ", @@ -406,6 +423,7 @@ "onboarding.actions.go_to_home": "ਮੇਰੀ ਮੁੱਖ ਫੀਡ ਉੱਤੇ ਲੈ ਜਾਓ", "onboarding.follows.lead": "", "onboarding.follows.title": "ਆਪਣੀ ਹੋਮ ਫੀਡ ਨੂੰ ਨਿੱਜੀ ਬਣਾਓ", + "onboarding.profile.display_name": "ਦਿਖਾਇਆ ਜਾਣ ਵਾਲਾ ਨਾਂ", "onboarding.profile.note": "ਜਾਣਕਾਰੀ", "onboarding.profile.save_and_continue": "ਸੰਭਾਲੋ ਅਤੇ ਜਾਰੀ ਰੱਖੋ", "onboarding.profile.title": "ਪਰੋਫਾਈਲ ਸੈਟਅੱਪ", @@ -450,6 +468,7 @@ "relative_time.seconds": "{number}ਸ", "relative_time.today": "ਅੱਜ", "reply_indicator.cancel": "ਰੱਦ ਕਰੋ", + "reply_indicator.poll": "ਵੋਟਾਂ", "report.block": "ਬਲਾਕ", "report.categories.legal": "ਕਨੂੰਨੀ", "report.categories.other": "ਬਾਕੀ", @@ -457,6 +476,7 @@ "report.category.title_account": "ਪਰੋਫਾਈਲ", "report.category.title_status": "ਪੋਸਟ", "report.close": "ਮੁਕੰਮਲ", + "report.forward": "{target} ਨੂੰ ਅੱਗੇ ਭੇਜੋ", "report.mute": "ਮੌਨ ਕਰੋ", "report.next": "ਅਗਲੀ", "report.placeholder": "ਵਧੀਕ ਟਿੱਪਣੀਆਂ", @@ -474,6 +494,7 @@ "report.unfollow": "@{name} ਨੂੰ ਅਣ-ਫ਼ਾਲੋ ਕਰੋ", "report_notification.attached_statuses": "{count, plural, one {# post} other {# posts}} attached", "report_notification.categories.legal": "ਕਨੂੰਨੀ", + "report_notification.categories.legal_sentence": "ਗ਼ੈਰ-ਕਨੂੰਨੀ ਸਮੱਗਰੀ", "report_notification.categories.other": "ਬਾਕੀ", "report_notification.categories.other_sentence": "ਹੋਰ", "report_notification.categories.spam": "ਸਪੈਮ", @@ -512,6 +533,7 @@ "status.edited": "ਆਖਰੀ ਸੋਧ ਦੀ ਤਾਰੀਖ {date}", "status.edited_x_times": "Edited {count, plural, one {# time} other {# times}}", "status.favourite": "ਪਸੰਦ", + "status.filter": "ਇਸ ਪੋਸਟ ਨੂੰ ਫਿਲਟਰ ਕਰੋ", "status.history.created": "{name} ਨੇ {date} ਨੂੰ ਬਣਾਇਆ", "status.history.edited": "{name} ਨੇ {date} ਨੂੰ ਸੋਧਿਆ", "status.load_more": "ਹੋਰ ਦਿਖਾਓ", @@ -526,7 +548,7 @@ "status.pin": "ਪਰੋਫਾਈਲ ਉੱਤੇ ਟੰਗੋ", "status.pinned": "ਟੰਗੀ ਹੋਈ ਪੋਸਟ", "status.read_more": "ਹੋਰ ਪੜ੍ਹੋ", - "status.reblog": "ਵਧਾਓ", + "status.reblog": "ਬੂਸਟ", "status.reblogged_by": "{name} ਨੇ ਬੂਸਟ ਕੀਤਾ", "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.", "status.redraft": "ਹਟਾਓ ਤੇ ਮੁੜ-ਡਰਾਫਟ", diff --git a/app/javascript/mastodon/locales/pl.json b/app/javascript/mastodon/locales/pl.json index a92a55ffcd..414ecaa6dc 100644 --- a/app/javascript/mastodon/locales/pl.json +++ b/app/javascript/mastodon/locales/pl.json @@ -18,7 +18,7 @@ "account.block": "Blokuj @{name}", "account.block_domain": "Blokuj wszystko z {domain}", "account.block_short": "Zablokuj", - "account.blocked": "Zablokowany(-a)", + "account.blocked": "Zablokowano", "account.cancel_follow_request": "Nie obserwuj", "account.copy": "Skopiuj link do profilu", "account.direct": "Napisz bezpośrednio do @{name}", @@ -59,7 +59,7 @@ "account.posts_with_replies": "Wpisy i odpowiedzi", "account.report": "Zgłoś @{name}", "account.requested": "Oczekująca prośba, kliknij aby anulować", - "account.requested_follow": "{name} chce cię zaobserwować", + "account.requested_follow": "{name} chce cię obserwować", "account.share": "Udostępnij profil @{name}", "account.show_reblogs": "Pokazuj podbicia od @{name}", "account.statuses_counter": "{count, plural, one {{counter} wpis} few {{counter} wpisy} many {{counter} wpisów} other {{counter} wpisów}}", @@ -72,8 +72,8 @@ "account.unmute_notifications_short": "Nie wyciszaj powiadomień", "account.unmute_short": "Nie wyciszaj", "account_note.placeholder": "Kliknij, aby dodać notatkę", - "admin.dashboard.daily_retention": "Wskaźnik utrzymania użytkowników po dniach od rejestracji", - "admin.dashboard.monthly_retention": "Wskaźnik utrzymania użytkowników po miesiącach od rejestracji", + "admin.dashboard.daily_retention": "Wskaźnik utrzymania użytkowników według dni od rejestracji", + "admin.dashboard.monthly_retention": "Wskaźnik utrzymania użytkowników według miesięcy od rejestracji", "admin.dashboard.retention.average": "Średnia", "admin.dashboard.retention.cohort": "Miesiąc rejestracji", "admin.dashboard.retention.cohort_size": "Nowi użytkownicy", @@ -145,7 +145,7 @@ "community.column_settings.media_only": "Tylko multimedia", "community.column_settings.remote_only": "Tylko zdalne", "compose.language.change": "Zmień język", - "compose.language.search": "Szukaj języków...", + "compose.language.search": "Wyszukaj języki...", "compose.published.body": "Wpis został opublikowany.", "compose.published.open": "Otwórz", "compose.saved.body": "Wpis został zapisany.", @@ -178,7 +178,7 @@ "confirmations.delete_list.message": "Czy na pewno chcesz trwale usunąć tę listę?", "confirmations.delete_list.title": "Usunąć listę?", "confirmations.discard_edit_media.confirm": "Odrzuć", - "confirmations.discard_edit_media.message": "Masz niezapisane zmiany w opisie lub podglądzie, odrzucić je mimo to?", + "confirmations.discard_edit_media.message": "Masz niezapisane zmiany w opisie lub podglądzie multimediów. Czy chcesz je mimo to odrzucić?", "confirmations.edit.confirm": "Edytuj", "confirmations.edit.message": "Edytowanie wpisu nadpisze wiadomość, którą obecnie piszesz. Czy na pewno chcesz to zrobić?", "confirmations.edit.title": "Zastąpić wpis?", @@ -231,7 +231,7 @@ "domain_pill.server": "Serwer", "domain_pill.their_handle": "Nazwa:", "domain_pill.their_server": "Cyfrowy dom wszystkich wpisów tej osoby.", - "domain_pill.their_username": "Unikalny identyfikator na serwerze. Możliwe jest znalezienie użytkowników o tej samej nazwie użytkownika na różnych serwerach.", + "domain_pill.their_username": "Unikalny identyfikator na serwerze. Możliwe jest znalezienie użytkowników o tej samej nazwie na różnych serwerach.", "domain_pill.username": "Nazwa użytkownika", "domain_pill.whats_in_a_handle": "Z czego składa się nazwa?", "domain_pill.who_they_are": "Dzięki temu, że nazwy wskazują, kim ktoś jest i gdzie się znajduje, możesz wchodzić w interakcje z innymi z różnych .", @@ -252,7 +252,7 @@ "emoji_button.objects": "Obiekty", "emoji_button.people": "Ludzie", "emoji_button.recent": "Najczęściej używane", - "emoji_button.search": "Szukaj…", + "emoji_button.search": "Wyszukaj...", "emoji_button.search_results": "Wyniki wyszukiwania", "emoji_button.symbols": "Symbole", "emoji_button.travel": "Podróże i miejsca", diff --git a/app/javascript/mastodon/locales/pt-BR.json b/app/javascript/mastodon/locales/pt-BR.json index 6cefe07685..3cce87807b 100644 --- a/app/javascript/mastodon/locales/pt-BR.json +++ b/app/javascript/mastodon/locales/pt-BR.json @@ -3,13 +3,13 @@ "about.contact": "Contato:", "about.disclaimer": "Mastodon é um software de código aberto e livre, e uma marca registrada de Mastodon gGmbH.", "about.domain_blocks.no_reason_available": "Razão não disponível", - "about.domain_blocks.preamble": "O Mastodon geralmente permite que você veja o conteúdo e interaja com usuários de qualquer outro servidor no fediverso. Estas são as exceções deste servidor em específico.", + "about.domain_blocks.preamble": "O \"Mastodon\" geralmente permite que você veja o conteúdo e interaja com usuários de qualquer outro servidor no \"fediverso\". Estas são as exceções deste servidor em específico.", "about.domain_blocks.silenced.explanation": "Você geralmente não verá perfis e conteúdo deste servidor, a menos que você o procure explicitamente ou opte por seguir.", "about.domain_blocks.silenced.title": "Limitado", "about.domain_blocks.suspended.explanation": "Nenhum dado desse servidor será processado, armazenado ou trocado, impossibilitando qualquer interação ou comunicação com os usuários deste servidor.", "about.domain_blocks.suspended.title": "Suspenso", "about.not_available": "Esta informação não foi disponibilizada neste servidor.", - "about.powered_by": "Redes sociais descentralizadas alimentadas por {mastodon}", + "about.powered_by": "Rede social descentralizada baseada no {mastodon}", "about.rules": "Regras do servidor", "account.account_note_header": "Nota pessoal", "account.add_or_remove_from_list": "Adicionar ou remover de listas", @@ -25,7 +25,7 @@ "account.disable_notifications": "Cancelar notificações de @{name}", "account.domain_blocked": "Domínio bloqueado", "account.edit_profile": "Editar perfil", - "account.enable_notifications": "Notificar novos toots de @{name}", + "account.enable_notifications": "Notificar quando @{name} publicar", "account.endorse": "Recomendar", "account.featured_tags.last_status_at": "Última publicação em {date}", "account.featured_tags.last_status_never": "Sem publicações", @@ -39,11 +39,11 @@ "account.following_counter": "{count, plural, one {{counter} seguindo} other {{counter} seguindo}}", "account.follows.empty": "Nada aqui.", "account.go_to_profile": "Ir ao perfil", - "account.hide_reblogs": "Ocultar boosts de @{name}", - "account.in_memoriam": "Em memória.", + "account.hide_reblogs": "Ocultar impulsos de @{name}", + "account.in_memoriam": "In Memoriam.", "account.joined_short": "Entrou", "account.languages": "Mudar idiomas inscritos", - "account.link_verified_on": "link verificado em {date}", + "account.link_verified_on": "A propriedade deste link foi verificada em {date}", "account.locked_info": "Trancado. Seguir requer aprovação manual do perfil.", "account.media": "Mídia", "account.mention": "Mencionar @{name}", @@ -55,13 +55,13 @@ "account.mutual": "Mútuo", "account.no_bio": "Nenhuma descrição fornecida.", "account.open_original_page": "Abrir a página original", - "account.posts": "Toots", + "account.posts": "Publicações", "account.posts_with_replies": "Com respostas", "account.report": "Denunciar @{name}", "account.requested": "Aguardando aprovação. Clique para cancelar a solicitação", "account.requested_follow": "{name} quer te seguir", "account.share": "Compartilhar perfil de @{name}", - "account.show_reblogs": "Mostrar boosts de @{name}", + "account.show_reblogs": "Mostrar impulsos de @{name}", "account.statuses_counter": "{count, plural, one {{counter} publicação} other {{counter} publicações}}", "account.unblock": "Desbloquear @{name}", "account.unblock_domain": "Desbloquear domínio {domain}", @@ -79,27 +79,27 @@ "admin.dashboard.retention.cohort_size": "Novos usuários", "admin.impact_report.instance_accounts": "Perfis de contas que isso apagaria", "admin.impact_report.instance_followers": "Seguidores que os nossos usuários perderiam", - "admin.impact_report.instance_follows": "Seguidores que os seus usuários perderiam", + "admin.impact_report.instance_follows": "Seguidores que os usuários deles perderiam", "admin.impact_report.title": "Resumo do impacto", "alert.rate_limited.message": "Tente novamente após {retry_time, time, medium}.", "alert.rate_limited.title": "Tentativas limitadas", "alert.unexpected.message": "Ocorreu um erro inesperado.", "alert.unexpected.title": "Eita!", "alt_text_badge.title": "Texto alternativo", - "announcement.announcement": "Comunicados", + "announcement.announcement": "Anúncio", "attachments_list.unprocessed": "(não processado)", "audio.hide": "Ocultar áudio", - "block_modal.remote_users_caveat": "Pediremos ao servidor {domain} que respeite sua decisão. No entanto, a conformidade não é garantida, já que alguns servidores podem lidar com bloqueios de maneira diferente. As postagens públicas ainda podem estar visíveis para usuários não logados.", + "block_modal.remote_users_caveat": "Pediremos ao servidor {domain} que respeite sua decisão. No entanto, a conformidade não é garantida, já que alguns servidores podem lidar com bloqueios de maneira diferente. As publicações abertas ainda podem estar visíveis para usuários não logados.", "block_modal.show_less": "Mostrar menos", "block_modal.show_more": "Mostrar mais", - "block_modal.they_cant_mention": "Eles não podem mencionar ou seguir você.", - "block_modal.they_cant_see_posts": "Eles não podem ver suas postagens e você não verá as deles.", - "block_modal.they_will_know": "Eles podem ver que estão bloqueados.", + "block_modal.they_cant_mention": "Não poderá mencionar ou seguir você.", + "block_modal.they_cant_see_posts": "Não poderá ver suas publicações e você não verá as dele/a.", + "block_modal.they_will_know": "Poderá ver que você bloqueou.", "block_modal.title": "Bloquear usuário?", - "block_modal.you_wont_see_mentions": "Você não verá publicações que os mencionem.", - "boost_modal.combo": "Pressione {combo} para pular isso na próxima vez", + "block_modal.you_wont_see_mentions": "Você não verá publicações que mencionem este usuário.", + "boost_modal.combo": "Pressione {combo} para pular isto na próxima vez", "boost_modal.reblog": "Impulsionar a publicação?", - "boost_modal.undo_reblog": "Retirar o impulsionamento do post?", + "boost_modal.undo_reblog": "Retirar o impulso da publicação?", "bundle_column_error.copy_stacktrace": "Copiar relatório do erro", "bundle_column_error.error.body": "A página solicitada não pôde ser renderizada. Pode ser devido a um erro no nosso código, ou um problema de compatibilidade do seu navegador.", "bundle_column_error.error.title": "Ah, não!", @@ -131,7 +131,7 @@ "column.lists": "Listas", "column.mutes": "Usuários silenciados", "column.notifications": "Notificações", - "column.pins": "Toots fixados", + "column.pins": "Publicações fixadas", "column.public": "Linha global", "column_back_button.label": "Voltar", "column_header.hide_settings": "Ocultar configurações", @@ -148,11 +148,11 @@ "compose.language.search": "Pesquisar idiomas...", "compose.published.body": "Publicado.", "compose.published.open": "Abrir", - "compose.saved.body": "Postagem salva.", + "compose.saved.body": "Publicação salva.", "compose_form.direct_message_warning_learn_more": "Saiba mais", "compose_form.encryption_warning": "As publicações no Mastodon não são criptografadas de ponta-a-ponta. Não compartilhe nenhuma informação sensível no Mastodon.", "compose_form.hashtag_warning": "Esta publicação não será exibida sob nenhuma hashtag, já que não é pública. Apenas postagens públicas podem ser pesquisadas por meio de hashtags.", - "compose_form.lock_disclaimer": "Seu perfil não está {locked}. Qualquer um pode te seguir e ver os toots privados.", + "compose_form.lock_disclaimer": "Seu perfil não está {locked}. Qualquer um pode te seguir e ver as suas publicações privadas.", "compose_form.lock_disclaimer.lock": "trancado", "compose_form.placeholder": "No que você está pensando?", "compose_form.poll.duration": "Duração da enquete", @@ -165,14 +165,14 @@ "compose_form.publish": "Publicar", "compose_form.publish_form": "Publicar", "compose_form.reply": "Responder", - "compose_form.save_changes": "Atualização", + "compose_form.save_changes": "Atualizar", "compose_form.spoiler.marked": "Com Aviso de Conteúdo", "compose_form.spoiler.unmarked": "Sem Aviso de Conteúdo", "compose_form.spoiler_placeholder": "Aviso de conteúdo (opcional)", "confirmation_modal.cancel": "Cancelar", "confirmations.block.confirm": "Bloquear", "confirmations.delete.confirm": "Excluir", - "confirmations.delete.message": "Você tem certeza de que deseja excluir este toot?", + "confirmations.delete.message": "Você tem certeza de que deseja excluir esta publicação?", "confirmations.delete.title": "Excluir publicação?", "confirmations.delete_list.confirm": "Excluir", "confirmations.delete_list.message": "Você tem certeza de que deseja excluir esta lista?", @@ -181,21 +181,21 @@ "confirmations.discard_edit_media.message": "Há mudanças não salvas na descrição ou pré-visualização da mídia. Descartar assim mesmo?", "confirmations.edit.confirm": "Editar", "confirmations.edit.message": "Editar agora irá substituir a mensagem que está sendo criando. Tem certeza de que deseja continuar?", - "confirmations.edit.title": "Sobrescrever o post?", + "confirmations.edit.title": "Sobrescrever a publicação?", "confirmations.logout.confirm": "Sair", "confirmations.logout.message": "Você tem certeza de que deseja sair?", "confirmations.logout.title": "Sair da sessão?", "confirmations.mute.confirm": "Silenciar", "confirmations.redraft.confirm": "Excluir e rascunhar", - "confirmations.redraft.message": "Você tem certeza de que quer apagar essa postagem e rascunhá-la? Favoritos e impulsos serão perdidos, e respostas à postagem original ficarão órfãs.", + "confirmations.redraft.message": "Você tem certeza de que quer apagar esta publicação e rascunhá-la? Favoritos e impulsos serão perdidos, e respostas à publicação original ficarão órfãs.", "confirmations.redraft.title": "Excluir e rascunhar publicação?", "confirmations.reply.confirm": "Responder", - "confirmations.reply.message": "Responder agora sobrescreverá o toot que você está compondo. Deseja continuar?", - "confirmations.reply.title": "Sobrescrever o post?", + "confirmations.reply.message": "Responder agora sobrescreverá a publicação que você está compondo. Deseja continuar?", + "confirmations.reply.title": "Sobrescrever a publicação?", "confirmations.unfollow.confirm": "Deixar de seguir", "confirmations.unfollow.message": "Você tem certeza de que deseja deixar de seguir {name}?", "confirmations.unfollow.title": "Deixar de seguir o usuário?", - "content_warning.hide": "Ocultar post", + "content_warning.hide": "Ocultar publicação", "content_warning.show": "Mostrar mesmo assim", "content_warning.show_more": "Mostrar mais", "conversation.delete": "Excluir conversa", @@ -211,26 +211,26 @@ "directory.recently_active": "Ativos recentemente", "disabled_account_banner.account_settings": "Configurações da conta", "disabled_account_banner.text": "Sua conta {disabledAccount} está desativada no momento.", - "dismissable_banner.community_timeline": "Estas são as publicações públicas mais recentes das pessoas cujas contas são hospedadas por {domain}.", + "dismissable_banner.community_timeline": "Estas são as publicações abertas mais recentes das pessoas cujas contas são hospedadas por {domain}.", "dismissable_banner.dismiss": "Dispensar", "dismissable_banner.explore_links": "Estas novas histórias estão sendo contadas por pessoas neste e em outros servidores da rede descentralizada no momento.", "dismissable_banner.explore_statuses": "Estas são postagens de toda a rede social que estão ganhando tração hoje. Postagens mais recentes com mais impulsos e favoritos têm classificações mais altas.", "dismissable_banner.explore_tags": "Estas hashtags estão ganhando popularidade no momento entre as pessoas deste e de outros servidores da rede descentralizada.", "dismissable_banner.public_timeline": "Estas são as publicações públicas mais recentes de pessoas na rede social que pessoas em {domain} seguem.", "domain_block_modal.block": "Bloquear servidor", - "domain_block_modal.block_account_instead": "Bloquear @{name}", + "domain_block_modal.block_account_instead": "Bloquear @{name} em vez disso", "domain_block_modal.they_can_interact_with_old_posts": "Pessoas deste servidor podem interagir com suas publicações antigas.", "domain_block_modal.they_cant_follow": "Ninguém deste servidor pode lhe seguir.", "domain_block_modal.they_wont_know": "Eles não saberão que foram bloqueados.", "domain_block_modal.title": "Bloquear domínio?", "domain_block_modal.you_will_lose_num_followers": "Você perderá {followersCount, plural, one {{followersCountDisplay} seguidor} other {{followersCountDisplay} seguidores}} e {followingCount, plural, one {{followingCountDisplay} pessoa que você segue} other {{followingCountDisplay} pessoas que você segue}}.", "domain_block_modal.you_will_lose_relationships": "Você irá perder todos os seguidores e pessoas que você segue neste servidor.", - "domain_block_modal.you_wont_see_posts": "Você não verá postagens ou notificações de usuários neste servidor.", - "domain_pill.activitypub_lets_connect": "Ele permite que você se conecte e interaja com pessoas não apenas no Mastodon, mas também em diferentes aplicativos sociais.", + "domain_block_modal.you_wont_see_posts": "Você não verá publicações ou notificações de usuários neste servidor.", + "domain_pill.activitypub_lets_connect": "Permite que você se conecte e interaja com pessoas não apenas no Mastodon, mas também em diferentes aplicativos sociais.", "domain_pill.activitypub_like_language": "ActivityPub é como a linguagem que o Mastodon fala com outras redes sociais.", "domain_pill.server": "Servidor", - "domain_pill.their_handle": "Seu identificador:", - "domain_pill.their_server": "Sua casa digital, onde ficam todas as suas postagens.", + "domain_pill.their_handle": "Identificador dele/a:", + "domain_pill.their_server": "Casa digital dele/a, onde ficam todas as suas postagens.", "domain_pill.their_username": "Seu identificador exclusivo em seu servidor. É possível encontrar usuários com o mesmo nome de usuário em servidores diferentes.", "domain_pill.username": "Nome de usuário", "domain_pill.whats_in_a_handle": "O que há em um identificador?", @@ -239,7 +239,7 @@ "domain_pill.your_handle": "Seu identificador:", "domain_pill.your_server": "Sua casa digital, onde ficam todas as suas postagens. Não gosta deste? Transfira servidores a qualquer momento e traga seus seguidores também.", "domain_pill.your_username": "Seu identificador exclusivo neste servidor. É possível encontrar usuários com o mesmo nome de usuário em servidores diferentes.", - "embed.instructions": "Incorpore este toot no seu site ao copiar o código abaixo.", + "embed.instructions": "Incorpore esta publicação no seu site ao copiar o código abaixo.", "embed.preview": "Aqui está como vai ficar:", "emoji_button.activity": "Atividade", "emoji_button.clear": "Limpar", @@ -261,7 +261,7 @@ "empty_column.account_timeline": "Nada aqui.", "empty_column.account_unavailable": "Perfil indisponível", "empty_column.blocks": "Nada aqui.", - "empty_column.bookmarked_statuses": "Nada aqui. Quando você salvar um toot, ele aparecerá aqui.", + "empty_column.bookmarked_statuses": "Nada aqui. Quando você salvar uma publicação, ela aparecerá aqui.", "empty_column.community": "A linha local está vazia. Publique algo para começar!", "empty_column.direct": "Você ainda não tem mensagens privadas. Quando você enviar ou receber uma, será exibida aqui.", "empty_column.domain_blocks": "Nada aqui.", @@ -269,10 +269,10 @@ "empty_column.favourited_statuses": "Você ainda não tem publicações favoritas. Quanto você marcar uma como favorita, ela aparecerá aqui.", "empty_column.favourites": "Ninguém marcou esta publicação como favorita até agora. Quando alguém o fizer, será listado aqui.", "empty_column.follow_requests": "Nada aqui. Quando você tiver seguidores pendentes, eles aparecerão aqui.", - "empty_column.followed_tags": "Você ainda não seguiu nenhuma hashtag. Quando seguir uma, elas serão exibidas aqui.", + "empty_column.followed_tags": "Você ainda não seguiu nenhuma hashtag. Quando seguir, elas serão exibidas aqui.", "empty_column.hashtag": "Nada aqui.", "empty_column.home": "Sua página inicial está vazia! Siga mais pessoas para começar: {suggestions}", - "empty_column.list": "Nada aqui. Quando membros da lista tootarem, eles aparecerão aqui.", + "empty_column.list": "Nada aqui. Quando membros da lista publicarem, elas aparecerão aqui.", "empty_column.lists": "Nada aqui. Quando você criar listas, elas aparecerão aqui.", "empty_column.mutes": "Nada aqui.", "empty_column.notification_requests": "Tudo limpo! Não há nada aqui. Quando você receber novas notificações, elas aparecerão aqui de acordo com suas configurações.", @@ -294,7 +294,7 @@ "filter_modal.added.context_mismatch_title": "Incompatibilidade de contexto!", "filter_modal.added.expired_explanation": "Esta categoria de filtro expirou, você precisará alterar a data de expiração para aplicar.", "filter_modal.added.expired_title": "Filtro expirado!", - "filter_modal.added.review_and_configure": "Para revisar e configurar ainda mais esta categoria de filtro, vá até {settings_link}.", + "filter_modal.added.review_and_configure": "Para revisar e configurar ainda mais esta categoria de filtro, vá para {settings_link}.", "filter_modal.added.review_and_configure_title": "Configurações de filtro", "filter_modal.added.settings_link": "página de configurações", "filter_modal.added.short_explanation": "Esta publicação foi adicionada à seguinte categoria de filtro: {title}.", @@ -356,21 +356,21 @@ "hashtag.follow": "Seguir hashtag", "hashtag.unfollow": "Parar de seguir hashtag", "hashtags.and_other": "…e {count, plural, one {}other {outros #}}", - "hints.profiles.followers_may_be_missing": "Os seguidores deste perfil podem estar faltando.", - "hints.profiles.follows_may_be_missing": "Os seguidores deste perfil podem estar faltando.", + "hints.profiles.followers_may_be_missing": "Pode haver seguidores deste perfil faltando.", + "hints.profiles.follows_may_be_missing": "Pode haver seguidos por este perfil faltando.", "hints.profiles.posts_may_be_missing": "É possível que algumas publicações deste perfil estejam faltando.", "hints.profiles.see_more_followers": "Ver mais seguidores no {domain}", - "hints.profiles.see_more_follows": "Ver mais seguidores no {domain}", + "hints.profiles.see_more_follows": "Ver mais seguidos no {domain}", "hints.profiles.see_more_posts": "Ver mais publicações em {domain}", "hints.threads.replies_may_be_missing": "Respostas de outros servidores podem estar faltando.", "hints.threads.see_more": "Ver mais respostas no {domain}", - "home.column_settings.show_reblogs": "Mostrar boosts", + "home.column_settings.show_reblogs": "Mostrar impulsos", "home.column_settings.show_replies": "Mostrar respostas", - "home.hide_announcements": "Ocultar comunicados", + "home.hide_announcements": "Ocultar anúncios", "home.pending_critical_update.body": "Por favor, atualize o seu servidor Mastodon o mais rápido possível!", "home.pending_critical_update.link": "Ver atualizações", "home.pending_critical_update.title": "Atualização de segurança crítica disponível!", - "home.show_announcements": "Mostrar comunicados", + "home.show_announcements": "Mostrar anúncios", "ignore_notifications_modal.disclaimer": "O Mastodon não pode informar aos usuários que você ignorou suas notificações. Ignorar notificações não impedirá que as próprias mensagens sejam enviadas.", "ignore_notifications_modal.filter_instead": "Filtrar em vez disso", "ignore_notifications_modal.filter_to_act_users": "Você ainda conseguirá aceitar, rejeitar ou denunciar usuários", @@ -402,13 +402,13 @@ "intervals.full.minutes": "{number, plural, one {# minuto} other {# minutos}}", "keyboard_shortcuts.back": "voltar", "keyboard_shortcuts.blocked": "abrir usuários bloqueados", - "keyboard_shortcuts.boost": "dar boost", + "keyboard_shortcuts.boost": "Impulsionar a publicação", "keyboard_shortcuts.column": "focar na coluna", "keyboard_shortcuts.compose": "focar no compositor", "keyboard_shortcuts.description": "Descrição", "keyboard_shortcuts.direct": "para abrir a coluna de menções privadas", "keyboard_shortcuts.down": "mover para baixo", - "keyboard_shortcuts.enter": "abrir toot", + "keyboard_shortcuts.enter": "Abrir publicação", "keyboard_shortcuts.favourite": "Favoritar publicação", "keyboard_shortcuts.favourites": "Abrir lista de favoritos", "keyboard_shortcuts.federated": "abrir linha global", @@ -422,17 +422,17 @@ "keyboard_shortcuts.my_profile": "abrir seu perfil", "keyboard_shortcuts.notifications": "abrir notificações", "keyboard_shortcuts.open_media": "abrir mídia", - "keyboard_shortcuts.pinned": "abrir toots fixados", + "keyboard_shortcuts.pinned": "Abrir publicações fixadas", "keyboard_shortcuts.profile": "abrir perfil do usuário", - "keyboard_shortcuts.reply": "responder toot", + "keyboard_shortcuts.reply": "Responder publicação", "keyboard_shortcuts.requests": "abrir seguidores pendentes", - "keyboard_shortcuts.search": "focar na pesquisa", + "keyboard_shortcuts.search": "Focar na barra de busca", "keyboard_shortcuts.spoilers": "ativar/desativar aviso de conteúdo", "keyboard_shortcuts.start": "abrir primeiros passos", - "keyboard_shortcuts.toggle_hidden": "expandir/ocultar aviso de conteúdo", + "keyboard_shortcuts.toggle_hidden": "Expandir/ocultar aviso de conteúdo", "keyboard_shortcuts.toggle_sensitivity": "mostrar/ocultar mídia", - "keyboard_shortcuts.toot": "compor novo toot", - "keyboard_shortcuts.unfocus": "desfocar de tudo", + "keyboard_shortcuts.toot": "Começar nova publicação", + "keyboard_shortcuts.unfocus": "Tirar o foco da área de redação/busca", "keyboard_shortcuts.up": "mover para cima", "lightbox.close": "Fechar", "lightbox.next": "Próximo", @@ -458,7 +458,7 @@ "lists.replies_policy.title": "Mostrar respostas para:", "lists.search": "Procurar entre as pessoas que segue", "lists.subheading": "Suas listas", - "load_pending": "{count, plural, one {# novo item} other {# novos items}}", + "load_pending": "{count, plural, one {# novo item} other {# novos itens}}", "loading_indicator.label": "Carregando…", "media_gallery.hide": "Ocultar", "moved_to_account_banner.text": "Sua conta {disabledAccount} está desativada porque você a moveu para {movedToAccount}.", @@ -477,7 +477,7 @@ "navigation_bar.blocks": "Usuários bloqueados", "navigation_bar.bookmarks": "Salvos", "navigation_bar.community_timeline": "Linha do tempo local", - "navigation_bar.compose": "Compor novo toot", + "navigation_bar.compose": "Compor nova publicação", "navigation_bar.direct": "Menções privadas", "navigation_bar.discover": "Descobrir", "navigation_bar.domain_blocks": "Domínios bloqueados", @@ -493,25 +493,25 @@ "navigation_bar.mutes": "Usuários silenciados", "navigation_bar.opened_in_classic_interface": "Publicações, contas e outras páginas específicas são abertas por padrão na interface 'web' clássica.", "navigation_bar.personal": "Pessoal", - "navigation_bar.pins": "Toots fixados", + "navigation_bar.pins": "Publicações fixadas", "navigation_bar.preferences": "Preferências", "navigation_bar.public_timeline": "Linha global", "navigation_bar.search": "Buscar", "navigation_bar.security": "Segurança", "not_signed_in_indicator.not_signed_in": "Você precisa se autenticar para acessar este recurso.", "notification.admin.report": "{name} denunciou {target}", - "notification.admin.report_account": "{name} reportou {count, plural, one {Um post} other {# posts}} de {target} para {category}", - "notification.admin.report_account_other": "{name} reportou {count, plural, one {Um post} other {# posts}} de {target}", + "notification.admin.report_account": "{name} denunciou {count, plural, one {uma publicação} other {# publicações}} de {target} para {category}", + "notification.admin.report_account_other": "{name} denunciou {count, plural, one {uma publicação} other {# publicações}} de {target}", "notification.admin.report_statuses": "{name} Reportou {target} para {category}", "notification.admin.report_statuses_other": "{name} denunciou {target}", "notification.admin.sign_up": "{name} se inscreveu", - "notification.admin.sign_up.name_and_others": "{name} e {count, plural, one {# other} other {# outros}}", + "notification.admin.sign_up.name_and_others": "{name} e {count, plural, one {# outro} other {# outros}} se inscreveram", "notification.favourite": "{name} favoritou sua publicação", - "notification.favourite.name_and_others_with_link": "{name} e {count, plural, one {# outro} other {# others}} favoritaram a publicação", + "notification.favourite.name_and_others_with_link": "{name} e {count, plural, one {# outro} other {# outros}} favoritaram a publicação", "notification.follow": "{name} te seguiu", "notification.follow.name_and_others": "{name} e {count, plural, one {# outro} other {# outros}} seguiram você", "notification.follow_request": "{name} quer te seguir", - "notification.follow_request.name_and_others": "{name} e {count, plural, one {# other} other {# outros}} pediu para seguir você", + "notification.follow_request.name_and_others": "{name} e {count, plural, one {# outro} other {# outros}} pediram para seguir você", "notification.label.mention": "Menção", "notification.label.private_mention": "Menção privada", "notification.label.private_reply": "Resposta privada", @@ -529,14 +529,14 @@ "notification.moderation_warning.action_suspend": "Sua conta foi suspensa.", "notification.own_poll": "Sua enquete terminou", "notification.poll": "Uma enquete que você votou terminou", - "notification.reblog": "{name} deu boost no teu toot", + "notification.reblog": "{name} impulsionou sua publicação", "notification.reblog.name_and_others_with_link": "{name} e {count, plural, one {# outra} other {# outras}} impulsionaram a publicação", "notification.relationships_severance_event": "Conexões perdidas com {name}", "notification.relationships_severance_event.account_suspension": "Um administrador de {from} suspendeu {target}, o que significa que você não pode mais receber atualizações deles ou interagir com eles.", "notification.relationships_severance_event.domain_block": "An admin from {from} has blocked {target}, including {followersCount} of your followers and {followingCount, plural, one {# account} other {# accounts}} you follow.", "notification.relationships_severance_event.learn_more": "Saber mais", "notification.relationships_severance_event.user_domain_block": "You have blocked {target}, removing {followersCount} of your followers and {followingCount, plural, one {# account} other {# accounts}} you follow.", - "notification.status": "{name} acabou de tootar", + "notification.status": "{name} acabou de publicar", "notification.update": "{name} editou uma publicação", "notification_requests.accept": "Aceitar", "notification_requests.accept_multiple": "{count, plural, one {Aceite # pedido…} other {Aceite # pedidos…}}", @@ -572,20 +572,20 @@ "notifications.column_settings.mention": "Menções:", "notifications.column_settings.poll": "Enquetes:", "notifications.column_settings.push": "Notificações push", - "notifications.column_settings.reblog": "Boosts:", + "notifications.column_settings.reblog": "Impulsos:", "notifications.column_settings.show": "Mostrar na coluna", "notifications.column_settings.sound": "Tocar som", - "notifications.column_settings.status": "Novos toots:", + "notifications.column_settings.status": "Novas publicações:", "notifications.column_settings.unread_notifications.category": "Notificações não lidas", "notifications.column_settings.unread_notifications.highlight": "Destacar notificações não lidas", "notifications.column_settings.update": "Editar:", "notifications.filter.all": "Tudo", - "notifications.filter.boosts": "Boosts", + "notifications.filter.boosts": "Impulsos", "notifications.filter.favourites": "Favoritos", "notifications.filter.follows": "Seguidores", "notifications.filter.mentions": "Menções", "notifications.filter.polls": "Enquetes", - "notifications.filter.statuses": "Novos toots", + "notifications.filter.statuses": "Atualizações de pessoas que você segue", "notifications.grant_permission": "Permita notificações.", "notifications.group": "{count} notificações", "notifications.mark_as_read": "Marcar como lidas", @@ -621,7 +621,7 @@ "onboarding.follows.lead": "Sua página inicial é a principal forma de explorar o Mastodon. Quanto mais pessoas você seguir, mais ativo e interessante ele será. Para começar, aqui estão algumas sugestões:", "onboarding.follows.title": "Personalize sua página inicial", "onboarding.profile.discoverable": "Tornar meu perfil descobrível", - "onboarding.profile.discoverable_hint": "Quando você aceita a capacidade de descoberta no Mastodon, suas postagens podem aparecer nos resultados de pesquisa e nas tendências, e seu perfil pode ser sugerido a pessoas com interesses similares aos seus.", + "onboarding.profile.discoverable_hint": "Quando você aceita a capacidade de descoberta no Mastodon, suas postagens podem aparecer nos resultados de busca e nas tendências, e seu perfil pode ser sugerido a pessoas com interesses similares aos seus.", "onboarding.profile.display_name": "Nome de exibição", "onboarding.profile.display_name_hint": "Seu nome completo ou apelido…", "onboarding.profile.lead": "Você pode completar isso mais tarde nas configurações, onde ainda mais opções de personalização estão disponíveis.", @@ -663,7 +663,7 @@ "poll.votes": "{votes, plural, one {# voto} other {# votos}}", "poll_button.add_poll": "Adicionar enquete", "poll_button.remove_poll": "Remover enquete", - "privacy.change": "Alterar privacidade do toot", + "privacy.change": "Alterar privacidade da publicação", "privacy.direct.long": "Todos mencionados na publicação", "privacy.direct.short": "Pessoas específicas", "privacy.private.long": "Apenas seus seguidores", @@ -672,7 +672,7 @@ "privacy.public.short": "Público", "privacy.unlisted.additional": "Isso se comporta exatamente como público, exceto que a publicação não aparecerá nos _feeds ao vivo_ ou nas _hashtags_, explorar, ou barra de busca, mesmo que você seja escolhido em toda a conta.", "privacy.unlisted.long": "Menos notificações e recomendações do algoritmo", - "privacy.unlisted.short": "Público (silencioso)", + "privacy.unlisted.short": "Público silencioso", "privacy_policy.last_updated": "Atualizado {date}", "privacy_policy.title": "Política de privacidade", "recommended": "Recomendado", @@ -744,7 +744,7 @@ "report_notification.categories.violation_sentence": "violação de regra", "report_notification.open": "Abrir denúncia", "search.no_recent_searches": "Nenhuma busca recente", - "search.placeholder": "Pesquisar", + "search.placeholder": "Busca", "search.quick_action.account_search": "Perfis correspondentes a {x}", "search.quick_action.go_to_account": "Ir para a página do perfil {x}", "search.quick_action.go_to_hashtag": "Ir para a hashtag {x}", @@ -754,7 +754,7 @@ "search_popout.full_text_search_disabled_message": "Não disponível em {domain}.", "search_popout.full_text_search_logged_out_message": "Disponível apenas quando conectado.", "search_popout.language_code": "Código ISO do idioma", - "search_popout.options": "Opções de pesquisa", + "search_popout.options": "Opções de busca", "search_popout.quick_actions": "Ações rápidas", "search_popout.recent": "Buscas Recentes", "search_popout.specific_date": "data específica", @@ -764,7 +764,7 @@ "search_results.hashtags": "Hashtags", "search_results.nothing_found": "Não foi possível encontrar nada para estes termos de busca", "search_results.see_all": "Ver tudo", - "search_results.statuses": "Toots", + "search_results.statuses": "Publicações", "search_results.title": "Buscar {q}", "server_banner.about_active_users": "Pessoas usando este servidor durante os últimos 30 dias (Usuários ativos mensalmente)", "server_banner.active_users": "usuários ativos", @@ -778,11 +778,11 @@ "sign_in_banner.sso_redirect": "Entrar ou Registrar-se", "status.admin_account": "Abrir interface de moderação para @{name}", "status.admin_domain": "Abrir interface de moderação para {domain}", - "status.admin_status": "Abrir este toot na interface de moderação", + "status.admin_status": "Abrir esta publicação na interface de moderação", "status.block": "Bloquear @{name}", "status.bookmark": "Salvar", - "status.cancel_reblog_private": "Desfazer boost", - "status.cannot_reblog": "Este toot não pode receber boost", + "status.cancel_reblog_private": "Desfazer impulso", + "status.cannot_reblog": "Esta publicação não pode ser impulsionada", "status.continued_thread": "Continuação da conversa", "status.copy": "Copiar link", "status.delete": "Excluir", @@ -793,8 +793,8 @@ "status.edited": "Última edição em {date}", "status.edited_x_times": "Editado {count, plural, one {{count} hora} other {{count} vezes}}", "status.embed": "Obter código de incorporação", - "status.favourite": "Favorita", - "status.favourites": "{count, plural, one {favorite} other {favorites}}", + "status.favourite": "Favoritar", + "status.favourites": "{count, plural, one {favorito} other {favoritos}}", "status.filter": "Filtrar esta publicação", "status.history.created": "{name} criou {date}", "status.history.edited": "{name} editou {date}", @@ -806,15 +806,15 @@ "status.more": "Mais", "status.mute": "Silenciar @{name}", "status.mute_conversation": "Silenciar conversa", - "status.open": "Abrir toot", + "status.open": "Expandir esta publicação", "status.pin": "Fixar", - "status.pinned": "Toot fixado", + "status.pinned": "Publicação fixada", "status.read_more": "Ler mais", - "status.reblog": "Dar boost", + "status.reblog": "Impulsionar", "status.reblog_private": "Dar boost para o mesmo público", - "status.reblogged_by": "{name} deu boost", - "status.reblogs": "{count, plural, one {boost} other {boosts}}", - "status.reblogs.empty": "Nada aqui. Quando alguém der boost, o usuário aparecerá aqui.", + "status.reblogged_by": "{name} impulsionou", + "status.reblogs": "{count, plural, one {impulso} other {impulsos}}", + "status.reblogs.empty": "Ninguém impulsionou esta publicação ainda. Quando alguém o fizer, o usuário aparecerá aqui.", "status.redraft": "Excluir e rascunhar", "status.remove_bookmark": "Remover do Salvos", "status.replied_in_thread": "Respondido na conversa", @@ -852,7 +852,7 @@ "upload_area.title": "Arraste e solte para enviar", "upload_button.label": "Adicionar mídia", "upload_error.limit": "Limite de anexação alcançado.", - "upload_error.poll": "Mídias não podem ser anexadas em toots com enquetes.", + "upload_error.poll": "Mídias não podem ser anexadas em publicações com enquetes.", "upload_form.audio_description": "Descrever para deficientes auditivos", "upload_form.description": "Descrever para deficientes visuais", "upload_form.drag_and_drop.instructions": "Para pegar um anexo de mídia, pressione espaço ou enter. Enquanto arrastar, use as setas do teclado para mover o anexo de mídia em qualquer direção. Pressione espaço ou insira novamente para soltar o anexo de mídia em sua nova posição, ou pressione escape para cancelar.", diff --git a/app/javascript/mastodon/locales/pt-PT.json b/app/javascript/mastodon/locales/pt-PT.json index 69a482e868..4a129250e1 100644 --- a/app/javascript/mastodon/locales/pt-PT.json +++ b/app/javascript/mastodon/locales/pt-PT.json @@ -1,12 +1,12 @@ { "about.blocks": "Servidores moderados", "about.contact": "Contacto:", - "about.disclaimer": "O Mastodon é um ‘software’ livre, de código aberto e uma marca registada de Mastodon gGmbH.", + "about.disclaimer": "O Mastodon é um 'software' livre, de código aberto e marca registada de Mastodon gGmbH.", "about.domain_blocks.no_reason_available": "Motivo não disponível", - "about.domain_blocks.preamble": "O Mastodon ver e interagir com o conteúdo de utilizadores de qualquer outra instância no fediverso. Estas são as exceções desta instância em específico.", - "about.domain_blocks.silenced.explanation": "Normalmente não verás perfis e conteúdos deste servidor, a não ser que os procures explicitamente ou optes por segui-los.", + "about.domain_blocks.preamble": "O Mastodon, geralmente, permite-lhe ver conteúdo e interagir com utilizadores de qualquer outro servidor na fediverso. Estas são as exceções aplicadas neste servidor em particular.", + "about.domain_blocks.silenced.explanation": "Normalmente não verá perfis e conteúdos deste servidor, a não ser que os procures explicitamente ou opte por segui-los.", "about.domain_blocks.silenced.title": "Limitados", - "about.domain_blocks.suspended.explanation": "Nenhum dado deste servidor será processado, armazenado ou trocado, tornando impossível qualquer interação ou comunicação com os utilizadores a partir deste servidor.", + "about.domain_blocks.suspended.explanation": "Nenhum dado deste servidor será processado, armazenado ou trocado, impossibilitando qualquer interação ou comunicação com os utilizadores a partir deste servidor.", "about.domain_blocks.suspended.title": "Suspensos", "about.not_available": "Esta informação não foi disponibilizada neste servidor.", "about.powered_by": "Rede social descentralizada baseada no {mastodon}", @@ -39,7 +39,7 @@ "account.following_counter": "{count, plural, one {A seguir {counter}} other {A seguir {counter}}}", "account.follows.empty": "Este utilizador ainda não segue ninguém.", "account.go_to_profile": "Ir para o perfil", - "account.hide_reblogs": "Esconder partilhas impulsionadas de @{name}", + "account.hide_reblogs": "Esconder partilhas de @{name}", "account.in_memoriam": "Em Memória.", "account.joined_short": "Juntou-se a", "account.languages": "Alterar idiomas subscritos", @@ -61,7 +61,7 @@ "account.requested": "A aguardar aprovação. Clica para cancelar o pedido para seguir", "account.requested_follow": "{name} pediu para seguir-te", "account.share": "Partilhar o perfil @{name}", - "account.show_reblogs": "Mostrar partilhas impulsionadas de @{name}", + "account.show_reblogs": "Mostrar partilhas de @{name}", "account.statuses_counter": "{count, plural, one {{counter} publicação} other {{counter} publicações}}", "account.unblock": "Desbloquear @{name}", "account.unblock_domain": "Desbloquear o domínio {domain}", @@ -89,7 +89,7 @@ "announcement.announcement": "Mensagem de manutenção", "attachments_list.unprocessed": "(não processado)", "audio.hide": "Ocultar áudio", - "block_modal.remote_users_caveat": "Vamos pedir ao servidor {domain} para respeitar a tua decisão. No entanto, não é garantido o seu cumprimento, uma vez que alguns servidores podem tratar os bloqueios de forma diferente. As publicações públicas podem continuar a ser visíveis para utilizadores não autenticados.", + "block_modal.remote_users_caveat": "Solicitaremos ao servidor {domain} que respeite a sua decisão. No entanto, o cumprimento não é garantido, sendo que alguns servidores podem gerir bloqueios de forma diferente. As publicações públicas podem continuar visíveis para utilizadores não autenticados.", "block_modal.show_less": "Mostrar menos", "block_modal.show_more": "Mostrar mais", "block_modal.they_cant_mention": "Ele não o pode mencionar nem seguir.", @@ -97,13 +97,13 @@ "block_modal.they_will_know": "Ele pode ver que o bloqueaste.", "block_modal.title": "Bloquear utilizador?", "block_modal.you_wont_see_mentions": "Não verás publicações que mencionem este utilizador.", - "boost_modal.combo": "Podes premir {combo} para não voltares a ver isto", - "boost_modal.reblog": "Impulsionar a publicação?", - "boost_modal.undo_reblog": "Não impulsionar a publicação?", + "boost_modal.combo": "Pode clicar em {combo} para não voltar a ver isto", + "boost_modal.reblog": "Partilhar a publicação?", + "boost_modal.undo_reblog": "Deixar de partilhar a publicação?", "bundle_column_error.copy_stacktrace": "Copiar relatório de erros", "bundle_column_error.error.body": "A página solicitada não pôde ser sintetizada. Isto pode ser devido a uma falha no nosso código ou a um problema de compatibilidade com o navegador.", "bundle_column_error.error.title": "Ó, não!", - "bundle_column_error.network.body": "Houve um erro ao tentar carregar esta página. Isto pode ocorrer devido a um problema temporário com a tua conexão à internet ou a este servidor.", + "bundle_column_error.network.body": "Ocorreu um erro ao tentar carregar esta página. Isto poderá dever-se a um problema temporário na tua ligação à Internet ou neste servidor.", "bundle_column_error.network.title": "Erro de rede", "bundle_column_error.retry": "Tenta de novo", "bundle_column_error.return": "Voltar à página inicial", @@ -113,13 +113,13 @@ "bundle_modal_error.message": "Algo correu mal ao carregar este componente.", "bundle_modal_error.retry": "Tenta de novo", "closed_registrations.other_server_instructions": "Visto que o Mastodon é descentralizado, podes criar uma conta noutro servidor e interagir com este na mesma.", - "closed_registrations_modal.description": "Neste momento não é possível criar uma conta em {domain}, mas lembramos que não é preciso ter uma conta especificamente em {domain} para usar o Mastodon.", + "closed_registrations_modal.description": "Criar uma conta em {domain} não é atualmente possível, mas tenha em atenção que não é necessário ter uma conta especificamente em {domain} para usar o Mastodon.", "closed_registrations_modal.find_another_server": "Procurar outro servidor", - "closed_registrations_modal.preamble": "O Mastodon é descentralizado, por isso não importa onde a tua conta é criada, pois continuarás a poder acompanhar e interagir com qualquer um neste servidor. Podes até alojar o teu próprio servidor!", + "closed_registrations_modal.preamble": "O Mastodon é descentralizado, por isso, não importa onde crie a sua conta: poderá seguir e interagir com qualquer utilizador neste servidor. Pode até alojá-lo você próprio!", "closed_registrations_modal.title": "Criar uma conta no Mastodon", "column.about": "Sobre", "column.blocks": "Utilizadores bloqueados", - "column.bookmarks": "Marcadores", + "column.bookmarks": "Favoritos", "column.community": "Cronologia local", "column.direct": "Menções privadas", "column.directory": "Explorar perfis", @@ -187,7 +187,7 @@ "confirmations.logout.title": "Terminar sessão?", "confirmations.mute.confirm": "Ocultar", "confirmations.redraft.confirm": "Eliminar e reescrever", - "confirmations.redraft.message": "Tens a certeza de que queres eliminar e tornar a escrever esta publicação? Os favoritos e as publicações impulsionadas perder-se-ão e as respostas à publicação original ficarão órfãs.", + "confirmations.redraft.message": "Tem a certeza que pretende eliminar e tornar a escrever esta publicação? Os favoritos e as partilhas perder-se-ão e as respostas à publicação original ficarão órfãs.", "confirmations.redraft.title": "Eliminar e reescrever publicação?", "confirmations.reply.confirm": "Responder", "confirmations.reply.message": "Se responderes agora, a mensagem que estás a escrever será substituída. Tens a certeza que pretendes continuar?", @@ -214,7 +214,7 @@ "dismissable_banner.community_timeline": "Estas são as publicações públicas mais recentes de pessoas cujas contas são hospedadas por {domain}.", "dismissable_banner.dismiss": "Descartar", "dismissable_banner.explore_links": "Estas histórias de notícias estão neste momento a serem faladas por pessoas neste e noutros servidores da rede descentralizada.", - "dismissable_banner.explore_statuses": "Estas são as publicações de toda a rede social que estão a ganhar força atualmente. As mensagens mais recentes com mais impulsos e favoritos têm uma classificação mais elevada.", + "dismissable_banner.explore_statuses": "Estas são publicações de toda a rede social que estão a ganhar popularidade atualmente. As mensagens mais recentes com mais partilhas e favoritos obtêm uma classificação mais elevada.", "dismissable_banner.explore_tags": "Estas são as etiquetas que estão a ganhar força na rede social atualmente. As etiquetas que são utilizadas por mais pessoas diferentes têm uma classificação mais elevada.", "dismissable_banner.public_timeline": "Estas são as publicações públicas mais recentes de pessoas na rede social que as pessoas em {domain} seguem.", "domain_block_modal.block": "Bloquear servidor", @@ -261,7 +261,7 @@ "empty_column.account_timeline": "Sem publicações por aqui!", "empty_column.account_unavailable": "Perfil indisponível", "empty_column.blocks": "Ainda não bloqueaste nenhum utilizador.", - "empty_column.bookmarked_statuses": "Ainda não tens nenhuma publicação marcada. Quando marcares uma, ela aparecerá aqui.", + "empty_column.bookmarked_statuses": "Ainda não tem nenhuma publicação salva. Quando salvar uma, ela aparecerá aqui.", "empty_column.community": "A cronologia local está vazia. Escreve algo publicamente para começar!", "empty_column.direct": "Ainda não tens qualquer menção privada. Quando enviares ou receberes uma, ela irá aparecer aqui.", "empty_column.domain_blocks": "Ainda não há qualquer domínio bloqueado.", @@ -294,7 +294,7 @@ "filter_modal.added.context_mismatch_title": "O contexto não coincide!", "filter_modal.added.expired_explanation": "Esta categoria de filtro expirou, tens de alterar a data de validade para que ele seja aplicado.", "filter_modal.added.expired_title": "Filtro expirado!", - "filter_modal.added.review_and_configure": "Para rever e configurar mais detalhadamente esta categoria de filtro, vai a {settings_link}.", + "filter_modal.added.review_and_configure": "Para rever e configurar mais detalhadamente esta categoria de filtro, vá a {settings_link}.", "filter_modal.added.review_and_configure_title": "Definições do filtro", "filter_modal.added.settings_link": "página de definições", "filter_modal.added.short_explanation": "Esta publicação foi adicionada à seguinte categoria de filtro: {title}.", @@ -353,8 +353,8 @@ "hashtag.counter_by_accounts": "{count, plural,one {{counter} participante} other {{counter} participantes}}", "hashtag.counter_by_uses": "{count, plural, one {{counter} publicação} other {{counter} publicações}}", "hashtag.counter_by_uses_today": "{count, plural, one {{counter} publicação} other {{counter} publicações}} hoje", - "hashtag.follow": "Seguir #etiqueta", - "hashtag.unfollow": "Deixar de seguir #etiqueta", + "hashtag.follow": "Seguir etiqueta", + "hashtag.unfollow": "Deixar de seguir a etiqueta", "hashtags.and_other": "…e {count, plural, other {mais #}}", "hints.profiles.followers_may_be_missing": "É possível que não estejam a ser mostrados todos os seguidores deste perfil.", "hints.profiles.follows_may_be_missing": "É possível que não estejam a ser mostrados todos os seguidos por este perfil.", @@ -364,7 +364,7 @@ "hints.profiles.see_more_posts": "Ver mais publicações em {domain}", "hints.threads.replies_may_be_missing": "É possível que não estejam a ser mostradas todas as respostas de outros servidores.", "hints.threads.see_more": "Ver mais respostas em {domain}", - "home.column_settings.show_reblogs": "Mostrar impulsos", + "home.column_settings.show_reblogs": "Mostrar partilhas", "home.column_settings.show_replies": "Mostrar respostas", "home.hide_announcements": "Ocultar mensagens de manutenção", "home.pending_critical_update.body": "Atualiza o teu servidor Mastodon assim que possível!", @@ -384,7 +384,7 @@ "ignore_notifications_modal.private_mentions_title": "Ignorar notificações de menções privadas não solicitadas?", "interaction_modal.description.favourite": "Com uma conta no Mastodon, podes assinalar esta publicação como favorita para que o autor saiba que gostaste e guardá-la para mais tarde.", "interaction_modal.description.follow": "Com uma conta no Mastodon, podes seguir {name} para receberes as suas publicações na cronologia da tua página inicial.", - "interaction_modal.description.reblog": "Com uma conta no Mastodon, podes impulsionar esta publicação para partilhá-la com os teus seguidores.", + "interaction_modal.description.reblog": "Com uma conta no Mastodon, pode partilhar esta publicação para compartilhá-la com os seus seguidores.", "interaction_modal.description.reply": "Com uma conta no Mastodon, podes responder a esta publicação.", "interaction_modal.login.action": "Leve-me a casa", "interaction_modal.login.prompt": "Domínio do teu servidor, por exemplo, mastodon.social", @@ -402,7 +402,7 @@ "intervals.full.minutes": "{number, plural, one {# minuto} other {# minutos}}", "keyboard_shortcuts.back": "voltar atrás", "keyboard_shortcuts.blocked": "abrir a lista de utilizadores bloqueados", - "keyboard_shortcuts.boost": "impulsionar a publicação", + "keyboard_shortcuts.boost": "Partilhar a publicação", "keyboard_shortcuts.column": "focar uma publicação numa das colunas", "keyboard_shortcuts.compose": "focar área de texto da publicação", "keyboard_shortcuts.description": "Descrição", @@ -475,7 +475,7 @@ "navigation_bar.administration": "Administração", "navigation_bar.advanced_interface": "Abrir na interface web avançada", "navigation_bar.blocks": "Utilizadores bloqueados", - "navigation_bar.bookmarks": "Marcadores", + "navigation_bar.bookmarks": "Itens salvos", "navigation_bar.community_timeline": "Cronologia local", "navigation_bar.compose": "Escrever nova publicação", "navigation_bar.direct": "Menções privadas", @@ -529,8 +529,8 @@ "notification.moderation_warning.action_suspend": "A tua conta foi suspensa.", "notification.own_poll": "A tua sondagem terminou", "notification.poll": "Terminou uma sondagem em que votaste", - "notification.reblog": "{name} impulsionou a tua publicação", - "notification.reblog.name_and_others_with_link": "{name} e {count, plural, one {# outro} other {# outros}} impulsionaram a tua publicação", + "notification.reblog": "{name} partilhou a sua publicação", + "notification.reblog.name_and_others_with_link": "{name} e {count, plural, one {# outro} other {# outros}} partilharam a sua publicação", "notification.relationships_severance_event": "Perdeu as ligações com {name}", "notification.relationships_severance_event.account_suspension": "Um administrador de {from} suspendeu {target}, o que significa que já não podes receber atualizações dele ou interagir com ele.", "notification.relationships_severance_event.domain_block": "Um administrador de {from} bloqueou {target}, incluindo {followersCount} dos teus seguidores e {followingCount, plural, one {# conta} other {# contas}} que segues.", @@ -572,7 +572,7 @@ "notifications.column_settings.mention": "Menções:", "notifications.column_settings.poll": "Resultados da sondagem:", "notifications.column_settings.push": "Notificações \"push\"", - "notifications.column_settings.reblog": "Impulsos:", + "notifications.column_settings.reblog": "Partilhas:", "notifications.column_settings.show": "Mostrar na coluna", "notifications.column_settings.sound": "Reproduzir som", "notifications.column_settings.status": "Novas publicações:", @@ -580,7 +580,7 @@ "notifications.column_settings.unread_notifications.highlight": "Destacar notificações por ler", "notifications.column_settings.update": "Edições:", "notifications.filter.all": "Todas", - "notifications.filter.boosts": "Impulsos", + "notifications.filter.boosts": "Partilhas", "notifications.filter.favourites": "Favoritos", "notifications.filter.follows": "Seguidores", "notifications.filter.mentions": "Menções", @@ -642,7 +642,7 @@ "onboarding.steps.follow_people.title": "Personaliza a cronologia na tua página inicial", "onboarding.steps.publish_status.body": "Diz olá ao mundo com texto, fotos, vídeos ou sondagens {emoji}", "onboarding.steps.publish_status.title": "Faz a tua primeira publicação", - "onboarding.steps.setup_profile.body": "Aumenta as tuas interações com um perfil completo.", + "onboarding.steps.setup_profile.body": "Aumente as suas interações ao ter um perfil mais completo.", "onboarding.steps.setup_profile.title": "Personaliza o teu perfil", "onboarding.steps.share_profile.body": "Informa os teus amigos, para saberem como podem encontrar-te no Mastodon", "onboarding.steps.share_profile.title": "Partilha o teu perfil", @@ -708,7 +708,7 @@ "report.forward": "Reencaminhar para {target}", "report.forward_hint": "A conta pertence a outro servidor. Enviar uma cópia anónima da denúncia para esse servidor também?", "report.mute": "Ocultar", - "report.mute_explanation": "Não verás as publicações dele. Ele não poderá ver as tuas publicações nem seguir-te. Ele não saberá que o ocultaste.", + "report.mute_explanation": "Não verá as publicações dele. Ele não poderá ver as suas publicações nem segui-lo. Ele não saberá que o ocultou.", "report.next": "Seguinte", "report.placeholder": "Comentários adicionais", "report.reasons.dislike": "Não gosto disto", @@ -781,8 +781,8 @@ "status.admin_status": "Abrir esta publicação na interface de moderação", "status.block": "Bloquear @{name}", "status.bookmark": "Guardar nos marcadores", - "status.cancel_reblog_private": "Retirar impulso", - "status.cannot_reblog": "Esta publicação não pode ser impulsionada", + "status.cancel_reblog_private": "Deixar de partilhar", + "status.cannot_reblog": "Esta publicação não pode ser partilhada", "status.continued_thread": "Continuação da conversa", "status.copy": "Copiar hiperligação da publicação", "status.delete": "Eliminar", @@ -810,13 +810,13 @@ "status.pin": "Afixar no perfil", "status.pinned": "Publicação afixada", "status.read_more": "Ler mais", - "status.reblog": "Impulsionar", - "status.reblog_private": "Impulsionar com a visibilidade original", - "status.reblogged_by": "{name} impulsionou", - "status.reblogs": "{count, plural, one {impulso} other {impulsos}}", - "status.reblogs.empty": "Ainda ninguém impulsionou esta publicação. Quando alguém o fizer, aparecerá aqui.", + "status.reblog": "Partilhar", + "status.reblog_private": "Partilhar com a visibilidade original", + "status.reblogged_by": "{name} partilhou", + "status.reblogs": "{count, plural, one {partilha} other {partilhas}}", + "status.reblogs.empty": "Ainda ninguém partilhou esta publicação. Quando alguém o fizer, aparecerá aqui.", "status.redraft": "Eliminar e reescrever", - "status.remove_bookmark": "Retirar dos marcadores", + "status.remove_bookmark": "Remover marcador", "status.replied_in_thread": "Responder na conversa", "status.replied_to": "Respondeu a {name}", "status.reply": "Responder", diff --git a/app/javascript/mastodon/locales/ru.json b/app/javascript/mastodon/locales/ru.json index 8235e0f6f7..e7d7c19730 100644 --- a/app/javascript/mastodon/locales/ru.json +++ b/app/javascript/mastodon/locales/ru.json @@ -524,7 +524,7 @@ "notification.moderation_warning.action_disable": "Ваша учётная запись была отключена.", "notification.moderation_warning.action_mark_statuses_as_sensitive": "Некоторые ваши посты были отмечены как содержимое деликатного характера.", "notification.moderation_warning.action_none": "Модераторы вынесли вам предупреждение.", - "notification.moderation_warning.action_sensitive": "С этого момента все ваши новые посты будут отмечены как содержимое деликатного характера.", + "notification.moderation_warning.action_sensitive": "С этого момента все ваши посты будут отмечены как содержимое деликатного характера.", "notification.moderation_warning.action_silence": "Ваша учётная запись была ограничена.", "notification.moderation_warning.action_suspend": "Ваша учётная запись была заблокирована.", "notification.own_poll": "Ваш опрос завершился", diff --git a/app/javascript/mastodon/locales/sv.json b/app/javascript/mastodon/locales/sv.json index 5c42acde5b..da9ccc3541 100644 --- a/app/javascript/mastodon/locales/sv.json +++ b/app/javascript/mastodon/locales/sv.json @@ -263,10 +263,10 @@ "empty_column.blocks": "Du har ännu ej blockerat några användare.", "empty_column.bookmarked_statuses": "Du har inte bokmärkt några inlägg än. När du bokmärker ett inlägg kommer det synas här.", "empty_column.community": "Den lokala tidslinjen är tom. Skriv något offentligt för att sätta bollen i rullning!", - "empty_column.direct": "Du har inga privata omnämninande. När du skickar eller tar emot ett direktmeddelande kommer det att visas här.", + "empty_column.direct": "Du har inga privata omnämnanden. När du skickar eller tar emot ett direktmeddelande kommer det att visas här.", "empty_column.domain_blocks": "Det finns ännu inga dolda domäner.", "empty_column.explore_statuses": "Ingenting är trendigt just nu. Kom tillbaka senare!", - "empty_column.favourited_statuses": "Du har inga favoritmarkerade inlägg ännu. När du favoritmärker ett så kommer det att dyka upp här.", + "empty_column.favourited_statuses": "Du har inga favoritmarkerade inlägg ännu. När du favoritmarkerar ett så kommer det att dyka upp här.", "empty_column.favourites": "Ingen har favoritmarkerat detta inlägg än. När någon gör det kommer de synas här.", "empty_column.follow_requests": "Du har inga följarförfrågningar än. När du får en kommer den visas här.", "empty_column.followed_tags": "Du följer inga hashtaggar ännu. När du gör det kommer de att dyka upp här.", diff --git a/app/javascript/mastodon/locales/szl.json b/app/javascript/mastodon/locales/szl.json index 404f7e2fd4..12614fa966 100644 --- a/app/javascript/mastodon/locales/szl.json +++ b/app/javascript/mastodon/locales/szl.json @@ -1,9 +1,9 @@ { "about.blocks": "Moderowane serwery", "about.contact": "Kōntakt:", - "about.disclaimer": "Mastodōn je wolnym a ôtwartozdrzōdłowym ôprogramowaniym ôraz znakiym towarowym ôd Mastodon gGmbH.", - "about.domain_blocks.no_reason_available": "Grund niydostympny", - "about.domain_blocks.preamble": "Mastodōn normalniy pozwŏlŏ na ôglōndaniy treściōw a interakcyje ze używŏczami inkszych serwerōw we fediverse, ale sōm ôd tygo wyjōntki, kere bōły poczyniōne na tym serwerze.", + "about.disclaimer": "Mastodon je wolne a ôtwartozdrzōdłowe ôprogramowanie i towarowy znak ôd Mastodon gGmbH.", + "about.domain_blocks.no_reason_available": "Brak prziczyny", + "about.domain_blocks.preamble": "Mastodon z wiynksza dŏwŏ ôglōndać treści i kōmunikować sie ze używŏczami inkszych serwerōw we fediverse. To sōm wyjōntki, co fungujōm na tym kōnkretnym serwerze.", "about.domain_blocks.silenced.explanation": "Normalniy niy bydziesz widzieć profilōw a treściōw ze tygo serwera. Ôboczysz je ino jak specjalniy bydziesz ich szukać abo jak je zaôbserwujesz.", "about.domain_blocks.silenced.title": "Ôgraniczone", "about.domain_blocks.suspended.explanation": "Żŏdne dane ze tygo serwera niy bydōm przetwarzane, przechowywane abo wymieniane, beztoż wszelakŏ interakcyjŏ abo komunikacyjŏ ze używŏczami tygo serwera bydzie niymożliwŏ.", @@ -16,17 +16,25 @@ "account.block_domain": "Zablokuj domena {domain}", "account.cancel_follow_request": "Withdraw follow request", "account.domain_blocked": "Domena zablokowanŏ", - "account.media": "Mydia", + "account.media": "Media", "account.mute": "Wycisz @{name}", - "account.posts": "Toots", - "account.posts_with_replies": "Toots and replies", + "account.posts": "Posty", + "account.posts_with_replies": "Posty i ôdpowiedzi", "account.requested": "Awaiting approval", - "account_note.placeholder": "Click to add a note", + "account_note.placeholder": "Wybier, żeby przidac notka", + "column.bookmarks": "Zokłodki", + "column.direct": "Prywatne spōmniynia", + "column.favourites": "Spamiyntane", + "column.firehose": "Kanały na żywo", + "column.home": "Przodek", + "column.lists": "Wykazy", + "column.notifications": "Uwiadōmiynia", "column.pins": "Pinned toot", - "community.column_settings.media_only": "Media only", + "community.column_settings.media_only": "Ino media", "compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.", "compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.", - "compose_form.placeholder": "What is on your mind?", + "compose_form.placeholder": "Co nowego?", + "compose_form.publish": "Wyślij", "compose_form.publish_form": "Publish", "compose_form.spoiler.marked": "Text is hidden behind warning", "compose_form.spoiler.unmarked": "Text is not hidden", @@ -38,6 +46,10 @@ "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.home": "Your home timeline is empty! Follow more people to fill it up. {suggestions}", "empty_column.list": "There is nothing in this list yet. When members of this list post new statuses, they will appear here.", + "explore.trending_links": "Nowiny", + "explore.trending_statuses": "Posty", + "explore.trending_tags": "Etykety", + "followed_tags": "Torowane etykety", "hashtag.column_settings.tag_toggle": "Include additional tags in this column", "keyboard_shortcuts.back": "to navigate back", "keyboard_shortcuts.blocked": "to open blocked users list", @@ -69,9 +81,11 @@ "keyboard_shortcuts.toot": "to start a brand new toot", "keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", "keyboard_shortcuts.up": "to move up in the list", + "navigation_bar.bookmarks": "Zokłodki", "navigation_bar.compose": "Compose new toot", "navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.pins": "Pinned toots", + "navigation_bar.preferences": "Sztalōnki", "not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.", "notification.reblog": "{name} boosted your status", "notifications.column_settings.status": "New toots:", @@ -93,6 +107,7 @@ "report.submit": "Submit report", "report.target": "Report {target}", "report_notification.attached_statuses": "{count, plural, one {# post} other {# posts}} attached", + "search.search_or_paste": "Szukej abo wraź URL", "search_results.statuses": "Toots", "sign_in_banner.sign_in": "Sign in", "status.admin_status": "Open this status in the moderation interface", @@ -103,6 +118,7 @@ "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.", "status.title.with_attachments": "{user} posted {attachmentCount, plural, one {an attachment} other {# attachments}}", "trends.counter_by_accounts": "{count, plural, one {{counter} person} other {{counter} people}} in the past {days, plural, one {day} other {# days}}", + "trends.trending_now": "Prawie popularne", "upload_form.audio_description": "Describe for people with hearing loss", "upload_form.description": "Describe for the visually impaired", "upload_form.video_description": "Describe for people with hearing loss or visual impairment", diff --git a/app/javascript/mastodon/locales/tok.json b/app/javascript/mastodon/locales/tok.json index cf2114f844..a249e8b12c 100644 --- a/app/javascript/mastodon/locales/tok.json +++ b/app/javascript/mastodon/locales/tok.json @@ -3,10 +3,10 @@ "about.contact": "toki:", "about.disclaimer": "ilo Mastodon la jan ale li lawa e ona li pana e pona tawa ona. kulupu esun Mastodon gGmbH li lawa e nimi ona.", "about.domain_blocks.no_reason_available": "mi sona ala e tan", - "about.domain_blocks.preamble": "ilo Masoton li ken e ni: sina lukin e toki jan pi ma ilo mute. sina ken toki tawa ona lon kulupu ma. taso, ma ni li ken ala e ni tawa ma ni:", + "about.domain_blocks.preamble": "ilo Mastodon li ken e ni: sina lukin e toki jan pi ma ilo mute. sina ken toki tawa ona lon kulupu ma. taso ma ni li ken ala e ni tawa ma ni:", "about.domain_blocks.silenced.explanation": "sina lukin ala e toki e jan tan ma ni. taso, sina wile la, sina ken ni.", "about.domain_blocks.silenced.title": "ken lukin lili ", - "about.domain_blocks.suspended.explanation": "sona ale pi ma ni li kama pali ala, li kama esun ala, li kama awen ala la sina ken ala toki tawa jan pi ma ni.", + "about.domain_blocks.suspended.explanation": "sona ale pi ma ni li kama pali ala li kama esun ala li kama awen ala la sina ken ala toki tawa jan pi ma ni.", "about.domain_blocks.suspended.title": "weka", "about.not_available": "lon kulupu ni la sina ken alasa ala e sona ni.", "about.powered_by": "lipu kulupu pi jan lawa mute tan {mastodon}", @@ -21,11 +21,11 @@ "account.blocked": "jan li len", "account.cancel_follow_request": "o kute ala", "account.copy": "o pali same e linja pi lipu jan", - "account.direct": "len la o mu e @{name}", + "account.direct": "o mu len e @{name}", "account.disable_notifications": "@{name} li toki la o mu ala e mi", "account.domain_blocked": "sina wile ala lukin e ma ni", "account.edit_profile": "o ante e lipu mi", - "account.enable_notifications": "@{name} li toki la o toki e toki ona tawa mi", + "account.enable_notifications": "@{name} li toki la o mu e mi", "account.endorse": "lipu jan la o suli e ni", "account.featured_tags.last_status_at": "sitelen pini pi jan ni li tan {date}", "account.featured_tags.last_status_never": "toki ala li lon", @@ -37,7 +37,7 @@ "account.followers_counter": "{count, plural, other {jan {counter} li kute e ona}}", "account.following": "sina kute e jan ni", "account.following_counter": "{count, plural, other {ona li kute e jan {counter}}}", - "account.follows.empty": "jan ni li kute e jan ala", + "account.follows.empty": "jan ni li kute ala e jan", "account.go_to_profile": "o tawa lipu jan", "account.hide_reblogs": "o lukin ala e pana toki tan @{name}", "account.in_memoriam": "jan ni li moli. pona o tawa ona.", @@ -46,7 +46,7 @@ "account.link_verified_on": "{date} la mi sona e ni: jan seme li jo e lipu ni", "account.locked_info": "sina wile kute e jan ni la ona o toki e ken", "account.media": "sitelen", - "account.mention": "o mu e jan @{name}", + "account.mention": "o mu e @{name}", "account.moved_to": "jan ni la lipu sin li ni:", "account.mute": "o len e @{name}", "account.mute_notifications_short": "o kute ala e mu tan jan ni", @@ -57,19 +57,19 @@ "account.open_original_page": "o open e lipu open", "account.posts": "toki suli", "account.posts_with_replies": "toki ale", - "account.report": "jan @{name} la o toki e ike tawa lawa", + "account.report": "@{name} la o toki e jaki tawa lawa", "account.requested": "jan ni o ken e kute sina", - "account.requested_follow": "jan {name} li wile kute e sina", - "account.share": "o pana e lipu jan @{name}", + "account.requested_follow": "{name} li wile kute e sina", + "account.share": "o pana e lipu tan @{name}", "account.show_reblogs": "o lukin e pana toki tan @{name}", "account.statuses_counter": "{count, plural, other {toki {counter}}}", - "account.unblock": "o len ala e jan {name}", + "account.unblock": "o len ala e {name}", "account.unblock_domain": "o len ala e ma {domain}", "account.unblock_short": "o len ala", "account.unendorse": "lipu jan la o suli ala e ni", "account.unfollow": "o kute ala", "account.unmute": "o len ala e @{name}", - "account.unmute_notifications_short": "o kute e mu tan jan ni", + "account.unmute_notifications_short": "o kute e mu", "account.unmute_short": "o len ala", "account_note.placeholder": "o luka e ni la sona pi sina taso", "admin.dashboard.daily_retention": "nanpa pi awen jan lon tenpo suno", @@ -89,7 +89,7 @@ "announcement.announcement": "toki suli", "attachments_list.unprocessed": "(nasin open)", "audio.hide": "o len e kalama", - "block_modal.remote_users_caveat": "mi pana e wile sina tawa ma {domain}. taso, o sona: ma li ken kepeken nasin len ante la pakala li ken lon. toki pi lukin ale la jan pi ma ala li ken lukin.", + "block_modal.remote_users_caveat": "mi pana e wile sina tawa ma {domain}. taso ma li ken kepeken nasin ante la pakala li ken. jan li awen ken lukin e toki kepeken sijelo ala.", "block_modal.show_less": "o lili e toki", "block_modal.show_more": "o suli e toki", "block_modal.they_cant_mention": "ona li ken ala toki tawa sina li ken ala kute e sina.", @@ -126,19 +126,19 @@ "column.domain_blocks": "ma len", "column.favourites": "ijo pona", "column.firehose": "toki pi tenpo ni", - "column.follow_requests": "wile alasa pi jan ante", + "column.follow_requests": "wile kute", "column.home": "lipu open", "column.lists": "kulupu lipu", "column.mutes": "jan len", "column.notifications": "mu pi sona sin", "column.pins": "toki sewi", "column.public": "toki pi ma poka ale", - "column_back_button.label": "o tawa monsi", - "column_header.hide_settings": "o len e lawa", + "column_back_button.label": "o weka", + "column_header.hide_settings": "o len e nasin lawa", "column_header.moveLeft_settings": "poki toki ni o tawa ni ←", "column_header.moveRight_settings": "poki toki ni o tawa ni →", "column_header.pin": "o sewi", - "column_header.show_settings": "o lukin e lawa", + "column_header.show_settings": "o lukin e nasin lawa", "column_header.unpin": "o sewi ala", "column_subheading.settings": "ken ilo", "community.column_settings.local_only": "toki tan ni taso", @@ -146,12 +146,12 @@ "community.column_settings.remote_only": "toki tan ante taso", "compose.language.change": "o ante e nasin toki", "compose.language.search": "o alasa e nasin toki...", - "compose.published.body": "toki li pana.", + "compose.published.body": "mi pana e toki.", "compose.published.open": "o lukin", - "compose.saved.body": "ilo li awen e ijo pana sina.", - "compose_form.direct_message_warning_learn_more": "o kama sona", + "compose.saved.body": "mi awen e toki sina.", + "compose_form.direct_message_warning_learn_more": "o sona", "compose_form.encryption_warning": "ilo Mastodon la toki li len ala. o pana ala e sona suli pi ken pakala.", - "compose_form.lock_disclaimer": "lipu sina li open, li {locked} ala. jan ale li ken kama kute e sina, li ken lukin e toki sama ni.", + "compose_form.lock_disclaimer": "lipu sina li {locked} ala. jan ale li ken kama kute e sina li ken lukin e toki sama ni.", "compose_form.lock_disclaimer.lock": "pini", "compose_form.placeholder": "sina wile toki e seme?", "compose_form.poll.duration": "tenpo pana", @@ -162,7 +162,7 @@ "compose_form.poll.switch_to_single": "o ante e nasin pana. pana wan taso o lon", "compose_form.poll.type": "nasin", "compose_form.publish": "o toki", - "compose_form.publish_form": "o toki sin", + "compose_form.publish_form": "o toki", "compose_form.reply": "o toki lon ijo ni", "compose_form.save_changes": "o sin", "compose_form.spoiler.marked": "o weka e toki pi ijo ike ken", @@ -179,8 +179,8 @@ "confirmations.discard_edit_media.confirm": "o weka", "confirmations.discard_edit_media.message": "toki sitelen anu lukin lili sitelen la ante pi awen ala li lon. sina wile weka e ante ni?", "confirmations.edit.confirm": "o ante", - "confirmations.edit.message": "sina ante e toki sina la toki pali sina li weka. sina wile ala wile e ni?", - "confirmations.edit.title": "o weka ala weka e toki? ni la, toki li kama toki sin.", + "confirmations.edit.message": "sina ante e toki ni la toki ante li weka. sina wile ala wile e ni?", + "confirmations.edit.title": "o weka ala weka e toki ante?", "confirmations.logout.confirm": "o weka", "confirmations.logout.message": "sina wile ala wile weka", "confirmations.logout.title": "o weka ala weka?", @@ -188,12 +188,12 @@ "confirmations.redraft.confirm": "o weka o pali sin e toki", "confirmations.redraft.message": "pali sin e toki ni la sina wile ala wile weka e ona? sina ni la suli pi toki ni en wawa pi toki ni li weka. kin la toki lon toki ni li jo e mama ala.", "confirmations.redraft.title": "ni li weka li pali sin e toki ni.", - "confirmations.reply.confirm": "o weka", + "confirmations.reply.confirm": "o toki", "confirmations.reply.message": "sina pana e toki tawa lipu ante la ni li weka e toki sina lon. sina wile ala wile weka e toki ni?", "confirmations.reply.title": "sina wile ala wile weka e toki lon?", "confirmations.unfollow.confirm": "o kute ala", "confirmations.unfollow.message": "sina o wile ala wile pini kute e jan {name}?", - "confirmations.unfollow.title": "sina wile ala wile pini kute?", + "confirmations.unfollow.title": "sina wile ala wile pini e kute?", "content_warning.hide": "o len", "content_warning.show": "o lukin a", "content_warning.show_more": "o lukin", @@ -241,6 +241,7 @@ "embed.preview": "ni li jo e sitelen ni:", "emoji_button.activity": "musi", "emoji_button.clear": "o weka", + "emoji_button.custom": "pali sin", "emoji_button.flags": "len ma", "emoji_button.food": "moku", "emoji_button.label": "o pana e sitelen pilin", @@ -273,12 +274,13 @@ "error.unexpected_crash.explanation": "ilo li ken ala pana e lipu ni. ni li ken tan pakala mi tan pakala pi ilo sina.", "errors.unexpected_crash.copy_stacktrace": "o jo e sona pakala lon poki awen", "errors.unexpected_crash.report_issue": "o toki e pakala tawa lawa", - "explore.search_results": "ijo pi alasa ni", + "explore.search_results": "toki alasa", "explore.suggested_follows": "jan", "explore.title": "o alasa", "explore.trending_links": "sin", "explore.trending_statuses": "toki", "explore.trending_tags": "kulupu pi lipu suli", + "filter_modal.added.review_and_configure_title": "o alasa e lawa", "filter_modal.added.settings_link": "lipu lawa", "filter_modal.select_filter.expired": "tenpo pini", "filter_modal.select_filter.search": "o alasa anu pali", @@ -332,11 +334,11 @@ "home.show_announcements": "o lukin e toki lawa suli", "ignore_notifications_modal.ignore": " o kute ala e mu", "interaction_modal.login.action": "o tawa ma mi", - "interaction_modal.login.prompt": "nimi pi ma sina sama ni: mastodon.social", + "interaction_modal.login.prompt": "nimi pi ma sina (sama ni: mastodon.social)", "interaction_modal.no_account_yet": "sina lon ala ma Mastodon anu seme?", "interaction_modal.on_another_server": "lon ma ante", "interaction_modal.on_this_server": "lon ma ni", - "interaction_modal.sign_in": "sina lon ma ni. ma sina li lon seme?", + "interaction_modal.sign_in": "sina lon ala ma ni. ma sina li lon seme?", "interaction_modal.sign_in_hint": "ni li ma pi ilo nanpa ni: ona li pali e jan sina lon ona. sona sina ni li weka la, o lukin e lipu. kin la, sina ken pana e nimi jan suli sina a! (ni li ken ni: @Mastodon@mastodon.social)", "interaction_modal.title.favourite": "o pona tawa {name}", "interaction_modal.title.follow": "o kute e {name}", @@ -356,7 +358,7 @@ "keyboard_shortcuts.muted": "o lukin e lipu sina pi jan len", "keyboard_shortcuts.my_profile": "o lukin e lipu sina", "keyboard_shortcuts.open_media": "o lukin e sitelen", - "keyboard_shortcuts.pinned": "o lukin pi lipu sina pi toki sewi", + "keyboard_shortcuts.pinned": "o lukin pi toki sina sewi", "keyboard_shortcuts.reply": "o toki lon ijo ni", "keyboard_shortcuts.toggle_hidden": "o lukin ala lukin e toki len", "keyboard_shortcuts.toggle_sensitivity": "o lukin ala lukin e sitelen", @@ -390,7 +392,7 @@ "mute_modal.title": "sina wile ala wile kute e jan ni?", "navigation_bar.about": "sona", "navigation_bar.blocks": "jan len", - "navigation_bar.compose": "o pali e toki sin", + "navigation_bar.compose": "o toki sin", "navigation_bar.discover": "o alasa", "navigation_bar.domain_blocks": "ma len", "navigation_bar.explore": "o alasa", @@ -432,25 +434,25 @@ "notifications.filter.favourites": "ijo pona", "notifications.filter.mentions": "toki pi toki sina", "notifications.filter.polls": "pana lon pana ni", - "onboarding.action.back": "o tawa monsi", - "onboarding.actions.back": "o tawa monsi", + "onboarding.action.back": "o weka tan ni", + "onboarding.actions.back": "o weka tan ni", "onboarding.actions.go_to_explore": "seme li pona tawa jan mute", - "onboarding.actions.go_to_home": "o tawa lipu open mi", - "onboarding.compose.template": "toki a, kulupu #Mastodon o!", + "onboarding.actions.go_to_home": "o lukin e lipu open mi", + "onboarding.compose.template": "kulupu #Mastodon o toki a!", "onboarding.follows.lead": "lipu open sina li nasin tawa ilo Mastodon. sina kama kute e jan mute la musi mute li kama lon. ni li ken open pona:", "onboarding.follows.title": "o ante e lipu open sina", "onboarding.profile.display_name": "nimi tawa jan ante", "onboarding.profile.lead": "sina ken pana e ni lon tenpo kama, lon lipu pi ante nasin. ona la, nasin ante mute li lon.", "onboarding.profile.note": "sona sina", "onboarding.share.lead": "o toki lon nasin Mastodon pi alasa sina tawa jan", - "onboarding.share.message": "ilo #Mastodon la mi jan {username} a! o kute e mi lon ni: {url}", + "onboarding.share.message": "ilo #Mastodon la mi {username} a! o kute e mi lon nasin {url}", "onboarding.share.next_steps": "ken la ni li pali kama pona:", "onboarding.share.title": "o pana e lipu sina", "onboarding.start.lead": "ni la sina lon kulupu Mastodon. kulupu ante ala li sama ona. ona li jo e jan lawa pi wan taso ala. ilo li pana ala e ijo pi wile ala tawa sina, sina ken lon e wile sina. nasin kulupu sin ni la mi o open:", "onboarding.start.skip": "sina wile ala kama sona e nasin open anu seme?", - "onboarding.start.title": "sina o kama pona a!", - "onboarding.steps.follow_people.body": "lipu Mastodon la sina ken kute e jan musi.", - "onboarding.steps.follow_people.title": "o ante e lipu open sina", + "onboarding.start.title": "o kama pona a!", + "onboarding.steps.follow_people.body": "kulupu Mastodon la sina ken kute e jan musi.", + "onboarding.steps.follow_people.title": "o nasin sina e lipu", "onboarding.steps.publish_status.body": "o toki tawa ale kepeken sitelen nimi, kepeken sitelen kule, kepeken sitelen tawa, kepeken alasa sona kulupu {emoji}", "onboarding.steps.publish_status.title": "o pali e toki suli sina nanpa wan", "onboarding.steps.setup_profile.body": "lipu sina li jo e sona mute la jan mute li wile toki tawa sina.", diff --git a/app/javascript/mastodon/locales/tr.json b/app/javascript/mastodon/locales/tr.json index 3591475060..65e14807aa 100644 --- a/app/javascript/mastodon/locales/tr.json +++ b/app/javascript/mastodon/locales/tr.json @@ -19,9 +19,9 @@ "account.block_domain": "{domain} alan adını engelle", "account.block_short": "Engelle", "account.blocked": "Engellendi", - "account.cancel_follow_request": "Takip isteğini geri çek", - "account.copy": "Gönderi bağlantısını kopyala", - "account.direct": "@{name} kullanıcısına özel olarak değin", + "account.cancel_follow_request": "Takibi bırak", + "account.copy": "Profil bağlantısını kopyala", + "account.direct": "@{name} kullanıcısından özel olarak bahset", "account.disable_notifications": "@{name} kişisinin gönderi bildirimlerini kapat", "account.domain_blocked": "Alan adı engellendi", "account.edit_profile": "Profili düzenle", @@ -39,7 +39,7 @@ "account.following_counter": "{count, plural, one {{counter} takip edilen} other {{counter} takip edilen}}", "account.follows.empty": "Bu kullanıcı henüz kimseyi takip etmiyor.", "account.go_to_profile": "Profile git", - "account.hide_reblogs": "@{name} kişisinin boostlarını gizle", + "account.hide_reblogs": "@{name} kişisinin yeniden paylaşımlarını gizle", "account.in_memoriam": "Hatırasına.", "account.joined_short": "Katıldı", "account.languages": "Abone olunan dilleri değiştir", @@ -121,7 +121,7 @@ "column.blocks": "Engellenen kullanıcılar", "column.bookmarks": "Yer İşaretleri", "column.community": "Yerel ağ akışı", - "column.direct": "Özel mesajlar", + "column.direct": "Özel bahsetmeler", "column.directory": "Profillere göz at", "column.domain_blocks": "Engellenen alan adları", "column.favourites": "Gözdelerin", @@ -166,8 +166,8 @@ "compose_form.publish_form": "Gönder", "compose_form.reply": "Yanıtla", "compose_form.save_changes": "Güncelle", - "compose_form.spoiler.marked": "Metin uyarının arkasına gizlenir", - "compose_form.spoiler.unmarked": "Metin gizli değil", + "compose_form.spoiler.marked": "İçerik uyarısını kaldır", + "compose_form.spoiler.unmarked": "İçerik uyarısı ekle", "compose_form.spoiler_placeholder": "İçerik uyarısı (isteğe bağlı)", "confirmation_modal.cancel": "İptal", "confirmations.block.confirm": "Engelle", @@ -240,7 +240,7 @@ "domain_pill.your_server": "Dijital anasayfanız, tüm gönderilerinizin yaşadığı yerdir. Bunu beğenmediniz mi? İstediğiniz zaman sunucularınızı değiştirin ve takipçilerinizi de getirin.", "domain_pill.your_username": "Bu sunucudaki tekil tanımlayıcınız. Farklı sunucularda aynı kullanıcı adına sahip kullanıcıları bulmak mümkündür.", "embed.instructions": "Aşağıdaki kodu kopyalayarak bu durumu sitenize gömün.", - "embed.preview": "İşte nasıl görüneceği:", + "embed.preview": "İşte böyle görünecek:", "emoji_button.activity": "Aktivite", "emoji_button.clear": "Temizle", "emoji_button.custom": "Özel", @@ -406,7 +406,7 @@ "keyboard_shortcuts.column": "Sütunlardan birindeki duruma odaklanmak için", "keyboard_shortcuts.compose": "Yazma alanına odaklanmak için", "keyboard_shortcuts.description": "Açıklama", - "keyboard_shortcuts.direct": "özel mesajlar sütununu açmak için", + "keyboard_shortcuts.direct": "özel bahsetmeler sütununu açmak için", "keyboard_shortcuts.down": "Listede aşağıya inmek için", "keyboard_shortcuts.enter": "Gönderiyi açınız", "keyboard_shortcuts.favourite": "Gönderiyi favorilerine ekle", @@ -478,7 +478,7 @@ "navigation_bar.bookmarks": "Yer İşaretleri", "navigation_bar.community_timeline": "Yerel ağ akışı", "navigation_bar.compose": "Yeni gönderi yaz", - "navigation_bar.direct": "Özel mesajlar", + "navigation_bar.direct": "Özel bahsetmeler", "navigation_bar.discover": "Keşfet", "navigation_bar.domain_blocks": "Engellenen alan adları", "navigation_bar.explore": "Keşfet", @@ -607,7 +607,7 @@ "notifications.policy.filter_not_following_hint": "Onları manuel olarak onaylayana kadar", "notifications.policy.filter_not_following_title": "Takip etmediğin kullanıcılar", "notifications.policy.filter_private_mentions_hint": "Kendi değinmenize yanıt veya takip ettiğiniz kullanıcıdan değilse filtrelenir", - "notifications.policy.filter_private_mentions_title": "İstenmeyen özel mesajlar", + "notifications.policy.filter_private_mentions_title": "İstenmeyen özel bahsetmeler", "notifications.policy.title": "Şundan bildirimleri yönet…", "notifications_permission_banner.enable": "Masaüstü bildirimlerini etkinleştir", "notifications_permission_banner.how_to_control": "Mastodon açık olmadığında bildirim almak için masaüstü bildirimlerini etkinleştirin. Etkinleştirildikten sonra, yukarıdaki{icon} düğmesi aracılığıyla hangi etkileşim türlerinin masaüstü bildirimi oluşturacağını tam olarak kontrol edebilirsiniz.", diff --git a/app/javascript/mastodon/locales/ug.json b/app/javascript/mastodon/locales/ug.json index c1d79ee85d..bf7f01a763 100644 --- a/app/javascript/mastodon/locales/ug.json +++ b/app/javascript/mastodon/locales/ug.json @@ -7,7 +7,18 @@ "account.badges.group": "گۇرۇپپا", "account.block": "@{name} نى توس", "account.block_domain": "{domain} دائىرىنى توس", + "account.block_short": "توس", + "account.blocked": "توسۇلدى", "account.cancel_follow_request": "ئەگىشىش ئىلتىماسىدىن ۋاز كەچ", + "account.copy": "تەرجىمىھال ئۇلانمىسىنى كۆچۈر", + "account.direct": "@{name} نى يوشۇرۇن ئاتا", + "account.followers": "ئەگەشكۈچى", + "account.followers.empty": "تېخى ھېچكىم بۇ كىشىگە ئەگەشمىدى.", + "account.followers_counter": "{count, plural, one {{counter} ئەگەشكۈچى} other {{counter} ئەگەشكۈچى}}", + "account.following": "ئەگىشىۋاتىدۇ", + "account.following_counter": "{count, plural, one {{counter} ئەگىشىۋاتىدۇ} other {{counter} ئەگىشىۋاتىدۇ}}", + "account.follows.empty": "بۇ ئىشلەتكۈچى تېخى ھېچكىمگە ئەگەشمىدى.", + "account.go_to_profile": "تەرجىمىھالغا يۆتكەل", "account.posts": "يازما", "account.posts_with_replies": "يازما ۋە ئىنكاس", "account.report": "@{name} نى پاش قىل", diff --git a/app/javascript/mastodon/locales/uk.json b/app/javascript/mastodon/locales/uk.json index 51b0d99750..9ce0cb7229 100644 --- a/app/javascript/mastodon/locales/uk.json +++ b/app/javascript/mastodon/locales/uk.json @@ -35,7 +35,7 @@ "account.followers": "Підписники", "account.followers.empty": "Ніхто ще не підписаний на цього користувача.", "account.followers_counter": "{count, plural, one {{counter} підписник} few {{counter} підписники} many {{counter} підписників} other {{counter} підписник}}", - "account.following": "Ви стежите", + "account.following": "Підписки", "account.following_counter": "{count, plural, one {{counter} підписка} few {{counter} підписки} many {{counter} підписок} other {{counter} підписка}}", "account.follows.empty": "Цей користувач ще ні на кого не підписався.", "account.go_to_profile": "Перейти до профілю", @@ -764,7 +764,7 @@ "search_results.hashtags": "Хештеґи", "search_results.nothing_found": "Нічого не вдалося знайти за цими пошуковими термінами", "search_results.see_all": "Показати все", - "search_results.statuses": "Дописів", + "search_results.statuses": "Дописи", "search_results.title": "Шукати {q}", "server_banner.about_active_users": "Люди, які використовують цей сервер протягом останніх 30 днів (Щомісячні Активні Користувачі)", "server_banner.active_users": "активні користувачі", @@ -824,8 +824,8 @@ "status.report": "Поскаржитися на @{name}", "status.sensitive_warning": "Делікатний вміст", "status.share": "Поділитися", - "status.show_less_all": "Згорнути для всіх", - "status.show_more_all": "Розгорнути для всіх", + "status.show_less_all": "Згорнути всі", + "status.show_more_all": "Розгорнути всі", "status.show_original": "Показати оригінал", "status.title.with_attachments": "{user} розміщує {{attachmentCount, plural, one {вкладення} few {{attachmentCount} вкладення} many {{attachmentCount} вкладень} other {{attachmentCount} вкладень}}", "status.translate": "Перекласти", diff --git a/app/javascript/mastodon/locales/vi.json b/app/javascript/mastodon/locales/vi.json index 5c6b7f917b..a94ad331cd 100644 --- a/app/javascript/mastodon/locales/vi.json +++ b/app/javascript/mastodon/locales/vi.json @@ -3,15 +3,15 @@ "about.contact": "Liên lạc:", "about.disclaimer": "Mastodon là phần mềm tự do nguồn mở của Mastodon gGmbH.", "about.domain_blocks.no_reason_available": "Lý do không được cung cấp", - "about.domain_blocks.preamble": "Mastodon cho phép bạn đọc nội dung và giao tiếp với mọi người từ bất kỳ máy chủ nào. Còn đây là những ngoại lệ trên máy chủ này.", - "about.domain_blocks.silenced.explanation": "Nói chung, bạn sẽ không thấy người và nội dung từ máy chủ này, trừ khi bạn tự tìm kiếm hoặc tự theo dõi.", + "about.domain_blocks.preamble": "Mastodon cho phép bạn đọc nội dung và giao tiếp với tài khoản từ bất kỳ máy chủ nào. Còn đây là những ngoại lệ trên máy chủ này.", + "about.domain_blocks.silenced.explanation": "Nói chung, bạn sẽ không thấy tài khoản và nội dung từ máy chủ này, trừ khi bạn tự tìm kiếm hoặc tự theo dõi.", "about.domain_blocks.silenced.title": "Hạn chế", - "about.domain_blocks.suspended.explanation": "Dữ liệu từ máy chủ này sẽ không được xử lý, lưu trữ hoặc trao đổi. Mọi tương tác hoặc giao tiếp với người từ máy chủ này đều bị cấm.", + "about.domain_blocks.suspended.explanation": "Dữ liệu từ máy chủ này sẽ không được xử lý, lưu trữ hoặc trao đổi. Mọi tương tác hoặc giao tiếp với tài khoản ở máy chủ này đều bị cấm.", "about.domain_blocks.suspended.title": "Vô hiệu hóa", "about.not_available": "Máy chủ này chưa cung cấp thông tin.", "about.powered_by": "Mạng xã hội liên hợp {mastodon}", "about.rules": "Nội quy máy chủ", - "account.account_note_header": "Ghi chú cá nhân", + "account.account_note_header": "Ghi chú", "account.add_or_remove_from_list": "Sửa danh sách", "account.badges.bot": "Bot", "account.badges.group": "Nhóm", @@ -26,7 +26,7 @@ "account.domain_blocked": "Tên miền đã chặn", "account.edit_profile": "Sửa hồ sơ", "account.enable_notifications": "Nhận thông báo khi @{name} đăng tút", - "account.endorse": "Nêu bật người này", + "account.endorse": "Nêu bật tài khoản này", "account.featured_tags.last_status_at": "Tút gần nhất {date}", "account.featured_tags.last_status_never": "Chưa có tút", "account.featured_tags.title": "Hashtag của {name}", @@ -34,24 +34,24 @@ "account.follow_back": "Theo dõi lại", "account.followers": "Người theo dõi", "account.followers.empty": "Chưa có người theo dõi nào.", - "account.followers_counter": "{count, plural, other {{counter} Người theo dõi}}", + "account.followers_counter": "{count, plural, other {{counter} người theo dõi}}", "account.following": "Đang theo dõi", - "account.following_counter": "{count, plural, other {{counter} Đang theo dõi}}", - "account.follows.empty": "Người này chưa theo dõi ai.", + "account.following_counter": "{count, plural, other {{counter} theo dõi}}", + "account.follows.empty": "Tài khoản này chưa theo dõi ai.", "account.go_to_profile": "Xem hồ sơ", "account.hide_reblogs": "Ẩn tút @{name} đăng lại", "account.in_memoriam": "Tưởng Niệm.", - "account.joined_short": "Đã tham gia", + "account.joined_short": "Tham gia", "account.languages": "Đổi ngôn ngữ mong muốn", "account.link_verified_on": "Liên kết này đã được xác minh vào {date}", "account.locked_info": "Đây là tài khoản riêng tư. Chủ tài khoản tự mình xét duyệt các yêu cầu theo dõi.", - "account.media": "Media", + "account.media": "Phương tiện", "account.mention": "Nhắc đến @{name}", "account.moved_to": "{name} đã chuyển sang máy chủ khác", - "account.mute": "Ẩn @{name}", - "account.mute_notifications_short": "Tắt thông báo", - "account.mute_short": "Ẩn", - "account.muted": "Đã ẩn", + "account.mute": "Phớt lờ @{name}", + "account.mute_notifications_short": "Phớt lờ thông báo", + "account.mute_short": "Phớt lờ", + "account.muted": "Đã phớt lờ", "account.mutual": "Đang theo dõi nhau", "account.no_bio": "Chưa có miêu tả.", "account.open_original_page": "Mở liên kết gốc", @@ -66,20 +66,20 @@ "account.unblock": "Bỏ chặn @{name}", "account.unblock_domain": "Bỏ ẩn {domain}", "account.unblock_short": "Bỏ chặn", - "account.unendorse": "Bỏ nêu bật người này", + "account.unendorse": "Bỏ nêu bật tài khoản này", "account.unfollow": "Bỏ theo dõi", - "account.unmute": "Bỏ ẩn @{name}", - "account.unmute_notifications_short": "Mở lại thông báo", - "account.unmute_short": "Bỏ ẩn", + "account.unmute": "Bỏ phớt lờ @{name}", + "account.unmute_notifications_short": "Bỏ phớt lờ thông báo", + "account.unmute_short": "Bỏ phớt lờ", "account_note.placeholder": "Nhấn để thêm", "admin.dashboard.daily_retention": "Tỉ lệ người dùng sau đăng ký ở lại theo ngày", "admin.dashboard.monthly_retention": "Tỉ lệ người dùng ở lại sau khi đăng ký", "admin.dashboard.retention.average": "Trung bình", "admin.dashboard.retention.cohort": "Tháng đăng ký", - "admin.dashboard.retention.cohort_size": "Số người", + "admin.dashboard.retention.cohort_size": "Mới", "admin.impact_report.instance_accounts": "Hồ sơ tài khoản này sẽ xóa", - "admin.impact_report.instance_followers": "Người theo dõi của thành viên máy chủ sẽ mất", - "admin.impact_report.instance_follows": "Người theo dõi người dùng của họ sẽ mất", + "admin.impact_report.instance_followers": "Người theo dõi của thành viên máy chủ sẽ bị mất", + "admin.impact_report.instance_follows": "Người mà thành viên máy chủ theo dõi sẽ bị mất", "admin.impact_report.title": "Mô tả ảnh hưởng", "alert.rate_limited.message": "Vui lòng thử lại sau {retry_time, time, medium}.", "alert.rate_limited.title": "Vượt giới hạn", @@ -95,7 +95,7 @@ "block_modal.they_cant_mention": "Họ không thể theo dõi & nhắc đến bạn.", "block_modal.they_cant_see_posts": "Cả hai không còn nhìn thấy tút của nhau.", "block_modal.they_will_know": "Họ sẽ biết đã bị bạn chặn.", - "block_modal.title": "Chặn người này?", + "block_modal.title": "Chặn tài khoản này?", "block_modal.you_wont_see_mentions": "Bạn không còn thấy tút có nhắc đến họ.", "boost_modal.combo": "Nhấn {combo} để bỏ qua bước này", "boost_modal.reblog": "Đăng lại?", @@ -115,21 +115,21 @@ "closed_registrations.other_server_instructions": "Tạo tài khoản trên máy chủ khác và vẫn tương tác với máy chủ này.", "closed_registrations_modal.description": "{domain} hiện tắt đăng ký, nhưng hãy lưu ý rằng bạn không cần một tài khoản riêng trên {domain} để sử dụng Mastodon.", "closed_registrations_modal.find_another_server": "Tìm máy chủ khác", - "closed_registrations_modal.preamble": "Mastodon liên hợp nên bất kể bạn tạo tài khoản ở đâu, bạn cũng sẽ có thể theo dõi và tương tác với mọi người trên máy chủ này. Bạn thậm chí có thể tự mở máy chủ!", + "closed_registrations_modal.preamble": "Mastodon liên hợp nên bất kể bạn tạo tài khoản ở đâu, bạn cũng sẽ có thể theo dõi và tương tác với tài khoản trên máy chủ này. Bạn thậm chí có thể tự mở máy chủ!", "closed_registrations_modal.title": "Đăng ký Mastodon", "column.about": "Giới thiệu", - "column.blocks": "Người đã chặn", + "column.blocks": "Tài khoản đã chặn", "column.bookmarks": "Những tút đã lưu", "column.community": "Máy chủ này", "column.direct": "Nhắn riêng", - "column.directory": "Kết nối dựa trên sở thích", + "column.directory": "Tìm tài khoản", "column.domain_blocks": "Máy chủ đã chặn", "column.favourites": "Những tút đã thích", "column.firehose": "Bảng tin", "column.follow_requests": "Yêu cầu theo dõi", "column.home": "Trang chủ", "column.lists": "Danh sách", - "column.mutes": "Người đã ẩn", + "column.mutes": "Tài khoản đã phớt lờ", "column.notifications": "Thông báo", "column.pins": "Tút ghim", "column.public": "Liên hợp", @@ -143,7 +143,7 @@ "column_subheading.settings": "Thiết lập", "community.column_settings.local_only": "Chỉ máy chủ của bạn", "community.column_settings.media_only": "Chỉ hiện tút có media", - "community.column_settings.remote_only": "Chỉ người ở máy chủ khác", + "community.column_settings.remote_only": "Chỉ tài khoản ở máy chủ khác", "compose.language.change": "Chọn ngôn ngữ tút", "compose.language.search": "Tìm ngôn ngữ...", "compose.published.body": "Tút đã được đăng.", @@ -152,7 +152,7 @@ "compose_form.direct_message_warning_learn_more": "Tìm hiểu thêm", "compose_form.encryption_warning": "Các tút trên Mastodon không được mã hóa đầu cuối. Không chia sẻ bất kỳ thông tin nhạy cảm nào qua Mastodon.", "compose_form.hashtag_warning": "Tút này sẽ không xuất hiện công khai. Chỉ những tút công khai mới có thể được tìm kiếm thông qua hashtag.", - "compose_form.lock_disclaimer": "Tài khoản của bạn không {locked}. Bất cứ ai cũng có thể theo dõi và xem tút riêng tư của bạn.", + "compose_form.lock_disclaimer": "Tài khoản của bạn không {locked}. Bất cứ ai cũng có thể theo dõi và xem tút chỉ dành cho người theo dõi bạn.", "compose_form.lock_disclaimer.lock": "khóa", "compose_form.placeholder": "Bạn đang nghĩ gì?", "compose_form.poll.duration": "Hết hạn sau", @@ -185,7 +185,7 @@ "confirmations.logout.confirm": "Đăng xuất", "confirmations.logout.message": "Bạn có chắc muốn thoát?", "confirmations.logout.title": "Đăng xuất", - "confirmations.mute.confirm": "Ẩn", + "confirmations.mute.confirm": "Phớt lờ", "confirmations.redraft.confirm": "Xóa & viết lại", "confirmations.redraft.message": "Điều này sẽ khiến những lượt thích và đăng lại của tút bị mất, cũng như những trả lời sẽ không còn nội dung gốc.", "confirmations.redraft.title": "Xóa & viết lại", @@ -223,19 +223,19 @@ "domain_block_modal.they_cant_follow": "Không ai trên máy chủ này có thể theo dõi bạn.", "domain_block_modal.they_wont_know": "Họ không biết đã bị bạn chặn.", "domain_block_modal.title": "Chặn máy chủ?", - "domain_block_modal.you_will_lose_num_followers": "Bạn sẽ mất {followersCount, plural, other {{followersCountDisplay} người theo dõi}} và {followingCount, plural, other {{followingCountDisplay} người bạn theo dõi}}.", - "domain_block_modal.you_will_lose_relationships": "Bạn sẽ mất tất cả người theo dõi và những người bạn theo dõi từ máy chủ này.", + "domain_block_modal.you_will_lose_num_followers": "Bạn sẽ mất {followersCount, plural, other {{followersCountDisplay} người theo dõi}} và {followingCount, plural, other {{followingCountDisplay} tài khoản mà bạn theo dõi}}.", + "domain_block_modal.you_will_lose_relationships": "Bạn sẽ mất tất cả người theo dõi và những tài khoản mà bạn theo dõi ở máy chủ này.", "domain_block_modal.you_wont_see_posts": "Bạn không còn thấy tút hoặc thông báo từ thành viên máy chủ này.", "domain_pill.activitypub_lets_connect": "Nó cho phép bạn kết nối và tương tác với mọi người, không chỉ trên Mastodon mà còn trên các nền tảng khác.", "domain_pill.activitypub_like_language": "ActivityPub giống như ngôn ngữ Mastodon giao tiếp với các mạng xã hội khác.", "domain_pill.server": "Máy chủ", "domain_pill.their_handle": "Địa chỉ Mastodon:", - "domain_pill.their_server": "Nơi lưu trữ tút của người này.", + "domain_pill.their_server": "Nơi lưu trữ tút của tài khoản này.", "domain_pill.their_username": "Độc nhất trên máy chủ này. Những máy chủ khác có thể cũng có tên người dùng giống vậy.", "domain_pill.username": "Tên người dùng", "domain_pill.whats_in_a_handle": "Địa chỉ Mastodon là gì?", - "domain_pill.who_they_are": "Vì địa chỉ Mastodon cho biết một người là ai và họ ở đâu, nên bạn có thể tương tác với mọi người trên các nền tảng có .", - "domain_pill.who_you_are": "Vì địa chỉ Mastodon cho biết bạn là ai và bạn ở đâu, nên bạn có thể tương tác với mọi người trên các nền tảng có .", + "domain_pill.who_they_are": "Vì địa chỉ Mastodon cho biết một người là ai và họ ở đâu, nên bạn có thể tương tác với mọi người trên các nền tảng .", + "domain_pill.who_you_are": "Vì địa chỉ Mastodon cho biết bạn là ai và bạn ở đâu, nên mọi người có thể tương tác với bạn từ các nền tảng .", "domain_pill.your_handle": "Địa chỉ Mastodon của bạn:", "domain_pill.your_server": "Nơi lưu trữ tút của bạn. Không thích ở đây? Chuyển sang máy chủ khác và giữ nguyên người theo dõi của bạn.", "domain_pill.your_username": "Chỉ riêng bạn trên máy chủ này. Những máy chủ khác có thể cũng có tên người dùng giống vậy.", @@ -256,7 +256,7 @@ "emoji_button.search_results": "Kết quả tìm kiếm", "emoji_button.symbols": "Biểu tượng", "emoji_button.travel": "Du lịch", - "empty_column.account_hides_collections": "Người này đã chọn ẩn thông tin", + "empty_column.account_hides_collections": "Tài khoản này đã chọn ẩn thông tin", "empty_column.account_suspended": "Tài khoản vô hiệu hóa", "empty_column.account_timeline": "Chưa có tút nào!", "empty_column.account_unavailable": "Tài khoản bị đình chỉ", @@ -271,13 +271,13 @@ "empty_column.follow_requests": "Bạn chưa có yêu cầu theo dõi nào.", "empty_column.followed_tags": "Bạn chưa theo dõi hashtag nào. Khi bạn theo dõi, chúng sẽ hiện lên ở đây.", "empty_column.hashtag": "Chưa có tút nào dùng hashtag này.", - "empty_column.home": "Trang chủ của bạn đang trống! Hãy theo dõi nhiều người hơn để lấp đầy.", - "empty_column.list": "Chưa có tút. Khi những người trong danh sách này đăng tút mới, chúng sẽ xuất hiện ở đây.", + "empty_column.home": "Trang chủ của bạn đang trống! Hãy theo dõi nhiều tài khoản hơn để lấp đầy.", + "empty_column.list": "Chưa có tút. Khi những tài khoản trong danh sách này đăng tút mới, chúng sẽ xuất hiện ở đây.", "empty_column.lists": "Bạn chưa tạo danh sách nào.", - "empty_column.mutes": "Bạn chưa ẩn bất kỳ ai.", + "empty_column.mutes": "Bạn chưa phớt lờ ai.", "empty_column.notification_requests": "Sạch sẽ! Không còn gì ở đây. Khi bạn nhận được thông báo mới, chúng sẽ xuất hiện ở đây theo cài đặt của bạn.", "empty_column.notifications": "Bạn chưa có thông báo nào. Hãy thử theo dõi hoặc nhắn riêng cho ai đó.", - "empty_column.public": "Trống trơn! Bạn hãy viết gì đó hoặc bắt đầu theo dõi những người khác", + "empty_column.public": "Trống trơn! Bạn hãy viết gì đó hoặc bắt đầu theo dõi những tài khoản khác", "error.unexpected_crash.explanation": "Trang này có thể không hiển thị chính xác do lỗi lập trình Mastodon hoặc vấn đề tương thích trình duyệt.", "error.unexpected_crash.explanation_addons": "Trang này không thể hiển thị do xung khắc với add-on của trình duyệt hoặc công cụ tự động dịch ngôn ngữ.", "error.unexpected_crash.next_steps": "Hãy thử làm mới trang. Nếu vẫn không được, bạn hãy vào Mastodon bằng một ứng dụng di động hoặc trình duyệt khác.", @@ -307,27 +307,27 @@ "filter_modal.select_filter.title": "Lọc tút này", "filter_modal.title.status": "Lọc một tút", "filter_warning.matches_filter": "Khớp bộ lọc “{title}”", - "filtered_notifications_banner.pending_requests": "Từ {count, plural, =0 {không ai} other {# người}} bạn có thể biết", + "filtered_notifications_banner.pending_requests": "Từ {count, plural, =0 {không ai} other {# tài khoản}} mà bạn có thể biết", "filtered_notifications_banner.title": "Thông báo đã lọc", "firehose.all": "Toàn bộ", "firehose.local": "Máy chủ này", "firehose.remote": "Máy chủ khác", "follow_request.authorize": "Chấp nhận", "follow_request.reject": "Từ chối", - "follow_requests.unlocked_explanation": "Mặc dù tài khoản của bạn đang ở chế độ công khai, quản trị viên của {domain} vẫn tin rằng bạn sẽ muốn xem lại yêu cầu theo dõi từ những người khác.", + "follow_requests.unlocked_explanation": "Mặc dù tài khoản của bạn đang ở chế độ công khai, quản trị viên {domain} tin rằng bạn sẽ muốn xem lại yêu cầu theo dõi từ những tài khoản khác.", "follow_suggestions.curated_suggestion": "Gợi ý từ máy chủ", "follow_suggestions.dismiss": "Không hiện lại", "follow_suggestions.featured_longer": "Tuyển chọn bởi {domain}", - "follow_suggestions.friends_of_friends_longer": "Nổi tiếng với những người mà bạn theo dõi", - "follow_suggestions.hints.featured": "Người này được đội ngũ {domain} đề xuất.", - "follow_suggestions.hints.friends_of_friends": "Người này nổi tiếng với những người bạn theo dõi.", - "follow_suggestions.hints.most_followed": "Người này được theo dõi nhiều nhất trên {domain}.", - "follow_suggestions.hints.most_interactions": "Người này đang thu hút sự chú ý trên {domain}.", - "follow_suggestions.hints.similar_to_recently_followed": "Người này có nét giống những người mà bạn theo dõi gần đây.", + "follow_suggestions.friends_of_friends_longer": "Nổi tiếng với những tài khoản mà bạn theo dõi", + "follow_suggestions.hints.featured": "Được đội ngũ {domain} đề xuất.", + "follow_suggestions.hints.friends_of_friends": "Nổi tiếng với những tài khoản mà bạn theo dõi.", + "follow_suggestions.hints.most_followed": "Được theo dõi nhiều nhất trên {domain}.", + "follow_suggestions.hints.most_interactions": "Đang được quan tâm nhiều trên {domain}.", + "follow_suggestions.hints.similar_to_recently_followed": "Tương tự những tài khoản mà bạn theo dõi gần đây.", "follow_suggestions.personalized_suggestion": "Gợi ý cá nhân hóa", - "follow_suggestions.popular_suggestion": "Người nổi tiếng", + "follow_suggestions.popular_suggestion": "Nổi tiếng", "follow_suggestions.popular_suggestion_longer": "Nổi tiếng trên {domain}", - "follow_suggestions.similar_to_recently_followed_longer": "Tương đồng những người mà bạn theo dõi", + "follow_suggestions.similar_to_recently_followed_longer": "Tương tự những tài khoản mà bạn theo dõi gần đây", "follow_suggestions.view_all": "Xem tất cả", "follow_suggestions.who_to_follow": "Gợi ý theo dõi", "followed_tags": "Hashtag theo dõi", @@ -356,11 +356,11 @@ "hashtag.follow": "Theo dõi hashtag", "hashtag.unfollow": "Bỏ theo dõi hashtag", "hashtags.and_other": "…và {count, plural, other {# nữa}}", - "hints.profiles.followers_may_be_missing": "Số người theo dõi có thể không đầy đủ.", - "hints.profiles.follows_may_be_missing": "Số người mà người này theo dõi có thể không đầy đủ.", - "hints.profiles.posts_may_be_missing": "Số tút của người này có thể không đầy đủ.", + "hints.profiles.followers_may_be_missing": "Số người theo dõi có thể bị thiếu.", + "hints.profiles.follows_may_be_missing": "Số lượng tài khoản mà tài khoản này theo dõi có thể bị thiếu.", + "hints.profiles.posts_may_be_missing": "Số lượng tút của tài khoản này có thể bị thiếu.", "hints.profiles.see_more_followers": "Xem thêm người theo dõi ở {domain}", - "hints.profiles.see_more_follows": "Xem thêm người mà người này theo dõi ở {domain}", + "hints.profiles.see_more_follows": "Xem thêm người mà tài khoản này theo dõi ở {domain}", "hints.profiles.see_more_posts": "Xem thêm tút ở {domain}", "hints.threads.replies_may_be_missing": "Những trả lời từ máy chủ khác có thể không đầy đủ.", "hints.threads.see_more": "Xem thêm ở {domain}", @@ -371,16 +371,16 @@ "home.pending_critical_update.link": "Xem bản cập nhật", "home.pending_critical_update.title": "Có bản cập nhật bảo mật quan trọng!", "home.show_announcements": "Xem thông báo máy chủ", - "ignore_notifications_modal.disclaimer": "Mastodon sẽ không thông báo cho người dùng rằng bạn đã bỏ qua thông báo của họ. Họ sẽ vẫn có thể tương tác với bạn.", + "ignore_notifications_modal.disclaimer": "Mastodon sẽ không thông báo cho tài khoản rằng bạn đã bỏ qua thông báo của họ. Họ sẽ vẫn có thể tương tác với bạn.", "ignore_notifications_modal.filter_instead": "Lọc thay thế", - "ignore_notifications_modal.filter_to_act_users": "Bạn vẫn có thể chấp nhận, từ chối hoặc báo cáo người khác", + "ignore_notifications_modal.filter_to_act_users": "Bạn vẫn có thể chấp nhận, từ chối hoặc báo cáo tài khoản khác", "ignore_notifications_modal.filter_to_avoid_confusion": "Lọc giúp tránh nhầm lẫn tiềm ẩn", "ignore_notifications_modal.filter_to_review_separately": "Bạn có thể xem lại các thông báo đã được lọc riêng", "ignore_notifications_modal.ignore": "Bỏ qua thông báo", "ignore_notifications_modal.limited_accounts_title": "Bỏ qua thông báo từ các tài khoản bị kiểm duyệt?", "ignore_notifications_modal.new_accounts_title": "Bỏ qua thông báo từ các tài khoản mới đăng ký?", - "ignore_notifications_modal.not_followers_title": "Bỏ qua thông báo từ những người chưa theo dõi bạn?", - "ignore_notifications_modal.not_following_title": "Bỏ qua thông báo từ những người bạn không theo dõi?", + "ignore_notifications_modal.not_followers_title": "Bỏ qua thông báo từ những tài khoản chưa theo dõi bạn?", + "ignore_notifications_modal.not_following_title": "Bỏ qua thông báo từ những tài khoản mà bạn không theo dõi?", "ignore_notifications_modal.private_mentions_title": "Bỏ qua thông báo từ những lượt nhắn riêng không mong muốn?", "interaction_modal.description.favourite": "Với tài khoản Mastodon, bạn có thể cho người đăng biết bạn thích tút này và lưu lại tút.", "interaction_modal.description.follow": "Với tài khoản Mastodon, bạn có thể theo dõi {name} để tút của họ hiện trên bảng tin của mình.", @@ -401,8 +401,8 @@ "intervals.full.hours": "{number, plural, other {# giờ}}", "intervals.full.minutes": "{number, plural, other {# phút}}", "keyboard_shortcuts.back": "quay lại", - "keyboard_shortcuts.blocked": "mở danh sách người đã chặn", - "keyboard_shortcuts.boost": "đăng lại", + "keyboard_shortcuts.blocked": "mở danh sách tài khoản đã chặn", + "keyboard_shortcuts.boost": "đăng lại tút", "keyboard_shortcuts.column": "mở các cột", "keyboard_shortcuts.compose": "mở khung soạn tút", "keyboard_shortcuts.description": "Mô tả", @@ -418,7 +418,7 @@ "keyboard_shortcuts.legend": "hiện bảng hướng dẫn này", "keyboard_shortcuts.local": "mở máy chủ của bạn", "keyboard_shortcuts.mention": "nhắc đến ai đó", - "keyboard_shortcuts.muted": "mở danh sách người đã ẩn", + "keyboard_shortcuts.muted": "mở danh sách tài khoản đã phớt lờ", "keyboard_shortcuts.my_profile": "mở hồ sơ của bạn", "keyboard_shortcuts.notifications": "mở thông báo", "keyboard_shortcuts.open_media": "mở ảnh hoặc video", @@ -440,7 +440,7 @@ "lightbox.zoom_in": "Kích cỡ gốc", "lightbox.zoom_out": "Vừa màn hình", "limited_account_hint.action": "Vẫn cứ xem", - "limited_account_hint.title": "Người này đã bị ẩn bởi quản trị viên {domain}.", + "limited_account_hint.title": "Tài khoản này đã bị ẩn bởi quản trị viên {domain}.", "link_preview.author": "Bởi {name}", "link_preview.more_from_author": "Viết bởi {name}", "link_preview.shares": "{count, plural, other {{counter} lượt chia sẻ}}", @@ -452,8 +452,8 @@ "lists.exclusive": "Ẩn những tút này khỏi bảng tin", "lists.new.create": "Tạo mới", "lists.new.title_placeholder": "Tên danh sách", - "lists.replies_policy.followed": "Người mà bạn đã theo dõi", - "lists.replies_policy.list": "Người trong danh sách", + "lists.replies_policy.followed": "Tài khoản mà bạn theo dõi", + "lists.replies_policy.list": "Tài khoản trong danh sách", "lists.replies_policy.none": "Không ai", "lists.replies_policy.title": "Cho phép trả lời với:", "lists.search": "Tìm kiếm những người mà bạn quan tâm", @@ -462,19 +462,19 @@ "loading_indicator.label": "Đang tải…", "media_gallery.hide": "Ẩn", "moved_to_account_banner.text": "Tài khoản {disabledAccount} của bạn hiện không khả dụng vì bạn đã chuyển sang {movedToAccount}.", - "mute_modal.hide_from_notifications": "Ẩn thông báo", + "mute_modal.hide_from_notifications": "Phớt lờ thông báo", "mute_modal.hide_options": "Ẩn tùy chọn", - "mute_modal.indefinite": "Cho tới khi bỏ ẩn", + "mute_modal.indefinite": "Phớt lờ vĩnh viễn", "mute_modal.show_options": "Thêm tùy chọn", "mute_modal.they_can_mention_and_follow": "Họ vẫn có thể theo dõi & nhắc đến bạn.", - "mute_modal.they_wont_know": "Họ không biết đã bị bạn ẩn.", - "mute_modal.title": "Ẩn người này?", + "mute_modal.they_wont_know": "Họ không biết đã bị bạn phớt lờ.", + "mute_modal.title": "Phớt lờ tài khoản?", "mute_modal.you_wont_see_mentions": "Bạn không còn thấy tút có nhắc đến họ.", "mute_modal.you_wont_see_posts": "Bạn không còn thấy tút của họ.", "navigation_bar.about": "Giới thiệu", "navigation_bar.administration": "Quản trị", "navigation_bar.advanced_interface": "Dùng bố cục nhiều cột", - "navigation_bar.blocks": "Người đã chặn", + "navigation_bar.blocks": "Tài khoản đã chặn", "navigation_bar.bookmarks": "Tút lưu", "navigation_bar.community_timeline": "Máy chủ này", "navigation_bar.compose": "Soạn tút mới", @@ -490,7 +490,7 @@ "navigation_bar.lists": "Danh sách", "navigation_bar.logout": "Đăng xuất", "navigation_bar.moderation": "Kiểm duyệt", - "navigation_bar.mutes": "Người đã ẩn", + "navigation_bar.mutes": "Tài khoản đã phớt lờ", "navigation_bar.opened_in_classic_interface": "Tút, tài khoản và các trang cụ thể khác được mở theo mặc định trong giao diện web cổ điển.", "navigation_bar.personal": "Cá nhân", "navigation_bar.pins": "Tút ghim", @@ -601,11 +601,11 @@ "notifications.policy.filter_limited_accounts_hint": "Chỉ dành cho kiểm duyệt viên", "notifications.policy.filter_limited_accounts_title": "Kiểm duyệt tài khoản", "notifications.policy.filter_new_accounts.hint": "Dưới {days, plural, other {# ngày}}", - "notifications.policy.filter_new_accounts_title": "Những người mới tạo tài khoản", - "notifications.policy.filter_not_followers_hint": "Kể cả người theo dõi bạn dưới {days, plural, other {# ngày}}", - "notifications.policy.filter_not_followers_title": "Những người không theo dõi bạn", + "notifications.policy.filter_new_accounts_title": "Tài khoản mới tạo gần đây", + "notifications.policy.filter_not_followers_hint": "Kể cả tài khoản theo dõi bạn dưới {days, plural, other {# ngày}}", + "notifications.policy.filter_not_followers_title": "Tài khoản không theo dõi bạn", "notifications.policy.filter_not_following_hint": "Cho đến khi bạn duyệt họ", - "notifications.policy.filter_not_following_title": "Những người bạn không theo dõi", + "notifications.policy.filter_not_following_title": "Tài khoản mà bạn không theo dõi", "notifications.policy.filter_private_mentions_hint": "Trừ khi bạn nhắn họ trước hoặc bạn có theo dõi họ", "notifications.policy.filter_private_mentions_title": "Nhắn riêng không mong muốn", "notifications.policy.title": "Quản lý thông báo từ…", @@ -622,8 +622,8 @@ "onboarding.follows.title": "Thịnh hành trên Mastodon", "onboarding.profile.discoverable": "Bật khám phá cho hồ sơ của tôi", "onboarding.profile.discoverable_hint": "Khi bạn bật khám phá trên Mastodon, các tút của bạn có thể xuất hiện trong kết quả tìm kiếm và xu hướng, đồng thời hồ sơ của bạn sẽ được đề xuất cho những người có cùng sở thích với bạn.", - "onboarding.profile.display_name": "Biệt danh", - "onboarding.profile.display_name_hint": "Tên đầy đủ hoặc biệt danh đều được…", + "onboarding.profile.display_name": "Tên gọi", + "onboarding.profile.display_name_hint": "Tên thật hay biệt danh đều được…", "onboarding.profile.lead": "Bạn có thể cài đặt lại trong phần cài đặt, nơi thậm chí còn có nhiều tùy chọn hơn.", "onboarding.profile.note": "Giới thiệu", "onboarding.profile.note_hint": "Bạn có thể @aiđó hoặc #hashtags…", @@ -647,8 +647,8 @@ "onboarding.steps.share_profile.body": "Hãy để bạn bè của bạn biết cách tìm thấy bạn trên Mastodon!", "onboarding.steps.share_profile.title": "Chia sẻ hồ sơ Mastodon của bạn", "onboarding.tips.2fa": "Bạn có biết? Bạn có thể bảo mật tài khoản của mình bằng cách thiết lập xác thực hai yếu tố trong cài đặt tài khoản của mình. Nó hoạt động với bất kỳ ứng dụng OTP nào bạn chọn, không cần số điện thoại!", - "onboarding.tips.accounts_from_other_servers": "Bạn có biết? Vì Mastodon liên hợp, một số hồ sơ bạn gặp sẽ được lưu trữ trên các máy chủ không giống bạn. Tuy nhiên, bạn có thể tương tác với họ một cách liền mạch! Máy chủ của họ nằm ở nửa sau tên người dùng của họ!", - "onboarding.tips.migration": "Bạn có biết? Nếu bạn thấy {domain} không phải là lựa chọn máy chủ tuyệt vời cho bạn trong tương lai, bạn có thể chuyển sang máy chủ Mastodon khác mà không bị mất người theo dõi. Bạn thậm chí có thể lưu trữ máy chủ của riêng bạn!", + "onboarding.tips.accounts_from_other_servers": "Bạn có biết? Vì Mastodon liên hợp, một số tài khoản bạn gặp sẽ được lưu trữ trên các máy chủ không giống bạn. Tuy nhiên, bạn có thể tương tác với họ một cách liền mạch! Máy chủ của họ nằm ở nửa sau tên người dùng của họ!", + "onboarding.tips.migration": "Bạn có biết? Nếu bạn thấy {domain} không phải là lựa chọn máy chủ tuyệt vời cho bạn trong tương lai, bạn có thể chuyển sang máy chủ Mastodon khác mà không bị mất người theo dõi. Bạn thậm chí có thể mở máy chủ của riêng bạn!", "onboarding.tips.verification": "Bạn có biết? Bạn có thể xác minh tài khoản của mình bằng cách đặt liên kết tới hồ sơ Mastodon trên trang web của riêng bạn và thêm trang web vào hồ sơ của bạn. Không có lệ phí hoặc tài liệu cần thiết!", "password_confirmation.exceeds_maxlength": "Mật khẩu vượt quá độ dài mật khẩu tối đa", "password_confirmation.mismatching": "Mật khẩu không trùng khớp", @@ -707,8 +707,8 @@ "report.comment.title": "Có điều gì mà chúng tôi cần biết không?", "report.forward": "Chuyển đến {target}", "report.forward_hint": "Người này thuộc máy chủ khác. Gửi một báo cáo ẩn danh tới máy chủ đó?", - "report.mute": "Ẩn", - "report.mute_explanation": "Bạn sẽ không còn thấy tút của người này. Họ vẫn có thể thấy tút của bạn hoặc theo dõi bạn. Họ không biết là bạn đã chặn họ.", + "report.mute": "Phớt lờ", + "report.mute_explanation": "Bạn sẽ không còn thấy tút của họ. Họ vẫn có thể thấy tút của bạn hoặc theo dõi bạn. Họ không biết là bạn đã phớt lờ họ.", "report.next": "Tiếp theo", "report.placeholder": "Thêm lưu ý", "report.reasons.dislike": "Tôi không thích", @@ -784,7 +784,7 @@ "status.cancel_reblog_private": "Bỏ đăng lại", "status.cannot_reblog": "Không thể đăng lại tút này", "status.continued_thread": "Tiếp tục chủ đề", - "status.copy": "Sao chép URL", + "status.copy": "Sao chép liên kết gốc", "status.delete": "Xóa", "status.detailed_status": "Xem chi tiết thêm", "status.direct": "Nhắn riêng @{name}", @@ -804,8 +804,8 @@ "status.media_hidden": "Đã ẩn", "status.mention": "Nhắc đến @{name}", "status.more": "Xem thêm", - "status.mute": "Ẩn @{name}", - "status.mute_conversation": "Tắt thông báo", + "status.mute": "Phớt lờ @{name}", + "status.mute_conversation": "Phớt lờ thông báo", "status.open": "Mở tút", "status.pin": "Ghim lên hồ sơ", "status.pinned": "Tút đã ghim", @@ -831,7 +831,7 @@ "status.translate": "Dịch tút", "status.translated_from_with": "Dịch từ {lang} bằng {provider}", "status.uncached_media_warning": "Không bản xem trước", - "status.unmute_conversation": "Mở lại thông báo", + "status.unmute_conversation": "Bỏ phớt lờ thông báo", "status.unpin": "Bỏ ghim trên hồ sơ", "subscribed_languages.lead": "Chỉ các tút đăng bằng các ngôn ngữ đã chọn mới được xuất hiện trên bảng tin của bạn. Không chọn gì cả để đọc tút đăng bằng mọi ngôn ngữ.", "subscribed_languages.save": "Lưu thay đổi", diff --git a/app/javascript/mastodon/locales/zh-CN.json b/app/javascript/mastodon/locales/zh-CN.json index 1fb71f0110..7da75c7b7f 100644 --- a/app/javascript/mastodon/locales/zh-CN.json +++ b/app/javascript/mastodon/locales/zh-CN.json @@ -224,7 +224,7 @@ "domain_block_modal.they_wont_know": "对方不会知道自己被屏蔽。", "domain_block_modal.title": "确定要屏蔽此域名?", "domain_block_modal.you_will_lose_num_followers": "你将失去 {followersCount, plural, other {{followersCountDisplay} 名关注者}}和 {followingCount, plural, other {{followingCountDisplay} 名关注}}。", - "domain_block_modal.you_will_lose_relationships": "你将丢失该站点上的所有关注与关注者。", + "domain_block_modal.you_will_lose_relationships": "你将丢失该站点上的全部关注与关注者。", "domain_block_modal.you_wont_see_posts": "你将不会看到此服务器上用户的嘟文或通知。", "domain_pill.activitypub_lets_connect": "它可以让你与不同社交应用上的人交流互动,而不仅限于 Mastodon。", "domain_pill.activitypub_like_language": "ActivityPub 好比 Mastodon 与其它社交网络交流时使用的语言。", @@ -237,7 +237,7 @@ "domain_pill.who_they_are": "用户名可以表明用户的身份和其所在站点,这样你就可以通过在社交网络和人们互动。", "domain_pill.who_you_are": "用户名可以表明你的身份和你所在的站点,这样人们就可以通过在社交网络与你互动。", "domain_pill.your_handle": "你的用户名:", - "domain_pill.your_server": "你的数字家园,你的所有嘟文都在此存储。不喜欢这里吗?你可以随时迁移到其它服务器,并带上你的关注者。", + "domain_pill.your_server": "你的数字家园,你的全部嘟文都在此存储。不喜欢这里吗?你可以随时迁移到其它服务器,并带上你的关注者。", "domain_pill.your_username": "你在此服务器上的唯一标识。不同服务器上可能存在相同用户名的用户。", "embed.instructions": "复制下列代码以在你的网站中嵌入此嘟文。", "embed.preview": "这是它的预览效果:", @@ -564,9 +564,9 @@ "notifications.column_settings.admin.sign_up": "新注册:", "notifications.column_settings.alert": "桌面通知", "notifications.column_settings.favourite": "喜欢:", - "notifications.column_settings.filter_bar.advanced": "显示所有类别", + "notifications.column_settings.filter_bar.advanced": "显示全部类别", "notifications.column_settings.filter_bar.category": "快速筛选栏", - "notifications.column_settings.follow": "新粉丝:", + "notifications.column_settings.follow": "新关注者:", "notifications.column_settings.follow_request": "新关注请求:", "notifications.column_settings.group": "分组", "notifications.column_settings.mention": "提及:", @@ -721,9 +721,9 @@ "report.reasons.spam_description": "恶意链接、虚假互动或重复回复", "report.reasons.violation": "违反服务器规则", "report.reasons.violation_description": "你清楚它违反了特定的规则", - "report.rules.subtitle": "选择所有适用选项", + "report.rules.subtitle": "选择全部适用选项", "report.rules.title": "违反了哪些规则?", - "report.statuses.subtitle": "选择所有适用选项", + "report.statuses.subtitle": "选择全部适用选项", "report.statuses.title": "是否有任何嘟文可以支持这一报告?", "report.submit": "提交", "report.target": "举报 {target}", @@ -772,7 +772,7 @@ "server_banner.is_one_of_many": "{domain} 是可用于参与联邦宇宙的众多独立 Mastodon 站点之一。", "server_banner.server_stats": "服务器统计数据:", "sign_in_banner.create_account": "创建账号", - "sign_in_banner.follow_anyone": "关注联邦宇宙中的任何人,并按时间顺序查看所有内容。没有算法、广告或诱导链接。", + "sign_in_banner.follow_anyone": "关注联邦宇宙中的任何人,并按时间顺序查看全部内容。没有算法、广告或诱导链接。", "sign_in_banner.mastodon_is": "Mastodon 是了解最新动态的最佳途径。", "sign_in_banner.sign_in": "登录", "sign_in_banner.sso_redirect": "登录或注册", @@ -833,7 +833,7 @@ "status.uncached_media_warning": "预览不可用", "status.unmute_conversation": "恢复此对话的通知提醒", "status.unpin": "在个人资料页面取消置顶", - "subscribed_languages.lead": "更改此选择后,只有选定语言的嘟文才会出现在你的主页和列表时间线上。选择「无」将显示所有语言的嘟文。", + "subscribed_languages.lead": "更改此选择后,只有选定语言的嘟文才会出现在你的主页和列表时间线上。选择「无」将显示全部语言的嘟文。", "subscribed_languages.save": "保存更改", "subscribed_languages.target": "更改 {target} 的订阅语言", "tabs_bar.home": "主页", diff --git a/app/javascript/mastodon/locales/zh-TW.json b/app/javascript/mastodon/locales/zh-TW.json index 3a5385eeaa..9fc84e1c17 100644 --- a/app/javascript/mastodon/locales/zh-TW.json +++ b/app/javascript/mastodon/locales/zh-TW.json @@ -1,50 +1,50 @@ { - "about.blocks": "被限制的伺服器", + "about.blocks": "受管制的伺服器", "about.contact": "聯絡我們:", "about.disclaimer": "Mastodon 是一個自由的開源軟體,是 Mastodon gGmbH 之註冊商標。", "about.domain_blocks.no_reason_available": "無法存取的原因", - "about.domain_blocks.preamble": "Mastodon 基本上允許您瀏覽聯邦宇宙中任何伺服器的內容並與使用者互動。以下是在本伺服器上設定的例外。", - "about.domain_blocks.silenced.explanation": "一般來說您不會看到來自這個伺服器的個人檔案和內容,除非您明確搜尋或主動跟隨對方。", + "about.domain_blocks.preamble": "Mastodon 基本上允許您瀏覽聯邦宇宙中任何伺服器的內容並與使用者互動。以下是於本伺服器上設定之例外。", + "about.domain_blocks.silenced.explanation": "一般來說您不會看到來自這個伺服器的個人檔案與內容,除非您明確地檢視或著跟隨此個人檔案。", "about.domain_blocks.silenced.title": "已受限", "about.domain_blocks.suspended.explanation": "來自此伺服器的資料都不會被處理、儲存或交換,也無法和此伺服器上的使用者互動與交流。", "about.domain_blocks.suspended.title": "已停權", "about.not_available": "無法於本伺服器上使用此資訊。", - "about.powered_by": "由 {mastodon} 提供的去中心化社群媒體", + "about.powered_by": "由 {mastodon} 提供之去中心化社群媒體", "about.rules": "伺服器規則", "account.account_note_header": "個人備註", "account.add_or_remove_from_list": "自列表中新增或移除", "account.badges.bot": "機器人", "account.badges.group": "群組", "account.block": "封鎖 @{name}", - "account.block_domain": "封鎖來自 {domain} 網域的所有內容", + "account.block_domain": "封鎖來自 {domain} 網域之所有內容", "account.block_short": "封鎖", "account.blocked": "已封鎖", "account.cancel_follow_request": "收回跟隨請求", "account.copy": "複製個人檔案連結", - "account.direct": " @{name}", - "account.disable_notifications": "取消來自 @{name} 嘟文的通知", + "account.direct": "私訊 @{name}", + "account.disable_notifications": "取消來自 @{name} 嘟文之通知", "account.domain_blocked": "已封鎖網域", "account.edit_profile": "編輯個人檔案", - "account.enable_notifications": "當 @{name} 嘟文時通知我", - "account.endorse": "於個人檔案推薦對方", - "account.featured_tags.last_status_at": "上次嘟文於 {date}", + "account.enable_notifications": "當 @{name} 發嘟時通知我", + "account.endorse": "於個人檔案推薦", + "account.featured_tags.last_status_at": "上次發嘟於 {date}", "account.featured_tags.last_status_never": "沒有嘟文", "account.featured_tags.title": "{name} 的推薦主題標籤", "account.follow": "跟隨", "account.follow_back": "跟隨回去", "account.followers": "跟隨者", - "account.followers.empty": "尚未有人跟隨這位使用者。", - "account.followers_counter": "被 {count, plural, other {{count} 人}}跟隨", + "account.followers.empty": "尚未有人跟隨此使用者。", + "account.followers_counter": "被 {count, plural, other {{counter} 人}}跟隨", "account.following": "跟隨中", - "account.following_counter": "正在跟隨 {count,plural,other {{count} 人}}", - "account.follows.empty": "這位使用者尚未跟隨任何人。", + "account.following_counter": "正在跟隨 {count,plural,other {{counter} 人}}", + "account.follows.empty": "此使用者尚未跟隨任何人。", "account.go_to_profile": "前往個人檔案", - "account.hide_reblogs": "隱藏來自 @{name} 的轉嘟", + "account.hide_reblogs": "隱藏來自 @{name} 之轉嘟", "account.in_memoriam": "謹此悼念。", "account.joined_short": "加入時間", "account.languages": "變更訂閱的語言", "account.link_verified_on": "已於 {date} 檢查此連結的擁有者權限", - "account.locked_info": "此帳號的隱私狀態設定為鎖定。該擁有者會手動審核能跟隨此帳號的人。", + "account.locked_info": "此帳號的隱私狀態被設為鎖定。該擁有者會手動審核能跟隨此帳號的人。", "account.media": "媒體", "account.mention": "提及 @{name}", "account.moved_to": "{name} 目前的新帳號為:", @@ -62,7 +62,7 @@ "account.requested_follow": "{name} 要求跟隨您", "account.share": "分享 @{name} 的個人檔案", "account.show_reblogs": "顯示來自 @{name} 的轉嘟", - "account.statuses_counter": "{count, plural, other {{count} 則嘟文}}", + "account.statuses_counter": "{count, plural, other {{counter} 則嘟文}}", "account.unblock": "解除封鎖 @{name}", "account.unblock_domain": "解除封鎖網域 {domain}", "account.unblock_short": "解除封鎖", @@ -71,7 +71,7 @@ "account.unmute": "解除靜音 @{name}", "account.unmute_notifications_short": "解除靜音推播通知", "account.unmute_short": "解除靜音", - "account_note.placeholder": "按此新增備註", + "account_note.placeholder": "點擊以新增備註", "admin.dashboard.daily_retention": "註冊後使用者存留率(日)", "admin.dashboard.monthly_retention": "註冊後使用者存留率(月)", "admin.dashboard.retention.average": "平均", @@ -87,38 +87,38 @@ "alert.unexpected.title": "哎呀!", "alt_text_badge.title": "ALT 說明文字", "announcement.announcement": "公告", - "attachments_list.unprocessed": "(未經處理)", + "attachments_list.unprocessed": "(未處理)", "audio.hide": "隱藏音訊", "block_modal.remote_users_caveat": "我們會要求 {domain} 伺服器尊重您的決定。然而,我們無法保證所有伺服器皆會遵守,某些伺服器可能以不同方式處理封鎖。未登入之使用者仍可能看見您的公開嘟文。", "block_modal.show_less": "減少顯示", "block_modal.show_more": "顯示更多", "block_modal.they_cant_mention": "他們無法提及或跟隨您。", - "block_modal.they_cant_see_posts": "他們無法讀取您的嘟文,且您不會見到他們的。", + "block_modal.they_cant_see_posts": "他們無法讀取您的嘟文,且您不會見到他們的嘟文。", "block_modal.they_will_know": "他們能見到他們已被封鎖。", "block_modal.title": "是否封鎖該使用者?", - "block_modal.you_wont_see_mentions": "您不會見到提及他們的嘟文。", - "boost_modal.combo": "下次您可以按 {combo} 跳過", + "block_modal.you_wont_see_mentions": "您將不會見到提及他們的嘟文。", + "boost_modal.combo": "您下次可以按 {combo} 跳過", "boost_modal.reblog": "是否要轉嘟?", "boost_modal.undo_reblog": "是否要取消轉嘟?", "bundle_column_error.copy_stacktrace": "複製錯誤報告", - "bundle_column_error.error.body": "無法繪製請求的頁面。這可能是因為我們程式碼中的臭蟲或是瀏覽器的相容問題。", + "bundle_column_error.error.body": "無法繪製請求的頁面。這可能是因為我們程式碼中的臭蟲或是瀏覽器相容問題。", "bundle_column_error.error.title": "糟糕!", "bundle_column_error.network.body": "嘗試載入此頁面時發生錯誤。這可能是因為您的網際網路連線或此伺服器有暫時性的問題。", "bundle_column_error.network.title": "網路錯誤", "bundle_column_error.retry": "重試", "bundle_column_error.return": "返回首頁", - "bundle_column_error.routing.body": "找不到請求的頁面。您確定網址列中的 URL 是正確的嗎?", + "bundle_column_error.routing.body": "找不到請求的頁面。您是否確定網址列中的 URL 是正確的?", "bundle_column_error.routing.title": "404", "bundle_modal_error.close": "關閉", "bundle_modal_error.message": "載入此元件時發生錯誤。", "bundle_modal_error.retry": "重試", - "closed_registrations.other_server_instructions": "因為 Mastodon 是去中心化的,所以您也能於其他伺服器上建立帳號,並仍然與這個伺服器互動。", + "closed_registrations.other_server_instructions": "因為 Mastodon 是去中心化的,所以您也能於其他伺服器上建立帳號,並仍然與此伺服器互動。", "closed_registrations_modal.description": "目前無法於 {domain} 建立新帳號,但也請別忘了,您並不一定需要有 {domain} 伺服器的帳號,也能使用 Mastodon。", "closed_registrations_modal.find_another_server": "尋找另一個伺服器", "closed_registrations_modal.preamble": "Mastodon 是去中心化的,所以無論您於哪個伺服器新增帳號,都可以與此伺服器上的任何人跟隨及互動。您甚至能自行架設自己的伺服器!", "closed_registrations_modal.title": "註冊 Mastodon", "column.about": "關於", - "column.blocks": "已封鎖的使用者", + "column.blocks": "已封鎖使用者", "column.bookmarks": "書籤", "column.community": "本站時間軸", "column.direct": "私訊", @@ -129,7 +129,7 @@ "column.follow_requests": "跟隨請求", "column.home": "首頁", "column.lists": "列表", - "column.mutes": "已靜音的使用者", + "column.mutes": "已靜音使用者", "column.notifications": "推播通知", "column.pins": "釘選的嘟文", "column.public": "聯邦時間軸", @@ -141,9 +141,9 @@ "column_header.show_settings": "顯示設定", "column_header.unpin": "取消釘選", "column_subheading.settings": "設定", - "community.column_settings.local_only": "只顯示本站", - "community.column_settings.media_only": "只顯示媒體", - "community.column_settings.remote_only": "只顯示遠端", + "community.column_settings.local_only": "僅顯示本站", + "community.column_settings.media_only": "僅顯示媒體", + "community.column_settings.remote_only": "僅顯示遠端", "compose.language.change": "變更語言", "compose.language.search": "搜尋語言...", "compose.published.body": "發嘟成功。", @@ -151,8 +151,8 @@ "compose.saved.body": "已儲存嘟文。", "compose_form.direct_message_warning_learn_more": "了解更多", "compose_form.encryption_warning": "Mastodon 上的嘟文並未進行端到端加密。請不要透過 Mastodon 分享任何敏感資訊。", - "compose_form.hashtag_warning": "由於這則嘟文設定為非公開,將不會列於任何主題標籤下。只有公開的嘟文才能藉由主題標籤被找到。", - "compose_form.lock_disclaimer": "您的帳號尚未 {locked}。任何人皆能跟隨您並看到您設定成只對跟隨者顯示的嘟文。", + "compose_form.hashtag_warning": "由於這則嘟文設定為「不公開」,它將不被列於任何主題標籤下。只有公開的嘟文才能藉由主題標籤被找到。", + "compose_form.lock_disclaimer": "您的帳號尚未 {locked}。任何人皆能跟隨您並看到您設定成僅有跟隨者可見的嘟文。", "compose_form.lock_disclaimer.lock": "上鎖", "compose_form.placeholder": "正在想些什麼嗎?", "compose_form.poll.duration": "投票期限", @@ -187,7 +187,7 @@ "confirmations.logout.title": "您確定要登出嗎?", "confirmations.mute.confirm": "靜音", "confirmations.redraft.confirm": "刪除並重新編輯", - "confirmations.redraft.message": "您確定要刪除這則嘟文並重新編輯嗎?您將失去這則嘟文之轉嘟及最愛,且對此嘟文之回覆會變成獨立的嘟文。", + "confirmations.redraft.message": "您確定要刪除這則嘟文並重新編輯嗎?您將失去此嘟文之轉嘟及最愛,且對原嘟文之回覆將變成獨立嘟文。", "confirmations.redraft.title": "是否刪除並重新編輯該嘟文?", "confirmations.reply.confirm": "回覆", "confirmations.reply.message": "回覆嘟文將覆蓋掉您目前正在撰寫之嘟文內容。您是否仍要繼續?", @@ -206,7 +206,7 @@ "copypaste.copied": "已複製", "copypaste.copy_to_clipboard": "複製到剪貼簿", "directory.federated": "來自已知聯邦宇宙", - "directory.local": "僅來自 {domain} 網域", + "directory.local": "僅來自 {domain}", "directory.new_arrivals": "新人", "directory.recently_active": "最近活躍", "disabled_account_banner.account_settings": "帳號設定", @@ -223,9 +223,9 @@ "domain_block_modal.they_cant_follow": "來自此伺服器之使用者將無法跟隨您。", "domain_block_modal.they_wont_know": "他們不會知道他們已被封鎖。", "domain_block_modal.title": "是否封鎖該網域?", - "domain_block_modal.you_will_lose_num_followers": "您將會失去 {followersCount, plural, other {{followersCountDisplay} 個跟隨者}} 與 {followingCount, plural, other {{followingCountDisplay} 個您跟隨之帳號}}.", + "domain_block_modal.you_will_lose_num_followers": "您將失去 {followersCount, plural, other {{followersCountDisplay} 個跟隨者}} 與 {followingCount, plural, other {{followingCountDisplay} 個您跟隨之帳號}}。", "domain_block_modal.you_will_lose_relationships": "您將失去所有的跟隨者與您自此伺服器跟隨之帳號。", - "domain_block_modal.you_wont_see_posts": "您不會見到來自此伺服器使用者之任何嘟文或推播通知。", + "domain_block_modal.you_wont_see_posts": "您將不會見到來自此伺服器使用者之任何嘟文或推播通知。", "domain_pill.activitypub_lets_connect": "它使您能於 Mastodon 及其他不同的社群應用程式與人連結及互動。", "domain_pill.activitypub_like_language": "ActivityPub 像是 Mastodon 與其他社群網路溝通時所用的語言。", "domain_pill.server": "伺服器", @@ -239,7 +239,7 @@ "domain_pill.your_handle": "您的帳號:", "domain_pill.your_server": "您數位世界的家,您所有的嘟文都在這裡。不喜歡這台伺服器嗎?您能隨時搬家至其他伺服器並且仍保有您的跟隨者。", "domain_pill.your_username": "您於您的伺服器中獨一無二的識別。於不同的伺服器上可能找到具有相同帳號的使用者。", - "embed.instructions": "若您欲於您的網站嵌入此嘟文,請複製以下程式碼。", + "embed.instructions": "請複製以下程式碼以於您的網站嵌入此嘟文。", "embed.preview": "它將顯示成這樣:", "emoji_button.activity": "活動", "emoji_button.clear": "清除", @@ -260,7 +260,7 @@ "empty_column.account_suspended": "帳號已被停權", "empty_column.account_timeline": "這裡還沒有嘟文!", "empty_column.account_unavailable": "無法取得個人檔案", - "empty_column.blocks": "您還沒有封鎖任何使用者。", + "empty_column.blocks": "您尚未封鎖任何使用者。", "empty_column.bookmarked_statuses": "您還沒有新增任何書籤。當您新增書籤時,它將於此顯示。", "empty_column.community": "本站時間軸是空的。快公開嘟些文搶頭香啊!", "empty_column.direct": "您還沒有收到任何私訊。當您私訊別人或收到私訊時,它將於此顯示。", @@ -271,18 +271,18 @@ "empty_column.follow_requests": "您還沒有收到任何跟隨請求。當您收到的跟隨請求時,它將於此顯示。", "empty_column.followed_tags": "您還沒有跟隨任何主題標籤。當您跟隨主題標籤時,它們將於此顯示。", "empty_column.hashtag": "這個主題標籤下什麼也沒有。", - "empty_column.home": "您的首頁時間軸是空的!跟隨更多人來將它填滿吧!", + "empty_column.home": "您的首頁時間軸是空的!跟隨更多人將它填滿吧!", "empty_column.list": "這份列表下什麼也沒有。當此列表的成員嘟出新的嘟文時,它們將顯示於此。", "empty_column.lists": "您還沒有新增任何列表。當您新增列表時,它將於此顯示。", - "empty_column.mutes": "您尚未靜音任何使用者。", + "empty_column.mutes": "您還沒有靜音任何使用者。", "empty_column.notification_requests": "清空啦!已經沒有任何推播通知。當您收到新推播通知時,它們將依照您的設定於此顯示。", "empty_column.notifications": "您還沒有收到任何推播通知,當您與別人開始互動時,它將於此顯示。", - "empty_column.public": "這裡什麼都沒有!嘗試寫些公開的嘟文,或者跟隨其他伺服器的使用者後,就會有嘟文出現了", + "empty_column.public": "這裡什麼都沒有!嘗試寫些公開的嘟文,或著自己跟隨其他伺服器的使用者後就會有嘟文出現了", "error.unexpected_crash.explanation": "由於發生系統故障或瀏覽器相容性問題,無法正常顯示此頁面。", "error.unexpected_crash.explanation_addons": "此頁面無法被正常顯示,這可能是由瀏覽器附加元件或網頁自動翻譯工具造成的。", - "error.unexpected_crash.next_steps": "請嘗試重新整理頁面。如果狀況沒有改善,您可以使用不同的瀏覽器或應用程式以檢視來使用 Mastodon。", - "error.unexpected_crash.next_steps_addons": "請嘗試關閉它們然後重新整理頁面。如果狀況沒有改善,您可以使用不同的瀏覽器或應用程式來檢視來使用 Mastodon。", - "errors.unexpected_crash.copy_stacktrace": "複製 stacktrace 到剪貼簿", + "error.unexpected_crash.next_steps": "請嘗試重新整理頁面。如果狀況沒有改善,您可以透過不同的瀏覽器或應用程式以使用 Mastodon。", + "error.unexpected_crash.next_steps_addons": "請嘗試關閉它們然後重新整理頁面。如果狀況沒有改善,您可以透過不同的瀏覽器或應用程式以使用 Mastodon。", + "errors.unexpected_crash.copy_stacktrace": "複製 stacktrace 至剪貼簿", "errors.unexpected_crash.report_issue": "回報問題", "explore.search_results": "搜尋結果", "explore.suggested_follows": "使用者", @@ -294,12 +294,12 @@ "filter_modal.added.context_mismatch_title": "不符合情境!", "filter_modal.added.expired_explanation": "此過濾器類別已失效,您需要更新過期日期以套用。", "filter_modal.added.expired_title": "過期的過濾器!", - "filter_modal.added.review_and_configure": "要檢視與進一步設定此過濾器類別,請至 {settings_link}。", + "filter_modal.added.review_and_configure": "如欲檢視與進一步設定此過濾器類別,請至 {settings_link}。", "filter_modal.added.review_and_configure_title": "過濾器設定", "filter_modal.added.settings_link": "設定頁面", "filter_modal.added.short_explanation": "此嘟文已被新增至以下過濾器類別:{title}。", "filter_modal.added.title": "已新增過濾器!", - "filter_modal.select_filter.context_mismatch": "不是用目前情境", + "filter_modal.select_filter.context_mismatch": "不適用目前情境", "filter_modal.select_filter.expired": "已過期", "filter_modal.select_filter.prompt_new": "新類別:{name}", "filter_modal.select_filter.search": "搜尋或新增", @@ -317,13 +317,13 @@ "follow_requests.unlocked_explanation": "即便您的帳號未被鎖定,{domain} 的管理員認為您可能想要自己審核這些帳號的跟隨請求。", "follow_suggestions.curated_suggestion": "精選內容", "follow_suggestions.dismiss": "不再顯示", - "follow_suggestions.featured_longer": "{domain} 團隊精選", + "follow_suggestions.featured_longer": "{domain} 團隊精心挑選", "follow_suggestions.friends_of_friends_longer": "受您跟隨之使用者愛戴的風雲人物", - "follow_suggestions.hints.featured": "這個個人檔案是 {domain} 管理團隊精心挑選的。", - "follow_suggestions.hints.friends_of_friends": "這個個人檔案於您跟隨的帳號中很受歡迎。", - "follow_suggestions.hints.most_followed": "這個個人檔案是 {domain} 中最受歡迎的帳號之一。", - "follow_suggestions.hints.most_interactions": "這個個人檔案最近於 {domain} 受到非常多關注。", - "follow_suggestions.hints.similar_to_recently_followed": "這個個人檔案與您最近跟隨之帳號類似。", + "follow_suggestions.hints.featured": "此個人檔案是 {domain} 管理團隊精心挑選。", + "follow_suggestions.hints.friends_of_friends": "此個人檔案於您跟隨的帳號中很受歡迎。", + "follow_suggestions.hints.most_followed": "此個人檔案是 {domain} 中最受歡迎的帳號之一。", + "follow_suggestions.hints.most_interactions": "此個人檔案最近於 {domain} 受到非常多關注。", + "follow_suggestions.hints.similar_to_recently_followed": "此個人檔案與您最近跟隨之帳號類似。", "follow_suggestions.personalized_suggestion": "個人化推薦", "follow_suggestions.popular_suggestion": "熱門推薦", "follow_suggestions.popular_suggestion_longer": "{domain} 上的人氣王", @@ -349,10 +349,10 @@ "hashtag.column_settings.tag_mode.all": "全部", "hashtag.column_settings.tag_mode.any": "任一", "hashtag.column_settings.tag_mode.none": "全不", - "hashtag.column_settings.tag_toggle": "將額外標籤加入到這個欄位", - "hashtag.counter_by_accounts": "{count, plural, one {{counter} 名} other {{counter} 名}}參與者", - "hashtag.counter_by_uses": "{count, plural, one {{counter} 則} other {{counter} 則}}嘟文", - "hashtag.counter_by_uses_today": "本日有 {count, plural, one {{counter} 則} other {{counter} 則}}嘟文", + "hashtag.column_settings.tag_toggle": "將額外標籤加入至此欄位", + "hashtag.counter_by_accounts": "{count, plural, other {{counter} 名參與者}}", + "hashtag.counter_by_uses": "{count, plural, other {{counter} 則嘟文}}", + "hashtag.counter_by_uses_today": "本日有 {count, plural, other {{counter} 則嘟文}}", "hashtag.follow": "跟隨主題標籤", "hashtag.unfollow": "取消跟隨主題標籤", "hashtags.and_other": "…及其他 {count, plural, other {# 個}}", @@ -365,7 +365,7 @@ "hints.threads.replies_may_be_missing": "來自其他站點之回覆或有缺失。", "hints.threads.see_more": "於 {domain} 檢視更多回覆", "home.column_settings.show_reblogs": "顯示轉嘟", - "home.column_settings.show_replies": "顯示回覆", + "home.column_settings.show_replies": "顯示回嘟", "home.hide_announcements": "隱藏公告", "home.pending_critical_update.body": "請立即升級您的 Mastodon 伺服器!", "home.pending_critical_update.link": "檢視更新內容", @@ -440,10 +440,10 @@ "lightbox.zoom_in": "縮放至實際大小", "lightbox.zoom_out": "縮放至合適大小", "limited_account_hint.action": "一律顯示個人檔案", - "limited_account_hint.title": "此個人檔案已被 {domain} 的管理員隱藏。", + "limited_account_hint.title": "此個人檔案已被 {domain} 之管理員隱藏。", "link_preview.author": "來自 {name}", "link_preview.more_from_author": "來自 {name} 之更多內容", - "link_preview.shares": "{count, plural, other {{count} 則嘟文}}", + "link_preview.shares": "{count, plural, other {{counter} 則嘟文}}", "lists.account.add": "新增至列表", "lists.account.remove": "自列表中移除", "lists.delete": "刪除列表", @@ -452,7 +452,7 @@ "lists.exclusive": "於首頁時間軸隱藏這些嘟文", "lists.new.create": "新增列表", "lists.new.title_placeholder": "新列表標題", - "lists.replies_policy.followed": "任何跟隨的使用者", + "lists.replies_policy.followed": "任何已跟隨之使用者", "lists.replies_policy.list": "列表成員", "lists.replies_policy.none": "沒有人", "lists.replies_policy.title": "顯示回覆:", @@ -464,17 +464,17 @@ "moved_to_account_banner.text": "您的帳號 {disabledAccount} 目前已停用,因為您已搬家至 {movedToAccount}。", "mute_modal.hide_from_notifications": "於推播通知中隱藏", "mute_modal.hide_options": "隱藏選項", - "mute_modal.indefinite": "直到我解除靜音他們", + "mute_modal.indefinite": "直到我解除靜音", "mute_modal.show_options": "顯示選項", "mute_modal.they_can_mention_and_follow": "他們仍可提及或跟隨您,但您不會見到他們。", "mute_modal.they_wont_know": "他們不會知道他們已被靜音。", "mute_modal.title": "是否靜音該使用者?", - "mute_modal.you_wont_see_mentions": "您不會見到提及他們的嘟文。", - "mute_modal.you_wont_see_posts": "他們仍可讀取您的嘟文,但您不會見到他們的。", + "mute_modal.you_wont_see_mentions": "您將不會見到提及他們的嘟文。", + "mute_modal.you_wont_see_posts": "他們仍可讀取您的嘟文,但您不會見到他們的嘟文。", "navigation_bar.about": "關於", "navigation_bar.administration": "管理介面", "navigation_bar.advanced_interface": "以進階網頁介面開啟", - "navigation_bar.blocks": "已封鎖的使用者", + "navigation_bar.blocks": "已封鎖使用者", "navigation_bar.bookmarks": "書籤", "navigation_bar.community_timeline": "本站時間軸", "navigation_bar.compose": "撰寫新嘟文", @@ -524,7 +524,7 @@ "notification.moderation_warning.action_disable": "您的帳號已被停用。", "notification.moderation_warning.action_mark_statuses_as_sensitive": "某些您的嘟文已被標記為敏感內容。", "notification.moderation_warning.action_none": "您的帳號已收到管理員警告。", - "notification.moderation_warning.action_sensitive": "即日起,您的嘟文將會被標記為敏感內容。", + "notification.moderation_warning.action_sensitive": "即日起,您的嘟文將被標記為敏感內容。", "notification.moderation_warning.action_silence": "您的帳號已被限制。", "notification.moderation_warning.action_suspend": "您的帳號已被停權。", "notification.own_poll": "您的投票已結束", @@ -541,11 +541,11 @@ "notification_requests.accept": "接受", "notification_requests.accept_multiple": "{count, plural, other {接受 # 則請求...}}", "notification_requests.confirm_accept_multiple.button": "{count, plural, other {接受請求}}", - "notification_requests.confirm_accept_multiple.message": "您將接受 {count, plural, other {# 則推播通知請求}}。您確定要繼續?", - "notification_requests.confirm_accept_multiple.title": "接受推播通知請求?", + "notification_requests.confirm_accept_multiple.message": "您將接受 {count, plural, other {# 則推播通知請求}}。您確定要繼續嗎?", + "notification_requests.confirm_accept_multiple.title": "是否接受推播通知請求?", "notification_requests.confirm_dismiss_multiple.button": "{count, plural, other {忽略請求}}", - "notification_requests.confirm_dismiss_multiple.message": "您將忽略 {count, plural, other {# 則推播通知請求}}。您將不再能輕易存取{count, plural, other {這些}}推播通知。您確定要繼續?", - "notification_requests.confirm_dismiss_multiple.title": "忽略推播通知請求?", + "notification_requests.confirm_dismiss_multiple.message": "您將忽略 {count, plural, other {# 則推播通知請求}}。您將不再能輕易存取{count, plural, other {這些}}推播通知。您確定要繼續嗎?", + "notification_requests.confirm_dismiss_multiple.title": "是否忽略推播通知請求?", "notification_requests.dismiss": "關閉", "notification_requests.dismiss_multiple": "{count, plural, other {忽略 # 則請求...}}", "notification_requests.edit_selection": "編輯", @@ -602,7 +602,7 @@ "notifications.policy.filter_limited_accounts_title": "受管制帳號", "notifications.policy.filter_new_accounts.hint": "新增於過去 {days, plural, other {# 日}}", "notifications.policy.filter_new_accounts_title": "新帳號", - "notifications.policy.filter_not_followers_hint": "包含最近 {days, plural, other {# 日}} 內跟隨您之使用者", + "notifications.policy.filter_not_followers_hint": "包含最近 {days, plural, other {# 日}}內跟隨您之使用者", "notifications.policy.filter_not_followers_title": "未跟隨您之使用者", "notifications.policy.filter_not_following_hint": "直至您手動核准他們", "notifications.policy.filter_not_following_title": "您未跟隨之使用者", @@ -670,7 +670,7 @@ "privacy.private.short": "跟隨者", "privacy.public.long": "所有人 (無論在 Mastodon 上與否)", "privacy.public.short": "公開", - "privacy.unlisted.additional": "此與公開嘟文完全相同,但嘟文不會出現於即時內容或主題標籤、探索、及 Mastodon 搜尋中,即使您在帳戶設定中選擇加入。", + "privacy.unlisted.additional": "此與公開嘟文完全相同,但嘟文不會出現於即時內容或主題標籤、探索、及 Mastodon 搜尋中,即使您於帳戶設定中選擇加入。", "privacy.unlisted.long": "悄然無聲", "privacy.unlisted.short": "不公開", "privacy_policy.last_updated": "最後更新:{date}", @@ -694,7 +694,7 @@ "reply_indicator.cancel": "取消", "reply_indicator.poll": "投票", "report.block": "封鎖", - "report.block_explanation": "您將不再看到他們的嘟文。他們將無法看到您的嘟文或是跟隨您。他們會發現他們已被封鎖。", + "report.block_explanation": "您將不再看到他們的嘟文。他們將無法檢視您的嘟文或是跟隨您。他們會發現他們已被封鎖。", "report.categories.legal": "合法性", "report.categories.other": "其他", "report.categories.spam": "垃圾訊息", @@ -708,7 +708,7 @@ "report.forward": "轉寄到 {target}", "report.forward_hint": "這個帳號屬於其他伺服器。要向該伺服器發送匿名的檢舉訊息嗎?", "report.mute": "靜音", - "report.mute_explanation": "您將不再看到他們的嘟文。他們仍能可以跟隨您以及察看您的嘟文,並且不會知道他們已被靜音。", + "report.mute_explanation": "您將不再看到他們的嘟文。他們仍能可以跟隨您以及檢視您的嘟文,並且不會知道他們已被靜音。", "report.next": "繼續", "report.placeholder": "其他備註", "report.reasons.dislike": "我不喜歡", @@ -733,7 +733,7 @@ "report.thanks.title_actionable": "感謝您的檢舉,我們將會著手處理。", "report.unfollow": "取消跟隨 @{name}", "report.unfollow_explanation": "您正在跟隨此帳號。如不欲於首頁時間軸再見到他們的嘟文,請取消跟隨。", - "report_notification.attached_statuses": "{count, plural, one {{count} 則} other {{count} 則}} 嘟文", + "report_notification.attached_statuses": "已附加 {count, plural, other {{count} 則嘟文}}", "report_notification.categories.legal": "合法性", "report_notification.categories.legal_sentence": "違法內容", "report_notification.categories.other": "其他", @@ -752,7 +752,7 @@ "search.quick_action.status_search": "符合的嘟文 {x}", "search.search_or_paste": "搜尋或輸入網址", "search_popout.full_text_search_disabled_message": "{domain} 上無法使用。", - "search_popout.full_text_search_logged_out_message": "僅於登入時能使用。", + "search_popout.full_text_search_logged_out_message": "功能僅限登入後使用。", "search_popout.language_code": "ISO 語言代碼 (ISO language code)", "search_popout.options": "搜尋選項", "search_popout.quick_actions": "快捷操作", @@ -791,10 +791,10 @@ "status.direct_indicator": "私訊", "status.edit": "編輯", "status.edited": "上次編輯於 {date}", - "status.edited_x_times": "已編輯 {count, plural, one {{count} 次} other {{count} 次}}", + "status.edited_x_times": "已編輯 {count, plural, other {{count} 次}}", "status.embed": "取得嵌入程式碼", "status.favourite": "最愛", - "status.favourites": "{count, plural, other {則最愛}}", + "status.favourites": "{count, plural, other {{counter} 則最愛}}", "status.filter": "過濾此嘟文", "status.history.created": "{name} 於 {date} 建立", "status.history.edited": "{name} 於 {date} 修改", @@ -813,7 +813,7 @@ "status.reblog": "轉嘟", "status.reblog_private": "依照原嘟可見性轉嘟", "status.reblogged_by": "{name} 已轉嘟", - "status.reblogs": "{count, plural, other {則轉嘟}}", + "status.reblogs": "{count, plural, other {{counter} 則轉嘟}}", "status.reblogs.empty": "還沒有人轉嘟過這則嘟文。當有人轉嘟時,它們將於此顯示。", "status.redraft": "刪除並重新編輯", "status.remove_bookmark": "自書籤中移除", @@ -839,11 +839,11 @@ "tabs_bar.home": "首頁", "tabs_bar.notifications": "通知", "time_remaining.days": "剩餘 {number, plural, other {# 天}}", - "time_remaining.hours": "剩餘{number, plural, other {# 小時}}", - "time_remaining.minutes": "剩餘{number, plural, other {# 分鐘}}", + "time_remaining.hours": "剩餘 {number, plural, other {# 小時}}", + "time_remaining.minutes": "剩餘 {number, plural, other {# 分鐘}}", "time_remaining.moments": "剩餘時間", - "time_remaining.seconds": "剩餘{number, plural, other {# 秒}}", - "trends.counter_by_accounts": "{count, plural, one {{counter} 人} other {{counter} 人}}於過去 {days, plural, one {日} other {{days} 日}} 之間", + "time_remaining.seconds": "剩餘 {number, plural, other {# 秒}}", + "trends.counter_by_accounts": "{count, plural, other {{counter} 人}}於過去 {days, plural, other {{days} 日}}之間", "trends.trending_now": "現正熱門趨勢", "ui.beforeunload": "如果離開 Mastodon,您的草稿將會不見。", "units.short.billion": "{count}B", @@ -855,7 +855,7 @@ "upload_error.poll": "不允許於投票時上傳檔案。", "upload_form.audio_description": "為聽覺障礙人士增加文字說明", "upload_form.description": "為視覺障礙人士增加文字說明", - "upload_form.drag_and_drop.instructions": "請按空白鍵或 Enter 鍵取多媒體附加檔案。使用方向鍵移動多媒體附加檔案。按下空白鍵或 Enter 鍵於新位置放置多媒體附加檔案,或按下 ESC 鍵取消。", + "upload_form.drag_and_drop.instructions": "請按空白鍵或 Enter 鍵選取多媒體附加檔案。使用方向鍵移動多媒體附加檔案。按下空白鍵或 Enter 鍵於新位置放置多媒體附加檔案,或按下 ESC 鍵取消。", "upload_form.drag_and_drop.on_drag_cancel": "移動已取消。多媒體附加檔案 {item} 已被放置。", "upload_form.drag_and_drop.on_drag_end": "多媒體附加檔案 {item} 已被放置。", "upload_form.drag_and_drop.on_drag_over": "多媒體附加檔案 {item} 已被移動。", diff --git a/config/locales/activerecord.de.yml b/config/locales/activerecord.de.yml index b4bcd660d8..b21dd4febe 100644 --- a/config/locales/activerecord.de.yml +++ b/config/locales/activerecord.de.yml @@ -4,7 +4,7 @@ de: attributes: poll: expires_at: Abstimmungsende - options: Auswahlmöglichkeiten + options: Auswahlfelder user: agreement: Service-Vereinbarung email: E-Mail-Adresse @@ -46,7 +46,7 @@ de: user: attributes: email: - blocked: verwendet einen unerlaubten E-Mail-Anbieter + blocked: verwendet einen unerlaubten E-Mail-Provider unreachable: scheint nicht zu existieren role_id: elevated: kann nicht höher als deine derzeitige Rolle sein diff --git a/config/locales/activerecord.en-GB.yml b/config/locales/activerecord.en-GB.yml index 72edf5e02f..44e5e158e3 100644 --- a/config/locales/activerecord.en-GB.yml +++ b/config/locales/activerecord.en-GB.yml @@ -7,7 +7,7 @@ en-GB: options: Choices user: agreement: Service agreement - email: E-mail address + email: Email address locale: Locale password: Password user/account: @@ -25,7 +25,7 @@ en-GB: account: attributes: username: - invalid: must contain only letters, numbers and underscores + invalid: must contain only letters, numbers, and underscores reserved: is reserved admin/webhook: attributes: @@ -46,7 +46,7 @@ en-GB: user: attributes: email: - blocked: uses a disallowed e-mail provider + blocked: uses a disallowed email provider unreachable: does not seem to exist role_id: elevated: cannot be higher than your current role @@ -62,4 +62,4 @@ en-GB: webhook: attributes: events: - invalid_permissions: cannot include events you don't have the rights to + invalid_permissions: cannot include events to which you don't have the rights diff --git a/config/locales/activerecord.es-AR.yml b/config/locales/activerecord.es-AR.yml index ba4d148c8b..2b7455d583 100644 --- a/config/locales/activerecord.es-AR.yml +++ b/config/locales/activerecord.es-AR.yml @@ -25,7 +25,7 @@ es-AR: account: attributes: username: - invalid: sólo letras, números y subguiones ("_") + invalid: solo letras, números y subguiones ("_") reserved: está reservado admin/webhook: attributes: diff --git a/config/locales/activerecord.fr.yml b/config/locales/activerecord.fr.yml index 6e85ec8241..442296fa7b 100644 --- a/config/locales/activerecord.fr.yml +++ b/config/locales/activerecord.fr.yml @@ -3,7 +3,7 @@ fr: activerecord: attributes: poll: - expires_at: Date d'expiration + expires_at: Date d'échéance options: Choix user: agreement: Contrat de service @@ -25,7 +25,7 @@ fr: account: attributes: username: - invalid: seulement des lettres, des chiffres et des tirets bas + invalid: doit contenir uniquement des lettres, chiffres et tirets bas reserved: est réservé admin/webhook: attributes: diff --git a/config/locales/activerecord.lad.yml b/config/locales/activerecord.lad.yml index 8fd23b53fe..c4166c1164 100644 --- a/config/locales/activerecord.lad.yml +++ b/config/locales/activerecord.lad.yml @@ -20,6 +20,7 @@ lad: invalid: no es un nombre de domeno valido messages: invalid_domain_on_line: "%{value} no es un nombre de domeno valido" + too_many_lines: eksede el limito de %{limit} linyas models: account: attributes: diff --git a/config/locales/activerecord.lt.yml b/config/locales/activerecord.lt.yml index 823d7ed2d2..48fb0bab20 100644 --- a/config/locales/activerecord.lt.yml +++ b/config/locales/activerecord.lt.yml @@ -6,7 +6,7 @@ lt: expires_at: Galutinė data options: Pasirinkimai user: - agreement: Paslaugos sutartis + agreement: Paslaugų sąlygos email: El. laiško adresas locale: Lokali password: Slaptažodis diff --git a/config/locales/activerecord.ms.yml b/config/locales/activerecord.ms.yml index 88bbe8dfe6..ffe8cc7cca 100644 --- a/config/locales/activerecord.ms.yml +++ b/config/locales/activerecord.ms.yml @@ -15,7 +15,11 @@ ms: user/invite_request: text: Sebab errors: + attributes: + domain: + invalid: bukanlah nama domain yang sah messages: + invalid_domain_on_line: "%{value} bukanlah nama domain yang sah" too_many_lines: is over the limit of %{limit} lines models: account: diff --git a/config/locales/activerecord.nan-TW.yml b/config/locales/activerecord.nan-TW.yml new file mode 100644 index 0000000000..7f5b64f646 --- /dev/null +++ b/config/locales/activerecord.nan-TW.yml @@ -0,0 +1,16 @@ +--- +nan-TW: + activerecord: + attributes: + poll: + expires_at: 期限 + options: 選項 + user: + agreement: 服務協議 + email: 電子phue地址 + locale: 在地化 + password: 密碼 + user/account: + username: 用者ê名 + user/invite_request: + text: 原因 diff --git a/config/locales/activerecord.no.yml b/config/locales/activerecord.no.yml index b79a5bcccb..14217de04b 100644 --- a/config/locales/activerecord.no.yml +++ b/config/locales/activerecord.no.yml @@ -18,6 +18,8 @@ attributes: domain: invalid: er ikke et gyldig domenenavn + messages: + too_many_lines: er over grensen på %{limit} linjer models: account: attributes: diff --git a/config/locales/be.yml b/config/locales/be.yml index 51f0693cc9..c5985900ea 100644 --- a/config/locales/be.yml +++ b/config/locales/be.yml @@ -1588,7 +1588,7 @@ be: subject: Апытанне ад %{name} скончылася reblog: body: "%{name} пашырыў(-ла) Ваш допіс:" - subject: "%{name} пашырыў ваш допіс" + subject: "%{name} пашырыў(-ла) Ваш допіс" title: Новае пашырэнне status: subject: Новы допіс ад %{name} @@ -1610,7 +1610,7 @@ be: trillion: трлн otp_authentication: code_hint: Каб пацвердзіць, увядзіце код, згенераваны праграмай-аўтэнтыфікатарам - description_html: Калі вы ўключыце двухфактарную аўтэнтыфікацыю праз праграму-аўтэнтыфікатар, то каб увайсці ва ўліковы запіс, вам трэба мець тэлефон, які будзе генераваць токены для ўводу. + description_html: Калі вы ўключыце двухфактарную аўтэнтыфікацыю праз праграму-аўтэнтыфікатар, то для ўваходу ва ўліковы запіс вам трэба будзе мець тэлефон, які будзе генераваць токены для ўводу. enable: Уключыць instructions_html: "Скануйце гэты QR-код у Google Authenticator або ў аналагічнай TOTP-праграме на вашым тэлефоне. З гэтага моманту праграма будзе генераваць токены, якія вам трэба будзе ўводзіць пры ўваходзе ва ўліковы запіс." manual_instructions: 'Калі вы не можаце сканаваць QR-код і трэба ўвесці яго ўручную, вось ключ у форме тэксту:' @@ -1793,7 +1793,7 @@ be: many: "%{count} відэафайлаў" one: "%{count} відэафайл" other: "%{count} відэафайла" - boosted_from_html: Пашырыў уліковы запіс %{acct_link} + boosted_from_html: Пашырыў(-ла) з %{acct_link} content_warning: 'Папярэджанне аб змесціве: %{warning}' default_language: Такая, што і мова інтэрфэйсу disallowed_hashtags: diff --git a/config/locales/br.yml b/config/locales/br.yml index cea6d2a020..83d2e7647f 100644 --- a/config/locales/br.yml +++ b/config/locales/br.yml @@ -302,6 +302,7 @@ br: already_suspended_badges: local: Astalet endeo war ar servijer-mañ are_you_sure: Ha sur oc'h? + cancel: Nullañ comment: none: Hini ebet confirm: Kadarnaat @@ -346,6 +347,7 @@ br: view_devops: DevOps title: Rolloù rules: + add_new: Ouzhpennañ ur reolenn delete: Dilemel edit: Kemmañ ar reolenn title: Reolennoù ar servijer @@ -378,6 +380,7 @@ br: version: Handelv statuses: account: Aozer·ez + application: Arload batch: report: Disklêriañ deleted: Dilamet @@ -418,6 +421,7 @@ br: upload_check_privacy_error_object_storage: action: Gwelet amañ evit kaout muioc'h a ditouroù tags: + name: Anv search: Klask title: Gerioù-klik title: Merañ @@ -504,6 +508,8 @@ br: rules: title_invited: Pedet oc'h bet. security: Diogelroez + sign_in: + title: Kevreañ ouzh %{domain} status: account_status: Statud ar gont challenge: @@ -530,6 +536,7 @@ br: x_seconds: "%{count}eil" deletes: proceed: Dilemel ar gont + success_msg: Ho kont a zo bet dilamet gant berzh disputes: strikes: appeal: Ober engalv @@ -576,6 +583,7 @@ br: title: Toudoù silet generic: all: Pep tra + cancel: Nullañ changes_saved_msg: Enrollet eo bet ar cheñchamantoù gant berzh! confirm: Kadarnaat copy: Eilañ @@ -730,10 +738,17 @@ br: platforms: adobe_air: Adobe Air android: Android + blackberry: BlackBerry + chrome_os: ChromeOS + firefox_os: Firefox OS ios: iOS + kai_os: KaiOS linux: Linux mac: macOS + unknown_platform: Savenn dianav windows: Windows + windows_mobile: Windows Mobile + windows_phone: Windows Phone revoke: Dizober settings: account: Kont diff --git a/config/locales/cs.yml b/config/locales/cs.yml index 40858d2869..c3728dfedf 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -803,7 +803,7 @@ cs: public_timelines: Veřejné časové osy publish_discovered_servers: Zveřejnit objevené servery publish_statistics: Zveřejnit statistiku - title: Objevujte + title: Objevování trends: Trendy domain_blocks: all: Všem diff --git a/config/locales/cy.yml b/config/locales/cy.yml index 0798aa73e9..91590a26c6 100644 --- a/config/locales/cy.yml +++ b/config/locales/cy.yml @@ -22,12 +22,12 @@ cy: pin_errors: following: Rhaid i chi fod yn dilyn y person rydych am ei gymeradwyo, yn barod posts: - few: Postiadau - many: Postiadau + few: Postiad + many: Postiad one: Postiad - other: Postiadau - two: Postiadau - zero: Postiadau + other: Postiad + two: Bostiad + zero: Postiad posts_tab_heading: Postiadau self_follow_error: Chewch chi ddim dilyn eich cyfrif eich hun admin: diff --git a/config/locales/da.yml b/config/locales/da.yml index 50e58179e5..b560c8cef5 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -66,7 +66,7 @@ da: disabled: Frosset display_name: Visningsnavn domain: Domæne - edit: Redigere + edit: Rediger email: E-mail email_status: E-mailstatus enable: Optø @@ -410,7 +410,7 @@ da: create: Opret blokering hint: Domæneblokeringen vil ikke forhindre oprettelse af kontoposter i databasen, men vil retroaktivt og automatisk føje særlige moderationsmetoder til disse konti. severity: - desc_html: "Begræns gør indlæg fra konti på dette domæne usynlige for alle ikke-følger. Suspendér fjerner alt indhold, medier og profildata for dette domænes konti fra serveren. Brug Ingen, hvis man blot vil afvise mediefiler." + desc_html: "Begræns gør indlæg fra konti på dette domæne usynlige for alle, der ikke følger dem. Suspendér fjerner alt indhold, medier og profildata for dette domænes konti fra din server. Brug Ingen, hvis du kun vil afvise mediefiler." noop: Ingen silence: Begræns suspend: Suspendere @@ -456,7 +456,7 @@ da: no_file: Ingen fil valgt export_domain_blocks: import: - description_html: En liste over domæneblokeringer er ved at blive importeret. Gennemgå listen meget nøje, især hvis man ikke selv har oprettet den. + description_html: Du er ved at importere en liste over domæneblokeringer. Gennemgå denne liste meget omhyggeligt, især hvis du ikke selv har udarbejdet den. existing_relationships_warning: Eksisterende følge-relationer private_comment_description_html: 'For at man lettere kan holde styr på, hvorfra importerede blokeringer kommer, oprettes disse med flg. private kommentar: %{comment}' private_comment_template: Importeret fra %{source} d. %{date} @@ -536,7 +536,7 @@ da: private_comment: Privat kommentar public_comment: Offentlig kommentar purge: Udrens - purge_description_html: Antages dette domæne at være offline permanent, kan alle kontooptegnelser og tilknyttede data herfra slettes fra ens lagerplads. Dette kan tage et stykke tid. + purge_description_html: Hvis du antager, at dette domæne er permanent offline, kan du slette alle kontooplysninger og tilknyttede data fra dette domæne fra din lagerplads. Dette kan tage et stykke tid. title: Federering total_blocked_by_us: Blokeret af os total_followed_by_them: Følges af dem @@ -577,7 +577,7 @@ da: disable: Deaktivér disabled: Deaktiveret enable: Aktivér - enable_hint: Når aktiveret, vil serveren abonnere på alle offentlige indlæg fra denne videreformidler og vil begynde at sende denne servers offentlige indlæg til den. + enable_hint: Når aktiveret, vil din server abonnere på alle offentlige indlæg fra denne videreformidler og vil begynde at sende denne servers offentlige indlæg til den. enabled: Aktiveret inbox_url: Videreformidler-URL pending: Afventer videreformidlers godkendelse @@ -690,7 +690,7 @@ da: moderation: Moderering special: Speciel delete: Slet - description_html: Med brugerroller kan man tilpasse sine brugeres adgang til Mastodon-funktioner og -områder. + description_html: Med brugerroller kan du tilpasse, hvilke funktioner og områder af Mastodon dine brugere har adgang til. edit: Redigér rolle for '%{name} everyone: Standardtilladelser everyone_full_description_html: Dette er basisrollen med indvirkning på alle brugere, selv dem uden rolletildeling. Alle øvrige rolletilladelser nedarves herfra. @@ -750,13 +750,13 @@ da: about: manage_rules: Håndtér serverregler preamble: Giv dybdegående oplysninger om, hvordan serveren opereres, modereres, finansieres. - rules_hint: Der er et dedikeret område for regler, som forventes overholdt af brugerne. + rules_hint: Der er et dedikeret område for regler, som forventes overholdt af dine brugere. title: Om appearance: preamble: Tilpas Mastodon-webgrænsefladen. title: Udseende branding: - preamble: Serverens branding adskiller den fra andres i netværket. Oplysningerne kan vises på tværs af div. miljøer, såsom Mastodon-webgrænsefladen, dedikerede applikationer, i-link forhåndsvisninger på andre websteder og i besked-apps mv. Oplysningerne bør derfor være klare og detaljerede, men samtidig kortfattede. + preamble: Din servers branding adskiller den fra andres i netværket. Oplysningerne kan vises på tværs af div. miljøer, såsom Mastodon-webgrænsefladen, dedikerede applikationer, i link-forhåndsvisninger på andre websteder og i besked-apps mv. Oplysningerne bør derfor være klare, kortefattede og præcise. title: Branding captcha_enabled: desc_html: Dette er afhængig af eksterne scripts fra hCaptcha, som kan være en sikkerhed og privatlivets fred. Derudover kan dette gøre registreringsprocessen betydeligt mindre tilgængelig for nogle (især deaktiveret) personer. Af disse grunde bedes De overveje alternative foranstaltninger såsom godkendelsesbaseret eller inviteret til at blive registreret. @@ -783,14 +783,14 @@ da: users: Til indloggede lokale brugere registrations: moderation_recommandation: Sørg for, at der er et tilstrækkeligt og reaktivt moderationsteam, før registrering åbnes for alle! - preamble: Styr, hvem der kan oprette en konto på serveren. + preamble: Styr, hvem der kan oprette en konto på din server. title: Registreringer registrations_mode: modes: approved: Tilmeldingsgodkendelse kræves none: Ingen kan tilmelde sig open: Alle kan tilmelde sig - warning_hint: Brug af "Godkendelse kræves ved tilmelding" anbefales, medmindre man er sikker på, at moderationsteamet kan håndtere spam og ondsindede registreringer i tide. + warning_hint: Vi anbefaler brug af "Godkendelse kræves ved tilmelding", medmindre du er sikker på, at moderationsteamet kan håndtere spam og ondsindede registreringer i tide. security: authorized_fetch: Kræver godkendelse fra fødererede servere authorized_fetch_hint: Krav om godkendelse fra fødererede servere muliggør strengere håndhævelse af både bruger- og serverniveaublokeringer. Omkostningen er dog en ydelsesreduktion, reduceret udstrækning af dine svar samt potentielle kompatibilitetsproblemer med visse fødererede tjenester. Derudover vil dette ikke hindre målrettede aktører i at hente dine offentlige indlæg og konti. @@ -802,7 +802,7 @@ da: destroyed_msg: Websteds-upload blev slettet! software_updates: critical_update: Kritisk – opdatér hurtigst muligt - description: Det anbefales at holde Mastodon-installationen opdateret for at drage fordel af de seneste fejlrettelser og funktioner. Undertiden kan det desuden være kritisk at opdatere Mastodon rettidigt for at undgå sikkerhedsproblemer. Mastodon tjekker derfor for opdateringer hvert 30. minut og notificerer brugeren jf. dennes e-mailnotifikationsindstillinger. + description: Det anbefales at holde din Mastodon-installation opdateret for at drage fordel af de nyeste fejlrettelser og funktioner. Desuden er det nogle gange afgørende at opdatere Mastodon rettidigt for at undgå sikkerhedsproblemer. Af disse grunde tjekker Mastodon for opdateringer hvert 30. minut og giver dig besked i henhold til dine præferencer for e-mail-notifikationer. documentation_link: Læs mere release_notes: Udgivelsesnoter title: Tilgængelige opdateringer @@ -925,7 +925,7 @@ da: confirm_allow_provider: Sikker på, at de valgte udbydere skal tillades? confirm_disallow: Sikker på, at de valgte links ikke skal tillades? confirm_disallow_provider: Sikker på, at de valgte udbydere ikke skal tillades? - description_html: Disse er links, som pt. deles meget af konti, som serveren ser indlæg fra. Det kan hjælpe ens brugere med at finde ud af, hvad der sker i verden. Ingen links vises offentligt, før man godkender udgiveren. Man kan også tillade/afvise individuelle links. + description_html: Disse er links, som pt. deles meget af konti, som serveren ser indlæg fra. Det kan hjælpe dine brugere med at finde ud af, hvad der sker i verden. Ingen links vises offentligt, før du godkender udgiveren. Du kan også tillade/afvise individuelle links. disallow: Tillad ikke link disallow_provider: Tillad ikke udgiver no_link_selected: Intet link ændret (da intet var valgt) @@ -941,7 +941,7 @@ da: pending_review: Afventer gennemgang preview_card_providers: allowed: Links fra denne udgiver kan trende - description_html: Disse er domæner, hvorfra links ofte deles på serveren. Links vil ikke trende offentligt, medmindre man har godkendt domænet for linket. Godkendelse/afvisning indbefatter underdomæner. + description_html: Dette er domæner, hvorfra links ofte deles på din server. Links vises ikke offentligt, medmindre linkets domæne er godkendt. Din godkendelse (eller afvisning) gælder også for underdomæner. rejected: Links fra denne udgiver vil ikke trende title: Udgivere rejected: Afvist @@ -969,7 +969,7 @@ da: tag_servers_dimension: Topservere tag_servers_measure: forskellige servere tag_uses_measure: anvendelser i alt - description_html: Disse er hashtags, som pt. vises i en masse indlæg, som din server ser. Det kan hjælpe dine brugere til at finde ud af, hvad folk taler mest om pt. Ingen hashtags vises offentligt, før du godkender dem. + description_html: Dette er hashtags, der i øjeblikket vises i mange indlæg, som din server ser. Det kan hjælpe dine brugere med at finde ud af, hvad folk taler mest om i øjeblikket. Ingen hashtags vises offentligt, før du godkender dem. listable: Kan foreslås no_tag_selected: Intet tag ændret (da intet var valgt) not_listable: Foreslås ikke @@ -995,7 +995,7 @@ da: webhooks: add_new: Tilføj endepunkt delete: Slet - description_html: En webhook lader Mastodon pushe notifikationer i realtid om valgte begivenheder til ens egen applikation, så denne automatisk kan udløse reaktioner. + description_html: En webhook lader Mastodon pushe notifikationer i realtid om valgte begivenheder til din egen applikation, så din applikation automatisk kan udløse reaktioner. disable: Deaktivér disabled: Deaktiveret edit: Redigér endepunkt @@ -1042,13 +1042,13 @@ da: body: Nye Mastodon-versioner er udgivet. Opgradering bør overvejes! subject: Nye Mastodon-versioner er tilgængelige til %{instance}! new_trends: - body: 'Flg. emner kræver gennemgang, inden de kan vises offentligt:' + body: 'Følgende elementer skal gennemgås, inden de kan vises offentligt:' new_trending_links: title: Links, der trender new_trending_statuses: title: Indlæg, der trender new_trending_tags: - title: Hashtags, der trender + title: Populære hashtags subject: Nye tendenser klar til gennemgang på %{instance} aliases: add_new: Opret alias @@ -1092,12 +1092,12 @@ da: title: Sikkerhedstjek confirmations: awaiting_review: E-mailadressen er bekræftet! %{domain}-personalet gennemgår nu registreringen. En e-mail fremsendes, såfremt kontoen godkendes! - awaiting_review_title: Registreringen er ved at blive gennemgået + awaiting_review_title: Din registrering er ved at blive gennemgået clicking_this_link: klikke på dette link login_link: log ind proceed_to_login_html: Der kan nu fortsættes til %{login_link}. redirect_to_app_html: En omdirigering til %{app_name}-appen burde være sket. Er det ikke tilfældet, prøv da %{clicking_this_link} eller returnér manuelt til appen. - registration_complete: Registreringen på %{domain} er nu fuldført! + registration_complete: Din registrering på %{domain} er nu fuldført! welcome_title: Velkommen %{name}! wrong_email_hint: Er denne e-mailadresse ikke korrekt, kan den ændres via Kontoindstillinger. delete_account: Slet konto @@ -1146,7 +1146,7 @@ da: email_settings_hint_html: Tryk på det tilsendte link for at bekræfte %{email}. link_not_received: Intet link modtaget? new_confirmation_instructions_sent: Du bør om få minutter modtage en ny e-mail med bekræftelseslinket! - title: Tjek indbakken + title: Tjek din indbakke sign_in: preamble_html: Log ind med dine %{domain}-legitimationsoplysninger. Hostes kontoen på en anden server, vil der ikke kunne logges ind her. title: Log ind på %{domain} @@ -1158,9 +1158,9 @@ da: account_status: Kontostatus confirming: Afventer færdiggørelse af e-mailbekræftelse. functional: Din konto er fuldt funktionel. - pending: Ansøgningen afventer gennemgang af vores personale. Dette kan tage noget tid. Du modtager en e-mail, hvis din ansøgning bliver godkendt. - redirecting_to: Din konto er inaktiv, da den pt. er omdirigerer til %{acct}. - self_destruct: Da %{domain} er under nedlukning, vil kontoadgangen være begrænset. + pending: Din ansøgning afventer gennemgang af vores personale. Dette kan tage noget tid. Du modtager en e-mail, hvis din ansøgning bliver godkendt. + redirecting_to: Din konto er inaktiv, da den i øjeblikket omdirigerer til %{acct}. + self_destruct: Da %{domain} er under nedlukning, vil du kun have begrænset adgang til din konto. view_strikes: Se tidligere anmeldelser af din konto too_fast: Formularen indsendt for hurtigt, forsøg igen. use_security_key: Brug sikkerhedsnøgle @@ -1208,10 +1208,10 @@ da: before: 'Inder der fortsættes, læs venligst disse notater omhyggeligt:' caches: Indhold, cachelagret af andre servere, kan fortsat eksistere data_removal: Dine indlæg og andre data fjernes permanent - email_change_html: Man kan skifte e-mailadresse uden at slette sin konto + email_change_html: Du kan skifte din e-mailadresse uden at slette din konto email_contact_html: Hvis den stadig ikke modtages, send en e-mail til %{email} for hjælp email_reconfirmation_html: Modtages bekræftelsesmailen ikke, kan man anmode om en ny - irreversible: Du vil ikke kunne gendanne/genaktivere din konto + irreversible: Du vil ikke kunne gendanne eller genaktivere din konto more_details_html: For yderligere oplysningerer, tjek privatlivspolitikken. username_available: Dit brugernavn vil blive tilgængeligt igen username_unavailable: Dit brugernavn vil forblive utilgængeligt @@ -1320,7 +1320,7 @@ da: other: "%{count} individuelle indlæg skjult" title: Filtre new: - save: Gem nye filter + save: Gem nyt filter title: Tilføj nyt filter statuses: back_to_filter: Tilbage til filter @@ -1332,23 +1332,23 @@ da: generic: all: Alle all_items_on_page_selected_html: - one: "%{count} emne på denne side er valgt." - other: Alle %{count} emner på denne side er valgt. + one: "%{count} element på denne side er valgt." + other: Alle %{count} elementer på denne side er valgt. all_matching_items_selected_html: - one: "%{count} emne, der matchede søgningen, er valgt." - other: Alle %{count} emner, som matchede søgningen, er valgt. + one: "%{count} element, der matchede din søgning, er valgt." + other: Alle %{count} elementer, som matchede din søgning, er valgt. cancel: Afbryd changes_saved_msg: Ændringerne er gemt! confirm: Bekræft copy: Kopier delete: Slet deselect: Afmarkér alle - none: Intet + none: Ingen order_by: Sortér efter save_changes: Gem ændringer select_all_matching_items: - one: Vælg %{count} emne, der matchede søgningen. - other: Vælg alle %{count} emner, som matchede søgningen. + one: Vælg %{count} element, der matchede din søgning. + other: Vælg alle %{count} elementer, som matchede din søgning. today: i dag validation_errors: one: Noget er ikke er helt i vinkel! Tjek fejlen nedenfor @@ -1370,7 +1370,7 @@ da: overwrite_long: Erstat aktuelle poster med de nye overwrite_preambles: blocking_html: Du er ved at erstatte bloklisten med op til %{total_items} konti fra %{filename}. - bookmarks_html: Du er ved at erstatte bogmærkelisten med op til %{total_items} emner fra %{filename}. + bookmarks_html: Du er ved at erstatte dine bogmærker med op til %{total_items} indlæg fra %{filename}. domain_blocking_html: Du er ved at erstatte domæneblokeringslisten med op til %{total_items} domæner fra %{filename}. following_html: Du er ved at følge op til %{total_items} konti fra %{filename} og stoppe med at følge alle andre. lists_html: Du er ved at erstatte dine lister med indholdet af %{filename}. Op til %{total_items} konti tilføjes nye lister. @@ -1426,13 +1426,13 @@ da: invalid: Denne invitation er ikke gyldig invited_by: 'Du blev inviteret af:' max_uses: - one: 1 benyttelse - other: "%{count} benyttelser" + one: 1 anvendelse + other: "%{count} anvendelser" max_uses_prompt: Ubegrænset prompt: Generér og del links med andre for at give dem adgang til denne server table: expires_at: Udløber - uses: Benyttelser + uses: Anvendelser title: Invitér personer lists: errors: @@ -1443,7 +1443,7 @@ da: password: adgangskode sign_in_token: e-mailsikkerhedskode webauthn: sikkerhedsnøgler - description_html: Bliver der observeret ukendt aktivitet, så overvej at skifte adgangskode samt aktivere tofaktorgodkendelse. + description_html: Hvis du ser aktivitet, som du ikke genkender, bør du overveje at ændre din adgangskode og aktivere tofaktorgodkendelse. empty: Ingen tilgængelig godkendelseshistorik failed_sign_in_html: Mislykket indlogning med %{method} fra %{ip} (%{browser}) successful_sign_in_html: Gennemført indlogning med %{method} fra %{ip} (%{browser}) @@ -1452,7 +1452,7 @@ da: unsubscribe: action: Ja, afmeld complete: Afmeldt - confirmation_html: Sikker på, at %{type} for Mastodon skal afmeldes på %{domain} til e-mailen %{email}? Man kan altid gentilmelde sig via indstillingerne E-mailnotifikationer. + confirmation_html: Er du sikker på, at du vil afmelde modtagelse af %{type} for Mastodon på %{domain} til din e-mail på %{email}? Du kan altid tilmelde dig igen fra dine indstillinger for e-mail-notifikationer. emails: notification_emails: favourite: e-mailnotifikationer om favoritmarkeringer @@ -1460,8 +1460,8 @@ da: follow_request: e-mailnotifikationer om følgeanmodninger mention: e-mailnotifikationer om omtaler reblog: e-mailnotifikationer om fremhævelser - resubscribe_html: Har man afmeldt sig ved en fejl, kan man gentilmelde sig via indstillingerne E-mailnotifikationer. - success_html: Man vil ikke længere modtage %{type} for Mastodon på %{domain} til e-mailen %{email}. + resubscribe_html: Har du afmeldt dig ved en fejl, kan du gentilmelde dig via indstillingerne for e-mail-notifikationer. + success_html: Du vil ikke længere modtage %{type} for Mastodon på %{domain} til din e-mail %{email}. title: Opsig abonnement media_attachments: validations: @@ -1687,7 +1687,7 @@ da: revoke: Tilbagekald revoke_success: Session tilbagekaldt title: Sessioner - view_authentication_history: Vis godkendelseshistorik for kontoen + view_authentication_history: Vis godkendelseshistorik for din konto settings: account: Konto account_settings: Kontoindstillinger @@ -1718,9 +1718,9 @@ da: account_suspension: Kontosuspendering (%{target_name}) domain_block: Serversuspendering (%{target_name}) user_domain_block: "%{target_name} blev blokeret" - lost_followers: Tabte følgere - lost_follows: Mistet følger - preamble: Der kan mistes fulgte objekter og følgere, når et domæne blokeres eller moderatorerne beslutter at suspendere en ekstern server. Når det sker, kan der downloades lister over afbrudte relationer til inspektion og mulig import på anden server. + lost_followers: Mistet følgere + lost_follows: Mistet fulgte + preamble: Du kan miste fulgte og følgere, når du blokerer et domæne, eller når dine moderatorer beslutter at suspendere en fjernserver. Når det sker, kan du downloade lister over afbrudte forhold til inspektion og eventuelt import til en anden server. purged: Oplysninger om denne server er blevet renset af serveradministratoreren. type: Begivenhed statuses: @@ -1737,7 +1737,7 @@ da: other: "%{count} videoer" boosted_from_html: Fremhævet fra %{acct_link} content_warning: 'Indholdsadvarsel: %{warning}' - default_language: Samme som UI-sproget + default_language: Samme som grænsefladesproget disallowed_hashtags: one: 'indeholdte et ikke tilladt hashtag: %{tags}' other: 'indeholdte de ikke tilladte etiketter: %{tags}' @@ -1763,12 +1763,12 @@ da: enabled: Slet automatisk gamle indlæg enabled_hint: Sletter automatisk dine indlæg, når disse når en bestemt alder, medmindre de matcher en af undtagelserne nedenfor exceptions: Undtagelser - explanation: Sletning af indlæg er en ressourcekrævende operation, hvorfor dette sker gradvist over tid, når serveren ellers ikke er optaget. Indlæg kan derfor blive slettet efter, at de reelt har passeret aldersgrænsen. + explanation: Da sletning af indlæg er en kostbar operation, foregår dette langsomt over tid, når serveren ikke er optaget af andre opgaver. Af denne grund kan dine indlæg blive slettet et stykke tid efter, at de har nået alderstærsklen. ignore_favs: Ignorér favoritter ignore_reblogs: Ignorér fremhævelser interaction_exceptions: Undtagelser baseret på interaktioner interaction_exceptions_explanation: Bemærk, at det ikke garanteres, at indlæg slettes, hvis de når under favorit- eller fremhævelses-tærsklerne efter én gang at været nået over dem. - keep_direct: Behold direkte besked + keep_direct: Behold direkte beskeder keep_direct_hint: Sletter ingen af dine direkte beskeder keep_media: Behold indlæg med medievedhæftninger keep_media_hint: Sletter ingen af dine indlæg med medievedhæftninger @@ -1803,7 +1803,7 @@ da: does_not_match_previous_name: matcher ikke det foregående navn themes: contrast: Mastodon (høj kontrast) - default: Mastodont (mørkt) + default: Mastodon (mørkt) mastodon-light: Mastodon (lyst) system: Automatisk (benyt systemtema) time: @@ -1823,11 +1823,11 @@ da: edit: Redigér enabled: Tofaktorgodkendelse aktiveret enabled_success: Tofaktorgodkendelse aktiveret - generate_recovery_codes: Generere gendannelseskoder - lost_recovery_codes: Gendannelseskoder muliggør adgang til din konto, hvis du mister din mobil. Ved mistet gendannelseskoder, kan disse regenerere her. Dine gamle gendannelseskoder ugyldiggøres. + generate_recovery_codes: Generer gendannelseskoder + lost_recovery_codes: Gendannelseskoder giver dig mulighed for at få adgang til din konto igen, hvis du mister din telefon. Hvis du har mistet dine gendannelseskoder, kan du generere dem igen her. Dine gamle gendannelseskoder vil blive ugyldige. methods: Tofaktormetoder otp: Godkendelses-app - recovery_codes: Sikkerhedskopieret gendannelseskoder + recovery_codes: Reserve-gendannelseskoder recovery_codes_regenerated: Gendannelseskoder er regenereret recovery_instructions_html: Mister du nogensinde adgang til din mobil, kan en af gendannelseskoderne nedenfor bruges til at opnå adgang til din konto. Opbevar disse et sikkert sted. De kan f.eks. udskrives og gemmes sammen med andre vigtige dokumenter. webauthn: Sikkerhedsnøgler @@ -1850,14 +1850,14 @@ da: title: Arkiv-download failed_2fa: details: 'Her er detaljerne om login-forsøget:' - explanation: Nogen har forsøgt at logge ind på kontoen, men har angivet en ugyldig anden godkendelsesfaktor. + explanation: Nogen har forsøgt at logge ind på din konto, men har angivet en ugyldig anden godkendelsesfaktor. further_actions_html: Var dette ikke dig, anbefales det straks at %{action}, da den kan være kompromitteret. subject: Anden faktor godkendelsesfejl title: Fejlede på anden faktor godkendelse suspicious_sign_in: change_password: ændrer din adgangskode details: 'Her er nogle detaljer om login-forsøget:' - explanation: Indlogning på din konto fra en ny IP-adresse detekteret. + explanation: Vi har registreret en indlogning på din konto fra en ny IP-adresse. further_actions_html: Hvis dette ikke var dig, anbefaler vi, at du %{action} med det samme og aktiverer to-faktor godkendelse for at holde din konto sikker. subject: Din konto er blevet tilgået fra en ny IP-adresse title: Ny indlogning @@ -1872,8 +1872,8 @@ da: disable: Du kan ikke længere anvende din konto, men profilen og øvrige data er intakte. Du kan anmode om en sikkerhedskopi af dine data, ændre kontoindstillinger eller slette kontoen. mark_statuses_as_sensitive: Nogle af dine indlæg er blevet markeret som sensitive af %{instance}-moderatorerne. Det betyder, at folk er nødt til at trykke på medierne i indlæggene, før en forhåndsvisning vises. Du kan selv markere medier som sensitive i fremtidige indlæg. sensitive: Fra nu af vil alle dine uploadede mediefiler blive markeret som sensitive og skjult bag en klik-igennem advarsel. - silence: Din konto kan stadig anvendes, men dine indlæg vil kunne ses af personer, som allerede følger dig på denne server, og du udelukkes muligvis fra forskellige opdagelsesfunktioner. Personer vil stadig kunne følge dig manuelt. - suspend: Din konto kan ikke længere anvendes, og hverken profilen eller øvrige data kan tilgås. Du kan stadig logge ind for at anmode om en sikkerhedskopi af dine data, indtil disse om ca. 30 dage vil være slettet. Visse data bevares dog mhp. at forhindre dig i at omgå udelukkelsen. + silence: Du kan stadig bruge din konto, men kun personer, der allerede følger dig, vil kunne se dine indlæg på denne server, og du kan blive udelukket fra forskellige søgefunktioner. Andre kan dog stadig følge dig manuelt. + suspend: Du kan ikke længere bruge din konto, og din profil og andre data er ikke længere tilgængelige. Du kan stadig logge ind for at anmode om en sikkerhedskopi af dine data, indtil dataene er fuldt ud slettet om cirka 30 dage, men vi vil opbevare nogle grundlæggende data for at forhindre dig i at omgå suspenderingen. reason: 'Årsag:' statuses: 'Anmeldte indlæg:' subject: @@ -1908,7 +1908,7 @@ da: feature_audience_title: Opbyg et publikum i tillid feature_control: Man ved selv bedst, hvad man ønsker at se på sit hjemmefeed. Ingen algoritmer eller annoncer til at spilde tiden. Følg alle på tværs af enhver Mastodon-server fra en enkelt konto og modtag deres indlæg i kronologisk rækkefølge, og gør dette hjørne af internet lidt mere personligt. feature_control_title: Hold styr på egen tidslinje - feature_creativity: Mastodon understøtter indlæg med lyd, video og billede, tilgængelighedsbeskrivelser, meningsmålinger, indhold advarsler, animerede avatarer, tilpassede emojis, miniaturebeskæringskontrol og mere, for at gøre det lettere at udtrykke sig online. Uanset om man udgiver sin kunst, musik eller podcast, så står Mastodon til rådighed. + feature_creativity: Mastodon understøtter lyd-, video- og billedindlæg, tilgængelighedsbeskrivelser, afstemninger, indholdsadvarsler, animerede avatarer, brugerdefinerede emojis, kontrol over beskæring af miniaturebilleder og meget mere, så du lettere kan udtrykke dig online. Uanset om du udgiver din kunst, din musik eller din podcast, er Mastodon der for dig. feature_creativity_title: Uovertruffen kreativitet feature_moderation: Mastodon lægger beslutningstagning tilbage i brugerens hænder. Hver server opretter deres egne regler og reguleringer, som håndhæves lokalt og ikke ovenfra som virksomhedernes sociale medier, hvilket gør det til den mest fleksible mht. at reagere på behovene hos forskellige persongrupper. Deltag på en server med de regler, man er enige med, eller driv en egen server. feature_moderation_title: Moderering af måden, tingene bør være på @@ -1916,7 +1916,7 @@ da: follow_step: At følge interessante personer, det er, hvad Mastodon handler om. follow_title: Personliggør hjemmefeedet follows_subtitle: Følg velkendte konti - follows_title: Hvem, som skal følges + follows_title: Profiler, du kan følge follows_view_more: Vis nogle personer at følge hashtags_recent_count: one: "%{people} person de seneste 2 dage" @@ -1926,23 +1926,23 @@ da: hashtags_view_more: Se flere populære hashtags post_action: Skriv post_step: Sig hej til verden med tekst, fotos, videoer eller afstemninger. - post_title: Opret det første indlæg + post_title: Lav dit første indlæg share_action: Del - share_step: Lad vennerne vide, hvor man kan findes på Mastodon. - share_title: Del Mastodon-profilen + share_step: Fortæl dine venner, hvordan de kan finde dig på Mastodon. + share_title: Del din Mastodon-profil sign_in_action: Log ind subject: Velkommen til Mastodon title: Velkommen ombord, %{name}! users: follow_limit_reached: Du kan maks. følge %{limit} personer - go_to_sso_account_settings: Gå til identitetsudbyderens kontoindstillinger + go_to_sso_account_settings: Gå til din identitetsudbyders kontoindstillinger invalid_otp_token: Ugyldig tofaktorkode otp_lost_help_html: Har du mistet adgang til begge, kan du kontakte %{email} rate_limited: For mange godkendelsesforsøg. Prøv igen senere. seamless_external_login: Adgangskode- og e-mailindstillinger er utilgængelige, da der er logget ind via en ekstern tjeneste. signed_in_as: 'Logget ind som:' verification: - extra_instructions_html: Tip: Linket på din hjemmeside kan være usynligt. Den vigtige del er rel="me" , som forhindrer impersonation på websteder med brugergenereret indhold. Du kan endda bruge et link tag i overskriften på siden i stedet for a, men HTML skal være tilgængelig uden at udføre JavaScript. + extra_instructions_html: Tip: Linket på din hjemmeside kan være usynligt. Det vigtige er rel="me", som forhindrer imitering på hjemmesider med brugergenereret indhold. Du kan endda bruge et link tag i headeren på siden i stedet for a, men HTML'en skal være tilgængelig uden at udføre JavaScript. here_is_how: Sådan gør du hint_html: "Verificering af din identitet på Mastodon er for alle. Baseret på åbne webstandarder, nu og for altid gratis. Alt, hvad du behøver, er en personlig hjemmeside, som folk kender dig fra. Når du linker til denne hjemmeside fra din profil, kontrollerer vi, at hjemmesiden linker tilbage til din profil, og viser en visuel indikator på den." instructions_html: Kopier og indsæt koden nedenfor i HTML på din hjemmeside. Tilføj derefter adressen på din hjemmeside i et af de ekstra felter på din profil på fanen "Redigér profil" og gem ændringer. diff --git a/config/locales/de.yml b/config/locales/de.yml index 2e972d9f61..5c5936c740 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -4,7 +4,7 @@ de: about_mastodon_html: 'Das soziale Netzwerk der Zukunft: Keine Werbung, keine Überwachung durch Unternehmen – dafür dezentral und mit Anstand! Behalte mit Mastodon die Kontrolle über deine Daten!' contact_missing: Nicht festgelegt contact_unavailable: Nicht verfügbar - hosted_on: Mastodon, gehostet auf %{domain} + hosted_on: Mastodon, eingerichtet auf %{domain} title: Über accounts: followers: @@ -33,7 +33,7 @@ de: created_msg: Moderationshinweis erfolgreich abgespeichert! destroyed_msg: Moderationsnotiz erfolgreich entfernt! accounts: - add_email_domain_block: E-Mail-Domain sperren + add_email_domain_block: E-Mail-Domain blockieren approve: Genehmigen approved_msg: Antrag zur Registrierung von %{username} erfolgreich genehmigt are_you_sure: Bist du dir sicher? @@ -54,15 +54,15 @@ de: title: Rolle für %{username} ändern confirm: Bestätigen confirmed: Bestätigt - confirming: Bestätigung + confirming: Bestätigung ausstehend custom: Angepasst delete: Daten löschen deleted: Gelöscht demote: Zurückstufen - destroyed_msg: Daten von %{username} wurden zum Löschen in die Warteschlange eingereiht + destroyed_msg: Die Daten von %{username} befinden sich nun in der Warteschlange und werden in Kürze gelöscht disable: Einfrieren disable_sign_in_token_auth: E-Mail-Token-Authentisierung deaktivieren - disable_two_factor_authentication: Zwei-Faktor-Authentisierung deaktivieren + disable_two_factor_authentication: Zwei-Faktor-Authentisierung (2FA) deaktivieren disabled: Eingefroren display_name: Anzeigename domain: Domain @@ -80,7 +80,7 @@ de: invite_request_text: Begründung für das Beitreten invited_by: Eingeladen von ip: IP-Adresse - joined: Mitglied seit + joined: Registriert am location: all: Alle local: Lokal @@ -103,12 +103,12 @@ de: most_recent_activity: Letzte Aktivität most_recent_ip: Letzte IP-Adresse no_account_selected: Keine Konten wurden geändert, da keine ausgewählt wurden - no_limits_imposed: Keine Beschränkungen + no_limits_imposed: Keine Einschränkungen no_role_assigned: Keine Rolle zugewiesen not_subscribed: Nicht abonniert pending: Überprüfung ausstehend perform_full_suspension: Sperren - previous_strikes: Vorherige Maßnahmen + previous_strikes: Frühere Maßnahmen previous_strikes_description_html: one: Gegen dieses Konto wurde eine Maßnahme verhängt. other: Gegen dieses Konto wurden %{count} Maßnahmen verhängt. @@ -129,14 +129,14 @@ de: resend_confirmation: already_confirmed: Dieses Profil wurde bereits bestätigt send: Bestätigungslink erneut zusenden - success: Bestätigungslink erfolgreich gesendet! + success: Bestätigungslink erfolgreich verschickt! reset: Zurücksetzen reset_password: Passwort zurücksetzen resubscribe: Erneut abonnieren role: Rolle search: Suchen search_same_email_domain: Andere Konten mit der gleichen E-Mail-Domain - search_same_ip: Andere Konten mit derselben IP-Adresse + search_same_ip: Andere Konten mit der gleichen IP-Adresse security: Sicherheit security_measures: only_password: Nur Passwort @@ -145,7 +145,7 @@ de: sensitized: Mit Inhaltswarnung versehen shared_inbox_url: Geteilte Posteingangsadresse show: - created_reports: Erstellte Meldungen + created_reports: Eingereichte Meldungen targeted_reports: Von Anderen gemeldet silence: Stummschalten silenced: Stummgeschaltet @@ -154,10 +154,10 @@ de: subscribe: Abonnieren suspend: Sperren suspended: Gesperrt - suspension_irreversible: Die Daten dieses Kontos wurden unwiderruflich gelöscht. Du kannst das Konto entsperren, um es wieder zu verwenden, aber es wird keine Daten wiederherstellen, die es davor hatte. + suspension_irreversible: Die Daten dieses Kontos wurden unwiderruflich gelöscht. Du kannst die Kontosperrung aufheben, damit es wieder aktiv ist und funktioniert, aber es werden keine früheren Daten wiederhergestellt. suspension_reversible_hint_html: Das Konto wurde gesperrt und die Daten werden am %{date} vollständig gelöscht. Bis dahin kann das Konto ohne irgendwelche negativen Auswirkungen wiederhergestellt werden. Wenn du alle Daten des Kontos sofort entfernen möchtest, kannst du das nachfolgend tun. title: Konten - unblock_email: E-Mail-Adresse entsperren + unblock_email: Blockierung der E-Mail-Adresse aufheben unblocked_email_msg: E-Mail-Adresse von %{username} erfolgreich entsperrt unconfirmed_email: Unbestätigte E-Mail-Adresse undo_sensitized: Inhaltswarnung aufheben @@ -184,7 +184,7 @@ de: create_canonical_email_block: E-Mail-Sperre erstellen create_custom_emoji: Eigene Emojis erstellen create_domain_allow: Domain erlauben - create_domain_block: Domain sperren + create_domain_block: Domain blockieren create_email_domain_block: E-Mail-Domain-Sperre erstellen create_ip_block: IP-Regel erstellen create_unavailable_domain: Nicht verfügbare Domain erstellen @@ -204,27 +204,27 @@ de: disable_2fa_user: 2FA deaktivieren disable_custom_emoji: Eigenes Emoji deaktivieren disable_sign_in_token_auth_user: E-Mail-Token-Authentisierung für dieses Konto deaktivieren - disable_user: Benutzer*in deaktivieren + disable_user: Profil deaktivieren enable_custom_emoji: Eigenes Emoji aktivieren enable_sign_in_token_auth_user: E-Mail-Token-Authentisierung für dieses Konto aktivieren enable_user: Benutzer*in aktivieren memorialize_account: Gedenkkonto promote_user: Benutzer*in hochstufen reject_appeal: Einspruch ablehnen - reject_user: Benutzer*in ablehnen + reject_user: Profil ablehnen remove_avatar_user: Profilbild entfernen reopen_report: Meldung wieder eröffnen - resend_user: Bestätigungs-E-Mail erneut senden + resend_user: Bestätigungs-E-Mail erneut zuschicken reset_password_user: Passwort zurücksetzen resolve_report: Meldung klären sensitive_account: Konto mit erzwungener Inhaltswarnung silence_account: Konto stummschalten suspend_account: Konto sperren unassigned_report: Meldung widerrufen - unblock_email_account: E-Mail-Adresse entsperren + unblock_email_account: Blockierung der E-Mail-Adresse aufheben unsensitive_account: Konto mit erzwungener Inhaltswarnung rückgängig machen unsilence_account: Konto nicht mehr stummschalten - unsuspend_account: Konto entsperren + unsuspend_account: Kontosperre aufheben update_announcement: Ankündigung aktualisieren update_custom_emoji: Eigenes Emoji aktualisieren update_domain_block: Domain-Sperre aktualisieren @@ -233,7 +233,7 @@ de: update_status: Beitrag aktualisieren update_user_role: Rolle bearbeiten actions: - approve_appeal_html: "%{name} hat den Einspruch gegen eine Moderationsentscheidung von %{target} genehmigt" + approve_appeal_html: "%{name} genehmigte den Einspruch gegen eine Moderationsentscheidung von %{target}" approve_user_html: "%{name} genehmigte die Registrierung von %{target}" assigned_to_self_report_html: "%{name} wies sich die Meldung %{target} selbst zu" change_email_user_html: "%{name} änderte die E-Mail-Adresse von %{target}" @@ -270,7 +270,7 @@ de: enable_user_html: "%{name} aktivierte den Zugang für %{target}" memorialize_account_html: "%{name} wandelte das Konto von %{target} in eine Gedenkseite um" promote_user_html: "%{name} beförderte %{target}" - reject_appeal_html: "%{name} hat den Einspruch gegen eine Moderationsentscheidung von %{target} abgelehnt" + reject_appeal_html: "%{name} lehnte den Einspruch gegen eine Moderationsentscheidung von %{target} ab" reject_user_html: "%{name} hat die Registrierung von %{target} abgelehnt" remove_avatar_user_html: "%{name} entfernte das Profilbild von %{target}" reopen_report_html: "%{name} öffnete die Meldung %{target} wieder" @@ -281,14 +281,14 @@ de: silence_account_html: "%{name} schaltete das Konto von %{target} stumm" suspend_account_html: "%{name} sperrte das Konto von %{target}" unassigned_report_html: "%{name} entfernte die Zuweisung der Meldung %{target}" - unblock_email_account_html: "%{name} hat die E-Mail-Adresse von %{target} entsperrt" - unsensitive_account_html: "%{name} hat die Inhaltswarnung für Medien von %{target} aufgehoben" + unblock_email_account_html: "%{name} entsperrte die E-Mail-Adresse von %{target}" + unsensitive_account_html: "%{name} hob die Inhaltswarnung für Medien von %{target} auf" unsilence_account_html: "%{name} hob die Stummschaltung von %{target} auf" unsuspend_account_html: "%{name} entsperrte das Konto von %{target}" update_announcement_html: "%{name} überarbeitete die Ankündigung %{target}" update_custom_emoji_html: "%{name} bearbeitete das Emoji %{target}" update_domain_block_html: "%{name} aktualisierte die Domain-Sperre für %{target}" - update_ip_block_html: "%{name} änderte die Regel für die IP-Adresse %{target}" + update_ip_block_html: "%{name} änderte eine IP-Regel für %{target}" update_report_html: "%{name} überarbeitete die Meldung %{target}" update_status_html: "%{name} überarbeitete einen Beitrag von %{target}" update_user_role_html: "%{name} änderte die Rolle von %{target}" @@ -296,7 +296,7 @@ de: empty: Protokolle nicht gefunden. filter_by_action: Nach Aktion filtern filter_by_user: Nach Benutzer*in filtern - title: Audit-Log + title: Protokoll unavailable_instance: "(Server nicht verfügbar)" announcements: destroyed_msg: Ankündigung erfolgreich gelöscht! @@ -312,8 +312,8 @@ de: scheduled_for: Geplant für %{time} scheduled_msg: Ankündigung ist zur Veröffentlichung vorgemerkt! title: Ankündigungen - unpublish: Veröffentlichung rückgängig machen - unpublished_msg: Ankündigung ist jetzt nicht mehr sichtbar! + unpublish: Ankündigung zurücknehmen + unpublished_msg: Ankündigung erfolgreich zurückgenommen! updated_msg: Ankündigung erfolgreich aktualisiert! critical_update_pending: Kritisches Update ausstehend custom_emojis: @@ -343,9 +343,9 @@ de: overwrite: Überschreiben shortcode: Shortcode shortcode_hint: Mindestens 2 Zeichen, nur Buchstaben, Ziffern und Unterstriche - title: Eigene Emojis + title: Emojis uncategorized: Unkategorisiert - unlist: Nicht anzeigen + unlist: Ausblenden unlisted: Nicht sichtbar update_failed_msg: Konnte dieses Emoji nicht bearbeiten updated_msg: Emoji erfolgreich bearbeitet! @@ -355,7 +355,7 @@ de: interactions: Interaktionen media_storage: Medien new_users: neue Profile - opened_reports: eingereichte Meldungen + opened_reports: Unbearbeitete Meldungen pending_appeals_html: one: "%{count} ausstehender Einspruch" other: "%{count} ausstehende Einsprüche" @@ -415,8 +415,8 @@ de: silence: Stummschaltung suspend: Sperren title: Neue Domain einschränken - no_domain_block_selected: Keine Domains gesperrt, weil keine ausgewählt wurde(n) - not_permitted: Du bist nicht berechtigt, diese Aktion durchzuführen + no_domain_block_selected: Keine Domain(s) gesperrt, weil keine ausgewählt wurde(n) + not_permitted: Dir ist es nicht erlaubt, diese Handlung durchzuführen obfuscate: Domain-Name verschleiern obfuscate_hint: Den Domain-Namen öffentlich nur teilweise bekannt geben, sofern die Liste der Domain-Beschränkungen aktiviert ist private_comment: Nicht-öffentliche Notiz @@ -446,7 +446,7 @@ de: resolve: Domain auflösen title: Neue E-Mail-Domain sperren no_email_domain_block_selected: Es wurden keine E-Mail-Domain-Sperren geändert, da keine ausgewählt wurden - not_permitted: Nicht gestattet + not_permitted: Nicht erlaubt resolved_dns_records_hint_html: Die Domain wird zu den folgenden MX-Domains aufgelöst, die für die Annahme von E-Mails zuständig sind. Das Sperren einer MX-Domain sperrt Anmeldungen aller E-Mail-Adressen, die dieselbe MX-Domain verwenden, auch wenn die sichtbare Domain anders lautet. Achte daher darauf, keine großen E-Mail-Anbieter versehentlich zu sperren. resolved_through_html: Durch %{domain} aufgelöst title: Gesperrte E-Mail-Domains @@ -471,12 +471,12 @@ de: status: Status suppress: Folgeempfehlung unterbinden suppressed: Unterdrückt - title: Folgeempfehlungen + title: Follower-Empfehlungen unsuppress: Folgeempfehlung nicht mehr unterbinden instances: audit_log: - title: Neueste Audit-Logs - view_all: Alle Audit-Logs anzeigen + title: Neueste Protokolle + view_all: Protokolle availability: description_html: one: Wenn die Zustellung an die Domain %{count} Tag lang erfolglos bleibt, werden keine weiteren Zustellversuche unternommen, bis eine Zustellung von der Domain empfangen wird. @@ -587,14 +587,14 @@ de: status: Status title: Relais report_notes: - created_msg: Notiz zur Meldung erfolgreich erstellt! - destroyed_msg: Notiz zur Meldung erfolgreich entfernt! + created_msg: Vermerk zur Meldung erfolgreich erstellt! + destroyed_msg: Vermerk zur Meldung erfolgreich entfernt! reports: account: notes: - one: "%{count} Notiz" - other: "%{count} Notizen" - action_log: Audit-Log + one: "%{count} Vermerk" + other: "%{count} Vermerke" + action_log: Protokoll action_taken_by: Maßnahme ergriffen von actions: delete_description_html: Der gemeldete Beitrag wird gelöscht und die ergriffene Maßnahme wird aufgezeichnet, um dir bei zukünftigen Verstößen des gleichen Kontos zu helfen. @@ -613,16 +613,16 @@ de: are_you_sure: Bist du dir sicher? assign_to_self: Mir zuweisen assigned: Zugewiesene*r Moderator*in - by_target_domain: Domain des gemeldeten Kontos + by_target_domain: Server des gemeldeten Kontos cancel: Abbrechen category: Kategorie category_description_html: Der Grund, weshalb dieses Konto und/oder der Inhalt gemeldet worden ist, wird in der Kommunikation mit dem gemeldeten Konto erwähnt comment: - none: Kein + none: Ohne ergänzenden Kommentar comment_description_html: "%{name} ergänzte die Meldung um folgende Hinweis:" confirm: Bestätigen confirm_action: Maßnahme gegen @%{acct} bestätigen - created_at: Gemeldet + created_at: Gemeldet am delete_and_resolve: Beiträge löschen forwarded: Weitergeleitet forwarded_replies_explanation: Diese Meldung stammt von einem externen Profil und betrifft einen externen Inhalt. Der Inhalt wurde an dich weitergeleitet, weil er eine Antwort auf ein bei dir registriertes Profil ist. @@ -636,9 +636,9 @@ de: create_and_resolve: Mit Notiz als geklärt markieren create_and_unresolve: Mit Notiz wieder öffnen delete: Löschen - placeholder: Bitte beschreibe, welche Maßnahmen bzw. Sanktionen ergriffen worden sind, und führe alles auf, was es Erwähnenswertes zu diesem Profil zu berichten gibt … - title: Notizen - notes_description_html: Notiz an dich und andere Moderator*innen hinterlassen + placeholder: Bitte beschreibe, welche Maßnahmen ergriffen worden sind, und führe alles auf, was es Erwähnenswertes zu diesem Profil zu berichten gibt … + title: Vermerke + notes_description_html: Internen Vermerk an dich und andere Moderator*innen hinterlassen processed_msg: Meldung Nr. %{id} erfolgreich bearbeitet quick_actions_description_html: 'Führe eine schnelle Aktion aus oder scrolle nach unten, um gemeldete Inhalte zu sehen:' remote_user_placeholder: das externe Profil von %{instance} @@ -646,7 +646,7 @@ de: report: "%{id}. Meldung" reported_account: Gemeldetes Konto reported_by: Gemeldet von - reported_with_application: Per App gemeldet + reported_with_application: Gemeldet via resolved: Geklärt resolved_msg: Meldung erfolgreich geklärt! skip_to_actions: Zur Maßnahme springen @@ -664,7 +664,7 @@ de: mark_as_sensitive_html: Medien der beanstandeten Beiträge mit einer Inhaltswarnung versehen silence_html: Schränkt die Reichweite von @%{acct} stark ein, indem das Profil und dessen Inhalte nur für Personen sichtbar sind, die dem Profil bereits folgen oder es manuell aufrufen suspend_html: "@%{acct} sperren, sodass das Profil und dessen Inhalte nicht mehr zugänglich sind und keine Interaktion mehr möglich ist" - close_report: Meldung Nr. %{id} als geklärt markieren + close_report: Meldung Nr. %{id} als erledigt markieren close_reports_html: "Alle Meldungen gegen @%{acct} als geklärt markieren" delete_data_html: Das Profil und die Inhalte von @%{acct} in 30 Tagen löschen, es sei denn, das Konto wird in der Zwischenzeit entsperrt preview_preamble_html: "@%{acct} wird eine Warnung mit folgenden Inhalten erhalten:" @@ -699,45 +699,45 @@ de: other: "%{count} Berechtigungen" privileges: administrator: Administrator*in - administrator_description: Benutzer*innen mit dieser Berechtigung werden alle Beschränkungen umgehen + administrator_description: Beschränkung aller Berechtigungen umgehen delete_user_data: Kontodaten löschen - delete_user_data_description: Erlaubt Benutzer*innen, die Daten anderer Benutzer*innen sofort zu löschen - invite_users: Leute einladen - invite_users_description: Erlaubt bereits registrierten Benutzer*innen, neue Leute zum Server einzuladen - manage_announcements: Ankündigungen verwalten - manage_announcements_description: Erlaubt Profilen, Ankündigungen auf dem Server zu verwalten - manage_appeals: Einsprüche verwalten - manage_appeals_description: Erlaubt es Benutzer*innen, Entscheidungen der Moderator*innen zu widersprechen - manage_blocks: Sperrungen verwalten - manage_blocks_description: Erlaubt Nutzer*innen das Sperren von E-Mail-Anbietern und IP-Adressen - manage_custom_emojis: Eigene Emojis verwalten - manage_custom_emojis_description: Erlaubt es Benutzer*innen, eigene Emojis auf dem Server zu verwalten - manage_federation: Föderation verwalten - manage_federation_description: Erlaubt Benutzer*innen, Domains anderer Mastodon-Server zu sperren oder zuzulassen – und die Zustellbarkeit zu steuern - manage_invites: Einladungen verwalten - manage_invites_description: Erlaubt es Benutzer*innen, Einladungslinks zu durchsuchen und zu deaktivieren - manage_reports: Meldungen verwalten - manage_reports_description: Erlaubt es Benutzer*innen, Meldungen zu überprüfen und Vorfälle zu moderieren + delete_user_data_description: Daten anderer Profile ohne Verzögerung löschen + invite_users: Einladungen + invite_users_description: Neue Benutzer*innen zur Registrierung auf diesem Server einladen + manage_announcements: Ankündigungen + manage_announcements_description: Ankündigungen dieses Servers verwalten + manage_appeals: Einsprüche + manage_appeals_description: Entscheidungen von Moderator*innen bzgl. Einsprüchen von Benutzer*innen überarbeiten + manage_blocks: Sperren + manage_blocks_description: E-Mail-Provider und IP-Adressen sperren + manage_custom_emojis: Emojis + manage_custom_emojis_description: Spezielle Emojis dieses Servers verwalten + manage_federation: Föderation + manage_federation_description: Domains anderer Mastodon-Server sperren/zulassen – und Zustellbarkeit kontrollieren + manage_invites: Einladungen + manage_invites_description: Einladungslinks durchsuchen und deaktivieren + manage_reports: Meldungen + manage_reports_description: Meldungen überprüfen und Vorfälle moderieren manage_roles: Rollen verwalten - manage_roles_description: Erlaubt es Benutzer*innen, Rollen, die sich unterhalb der eigenen Rolle befinden, zu verwalten und zuzuweisen - manage_rules: Serverregeln verwalten - manage_rules_description: Erlaubt es Benutzer*innen, Serverregeln zu ändern - manage_settings: Einstellungen verwalten - manage_settings_description: Erlaubt Nutzer*innen, Einstellungen dieses Servers zu ändern - manage_taxonomies: Hashtags verwalten - manage_taxonomies_description: Ermöglicht Benutzer*innen, die Trends zu überprüfen und die Hashtag-Einstellungen zu aktualisieren - manage_user_access: Kontozugriff verwalten - manage_user_access_description: Erlaubt Nutzer*innen, die Zwei-Faktor-Authentisierung anderer zu deaktivieren, ihre E-Mail-Adresse zu ändern und ihr Passwort zurückzusetzen - manage_users: Konten verwalten - manage_users_description: Erlaubt es Benutzer*innen, die Details anderer Profile einzusehen und diese Accounts zu moderieren - manage_webhooks: Webhooks verwalten - manage_webhooks_description: Erlaubt es Benutzer*innen, Webhooks für administrative Vorkommnisse einzurichten - view_audit_log: Audit-Log anzeigen - view_audit_log_description: Erlaubt es Benutzer*innen, den Verlauf der administrativen Handlungen auf diesem Server einzusehen - view_dashboard: Dashboard anzeigen - view_dashboard_description: Gewährt Benutzer*innen den Zugriff auf das Dashboard und verschiedene Metriken + manage_roles_description: Rollen, die sich unterhalb der eigenen Rolle befinden, verwalten und zuweisen + manage_rules: Serverregeln + manage_rules_description: Serverregeln ändern + manage_settings: Einstellungen + manage_settings_description: Einstellungen dieses Servers ändern + manage_taxonomies: Hashtags + manage_taxonomies_description: Trends überprüfen und Einstellungen für Hashtags + manage_user_access: Kontozugriff + manage_user_access_description: Zwei-Faktor-Authentisierungen anderer können deaktiviert, E-Mail-Adressen geändert und Passwörter zurückgesetzt werden + manage_users: Konten + manage_users_description: Details anderer Profile einsehen und Moderation von Konten + manage_webhooks: Webhooks + manage_webhooks_description: Webhooks für administrative Vorgänge einrichten + view_audit_log: Protokoll anzeigen + view_audit_log_description: Verlauf der administrativen Vorgänge auf diesem Server + view_dashboard: Dashboard + view_dashboard_description: Dashboard und verschiedene Metriken view_devops: DevOps - view_devops_description: Erlaubt es Benutzer*innen, auf die Sidekiq- und pgHero-Dashboards zuzugreifen + view_devops_description: Auf Sidekiq- und pgHero-Dashboards zugreifen title: Rollen rules: add_new: Regel hinzufügen @@ -756,7 +756,7 @@ de: preamble: Passe das Webinterface von Mastodon an. title: Design branding: - preamble: Das Branding deines Servers unterscheidet ihn von anderen Servern im Netzwerk. Diese Informationen können in einer Vielzahl von Umgebungen angezeigt werden, z. B. in der Weboberfläche von Mastodon, in nativen Anwendungen, in Linkvorschauen auf anderen Websites und in Messaging-Apps und so weiter. Aus diesem Grund ist es am besten, diese Informationen klar, kurz und prägnant zu halten. + preamble: Das Branding deines Servers unterscheidet ihn von anderen Servern im Netzwerk. Diese Informationen können in einer Vielzahl von Umgebungen angezeigt werden, z. B. im Webinterface von Mastodon, in nativen Anwendungen, in der Linkvorschau auf anderen Websites, in Messaging-Apps und so weiter. Aus diesem Grund ist es am besten, diese Informationen klar, kurz und prägnant zu halten. title: Branding captcha_enabled: desc_html: Dies beruht auf externen Skripten von hCaptcha, die ein Sicherheits- und Datenschutzproblem darstellen könnten. Darüber hinaus kann das den Registrierungsprozess für manche Menschen (insbesondere für Menschen mit Behinderung) erheblich erschweren. Aus diesen Gründen solltest du alternative Maßnahmen in Betracht ziehen, z. B. eine Registrierung basierend auf einer Einladung oder auf Genehmigungen. @@ -770,7 +770,7 @@ de: title: Profile standardmäßig von der Suchmaschinen-Indizierung ausnehmen discovery: follow_recommendations: Follower-Empfehlungen - preamble: Das Auffinden interessanter Inhalte ist wichtig, um neue Nutzer einzubinden, die Mastodon noch nicht kennen. Bestimme, wie verschiedene Suchfunktionen auf deinem Server funktionieren. + preamble: Das Präsentieren interessanter Inhalte ist für den Einstieg neuer Nutzer*innen, die auf Mastodon nichts und niemanden kennen, entscheidend. Lege die vielfältigen Funktionen zum Entdecken neuer Dinge auf deinem Server fest. profile_directory: Profilverzeichnis public_timelines: Öffentliche Timeline publish_discovered_servers: Entdeckte Server offenlegen @@ -814,7 +814,7 @@ de: version: Version statuses: account: Autor*in - application: Anwendung + application: App back_to_account: Zurück zum Konto back_to_report: Zurück zur Seite mit den Meldungen batch: @@ -881,10 +881,10 @@ de: message_html: Ein Mastodon-Update ist verfügbar. software_version_critical_check: action: Verfügbare Updates ansehen - message_html: Ein kritisches Mastodon-Update ist verfügbar – bitte aktualisiere so schnell wie möglich. + message_html: Ein wichtiges Sicherheitsupdate ist verfügbar – bitte aktualisiere Mastodon so schnell wie möglich. software_version_patch_check: action: Verfügbare Updates ansehen - message_html: Ein Mastodon-Update für Fehlerkorrekturen ist verfügbar. + message_html: Ein Mastodon-Update mit Bugfixes ist verfügbar. upload_check_privacy_error: action: Für weitere Informationen hier klicken message_html: "Die Konfiguration deines Servers ist fehlerhaft. Die Privatsphäre deiner Benutzer*innen ist gefährdet." @@ -902,7 +902,7 @@ de: trendable: Trendfähig unreviewed: Ungeprüft usable: Verwendbar - name: Name + name: Hashtag newest: Neueste oldest: Älteste open: Öffentlich anzeigen @@ -935,8 +935,8 @@ de: one: In den vergangenen 7 Tagen von einem Profil geteilt other: In den vergangenen 7 Tagen von %{count} Profilen geteilt title: Angesagte Links - usage_comparison: Heute %{today}-mal und gestern %{yesterday}-mal geteilt - not_allowed_to_trend: Darf nicht trenden + usage_comparison: Heute %{today} × und gestern %{yesterday} × geteilt + not_allowed_to_trend: Trend nicht erlaubt only_allowed: Nur Genehmigte pending_review: Überprüfung ausstehend preview_card_providers: @@ -970,17 +970,17 @@ de: tag_servers_measure: Server tag_uses_measure: insgesamt description_html: Diese Hashtags werden derzeit in vielen Beiträgen verwendet, die dein Server sieht. Dies kann deinen Nutzer*innen helfen, herauszufinden, worüber die Leute im Moment am meisten schreiben. Hashtags werden erst dann öffentlich angezeigt, wenn du sie genehmigst. - listable: Kann vorgeschlagen werden + listable: Darf empfohlen werden no_tag_selected: Keine Hashtags wurden geändert, da keine ausgewählt wurden - not_listable: Wird nicht vorgeschlagen - not_trendable: Wird in den Trends nicht angezeigt - not_usable: Kann nicht verwendet werden + not_listable: Darf nicht vorgeschlagen werden + not_trendable: In Trends nicht erlaubt + not_usable: In Beiträgen nicht erlaubt peaked_on_and_decaying: In den Trends am %{date}, jetzt absteigend title: Angesagte Hashtags - trendable: Darf in den Trends erscheinen + trendable: In Trends erlaubt trending_rank: Platz %{rank} - usable: Darf verwendet werden - usage_comparison: Heute %{today}-mal und gestern %{yesterday}-mal verwendet + usable: In Beiträgen erlaubt + usage_comparison: Heute %{today} × und gestern %{yesterday} × verwendet used_by_over_week: one: In den vergangenen 7 Tagen von einem Profil verwendet other: In den vergangenen 7 Tagen von %{count} Profilen verwendet @@ -1123,12 +1123,12 @@ de: confirm: E-Mail bestätigen details: Deine Daten review: Unsere Überprüfung - rules: Regeln akzeptieren + rules: Serverregeln akzeptieren providers: cas: CAS saml: SAML register: Registrieren - registration_closed: "%{instance} akzeptiert keine neuen Mitglieder" + registration_closed: "%{instance} akzeptiert keine neuen Registrierungen" resend_confirmation: Bestätigungslink erneut zusenden reset_password: Passwort zurücksetzen rules: @@ -1142,13 +1142,13 @@ de: security: Sicherheit set_new_password: Neues Passwort einrichten setup: - email_below_hint_html: Überprüfe deinen Spam-Ordner oder lass dir den Bestätigungslink erneut zusenden. Falls die angegebene E-Mail-Adresse falsch ist, kannst du sie auch korrigieren. - email_settings_hint_html: Klicke auf den Bestätigungslink, den wir an %{email} gesendet haben, um die Adresse zu verifizieren. Wir warten hier solange auf dich. + email_below_hint_html: Überprüfe deinen Spam-/Junk-Ordner oder lass dir den Bestätigungslink erneut zusenden. Falls du die vorherige E-Mail-Adresse falsch eingegeben hast, kannst du sie hier korrigieren. + email_settings_hint_html: Klicke auf den Bestätigungslink, den wir dir an %{email} geschickt haben, um deine E-Mail-Adresse zu verifizieren. Wir warten hier solange auf dich. link_not_received: Keinen Bestätigungslink erhalten? new_confirmation_instructions_sent: In wenigen Minuten wirst du eine neue E-Mail mit dem Bestätigungslink erhalten! title: Überprüfe dein E-Mail-Postfach sign_in: - preamble_html: Melde dich mit deinen Zugangsdaten für %{domain} an. Falls dein Konto auf einem anderen Server erstellt wurde, ist eine Anmeldung hier nicht möglich. + preamble_html: Melde dich mit deinen Zugangsdaten für %{domain} an. Falls dein Konto auf einem anderen Mastodon-Server erstellt wurde, ist eine Anmeldung hier nicht möglich. title: Bei %{domain} anmelden sign_up: manual_review: Registrierungen für den Server %{domain} werden manuell durch unsere Moderator*innen überprüft. Um uns dabei zu unterstützen, schreibe etwas über dich und sage uns, weshalb du ein Konto auf %{domain} anlegen möchtest. @@ -1214,7 +1214,7 @@ de: irreversible: Du wirst dein Konto nicht mehr wiederherstellen oder reaktivieren können more_details_html: Weitere Details findest du in der Datenschutzerklärung. username_available: Dein Profilname wird wieder verfügbar sein - username_unavailable: Dein Profilname wird auch nach dem Löschen für andere nicht zugänglich sein + username_unavailable: Dein Profilname kann nach der Kontolöschung nicht neu registriert werden – und steht nicht mehr zur Verfügung disputes: strikes: action_taken: Maßnahme @@ -1238,7 +1238,7 @@ de: delete_statuses: Beitragsentfernung disable: Konto einfrieren mark_statuses_as_sensitive: Beiträge mit einer Inhaltswarnung versehen - none: Warnung + none: Verwarnung sensitive: Profil mit einer Inhaltswarnung versehen silence: Kontobeschränkung suspend: Kontosperre @@ -1265,7 +1265,7 @@ de: '503': Die Seite konnte wegen eines temporären Serverfehlers nicht angezeigt werden. noscript_html: Bitte aktiviere JavaScript, um das Webinterface von Mastodon zu verwenden. Alternativ kannst du auch eine der nativen Apps für Mastodon verwenden. existing_username_validator: - not_found: kann lokale Konten mit diesem Profilnamen nicht finden + not_found: kann kein lokales Konto mit diesem Profilnamen finden not_found_multiple: "%{usernames} konnten nicht gefunden werden" exports: archive_takeout: @@ -1362,7 +1362,7 @@ de: too_large: Datei ist zu groß failures: Fehler imported: Importiert - mismatched_types_warning: Möglicherweise hast du den falschen Typ für diesen Import ausgewählt. Bitte überprüfe alles noch einmal. + mismatched_types_warning: Möglicherweise hast du das falsche Format für diesen Import ausgewählt. Bitte überprüfe alles noch einmal. modes: merge: Zusammenführen merge_long: Bestehende Datensätze beibehalten und neue hinzufügen @@ -1426,13 +1426,13 @@ de: invalid: Diese Einladung ist ungültig invited_by: 'Du wurdest eingeladen von:' max_uses: - one: Eine Verwendung - other: "%{count} Verwendungen" - max_uses_prompt: Unbegrenzt - prompt: Erstelle Einladungen und teile die dazugehörigen Links, um anderen einen Zugang zu diesem Server zu gewähren + one: 1 × Registrierung + other: "%{count} × Registrierungen" + max_uses_prompt: Keine Begrenzung der Registrierungen + prompt: Erstelle Einladungen und teile die dazugehörigen Links, um anderen die Registrierung auf diesem Server zu gestatten table: expires_at: Läuft ab - uses: Verwendungen + uses: Registrierungen title: Einladungen lists: errors: @@ -1467,7 +1467,7 @@ de: validations: images_and_video: Es kann kein Video an einen Beitrag angehängt werden, der bereits Bilder enthält not_found: Medieninhalt(e) %{ids} nicht gefunden oder bereits an einen anderen Beitrag angehängt - not_ready: Dateien, die noch nicht verarbeitet wurden, können nicht angehängt werden. Versuche es gleich noch einmal! + not_ready: Dateien, die noch nicht verarbeitet wurden, können nicht angehängt werden. Warte einen Moment! too_many: Mehr als vier Dateien können nicht angehängt werden migrations: acct: umgezogen nach @@ -1511,7 +1511,7 @@ de: notification_mailer: admin: report: - subject: "%{name} hat eine Meldung eingereicht" + subject: "%{name} reichte eine Meldung ein" sign_up: subject: "%{name} registrierte sich" favourite: @@ -1543,7 +1543,7 @@ de: update: subject: "%{name} bearbeitete einen Beitrag" notifications: - administration_emails: Admin-E-Mail-Benachrichtigungen + administration_emails: Benachrichtigungen per E-Mail an die Admins email_events: Benachrichtigungen per E-Mail email_events_hint: 'Bitte die Ereignisse auswählen, für die du Benachrichtigungen per E-Mail erhalten möchtest:' number: @@ -1560,8 +1560,8 @@ de: code_hint: Gib den Code ein, den deine 2FA- bzw. TOTP-App generiert hat, um den Vorgang zu bestätigen description_html: Wenn du die Zwei-Faktor-Authentisierung (2FA) mit einer Authentifizierungs-App deines Smartphones aktivierst, benötigst du neben dem regulären Passwort zusätzlich auch den zeitbasierten Code der 2FA-App, um dich anmelden zu können. enable: Aktivieren - instructions_html: "Scanne diesen QR-Code mit einer beliebigen Authentisierungs-App (TOTP). Diese App generiert dann zeitbasierte Codes, die du beim Anmelden zusätzlich zum regulären Passwort eingeben musst." - manual_instructions: Wenn du den QR-Code nicht einscannen kannst, sondern die Zahlenfolge manuell eingeben musst, ist hier der geheime Token für deine 2FA-App. + instructions_html: "Scanne diesen QR-Code mit einer beliebigen Authentisierungs-App (TOTP) ein. Die App generiert dann zeitbasierte Codes, die du beim Anmelden zusätzlich zum regulären Passwort eingeben musst." + manual_instructions: 'Wenn du den QR-Code nicht einscannen kannst, sondern die Zahlenfolge manuell eingeben musst, ist hier der geheime Code für deine 2FA-App:' setup: Einrichten wrong_code: Der eingegebene Code ist ungültig! Laufen Serverzeit und Gerätezeit synchron? pagination: @@ -1693,7 +1693,7 @@ de: account_settings: Kontoeinstellungen aliases: Konto-Aliasse appearance: Design - authorized_apps: Autorisierte Anwendungen + authorized_apps: Genehmigte Apps back: Zurück zu Mastodon delete: Kontolöschung development: Entwicklung @@ -1703,17 +1703,17 @@ de: import: Importieren import_and_export: Importieren und exportieren migrate: Kontoumzug - notifications: E-Mail-Benachrichtigungen + notifications: Benachrichtigungen preferences: Einstellungen profile: Öffentliches Profil relationships: Follower und Folge ich severed_relationships: Getrennte Beziehungen - statuses_cleanup: Automatische Löschung + statuses_cleanup: Automatisiertes Löschen strikes: Maßnahmen two_factor_authentication: Zwei-Faktor-Authentisierung webauthn_authentication: Sicherheitsschlüssel severed_relationships: - download: Herunterladen (%{count}) + download: Download (%{count} Follower) event_type: account_suspension: Kontosperre (%{target_name}) domain_block: Serversperre (%{target_name}) @@ -1746,13 +1746,13 @@ de: in_reply_not_found: Der Beitrag, auf den du antworten möchtest, scheint nicht zu existieren. over_character_limit: Begrenzung von %{max} Zeichen überschritten pin_errors: - direct: Beiträge, die nur für erwähnte Profile sichtbar sind, können nicht angeheftet werden + direct: Beiträge mit privaten Erwähnungen können nicht angeheftet werden limit: Du hast bereits die maximale Anzahl an Beiträgen angeheftet ownership: Du kannst nur eigene Beiträge anheften reblog: Du kannst keine geteilten Beiträge anheften title: "%{name}: „%{quote}“" visibilities: - direct: Direktnachricht + direct: Private Erwähnung private: Nur Follower private_long: Nur für deine Follower sichtbar public: Öffentlich @@ -1767,9 +1767,9 @@ de: ignore_favs: Favoriten ignorieren ignore_reblogs: Geteilte Beiträge ignorieren interaction_exceptions: Ausnahmen basierend auf Interaktionen - interaction_exceptions_explanation: Beachte, dass Beiträge nicht gelöscht werden, sobald deine Grenzwerte für Favoriten oder geteilte Beiträge einmal überschritten wurden – auch dann nicht, wenn diese Schwellenwerte mittlerweile nicht mehr erreicht werden. - keep_direct: Private Nachrichten behalten - keep_direct_hint: Löscht keinen deiner Beiträge, die nur für erwähnte Profile sichtbar sind + interaction_exceptions_explanation: Beachte, dass Beiträge nicht gelöscht werden, sobald deine Grenzwerte für Favoriten oder geteilte Beiträge einmal überschritten wurden – auch dann nicht, wenn diese Grenzwerte mittlerweile nicht mehr erreicht werden. + keep_direct: Private Erwähnungen behalten + keep_direct_hint: Löscht keinen deiner Beiträge mit privaten Erwähnungen keep_media: Beiträge mit Medien behalten keep_media_hint: Löscht keinen deiner Beiträge mit Medienanhängen keep_pinned: Angeheftete Beiträge behalten @@ -1818,13 +1818,13 @@ de: too_many_requests: Der Übersetzungsdienst hat kürzlich zu viele Anfragen erhalten. two_factor_authentication: add: Hinzufügen - disable: Zwei-Faktor-Authentisierung deaktivieren + disable: Zwei-Faktor-Authentisierung (2FA) deaktivieren disabled_success: Zwei-Faktor-Authentisierung erfolgreich deaktiviert edit: Bearbeiten enabled: Zwei-Faktor-Authentisierung (2FA) ist aktiviert enabled_success: Zwei-Faktor-Authentisierung (2FA) erfolgreich aktiviert generate_recovery_codes: Wiederherstellungscodes erstellen - lost_recovery_codes: Wiederherstellungscodes ermöglichen es dir, wieder Zugang zu deinem Konto zu erlangen, falls du keinen Zugriff mehr auf die Zwei-Faktor-Authentisierung oder den Sicherheitsschlüssel hast. Solltest du diese Wiederherstellungscodes verloren haben, kannst du sie hier neu generieren. Deine alten, bereits erstellten Wiederherstellungscodes werden dadurch ungültig. + lost_recovery_codes: Mit Wiederherstellungscodes erhältst du Zugang zu deinem Konto, falls du keinen Zugriff mehr auf die Zwei-Faktor-Authentisierung (2FA) oder den Sicherheitsschlüssel hast. Solltest du diese Wiederherstellungscodes verloren haben, kannst du sie hier neu erstellen. Deine alten, bereits erstellten Wiederherstellungscodes werden dadurch ungültig. methods: Methoden der Zwei-Faktor-Authentisierung otp: Authentisierungs-App recovery_codes: Wiederherstellungscodes sichern @@ -1863,7 +1863,7 @@ de: title: Eine neue Anmeldung warning: appeal: Einspruch erheben - appeal_description: Wenn du glaubst, dass es sich um einen Fehler handelt, kannst du einen Einspruch an die Administration von %{instance} senden. + appeal_description: Solltest du der Meinung sein, dass es sich bei der Sperre um einen Fehler handelt, kannst du Einspruch erheben, in dem du dich an das Team von %{instance} wendest. categories: spam: Spam violation: Inhalt verstößt gegen die folgenden Serverregeln @@ -1873,7 +1873,7 @@ de: mark_statuses_as_sensitive: Ein oder mehrere deiner Beiträge wurden von den Moderator*innen von %{instance} mit einer Inhaltswarnung versehen. Das bedeutet, dass die Medien in den Beiträgen erst angeklickt werden müssen, bevor sie angezeigt werden. Beim Verfassen der nächsten Beiträge kannst du auch selbst eine Inhaltswarnung für hochgeladene Medien festlegen. sensitive: Von nun an werden alle deine hochgeladenen Mediendateien mit einer Inhaltswarnung versehen und hinter einer Warnung versteckt. silence: Du kannst dein Konto weiterhin verwenden, aber nur Personen, die dir bereits folgen, sehen deine Beiträge auf diesem Server. Ebenso kannst du aus verschiedenen Suchfunktionen ausgeschlossen werden. Andere können dir jedoch weiterhin manuell folgen. - suspend: Du kannst dein Konto nicht mehr verwenden und dein Profil und andere Daten sind nicht mehr verfügbar. Du kannst dich immer noch anmelden, um eine Sicherung deiner Daten anzufordern, bis die Daten innerhalb von 30 Tagen vollständig gelöscht wurden. Allerdings werden wir einige Daten speichern, um zu verhindern, dass du die Sperrung umgehst. + suspend: Du kannst dein Konto nicht mehr verwenden und dein Profil und weitere Daten sind nicht mehr verfügbar. Du kannst dich immer noch anmelden, um eine Sicherung deiner Daten anzufordern, bis die Daten innerhalb von 30 Tagen vollständig gelöscht wurden. Allerdings werden wir einige Daten behalten, um zu verhindern, dass du die Kontosperre umgehst. reason: 'Begründung:' statuses: 'Betroffene Beiträge:' subject: @@ -1893,8 +1893,8 @@ de: silence: Konto stummgeschaltet suspend: Konto gesperrt welcome: - apps_android_action: Aus dem Google Play Store herunterladen - apps_ios_action: Im App Store herunterladen + apps_android_action: Bei Google Play (Android) herunterladen + apps_ios_action: Im App Store (Apple) herunterladen apps_step: Lade unsere offiziellen Apps herunter. apps_title: Mastodon-Apps checklist_subtitle: 'Fangen wir an, diese neue soziale Dimension zu erkunden:' @@ -1902,13 +1902,13 @@ de: edit_profile_action: Personalisieren edit_profile_step: Mit einem vollständigen Profil interagieren andere eher mit dir. edit_profile_title: Personalisiere dein Profil - explanation: Hier sind ein paar Tipps, um loszulegen + explanation: Hier sind ein paar Tipps für den Start feature_action: Mehr erfahren feature_audience: Mastodon bietet dir eine einzigartige Möglichkeit, deine Reichweite ohne Mittelsperson zu verwalten. Auf deiner eigenen Infrastruktur bereitgestellt, ermöglicht Mastodon es dir, jedem anderen Mastodon-Server zu folgen und von jedem anderen Server aus gefolgt zu werden. Ebenso steht Mastodon unter deiner Kontrolle. feature_audience_title: Baue deine Reichweite mit Vertrauen auf feature_control: Du weißt am besten, was du auf deiner Startseite sehen möchtest. Keine Algorithmen oder Werbung, die deine Zeit verschwenden. Folge Nutzer*innen auf allen Mastodon-Servern von einem einzelnen Konto aus und empfange deren Beiträge in chronologischer Reihenfolge. Mache Mastodon zu deinem ganz persönlichen Fleckchen im Internet. feature_control_title: Behalte die Kontrolle über deine eigene Timeline - feature_creativity: Mastodon unterstützt Audio-, Video- und Bildbeiträge, Beschreibungen, Umfragen, Inhaltswarnungen, animierte Avatare, benutzerdefinierte Emojis, das Zuschneiden von Vorschaubildern und vieles mehr, um dir zu helfen, dich online zu entfalten. Egal, ob du deine Kunst, deine Musik oder deinen Podcast veröffentlichst – Mastodon ist für dich da. + feature_creativity: Mastodon unterstützt Audio-, Video- und Bildbeiträge, Bildbeschreibungen, Umfragen, Inhaltswarnungen, animierte Avatare, benutzerdefinierte Emojis, das Zuschneiden von Vorschaubildern und vieles mehr, um dir zu helfen, dich online zu entfalten. Egal, ob du deine Kunst, deine Musik oder deinen Podcast veröffentlichst – Mastodon ist für dich da. feature_creativity_title: Einzigartige Kreativität feature_moderation: Mastodon legt die Entscheidungskraft zurück in deine Hände. Jeder Server erstellt eigene Regeln und Vorschriften, die nur lokal, pro einzelnem Server durchgesetzt werden – und nicht von oben herab, wie es bei den kommerziellen sozialen Medien der Fall ist. Dadurch ist Mastodon viel anpassungsfähiger für verschiedene Gruppen von Menschen. Registriere dich bei einem Server, dessen Regeln du magst, oder hoste deinen eigenen Server. feature_moderation_title: Moderation so, wie sie sein sollte @@ -1916,7 +1916,7 @@ de: follow_step: Interessanten Profilen zu folgen ist das, was Mastodon ausmacht. follow_title: Personalisiere deine Startseite follows_subtitle: Folge bekannten Profilen - follows_title: Empfohlene Profile + follows_title: Wem folgen? follows_view_more: Weitere Profile zum Folgen entdecken hashtags_recent_count: one: "%{people} Profil in den vergangenen 2 Tagen" @@ -1926,7 +1926,7 @@ de: hashtags_view_more: Weitere angesagte Hashtags entdecken post_action: Verfassen post_step: Begrüße die Welt mit Text, Fotos, Videos oder Umfragen. - post_title: Erstelle deinen ersten Beitrag + post_title: Starte mit deinem ersten Beitrag share_action: Teilen share_step: Lass deine Freund*innen wissen, wie sie dich auf Mastodon finden können. share_title: Teile dein Mastodon-Profil @@ -1936,8 +1936,8 @@ de: users: follow_limit_reached: Du kannst nicht mehr als %{limit} Profilen folgen go_to_sso_account_settings: Kontoeinstellungen des Identitätsanbieters aufrufen - invalid_otp_token: Ungültiger Code der Zwei-Faktor-Authentisierung - otp_lost_help_html: Wenn du beides nicht mehr weißt, melde dich bitte bei uns unter der E-Mail-Adresse %{email} + invalid_otp_token: Ungültiger Code der Zwei-Faktor-Authentisierung (2FA) + otp_lost_help_html: Wenn du sowohl die E-Mail-Adresse als auch das Passwort nicht mehr weißt, melde dich bitte bei uns unter %{email} rate_limited: Zu viele Authentisierungsversuche. Bitte versuche es später noch einmal. seamless_external_login: Du bist über einen externen Dienst angemeldet, daher sind Passwort- und E-Mail-Einstellungen nicht verfügbar. signed_in_as: 'Angemeldet als:' @@ -1947,7 +1947,7 @@ de: hint_html: "Alle können ihre Identität auf Mastodon verifizieren. Basierend auf offenen Standards – jetzt und für immer kostenlos. Alles, was du brauchst, ist eine eigene Website. Wenn du von deinem Profil auf diese Website verlinkst, überprüfen wir, ob die Website zu deinem Profil zurückverlinkt, und zeigen einen visuellen Hinweis an." instructions_html: Kopiere den unten stehenden Code und füge ihn in den HTML-Code deiner Website ein. Trage anschließend die Adresse deiner Website in ein Zusatzfeld auf deinem Profil ein und speichere die Änderungen. Die Zusatzfelder befinden sich im Reiter „Profil bearbeiten“. verification: Verifizierung - verified_links: Deine verifizierten Domains + verified_links: Deine verifizierten Links website_verification: Verifizierung einer Website webauthn_credentials: add: Sicherheitsschlüssel hinzufügen diff --git a/config/locales/devise.da.yml b/config/locales/devise.da.yml index c4a190ec6d..e13c6171fd 100644 --- a/config/locales/devise.da.yml +++ b/config/locales/devise.da.yml @@ -3,8 +3,8 @@ da: devise: confirmations: confirmed: Din e-mail er nu bekræftet. - send_instructions: Du skulle om få minutter modtage en e-mailvejledning til, hvordan din e-mailadresse bekræftes. Tjek spammappen, hvis e-mailen ikke ser ud til at lande i indbakken. - send_paranoid_instructions: Findes din e-mailadresse allerede i vores database, skulle du om få minutter modtage en e-mailvejledning til, hvordan din e-mailadresse bekræftes. Tjek spammappen, hvis e-mailen ikke ser ud til at lande i indbakken. + send_instructions: Du vil inden for få minutter modtage en e-mail med instruktioner om, hvordan du bekræfter din e-mailadresse. Tjek din spam-mappe, hvis du ikke har modtaget denne e-mail. + send_paranoid_instructions: Findes din e-mailadresse allerede i vores database, vil du om få minutter modtage en e-mailvejledning til, hvordan du bekræfter din e-mailadresse. Tjek din spam-mappe, hvis du ikke modtager denne e-mail. failure: already_authenticated: Du er allerede logget ind. inactive: Din konto er endnu ikke aktiveret. @@ -88,8 +88,8 @@ da: success: Godkendt fra %{kind}-konto. passwords: no_token: Denne side er kun tilgængelig via linket fra en e-mail til adgangskodenulstillings. Husk i den forbindelse at benytte den fuldstændige URL fra e-mailen. - send_instructions: Er din e-mailadresse allerede registreret, e-mailes du et link til adgangskodenulstilling. Tjek spammappen, hvis e-mailen ikke ses i indbakken indenfor få minutter. - send_paranoid_instructions: Er din e-mailadresse allerede registreret, e-mailes du et link til adgangskodenulstilling. Tjek spammappen, hvis e-mailen ikke ses i indbakken indenfor få minutter. + send_instructions: Hvis din e-mailadresse findes i vores database, vil du inden for få minutter modtage et link til adgangskodenulstilling på din e-mailadresse. Tjek din spam-mappe, hvis du ikke har modtaget denne e-mail. + send_paranoid_instructions: Hvis din e-mailadresse findes i vores database, vil du inden for få minutter modtage et link til adgangskodenulstilling på din e-mailadresse. Tjek din spam-mappe, hvis du ikke har modtaget denne e-mail. updated: Din adgangskode er skiftet, og du er nu logget ind. updated_not_active: Din adgangskode er skiftet. registrations: diff --git a/config/locales/devise.de.yml b/config/locales/devise.de.yml index f22f834e61..45ae7bb22e 100644 --- a/config/locales/devise.de.yml +++ b/config/locales/devise.de.yml @@ -27,7 +27,7 @@ de: subject: 'Mastodon: Anleitung zum Bestätigen deines Kontos auf %{instance}' title: Verifiziere deine E-Mail-Adresse email_changed: - explanation: 'Die E-Mail-Adresse deines Kontos wird geändert zu:' + explanation: 'Die E-Mail-Adresse deines Kontos wurde geändert zu:' extra: Wenn du deine E-Mail-Adresse nicht geändert hast, ist es wahrscheinlich, dass sich jemand Zugang zu deinem Konto verschafft hat. Bitte ändere sofort dein Passwort oder kontaktiere die Administrator*innen des Servers, wenn du aus deinem Konto ausgesperrt bist. subject: 'Mastodon: E-Mail-Adresse geändert' title: Neue E-Mail-Adresse diff --git a/config/locales/devise.el.yml b/config/locales/devise.el.yml index a9805c13af..9dfcba4c42 100644 --- a/config/locales/devise.el.yml +++ b/config/locales/devise.el.yml @@ -7,13 +7,13 @@ el: send_paranoid_instructions: Αν η διεύθυνση email σου υπάρχει στη βάση μας, θα λάβεις σε μερικά λεπτά ένα email με οδηγίες επιβεβαίωσης της διεύθυνσής σου. Παρακαλούμε έλεγξε το φάκελο με τα ανεπιθύμητα αν δεν το έχεις λάβει. failure: already_authenticated: Έχεις ήδη συνδεθεί. - inactive: Ο λογαριασμός σου δεν έχει ενεργοποιηθεί ακόμα. + inactive: Ο λογαριασμός σου δεν έχει ενεργοποιηθεί ακόμη. invalid: Λάθος %{authentication_keys} ή συνθηματικό. last_attempt: Έχεις μια ακόμα προσπάθεια πριν κλειδωθεί ο λογαριασμός σου. locked: Ο λογαριασμός σου κλειδώθηκε. not_found_in_database: Λάθος %{authentication_keys} ή συνθηματικό. omniauth_user_creation_failure: Σφάλμα δημιουργίας λογαριασμού για αυτήν την ταυτότητα. - pending: Εκκρεμεί η έγκριση του λογαριασμού σου. + pending: Εκκρεμεί ο έλεγχος του λογαριασμού σου. timeout: Η τρέχουσα σύνδεσή σου έληξε. Παρακαλούμε συνδέσου ξανά για να συνεχίσεις. unauthenticated: Πρέπει να συνδεθείς ή να εγγραφείς για να συνεχίσεις. unconfirmed: Πρέπει να επιβεβαιώσεις τη διεύθυνση email σου για να συνεχίσεις. @@ -22,7 +22,7 @@ el: action: Επιβεβαίωση διεύθυνσης email action_with_app: Επιβεβαίωση και επιστροφή στο %{app} explanation: Δημιούργησες έναν λογαριασμό στο %{host} με αυτή τη διεύθυνση email. Με ένα κλικ θα τον ενεργοποιήσεις. Αν δεν το έκανες εσύ, παρακαλούμε αγνόησε αυτό το email. - explanation_when_pending: Έχεις υποβάλλει αίτηση πρόσκλησης στο %{host} με αυτή την ηλεκτρονική διεύθυνση email. Μόλις επιβεβαιώσεις το email σου, θα ελέγξουμε την αίτηση σου. Μέχρι τότε δε θα μπορείς να συνδεθείς. Αν απορριφθεί η αίτησή σου, τα στοιχεία σου θα αφαιρεθούν, άρα δε θα χρειαστεί να κάνεις κάτι επιπλέον. Αν δεν υπέβαλες εσύ την αίτηση, αγνόησε αυτό το email. + explanation_when_pending: Έχεις υποβάλλει αίτηση πρόσκλησης στο %{host} με αυτή την διεύθυνση email. Μόλις επιβεβαιώσεις το email σου, θα ελέγξουμε την αίτηση σου. Μέχρι τότε δε θα μπορείς να συνδεθείς. Αν απορριφθεί η αίτησή σου, τα στοιχεία σου θα αφαιρεθούν, άρα δε θα χρειαστεί να κάνεις κάτι επιπλέον. Αν δεν υπέβαλες εσύ την αίτηση, αγνόησε αυτό το email. extra_html: Παρακαλούμε να διαβάσεις του κανόνες αυτού του κόμβου και τους όρους χρήσης της υπηρεσίας μας. subject: 'Mastodon: Οδηγίες επιβεβαίωσης για %{instance}' title: Επιβεβαίωσε διεύθυνση email @@ -95,9 +95,9 @@ el: registrations: destroyed: Αντίο! Ο λογαριασμός σου ακυρώθηκε με επιτυχία. Ελπίζουμε να σε ξαναδούμε σύντομα. signed_up: Καλώς ήρθες! Εγγράφηκες με επιτυχία. - signed_up_but_inactive: Εγγράφηκες με επιτυχία. Όμως δε μπορέσαμε να σε συνδέσουμε γιατί ο λογαριασμός σου δεν έχει ενεργοποιηθεί ακόμα. + signed_up_but_inactive: Εγγράφηκες με επιτυχία. Όμως δε μπορέσαμε να σε συνδέσουμε γιατί ο λογαριασμός σου δεν έχει ενεργοποιηθεί ακόμη. signed_up_but_locked: Εγγράφηκες με επιτυχία. Όμως δε μπορέσαμε να σε συνδέσουμε γιατί ο λογαριασμός σου είναι κλειδωμένος. - signed_up_but_pending: Στάλθηκε στο email σου μήνυμα με ένα σύνδεσμο επιβεβαίωσης. Μόλις τον ακολουθήσεις θα ελέγξουμε την αίτηση σου. Θα ειδοποιήσεις εάν γίνει δεκτή. + signed_up_but_pending: Στάλθηκε στο email σου μήνυμα με ένα σύνδεσμο επιβεβαίωσης. Αφότου τον ακολουθήσεις, θα ελέγξουμε την αίτησή σου. Θα ειδοποιηθείς εάν γίνει δεκτή. signed_up_but_unconfirmed: Σου στείλαμε ένα μήνυμα με σύνδεσμο επιβεβαίωσης στη διεύθυνση email σου. Παρακαλούμε ακολούθησε το σύνδεσμο για να ενεργοποιήσεις το λογαριασμό σου. Παρακαλούμε έλεγξε το φάκελο με τα ανεπιθύμητα μηνύματα σου αν δεν το λάβεις. update_needs_confirmation: Ενημέρωσες το λογαριασμό σου με επιτυχία αλλά χρειαζόμαστε να επιβεβαιώσουμε τη νέα διεύθυνση email σου. Παρακαλούμε έλεγξε τα email σου και ακολούθησε το σύνδεσμο για να την επιβεβαιώσεις. Παρακαλούμε έλεγξε το φάκελο με τα ανεπιθύμητα μηνύματα σου αν δεν το λάβεις. updated: Ο λογαριασμός σου επιβεβαιώθηκε με επιτυχία. diff --git a/config/locales/devise.en-GB.yml b/config/locales/devise.en-GB.yml index 3e8a534e1f..656054e25f 100644 --- a/config/locales/devise.en-GB.yml +++ b/config/locales/devise.en-GB.yml @@ -22,66 +22,66 @@ en-GB: action: Verify email address action_with_app: Confirm and return to %{app} explanation: You have created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email. - explanation_when_pending: You applied for an invite to %{host} with this email address. Once you confirm your e-mail address, we will review your application. You can log in to change your details or delete your account, but you cannot access most of the functions until your account is approved. If your application is rejected, your data will be removed, so no further action will be required from you. If this wasn't you, please ignore this email. + explanation_when_pending: You applied for an invite to %{host} with this email address. Once you confirm your email address, we will review your application. You can log in to change your details or delete your account, but you cannot access most of the functions until your account is approved. If your application is rejected, your data will be removed, so no further action will be required from you. If this wasn't you, please ignore this email. extra_html: Please also check out the rules of the server and our terms of service. - subject: 'Mastodon: Confirmation instructions for %{instance}' + subject: 'Mastodon: confirmation instructions for %{instance}' title: Verify email address email_changed: explanation: 'The email address for your account is being changed to:' extra: If you did not change your email, it is likely that someone has gained access to your account. Please change your password immediately or contact the server admin if you're locked out of your account. - subject: 'Mastodon: Email changed' + subject: 'Mastodon: email changed' title: New email address password_change: explanation: The password for your account has been changed. extra: If you did not change your password, it is likely that someone has gained access to your account. Please change your password immediately or contact the server admin if you're locked out of your account. - subject: 'Mastodon: Password changed' + subject: 'Mastodon: password changed' title: Password changed reconfirmation_instructions: explanation: Confirm the new address to change your email. extra: If this change wasn't initiated by you, please ignore this email. The email address for the Mastodon account won't change until you access the link above. - subject: 'Mastodon: Confirm email for %{instance}' + subject: 'Mastodon: confirm email for %{instance}' title: Verify email address reset_password_instructions: action: Change password explanation: You requested a new password for your account. extra: If you didn't request this, please ignore this email. Your password won't change until you access the link above and create a new one. - subject: 'Mastodon: Reset password instructions' + subject: 'Mastodon: reset password instructions' title: Password reset two_factor_disabled: - explanation: Login is now possible using only e-mail address and password. - subject: 'Mastodon: Two-factor authentication disabled' + explanation: Login is now possible using only email address and password. + subject: 'Mastodon: two-factor authentication disabled' subtitle: Two-factor authentication for your account has been disabled. title: 2FA disabled two_factor_enabled: explanation: A token generated by the paired TOTP app will be required for login. - subject: 'Mastodon: Two-factor authentication enabled' + subject: 'Mastodon: two-factor authentication enabled' subtitle: Two-factor authentication has been enabled for your account. title: 2FA enabled two_factor_recovery_codes_changed: explanation: The previous recovery codes have been invalidated and new ones generated. - subject: 'Mastodon: Two-factor recovery codes re-generated' + subject: 'Mastodon: two-factor recovery codes re-generated' subtitle: The previous recovery codes have been invalidated and new ones generated. title: 2FA recovery codes changed unlock_instructions: - subject: 'Mastodon: Unlock instructions' + subject: 'Mastodon: unlock instructions' webauthn_credential: added: explanation: The following security key has been added to your account - subject: 'Mastodon: New security key' + subject: 'Mastodon: new security key' title: A new security key has been added deleted: explanation: The following security key has been deleted from your account - subject: 'Mastodon: Security key deleted' + subject: 'Mastodon: security key deleted' title: One of your security keys has been deleted webauthn_disabled: explanation: Authentication with security keys has been disabled for your account. extra: Login is now possible using only the token generated by the paired TOTP app. - subject: 'Mastodon: Authentication with security keys disabled' + subject: 'Mastodon: authentication with security keys disabled' title: Security keys disabled webauthn_enabled: explanation: Security key authentication has been enabled for your account. extra: Your security key can now be used for login. - subject: 'Mastodon: Security key authentication enabled' + subject: 'Mastodon: security key authentication enabled' title: Security keys enabled omniauth_callbacks: failure: Could not authenticate you from %{kind} because “%{reason}”. diff --git a/config/locales/devise.es-AR.yml b/config/locales/devise.es-AR.yml index 6249294597..f628a93521 100644 --- a/config/locales/devise.es-AR.yml +++ b/config/locales/devise.es-AR.yml @@ -48,7 +48,7 @@ es-AR: subject: 'Mastodon: instrucciones para cambiar la contraseña' title: Cambiar contraseña two_factor_disabled: - explanation: Ahora es posible iniciar sesión utilizando sólo la dirección de correo electrónico y la contraseña. + explanation: Ahora es posible iniciar sesión utilizando solo la dirección de correo electrónico y la contraseña. subject: 'Mastodon: autenticación de dos factores, deshabilitada' subtitle: Se deshabilitó la autenticación de dos factores para tu cuenta. title: 2FA deshabilitada @@ -75,7 +75,7 @@ es-AR: title: Se eliminó una de tus llaves de seguridad webauthn_disabled: explanation: Se deshabilitó la autenticación con claves de seguridad para tu cuenta. - extra: Ahora es posible iniciar sesión utilizando sólo la clave numérica ("token") generada por la aplicación TOTP emparejada. + extra: Ahora es posible iniciar sesión utilizando solo la clave numérica ("token") generada por la aplicación TOTP emparejada. subject: 'Mastodon: autenticación con llaves de seguridad, deshabilitada' title: Llaves de seguridad deshabilitadas webauthn_enabled: diff --git a/config/locales/devise.et.yml b/config/locales/devise.et.yml index 9f974f7771..b04a012631 100644 --- a/config/locales/devise.et.yml +++ b/config/locales/devise.et.yml @@ -28,23 +28,23 @@ et: title: Kinnita e-postiaadress email_changed: explanation: 'Sinu konto e-postiaadress muudetakse:' - extra: Kui sa ei muutnud oma e-posti, on tõenäoline, et kellelgi on ligipääs su kontole. Palun muuda koheselt oma salasõna. Kui oled aga oma kontost välja lukustatud, võta ühendust oma serveri administraatoriga. + extra: Kui sa ei muutnud oma e-posti, on tõenäoline, et kellelgi on ligipääs su kontole. Palun muuda koheselt oma salasõna. Kui oled aga oma kontole ligipääsu kaotanud, palun võta kohe ühendust oma serveri haldajaga. subject: 'Mastodon: e-post muudetud' title: Uus e-postiaadress password_change: explanation: Konto salasõna on vahetatud. extra: Kui sa ei muutnud oma salasõna, on tõenäoline, et keegi on su kontole ligi pääsenud. Palun muuda viivitamata oma salasõna. Kui sa oma kontole ligi ei pääse, võta ühendust serveri haldajaga. - subject: 'Mastodon: salasõna muudetud' - title: Salasõna muudetud + subject: 'Mastodon: salasõna on muudetud' + title: Salasõna on muudetud reconfirmation_instructions: explanation: Kinnita uus aadress, et oma e-posti aadress muuta. extra: Kui see muudatus pole sinu poolt algatatud, palun eira seda kirja. Selle Mastodoni konto e-postiaadress ei muutu enne, kui vajutad üleval olevale lingile. subject: 'Mastodon: kinnita e-postiaadress %{instance} jaoks' title: Kinnita e-postiaadress reset_password_instructions: - action: Salasõna muutmine - explanation: Kontole on küsitud uut salasõna. - extra: Kui see tuleb üllatusena, võib seda kirja eirata. Salasõna ei muutu enne ülaoleva lingi külastamist ja uue salasõna määramist. + action: Muuda salasõna + explanation: Sa palusid oma kasutajakontole luua uus salasõna. + extra: Kui see tuleb üllatusena, võid seda kirja eirata. Salasõna ei muutu enne ülaoleva lingi külastamist ja uue salasõna sisestamist. subject: 'Mastodon: salasõna lähtestamisjuhendid' title: Salasõna lähtestamine two_factor_disabled: diff --git a/config/locales/devise.fi.yml b/config/locales/devise.fi.yml index 61d58981d8..ce9f9aacff 100644 --- a/config/locales/devise.fi.yml +++ b/config/locales/devise.fi.yml @@ -46,7 +46,7 @@ fi: explanation: Pyysit tilillesi uuden salasanan. extra: Jos et tehnyt pyyntöä itse, voit jättää tämän viestin huomiotta. Salasanaasi ei vaihdeta, ennen kuin painat edellä olevaa linkkiä ja luot uuden salasanan. subject: 'Mastodon: ohjeet salasanan vaihtoon' - title: Salasanan vaihto + title: Salasanan palautus two_factor_disabled: explanation: Sisäänkirjautuminen on nyt mahdollista pelkällä sähköpostiosoitteella ja salasanalla. subject: 'Mastodon: kaksivaiheinen todennus poistettu käytöstä' diff --git a/config/locales/devise.fr.yml b/config/locales/devise.fr.yml index 631a2eee6f..0554af1f8a 100644 --- a/config/locales/devise.fr.yml +++ b/config/locales/devise.fr.yml @@ -23,7 +23,7 @@ fr: action_with_app: Confirmer et retourner à %{app} explanation: Vous avez créé un compte sur %{host} avec cette adresse courriel. Vous êtes à un clic de l’activer. Si ce n’était pas vous, veuillez ignorer ce courriel. explanation_when_pending: Vous avez demandé à vous inscrire à %{host} avec cette adresse de courriel. Une fois que vous aurez confirmé cette adresse, nous étudierons votre demande. Vous ne pourrez pas vous connecter d’ici-là. Si votre demande est refusée, vos données seront supprimées du serveur, aucune action supplémentaire de votre part n’est donc requise. Si vous n’êtes pas à l’origine de cette demande, veuillez ignorer ce message. - extra_html: Merci de consultez également les règles du serveur et nos conditions d’utilisation. + extra_html: Veuillez également consulter les règles du serveur et nos conditions d'utilisation. subject: 'Mastodon : Merci de confirmer votre inscription sur %{instance}' title: Vérifiez l’adresse de courriel email_changed: diff --git a/config/locales/devise.ko.yml b/config/locales/devise.ko.yml index 7ba5ffb9c8..1c5b0c9097 100644 --- a/config/locales/devise.ko.yml +++ b/config/locales/devise.ko.yml @@ -21,7 +21,7 @@ ko: confirmation_instructions: action: 이메일 확인 action_with_app: 확인하고 %{app}으로 돌아가기 - explanation: 당신은 %{host}에서 이 이메일로 가입하셨습니다. 클릭만 하시면 계정이 활성화 됩니다. 만약 당신이 가입한 게 아니라면 이 메일을 무시해 주세요. + explanation: "%{host}에서 이 이메일로 계정을 만드셨습니다. 한 번의 클릭만 하면 계정을 활성화합니다. 만약 당사자가 아니라면 이 이메일을 무시하시기 바랍니다." explanation_when_pending: 당신은 %{host}에 가입 요청을 하셨습니다. 이 이메일이 확인 되면 우리가 가입 요청을 리뷰하고 승인할 수 있습니다. 그 전까지는 로그인을 할 수 없습니다. 당신의 가입 요청이 거부 될 경우 당신에 대한 정보는 모두 삭제 되며 따로 요청 할 필요는 없습니다. 만약 당신이 가입 요청을 한 게 아니라면 이 메일을 무시해 주세요. extra_html: 서버의 규칙이용 약관도 확인해 주세요. subject: '마스토돈: %{instance}에 대한 확인 메일' diff --git a/config/locales/devise.lv.yml b/config/locales/devise.lv.yml index b95f93b1d2..628917cda4 100644 --- a/config/locales/devise.lv.yml +++ b/config/locales/devise.lv.yml @@ -9,8 +9,8 @@ lv: already_authenticated: Tu jau pieteicies. inactive: Tavs konts vēl nav aktivizēts. invalid: Nederīga %{authentication_keys} vai parole. - last_attempt: Tev ir vēl viens mēģinājums, pirms tavs konts tiks bloķēts. - locked: Tavs konts ir bloķēts. + last_attempt: Tev ir vēl viens mēģinājums, pirms Tavs konts tiks slēgts. + locked: Tavs konts ir slēgts. not_found_in_database: Nederīga %{authentication_keys} vai parole. omniauth_user_creation_failure: Kļūda šīs identitātes konta izveidošanā. pending: Tavs konts joprojām tiek pārskatīts. @@ -63,7 +63,7 @@ lv: subtitle: Iepriekšējie atkopes kodi tika padarīti par nederīgiem, un tika izveidoti jauni. title: 2FA atkopes kodi nomainīti unlock_instructions: - subject: 'Mastodon: Norādījumi atbloķēšanai' + subject: 'Mastodon: atslēgšanas norādes' webauthn_credential: added: explanation: Tavam kontam ir pievienota šāda drošības atslēga @@ -115,7 +115,7 @@ lv: confirmation_period_expired: jāapstiprina %{period} laikā, lūdzu, pieprasi jaunu expired: ir beidzies derīguma termiņš, lūdzu, pieprasi jaunu not_found: nav atrasts - not_locked: nebija bloķēts + not_locked: nebija slēgts not_saved: one: '1 kļūda liedza saglabāt šo %{resource}:' other: "%{count} kļūdas liedza saglabāt šo %{resource}:" diff --git a/config/locales/devise.nan-TW.yml b/config/locales/devise.nan-TW.yml new file mode 100644 index 0000000000..13ee060054 --- /dev/null +++ b/config/locales/devise.nan-TW.yml @@ -0,0 +1,23 @@ +--- +nan-TW: + devise: + failure: + locked: Lí ê口座hőng鎖定ah。 + not_found_in_database: Bô ha̍p規定ê %{authentication_keys} á是密碼。 + pending: Lí ê口座iáu teh審查。 + timeout: Lí ê作業階段kàu期ah。請koh登入,繼續完成。 + mailer: + confirmation_instructions: + extra_html: Mā請斟酌讀服侍器規定kap服務規定。 + two_factor_disabled: + title: 雙因素認證關掉ah + two_factor_enabled: + title: 雙因素認證啟用ah + two_factor_recovery_codes_changed: + title: 雙因素認證ê恢復碼改ah + registrations: + signed_up: 歡迎!Lí成功註冊ah。 + signed_up_but_inactive: Lí成功註冊ah。M̄-kú,你ê口座iáu-buē啟用,guán bē-tàng hōo lí登入。 + signed_up_but_locked: Lí成功註冊ah。M̄-kú,你ê口座hőng鎖定,guán bē-tàng hōo lí登入。 + signed_up_but_pending: 有確認連結ê訊息,已經寄kàu lí ê電子phue箱ah。Tshi̍h連結了後,guán ē審查你ê申請。Nā核准就通知lí。 + signed_up_but_unconfirmed: 有確認連結ê訊息,已經寄kàu lí ê電子phue箱ah。請跟tuè連結來啟用口座。Nā無收著,請檢查lí ê pùn-sò批資料giap-á。 diff --git a/config/locales/doorkeeper.de.yml b/config/locales/doorkeeper.de.yml index 6d0e3010af..e96eb765a6 100644 --- a/config/locales/doorkeeper.de.yml +++ b/config/locales/doorkeeper.de.yml @@ -72,12 +72,12 @@ de: revoke: Bist du dir sicher? index: authorized_at: Autorisiert am %{date} - description_html: Dies sind Anwendungen, die über die Programmierschnittstelle (API) auf dein Konto zugreifen können. Wenn es Anwendungen gibt, die du hier nicht zuordnen kannst oder wenn sich eine Anwendung verdächtig verhält, kannst du den Zugriff widerrufen. + description_html: Dies sind Apps, die über die Programmierschnittstelle (API) auf dein Konto zugreifen können. Sollten hier Apps aufgeführt sein, die du nicht erkennst oder die sich verdächtig verhalten, solltest du den Zugriff schnellstmöglich widerrufen. last_used_at: Zuletzt verwendet am %{date} never_used: Nie verwendet scopes: Berechtigungen superapp: Intern - title: Deine autorisierten Anwendungen + title: Deine genehmigten Apps errors: messages: access_denied: Diese Anfrage wurde von den Inhaber*innen oder durch den Autorisierungsserver abgelehnt. @@ -101,7 +101,7 @@ de: temporarily_unavailable: Der Autorisierungs-Server ist aufgrund von zwischenzeitlicher Überlastung oder Wartungsarbeiten derzeit nicht in der Lage, die Anfrage zu bearbeiten. unauthorized_client: Der Client ist nicht dazu autorisiert, diese Anfrage mit dieser Methode auszuführen. unsupported_grant_type: Der Autorisierungs-Typ wird nicht vom Autorisierungs-Server unterstützt. - unsupported_response_type: Der Autorisierungs-Server unterstützt diesen Antwort-Typ nicht. + unsupported_response_type: Der Autorisierungsserver unterstützt dieses Antwortformat nicht. flash: applications: create: @@ -122,7 +122,7 @@ de: accounts: Konten admin/accounts: Kontenverwaltung admin/all: Alle administrativen Funktionen - admin/reports: Meldungen verwalten + admin/reports: Meldungen all: Voller Zugriff auf dein Mastodon-Konto blocks: Blockierungen bookmarks: Lesezeichen diff --git a/config/locales/doorkeeper.el.yml b/config/locales/doorkeeper.el.yml index 984eff8871..73fddc9a20 100644 --- a/config/locales/doorkeeper.el.yml +++ b/config/locales/doorkeeper.el.yml @@ -97,11 +97,11 @@ el: revoked: Το διακριτικό πρόσβασης ανακλήθηκε unknown: Το διακριτικό πρόσβασης δεν είναι έγκυρο resource_owner_authenticator_not_configured: Η αναζήτηση του ιδιοκτήτη του πόρου απέτυχε επειδή το Doorkeeper.configure.resource_owner_authenticator δεν έχει ρυθμιστεί. - server_error: Ο εξυπηρετητής έγκρισης αντιμετώπισε μια απροσδόκητη συνθήκη που τον απέτρεψε να ικανοποιήσει το αίτημα. - temporarily_unavailable: Ο εξυπηρετητής έγκρισης προς το παρόν δεν είναι δυνατό να αναλάβει το αίτημα λόγω προσωρινής υπερφόρτωσης ή συντήρησής του. + server_error: Ο διακομιστής έγκρισης αντιμετώπισε μια απροσδόκητη συνθήκη που τον απέτρεψε να ικανοποιήσει το αίτημα. + temporarily_unavailable: Ο διακομιστής έγκρισης προς το παρόν δεν είναι δυνατό να αναλάβει το αίτημα λόγω προσωρινής υπερφόρτωσης ή συντήρησής του. unauthorized_client: Ο πελάτης δεν έχει άδεια να εκτελέσει αυτό το αίτημα χρησιμοποιώντας αυτή τη μέθοδο. - unsupported_grant_type: Το είδος άδειας έγκρισης δεν υποστηρίζεται από τον εξυπηρετητή έγκρισης. - unsupported_response_type: Ο εξυπηρετητής έγκρισης δεν υποστηρίζει αυτό το είδος απάντησης. + unsupported_grant_type: Το είδος άδειας έγκρισης δεν υποστηρίζεται από τον διακομιστή έγκρισης. + unsupported_response_type: Ο διακομιστής έγκρισης δεν υποστηρίζει αυτό το είδος απάντησης. flash: applications: create: @@ -137,7 +137,7 @@ el: mutes: Σιγάσεις notifications: Ειδοποιήσεις profile: Το προφίλ σου στο Mastodon - push: Άμεσες ειδοποιήσεις + push: Push ειδοποιήσεις reports: Αναφορές search: Αναζήτηση statuses: Αναρτήσεις @@ -158,22 +158,22 @@ el: admin:read:ip_blocks: ανάγνωση ευαίσθητων πληροφοριών όλων των αποκλεισμένων IP admin:read:reports: ανάγνωση ευαίσθητων πληροφοριών όλων των αναφορών και των αναφερομένων λογαριασμών admin:write: τροποποίηση όλων των δεδομένων στον διακομιστή - admin:write:accounts: εκτέλεση συντονιστικών ενεργειών σε λογαριασμούς + admin:write:accounts: εκτέλεση ενεργειών συντονισμού σε λογαριασμούς admin:write:canonical_email_blocks: εκτέλεση ενεργειών συντονισμού σε αποκλεισμένα email admin:write:domain_allows: εκτέλεση ενεργειών συντονισμού σε επιτρεπτούς τομείς admin:write:domain_blocks: εκτέλεση ενεργειών συντονισμού σε αποκλεισμένους τομείς - admin:write:email_domain_blocks: εκτέλεση ενέργειες συντονισμού σε αποκλεισμένους τομείς email + admin:write:email_domain_blocks: εκτέλεση ενεργειών συντονισμού σε αποκλεισμένους τομείς email admin:write:ip_blocks: εκτέλεση ενεργειών συντονισμού σε αποκλεισμένες IP admin:write:reports: εκτέλεση ενεργειών συντονισμού σε αναφορές crypto: χρήση κρυπτογράφησης από άκρο σε άκρο - follow: τροποποίηση σχέσεων λογαριασμών + follow: τροποποίηση σχέσεων λογαριασμού profile: ανάγνωση μόνο των πληροφοριών προφίλ του λογαριασμού σου - push: λήψη των ειδοποιήσεων σου - read: ανάγνωση όλων των στοιχείων του λογαριασμού σου + push: λήψη των ειδοποιήσεων push σου + read: ανάγνωση όλων των δεδομένων του λογαριασμού σου read:accounts: προβολή πληροφοριών λογαριασμών read:blocks: προβολή των αποκλεισμών σου read:bookmarks: προβολή των σελιδοδεικτών σου - read:favourites: προβολή των αγαπημένα σου + read:favourites: προβολή των αγαπημένων σου read:filters: προβολή των φίλτρων σου read:follows: προβολή αυτών που ακολουθείς read:lists: προβολή των λιστών σου @@ -181,18 +181,18 @@ el: read:notifications: προβολή των ειδοποιήσεων σου read:reports: προβολή των αναφορών σου read:search: αναζήτηση εκ μέρους σου - read:statuses: να βλέπει όλες τις δημοσιεύσεις σου - write: να αλλάζει όλα τα στοιχεία του λογαριασμού σου - write:accounts: να αλλάζει το προφίλ σου - write:blocks: να μπλοκάρει λογαριασμούς και τομείς + read:statuses: προβολή όλων των αναρτήσεων + write: τροποποίηση όλων των δεδομένων του λογαριασμού σου + write:accounts: τροποποίηση του προφίλ σου + write:blocks: αποκλεισμός λογαριασμών και τομέων write:bookmarks: προσθήκη σελιδοδεικτών write:conversations: σίγαση και διαγραφή συνομιλιών - write:favourites: αγαπημένες αναρτήσεις - write:filters: να δημιουργεί φίλτρα - write:follows: ακολουθήστε ανθρώπους + write:favourites: αγαπά αναρτήσεις + write:filters: δημιουργία φίλτρων + write:follows: ακολούθηση ατόμων write:lists: δημιουργία λιστών write:media: να ανεβάζει πολυμέσα - write:mutes: να αποσιωπεί ανθρώπους και συζητήσεις - write:notifications: να καθαρίζει τις ειδοποιήσεις σου - write:reports: να καταγγέλλει άλλους ανθρώπους - write:statuses: να κάνει δημοσιεύσεις + write:mutes: σίγαση ατόμων και συνομιλιών + write:notifications: καθαρισμός των ειδοποιήσεων σου + write:reports: αναφορά άλλων ατόμων + write:statuses: δημοσίευση αναρτήσεων diff --git a/config/locales/doorkeeper.en-GB.yml b/config/locales/doorkeeper.en-GB.yml index 63a4575e83..5b4b99858c 100644 --- a/config/locales/doorkeeper.en-GB.yml +++ b/config/locales/doorkeeper.en-GB.yml @@ -96,7 +96,7 @@ en-GB: expired: The access token expired revoked: The access token was revoked unknown: The access token is invalid - resource_owner_authenticator_not_configured: Resource Owner find failed due to Doorkeeper.configure.resource_owner_authenticator being unconfiged. + resource_owner_authenticator_not_configured: Resource Owner find failed due to Doorkeeper.configure.resource_owner_authenticator being unconfigured. server_error: The authorisation server encountered an unexpected condition which prevented it from fulfilling the request. temporarily_unavailable: The authorisation server is currently unable to handle the request due to a temporary overloading or maintenance of the server. unauthorized_client: The client is not authorised to perform this request using this method. @@ -130,7 +130,7 @@ en-GB: crypto: End-to-end encryption favourites: Favourites filters: Filters - follow: Follows, Mutes and Blocks + follow: Follows, Mutes, and Blocks follows: Follows lists: Lists media: Media attachments diff --git a/config/locales/doorkeeper.es-AR.yml b/config/locales/doorkeeper.es-AR.yml index a6e1a46b80..11207c2178 100644 --- a/config/locales/doorkeeper.es-AR.yml +++ b/config/locales/doorkeeper.es-AR.yml @@ -25,7 +25,7 @@ es-AR: edit: Editar submit: Enviar confirmations: - destroy: "¿Estás seguro?" + destroy: "¿Continuar?" edit: title: Editar aplicación form: @@ -69,7 +69,7 @@ es-AR: buttons: revoke: Revocar confirmations: - revoke: "¿Estás seguro?" + revoke: "¿Continuar?" index: authorized_at: Autorizado el %{date} description_html: Estas son aplicaciones que pueden acceder a tu cuenta usando la API. Si hay aplicaciones que no reconocés acá, o que funcionan de forma sospechosa, podés revocar su acceso. @@ -115,9 +115,9 @@ es-AR: notice: Aplicación revocada. grouped_scopes: access: - read: Acceso de sólo lectura + read: Acceso de solo lectura read/write: Acceso de lectura y escritura - write: Acceso de sólo escritura + write: Acceso de solo escritura title: accounts: Cuentas admin/accounts: Administración de cuentas diff --git a/config/locales/doorkeeper.es-MX.yml b/config/locales/doorkeeper.es-MX.yml index eaf1bf69fb..7e3e39b9cd 100644 --- a/config/locales/doorkeeper.es-MX.yml +++ b/config/locales/doorkeeper.es-MX.yml @@ -72,8 +72,8 @@ es-MX: revoke: "¿Está seguro?" index: authorized_at: Autorizado el %{date} - description_html: Estas son aplicaciones que pueden acceder a tu cuenta utilizando la API. Si hay alguna aplicación que no reconozcas aquí, o una aplicación esta teniendo comportamientos extraños, puedes revocar el acceso. - last_used_at: Usado por ultima vez el %{date} + description_html: Estas son aplicaciones que pueden acceder a tu cuenta mediante la API. Si hay aplicaciones que no reconoces aquí, o si alguna aplicación no funciona correctamente, puedes revocar su acceso. + last_used_at: Última vez utilizado el %{date} never_used: Nunca usado scopes: Permisos superapp: Interno @@ -82,7 +82,7 @@ es-MX: messages: access_denied: El propietario del recurso o servidor de autorización denegó la petición. credential_flow_not_configured: Las credenciales de contraseña del propietario del recurso falló debido a que Doorkeeper.configure.resource_owner_from_credentials está sin configurar. - invalid_client: La autentificación del cliente falló ya que es un cliente desconocido, no está incluída la autentificación del cliente o el método de autentificación no es compatible. + invalid_client: La autenticación del cliente falló debido a un cliente desconocido, no se incluyó la autenticación del cliente o el método de autenticación no es compatible. invalid_code_challenge_method: El método de desafío de código debe ser S256, «plain» no está soportado. invalid_grant: La concesión de autorización ofrecida es inválida, venció, se revocó, no coincide con la URI de redirección utilizada en la petición de autorización, o fue emitida para otro cliente. invalid_redirect_uri: La URI de redirección incluida no es válida. @@ -97,7 +97,7 @@ es-MX: revoked: El autentificador de acceso fue revocado unknown: El autentificador de acceso es inválido resource_owner_authenticator_not_configured: El propietario del recurso falló debido a que Doorkeeper.configure.resource_owner_authenticator está sin configurar. - server_error: El servidor de la autorización entontró una condición inesperada que le impidió cumplir con la solicitud. + server_error: El servidor de autorización encontró una condición inesperada que le impidió completar la solicitud. temporarily_unavailable: El servidor de la autorización es actualmente incapaz de manejar la petición debido a una sobrecarga temporal o un trabajo de mantenimiento del servidor. unauthorized_client: El cliente no está autorizado a realizar esta petición utilizando este método. unsupported_grant_type: El tipo de concesión de autorización no está soportado por el servidor de autorización. @@ -117,7 +117,7 @@ es-MX: access: read: Acceso de solo lectura read/write: Acceso de lectura y escritura - write: Acceso de sólo escritura + write: Acceso de solo escritura title: accounts: Cuentas admin/accounts: Administración de cuentas @@ -139,7 +139,7 @@ es-MX: profile: Tu perfil de Mastodon push: Notificaciones push reports: Reportes - search: Busqueda + search: Búsqueda statuses: Publicaciones layouts: admin: diff --git a/config/locales/doorkeeper.et.yml b/config/locales/doorkeeper.et.yml index b21afa9a79..df10f9a0ce 100644 --- a/config/locales/doorkeeper.et.yml +++ b/config/locales/doorkeeper.et.yml @@ -130,11 +130,11 @@ et: crypto: Otspunktkrüpteerimine favourites: Lemmikud filters: Filtrid - follow: Jälgitavad, Vaigistatud ja Blokeeritud + follow: Jälgitavad, summutamised ja blokeerimised follows: Jälgimised lists: Loetelud media: Lisatud meedia - mutes: Vaigistused + mutes: Summutamised notifications: Teavitused profile: Sinu Mastodoni profiil push: Tõuketeated @@ -177,7 +177,7 @@ et: read:filters: näha su filtreid read:follows: näha su jälgimisi read:lists: näha su loetelusid - read:mutes: näha su vaigistusi + read:mutes: näha su summutamisi read:notifications: näha teateid read:reports: näha teavitusi read:search: otsida sinu nimel @@ -186,13 +186,13 @@ et: write:accounts: muuta profiili write:blocks: kontode ja domeenide blokeerimine write:bookmarks: lisada postitusele järjehoidja - write:conversations: vaigista ja kustuta vestlused + write:conversations: summuta ja kustuta vestlused write:favourites: lisada postitusi lemmikuks write:filters: luua filtreid write:follows: jälgida inimesi write:lists: luua loetelusid write:media: üles laadida meediafaile - write:mutes: vaigista inimesi ja vestluseid + write:mutes: summuta inimesi ja vestluseid write:notifications: tühjendada teateid write:reports: teavitada teistest inimestest write:statuses: avaldada postitusi diff --git a/config/locales/doorkeeper.fi.yml b/config/locales/doorkeeper.fi.yml index 7b80882af0..39812d52e4 100644 --- a/config/locales/doorkeeper.fi.yml +++ b/config/locales/doorkeeper.fi.yml @@ -43,7 +43,7 @@ fi: new: Uusi sovellus scopes: Oikeudet show: Näytä - title: Omat sovelluksesi + title: Omat sovellukset new: title: Uusi sovellus show: @@ -127,7 +127,7 @@ fi: blocks: Estot bookmarks: Kirjanmerkit conversations: Keskustelut - crypto: Päästä päähän -salaus + crypto: Päästä päähän -⁠salaus favourites: Suosikit filters: Suodattimet follow: Seurattavat, mykistykset ja estot @@ -165,7 +165,7 @@ fi: admin:write:email_domain_blocks: suorita moderointitoimia estetyille sähköpostiverkkotunnuksille admin:write:ip_blocks: suorita moderointitoimia estetyille IP-osoitteille admin:write:reports: suorita moderointitoimia raporteille - crypto: käytä päästä päähän -salausta + crypto: käytä päästä päähän -⁠salausta follow: muokkaa tilin seurantasuhteita profile: lue vain tilisi profiilitietoja push: vastaanota puskuilmoituksesi diff --git a/config/locales/doorkeeper.lv.yml b/config/locales/doorkeeper.lv.yml index 4b8116e6af..a3d8902af4 100644 --- a/config/locales/doorkeeper.lv.yml +++ b/config/locales/doorkeeper.lv.yml @@ -124,13 +124,13 @@ lv: admin/all: Visas administrēšanas funkcijas admin/reports: Ziņojumu pārvaldīšana all: Pilna piekļuve Tavam Mastodon kontam - blocks: Bloķētie + blocks: Liegtie bookmarks: Grāmatzīmes conversations: Sarunas crypto: Pilnīga šifrēšana favourites: Izlase filters: Filtri - follow: Seko, apklusina un liedz + follow: Sekojumi, apklusināšanas un liegumi follows: Seko lists: Saraksti media: Multividesu pielikumi @@ -184,7 +184,7 @@ lv: read:statuses: skatīt visus ierakstus write: labot visus sava konta datus write:accounts: labot manu profilu - write:blocks: bloķēt kontus un domēnus + write:blocks: liegt kontus un domēnus write:bookmarks: pievienotās grāmatzīmes write:conversations: apklusināt un dzēst sarunas write:favourites: iecienītākās ziņas diff --git a/config/locales/doorkeeper.nan-TW.yml b/config/locales/doorkeeper.nan-TW.yml new file mode 100644 index 0000000000..e0f5429d82 --- /dev/null +++ b/config/locales/doorkeeper.nan-TW.yml @@ -0,0 +1,17 @@ +--- +nan-TW: + activerecord: + attributes: + doorkeeper/application: + name: 應用程式ê名 + redirect_uri: 重轉ê URI + scopes: 範圍 + website: 應用程式ê網站 + errors: + models: + doorkeeper/application: + attributes: + redirect_uri: + invalid_uri: Tio̍h愛是合規定ê URI。 + relative_uri: Tio̍h愛是絕對ê URI。 + secured_uri: Tio̍h愛是HTTPS/SSL URI。 diff --git a/config/locales/doorkeeper.no.yml b/config/locales/doorkeeper.no.yml index 7b7b9d6534..59874904b2 100644 --- a/config/locales/doorkeeper.no.yml +++ b/config/locales/doorkeeper.no.yml @@ -60,6 +60,7 @@ error: title: En feil oppstod new: + prompt_html: "%{client_name} ønsker tilgang til kontoen din. Godkjenn denne forespørselen kun hvis du kjenner igjen og stoler på denne kilden." review_permissions: Gå gjennom tillatelser title: Autorisasjon påkrevd show: @@ -134,6 +135,7 @@ media: Mediavedlegg mutes: Dempinger notifications: Varslinger + profile: Din Mastodon-profil push: Push-varslinger reports: Rapporteringer search: Søk diff --git a/config/locales/doorkeeper.pt-BR.yml b/config/locales/doorkeeper.pt-BR.yml index a92819bf68..816887a436 100644 --- a/config/locales/doorkeeper.pt-BR.yml +++ b/config/locales/doorkeeper.pt-BR.yml @@ -180,7 +180,7 @@ pt-BR: read:mutes: ver seus silenciados read:notifications: ver suas notificações read:reports: ver suas denúncias - read:search: pesquisar em seu nome + read:search: buscar em seu nome read:statuses: ver todos os toots write: alterar todos os dados da sua conta write:accounts: alterar seu perfil diff --git a/config/locales/doorkeeper.pt-PT.yml b/config/locales/doorkeeper.pt-PT.yml index 6285794aa5..ae7dc28b62 100644 --- a/config/locales/doorkeeper.pt-PT.yml +++ b/config/locales/doorkeeper.pt-PT.yml @@ -125,7 +125,7 @@ pt-PT: admin/reports: Administração de denúncias all: Acesso total à sua conta Mastodon blocks: Bloqueios - bookmarks: Marcadores + bookmarks: Itens Salvos conversations: Conversas crypto: Encriptação ponta a ponta favourites: Favoritos @@ -172,7 +172,7 @@ pt-PT: read: ler todos os dados da tua conta read:accounts: ver as informações da conta read:blocks: ver os teus bloqueios - read:bookmarks: ver os teus marcadores + read:bookmarks: ver os seus itens salvos read:favourites: ver os teus favoritos read:filters: ver os teus filtros read:follows: ver quem segues @@ -185,7 +185,7 @@ pt-PT: write: alterar todos os dados da tua conta write:accounts: alterar o teu perfil write:blocks: bloquear contas e domínios - write:bookmarks: marcar publicações + write:bookmarks: salvar publicações write:conversations: ocultar e eliminar conversas write:favourites: assinalar como favoritas write:filters: criar filtros diff --git a/config/locales/doorkeeper.vi.yml b/config/locales/doorkeeper.vi.yml index f173e2fae8..25bf7b6689 100644 --- a/config/locales/doorkeeper.vi.yml +++ b/config/locales/doorkeeper.vi.yml @@ -130,11 +130,11 @@ vi: crypto: Mã hóa đầu cuối favourites: Lượt thích filters: Bộ lọc - follow: Theo dõi, Ẩn và Chặn + follow: Theo dõi, Phớt lờ và Chặn follows: Đang theo dõi lists: Danh sách media: Tập tin đính kèm - mutes: Đã ẩn + mutes: Đã phớt lờ notifications: Thông báo profile: Hồ sơ Mastodon của bạn push: Thông báo đẩy @@ -177,7 +177,7 @@ vi: read:filters: xem bộ lọc read:follows: xem những người theo dõi read:lists: xem danh sách - read:mutes: xem những người đã ẩn + read:mutes: xem những tài khoản đã phớt lờ read:notifications: xem thông báo read:reports: xem báo cáo của bạn read:search: tìm kiếm @@ -186,13 +186,13 @@ vi: write:accounts: sửa đổi trang hồ sơ write:blocks: chặn người và máy chủ write:bookmarks: sửa đổi những tút lưu - write:conversations: ẩn và xóa thảo luận + write:conversations: phớt lờ và xóa thảo luận write:favourites: thích tút write:filters: tạo bộ lọc write:follows: theo dõi ai đó write:lists: tạo danh sách write:media: tải lên tập tin - write:mutes: ẩn người và thảo luận + write:mutes: phớt lờ tài khoản và thảo luận write:notifications: xóa thông báo write:reports: báo cáo write:statuses: đăng tút diff --git a/config/locales/el.yml b/config/locales/el.yml index 587effee73..bd54eabbac 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -106,7 +106,7 @@ el: no_limits_imposed: Χωρίς όρια no_role_assigned: Δεν έχει ανατεθεί ρόλος not_subscribed: Δεν έγινε εγγραφή - pending: Εκκρεμεί αξιολόγηση + pending: Εκκρεμεί έλεγχος perform_full_suspension: Αναστολή previous_strikes: Προηγούμενα παραπτώματα previous_strikes_description_html: @@ -142,7 +142,7 @@ el: only_password: Μόνο κωδικός πρόσβασης password_and_2fa: Κωδικός πρόσβασης και 2FA sensitive: Ευαίσθητο - sensitized: Επισημάνθηκε ως ευαίσθητος + sensitized: Σημάνθηκε ως ευαίσθητος shared_inbox_url: URL κοινόχρηστων εισερχομένων show: created_reports: Αναφορές από τον ίδιο @@ -233,7 +233,7 @@ el: update_status: Ενημέρωση Ανάρτησης update_user_role: Ενημέρωση ρόλου actions: - approve_appeal_html: Ο/Η %{name} ενέκρινε την ένσταση της απόφασης των συντονιστών από %{target} + approve_appeal_html: Ο/Η %{name} ενέκρινε την έφεση της απόφασης των συντονιστών από %{target} approve_user_html: Ο/Η %{name} ενέκρινε την εγγραφή του χρήστη %{target} assigned_to_self_report_html: Ο/Η %{name} ανάθεσε την αναφορά %{target} στον εαυτό του/της change_email_user_html: Ο χρήστης %{name} άλλαξε τη διεύθυνση email του χρήστη %{target} @@ -270,19 +270,19 @@ el: enable_user_html: Ο/Η %{name} ενεργοποίησε τη σύνδεση για τον χρήστη %{target} memorialize_account_html: O/H %{name} μετέτρεψε τον λογαριασμό του %{target} σε σελίδα εις μνήμην promote_user_html: Ο/Η %{name} προβίβασε το χρήστη %{target} - reject_appeal_html: Ο/Η %{name} απέρριψε την ένσταση της απόφασης των συντονιστών από %{target} + reject_appeal_html: Ο/Η %{name} απέρριψε την έφεση της απόφασης των συντονιστών από %{target} reject_user_html: Ο/Η %{name} απέρριψε την εγγραφή του χρήστη %{target} remove_avatar_user_html: Ο/Η %{name} αφαίρεσε το άβαταρ του/της %{target} reopen_report_html: Ο/Η %{name} ξανάνοιξε την αναφορά %{target} resend_user_html: Ο χρήστης %{name} έστειλε ξανά email επιβεβαίωσης για τον χρήστη %{target} reset_password_user_html: Ο/Η %{name} επανέφερε το συνθηματικό του χρήστη %{target} resolve_report_html: Ο/Η %{name} επέλυσε την αναφορά %{target} - sensitive_account_html: Ο/Η %{name} επισήμανε τα πολυμέσα του/της %{target} ως ευαίσθητα + sensitive_account_html: Ο/Η %{name} σήμανε τα πολυμέσα του/της %{target} ως ευαίσθητα silence_account_html: Ο/Η %{name} περιόρισε τον λογαριασμό του/της %{target} suspend_account_html: Ο/Η %{name} ανέστειλε τον λογαριασμό του/της %{target} unassigned_report_html: Ο/Η %{name} αποδέσμευσε την αναφορά %{target} unblock_email_account_html: "%{name} έκανε άρση αποκλεισμού στη διεύθυνση email του %{target}" - unsensitive_account_html: Ο/Η %{name} επισήμανε τα πολυμέσα του/της %{target} ως μη ευαίσθητα + unsensitive_account_html: Ο/Η %{name} σήμανε τα πολυμέσα του/της %{target} ως μη ευαίσθητα unsilence_account_html: Ο/Η %{name} αφαίρεσε το περιορισμό του λογαριασμού του/της %{target} unsuspend_account_html: Ο/Η %{name} επανέφερε τον λογαριασμό του/της %{target} update_announcement_html: Ο/Η %{name} ενημέρωσε την ανακοίνωση %{target} @@ -292,7 +292,7 @@ el: update_report_html: Ο χρήστης %{name} ενημέρωσε την αναφορά %{target} update_status_html: Ο/Η %{name} ενημέρωσε την ανάρτηση του/της %{target} update_user_role_html: Ο/Η %{name} άλλαξε τον ρόλο %{target} - deleted_account: διαγεγραμμένος λογαριασμός + deleted_account: λογαριασμός διαγράφηκε empty: Δεν βρέθηκαν αρχεία καταγραφής. filter_by_action: Φιλτράρισμα ανά ενέργεια filter_by_user: Φιλτράρισμα ανά χρήστη @@ -349,7 +349,7 @@ el: unlisted: Μη καταχωρημένα update_failed_msg: Αδυναμία ενημέρωσης του emoji updated_msg: Επιτυχής ενημέρωση του emoji! - upload: Μεταμόρφωση + upload: Μεταφόρτωση dashboard: active_users: ενεργοί χρήστες interactions: αλληλεπιδράσεις @@ -378,7 +378,7 @@ el: website: Ιστοσελίδα disputes: appeals: - empty: Καμία ένσταση. + empty: Δε βρέθηκαν εφέσεις. title: Εφέσεις domain_allows: add_new: Έγκριση τομέα @@ -426,7 +426,7 @@ el: reject_media: Απόρριψη αρχείων πολυμέσων reject_media_hint: Αφαιρεί τα τοπικά αποθηκευμένα αρχεία πολυμέσων και αποτρέπει τη λήψη άλλων στο μέλλον. Δεν έχει σημασία για τις αναστολές reject_reports: Απόρριψη αναφορών - reject_reports_hint: Αγνόησε όσων αναφορών που προέρχονται από αυτό τον τομέα. Δεν σχετίζεται με τις παύσεις + reject_reports_hint: Αγνόηση όσων αναφορών προέρχονται από αυτό τον τομέα. Δεν σχετίζεται με τις παύσεις undo: Αναίρεση αποκλεισμού τομέα view: Εμφάνιση αποκλεισμού τομέα email_domain_blocks: @@ -523,7 +523,7 @@ el: unavailable: Μη διαθέσιμο delivery_available: Διαθέσιμη παράδοση delivery_error_days: Ημέρες σφάλματος παράδοσης - delivery_error_hint: Εάν η παράδοση δεν είναι δυνατή για %{count} ημέρες, θα επισημανθεί αυτόματα ως μη παραδόσιμη. + delivery_error_hint: Εάν η παράδοση δεν είναι δυνατή για %{count} ημέρες, θα σημανθεί αυτόματα ως μη παραδόσιμη. destroyed_msg: Τα δεδομένα από το %{domain} βρίσκονται σε αναμονή για επικείμενη διαγραφή. empty: Δεν βρέθηκαν τομείς. known_accounts: @@ -537,7 +537,7 @@ el: public_comment: Δημόσιο σχόλιο purge: Εκκαθάριση purge_description_html: Εάν πιστεύεις ότι αυτός ο τομέας είναι εκτός σύνδεσης μόνιμα, μπορείς να διαγράψεις όλες τις καταχωρήσεις λογαριασμών και τα σχετικά δεδομένα από αυτόν τον τομέα από τον αποθηκευτικό σου χώρο. Αυτό μπορεί να διαρκέσει λίγη ώρα. - title: Συναλλαγές + title: Ομοσπονδία total_blocked_by_us: Αποκλεισμένοι από εμάς total_followed_by_them: Ακολουθούνται από εκείνους total_followed_by_us: Ακολουθούνται από εμάς @@ -569,7 +569,7 @@ el: no_ip_block_selected: Δεν άλλαξαν οι κανόνες IP καθώς κανένας δεν επιλέχθηκε title: Κανόνες IP relationships: - title: Σχέσεις του %{acct} + title: Σχέσεις του/της %{acct} relays: add_new: Προσθήκη νέου ανταποκριτή delete: Διαγραφή @@ -597,8 +597,8 @@ el: action_log: Αρχείο ελέγχου action_taken_by: Ενέργεια από τον/την actions: - delete_description_html: Οι δημοσιεύσεις με αναφορά θα διαγραφούν και θα καταγραφεί μια ποινή που θα σας βοηθήσει να αποφασίσετε σε μελλοντικές παραβάσεις από τον ίδιο λογαριασμό. - mark_as_sensitive_description_html: Τα πολυμέσα με αναφορά θα επισημανθούν ως ευαίσθητα και θα καταγραφεί μια ποινή που θα σας βοηθήσει να αποφασίσετε σε μελλοντικές παραβάσεις από τον ίδιο λογαριασμό. + delete_description_html: Οι αναρτήσεις με αναφορά θα διαγραφούν και θα καταγραφεί μια ποινή που θα σας βοηθήσει να αποφασίσετε σε μελλοντικές παραβάσεις από τον ίδιο λογαριασμό. + mark_as_sensitive_description_html: Τα πολυμέσα στις αναρτήσεις με αναφορά θα σημανθούν ως ευαίσθητα και θα καταγραφεί μια ποινή που θα σας βοηθήσει να αποφασίσετε σε μελλοντικές παραβάσεις από τον ίδιο λογαριασμό. other_description_html: Δείτε περισσότερες επιλογές για τον έλεγχο της συμπεριφοράς του λογαριασμού και προσαρμόσετε την επικοινωνία στον αναφερόμενο λογαριασμό. resolve_description_html: Δεν θα ληφθούν μέτρα κατά του αναφερόμενου λογαριασμού, δεν θα καταγραφεί κανένα παράπτωμα, και η αναφορά θα κλείσει. silence_description_html: Ο λογαριασμός θα είναι ορατός μόνο σε εκείνους που ήδη τον ακολουθούν ή τον αναζητούν χειροκίνητα, περιορίζοντας κατά πολύ την εμβέλειά του. Η ενέργεια αυτή είναι αναστρέψιμη. Κλείνει όλες τις αναφορές εναντίον αυτού του λογαριασμού. @@ -656,18 +656,18 @@ el: summary: action_preambles: delete_html: 'Πρόκειται να αφαιρέσεις μερικές από τις αναρτήσεις του @%{acct}. Αυτό θα:' - mark_as_sensitive_html: 'Πρόκειται να επισημάνεις μερικές από τις αναρτήσεις του @%{acct} ως ευαίσθητες. Αυτό θα:' + mark_as_sensitive_html: 'Πρόκειται να σημάνεις μερικές από τις αναρτήσεις του/της @%{acct} ως ευαίσθητες. Αυτό θα:' silence_html: 'Πρόκειται να περιορίσεις τον λογαριασμό του @%{acct}. Αυτό θα:' suspend_html: 'Πρόκειται να αναστείλεις τον λογαριασμό του @%{acct}. Αυτό θα:' actions: delete_html: Αφαίρεσε τις προσβλητικές αναρτήσεις - mark_as_sensitive_html: Σημειώστε τα πολυμέσα των προσβλητικών αναρτήσεων ως ευαίσθητα + mark_as_sensitive_html: Σήμανε τα πολυμέσα των προσβλητικών αναρτήσεων ως ευαίσθητα silence_html: Περιορίσε σοβαρά την εμβέλεια του @%{acct} κάνοντας το προφίλ και το περιεχόμενό του ορατά μόνο σε άτομα που ήδη τον ακολουθούν ή που αναζητούν χειροκίνητα το προφίλ του suspend_html: Αναστολή του @%{acct}, καθιστώντας το προφίλ και το περιεχόμενό του μη προσβάσιμα και αδύνατο να αλληλεπιδράσει κανείς με αυτά - close_report: 'Επισήμανση αναφοράς #%{id} ως επιλυμένη' - close_reports_html: Επισήμανε όλες τις αναφορές ενάντια στον λογαριασμό @%{acct} ως επιλυμένες + close_report: 'Σήμανση αναφοράς #%{id} ως επιλυμένη' + close_reports_html: Σήμανε όλες τις αναφορές ενάντια στον λογαριασμό @%{acct} ως επιλυμένες delete_data_html: Διάγραψε το προφίλ και το περιεχόμενο του @%{acct} σε 30 ημέρες από τώρα εκτός αν, εν τω μεταξύ, ανακληθεί η αναστολή - preview_preamble_html: 'Ο @%{acct} θα λάβει μια προειδοποίηση με τα ακόλουθο περιεχόμενο:' + preview_preamble_html: 'Ο/Η @%{acct} θα λάβει μια προειδοποίηση με τα ακόλουθα περιεχόμενα:' record_strike_html: Κατάγραψε ένα παράπτωμα εναντίον του @%{acct} για να σε βοηθήσει να αποφασίσεις σε μελλοντικές παραβιάσεις από αυτόν τον λογαριασμό send_email_html: Στείλε στον λογαριασμό @%{acct} ένα προειδοποιητικό email warning_placeholder: Προαιρετικές επιπλέον εξηγήσεις για αυτή την ενέργεια από την ομάδα συντονισμού. @@ -693,7 +693,7 @@ el: description_html: Με τους ρόλους χρηστών, μπορείς να προσαρμόσεις σε ποιες λειτουργίες και περιοχές του Mastodon, οι χρήστες σας μπορούν να έχουν πρόσβαση. edit: Επεξεργασία ρόλου '%{name}' everyone: Προεπιλεγμένα δικαιώματα - everyone_full_description_html: Αυτός είναι ο βασικός ρόλος που επηρεάζει όλους τους χρήστες, ακόμη και εκείνους που δεν έχουν κάποιον ρόλο. Όλοι οι άλλοι ρόλοι κληρονομούν δικαιώματα από αυτόν. + everyone_full_description_html: Αυτός είναι ο βασικός ρόλος που επηρεάζει όλους τους χρήστες, ακόμα και εκείνους που δεν έχουν κάποιον ρόλο. Όλοι οι άλλοι ρόλοι κληρονομούν δικαιώματα από αυτόν. permissions_count: one: "%{count} δικαίωμα" other: "%{count} δικαιώματα" @@ -712,7 +712,7 @@ el: manage_blocks_description: Επιτρέπει στους χρήστες να αποκλείουν παρόχους email και διευθύνσεις IP manage_custom_emojis: Διαχείριση Προσαρμοσμένων Emojis manage_custom_emojis_description: Επιτρέπει στους χρήστες να διαχειρίζονται προσαρμοσμένα emojis στον διακομιστή - manage_federation: Διαχείριση Συναλλαγών + manage_federation: Διαχείριση Ομοσπονδίας manage_federation_description: Επιτρέπει στους χρήστες να αποκλείουν ή να επιτρέπουν τις συναλλαγές με άλλους τομείς και να ελέγχουν την παράδοση manage_invites: Διαχείριση Προσκλήσεων manage_invites_description: Επιτρέπει στους χρήστες να περιηγούνται και να απενεργοποιούν τους συνδέσμους πρόσκλησης @@ -742,9 +742,9 @@ el: rules: add_new: Προσθήκη κανόνα delete: Διαγραφή - description_html: Ενώ οι περισσότεροι ισχυρίζονται ότι έχουν διαβάσει και συμφωνούν με τους όρους της υπηρεσίας, συνήθως οι άνθρωποι δεν διαβάζουν μέχρι μετά την εμφάνιση ενός προβλήματος. Κάνε ευκολότερο να δουν τους κανόνες του διακομιστή σας με μια ματιά παρέχοντας τους σε μια λίστα. Προσπάθησε να κρατήσεις τους μεμονωμένους κανόνες σύντομους και απλούς, αλλά προσπάθησε να μην τους χωρίσεις σε πολλά ξεχωριστά αντικείμενα. + description_html: Ενώ οι περισσότεροι ισχυρίζονται ότι έχουν διαβάσει και συμφωνούν με τους όρους της υπηρεσίας, συνήθως οι άνθρωποι δεν διαβάζουν μέχρι μετά την εμφάνιση ενός προβλήματος. Κάνε ευκολότερο να δουν τους κανόνες του διακομιστή σας με μια ματιά παρέχοντας τους σε μια λίστα με κουκκίδες. Προσπάθησε να κρατήσεις τους μεμονωμένους κανόνες σύντομους και απλούς, αλλά προσπάθησε να μην τους χωρίσεις σε πολλά ξεχωριστά αντικείμενα. edit: Επεξεργασία κανόνα - empty: Δεν έχουν οριστεί ακόμα κανόνες διακομιστή. + empty: Δεν έχουν οριστεί ακόμη κανόνες διακομιστή. title: Κανόνες διακομιστή settings: about: @@ -753,10 +753,10 @@ el: rules_hint: Υπάρχει μια ειδική περιοχή για τους κανόνες που αναμένεται να τηρούν οι χρήστες σας. title: Σχετικά με appearance: - preamble: Προσάρμοσε την ιστοσελίδα του Mastodon. + preamble: Προσάρμοσε τη διεπαφή ιστού του Mastodon. title: Εμφάνιση branding: - preamble: Η ταυτότητα του διακομιστή σου, τον διαφοροποιεί από άλλους διακομιστές του δικτύου. Αυτές οι πληροφορίες μπορεί να εμφανίζονται σε διάφορα περιβάλλοντα, όπως η ιστοσελίδα του Mastodon, εγγενείς εφαρμογές, σε προεπισκοπήσεις συνδέσμου σε άλλους ιστότοπους και εντός εφαρμογών μηνυμάτων και ούτω καθεξής. Γι' αυτό, είναι καλύτερο να διατηρούνται αυτές οι πληροφορίες σαφείς, σύντομες και συνοπτικές. + preamble: Η ταυτότητα του διακομιστή σου, τον διαφοροποιεί από άλλους διακομιστές του δικτύου. Αυτές οι πληροφορίες μπορεί να εμφανίζονται σε διάφορα περιβάλλοντα, όπως η διεπαφή ιστού του Mastodon, εγγενείς εφαρμογές, σε προεπισκοπήσεις συνδέσμου σε άλλους ιστότοπους και εντός εφαρμογών μηνυμάτων και ούτω καθεξής. Γι' αυτό, είναι καλύτερο να διατηρούνται αυτές οι πληροφορίες σαφείς, σύντομες και συνοπτικές. title: Ταυτότητα captcha_enabled: desc_html: Αυτό βασίζεται σε εξωτερικά scripts από το hCaptcha, όπου υπάρχει ανησυχία πέρι ασφάλειας και ιδιωτηκότητας. Επιπρόσθετα, μπορεί να κάνει τη διαδικασία εγγραφής πολύ λιγότερο προσβάσιμη για κάποια άτομα (ειδικά αυτά με αναπηρίες). Για αυτούς τους λόγους, παρακαλώ σκέψου άλλου τρόπους εγγραφής όπως με αποδοχή ή με πρόσκληση. @@ -767,7 +767,7 @@ el: title: Διατήρηση περιεχομένου default_noindex: desc_html: Επηρεάζει όσους χρήστες δεν έχουν αλλάξει οι ίδιοι αυτή τη ρύθμιση - title: Εξαίρεση χρηστών από τις μηχανές αναζήτησης + title: Εξαίρεση χρηστών από την ευρετηρίαση των μηχανών αναζήτησης από προεπιλογή discovery: follow_recommendations: Ακολούθησε τις προτάσεις preamble: Δημοσιεύοντας ενδιαφέρον περιεχόμενο είναι καθοριστικό για την ενσωμάτωση νέων χρηστών που μπορεί να μη γνωρίζουν κανέναν στο Mastodon. Έλεγξε πώς λειτουργούν διάφορες δυνατότητες ανακάλυψης στον διακομιστή σας. @@ -841,9 +841,9 @@ el: actions: delete_statuses: Ο/Η %{name} διέγραψε τις αναρτήσεις του/της %{target} disable: Ο/Η %{name} πάγωσε τον λογαριασμό του/της %{target} - mark_statuses_as_sensitive: Ο/Η %{name} επισήμανε τα πολυμέσα του/της %{target} ως ευαίσθητα + mark_statuses_as_sensitive: Ο/Η %{name} σήμανε τα πολυμέσα του/της %{target} ως ευαίσθητα none: Ο/Η %{name} έστειλε προειδοποίηση προς τον/την %{target} - sensitive: Ο/Η %{name} επισήμανε τα πολυμέσα του λογαριασμού %{target} ως ευαίσθητα + sensitive: Ο/Η %{name} σήμανε τα πολυμέσα του λογαριασμού %{target} ως ευαίσθητα silence: Ο/Η %{name} περιόρισε τον λογαριασμό %{target} suspend: Ο/Η %{name} ανέστειλε τον λογαριασμό %{target} appeal_approved: Έγινε έφεση @@ -857,7 +857,7 @@ el: elasticsearch_health_yellow: message_html: Το σύμπλεγμα Elasticsearch δεν είναι υγιές (κίτρινη κατάσταση), ίσως θες να διαπιστώσεις την αιτία elasticsearch_index_mismatch: - message_html: Οι αντιστοιχές δείκτη του Elasticsearch δεν είναι ενημερωμένες. Παρακαλώ εκτέλεσε το tootctl search deploy --only=%{value} + message_html: Οι αντιστοιχήσεις του δείκτη Elasticsearch δεν είναι ενημερωμένες. Παρακαλώ εκτέλεσε το tootctl search deploy --only=%{value} elasticsearch_preset: action: Δες το εγχειρίδιο message_html: Το σύμπλεγμα Elasticsearch σου, έχει παραπάνω από ένα κόμβο, το Mastodon δεν είναι ρυθμισμένο για να τους χρησιμοποιεί. @@ -895,9 +895,9 @@ el: moderation: not_trendable: Δε δημιουργεί τάσεις not_usable: Μη χρησιμοποιήσιμη - pending_review: Εκκρεμεί αξιολόγηση - review_requested: Αιτήθηκε αξιολόγηση - reviewed: Αξιολογήθηκε + pending_review: Εκκρεμεί έλεγχος + review_requested: Αιτήθηκε έλεγχος + reviewed: Ελέγχθηκε title: Κατάσταση trendable: Πιθανό για τάσεις unreviewed: Μη ελεγμένη @@ -907,7 +907,7 @@ el: oldest: Παλαιότερη όλων open: Προβολή Δημόσια reset: Επαναφορά - review: Κατάσταση αξιολόγησης + review: Κατάσταση ελέγχου search: Αναζήτηση title: Ετικέτες updated_msg: Οι ρυθμίσεις των ετικετών ενημερώθηκαν επιτυχώς @@ -925,7 +925,7 @@ el: confirm_allow_provider: Σίγουρα θες να επιτρέψεις τους επιλεγμένους παρόχους; confirm_disallow: Σίγουρα θες να απορρίψεις τους επιλεγμένους συνδέσμους; confirm_disallow_provider: Σίγουρα θες να απορρίψεις τους επιλεγμένους παρόχους; - description_html: Αυτοί οι σύνδεσμοι μοιράζονται αρκετά από λογαριασμούς των οποίων τις δημοσιεύσεις, βλέπει ο διακομιστής σας. Μπορεί να βοηθήσει τους χρήστες σας να μάθουν τί συμβαίνει στον κόσμο. Οι σύνδεσμοι δεν εμφανίζονται δημόσια μέχρι να εγκρίνετε τον εκδότη. Μπορείς επίσης να επιτρέψεις ή να απορρίψεις μεμονωμένους συνδέσμους. + description_html: Αυτοί οι σύνδεσμοι κοινοποιούνται αρκετά από λογαριασμούς των οποίων τις αναρτήσεις, βλέπει ο διακομιστής σας. Μπορεί να βοηθήσει τους χρήστες σας να μάθουν τί συμβαίνει στον κόσμο. Οι σύνδεσμοι δεν εμφανίζονται δημόσια μέχρι να εγκρίνετε τον εκδότη. Μπορείτε επίσης να επιτρέψετε ή να απορρίψετε μεμονωμένους συνδέσμους. disallow: Να μην επιτρέπεται ο σύνδεσμος disallow_provider: Να μην επιτρέπεται ο εκδότης no_link_selected: Κανένας σύνδεσμος δεν άλλαξε αφού κανείς δεν επιλέχθηκε @@ -938,10 +938,10 @@ el: usage_comparison: Κοινοποιήθηκε %{today} φορές σήμερα, σε σύγκριση με %{yesterday} χθες not_allowed_to_trend: Δεν επιτρέπεται να γίνει δημοφιλές only_allowed: Μόνο επιτρεπόμενα - pending_review: Εκκρεμεί αξιολόγηση + pending_review: Εκκρεμεί έλεγχος preview_card_providers: allowed: Σύνδεσμοι από αυτόν τον εκδότη μπορούν να γίνουν δημοφιλείς - description_html: Αυτοί είναι τομείς από τους οποίους οι σύνδεσμοι συχνά μοιράζονται στον διακομιστή σας. Σύνδεσμοι δεν γίνουν δημοφιλείς δημοσίως εκτός και αν ο τομέας του συνδέσμου εγκριθεί. Η έγκρισή σας (ή απόρριψη) περιλαμβάνει και τους υποτομείς. + description_html: Αυτοί είναι τομείς από τους οποίους οι σύνδεσμοι συχνά κοινοποιούνται στον διακομιστή σας. Οι σύνδεσμοι δεν θα γίνουν δημοφιλείς δημοσίως εκτός και αν ο τομέας του συνδέσμου εγκριθεί. Η έγκρισή σας (ή απόρριψη) περιλαμβάνει και τους υποτομείς. rejected: Σύνδεσμοι από αυτόν τον εκδότη δε θα γίνουν δημοφιλείς title: Εκδότες rejected: Απορρίφθηκε @@ -952,14 +952,14 @@ el: confirm_allow_account: Σίγουρα θες να επιτρέψεις τους επιλεγμένους λογαριασμούς; confirm_disallow: Σίγουρα θες να απορρίψεις τις επιλεγμένες καταστάσεις; confirm_disallow_account: Σίγουρα θες να απορρίψεις τους επιλεγμένους λογαριασμούς; - description_html: Αυτές είναι αναρτήσεις για τις οποίες ο διακομιστής σας γνωρίζει ότι κοινοποιούνται και αρέσουν πολύ αυτή τη περίοδο. Μπορεί να βοηθήσει νέους και χρήστες που επιστρέφουν, να βρουν περισσότερα άτομα να ακολουθήσουν. Καμία ανάρτηση δεν εμφανίζεται δημόσια μέχρι να εγκρίνεις τον συντάκτη και ο συντάκτης να επιτρέπει ο λογαριασμός του να προτείνεται και σε άλλους. Μπορείς επίσης να επιτρέψεις ή να απορρίψεις μεμονωμένες δημοσιεύσεις. + description_html: Αυτές είναι αναρτήσεις για τις οποίες ο διακομιστής σας γνωρίζει ότι κοινοποιούνται και αρέσουν πολύ αυτή τη περίοδο. Μπορεί να βοηθήσει νέους και χρήστες που επιστρέφουν, να βρουν περισσότερα άτομα να ακολουθήσουν. Καμία ανάρτηση δεν εμφανίζεται δημόσια μέχρι να εγκρίνεις τον συντάκτη και ο συντάκτης να επιτρέπει ο λογαριασμός τους να προτείνεται και σε άλλους. Μπορείς επίσης να επιτρέψεις ή να απορρίψεις μεμονωμένες αναρτήσεις. disallow: Να μην επιτρέπεται η ανάρτηση disallow_account: Να μην επιτρέπεται ο συντάκτης no_status_selected: Καμία δημοφιλής ανάρτηση δεν άλλαξε αφού καμία δεν επιλέχθηκε not_discoverable: Ο συντάκτης δεν έχει επιλέξει να είναι ανακαλύψιμος shared_by: - one: Μοιράστηκε ή προστέθηκε στα αγαπημένα μία φορά - other: Μοιράστηκε και προστέθηκε στα αγαπημένα %{friendly_count} φορές + one: Κοινοποιήθηκε ή προστέθηκε στα αγαπημένα μία φορά + other: Κοινοποιήθηκε και προστέθηκε στα αγαπημένα %{friendly_count} φορές title: Αναρτήσεις σε τάση tags: current_score: Τρέχουσα βαθμολογία %{score} @@ -999,7 +999,7 @@ el: disable: Απενεργοποίηση disabled: Απενεργοποιημένα edit: Επεξεργασία σημείου τερματισμού - empty: Δεν έχεις ακόμα ρυθμισμένα σημεία τερματισμού webhook. + empty: Δεν έχεις ακόμη ρυθμισμένα σημεία τερματισμού webhook. enable: Ενεργοποίηση enabled: Ενεργό enabled_events: @@ -1014,26 +1014,26 @@ el: webhook: Webhook admin_mailer: auto_close_registrations: - body: Λόγω έλλειψης πρόσφατης δραστηριότητας συντονιστών, οι εγγραφές στο %{instance} έχουν αλλάξει αυτόματα στην απαίτηση χειροκίνητης αξιολόγησης, για να αποτρέψει το %{instance} από το να χρησιμοποιηθεί ως πλατφόρμα για πιθανούς κακούς ηθοποιούς. Μπορείς να το αλλάξεις ξανά για να ανοίξετε εγγραφές ανά πάσα στιγμή. + body: Λόγω έλλειψης πρόσφατης δραστηριότητας συντονιστών, οι εγγραφές στο %{instance} έχουν αλλάξει αυτόματα στην απαίτηση χειροκίνητου ελέγχου, για να αποτρέψει το %{instance} από το να χρησιμοποιηθεί ως πλατφόρμα για πιθανούς κακούς παράγοντες. Μπορείς να το αλλάξεις ξανά για να ανοίξετε εγγραφές ανά πάσα στιγμή. subject: Οι εγγραφές για το %{instance} έχουν αλλάξει αυτόματα σε απαίτηση έγκρισης new_appeal: actions: - delete_statuses: διαγραφή των αναρτήσεών του - disable: να παγώσει τον λογαριασμό του - mark_statuses_as_sensitive: να επισημάνουν τις δημοσιεύσεις του ως ευαίσθητες + delete_statuses: να διαγραφούν οι αναρτήσεις τους + disable: να παγώσει τον λογαριασμό τους + mark_statuses_as_sensitive: να σημάνουν τις αναρτήσεις τους ως ευαίσθητες none: μια προειδοποίηση - sensitive: να επισημάνουν τον λογαριασμό του ως ευαίσθητο - silence: να περιορίσουν το λογαριασμό του - suspend: να αναστείλουν τον λογαριασμό του + sensitive: να σημάνουν τον λογαριασμό τους ως ευαίσθητο + silence: να περιορίσουν τον λογαριασμό τους + suspend: να αναστείλουν τον λογαριασμό τους body: 'Ο/Η %{target} κάνει έφεση στην απόφαση συντονισμού που έγινε από τον/την %{action_taken_by} στις %{date}, η οποία ήταν %{type}. Έγραψαν:' next_steps: Μπορείς να εγκρίνεις την έφεση για να αναιρέσεις την απόφαση της ομάδας συντονισμού ή να την αγνοήσεις. - subject: Ο/Η %{username} κάνει έφεση σε μια απόφαση της ομάδας συντονισμού στον %{instance} + subject: Ο/Η %{username} κάνει έφεση σε μια απόφαση της ομάδας συντονισμού στο %{instance} new_critical_software_updates: body: Έχουν κυκλοφορήσει νέες κρίσιμες εκδόσεις του Mastodon, καλύτερα να ενημερώσεις το συντομότερο δυνατόν! subject: Κρίσιμες ενημερώσεις Mastodon είναι διαθέσιμες για το %{instance}! new_pending_account: body: Τα στοιχεία του νέου λογαριασμού είναι παρακάτω. Μπορείς να εγκρίνεις ή να απορρίψεις αυτή την αίτηση. - subject: Νέος λογαριασμός προς έγκριση στο %{instance} (%{username}) + subject: Νέος λογαριασμός προς έλεγχο στο %{instance} (%{username}) new_report: body: Ο/Η %{reporter} ανέφερε τον/την %{target} body_remote: Κάποιος/α από τον τομέα %{domain} ανέφερε τον/την %{target} @@ -1042,14 +1042,14 @@ el: body: Έχουν κυκλοφορήσει νέες εκδόσεις Mastodon, ίσως θέλεις να ενημερώσεις! subject: Νέες εκδόσεις Mastodon είναι διαθέσιμες για το %{instance}! new_trends: - body: 'Τα ακόλουθα στοιχεία χρειάζονται αξιολόγηση για να μπορούν να προβληθούν δημόσια:' + body: 'Τα ακόλουθα στοιχεία χρειάζονται έλεγχο για να μπορούν να προβληθούν δημόσια:' new_trending_links: title: Σύνδεσμοι σε τάση new_trending_statuses: title: Αναρτήσεις σε τάση new_trending_tags: title: Ετικέτες σε τάση - subject: Νέες τάσεις προς αξιολόγηση στο %{instance} + subject: Νέες τάσεις προς έλεγχο στο %{instance} aliases: add_new: Δημιουργία ψευδώνυμου created_msg: Δημιουργήθηκε νέο ψευδώνυμο. Τώρα μπορείς να ξεκινήσεις τη μεταφορά από τον παλιό λογαριασμό. @@ -1059,9 +1059,9 @@ el: remove: Αποσύνδεση ψευδώνυμου appearance: advanced_web_interface: Προηγμένη διεπαφή ιστού - advanced_web_interface_hint: 'Αν θέλεις να χρησιμοποιήσεις ολόκληρο το πλάτος της οθόνης σου, η προηγμένη λειτουργία χρήσης σου επιτρέπει να ορίσεις πολλαπλές στήλες ώστε να βλέπεις ταυτόχρονα όση πληροφορία θέλεις: Την αρχική ροή, τις ειδοποιήσεις, τις ομοσπονδιακές ροές και όσες λίστες και ετικέτες θέλεις.' + advanced_web_interface_hint: 'Αν θέλεις να χρησιμοποιήσεις ολόκληρο το πλάτος της οθόνης σου, η προηγμένη διεπαφή ιστού σου επιτρέπει να διαμορφώσεις πολλαπλές στήλες ώστε να βλέπεις ταυτόχρονα όση πληροφορία θέλεις: Την αρχική ροή, τις ειδοποιήσεις, τις ομοσπονδιακές ροές και όσες λίστες και ετικέτες θέλεις.' animations_and_accessibility: Εφέ κινήσεων και προσβασιμότητα - confirmation_dialogs: Ερωτήσεις επιβεβαίωσης + confirmation_dialogs: Διάλογοι επιβεβαίωσης discovery: Ανακάλυψη localization: body: Το Mastodon μεταφράζεται από εθελοντές. @@ -1088,7 +1088,7 @@ el: apply_for_account: Ζήτα έναν λογαριασμό captcha_confirmation: help_html: Εάν αντιμετωπίζεις προβλήματα με την επίλυση του CAPTCHA, μπορείς να επικοινωνήσεις μαζί μας μέσω %{email} και μπορούμε να σε βοηθήσουμε. - hint_html: Και κάτι ακόμα! Πρέπει να επιβεβαιώσουμε ότι είσαι άνθρωπος (αυτό γίνεται για να κρατήσουμε μακριά το σπαμ!). Λύσε το CAPTCHA παρακάτω και κάνε κλικ "Συνέχεια". + hint_html: Και κάτι ακόμα! Πρέπει να επιβεβαιώσουμε ότι είσαι άνθρωπος (αυτό γίνεται για να κρατήσουμε μακριά το σπαμ!). Λύσε το CAPTCHA παρακάτω και πάτα "Συνέχεια". title: Ελεγχος ασφαλείας confirmations: awaiting_review: Η διεύθυνση email σου επιβεβαιώθηκε! Το προσωπικό του %{domain} εξετάζει τώρα την εγγραφή σου. Θα λάβεις ένα email εάν εγκρίνουν τον λογαριασμό σου! @@ -1103,7 +1103,7 @@ el: delete_account: Διαγραφή λογαριασμού delete_account_html: Αν θέλεις να διαγράψεις το λογαριασμό σου, μπορείς να συνεχίσεις εδώ. Θα σου ζητηθεί επιβεβαίωση. description: - prefix_invited_by_user: Ο/Η @%{name} σε προσκαλεί να συνδεθείς με αυτό τον διακομιστή του Mastodon! + prefix_invited_by_user: Ο/Η @%{name} σε προσκαλεί να γίνεις μέλος αυτού του διακομιστή του Mastodon! prefix_sign_up: Κάνε εγγραφή στο Mastodon σήμερα! suffix: Ανοίγοντας λογαριασμό θα μπορείς να ακολουθείς άλλους, να ανεβάζεις ενημερώσεις και να ανταλλάζεις μηνύματα με χρήστες σε οποιοδήποτε διακομιστή Mastodon, καθώς και άλλα! didnt_get_confirmation: Δεν έλαβες τον σύνδεσμο επιβεβαίωσης; @@ -1151,14 +1151,14 @@ el: preamble_html: Συνδεθείτε με τα διαπιστευτήριά σας στον %{domain}. Αν ο λογαριασμός σας φιλοξενείται σε διαφορετικό διακομιστή, δε θα μπορείτε να συνδεθείτε εδώ. title: Συνδεθείτε στο %{domain} sign_up: - manual_review: Οι εγγραφές στο %{domain} περνούν από χειροκίνητη αξιολόγηση από τους συντονιστές μας. Για να μας βοηθήσεις να επεξεργαστούμε την εγγραφή σου, γράψε λίγα λόγια για τον εαυτό σου και γιατί θέλεις έναν λογαριασμό στο %{domain}. + manual_review: Οι εγγραφές στο %{domain} περνούν από χειροκίνητο έλεγχο από τους συντονιστές μας. Για να μας βοηθήσεις να επεξεργαστούμε την εγγραφή σου, γράψε λίγα λόγια για τον εαυτό σου και γιατί θέλεις έναν λογαριασμό στο %{domain}. preamble: Με έναν λογαριασμό σ' αυτόν τον διακομιστή Mastodon, θα μπορείτε να ακολουθήσετε οποιοδήποτε άλλο άτομο στο δίκτυο, ανεξάρτητα από το πού φιλοξενείται ο λογαριασμός του. title: Ας ξεκινήσουμε τις ρυθμίσεις στο %{domain}. status: account_status: Κατάσταση λογαριασμού confirming: Αναμονή για ολοκλήρωση επιβεβαίωσης του email. functional: Ο λογαριασμός σας είναι πλήρως λειτουργικός. - pending: Η εφαρμογή σου εκκρεμεί έγκρισης. Ίσως θα διαρκέσει κάποιο χρόνο. Θα λάβεις email αν εγκριθεί. + pending: Η εφαρμογή σου εκκρεμεί έλεγχο από το προσωπικό μας. Ίσως θα διαρκέσει κάποιο χρόνο. Θα λάβεις email αν εγκριθεί. redirecting_to: Ο λογαριασμός σου είναι ανενεργός γιατί επί του παρόντος ανακατευθύνει στον %{acct}. self_destruct: Καθώς το %{domain} κλείνει, θα έχεις μόνο περιορισμένη πρόσβαση στον λογαριασμό σου. view_strikes: Προβολή προηγούμενων ποινών εναντίον του λογαριασμού σας @@ -1166,8 +1166,8 @@ el: use_security_key: Χρήση κλειδιού ασφαλείας author_attribution: example_title: Δείγμα κειμένου - hint_html: Γράφεις ειδήσεις ή blog άρθρα εκτός του Mastodon; Έλεγξε πώς μπορείς να πάρεις τα εύσημα όταν μοιράζονται στο Mastodon. - instructions: 'Βεβαιώσου ότι ο κώδικας αυτός είναι στο HTML του άρθρου σου:' + hint_html: Γράφεις ειδήσεις ή άρθρα blog εκτός του Mastodon; Έλεγξε πώς μπορείς να πάρεις τα εύσημα όταν κοινοποιούνται στο Mastodon. + instructions: 'Βεβαιώσου ότι ο κώδικας αυτός είναι στην HTML του άρθρου σου:' more_from_html: Περισσότερα από %{name} s_blog: Ιστολόγιο του/της %{name} then_instructions: Στη συνέχεια, πρόσθεσε το όνομα τομέα της δημοσίευσης στο παρακάτω πεδίο. @@ -1247,7 +1247,7 @@ el: your_appeal_rejected: Η έφεση σου απορρίφθηκε edit_profile: basic_information: Βασικές πληροφορίες - hint_html: "Τροποποίησε τί βλέπουν άτομα στο δημόσιο προφίλ σου και δίπλα στις αναρτήσεις σου. Είναι πιο πιθανό κάποιος να σε ακολουθήσει πίσω και να αλληλεπιδράσουν μαζί σου αν έχεις ολοκληρωμένο προφίλ και εικόνα προφίλ." + hint_html: "Προσάρμοσε τί βλέπουν άτομα στο δημόσιο προφίλ σου και δίπλα στις αναρτήσεις σου. Είναι πιο πιθανό άλλα άτομα να σε ακολουθήσουν πίσω και να αλληλεπιδράσουν μαζί σου αν έχεις ολοκληρωμένο προφίλ και εικόνα προφίλ." other: Άλλο errors: '400': Το αίτημα ήταν άκυρο ή με λάθος μορφή. @@ -1263,7 +1263,7 @@ el: content: Λυπούμαστε, κάτι πήγε στραβά από τη δική μας μεριά. title: Η σελίδα αυτή δεν είναι σωστή '503': Η σελίδα δε μπόρεσε να εμφανιστεί λόγω προσωρινού σφάλματος του διακομιστή. - noscript_html: Για να χρησιμοποιήσεις τη δικτυακή εφαρμογή του Mastodon, ενεργοποίησε την Javascript. Εναλλακτικά, δοκίμασε μια από τις εφαρμογές για το Mastodon για την πλατφόρμα σου. + noscript_html: Για να χρησιμοποιήσεις την εφαρμογή ιστού του Mastodon, παρακαλούμε ενεργοποίησε την Javascript. Εναλλακτικά, δοκίμασε μια από τις εφαρμογές για το Mastodon για την πλατφόρμα σου. existing_username_validator: not_found: δεν βρέθηκε τοπικός χρήστης με αυτό το όνομα not_found_multiple: δεν βρέθηκε %{usernames} @@ -1285,23 +1285,23 @@ el: featured_tags: add_new: Προσθήκη νέας errors: - limit: Έχεις ήδη προσθέσει το μέγιστο αριθμό ετικετών - hint_html: "Τί είναι οι προβεβλημένες ετικέτες; Προβάλλονται στο δημόσιο προφίλ σου επιτρέποντας σε όποιον θέλει να περιηγηθεί στις αναρτήσεις που τις χρησιμοποιούν. Είναι ένας ωραίος τρόπος να παρακολουθείς την πορεία δημιουργικών εργασιών ή ενός μακροπρόθεσμου έργου." + limit: Έχεις ήδη αναδείξει το μέγιστο αριθμό ετικετών + hint_html: "Ανέδειξε στο προφίλ σου τις πιο σημαντικές ετικέτες σου. Οι αναδεδειγμένες ετικέτες προβάλονται εμφανώς στο προφίλ σου επιτρέποντας γρήγορη πρόσβαση στις αναρτήσεις σου. Είναι ένας ωραίος τρόπος να παρακολουθείς την πορεία των δημιουργικών εργασιών σου ή ενός μακροπρόθεσμου έργου σου." filters: contexts: account: Προφίλ home: Αρχική σελίδα και λίστες notifications: Ειδοποιήσεις public: Δημόσιες ροές - thread: Συζητήσεις + thread: Συνομιλίες edit: add_keyword: Προσθήκη λέξης-κλειδιού keywords: Λέξεις-κλειδιά statuses: Μεμονωμένες αναρτήσεις - statuses_hint_html: Αυτό το φίλτρο εφαρμόζεται για την επιλογή μεμονωμένων αναρτήσεων, ανεξάρτητα από το αν ταιριάζουν με τις λέξεις - κλειδιά παρακάτω. Επισκόπηση ή αφαίρεση αναρτήσεων από το φίλτρο. + statuses_hint_html: Αυτό το φίλτρο εφαρμόζεται για την επιλογή μεμονωμένων αναρτήσεων, ανεξάρτητα από το αν αντιστοιχούν με τις λέξεις-κλειδιά παρακάτω. Επισκόπηση ή αφαίρεση αναρτήσεων από το φίλτρο. title: Επεξεργασία φίλτρου errors: - deprecated_api_multiple_keywords: Αυτές οι παράμετροι δεν μπορούν να αλλάξουν από αυτήν την εφαρμογή επειδή ισχύουν για περισσότερες από μία λέξεις - κλειδιά φίλτρου. Χρησιμοποίησε μια πιο πρόσφατη εφαρμογή ή την ιστοσελίδα. + deprecated_api_multiple_keywords: Αυτές οι παράμετροι δεν μπορούν να αλλάξουν από αυτήν την εφαρμογή επειδή ισχύουν για περισσότερες από μία λέξεις-κλειδιά φίλτρου. Χρησιμοποίησε μια πιο πρόσφατη εφαρμογή ή τη διεπαφή ιστού. invalid_context: Δόθηκε κενό ή μη έγκυρο περιεχόμενο index: contexts: Φίλτρα σε %{contexts} @@ -1310,8 +1310,8 @@ el: expires_in: Λήγει σε %{distance} expires_on: Λήγει στις %{date} keywords: - one: "%{count} λέξη - κλειδί" - other: "%{count} λέξεις - κλειδιά" + one: "%{count} λέξη-κλειδί" + other: "%{count} λέξεις-κλειδιά" statuses: one: "%{count} ανάρτηση" other: "%{count} αναρτήσεις" @@ -1327,7 +1327,7 @@ el: batch: remove: Αφαίρεση από φίλτρο index: - hint: Αυτό το φίλτρο ισχύει για την επιλογή μεμονωμένων αναρτήσεων ανεξάρτητα από άλλα κριτήρια. Μπορείς να προσθέσεις περισσότερες αναρτήσεις σε αυτό το φίλτρο από την ιστοσελίδα. + hint: Αυτό το φίλτρο ισχύει για την επιλογή μεμονωμένων αναρτήσεων ανεξάρτητα από άλλα κριτήρια. Μπορείς να προσθέσεις περισσότερες αναρτήσεις σε αυτό το φίλτρο από τη διεπαφή ιστού. title: Φιλτραρισμένες αναρτήσεις generic: all: Όλα @@ -1335,8 +1335,8 @@ el: one: "%{count} στοιχείο σε αυτή τη σελίδα είναι επιλεγμένο." other: Όλα τα %{count} στοιχεία σε αυτή τη σελίδα είναι επιλεγμένα. all_matching_items_selected_html: - one: "%{count} στοιχείο που ταιριάζει με την αναζήτησή σου είναι επιλεγμένο." - other: Όλα τα %{count} στοιχεία που ταιριάζουν στην αναζήτησή σου είναι επιλεγμένα. + one: "%{count} στοιχείο που αντιστοιχεί με την αναζήτησή σου είναι επιλεγμένο." + other: Όλα τα %{count} στοιχεία που αντιστοιχούν με την αναζήτησή σου είναι επιλεγμένα. cancel: Άκυρο changes_saved_msg: Οι αλλαγές αποθηκεύτηκαν! confirm: Επιβεβαίωση @@ -1347,8 +1347,8 @@ el: order_by: Ταξινόμηση κατά save_changes: Αποθήκευση αλλαγών select_all_matching_items: - one: Επέλεξε %{count} στοιχείο που ταιριάζει με την αναζήτησή σου. - other: Επέλεξε και τα %{count} αντικείμενα που ταιριάζουν στην αναζήτησή σου. + one: Επέλεξε %{count} στοιχείο που αντιστοιχεί με την αναζήτησή σου. + other: Επέλεξε όλα τα %{count} αντικείμενα που αντιστοιχούν με την αναζήτησή σου. today: σήμερα validation_errors: one: Κάτι δεν πάει καλά! Για κοίταξε το παρακάτω σφάλμα @@ -1365,9 +1365,9 @@ el: mismatched_types_warning: Φαίνεται ότι έχεις επιλέξει λάθος τύπο για αυτήν την εισαγωγή, παρακαλώ έλεγξε ξανά. modes: merge: Συγχώνευση - merge_long: Διατήρηση των εγγράφων που υπάρχουν και προσθήκη των νέων + merge_long: Διατήρηση των εγγραφών που υπάρχουν και προσθήκη των νέων overwrite: Αντικατάσταση - overwrite_long: Αντικατάσταση των υπαρχόντων εγγράφων με τις καινούργιες + overwrite_long: Αντικατάσταση των υπαρχόντων εγγραφών με τις καινούργιες overwrite_preambles: blocking_html: Πρόκειται να αντικαταστήσεις τη λίστα αποκλεισμών με έως και %{total_items} λογαριασμούς από το %{filename}. bookmarks_html: Πρόκειται να αντικαταστήσεις τους σελιδοδείκτες σου με έως και %{total_items} αναρτήσεις από το %{filename}. @@ -1402,15 +1402,15 @@ el: type: Τύπος εισαγωγής type_groups: constructive: Ακολουθείς & Σελιδοδείκτες - destructive: Μπλοκ & σίγαση + destructive: Αποκλεισμοί & σιγάσεις types: blocking: Λίστα αποκλεισμού bookmarks: Σελιδοδείκτες domain_blocking: Λίστα αποκλεισμένων τομέων - following: Λίστα ατόμων που ακολουθείτε + following: Λίστα λογαριασμών που ακολουθείτε lists: Λίστες muting: Λίστα αποσιωπήσεων - upload: Μεταμόρφωση + upload: Μεταφόρτωση invites: delete: Απενεργοποίησε expired: Ληγμένη @@ -1426,9 +1426,9 @@ el: invalid: Αυτή η πρόσκληση δεν είναι έγκυρη invited_by: 'Σε προσκάλεσε ο/η:' max_uses: - one: 1 χρήσης - other: "%{count} χρήσεων" - max_uses_prompt: Απεριόριστη + one: 1 χρήση + other: "%{count} χρήσεις" + max_uses_prompt: Απεριόριστες prompt: Φτιάξε και μοίρασε συνδέσμους με τρίτους για να δώσεις πρόσβαση σε αυτόν τον διακομιστή table: expires_at: Λήγει @@ -1504,19 +1504,19 @@ el: title: Συντονισμός move_handler: carry_blocks_over_text: Ο χρήστης μετακόμισε από το %{acct}, που είχες αποκλείσει. - carry_mutes_over_text: Ο χρήστης μετακόμισε από το %{acct}, που είχες αποσιωπήσει. + carry_mutes_over_text: Ο χρήστης μετακόμισε από το %{acct}, που είχες σε σίγαση. copy_account_note_text: 'Ο χρήστης μετακόμισε από τον %{acct}, ορίστε οι προηγούμενες σημειώσεις σου για εκείνον:' navigation: toggle_menu: Εμφάνιση/Απόκρυψη μενού notification_mailer: admin: report: - subject: "%{name} υπέβαλε μια αναφορά" + subject: Ο/Η %{name} υπέβαλε μια αναφορά sign_up: - subject: "%{name} έχει εγγραφεί" + subject: Ο/Η %{name} έχει εγγραφεί favourite: - body: 'Η ανάρτησή σου αγαπήθηκε από τον/την %{name}:' - subject: Ο/Η %{name} αγάπησε την κατάστασή σου + body: 'Η ανάρτησή σου αγαπήθηκε από %{name}:' + subject: Ο/Η %{name} αγάπησε την ανάρτησή σου title: Νέο αγαπημένο follow: body: Ο/Η %{name} πλέον σε ακολουθεί! @@ -1524,22 +1524,22 @@ el: title: Νέος/α ακόλουθος follow_request: action: Διαχειρίσου τα αιτήματα ακολούθησης - body: "%{name} αιτήθηκε να σε ακολουθήσει" + body: Ο/Η %{name} αιτήθηκε να σε ακολουθήσει subject: 'Ακόλουθος που εκκρεμεί: %{name}' title: Νέο αίτημα ακολούθησης mention: action: Απάντησε - body: 'Επισημάνθηκες από τον/την %{name} στο:' - subject: Επισημάνθηκες από τον/την %{name} + body: 'Επισημάνθηκες από %{name} στο:' + subject: Επισημάνθηκες από %{name} title: Νέα επισήμανση poll: - subject: Μια δημοσκόπηση του %{name} έληξε + subject: Μια δημοσκόπηση του/της %{name} έληξε reblog: - body: 'Η ανάρτησή σου ενισχύθηκε από τον/την %{name}:' + body: 'Η ανάρτησή σου ενισχύθηκε από %{name}:' subject: Ο/Η %{name} ενίσχυσε την ανάρτηση σου title: Νέα ενίσχυση status: - subject: Ο/Η %{name} μόλις ανέρτησε κάτι + subject: Ο/Η %{name} μόλις δημοσίευσε update: subject: "%{name} επεξεργάστηκε μια ανάρτηση" notifications: @@ -1565,10 +1565,10 @@ el: setup: Ρύθμιση wrong_code: Ο κωδικός που έβαλες ήταν άκυρος! Είναι σωστή ώρα στον διακομιστή και τη συσκευή; pagination: - newer: Νεότερο - next: Επόμενο - older: Παλιότερο - prev: Προηγούμενο + newer: Νεότερες + next: Επόμενη + older: Παλαιότερες + prev: Προηγούμενη truncate: "…" polls: errors: @@ -1587,7 +1587,7 @@ el: posting_defaults: Προεπιλογές ανάρτησης public_timelines: Δημόσιες ροές privacy: - hint_html: "Παραμετροποίησε πώς θες το προφίλ και οι αναρτήσεις σου να ανακαλύπτονται.. Μια ποικιλία δυνατοτήτων στο Mastodon μπορούν να σε βοηθήσουν να απευθυνθείς σε μεγαλύτερο κοινό όταν ενεργοποιηθούν. Αφιέρωσε μερικά λεπτά για να εξετάσεις τις ρυθμίσεις και να σιγουρευτείς ότι σου ταιριάζουν." + hint_html: "Προσάρμοσε πώς θες το προφίλ και οι αναρτήσεις σου να ανακαλύπτονται.. Μια ποικιλία δυνατοτήτων στο Mastodon μπορούν να σε βοηθήσουν να απευθυνθείς σε μεγαλύτερο κοινό όταν ενεργοποιηθούν. Αφιέρωσε μερικά λεπτά για να εξετάσεις τις ρυθμίσεις και να σιγουρευτείς ότι σου ταιριάζουν." privacy: Απόρρητο privacy_hint_html: "'Έλεγξε πόσο θες να αποκαλύπτεις προς όφελος των άλλων. Οι άνθρωποι ανακαλύπτουν ενδιαφέροντα προφίλ και εφαρμογές με την περιήγηση των ακολούθων άλλων ατόμων και βλέποντας από ποιες εφαρμογές δημοσιεύουν, αλλά μπορεί να προτιμάς να το κρατάς κρυφό." reach: Προσιτότητα @@ -1621,7 +1621,7 @@ el: mutual: Αμοιβαίοι primary: Βασικός relationship: Σχέση - remove_selected_domains: Αφαίρεση ακόλουθων που βρίσκονται από τους επιλεγμένους τομείς + remove_selected_domains: Αφαίρεση όλων των ακόλουθων από τους επιλεγμένους τομείς remove_selected_followers: Αφαίρεση επιλεγμένων ακολούθων remove_selected_follows: Άρση ακολούθησης επιλεγμένων χρηστών status: Κατάσταση λογαριασμού @@ -1640,7 +1640,7 @@ el: over_total_limit: Έχεις υπερβεί το όριο των %{limit} προγραμματισμένων αναρτήσεων too_soon: Η προγραμματισμένη ημερομηνία πρέπει να είναι στο μέλλον self_destruct: - lead_html: Δυστυχώς, το %{domain} κλείνει οριστικά. Αν είχατε λογαριασμό εκεί, δεν θα μπορείτε να συνεχίσετε τη χρήση του, αλλά μπορείτε ακόμα να ζητήσετε ένα αντίγραφο ασφαλείας των δεδομένων σας. + lead_html: Δυστυχώς, το %{domain} κλείνει οριστικά. Αν είχατε λογαριασμό εκεί, δεν θα μπορείτε να συνεχίσετε τη χρήση του, αλλά μπορείτε ακόμη να ζητήσετε ένα αντίγραφο ασφαλείας των δεδομένων σας. title: Αυτός ο διακομιστής κλείνει οριστικά sessions: activity: Τελευταία δραστηριότητα @@ -1699,7 +1699,7 @@ el: development: Ανάπτυξη edit_profile: Επεξεργασία προφίλ export: Εξαγωγή - featured_tags: Παρεχόμενες ετικέτες + featured_tags: Αναδεδειγμένες ετικέτες import: Εισαγωγή import_and_export: Εισαγωγή και εξαγωγή migrate: Μετακόμιση λογαριασμού @@ -1746,7 +1746,7 @@ el: in_reply_not_found: Η ανάρτηση στην οποία προσπαθείς να απαντήσεις δεν φαίνεται να υπάρχει. over_character_limit: υπέρβαση μέγιστου ορίου %{max} χαρακτήρων pin_errors: - direct: Αναρτήσεις που είναι ορατές μόνο στους αναφερόμενους χρήστες δεν μπορούν να καρφιτσωθούν + direct: Αναρτήσεις που είναι ορατές μόνο στους επισημασμένους χρήστες δεν μπορούν να καρφιτσωθούν limit: Έχεις ήδη καρφιτσώσει το μέγιστο αριθμό επιτρεπτών αναρτήσεων ownership: Δεν μπορείς να καρφιτσώσεις ανάρτηση κάποιου άλλου reblog: Οι ενισχύσεις δεν καρφιτσώνονται @@ -1761,13 +1761,13 @@ el: unlisted_long: Βλέπει ο οποιοσδήποτε, αλλά δεν καταχωρείται στις δημόσιες ροές statuses_cleanup: enabled: Αυτόματη διαγραφή παλιών αναρτήσεων - enabled_hint: Διαγράφει αυτόματα τις αναρτήσεις σου μόλις φτάσουν σε ένα καθορισμένο όριο ηλικίας, εκτός αν ταιριάζουν με μία από τις παρακάτω εξαιρέσεις + enabled_hint: Διαγράφει αυτόματα τις αναρτήσεις σου μόλις φτάσουν σε ένα καθορισμένο όριο ηλικίας, εκτός αν αντιστοιχούν με μία από τις παρακάτω εξαιρέσεις exceptions: Εξαιρέσεις explanation: Επειδή η διαγραφή αναρτήσεων είναι μια κοστοβόρα διαδικασία, γίνεται σε αραιά τακτά διαστήματα, όταν ο διακομιστής δεν είναι ιδιαίτερα απασχολημένος. Γι' αυτό, οι αναρτήσεις σου μπορεί να διαγραφούν λίγο μετά το πέρας του ορίου ηλικίας. ignore_favs: Αγνόηση αγαπημένων ignore_reblogs: Αγνόηση ενισχύσεων interaction_exceptions: Εξαιρέσεις βασισμένες σε αλληλεπιδράσεις - interaction_exceptions_explanation: Σημείωσε ότι δεν υπάρχει εγγύηση για πιθανή διαγραφή αναρτήσεων αν αυτά πέσουν κάτω από το όριο αγαπημένων ή ενισχύσεων ακόμα και αν κάποτε το είχαν ξεπεράσει. + interaction_exceptions_explanation: Σημείωσε ότι δεν υπάρχει εγγύηση για διαγραφή αναρτήσεων αν αυτά πέσουν κάτω από το όριο αγαπημένων ή ενισχύσεων ακόμη και αν κάποτε το είχαν ξεπεράσει. keep_direct: Διατήρηση άμεσων μηνυμάτων keep_direct_hint: Δεν διαγράφει κανένα από τα άμεσα μηνύματά σου keep_media: Διατήρηση αναρτήσεων με συνημμένα πολυμέσων @@ -1793,14 +1793,14 @@ el: min_favs: Κράτα τις αναρτήσεις που έχουν γίνει αγαπημένες τουλάχιστον min_favs_hint: Δεν διαγράφει καμία από τις αναρτήσεις σου που έχει λάβει τουλάχιστον αυτόν τον αριθμό αγαπημένων. Άσε κενό για να διαγράψεις αναρτήσεις ανεξάρτητα από τον αριθμό των αγαπημένων min_reblogs: Διατήρηση αναρτήσεων που έχουν ενισχυθεί τουλάχιστον - min_reblogs_hint: Δεν διαγράφει καμία από τις δημοσιεύσεις σας που έχει λάβει τουλάχιστον αυτόν τον αριθμό ενισχύσεων. Αφήστε κενό για να διαγράψετε δημοσιεύσεις ανεξάρτητα από τον αριθμό των ενισχύσεων + min_reblogs_hint: Δεν διαγράφει καμία από τις αναρτήσεις σας που έχει λάβει τουλάχιστον αυτόν τον αριθμό ενισχύσεων. Αφήστε κενό για να διαγράψετε αναρτήσεις ανεξάρτητα από τον αριθμό των ενισχύσεων stream_entries: sensitive_content: Ευαίσθητο περιεχόμενο strikes: errors: too_late: Είναι πολύ αργά για να κάνεις έφεση σε αυτό το παράπτωμα tags: - does_not_match_previous_name: δεν ταιριάζει με το προηγούμενο όνομα + does_not_match_previous_name: δεν αντιστοιχεί με το προηγούμενο όνομα themes: contrast: Mastodon (Υψηλή αντίθεση) default: Mastodon (Σκοτεινό) @@ -1863,33 +1863,33 @@ el: title: Μια νέα σύνδεση warning: appeal: Υποβολή έφεσης - appeal_description: Αν πιστεύεις ότι έγινε λάθος, μπορείς να υποβάλεις μια αίτηση στο προσωπικό του %{instance}. + appeal_description: Αν πιστεύεις ότι έγινε λάθος, μπορείς να υποβάλεις μια έφεση στο προσωπικό του %{instance}. categories: spam: Ανεπιθύμητο violation: Το περιεχόμενο παραβιάζει τις ακόλουθες οδηγίες κοινότητας explanation: delete_statuses: Μερικές από τις αναρτήσεις σου έχουν βρεθεί να παραβιάζουν μία ή περισσότερες οδηγίες κοινότητας και έχουν συνεπώς αφαιρεθεί από τους συντονιστές του %{instance}. disable: Δεν μπορείς πλέον να χρησιμοποιήσεις τον λογαριασμό σου, αλλά το προφίλ σου και άλλα δεδομένα παραμένουν άθικτα. Μπορείς να ζητήσεις ένα αντίγραφο ασφαλείας των δεδομένων σου, να αλλάξεις τις ρυθμίσεις του λογαριασμού σου ή να διαγράψεις τον λογαριασμό σου. - mark_statuses_as_sensitive: Μερικές από τις αναρτήσεις σου έχουν επισημανθεί ως ευαίσθητες από τους συντονιστές του %{instance}. Αυτό σημαίνει ότι οι άνθρωποι θα πρέπει να πατήσουν τα πολυμέσα στις αναρτήσεις πριν εμφανιστεί μια προεπισκόπηση. Μπορείς να επισημάνεις τα πολυμέσα ως ευαίσθητα όταν δημοσιεύεις στο μέλλον. - sensitive: Από δω και στο εξής, όλα τα μεταφορτωμένα αρχεία πολυμέσων σου θα επισημανθούν ως ευαίσθητα και κρυμμένα πίσω από μια προειδοποίηση που πρέπει να πατηθεί. - silence: Μπορείς ακόμα να χρησιμοποιείς τον λογαριασμό σου, αλλά μόνο άτομα που σε ακολουθούν ήδη θα δουν τις αναρτήσεις σου σε αυτόν τον διακομιστή και μπορεί να αποκλειστείς από διάφορες δυνατότητες ανακάλυψης. Ωστόσο, οι άλλοι μπορούν ακόμα να σε ακολουθήσουν με μη αυτόματο τρόπο. - suspend: Δε μπορείς πλέον να χρησιμοποιήσεις τον λογαριασμό σου και το προφίλ σου και άλλα δεδομένα δεν είναι πλέον προσβάσιμα. Μπορείς ακόμα να συνδεθείς για να αιτηθείς αντίγραφο των δεδομένων σου μέχρι να αφαιρεθούν πλήρως σε περίπου 30 μέρες αλλά, θα διατηρήσουμε κάποια βασικά δεδομένα για να σε αποτρέψουμε να παρακάμψεις την αναστολή. + mark_statuses_as_sensitive: Μερικές από τις αναρτήσεις σου έχουν σημανθεί ως ευαίσθητες από τους συντονιστές του %{instance}. Αυτό σημαίνει ότι οι άνθρωποι θα πρέπει να πατήσουν τα πολυμέσα στις αναρτήσεις πριν εμφανιστεί μια προεπισκόπηση. Μπορείς να σημάνεις τα πολυμέσα ως ευαίσθητα ο ίδιος όταν δημοσιεύεις στο μέλλον. + sensitive: Από δω και στο εξής, όλα τα μεταφορτωμένα αρχεία πολυμέσων σου θα σημανθούν ως ευαίσθητα και κρυμμένα πίσω από μια προειδοποίηση που πρέπει να πατηθεί. + silence: Μπορείς ακόμη να χρησιμοποιείς τον λογαριασμό σου, αλλά μόνο άτομα που σε ακολουθούν ήδη θα δουν τις αναρτήσεις σου σε αυτόν τον διακομιστή και μπορεί να αποκλειστείς από διάφορες δυνατότητες ανακάλυψης. Ωστόσο, οι άλλοι μπορούν ακόμη να σε ακολουθήσουν με μη αυτόματο τρόπο. + suspend: Δε μπορείς πλέον να χρησιμοποιήσεις τον λογαριασμό σου, και το προφίλ σου και άλλα δεδομένα δεν είναι πλέον προσβάσιμα. Μπορείς ακόμη να συνδεθείς για να αιτηθείς αντίγραφο των δεδομένων σου μέχρι να αφαιρεθούν πλήρως σε περίπου 30 μέρες αλλά, θα διατηρήσουμε κάποια βασικά δεδομένα για να σε αποτρέψουμε να παρακάμψεις την αναστολή. reason: 'Αιτιολογία:' statuses: 'Αναφερόμενες αναρτήσεις:' subject: delete_statuses: Οι αναρτήσεις σου στον %{acct} έχουν αφαιρεθεί disable: Ο λογαριασμός σου %{acct} έχει παγώσει - mark_statuses_as_sensitive: Οι αναρτήσεις σου στον %{acct} έχουν επισημανθεί ως ευαίσθητες + mark_statuses_as_sensitive: Οι αναρτήσεις σου στο %{acct} έχουν σημανθεί ως ευαίσθητες none: Προειδοποίηση προς %{acct} - sensitive: Οι αναρτήσεις σου στο %{acct} θα επισημαίνονται ως ευαίσθητες από 'δω και στο εξής + sensitive: Οι αναρτήσεις σου στο %{acct} θα σημαίνονται ως ευαίσθητες από 'δω και στο εξής silence: Ο λογαριασμός σου %{acct} έχει περιοριστεί suspend: Ο λογαριασμός σου %{acct} έχει ανασταλεί title: delete_statuses: Οι αναρτήσεις αφαιρέθηκαν disable: Παγωμένος λογαριασμός - mark_statuses_as_sensitive: Οι αναρτήσεις επισημάνθηκαν ως ευαίσθητες + mark_statuses_as_sensitive: Οι αναρτήσεις σημάνθηκαν ως ευαίσθητες none: Προειδοποίηση - sensitive: Ο λογαριασμός επισημάνθηκε ως ευαίσθητος + sensitive: Ο λογαριασμός σημάνθηκε ως ευαίσθητος silence: Περιορισμένος λογαριασμός suspend: Λογαριασμός σε αναστολή welcome: @@ -1929,7 +1929,7 @@ el: post_title: Κάνε την πρώτη σου ανάρτηση share_action: Κοινοποίηση share_step: Πες στους φίλους σου πώς να σε βρουν στο Mastodon. - share_title: Μοιραστείτε το προφίλ σας στο Mastodon + share_title: Κοινοποίησε το προφίλ σου στο Mastodon sign_in_action: Σύνδεση subject: Καλώς ήρθες στο Mastodon title: Καλώς όρισες, %{name}! @@ -1942,11 +1942,11 @@ el: seamless_external_login: Επειδή έχεις συνδεθεί μέσω τρίτης υπηρεσίας, οι ρυθμίσεις συνθηματικού και email δεν είναι διαθέσιμες. signed_in_as: 'Έχεις συνδεθεί ως:' verification: - extra_instructions_html: Συμβουλή: Ο σύνδεσμος στην ιστοσελίδα σου μπορεί να είναι αόρατος. Το σημαντικό μέρος είναι το rel="me" που αποτρέπει την μίμηση σε ιστοσελίδες με περιεχόμενο παραγόμενο από χρήστες. Μπορείς ακόμη να χρησιμοποιήσεις μια ετικέτα συνδέσμου στην κεφαλίδα της σελίδας αντί για a, αλλά ο κώδικας HTML πρέπει να είναι προσβάσιμος χωρίς την εκτέλεση JavaScript. + extra_instructions_html: Συμβουλή: Ο σύνδεσμος στην ιστοσελίδα σου μπορεί να είναι αόρατος. Το σημαντικό μέρος είναι το rel="me" που αποτρέπει την μίμηση σε ιστοσελίδες με περιεχόμενο παραγόμενο από χρήστες. Μπορείς ακόμα να χρησιμοποιήσεις μια ετικέτα link στην κεφαλίδα της σελίδας αντί για a, αλλά η HTML πρέπει να είναι προσβάσιμη χωρίς την εκτέλεση JavaScript. here_is_how: Δείτε πώς - hint_html: Η επαλήθευση της ταυτότητας στο Mastodon είναι για όλους. Βασισμένο σε ανοιχτά πρότυπα ιστού, τώρα και για πάντα δωρεάν. Το μόνο που χρειάζεσαι είναι μια προσωπική ιστοσελίδα που ο κόσμος να σε αναγνωρίζει από αυτή. Όταν συνδέεσαι σε αυτήν την ιστοσελίδα από το προφίλ σου, θα ελέγξουμε ότι η ιστοσελίδα συνδέεται πίσω στο προφίλ σου και θα δείξει μια οπτική ένδειξη σε αυτό. + hint_html: Η επαλήθευση της ταυτότητας στο Mastodon είναι για όλους. Βασισμένο σε ανοιχτά πρότυπα ιστού, τώρα και για πάντα δωρεάν. Το μόνο που χρειάζεσαι είναι μια προσωπική ιστοσελίδα που ο κόσμος να σε αναγνωρίζει από αυτή. Όταν βάζεις σύνδεσμο προς αυτήν την ιστοσελίδα από το προφίλ σου, θα ελέγξουμε ότι η ιστοσελίδα συνδέει πίσω στο προφίλ σου και θα δείξουμε μια οπτική ένδειξη σε αυτό. instructions_html: Αντέγραψε και επικόλλησε τον παρακάτω κώδικα στην HTML της ιστοσελίδας σου. Στη συνέχεια, πρόσθεσε τη διεύθυνση της ιστοσελίδας σου σε ένα από τα επιπλέον πεδία στο προφίλ σου από την καρτέλα "Επεξεργασία προφίλ" και αποθήκευσε τις αλλαγές. - verification: Πιστοποίηση + verification: Επαλήθευση verified_links: Οι επαληθευμένοι σύνδεσμοι σας website_verification: Επαλήθευση ιστοτόπου webauthn_credentials: @@ -1962,7 +1962,7 @@ el: success: Το κλειδί ασφαλείας σου διαγράφηκε με επιτυχία. invalid_credential: Άκυρο κλειδί ασφαλείας nickname_hint: Βάλε το ψευδώνυμο του νέου κλειδιού ασφαλείας σου - not_enabled: Δεν έχεις ενεργοποιήσει το WebAuthn ακόμα + not_enabled: Δεν έχεις ενεργοποιήσει το WebAuthn ακόμη not_supported: Αυτό το πρόγραμμα περιήγησης δεν υποστηρίζει κλειδιά ασφαλείας otp_required: Για να χρησιμοποιήσεις κλειδιά ασφαλείας, ενεργοποίησε πρώτα την ταυτοποίηση δύο παραγόντων. registered_on: Εγγραφή στις %{date} diff --git a/config/locales/en-GB.yml b/config/locales/en-GB.yml index 42eae026fb..05647ba913 100644 --- a/config/locales/en-GB.yml +++ b/config/locales/en-GB.yml @@ -102,7 +102,7 @@ en-GB: moderation_notes: Moderation notes most_recent_activity: Most recent activity most_recent_ip: Most recent IP - no_account_selected: No accounts were changed as none were selected + no_account_selected: No accounts were changed, as none were selected no_limits_imposed: No limits imposed no_role_assigned: No role assigned not_subscribed: Not subscribed @@ -154,7 +154,7 @@ en-GB: subscribe: Subscribe suspend: Suspend suspended: Suspended - suspension_irreversible: The data of this account has been irreversibly deleted. You can unsuspend the account to make it usable but it will not recover any data it previously had. + suspension_irreversible: The data of this account has been irreversibly deleted. You can unsuspend the account to make it usable, but it will not recover any data it previously had. suspension_reversible_hint_html: The account has been suspended, and the data will be fully removed on %{date}. Until then, the account can be restored without any ill effects. If you wish to remove all of the account's data immediately, you can do so below. title: Accounts unblock_email: Unblock email address @@ -261,7 +261,7 @@ en-GB: destroy_status_html: "%{name} removed post by %{target}" destroy_unavailable_domain_html: "%{name} stopped delivery to domain %{target}" destroy_user_role_html: "%{name} deleted %{target} role" - disable_2fa_user_html: "%{name} disabled two factor requirement for user %{target}" + disable_2fa_user_html: "%{name} disabled two-factor requirement for user %{target}" disable_custom_emoji_html: "%{name} disabled emoji %{target}" disable_sign_in_token_auth_user_html: "%{name} disabled email token authentication for %{target}" disable_user_html: "%{name} disabled login for user %{target}" @@ -342,7 +342,7 @@ en-GB: not_permitted: You are not permitted to perform this action overwrite: Overwrite shortcode: Shortcode - shortcode_hint: At least 2 characters, only alphanumeric characters and underscores + shortcode_hint: At least two characters, only alphanumeric characters and underscores title: Custom emojis uncategorized: Uncategorised unlist: Unlist @@ -422,7 +422,7 @@ en-GB: private_comment: Private comment private_comment_hint: Comment about this domain limitation for internal use by the moderators. public_comment: Public comment - public_comment_hint: Comment about this domain limitation for the general public, if advertising the list of domain limitations is enabled. + public_comment_hint: Comment about this domain limitation for the general public if advertising the list of domain limitations is enabled. reject_media: Reject media files reject_media_hint: Removes locally stored media files and refuses to download any in the future. Irrelevant for suspensions reject_reports: Reject reports @@ -496,7 +496,7 @@ en-GB: content_policies: comment: Internal note description_html: You can define content policies that will be applied to all accounts from this domain and any of its subdomains. - limited_federation_mode_description_html: You can chose whether to allow federation with this domain. + limited_federation_mode_description_html: You can choose whether to allow federation with this domain. policies: reject_media: Reject media reject_reports: Reject reports @@ -558,15 +558,15 @@ en-GB: created_msg: Successfully added new IP rule delete: Delete expires_in: - '1209600': 2 weeks - '15778476': 6 months - '2629746': 1 month - '31556952': 1 year - '86400': 1 day - '94670856': 3 years + '1209600': two weeks + '15778476': six months + '2629746': one month + '31556952': one year + '86400': one day + '94670856': three years new: title: Create new IP rule - no_ip_block_selected: No IP rules were changed as none were selected + no_ip_block_selected: No IP rules were changed, as none were selected title: IP rules relationships: title: "%{acct}'s relationships" @@ -582,7 +582,7 @@ en-GB: inbox_url: Relay URL pending: Waiting for relay's approval save_and_enable: Save and enable - setup: Setup a relay connection + setup: Set up a relay connection signatures_not_enabled: Relays may not work correctly while secure mode or limited federation mode is enabled status: Status title: Relays @@ -599,12 +599,12 @@ en-GB: actions: delete_description_html: The reported posts will be deleted and a strike will be recorded to help you escalate on future infractions by the same account. mark_as_sensitive_description_html: The media in the reported posts will be marked as sensitive and a strike will be recorded to help you escalate on future infractions by the same account. - other_description_html: See more options for controlling the account's behaviour and customise communication to the reported account. + other_description_html: See more options for controlling the account's behaviour and customising communication to the reported account. resolve_description_html: No action will be taken against the reported account, no strike recorded, and the report will be closed. - silence_description_html: The account will be visible only to those who already follow it or manually look it up, severely limiting its reach. Can always be reverted. Closes all reports against this account. - suspend_description_html: The account and all its contents will be inaccessible and eventually deleted, and interacting with it will be impossible. Reversible within 30 days. Closes all reports against this account. + silence_description_html: The account will be visible only to those who already follow it or manually look it up, severely limiting its reach. This can always be reverted. This closes all reports against this account. + suspend_description_html: The account and all its contents will be inaccessible and eventually deleted, and interacting with it will be impossible. This is reversible within 30 days. This closes all reports against this account. actions_description_html: Decide which action to take to resolve this report. If you take a punitive action against the reported account, an email notification will be sent to them, except when the Spam category is selected. - actions_description_remote_html: Decide which action to take to resolve this report. This will only affect how your server communicates with this remote account and handle its content. + actions_description_remote_html: Decide which action to take to resolve this report. This will only affect how your server communicates with this remote account and handles its content. actions_no_posts: This report doesn't have any associated posts to delete add_to_report: Add more to report already_suspended_badges: @@ -666,7 +666,7 @@ en-GB: suspend_html: Suspend @%{acct}, making their profile and contents inaccessible and impossible to interact with close_report: 'Mark report #%{id} as resolved' close_reports_html: Mark all reports against @%{acct} as resolved - delete_data_html: Delete @%{acct}'s profile and contents 30 days from now unless they get unsuspended in the meantime + delete_data_html: Delete @%{acct}'s profile and contents 30 days from now, unless they get unsuspended in the meantime preview_preamble_html: "@%{acct} will receive a warning with the following contents:" record_strike_html: Record a strike against @%{acct} to help you escalate on future violations from this account send_email_html: Send @%{acct} a warning email @@ -690,7 +690,7 @@ en-GB: moderation: Moderation special: Special delete: Delete - description_html: With user roles, you can customize which functions and areas of Mastodon your users can access. + description_html: With user roles, you can customise which functions and areas of Mastodon your users can access. edit: Edit '%{name}' role everyone: Default permissions everyone_full_description_html: This is the base role affecting all users, even those without an assigned role. All other roles inherit permissions from it. @@ -749,8 +749,8 @@ en-GB: settings: about: manage_rules: Manage server rules - preamble: Provide in-depth information about how the server is operated, moderated, funded. - rules_hint: There is a dedicated area for rules that your users are expected to adhere to. + preamble: Provide in-depth information about how the server is operated, moderated, and funded. + rules_hint: There is a dedicated area for rules to which your users are expected to adhere. title: About appearance: preamble: Customise Mastodon's web interface. @@ -770,7 +770,7 @@ en-GB: title: Opt users out of search engine indexing by default discovery: follow_recommendations: Follow recommendations - preamble: Surfacing interesting content is instrumental in onboarding new users who may not know anyone Mastodon. Control how various discovery features work on your server. + preamble: Surfacing interesting content is instrumental in onboarding new users who may not know anyone on Mastodon. Control how various discovery features work on your server. profile_directory: Profile directory public_timelines: Public timelines publish_discovered_servers: Publish discovered servers @@ -801,7 +801,7 @@ en-GB: delete: Delete uploaded file destroyed_msg: Site upload successfully deleted! software_updates: - critical_update: Critical — please update quickly + critical_update: Critical – please update quickly description: It is recommended to keep your Mastodon installation up to date to benefit from the latest fixes and features. Moreover, it is sometimes critical to update Mastodon in a timely manner to avoid security issues. For these reasons, Mastodon checks for updates every 30 minutes, and will notify you according to your email notification preferences. documentation_link: Learn more release_notes: Release notes @@ -810,7 +810,7 @@ en-GB: types: major: Major release minor: Minor release - patch: Patch release — bugfixes and easy to apply changes + patch: Patch release – bug fixes and easy to apply changes version: Version statuses: account: Author @@ -884,7 +884,7 @@ en-GB: message_html: A critical Mastodon update is available, please update as quickly as possible. software_version_patch_check: action: See available updates - message_html: A bugfix Mastodon update is available. + message_html: A bug fix Mastodon update is available. upload_check_privacy_error: action: Check here for more information message_html: "Your web server is misconfigured. The privacy of your users is at risk." @@ -925,12 +925,12 @@ en-GB: confirm_allow_provider: Are you sure you want to allow selected providers? confirm_disallow: Are you sure you want to disallow selected links? confirm_disallow_provider: Are you sure you want to disallow selected providers? - description_html: These are links that are currently being shared a lot by accounts that your server sees posts from. It can help your users find out what's going on in the world. No links are displayed publicly until you approve the publisher. You can also allow or reject individual links. + description_html: These are links that are currently being shared a lot by accounts from which your server sees posts. It can help your users find out what's going on in the world. No links are displayed publicly until you approve the publisher. You can also allow or reject individual links. disallow: Disallow link disallow_provider: Disallow publisher - no_link_selected: No links were changed as none were selected + no_link_selected: No links were changed, as none were selected publishers: - no_publisher_selected: No publishers were changed as none were selected + no_publisher_selected: No publishers were changed, as none were selected shared_by_over_week: one: Shared by one person over the last week other: Shared by %{count} people over the last week @@ -955,7 +955,7 @@ en-GB: description_html: These are posts that your server knows about that are currently being shared and favourited a lot at the moment. It can help your new and returning users to find more people to follow. No posts are displayed publicly until you approve the author, and the author allows their account to be suggested to others. You can also allow or reject individual posts. disallow: Disallow post disallow_account: Disallow author - no_status_selected: No trending posts were changed as none were selected + no_status_selected: No trending posts were changed, as none were selected not_discoverable: Author has not opted-in to being discoverable shared_by: one: Shared or favourited one time @@ -971,7 +971,7 @@ en-GB: tag_uses_measure: total uses description_html: These are hashtags that are currently appearing in a lot of posts that your server sees. It can help your users find out what people are talking the most about at the moment. No hashtags are displayed publicly until you approve them. listable: Can be suggested - no_tag_selected: No tags were changed as none were selected + no_tag_selected: No tags were changed, as none were selected not_listable: Won't be suggested not_trendable: Won't appear under trends not_usable: Cannot be used @@ -1059,7 +1059,7 @@ en-GB: remove: Unlink alias appearance: advanced_web_interface: Advanced web interface - advanced_web_interface_hint: 'If you want to make use of your entire screen width, the advanced web interface allows you to configure many different columns to see as much information at the same time as you want: Home, notifications, federated timeline, any number of lists and hashtags.' + advanced_web_interface_hint: 'If you want to make use of your entire screen width, the advanced web interface allows you to configure many different columns to see as much information at the same time as you want: home, notifications, federated timeline, any number of lists and hashtags.' animations_and_accessibility: Animations and accessibility confirmation_dialogs: Confirmation dialogues discovery: Discovery @@ -1105,7 +1105,7 @@ en-GB: description: prefix_invited_by_user: "@%{name} invites you to join this server of Mastodon!" prefix_sign_up: Sign up on Mastodon today! - suffix: With an account, you will be able to follow people, post updates and exchange messages with users from any Mastodon server and more! + suffix: With an account, you will be able to follow people, post updates, and exchange messages with users from any Mastodon server and more! didnt_get_confirmation: Didn't receive a confirmation link? dont_have_your_security_key: Don't have your security key? forgot_password: Forgot your password? @@ -1174,7 +1174,7 @@ en-GB: title: Author attribution challenge: confirm: Continue - hint_html: "Tip: We won't ask you for your password again for the next hour." + hint_html: "Tip: we won't ask you for your password again for the next hour." invalid_password: Invalid password prompt: Confirm password to continue crypto: @@ -1271,7 +1271,7 @@ en-GB: archive_takeout: date: Date download: Download your archive - hint_html: You can request an archive of your posts and uploaded media. The exported data will be in the ActivityPub format, readable by any compliant software. You can request an archive every 7 days. + hint_html: You can request an archive of your posts and uploaded media. The exported data will be in the ActivityPub format, readable by any compliant software. You can request an archive every seven days. in_progress: Compiling your archive... request: Request your archive size: Size @@ -1286,7 +1286,7 @@ en-GB: add_new: Add new errors: limit: You have already featured the maximum number of hashtags - hint_html: "What are featured hashtags? They are displayed prominently on your public profile and allow people to browse your public posts specifically under those hashtags. They are a great tool for keeping track of creative works or long-term projects." + hint_html: "Feature your most important hashtags on your profile. A great tool for keeping track of your creative works and long-term projects, featured hashtags are displayed prominently on your profile and allow quick access to your own posts." filters: contexts: account: Profiles @@ -1380,7 +1380,7 @@ en-GB: bookmarks_html: You are about to add up to %{total_items} posts from %{filename} to your bookmarks. domain_blocking_html: You are about to block up to %{total_items} domains from %{filename}. following_html: You are about to follow up to %{total_items} accounts from %{filename}. - lists_html: You are about to add up to %{total_items} accounts from %{filename} to your lists. New lists will be created if there is no list to add to. + lists_html: You are about to add up to %{total_items} accounts from %{filename} to your lists. New lists will be created if there is no list to which to add. muting_html: You are about to mute up to %{total_items} accounts from %{filename}. preface: You can import data that you have exported from another server, such as a list of the people you are following or blocking. recent_imports: Recent imports @@ -1401,8 +1401,8 @@ en-GB: muting: Importing muted accounts type: Import type type_groups: - constructive: Follows & Bookmarks - destructive: Blocks & mutes + constructive: Follows and bookmarks + destructive: Blocks and mutes types: blocking: Blocking list bookmarks: Bookmarks @@ -1468,7 +1468,7 @@ en-GB: images_and_video: Cannot attach a video to a post that already contains images not_found: Media %{ids} not found or already attached to another post not_ready: Cannot attach files that have not finished processing. Try again in a moment! - too_many: Cannot attach more than 4 files + too_many: Cannot attach more than four files migrations: acct: Moved to cancel: Cancel redirect @@ -1589,11 +1589,11 @@ en-GB: privacy: hint_html: "Customise how you want your profile and your posts to be found. A variety of features in Mastodon can help you reach a wider audience when enabled. Take a moment to review these settings to make sure they fit your use case." privacy: Privacy - privacy_hint_html: Control how much you want to disclose for the benefit of others. People discover interesting profiles and cool apps by browsing other people's follows and seeing which apps they post from, but you may prefer to keep it hidden. + privacy_hint_html: Control how much you want to disclose for the benefit of others. People discover interesting profiles and cool apps by browsing other people's follows and seeing from which apps they post, but you may prefer to keep it hidden. reach: Reach reach_hint_html: Control whether you want to be discovered and followed by new people. Do you want your posts to appear on the Explore screen? Do you want other people to see you in their follow recommendations? Do you want to accept all new followers automatically, or have granular control over each one? search: Search - search_hint_html: Control how you want to be found. Do you want people to find you by what you've publicly posted about? Do you want people outside Mastodon to find your profile when searching the web? Please mind that total exclusion from all search engines cannot be guaranteed for public information. + search_hint_html: Control how you want to be found. Do you want people to find you by what you've publicly posted about? Do you want people outside Mastodon to find your profile when searching the web? Please bear in mind that total exclusion from all search engines cannot be guaranteed for public information. title: Privacy and reach privacy_policy: title: Privacy Policy @@ -1791,9 +1791,9 @@ en-GB: '7889238': 3 months min_age_label: Age threshold min_favs: Keep posts favourited at least - min_favs_hint: Doesn't delete any of your posts that has received at least this number of favourites. Leave blank to delete posts regardless of their number of favourites + min_favs_hint: Doesn't delete any of your posts that have received at least this number of favourites. Leave blank to delete posts regardless of their number of favourites min_reblogs: Keep posts boosted at least - min_reblogs_hint: Doesn't delete any of your posts that has been boosted at least this number of times. Leave blank to delete posts regardless of their number of boosts + min_reblogs_hint: Doesn't delete any of your posts that have been boosted at least this number of times. Leave blank to delete posts regardless of their number of boosts stream_entries: sensitive_content: Sensitive content strikes: @@ -1919,9 +1919,9 @@ en-GB: follows_title: Who to follow follows_view_more: View more people to follow hashtags_recent_count: - one: "%{people} person in the past 2 days" - other: "%{people} people in the past 2 days" - hashtags_subtitle: Explore what’s trending since past 2 days + one: "%{people} person in the past two days" + other: "%{people} people in the past two days" + hashtags_subtitle: Explore what’s trending since the past two days hashtags_title: Trending hashtags hashtags_view_more: View more trending hashtags post_action: Compose @@ -1942,9 +1942,9 @@ en-GB: seamless_external_login: You are logged in via an external service, so password and email settings are not available. signed_in_as: 'Logged in as:' verification: - extra_instructions_html: Tip: The link on your website can be invisible. The important part is rel="me" which prevents impersonation on websites with user-generated content. You can even use a link tag in the header of the page instead of a, but the HTML must be accessible without executing JavaScript. + extra_instructions_html: Tip: the link on your website can be invisible. The important part is rel="me" which prevents impersonation on websites with user-generated content. You can even use a link tag in the header of the page instead of a, but the HTML must be accessible without executing JavaScript. here_is_how: Here's how - hint_html: "Verifying your identity on Mastodon is for everyone. Based on open web standards, now and forever free. All you need is a personal website that people recognize you by. When you link to this website from your profile, we will check that the website links back to your profile and show a visual indicator on it." + hint_html: "Verifying your identity on Mastodon is for everyone. Based on open web standards, now and forever free. All you need is a personal website that people recognise you by. When you link to this website from your profile, we will check that the website links back to your profile and show a visual indicator on it." instructions_html: Copy and paste the code below into the HTML of your website. Then add the address of your website into one of the extra fields on your profile from the "Edit profile" tab and save changes. verification: Verification verified_links: Your verified links diff --git a/config/locales/eo.yml b/config/locales/eo.yml index beb7b3697b..818be92fde 100644 --- a/config/locales/eo.yml +++ b/config/locales/eo.yml @@ -1207,7 +1207,7 @@ eo: warning: before: 'Antau ol dauri, legu ĉi tiujn notojn zorgeme:' caches: Enhavo kiu kaŝmemorigitas de aliaj serviloj eble restas - data_removal: Viaj afiŝoj kaj aliaj informoj estos forigita por eterne + data_removal: Viaj afiŝoj kaj aliaj informoj estos forigita por ĉiam email_change_html: Vi povas ŝanĝi vian retadreson sen forigi vian konton email_contact_html: Se ĝi ankoraŭ ne alvenas, vi povas retpoŝti al %{email} por helpo email_reconfirmation_html: Se vi ne ricevas la konfirmretpoŝton, vi povas denove peti @@ -1288,7 +1288,7 @@ eo: add_new: Aldoni novan errors: limit: Vi jam elstarigis la maksimuman kvanton da kradvortoj - hint_html: "Kio estas la trajtaj kradvortoj? Ili bone videblas en via publika profilo kaj permesas al homoj trarigardi viajn publikajn mesaĝojn specife laŭ tiuj kradvortoj. Ili estas bonaj iloj por sekvi la evoluon de kreadaj laboroj aŭ longdaŭraj projektoj." + hint_html: "Elstarigu viajn plej gravajn kradvortojn en via profilo. Bona ilo por sekvi viaj kreaĵoj aŭ longdaŭraj projektoj, elstarigitaj kradvortoj bone videblas en via publika profilo kaj ebligas rapidan aliron al viaj propraj afiŝoj." filters: contexts: account: Profiloj diff --git a/config/locales/es-AR.yml b/config/locales/es-AR.yml index b3fe023417..283aeb3d7d 100644 --- a/config/locales/es-AR.yml +++ b/config/locales/es-AR.yml @@ -36,7 +36,7 @@ es-AR: add_email_domain_block: Bloquear el dominio del correo electrónico approve: Aprobar approved_msg: Se aprobó exitosamente la solicitud de registro de %{username} - are_you_sure: "¿Estás seguro?" + are_you_sure: "¿Continuar?" avatar: Avatar by_domain: Dominio change_email: @@ -139,7 +139,7 @@ es-AR: search_same_ip: Otros usuarios con la misma dirección IP security: Seguridad security_measures: - only_password: Sólo contraseña + only_password: Solo contraseña password_and_2fa: Contraseña y 2FA sensitive: Forzar como sensible sensitized: Marcado como sensible @@ -342,7 +342,7 @@ es-AR: not_permitted: No tenés permiso para realizar esta acción overwrite: Sobreescribir shortcode: Código corto - shortcode_hint: Al menos 2 caracteres, sólo caracteres alfanuméricos y subguiones ("_") + shortcode_hint: Al menos 2 caracteres, solo caracteres alfanuméricos y subguiones ("_") title: Emojis personalizados uncategorized: Sin categoría unlist: No listar @@ -492,7 +492,7 @@ es-AR: back_to_limited: Limitados back_to_warning: Advertencia by_domain: Dominio - confirm_purge: "¿Estás seguro que querés eliminar permanentemente los datos de este dominio?" + confirm_purge: "¿De verdad querés eliminar permanentemente los datos de este dominio?" content_policies: comment: Nota interna description_html: Podés definir políticas de contenido que se aplicarán a todas las cuentas de este dominio y a cualquiera de sus subdominios. @@ -601,16 +601,16 @@ es-AR: mark_as_sensitive_description_html: Los archivos de medios en los mensajes denunciados se marcarán como sensibles y se registrará un incumplimiento para ayudarte a escalar las futuras infracciones de la misma cuenta. other_description_html: Ver más opciones para controlar el comportamiento de la cuenta y personalizar la comunicación de la cuenta denunciada. resolve_description_html: No se tomarán medidas contra la cuenta denunciada, no se registrará el incumplimiento, y se cerrará la denuncia. - silence_description_html: La cuenta será visible sólo para quienes ya la siguen o la busquen manualmente, limitando severamente su alcance. Siempre puede ser revertido. Esto cierra todas las denuncias contra esta cuenta. + silence_description_html: La cuenta será visible solo para quienes ya la siguen o la busquen manualmente, limitando severamente su alcance. Siempre puede ser revertido. Esto cierra todas las denuncias contra esta cuenta. suspend_description_html: La cuenta y todos sus contenidos serán inaccesibles y finalmente eliminados, e interactuar con ella será imposible. Revertible en 30 días. Esto cierra todas las denuncias contra esta cuenta. actions_description_html: Decidí qué medidas tomar para resolver esta denuncia. Si tomás una acción punitiva contra la cuenta denunciada, se le enviará a dicha cuenta una notificación por correo electrónico, excepto cuando se seleccione la categoría Spam. - actions_description_remote_html: Decidí qué medidas tomar para resolver esta denuncia. Esto sólo afectará la forma en que tu servidor se comunica con esta cuenta remota y maneja su contenido. + actions_description_remote_html: Decidí qué medidas tomar para resolver esta denuncia. Esto solo afectará la forma en que tu servidor se comunica con esta cuenta remota y maneja su contenido. actions_no_posts: Esta denuncia no tiene ningún mensaje asociado para eliminar add_to_report: Agregar más a la denuncia already_suspended_badges: local: Ya suspendido en este servidor remote: Ya suspendido en su servidor - are_you_sure: "¿Estás seguro?" + are_you_sure: "¿Continuar?" assign_to_self: Asignármela a mí assigned: Moderador asignado by_target_domain: Dominio de la cuenta denunciada @@ -662,7 +662,7 @@ es-AR: actions: delete_html: Eliminar los mensajes ofensivos mark_as_sensitive_html: Marcar los mensajes ofensivos como sensibles - silence_html: Limitar severamente el alcance de @%{acct} haciendo que su perfil y contenido sólo sean visibles para las personas que ya lo siguen o que busquen manualmente su perfil + silence_html: Limitar severamente el alcance de @%{acct} haciendo que su perfil y contenido solo sean visibles para las personas que ya lo siguen o que busquen manualmente su perfil suspend_html: Suspender @%{acct}, haciendo su perfil y contenido inaccesibles, e imposibilitando la interacción con la cuenta close_report: 'Marcar denuncia #%{id} como resuelta' close_reports_html: Marcar todas las denuncias contra @%{acct} como resueltas @@ -915,16 +915,16 @@ es-AR: trends: allow: Permitir approved: Aprobadas - confirm_allow: "¿Estás seguro de que querés permitir las etiquetas seleccionadas?" - confirm_disallow: "¿Estás seguro de que no querés permitir las etiquetas seleccionadas?" + confirm_allow: "¿De verdad querés permitir las etiquetas seleccionadas?" + confirm_disallow: "¿De verdad no querés permitir las etiquetas seleccionadas?" disallow: Rechazar links: allow: Permitir enlace allow_provider: Permitir medio - confirm_allow: "¿Estás seguro de que querés permitir los enlaces seleccionados?" - confirm_allow_provider: "¿Estás seguro de que querés permitir los proveedores seleccionados?" - confirm_disallow: "¿Estás seguro de que no querés permitir los enlaces seleccionados?" - confirm_disallow_provider: "¿Estás seguro de que no querés permitir los proveedores seleccionados?" + confirm_allow: "¿De verdad querés permitir los enlaces seleccionados?" + confirm_allow_provider: "¿De verdad querés permitir los proveedores seleccionados?" + confirm_disallow: "¿De verdad no querés permitir los enlaces seleccionados?" + confirm_disallow_provider: "¿De verdad no querés permitir los proveedores seleccionados?" description_html: Estos son enlaces que actualmente están siendo muy compartidos por cuentas desde las que tu servidor ve los mensajes. Esto puede ayudar a tus usuarios a averiguar qué está pasando en el mundo. No hay enlaces que se muestren públicamente hasta que autoricés al publicador. También podés permitir o rechazar enlaces individuales. disallow: Rechazar enlace disallow_provider: Rechazar medio @@ -937,7 +937,7 @@ es-AR: title: Enlaces en tendencia usage_comparison: Compartido %{today} veces hoy, comparado con la/s %{yesterday} vez/veces de ayer not_allowed_to_trend: No se permite la tendencia - only_allowed: Sólo permitidas + only_allowed: Solo permitidas pending_review: Revisión pendiente preview_card_providers: allowed: Los enlaces de este medio pueden ser tendencia @@ -948,10 +948,10 @@ es-AR: statuses: allow: Permitir mensaje allow_account: Permitir autor - confirm_allow: "¿Estás seguro de que querés permitir los estados seleccionados?" - confirm_allow_account: "¿Estás seguro de que querés permitir las cuentas seleccionadas?" - confirm_disallow: "¿Estás seguro de que no querés permitir los estados seleccionados?" - confirm_disallow_account: "¿Estás seguro de que no querés permitir las cuentas seleccionadas?" + confirm_allow: "¿De verdad querés permitir los estados seleccionados?" + confirm_allow_account: "¿De verdad querés permitir las cuentas seleccionadas?" + confirm_disallow: "¿De verdad no querés permitir los estados seleccionados?" + confirm_disallow_account: "¿De verdad no querés permitir las cuentas seleccionadas?" description_html: Estos son mensajes que tu servidor detecta que están siendo compartidos y marcados como favoritos muchas veces en este momento. Esto puede ayudar a tus usuarios nuevos y retornantes a encontrar más cuentas para seguir. No hay mensajes que se muestren públicamente hasta que aprobés al autor, y el autor permita que su cuenta sea sugerida a otros. También podés permitir o rechazar mensajes individuales. disallow: Rechazar mensaje disallow_account: Rechazar autor @@ -1591,7 +1591,7 @@ es-AR: privacy: Privacidad privacy_hint_html: Controlá cuánto querés revelar a los demás. La gente descubre perfiles interesantes y aplicaciones copadas explorando los seguimientos de otras personas y viendo qué aplicaciones usan, pero puede que prefieras mantener esto oculto. reach: Alcance - reach_hint_html: Controla si querés ser descubierto y seguido por nuevas cuentas. ¿Querés que tus mensajes aparezcan en la sección de Explorar? ¿Querés que otras personas te vean en las recomendaciones para seguir? ¿Querés aceptar automáticamente a todos los nuevos seguidores, o querés tener el control sobre cada uno de ellos? + reach_hint_html: Controlá si querés ser descubierto y seguido por nuevas cuentas. ¿Querés que tus mensajes aparezcan en la sección de Explorar? ¿Querés que otras personas te vean en las recomendaciones para seguir? ¿Querés aceptar automáticamente a todos los nuevos seguidores, o querés tener el control sobre cada uno de ellos? search: Búsqueda search_hint_html: Controlá cómo querés ser encontrado. ¿Querés que la gente te encuentre por lo que publicaste? ¿Querés que desde fuera de Mastodon se encuentre tu perfil al buscar en la web? Por favor, tené en cuenta que la exclusión total de información pública de todos los motores de búsqueda no puede ser garantizada. title: Privacidad y alcance @@ -1606,9 +1606,9 @@ es-AR: title: Estás dejando %{instance}. relationships: activity: Actividad de la cuenta - confirm_follow_selected_followers: "¿Estás seguro que querés seguir a los seguidores seleccionados?" - confirm_remove_selected_followers: "¿Estás seguro que querés quitar a los seguidores seleccionados?" - confirm_remove_selected_follows: "¿Estás seguro que querés quitar a las cuentas seguidas seleccionadas?" + confirm_follow_selected_followers: "¿De verdad querés seguir a los seguidores seleccionados?" + confirm_remove_selected_followers: "¿De verdad querés quitar a los seguidores seleccionados?" + confirm_remove_selected_follows: "¿De verdad querés quitar a las cuentas seguidas seleccionadas?" dormant: Inactivas follow_failure: No se pudieron seguir algunas de las cuentas seleccionadas. follow_selected_followers: Seguir a los seguidores seleccionados @@ -1746,15 +1746,15 @@ es-AR: in_reply_not_found: El mensaje al que intentás responder no existe. over_character_limit: se excedió el límite de %{max} caracteres pin_errors: - direct: Los mensajes que sólo son visibles para los usuarios mencionados no pueden ser fijados + direct: Los mensajes que solo son visibles para los usuarios mencionados no pueden ser fijados limit: Ya fijaste el número máximo de mensajes ownership: No se puede fijar el mensaje de otra cuenta reblog: No se puede fijar una adhesión title: '%{name}: "%{quote}"' visibilities: direct: Directo - private: Sólo a seguidores - private_long: Sólo mostrar a seguidores + private: Solo a seguidores + private_long: Solo mostrar a seguidores public: Público public_long: Todos pueden ver unlisted: No listado @@ -1872,7 +1872,7 @@ es-AR: disable: Ya no podés usar tu cuenta, pero tu perfil y el resto de datos permanecen intactos. Podés solicitar una copia de seguridad de tus datos, cambiar la configuración de tu cuenta, o eliminarla. mark_statuses_as_sensitive: Algunos de tus mensajes fueron marcados como sensibles por los moderadores de %{instance}. Esto significa que la gente tendrá que hacer clic o darle un toque a los medios en los mensajes antes de que se muestre una vista previa. Podés marcar los medios como sensibles vos mismo cuando publiqués en el futuro. sensitive: A partir de ahora, todos tus archivos subidos serán marcados como sensibles y ocultos tras una advertencia en la que habrá que hacer clic. - silence: Todavía podés usar tu cuenta, pero sólo las personas que te están siguiendo verán tus publicaciones en este servidor, y podrías ser excluido de varias funciones de descubrimiento. Sin embargo, otras cuentas podrán seguirte manualmente. + silence: Todavía podés usar tu cuenta, pero solo las personas que te están siguiendo verán tus publicaciones en este servidor, y podrías ser excluido de varias funciones de descubrimiento. Sin embargo, otras cuentas podrán seguirte manualmente. suspend: Ya no podés usar tu cuenta, y tu perfil y el resto de datos ya no son accesibles. Todavía podés iniciar sesión para solicitar una copia de seguridad de tus datos, hasta que estos sean eliminados por completo en unos 30 días, aunque conservaremos algunos datos básicos para impedir que esquivés la suspensión. reason: 'Motivo:' statuses: 'Mensajes citados:' @@ -1955,7 +1955,7 @@ es-AR: error: Hubo un problema al agregar tu llave de seguridad. Por favor, intentá de nuevo. success: Se agregó exitosamente tu llave de seguridad. delete: Eliminar - delete_confirmation: "¿Estás seguro que querés eliminar esta llave de seguridad?" + delete_confirmation: "¿De verdad querés eliminar esta llave de seguridad?" description_html: Si habilitás la autenticación de llave de seguridad, entonces en el inicio de sesión se te pedirá que usés una de tus llaves de seguridad. destroy: error: Hubo un problema al eliminar tu llave de seguridad. Por favor, intentá de nuevo. diff --git a/config/locales/es-MX.yml b/config/locales/es-MX.yml index 5ed74a1c4b..d5a557ffad 100644 --- a/config/locales/es-MX.yml +++ b/config/locales/es-MX.yml @@ -40,14 +40,14 @@ es-MX: avatar: Foto de perfil by_domain: Dominio change_email: - changed_msg: Correo cambiado exitosamente! + changed_msg: "¡Correo electrónico cambiado correctamente!" current_email: Correo electrónico actual label: Cambiar el correo electrónico new_email: Nuevo correo electrónico submit: Cambiar el correo electrónico title: Cambiar el correo electrónico de %{username} change_role: - changed_msg: Rol cambiado exitosamente! + changed_msg: "¡Rol cambiado correctamente!" edit_roles: Administrar roles de usuario label: Cambiar de rol no_role: Sin rol @@ -62,7 +62,7 @@ es-MX: destroyed_msg: Los datos de %{username} están ahora en cola para ser eliminados inminentemente disable: Deshabilitar disable_sign_in_token_auth: Deshabilitar la autenticación por token de correo electrónico - disable_two_factor_authentication: Desactivar autenticación de dos factores + disable_two_factor_authentication: Desactivar autenticación de dos pasos disabled: Deshabilitada display_name: Nombre para mostrar domain: Dominio @@ -105,7 +105,7 @@ es-MX: no_account_selected: Ninguna cuenta se cambió como ninguna fue seleccionada no_limits_imposed: Sin límites impuestos no_role_assigned: Sin rol asignado - not_subscribed: No se está suscrito + not_subscribed: No suscrito pending: Revisión pendiente perform_full_suspension: Suspender previous_strikes: Amonestaciones previas @@ -139,10 +139,10 @@ es-MX: search_same_ip: Otros usuarios con la misma IP security: Seguridad security_measures: - only_password: Sólo contraseña + only_password: Solo contraseña password_and_2fa: Contraseña y 2FA sensitive: Sensible - sensitized: marcado como sensible + sensitized: Marcado como sensible shared_inbox_url: URL de bandeja compartida show: created_reports: Reportes hechos por esta cuenta @@ -161,10 +161,10 @@ es-MX: unblocked_email_msg: Desbloqueo exitoso de la dirección de correo de %{username} unconfirmed_email: Correo electrónico sin confirmar undo_sensitized: Desmarcar como sensible - undo_silenced: Des-silenciar - undo_suspension: Des-suspender + undo_silenced: Deshacer límite + undo_suspension: Deshacer suspensión unsilenced_msg: Se quitó con éxito el límite de la cuenta %{username} - unsubscribe: Desuscribir + unsubscribe: Cancelar suscripción unsuspended_msg: Se quitó con éxito la suspensión de la cuenta de %{username} username: Nombre de usuario view_domain: Ver resumen del dominio @@ -261,7 +261,7 @@ es-MX: destroy_status_html: "%{name} eliminó la publicación por %{target}" destroy_unavailable_domain_html: "%{name} reanudó las entregas al dominio %{target}" destroy_user_role_html: "%{name} eliminó el rol %{target}" - disable_2fa_user_html: "%{name} desactivó el requisito de dos factores para el usuario %{target}" + disable_2fa_user_html: "%{name} desactivó el requisito de dos pasos para el usuario %{target}" disable_custom_emoji_html: "%{name} desactivó el emoji %{target}" disable_sign_in_token_auth_user_html: "%{name} desactivó la autenticación por token de correo electrónico para %{target}" disable_user_html: "%{name} deshabilitó el inicio de sesión para el usuario %{target}" @@ -296,7 +296,7 @@ es-MX: empty: No se encontraron registros. filter_by_action: Filtrar por acción filter_by_user: Filtrar por usuario - title: Log de auditoría + title: Registro de auditoría unavailable_instance: "(nombre de dominio no disponible)" announcements: destroyed_msg: "¡Anuncio eliminado con éxito!" @@ -324,7 +324,7 @@ es-MX: copy_failed_msg: No se pudo realizar una copia local de ese emoji create_new_category: Crear una nueva categoría created_msg: "¡Emoji creado con éxito!" - delete: Borrar + delete: Eliminar destroyed_msg: "¡Emojo destruido con éxito!" disable: Deshabilitar disabled: Desactivado @@ -338,7 +338,7 @@ es-MX: listed: Listados new: title: Añadir nuevo emoji personalizado - no_emoji_selected: No se cambió ningún emoji ya que no se seleccionó ninguno + no_emoji_selected: No se modificó ningún emoji, ya que no se seleccionó ninguno not_permitted: No tienes permiso para realizar esta acción overwrite: Sobrescribir shortcode: Código de atajo @@ -352,8 +352,8 @@ es-MX: upload: Subir dashboard: active_users: usuarios activos - interactions: interaccciones - media_storage: Almacenamiento + interactions: interacciones + media_storage: Almacenamiento multimedia new_users: nuevos usuarios opened_reports: informes abiertos pending_appeals_html: @@ -392,7 +392,7 @@ es-MX: confirm_suspension: cancel: Cancelar confirm: Suspender - permanent_action: Deshacer la suspensión no recuperará ningún data o relaciones. + permanent_action: Anular la suspensión no restaurará ningún dato ni relación. preamble_html: Estás a punto de suspender a %{domain} y sus subdominios. remove_all_data: Esto eliminará todo el contenido, multimedia y datos de perfil de las cuentas de este dominio de tu servidor. stop_communication: Tu servidor dejará de comunicarse con estos servidores. @@ -415,7 +415,7 @@ es-MX: silence: Limitar suspend: Suspender title: Nuevo bloque de dominio - no_domain_block_selected: No se cambió ningún bloqueo de dominio ya que ninguno fue seleccionado + no_domain_block_selected: No se modificó ningún bloqueo de dominio, ya que no se seleccionó ninguno not_permitted: No tienes permiso para realizar esta acción obfuscate: Ocultar nombre de dominio obfuscate_hint: Oculta parcialmente el nombre de dominio en la lista si mostrar la lista de limitaciones de dominio está habilitado @@ -436,7 +436,7 @@ es-MX: one: "%{count} intentos durante la última semana" other: "%{count} intentos de registro en la última semana" created_msg: Dominio de correo bloqueado con éxito - delete: Borrar + delete: Eliminar dns: types: mx: Registro MX @@ -536,7 +536,7 @@ es-MX: private_comment: Comentario privado public_comment: Comentario público purge: Purgar - purge_description_html: Si crees que este dominio está desconectado, puedes borrar todos los registros de cuentas y los datos asociados de este dominio de tu almacenamiento. Esto puede llevar un tiempo. + purge_description_html: Si crees que este dominio ya no está activo, puedes eliminar de tu almacenamiento todos los registros de la cuenta y los datos asociados a este dominio. Esto puede tardar un rato. title: Instancias conocidas total_blocked_by_us: Bloqueado por nosotros total_followed_by_them: Seguidos por ellos @@ -566,13 +566,13 @@ es-MX: '94670856': 3 años new: title: Crear nueva regla IP - no_ip_block_selected: No se han cambiado reglas IP ya que no se ha seleccionado ninguna + no_ip_block_selected: No se modificó ninguna regla de IP, ya que no se seleccionó ninguna title: Reglas IP relationships: title: Relaciones de %{acct} relays: - add_new: Añadir un nuevo relés - delete: Borrar + add_new: Añadir nuevo relé + delete: Eliminar description_html: Un relés de federación es un servidor intermedio que intercambia grandes volúmenes de publicaciones públicas entre servidores que se suscriben y publican en él. Puede ayudar a servidores pequeños y medianos a descubrir contenido del fediverso, que de otra manera requeriría que los usuarios locales siguiesen manualmente a personas de servidores remotos. disable: Deshabilitar disabled: Deshabilitado @@ -601,7 +601,7 @@ es-MX: mark_as_sensitive_description_html: Los archivos multimedia en las publicaciones reportadas se marcarán como sensibles y se aplicará una amonestación para ayudarte a escalar las futuras infracciones de la misma cuenta. other_description_html: Ver más opciones para controlar el comportamiento de la cuenta y personalizar la comunicación de la cuenta reportada. resolve_description_html: No se tomarán medidas contra la cuenta denunciada, no se registrará la amonestación, y se cerrará el informe. - silence_description_html: La cuenta será visible sólo para aquellos que ya la sigan o la busquen manualmente, limitando severamente su visibilidad. Siempre puede ser revertido. Cierra todos los reportes contra esta cuenta. + silence_description_html: La cuenta será visible solo para aquellos que ya la sigan o la busquen manualmente, limitando severamente su visibilidad. Siempre puede ser revertido. Cierra todos los reportes contra esta cuenta. suspend_description_html: La cuenta y todos sus contenidos serán inaccesibles y eventualmente eliminados, e interactuar con ella será imposible. Reversible durante 30 días. Cierra todos los reportes contra esta cuenta. actions_description_html: Decide qué medidas tomar para resolver esta denuncia. Si tomas una acción punitiva contra la cuenta denunciada, se le enviará a dicha cuenta una notificación por correo electrónico, excepto cuando se seleccione la categoría Spam. actions_description_remote_html: Decide qué medidas tomar para resolver este reporte. Esto solo afectará a la forma en que tu servidor se comunica con esta cuenta remota y gestiona su contenido. @@ -700,7 +700,7 @@ es-MX: privileges: administrator: Administrador administrator_description: Los usuarios con este permiso saltarán todos los permisos - delete_user_data: Borrar Datos de Usuario + delete_user_data: Eliminar datos de usuario delete_user_data_description: Permite a los usuarios eliminar los datos de otros usuarios sin demora invite_users: Invitar usuarios invite_users_description: Permite a los usuarios invitar a nuevas personas al servidor @@ -727,7 +727,7 @@ es-MX: manage_taxonomies: Administrar Taxonomías manage_taxonomies_description: Permite a los usuarios revisar el contenido en tendencia y actualizar la configuración de las etiquetas manage_user_access: Administrar Acceso de Usuarios - manage_user_access_description: Permite a los usuarios desactivar la autenticación de dos factores de otros usuarios, cambiar su dirección de correo electrónico y restablecer su contraseña + manage_user_access_description: Permite a los usuarios desactivar la autenticación de dos pasos de otros usuarios, cambiar su dirección de correo electrónico y restablecer su contraseña manage_users: Administrar Usuarios manage_users_description: Permite a los usuarios ver los detalles de otros usuarios y realizar acciones de moderación contra ellos manage_webhooks: Administrar Webhooks @@ -988,7 +988,7 @@ es-MX: trending: En tendencia warning_presets: add_new: Añadir nuevo - delete: Borrar + delete: Eliminar edit_preset: Editar aviso predeterminado empty: Aún no has definido ningún preajuste de advertencia. title: Preajustes de advertencia @@ -1100,7 +1100,7 @@ es-MX: registration_complete: "¡Tu registro en %{domain} ha sido completado!" welcome_title: "¡Bienvenido, %{name}!" wrong_email_hint: Si esa dirección de correo electrónico no es correcta, puedes cambiarla en la configuración de la cuenta. - delete_account: Borrar cuenta + delete_account: Eliminar cuenta delete_account_html: Si deseas eliminar tu cuenta, puedes proceder aquí. Se te pedirá una confirmación. description: prefix_invited_by_user: "¡@%{name} te invita a unirte a este servidor de Mastodon!" @@ -1110,7 +1110,7 @@ es-MX: dont_have_your_security_key: "¿No tienes tu clave de seguridad?" forgot_password: "¿Olvidaste tu contraseña?" invalid_reset_password_token: El token de reinicio de contraseña es inválido o expiró. Por favor pide uno nuevo. - link_to_otp: Introduce un código de dos factores desde tu teléfono o un código de recuperación + link_to_otp: Ingresa un código de dos pasos desde tu teléfono o un código de recuperación link_to_webauth: Utilice su dispositivo de clave de seguridad log_in_with: Iniciar sesión con login: Iniciar sesión @@ -1283,10 +1283,10 @@ es-MX: mutes: Tienes en silencio storage: Almacenamiento featured_tags: - add_new: Añadir nuevo + add_new: Añadir nueva errors: limit: Ya has alcanzado la cantidad máxima de etiquetas - hint_html: "¿Qué son las etiquetas destacadas? Se muestran de forma prominente en tu perfil público y permiten a los usuarios navegar por tus publicaciones públicas específicamente bajo esas etiquetas. Son una gran herramienta para hacer un seguimiento de trabajos creativos o proyectos a largo plazo." + hint_html: "Destaca tus etiquetas más importantes en tu perfil. Una herramienta fantástica para llevar un registro de tus trabajos creativos y proyectos a largo plazo; las etiquetas destacadas aparecen en un lugar visible de tu perfil y te permiten acceder rápidamente a tus propias publicaciones." filters: contexts: account: Perfiles @@ -1305,7 +1305,7 @@ es-MX: invalid_context: Se suminstró un contexto inválido o vacío index: contexts: Filtros en %{contexts} - delete: Borrar + delete: Eliminar empty: No tienes filtros. expires_in: Caduca en %{distance} expires_on: Expira el %{date} @@ -1443,7 +1443,7 @@ es-MX: password: contraseña sign_in_token: código de seguridad por correo electrónico webauthn: claves de seguridad - description_html: Si ve una actividad que no reconoce, considere cambiar su contraseña y habilitar la autenticación de dos factores. + description_html: Si observas alguna actividad que no reconoces, considera cambiar tu contraseña y habilitar la autenticación de dos pasos. empty: No hay historial de autenticación disponible failed_sign_in_html: Intento de inicio de sesión fallido con %{method} de %{ip} (%{browser}) successful_sign_in_html: Inicio de sesión exitoso con %{method} desde %{ip} (%{browser}) @@ -1558,7 +1558,7 @@ es-MX: trillion: B otp_authentication: code_hint: Introduce el código generado por tu aplicación de autentificación para confirmar - description_html: Si habilitas autenticación de dos factores a través de una aplicación de autenticación, el ingreso requerirá que estés en posesión de tu teléfono, que generará códigos para que ingreses. + description_html: Si habilitas autenticación de dos pasos a través de una aplicación de autenticación, el ingreso requerirá que estés en posesión de tu teléfono, que generará códigos para que ingreses. enable: Activar instructions_html: "Escanea este código QR desde Google Authenticator o una aplicación similar en tu teléfono. A partir de ahora, esta aplicación generará códigos que tendrás que ingresar cuando quieras iniciar sesión." manual_instructions: 'Si no puedes escanear el código QR y necesitas introducirlo manualmente, este es el secreto en texto plano:' @@ -1695,7 +1695,7 @@ es-MX: appearance: Apariencia authorized_apps: Aplicaciones autorizadas back: Volver al inicio - delete: Borrar cuenta + delete: Eliminar cuenta development: Desarrollo edit_profile: Editar perfil export: Exportar @@ -1706,11 +1706,11 @@ es-MX: notifications: Notificaciones por correo electrónico preferences: Preferencias profile: Perfil - relationships: Siguiendo y seguidores + relationships: Seguimientos severed_relationships: Relaciones cortadas statuses_cleanup: Eliminación automática de publicaciones strikes: Amonestaciones de moderación - two_factor_authentication: Autenticación de dos factores + two_factor_authentication: Autenticación de dos pasos webauthn_authentication: Claves de seguridad severed_relationships: download: Descargar (%{count}) @@ -1720,7 +1720,7 @@ es-MX: user_domain_block: Bloqueaste %{target_name} lost_followers: Seguidores perdidos lost_follows: Cuentas seguidas perdidas - preamble: Puedes perder cuentas seguidas y seguidores cuando bloqueas un dominio o cuando tus moderadores deciden suspender un servidor remoto. Cuando esto suceda, podrás descargar listas de relaciones cortadas, para ser inspeccionadas y posiblemente importadas en otro servidor. + preamble: Es posible que pierdas seguidores y seguidos cuando bloquees un dominio o cuando tus moderadores decidan suspender un servidor remoto. Cuando eso ocurra, podrás descargar listas de relaciones interrumpidas, para inspeccionarlas y posiblemente importarlas a otro servidor. purged: La información sobre este servidor ha sido purgada por los administradores de tu servidor. type: Evento statuses: @@ -1760,7 +1760,7 @@ es-MX: unlisted: Público, pero no mostrar en la historia federada unlisted_long: Todos pueden ver, pero no está listado en las líneas de tiempo públicas statuses_cleanup: - enabled: Borrar automáticamente publicaciones antiguas + enabled: Eliminar automáticamente las publicaciones antiguas enabled_hint: Elimina automáticamente tus publicaciones una vez que alcancen un umbral de tiempo especificado, a menos que coincidan con alguna de las excepciones detalladas debajo exceptions: Excepciones explanation: Debido a que la eliminación de mensajes es una operación costosa, esto se hace lentamente, a lo largo de un tiempo, cuando el servidor no está ocupado. Por este motivo, puede que tus publicaciones sean borradas algo después de que alcancen el umbral de tiempo especificado. @@ -1819,13 +1819,13 @@ es-MX: two_factor_authentication: add: Añadir disable: Deshabilitar - disabled_success: Autenticación de doble factor desactivada correctamente + disabled_success: Autenticación de dos pasos desactivada correctamente edit: Editar - enabled: La autenticación de dos factores está activada - enabled_success: Verificación de dos factores activada exitosamente - generate_recovery_codes: generar códigos de recuperación + enabled: La autenticación de dos pasos está activada + enabled_success: Verificación de dos pasos activada exitosamente + generate_recovery_codes: Generar códigos de recuperación lost_recovery_codes: Los códigos de recuperación te permiten obtener acceso a tu cuenta si pierdes tu teléfono. Si has perdido tus códigos de recuperación, puedes regenerarlos aquí. Tus viejos códigos de recuperación se harán inválidos. - methods: Métodos de autenticación de doble factor + methods: Métodos de autenticación de dos pasos otp: Aplicación de autenticación recovery_codes: Hacer copias de seguridad de tus códigos de recuperación recovery_codes_regenerated: Códigos de recuperación regenerados con éxito @@ -1852,13 +1852,13 @@ es-MX: details: 'Estos son los detalles del intento de inicio de sesión:' explanation: Alguien ha intentado iniciar sesión en tu cuenta pero proporcionó un segundo factor de autenticación inválido. further_actions_html: Si no fuiste tú, se recomienda %{action} inmediatamente ya que puede estar comprometido. - subject: Fallo de autenticación de segundo factor - title: Falló la autenticación de segundo factor + subject: Fallo en la autenticación de dos pasos + title: Falló la autenticación de dos pasos suspicious_sign_in: change_password: cambies tu contraseña details: 'Aquí están los detalles del inicio de sesión:' explanation: Hemos detectado un inicio de sesión en tu cuenta desde una nueva dirección IP. - further_actions_html: Si no fuiste tú, te recomendamos que %{action} inmediatamente y habilites la autenticación de dos factores para mantener tu cuenta segura. + further_actions_html: Si no fuiste tú, te recomendamos que %{action} inmediatamente y habilites la autenticación de dos pasos para mantener tu cuenta segura. subject: Tu cuenta ha sido accedida desde una nueva dirección IP title: Un nuevo inicio de sesión warning: @@ -1936,7 +1936,7 @@ es-MX: users: follow_limit_reached: No puedes seguir a más de %{limit} personas go_to_sso_account_settings: Diríjete a la configuración de la cuenta de su proveedor de identidad - invalid_otp_token: Código de dos factores incorrecto + invalid_otp_token: Código de dos pasos incorrecto otp_lost_help_html: Si perdiste al acceso a ambos, puedes ponerte en contancto con %{email} rate_limited: Demasiados intentos de autenticación, inténtalo de nuevo más tarde. seamless_external_login: Has iniciado sesión desde un servicio externo, por lo que los ajustes de contraseña y correo electrónico no están disponibles. @@ -1964,5 +1964,5 @@ es-MX: nickname_hint: Introduzca el apodo de su nueva clave de seguridad not_enabled: Aún no has activado WebAuthn not_supported: Este navegador no soporta claves de seguridad - otp_required: Para usar claves de seguridad, por favor habilite primero la autenticación de doble factor. + otp_required: Para usar claves de seguridad, por favor habilite primero la autenticación de dos pasos. registered_on: Registrado el %{date} diff --git a/config/locales/es.yml b/config/locales/es.yml index bd7517e7b6..8898a0920b 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -466,13 +466,13 @@ es: title: Importar bloqueos de dominio no_file: Ningún archivo seleccionado follow_recommendations: - description_html: "Las recomendaciones de cuentas ayudan a los nuevos usuarios a encontrar rápidamente contenido interesante. Cuando un usuario no ha interactuado con otros lo suficiente como para suscitar recomendaciones personalizadas de cuentas a las que seguir, en su lugar se le recomiendan estas cuentas. Se recalculan diariamente a partir de una mezcla de cuentas con el mayor número de interacciones recientes y con el mayor número de seguidores locales con un idioma determinado." + description_html: "Las recomendaciones de cuentas a las que seguir ayudan a los nuevos usuarios a encontrar rápidamente contenido interesante. Cuando un usuario no ha interactuado con otros lo suficiente como para formar recomendaciones personalizadas de seguimiento, estas cuentas se recomiendan en su lugar. Se recalculan diariamente a partir de una mezcla de cuentas con las interacciones más recientes y el mayor número de seguidores para un idioma determinado." language: Para el idioma status: Estado - suppress: Suprimir recomendación de cuentas + suppress: Eliminar recomendación de cuentas a las que seguir suppressed: Suprimida - title: Recomendaciones de cuentas - unsuppress: Restaurar recomendaciones de cuentas + title: Recomendaciones de cuentas a las que seguir + unsuppress: Restaurar recomendaciones de cuentas a las que seguir instances: audit_log: title: Registros de auditoría recientes @@ -1790,9 +1790,9 @@ es: '63113904': 2 años '7889238': 3 meses min_age_label: Umbral de tiempo - min_favs: Mantener mensajes con un número de favoritos mayor que + min_favs: Mantener publicaciones con un número de favoritos de al menos min_favs_hint: No borra ninguna de las publicaciones que hayan recibido al menos esta cantidad de favoritos. Deja en blanco para eliminar publicaciones sin importar el número de favoritos - min_reblogs: Mantener publicaciones reblogueadas más de + min_reblogs: Mantener publicaciones impulsadas al menos min_reblogs_hint: No borra ninguna de las publicaciones que hayan sido impulsadas más de este número de veces. Deja en blanco para eliminar publicaciones sin importar el número de impulsos stream_entries: sensitive_content: Contenido sensible diff --git a/config/locales/et.yml b/config/locales/et.yml index 3611d629df..a8ff2a7cf5 100644 --- a/config/locales/et.yml +++ b/config/locales/et.yml @@ -1,7 +1,7 @@ --- et: about: - about_mastodon_html: 'Tuleviku sotsiaalvõrgustik: Reklaamivaba, korporatiivse järelvalveta, eetiline kujundus ning detsentraliseeritus! Mastodonis omad sa enda andmeid ka päriselt!' + about_mastodon_html: 'Tuleviku sotsiaalvõrgustik: Reklaamivaba, korporatiivse jälitamiseta, eetiline kujundus ning hajutatus! Mastodonis omad sa enda andmeid ka päriselt!' contact_missing: Määramata contact_unavailable: Pole saadaval hosted_on: Mastodoni teenus serveris %{domain} @@ -14,7 +14,7 @@ et: instance_actor_flash: See on serveri enda virtuaalne konto. See ei esinda ühtegi kindlat kasutajat, vaid seda kasutatakse födereerumisel. Seda kontot ei tohi kustutada. last_active: viimati aktiivne link_verified_on: Selle lingi autorsust kontrolliti %{date} - nothing_here: Siin pole midagi! + nothing_here: Siin pole mitte midagi! pin_errors: following: Pead olema juba selle kasutaja jälgija, keda soovitad posts: @@ -36,7 +36,7 @@ et: add_email_domain_block: Blokeeri e-posti domeen approve: Võta vastu approved_msg: Kasutaja %{username} liitumisavaldus rahuldatud - are_you_sure: Oled kindel? + are_you_sure: Kas oled kindel? avatar: Profiilipilt by_domain: Domeen change_email: @@ -45,7 +45,7 @@ et: label: Muuda e-posti aadressi new_email: Uus е-posti aadress submit: Muuda e-posti aadressi - title: Muuda e-postiaadressi kasutajale %{username} + title: Muuda kasutaja %{username} e-posti aadressi change_role: changed_msg: Roll on muudetud! edit_roles: Halda kasutaja rolle @@ -140,7 +140,7 @@ et: security: Turvalisus security_measures: only_password: Ainult salasõna - password_and_2fa: Salasõna ja 2-etapine autentimine (2FA) + password_and_2fa: Salasõna ja kahefaktoriline autentimine (2FA) sensitive: Tundlik sisu sensitized: Märgitud kui tundlik sisu shared_inbox_url: Jagatud sisendkausta URL @@ -275,7 +275,7 @@ et: remove_avatar_user_html: "%{name} eemaldas %{target} avatari" reopen_report_html: "%{name} taasavas raporti %{target}" resend_user_html: "%{name} lähtestas %{target} kinnituskirja e-posti" - reset_password_user_html: "%{name} lähtestas %{target} salasõna" + reset_password_user_html: "%{name} lähtestas %{target} kasutaja salasõna" resolve_report_html: "%{name} lahendas raporti %{target}" sensitive_account_html: "%{name} märkis %{target} meedia kui tundlik sisu" silence_account_html: "%{name} piiras %{target} konto" @@ -363,8 +363,8 @@ et: one: "%{count} ootel raport" other: "%{count} ootel raportit" pending_tags_html: - one: "%{count} ootel silt" - other: "%{count} ootel silti" + one: "%{count} ootel teemaviide" + other: "%{count} ootel teemaviidet" pending_users_html: one: "%{count} ootel kasutaja" other: "%{count} ootel kasutajat" @@ -725,9 +725,9 @@ et: manage_settings: Halda sätteid manage_settings_description: Lubab kasutajatel muuta lehekülje sätteid manage_taxonomies: Halda taksonoomiaid - manage_taxonomies_description: Luba kasutajatel populaarset sisu üle vaadata ning uuendada siltide sätteid + manage_taxonomies_description: Luba kasutajatel populaarset sisu üle vaadata ning uuendada teemaviidete seadistusi manage_user_access: Halda kasutajate ligipääsu - manage_user_access_description: Võimaldab kasutajatel keelata teiste kasutajate kaheastmelise autentimise, muuta oma e-posti aadressi ja lähtestada oma parooli + manage_user_access_description: Võimaldab kasutajatel keelata teiste kasutajate kaheastmelise autentimise, muuta nende e-posti aadressi ja lähtestada oma salasõna manage_users: Kasutajate haldamine manage_users_description: Lubab kasutajail näha teiste kasutajate üksikasju ja teha nende suhtes modereerimisotsuseid manage_webhooks: Halda webhook'e @@ -909,8 +909,8 @@ et: reset: Lähtesta review: Vaata olek üle search: Otsi - title: Märksõnad - updated_msg: Sildi sätted edukalt uuendatud + title: Teemaviited + updated_msg: Teemaviite seadistused on uuendatud title: Administreerimine trends: allow: Luba @@ -969,14 +969,14 @@ et: tag_servers_dimension: Populaarseimad serverid tag_servers_measure: erinevat serverit tag_uses_measure: kasutajaid kokku - description_html: Need sildid ilmuvad praegu paljudes postitutes mida su server näeb. See võib aidata su kasutajatel leida seda millest kõige rohkem parajasti räägitakse. Ühtegi silti ei näidata avalikult, enne nende heaks kiitmist. + description_html: Need teemaviited ilmuvad praegu paljudes postitutes, mida su server näeb. See võib aidata su kasutajatel leida seda millest kõige rohkem parajasti räägitakse. Ühtegi teemaviidet ei näidata enne nende heaks kiitmist avalikult. listable: Võib olla soovitatud no_tag_selected: Silte ei muudetud, kuna ühtegi polnud valitud not_listable: Ei soovitata not_trendable: Ei ilmu trendides not_usable: Ei saa kasutada peaked_on_and_decaying: Populaarseim %{date}, nüüd langemas - title: Trendikad sildid + title: Trendikad teemaviited trendable: Võib ilmuda trendides trending_rank: 'Trendides #%{rank}' usable: Kasutatav @@ -1048,7 +1048,7 @@ et: new_trending_statuses: title: Trendikad postitused new_trending_tags: - title: Trendikad sildid + title: Trendikad teemaviited subject: Uued %{instance} trendid ülevaatuseks aliases: add_new: Pane kolimiseks valmis @@ -1059,7 +1059,7 @@ et: remove: Loobu suunamise vastuvõtmisest appearance: advanced_web_interface: Kohandatud veebiliides - advanced_web_interface_hint: 'Kui soovid kasutada kogu ekraani laiust, saab kohandatud veebiliideses seadistada mitut veergu, nii et samal ajal oleks näha nii palju infot kui soovid: Kodu, teavitused, föderatsiooni ajajoon ning kuitahes palju nimekirju ja silte.' + advanced_web_interface_hint: 'Kui soovid kasutada kogu ekraani laiust, saad kohandatud veebiliideses seadistada mitut veergu, nii et samal ajal oleks näha nii palju infot kui soovid: Kodu, teavitused, föderatsiooni ajajoon ning kuitahes palju nimekirju ja teemaviiteid.' animations_and_accessibility: Animatsioonid ja ligipääs confirmation_dialogs: Kinnitusdialoogid discovery: Avastamine @@ -1108,7 +1108,7 @@ et: suffix: Kasutajakontoga saad jälgida inimesi, postitada uudiseid ning pidada kirjavahetust ükskõik millise Mastodoni serveri kasutajatega ja muudki! didnt_get_confirmation: Ei saanud kinnituslinki? dont_have_your_security_key: Pole turvavõtit? - forgot_password: Salasõna ununenud? + forgot_password: Kas unustasid oma salasõna? invalid_reset_password_token: Salasõna lähtestusvõti on vale või aegunud. Palun taotle uus. link_to_otp: Kaheastmeline kood telefonist või taastekood link_to_webauth: Turvavõtmete seadme kasutamine @@ -1130,7 +1130,7 @@ et: register: Loo konto registration_closed: "%{instance} ei võta vastu uusi liikmeid" resend_confirmation: Saada kinnituslink uuesti - reset_password: Salasõna lähtestamine + reset_password: Lähtesta salasõna rules: accept: Nõus back: Tagasi @@ -1140,7 +1140,7 @@ et: title: Mõned põhireeglid. title_invited: Oled kutsutud. security: Turvalisus - set_new_password: Uue salasõna määramine + set_new_password: Sisesta uus salasõna setup: email_below_hint_html: Kontrolli rämpsposti kausta või palu uue kirja saatmist. Kui sinu e-posti aadress on vale, siis saad seda parandada. email_settings_hint_html: Klõpsa linki, mis saadeti sulle, et kinnitada %{email}. Seni me ootame. @@ -1174,9 +1174,9 @@ et: title: Autori tunnustamine challenge: confirm: Jätka - hint_html: "Nõuanne: Me ei küsi salasõna uuesti järgmise tunni jooksul." + hint_html: "Nõuanne: Me ei küsi sinu salasõna uuesti järgmise tunni jooksul." invalid_password: Vigane salasõna - prompt: Jätkamiseks salasõna veelkord + prompt: Jätkamiseks korda salasõna crypto: errors: invalid_key: ei ole õige Ed25519 ega Curve25519 võti @@ -1280,13 +1280,13 @@ et: csv: CSV domain_blocks: Domeeni blokeeringud lists: Loetelud - mutes: Oled vaigistanud + mutes: Oled summutanud storage: Meedia hoidla featured_tags: add_new: Lisa uus errors: - limit: Oled jõudnud siltide lubatud maksimumarvuni - hint_html: "Mis on esiletõstetud sildid? Neid silte näidatakse su avalikul profiilil esiletõstetult ning need aitavad teistel leida postitusi, millel on selline silt. See on hea viis, kuidas hoida järge loovtöödel või pikaajalistel projektidel." + limit: Oled jõudnud teemaviidete lubatud maksimumarvuni + hint_html: "Mis on esiletõstetud teemaviited? Neid teemaviiteid näidatakse su avalikul profiilil esiletõstetult ning need aitavad teistel leida postitusi, millel on selline teemaviide. See on hea viis, kuidas hoida järge loovtöödel või pikaajalistel projektidel." filters: contexts: account: Profiilid @@ -1374,14 +1374,14 @@ et: domain_blocking_html: Oled asendamas oma domeenide blokeeringute loetelu kuni %{total_items} domeeniga kohast %{filename}. following_html: Oled jälgima hakkamas kuni %{total_items} kontot kohast %{filename} ja lõpetad kõigi teiste jälgimise. lists_html: Oled asendamas oma loetelusid faili %{filename} sisuga. Uutesse loeteludesse lisatakse kuni %{total_items} kontot. - muting_html: Oled asendamas oma vaigistatud kontode loetelu kuni %{total_items} kontoga kohast %{filename}. + muting_html: Oled asendamas oma summutatud kontode loetelu kuni %{total_items} kontoga kohast %{filename}. preambles: blocking_html: Oled blokeerimas kuni %{total_items} kontoga kohast %{filename}. bookmarks_html: Oled lisamas kuni %{total_items} postitust kohast %{filename} to your bookmarks. domain_blocking_html: Oled blokeerimas kuni %{total_items} domeeni kohast %{filename}. following_html: Oled jälgima hakkamas kuni %{total_items} kontot kohast %{filename}. lists_html: Oled lisamas oma loeteludesse failist %{filename} kuni %{total_items} kontot. Kui pole loetelusi, kuhu lisada, luuakse uued loetelud. - muting_html: Oled vaigistamas kuni %{total_items} kontot kohast %{filename}. + muting_html: Oled summutamas kuni %{total_items} kontot kohast %{filename}. preface: Saad importida mistahes andmeid, mis on eksporditud teisest serverist. Näiteks nimekirja inimestest, keda jälgid ja keda blokeerid. recent_imports: Viimati imporditud states: @@ -1398,11 +1398,11 @@ et: domain_blocking: Blokeeritud domeenide importimine following: Jälgitavate kontode importimine lists: Loetelude importimine - muting: Vaigistatud kontode importimine + muting: Summutatud kontode importimine type: Importimise tüüp type_groups: constructive: Jälgimised & Järjehoidjad - destructive: Blokeerimised & Vaigistamised + destructive: Blokeerimised & summutamised types: blocking: Blokeeringute nimekiri bookmarks: Järjehoidjad @@ -1443,7 +1443,7 @@ et: password: salasõna sign_in_token: e-posti turvvakood webauthn: turvavõtmed - description_html: Kui paistab tundmatuid tegevusi, tuleks vahetada salasõna ja aktiveerida kaheastmeline autentimine. + description_html: Kui paistab tundmatuid tegevusi, palun vaheta salasõna ja aktiveeri kaheastmeline autentimine. empty: Autentimisajalugu pole saadaval failed_sign_in_html: Nurjunud sisenemine meetodiga %{method} aadressilt %{ip} (%{browser}) successful_sign_in_html: Edukas sisenemine meetodiga %{method} aadressilt %{ip} (%{browser}) @@ -1504,7 +1504,7 @@ et: title: Modereerimine move_handler: carry_blocks_over_text: See kasutaja kolis kontolt %{acct}, mis oli keelatud. - carry_mutes_over_text: Kasutaja kolis ümber kontolt %{acct}, mis oli vaigistatud. + carry_mutes_over_text: Kasutaja kolis ümber kontolt %{acct}, mis oli summutatud. copy_account_note_text: 'Kasutaja kolis kontolt %{acct}, kus olid eelnevad märkmed tema kohta:' navigation: toggle_menu: Menüü lülimine @@ -1600,7 +1600,7 @@ et: reactions: errors: limit_reached: Jõutud on erinevate reaktsioonide limiidini - unrecognized_emoji: ei ole tuntud emotikoon + unrecognized_emoji: ei ole tuntud emoji redirects: prompt: Kui te usaldate seda linki, klõpsake sellele, et jätkata. title: Te lahkute %{instance}. @@ -1634,7 +1634,7 @@ et: content_warning: 'Sisuhoiatus:' descriptions: account: "@%{acct} avalikud postitused" - tag: 'Avalikud postitused sildiga #%{hashtag}' + tag: 'Avalikud postitused teemaviitega #%{hashtag}' scheduled_statuses: over_daily_limit: Lubatud ajastatud postituste arv %{limit} päevas on tänaseks ületatud over_total_limit: Oled jõudnud ajastatud postituste lubatud maksimumarvuni %{limit} @@ -1699,7 +1699,7 @@ et: development: Arendus edit_profile: Muuda profiili export: Eksport - featured_tags: Esile toodud sildid + featured_tags: Esile toodud teemaviited import: Impordi import_and_export: Import / eksport migrate: Konto kolimine @@ -1739,8 +1739,8 @@ et: content_warning: 'Sisu hoiatus: %{warning}' default_language: Kasutajaliidese keelega sama disallowed_hashtags: - one: 'sisaldab ebasobivat silti: %{tags}' - other: 'sisaldab ebasobivaid silte: %{tags}' + one: 'sisaldab ebasobivat teemaviidet: %{tags}' + other: 'sisaldab ebasobivaid teemaviiteid: %{tags}' edited_at_html: Muudetud %{date} errors: in_reply_not_found: Postitus, millele üritad vastata, ei näi enam eksisteerivat. @@ -1925,7 +1925,7 @@ et: other: "%{people} inimest viimase 2 päeva jooksul" hashtags_subtitle: Avasta, mis viimase 2 päeva jooksul on toimunud hashtags_title: Populaarsed märksõnad - hashtags_view_more: Vaata teisi trendikaid märksõnu + hashtags_view_more: Vaata teisi trendikaid teemaviiteid post_action: Postita post_step: Tervita maailma teksti, fotode, videote või küsitlustega. post_title: Tee oma esimene postitus diff --git a/config/locales/eu.yml b/config/locales/eu.yml index 918f8e4b9d..097920e9b4 100644 --- a/config/locales/eu.yml +++ b/config/locales/eu.yml @@ -434,6 +434,7 @@ eu: attempts_over_week: one: Izen-emateko saiakera %{count} azken astean other: Izen-emateko %{count} saiakera azken astean + created_msg: Ongi gehitu da e-mail helbidea domeinuen zerrenda beltzera delete: Ezabatu dns: types: @@ -443,7 +444,9 @@ eu: create: Gehitu domeinua resolve: Ebatzi domeinua title: Posta domeinu berria blokeatu + no_email_domain_block_selected: Ez da eposta domeinu blokeorik aldatu ez delako bat ere hautatu not_permitted: Baimendu gabea + resolved_dns_records_hint_html: Domeinu-izena ondorengo MX domeinuetara ebazten da, zeinek eposta onartzeko ardura duten. MX domeinu bat blokeatzeak MX domeinu hori erabiltzen duen edozein helbide elektronikotatik izena-ematea blokeatzen du, baita ikusgai dagoen domeinu-izena beste bat bada ere. Kontuz ibili eposta hornitzaile nagusiak blokeatu gabe. resolved_through_html: "%{domain} domeinuaren bidez ebatzia" title: Email domeinua blokeatuta export_domain_allows: @@ -470,6 +473,9 @@ eu: title: Jarraitzeko gomendioak unsuppress: Berrezarri jarraitzeko gomendioa instances: + audit_log: + title: Oraintsuko ikuskapen-erregistroak + view_all: Ikusi ikuskapen-erregistro osoak availability: description_html: one: Domeinura entregatzeak arrakastarik gabe huts egiten badu egun %{count} igaro ondoren, ez da entregatzeko saiakera gehiago egingo, ez bada domeinu horretatik entregarik jasotzen. @@ -596,7 +602,9 @@ eu: resolve_description_html: Ez da ekintzarik hartuko salatutako kontuaren aurka, ez da neurria gordeko eta salaketa itxiko da. silence_description_html: Kontua soilik honen jarraitzaile edo espresuki bilatzen dutenentzat izango da ikusgarri, kontuaren irisgarritasuna gogorki mugatzen delarik. suspend_description_html: Kontua bera eta honen edukiak eskuraezinak izango dira, eta azkenean, ezabatuak. Kontu honekin erlazionatzea ezinezkoa izango da. Prozesua 30 egunez itzulgarria izango da. Kontu honen aurkako txosten guztiak baztertuko lirateke. + actions_description_html: Erabaki txosten hau konpontzeko ze ekintza hartu. Salatutako kontuaren aurka zigor ekintza bat hartzen baduzu, eposta jakinarazpen bat bidaliko zaie, Spam kategoria hautatzean ezik. actions_description_remote_html: Hautatu txosten honi konponbidea aurkitzeko zein neurri hartu. Hau soilik zure zerbitzaria urruneko kontu honekin nola komunikatu eta bere edukia nola maneiatzeko da. + actions_no_posts: Txosten honek ez du ezabatzeko lotutako argitalpenik add_to_report: Gehitu gehiago txostenera already_suspended_badges: local: Dagoeneko kanporatu da zerbitzari honetatik @@ -637,6 +645,7 @@ eu: report: 'Salaketa #%{id}' reported_account: Salatutako kontua reported_by: Salatzailea + reported_with_application: Aplikazioaren bidez salatua resolved: Konponduta resolved_msg: Salaketa ongi konpondu da! skip_to_actions: Salto ekintzetara @@ -699,6 +708,7 @@ eu: manage_appeals: Kudeatu apelazioak manage_appeals_description: Baimendu erabiltzaileek moderazio ekintzen aurkako apelazioak berrikustea manage_blocks: Kudeatu blokeatzeak + manage_blocks_description: Baimendu erabiltzaileek eposta hornitzaile eta IP helbideak blokeatzea manage_custom_emojis: Kudeatu emoji pertsonalizatuak manage_custom_emojis_description: Baimendu erabiltzaileek zerbitzariko emoji pertsonalizatuak kudeatzea manage_federation: Kudeatu federazioa @@ -716,6 +726,7 @@ eu: manage_taxonomies: Kudeatu taxonomiak manage_taxonomies_description: Baimendu erabiltzaileek joerak berrikustea eta traolen ezarpenak eguneratzea manage_user_access: Kudeatu erabiltzaileen sarbidea + manage_user_access_description: Baimendu erabiltzaileek beste erabiltzaileen bi faktoreko autentifikazioa desaktibatzea, eposta helbideak aldatzea eta pasahitzak berrezartzea manage_users: Kudeatu erabiltzaileak manage_users_description: Baimendu erabiltzaileek beste erabiltzaileen xehetasunak ikusi eta moderazio ekintzak burutzea manage_webhooks: Kudeatu webhook-ak @@ -865,6 +876,7 @@ eu: sidekiq_process_check: message_html: Ez da ari Sidekiq prozesurik exekutatzen %{value} ilad(et)an. Egiaztatu Sidekiq konfigurazioa software_version_check: + action: Ikusi eguneraketa eskuragarriak message_html: Mastodon eguneratze bat eskuragarri dago. software_version_critical_check: action: Ikusi eguneraketa eskuragarriak @@ -883,8 +895,10 @@ eu: not_trendable: Ez dago modan not_usable: Ez erabilgarri pending_review: Berrikusketaren zain + review_requested: Berrikuspena eskatuta reviewed: Berrikusita title: Egoera + trendable: Joera bihur daiteke unreviewed: Berrikusi gabe usable: Erabilgarri name: Izena @@ -900,11 +914,14 @@ eu: trends: allow: Onartu approved: Onartua + confirm_allow: Ziur zaude hautatutako etiketak gaitu nahi dituzula? confirm_disallow: Ziur zaude hautatutako etiketak desgaitu nahi dituzula? disallow: Ukatu links: allow: Onartu esteka allow_provider: Onartu argitaratzailea + confirm_allow: Ziur zaude hautatutako estekak gaitu nahi dituzula? + confirm_disallow: Ziur zaude hautatutako estekak desgaitu nahi dituzula? description_html: Esteka hauek zure zerbitzariak ikusten dituen kontuek asko zabaltzen ari diren estekak dira. Zure erabiltzaileei munduan ze berri den jakiteko lagungarriak izan daitezke. Ez da estekarik bistaratzen argitaratzaileak onartu arte. Esteka bakoitza onartu edo baztertu dezakezu. disallow: Ukatu esteka disallow_provider: Ukatu argitaratzailea @@ -960,6 +977,7 @@ eu: used_by_over_week: one: Pertsona batek erabilia azken astean other: "%{count} pertsonak erabilia azken astean" + title: Gomendioak eta joerak trending: Joerak warning_presets: add_new: Gehitu berria @@ -1043,6 +1061,7 @@ eu: guide_link_text: Edonork lagundu dezake. sensitive_content: Eduki hunkigarria application_mailer: + notification_preferences: Posta elektronikoaren lehentasunak aldatu salutation: "%{name}," settings: 'Posta elektronikoaren lehentasunak aldatu: %{link}' unsubscribe: Kendu harpidetza @@ -1064,6 +1083,7 @@ eu: hint_html: Azken kontu bat! Gizakia zarela berretsi behar dugu (zabor-kontuak kanpoan mantentzeko baino ez da!) Ebatzi azpiko CAPTCHA eta sakatu "Jarraitu". title: Segurtasun txekeoa confirmations: + awaiting_review: Zure helbide elektronikoa baieztatu da! %{domain} lan taldea zure erregistroa berrikusten ari da. Mezu elektroniko bat jasoko duzu zure kontua onartzen badute! awaiting_review_title: Zure izen-ematea berrikusten ari da clicking_this_link: lotura hau klikatzen login_link: hasi saioa @@ -1071,6 +1091,7 @@ eu: redirect_to_app_html: "%{app_name} aplikaziora berbideratua izan beharko zenuke. Hori gertatu ez bada, saiatu %{clicking_this_link} edo eskuz itzuli." registration_complete: Osatuta dago orain zure izen-ematea %{domain} -en! welcome_title: Ongi etorri, %{name}! + wrong_email_hint: Helbide-elektroniko hori zuzena ez bada, kontuaren ezarpenetan alda dezakezu. delete_account: Ezabatu kontua delete_account_html: Kontua ezabatu nahi baduzu, jarraitu hemen. Berrestea eskatuko zaizu. description: @@ -1127,6 +1148,7 @@ eu: title: "%{domain} zerbitzariko kontua prestatuko dizugu." status: account_status: Kontuaren egoera + confirming: E-mail baieztapena osatu bitartean zain. functional: Zure kontua guztiz erabilgarri dago. pending: Gure taldea zure eskaera berrikusten ari da. Honek denbora pixka bat beharko du. Mezu elektroniko bat jasoko duzu zure eskaera onartzen bada. redirecting_to: Zure kontua ez dago aktibo orain %{acct} kontura birbideratzen duelako. @@ -1134,6 +1156,9 @@ eu: view_strikes: Ikusi zure kontuaren aurkako neurriak too_fast: Formularioa azkarregi bidali duzu, saiatu berriro. use_security_key: Erabili segurtasun gakoa + author_attribution: + example_title: Testu-lagina + more_from_html: "%{name} erabiltzaileaz gehiago jakin" challenge: confirm: Jarraitu hint_html: "Oharra: Ez dizugu pasahitza berriro eskatuko ordu batez." @@ -1170,6 +1195,7 @@ eu: before: 'Jarraitu aurretik, irakurri adi ohar hauek:' caches: Beste zerbitzariek cachean duten edukia mantentzea gerta daiteke data_removal: Zure bidalketak eta beste datuak behin betiko ezabatuko dira + email_reconfirmation_html: Ez baduzu baieztamen e-maila jasotzen, berriro eskatu dezakezu irreversible: Ezin izango duzu kontua berreskuratu edo berraktibatu more_details_html: Xehetasun gehiagorako, ikusi pribatutasun politika. username_available: Zure erabiltzaile-izena berriro eskuragarri egongo da @@ -1400,6 +1426,7 @@ eu: authentication_methods: otp: bi faktoreko autentifikazio aplikazioa password: pasahitza + sign_in_token: e-posta segurtasun kodea webauthn: segurtasun gakoak description_html: Ezagutzen ez duzun aktibitatea ikusten baduzu, pasahitza aldatu eta bi faktoreko autentifikazioa gaitzea gomendatzen dizugu. empty: Ez dago autentifikazio historiarik eskuragarri @@ -1410,9 +1437,18 @@ eu: unsubscribe: action: Bai, kendu harpidetza complete: Harpidetza kenduta + confirmation_html: |- + Ziur Mastodonen %{domain} zerbitzariko %{type} %{email} helbide elektronikoan jasotzeari utzi nahi diozula? + Beti harpidetu zaitezke berriro eposta jakinarazpenen hobespenetan. emails: notification_emails: + favourite: zure argitalpena gogoko egin dutenaren jakinarazpen e-mailak follow: jarraitu jakinarazpen-mezu elektronikoak + follow_request: jarraipen-eskaeren jakinarazpen e-mailak + mention: aipamenen jakinarazpen e-mailak + reblog: bultzaden jakinarazpen e-mailak + resubscribe_html: Nahi gabe utzi badiozu jakinarazpenak jasotzeari, berriro harpidetu zaitezke e-mail jakinarazpenen hobespenetan. + success_html: Ez duzu Mastodonen %{domain} zerbitzariko %{type} jasoko %{email} helbide elektronikoan. title: Kendu harpidetza media_attachments: validations: @@ -1493,6 +1529,8 @@ eu: update: subject: "%{name} erabiltzaileak bidalketa bat editatu du" notifications: + administration_emails: Administratzailearen posta elektroniko bidezko jakinarazpenak + email_events: E-mail jakinarazpenentzako gertaerak email_events_hint: 'Hautatu jaso nahi dituzun gertaeren jakinarazpenak:' number: human: @@ -1887,6 +1925,7 @@ eu: invalid_otp_token: Bi faktoreetako kode baliogabea otp_lost_help_html: 'Bietara sarbidea galdu baduzu, jarri kontaktuan hemen: %{email}' rate_limited: Autentifikazio saiakera gehiegi, saiatu berriro geroago. + seamless_external_login: Kanpo zerbitzu baten bidez hasi duzu saioa, beraz pasahitza eta e-mail ezarpenak ez daude eskuragarri. signed_in_as: 'Saioa honela hasita:' verification: extra_instructions_html: Aholkua: webguneko esteka ikusezina izan daiteke. Muina rel="me" da, erabiltzaileak sortutako edukia duten webguneetan beste inor zure burutzat aurkeztea eragozten duena. a beharrean esteka motako etiketa bat ere erabil dezakezu orriaren goiburuan, baina HTMLak erabilgarri egon behar du JavaScript exekutatu gabe. diff --git a/config/locales/fa.yml b/config/locales/fa.yml index 575aa4a829..ea8bee73be 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -1,35 +1,35 @@ --- fa: about: - about_mastodon_html: 'شبکه‌ی اجتماعی آینده: بدون تبلیغات، بدون شنود از طرف شرکت‌ها، طراحی اخلاق‌مدار، و معماری غیرمتمرکز! با ماستودون صاحب داده‌های خودتان باشید!' + about_mastodon_html: 'شبکهٔ اجتماعی آینده: بدون تبلیغ، بدون شنود شرکت‌ها، طراحی اخلاق مدار و معماری نامتمرکز! با ماستودون صاحب داده‌های خودتان باشید!' contact_missing: تنظیم نشده contact_unavailable: موجود نیست - hosted_on: ماستودون، میزبانی‌شده روی %{domain} + hosted_on: ماستودون میزبانی شده روی %{domain} title: درباره accounts: followers: - one: پیگیر - other: پیگیر + one: پی‌گیرنده + other: پی‌گیرنده following: پی می‌گیرد - instance_actor_flash: این حساب یک عامل مجازی است که به نمایندگی از خود کارساز استفاده می‌شود و نه هیچ یکی از کاربران. این حساب به منظور اتصال به فدراسیون استفاده می‌شود و نباید معلق شود. - last_active: آخرین فعالیت + instance_actor_flash: این حساب عاملی مجازیست که به نمایندگی از خود کارساز استفاده می‌شود و نه کاربری جداگانه. این حساب به منظور اتصال به فدراسیون استفاده می‌شود و نباید معلق شود. + last_active: آخرین فعّالیت link_verified_on: مالکیت این پیوند در %{date} بررسی شد - nothing_here: این‌جا چیزی نیست! + nothing_here: چیزی این‌جا نیست! pin_errors: following: باید کاربری که می‌خواهید پیشنهاد دهید را دنبال کرده باشید posts: one: فرسته other: فرسته‌ها posts_tab_heading: فرسته‌ها - self_follow_error: دنبال کردن حساب کاربری شما مجاز نیست + self_follow_error: پی‌گیری حساب خودتان مجاز نیست admin: account_actions: action: انجامِ کنش - already_silenced: این جساب از پیش محدود شده. - already_suspended: این جساب از پیش معلّق شده. + already_silenced: این حساب از پیش محدود شده. + already_suspended: این حساب از پیش معلّق شده. title: انجام کنش مدیریتی روی %{acct} account_moderation_notes: - create: افزودن یادداشت + create: گذاشتن یادداشت created_msg: یادداشت مدیر با موفقیت ساخته شد! destroyed_msg: یادداشت نظارتی با موفقیت نابود شد! accounts: @@ -1875,7 +1875,7 @@ fa: silence: همچنان می‌توانید از حساب خود استفاده کنید، اما فقط افرادی که از قبل شما را دنبال می‌کنند، پست‌های شما را در این سرور می‌بینند و ممکن است از ویژگی‌های مختلف کشف مستثنی شوید. با این حال، دیگران ممکن است همچنان به صورت دستی شما را دنبال کنند. suspend: دیگر نمی توانید از حساب خود استفاده کنید و نمایه و سایر داده های شما دیگر در دسترس نیستند. هنوز هم می‌توانید برای درخواست پشتیبان‌گیری از داده‌های خود وارد شوید تا زمانی که داده‌ها در حدود 30 روز به طور کامل حذف شوند، اما ما برخی از داده‌های اولیه را حفظ می‌کنیم تا از تعلیق فرار نکنید. reason: 'دلیل:' - statuses: 'پست های ذکر شده:' + statuses: 'فرسته‌های ارجاع داده:' subject: delete_statuses: فرسته‌هایتان روی %{acct} برداشته شده‌اند disable: حساب %{acct} شما متوقف شده است diff --git a/config/locales/fi.yml b/config/locales/fi.yml index 8cafc5feaf..64b4fd083e 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -10,7 +10,7 @@ fi: followers: one: seuraaja other: seuraajaa - following: Seurattavat + following: seurattavaa instance_actor_flash: Tämä tili on virtuaalinen toimija, jota käytetään edustamaan itse palvelinta eikä yksittäistä käyttäjää. Sitä käytetään federointitarkoituksiin, eikä sitä tule jäädyttää. last_active: viimeksi aktiivinen link_verified_on: Tämän linkin omistus on tarkastettu %{date} @@ -48,7 +48,7 @@ fi: title: Vaihda käyttäjän %{username} sähköposti-osoite change_role: changed_msg: Roolin vaihto onnistui! - edit_roles: Hallinnoi käyttäjien rooleja + edit_roles: Hallitse käyttäjärooleja label: Vaihda rooli no_role: Ei roolia title: Vaihda käyttäjän %{username} rooli @@ -76,7 +76,7 @@ fi: followers: Seuraajat follows: Seurattavat header: Otsakekuva - inbox_url: Postilaatikon osoite + inbox_url: Postilaatikon URL-⁠osoite invite_request_text: Syitä liittymiseen invited_by: Kutsuja ip: IP-osoite @@ -101,7 +101,7 @@ fi: title: Moderointi moderation_notes: Moderointimuistiinpanot most_recent_activity: Viimeisin toiminta - most_recent_ip: Viimeisin IP-osoite + most_recent_ip: Viimeisin IP-⁠osoite no_account_selected: Tilejä ei muutettu, koska yhtään ei ollut valittuna no_limits_imposed: Ei asetettuja rajoituksia no_role_assigned: Roolia ei asetettu @@ -124,7 +124,7 @@ fi: remote_suspension_reversible_hint_html: Tili on jäädytetty omalla palvelimellaan, ja kaikki tiedot poistetaan %{date}. Sitä ennen etäpalvelin voi palauttaa tilin ongelmitta. Jos haluat poistaa kaikki tilin tiedot heti, onnistuu se alta. remove_avatar: Poista profiilikuva remove_header: Poista otsakekuva - removed_avatar_msg: Käyttäjän %{username} avatar-kuva poistettiin onnistuneesti + removed_avatar_msg: Käyttäjän %{username} profiilikuva poistettiin onnistuneesti removed_header_msg: Käyttäjän %{username} otsakekuva poistettiin onnistuneesti resend_confirmation: already_confirmed: Tämä käyttäjä on jo vahvistettu @@ -136,14 +136,14 @@ fi: role: Rooli search: Hae search_same_email_domain: Muut käyttäjät, joilla on sama sähköpostiverkkotunnus - search_same_ip: Muut käyttäjät, joilla on sama IP-osoite + search_same_ip: Muut käyttäjät, joilla on sama IP-⁠osoite security: Turvallisuus security_measures: only_password: Vain salasana password_and_2fa: Salasana ja kaksivaiheinen todennus sensitive: Pakota arkaluonteiseksi sensitized: Merkitty arkaluonteiseksi - shared_inbox_url: Jaetun postilaatikon osoite + shared_inbox_url: Jaetun postilaatikon URL-⁠osoite show: created_reports: Tämän tilin luomat raportit targeted_reports: Tästä tilistä tehdyt raportit @@ -186,7 +186,7 @@ fi: create_domain_allow: Luo verkkotunnuksen salliminen create_domain_block: Luo verkkotunnuksen esto create_email_domain_block: Luo sähköpostiverkkotunnuksen esto - create_ip_block: Luo IP-sääntö + create_ip_block: Luo IP-⁠sääntö create_unavailable_domain: Luo ei-saatavilla oleva verkkotunnus create_user_role: Luo rooli demote_user: Alenna käyttäjä @@ -197,7 +197,7 @@ fi: destroy_domain_block: Poista verkkotunnuksen esto destroy_email_domain_block: Poista sähköpostiverkkotunnuksen esto destroy_instance: Tyhjennä verkkotunnus - destroy_ip_block: Poista IP-sääntö + destroy_ip_block: Poista IP-⁠sääntö destroy_status: Poista julkaisu destroy_unavailable_domain: Poista ei-saatavilla oleva verkkotunnus destroy_user_role: Hävitä rooli @@ -217,18 +217,18 @@ fi: resend_user: Lähetä vahvistusviesti uudelleen reset_password_user: Palauta salasana resolve_report: Ratkaise raportti - sensitive_account: Pakota arkaluonteiseksi tiliksi + sensitive_account: Pakota tili arkaluonteiseksi silence_account: Rajoita tiliä suspend_account: Jäädytä tili unassigned_report: Poista raportti käsittelystä unblock_email_account: Kumoa sähköpostiosoitteen esto - unsensitive_account: Kumoa pakotus arkaluonteiseksi tiliksi + unsensitive_account: Kumoa tilin pakotus arkaluonteiseksi unsilence_account: Kumoa tilin rajoitus unsuspend_account: Kumoa tilin jäädytys update_announcement: Päivitä tiedote update_custom_emoji: Päivitä mukautettu emoji update_domain_block: Päivitä verkkotunnuksen esto - update_ip_block: Päivitä IP-sääntö + update_ip_block: Päivitä IP-⁠sääntö update_report: Päivitä raportti update_status: Päivitä julkaisu update_user_role: Päivitä rooli @@ -246,7 +246,7 @@ fi: create_domain_allow_html: "%{name} salli federoinnin verkkotunnuksen %{target} kanssa" create_domain_block_html: "%{name} esti verkkotunnuksen %{target}" create_email_domain_block_html: "%{name} esti sähköpostiverkkotunnuksen %{target}" - create_ip_block_html: "%{name} loi säännön IP-osoitteelle %{target}" + create_ip_block_html: "%{name} loi säännön IP-⁠osoitteelle %{target}" create_unavailable_domain_html: "%{name} pysäytti toimituksen verkkotunnukseen %{target}" create_user_role_html: "%{name} loi roolin %{target}" demote_user_html: "%{name} alensi käyttäjän %{target}" @@ -257,7 +257,7 @@ fi: destroy_domain_block_html: "%{name} kumosi verkkotunnuksen %{target} eston" destroy_email_domain_block_html: "%{name} kumosi sähköpostiverkkotunnuksen %{target} eston" destroy_instance_html: "%{name} tyhjensi verkkotunnuksen %{target}" - destroy_ip_block_html: "%{name} poisti säännön IP-osoitteelta %{target}" + destroy_ip_block_html: "%{name} poisti säännön IP-⁠osoitteelta %{target}" destroy_status_html: "%{name} poisti käyttäjän %{target} julkaisun" destroy_unavailable_domain_html: "%{name} jatkoi toimitusta verkkotunnukseen %{target}" destroy_user_role_html: "%{name} poisti roolin %{target}" @@ -288,7 +288,7 @@ fi: update_announcement_html: "%{name} päivitti tiedotteen %{target}" update_custom_emoji_html: "%{name} päivitti emojin %{target}" update_domain_block_html: "%{name} päivitti verkkotunnuksen %{target} eston" - update_ip_block_html: "%{name} muutti IP-osoitteen %{target} sääntöä" + update_ip_block_html: "%{name} muutti IP-⁠osoitteen %{target} sääntöä" update_report_html: "%{name} päivitti raportin %{target}" update_status_html: "%{name} päivitti käyttäjän %{target} julkaisun" update_user_role_html: "%{name} muutti roolia %{target}" @@ -309,8 +309,8 @@ fi: title: Uusi tiedote publish: Julkaise published_msg: Tiedotteen julkaisu onnistui! - scheduled_for: Ajoitettu %{time} - scheduled_msg: Tiedotteen julkaisu ajoitettu! + scheduled_for: Ajastettu %{time} + scheduled_msg: Tiedotteen julkaisu ajastettu! title: Tiedotteet unpublish: Lopeta julkaisu unpublished_msg: Tiedotteen julkaisun lopetus onnistui! @@ -341,8 +341,8 @@ fi: no_emoji_selected: Emojeita ei muutettu, koska yhtään ei ollut valittuna not_permitted: Sinulla ei ole oikeutta suorittaa tätä toimintoa overwrite: Korvaa - shortcode: Lyhennekoodi - shortcode_hint: Vähintään 2 merkkiä, vain kirjaimia, numeroita ja alaviivoja + shortcode: Lyhytkoodi + shortcode_hint: Vähintään 2 merkkiä; vain kirjaimia, numeroita ja alaviivoja title: Mukautetut emojit uncategorized: Luokittelematon unlist: Poista listasta @@ -443,7 +443,7 @@ fi: domain: Verkkotunnus new: create: Lisää verkkotunnus - resolve: Resolvoi verkkotunnus + resolve: Ratkaise verkkotunnus title: Estä uusi sähköpostiverkkotunnus no_email_domain_block_selected: Sähköpostiverkkotunnusten estoja ei muutettu, koska yhtäkään ei ollut valittuna not_permitted: Ei sallittu @@ -518,8 +518,8 @@ fi: all: Kaikki clear: Tyhjennä toimitusvirheet failing: Epäonnistuva - restart: Käynnistä toimitus uudelleen - stop: Lopeta toimitus + restart: Jatka toimitusta + stop: Pysäytä toimitus unavailable: Ei saatavilla delivery_available: Toimitus on saatavilla delivery_error_days: Toimitusvirheen päivät @@ -558,14 +558,14 @@ fi: created_msg: Uusi IP-sääntö lisättiin onnistuneesti delete: Poista expires_in: - '1209600': 2 viikkoa - '15778476': 6 kuukautta - '2629746': 1 kuukausi - '31556952': 1 vuosi - '86400': 1 päivä - '94670856': 3 vuotta + '1209600': 2 viikkoa + '15778476': 6 kuukautta + '2629746': 1 kuukausi + '31556952': 1 vuosi + '86400': 1 päivä + '94670856': 3 vuotta new: - title: Luo uusi IP-sääntö + title: Luo uusi IP-⁠sääntö no_ip_block_selected: IP-sääntöjä ei muutettu, koska yhtään ei ollut valittuna title: IP-säännöt relationships: @@ -579,7 +579,7 @@ fi: enable: Ota käyttöön enable_hint: Kun tämä on otettu käyttöön, palvelimesi tilaa välittäjältä kaikki sen välittämät julkiset julkaisut ja alkaa lähettää omansa sille. enabled: Käytössä - inbox_url: Välittäjän URL + inbox_url: Välittäjän URL-⁠osoite pending: Odotetaan välittäjän hyväksyntää save_and_enable: Tallenna ja ota käyttöön setup: Määritä yhteys välittäjään @@ -639,7 +639,7 @@ fi: placeholder: Kuvaile tehtyjä toimia tai lisää muita käyttäjään liittyviä merkintöjä… title: Muistiinpanot notes_description_html: Tarkastele ja jätä muistiinpanoja muille moderaattoreille ja itsellesi tulevaisuuteen - processed_msg: Raportin nro %{id} käsittely onnistui + processed_msg: Raportin nro %{id} käsittely onnistui quick_actions_description_html: 'Suorita pikatoiminto tai vieritä alas nähdäksesi raportoitu sisältö:' remote_user_placeholder: etäkäyttäjä palvelimelta %{instance} reopen: Avaa raportti uudelleen @@ -664,7 +664,7 @@ fi: mark_as_sensitive_html: Merkitse loukkaavien julkaisujen media arkaluonteiseksi silence_html: Rajoita merkittävästi käyttäjän @%{acct} tavoitettavuutta tekemällä profiilista ja sen sisällöstä näkyviä vain niille, jotka jo seuraavat tiliä tai etsivät sen manuaalisesti suspend_html: Jäädytä @%{acct}, jolloin hänen profiilinsa ja sisältönsä ei ole käytettävissä ja hänen kanssaan on mahdotonta olla vuorovaikutuksessa - close_report: Merkitse raportti nro %{id} ratkaistuksi + close_report: Merkitse raportti nro %{id} ratkaistuksi close_reports_html: Merkitse kaikki käyttäjään @%{acct} kohdistuvat raportit ratkaistuiksi delete_data_html: Poista käyttäjän @%{acct} profiili ja sen sisältö 30 päivän kuluttua, ellei jäädytystä sillä välin kumota preview_preamble_html: "@%{acct} saa varoituksen, jonka sisältö on seuraava:" @@ -690,7 +690,7 @@ fi: moderation: Moderointi special: Erityistä delete: Poista - description_html: "Käyttäjärooleilla voit mukauttaa, mihin Mastodonin toimintoihin ja alueisiin käyttäjäsi on pääsy." + description_html: "Käyttäjärooleilla voit mukauttaa sitä, mihin Mastodonin toimintoihin ja alueisiin käyttäjilläsi on pääsy." edit: Muokkaa roolia ”%{name}” everyone: Oletuskäyttöoikeudet everyone_full_description_html: Tämä on perusrooli, joka vaikuttaa kaikkiin käyttäjiin, jopa ilman asetettua roolia. Kaikki muut roolit perivät sen käyttöoikeudet. @@ -711,7 +711,7 @@ fi: manage_blocks: Hallita estoja manage_blocks_description: Sallii käyttäjien estää sähköpostipalveluntarjoajia ja IP-osoitteita manage_custom_emojis: Hallita mukautettuja emojeita - manage_custom_emojis_description: Sallii käyttäjien hallita mukautettuja emojeita palvelimella + manage_custom_emojis_description: Sallii käyttäjien hallita palvelimen mukautettuja emojeita manage_federation: Hallita federointia manage_federation_description: Sallii käyttäjien estää tai sallia federointi muiden verkkotunnusten kanssa ja hallita toimitusta manage_invites: Hallita kutsuja @@ -726,7 +726,7 @@ fi: manage_settings_description: Sallii käyttäjien muuttaa sivuston asetuksia manage_taxonomies: Hallita luokittelua manage_taxonomies_description: Sallii käyttäjien tarkistaa suositun sisällön ja päivittää aihetunnisteiden asetuksia - manage_user_access: Hallita käyttäjäoikeuksia + manage_user_access: Hallita käyttäjien oikeuksia manage_user_access_description: Sallii käyttäjien poistaa muiden käyttäjien kaksivaiheinen todennus käytöstä, vaihtaa heidän sähköpostiosoitteensa ja palauttaa heidän salasanansa manage_users: Hallita käyttäjiä manage_users_description: Sallii käyttäjien tarkastella muiden käyttäjien tietoja ja suorittaa moderointitoimia heitä kohtaan @@ -770,16 +770,16 @@ fi: title: Jätä käyttäjät oletusarvoisesti hakukoneindeksoinnin ulkopuolelle discovery: follow_recommendations: Seurantasuositukset - preamble: Mielenkiintoisen sisällön esille tuominen auttaa saamaan uusia käyttäjiä, jotka eivät ehkä tunne ketään Mastodonista. Määrittele, kuinka erilaiset löytämisominaisuudet toimivat palvelimellasi. + preamble: Mielenkiintoisen sisällön esille tuominen on keskeistä perehdyttäessä uusia käyttäjiä, jotka eivät ehkä tunne ketään Mastodonissa. Hallitse, miten eri löydettävyysominaisuudet toimivat palvelimellasi. profile_directory: Profiilihakemisto public_timelines: Julkiset aikajanat publish_discovered_servers: Julkaise löydetyt palvelimet publish_statistics: Julkaise tilastot - title: Löytäminen + title: Löydettävyys trends: Trendit domain_blocks: all: Kaikille - disabled: Ei kenellekään + disabled: Ei kellekään users: Kirjautuneille paikallisille käyttäjille registrations: moderation_recommandation: Varmista, että sinulla on riittävä ja toimintavalmis joukko moderaattoreita, ennen kuin avaat rekisteröitymisen kaikille! @@ -815,7 +815,7 @@ fi: statuses: account: Tekijä application: Sovellus - back_to_account: Takaisin tilin sivulle + back_to_account: Takaisin tilisivulle back_to_report: Takaisin raporttisivulle batch: remove_from_report: Poista raportista @@ -989,9 +989,9 @@ fi: warning_presets: add_new: Lisää uusi delete: Poista - edit_preset: Muokkaa varoituksen esiasetusta + edit_preset: Muokkaa varoituspohjaa empty: Et ole vielä määrittänyt yhtäkään varoitusten esiasetusta. - title: Varoituksen esiasetukset + title: Varoituspohjat webhooks: add_new: Lisää päätepiste delete: Poista @@ -1037,7 +1037,7 @@ fi: new_report: body: "%{reporter} on raportoinut kohteen %{target}" body_remote: Joku palvelimelta %{domain} raportoi kohteen %{target} - subject: Uusi raportti palvelimesta %{instance} (nro %{id}) + subject: Uusi raportti palvelimelta %{instance} (nro %{id}) new_software_updates: body: Uusia Mastodon-versioita on julkaistu, joten saatat haluta päivittää! subject: Palvelimelle %{instance} ovat saatavilla uusia Mastodon-versioita! @@ -1062,7 +1062,7 @@ fi: advanced_web_interface_hint: 'Jos haluat hyödyntää näytön koko leveyttä, edistyneen selainkäyttöliittymän avulla voit määrittää useita erilaisia sarakkeita, niin näet kerralla niin paljon tietoa kuin haluat: kotisyöte, ilmoitukset, yleinen aikajana, mikä tahansa määrä listoja ja aihetunnisteita.' animations_and_accessibility: Animaatiot ja saavutettavuus confirmation_dialogs: Vahvistusikkunat - discovery: Löytäminen + discovery: Löydettävyys localization: body: Mastodonin ovat kääntäneet vapaaehtoiset. guide_link: https://crowdin.com/project/mastodon @@ -1075,7 +1075,7 @@ fi: unsubscribe: Lopeta tilaus view: 'Näytä:' view_profile: Näytä profiili - view_status: Näytä tila + view_status: Näytä julkaisu applications: created: Sovelluksen luonti onnistui destroyed: Sovelluksen poisto onnistui @@ -1174,16 +1174,16 @@ fi: title: Tekijän nimeäminen challenge: confirm: Jatka - hint_html: "Vihje: Emme pyydä sinulta salasanaa uudelleen seuraavan tunnin aikana." - invalid_password: Virheellinen salasana - prompt: Vahvista salasanasi jatkaaksesi + hint_html: "Vinkki: Emme pyydä sinulta salasanaa uudelleen seuraavan tunnin aikana." + invalid_password: Väärä salasana + prompt: Jatka vahvistalla salasanasi crypto: errors: invalid_key: ei ole kelvollinen Ed25519- tai Curve25519-avain date: formats: - default: "%b %d, %Y" - with_month_name: "%B %d, %Y" + default: "%-d.%-m.%Y" + with_month_name: "%-d.%-m.%Y" datetime: distance_in_words: about_x_hours: "%{count} t" @@ -1229,9 +1229,9 @@ fi: associated_report: Liittyvä raportti created_at: Päivätty description_html: Nämä ovat tiliisi kohdistuvia toimia sekä varoituksia, jotka palvelimen %{instance} ylläpito on lähettänyt sinulle. - recipient: Osoitettu + recipient: Osoitettu käyttäjälle reject_appeal: Hylkää valitus - status: Julkaisu nro %{id} + status: Julkaisu nro %{id} status_removed: Julkaisu on jo poistettu järjestelmästä title: "%{action} alkaen %{date}" title_actions: @@ -1258,7 +1258,7 @@ fi: '422': content: Turvallisuusvahvistus epäonnistui. Oletko estänyt evästeet? title: Turvallisuusvahvistus epäonnistui - '429': Rajoitettu + '429': Liikaa pyyntöjä '500': content: Valitettavasti jotain meni pieleen meidän päässämme. title: Sivu ei ole oikein @@ -1269,7 +1269,7 @@ fi: not_found_multiple: käyttäjänimiä %{usernames} ei löytynyt exports: archive_takeout: - date: Päiväys + date: Päivämäärä download: Lataa arkisto hint_html: Voit pyytää arkistoa omista julkaisuista ja mediasta. Viedyt tiedot ovat ActivityPub-muodossa, ja ne voi lukea millä tahansa yhteensopivalla ohjelmalla. Voit pyytää arkistoa 7 päivän välein. in_progress: Arkistoa kootaan… @@ -1285,8 +1285,8 @@ fi: featured_tags: add_new: Lisää uusi errors: - limit: Suosittelet jo aihetunnisteiden enimmäismäärää - hint_html: "Suosittele tärkeimpiä aihetunnisteitasi profiilissasi. Erinomainen työkalu, jolla pidät kirjaa luovista teoksistasi ja pitkäaikaisista projekteistasi. Suosittelemasi aihetunnisteet ovat näyttävällä paikalla profiilissasi ja mahdollistavat nopean pääsyn julkaisuihisi." + limit: Esittelet jo aihetunnisteiden enimmäismäärää + hint_html: "Esittele tärkeimpiä aihetunnisteitasi profiilissasi. Erinomainen työkalu, jolla pidät kirjaa luovista teoksistasi ja pitkäaikaisista projekteistasi. Esittelemäsi aihetunnisteet ovat näyttävällä paikalla profiilissasi ja mahdollistavat nopean pääsyn julkaisuihisi." filters: contexts: account: Profiilit @@ -1325,7 +1325,7 @@ fi: statuses: back_to_filter: Takaisin suodattimeen batch: - remove: Poista suodattimista + remove: Poista suodattimesta index: hint: Tämä suodatin koskee yksittäisten julkaisujen valintaa muista kriteereistä riippumatta. Voit lisätä lisää julkaisuja tähän suodattimeen selainkäyttöliittymästä. title: Suodatetut julkaisut @@ -1387,8 +1387,8 @@ fi: states: finished: Valmis in_progress: Käynnissä - scheduled: Ajoitettu - unconfirmed: Varmistamaton + scheduled: Ajastettu + unconfirmed: Vahvistamaton status: Tila success: Tietojen lähettäminen onnistui, ja ne käsitellään aivan pian time_started: Aloitettu @@ -1415,14 +1415,14 @@ fi: delete: Poista käytöstä expired: Vanhentunut expires_in: - '1800': 30 minuuttia - '21600': 6 tuntia - '3600': 1 tunti - '43200': 12 tuntia - '604800': 1 viikko - '86400': 1 vuorokausi + '1800': 30 minuutissa + '21600': 6 tunnissa + '3600': 1 tunnissa + '43200': 12 tunnissa + '604800': 1 viikossa + '86400': 1 päivässä expires_in_prompt: Ei koskaan - generate: Luo + generate: Luo kutsulinkki invalid: Tämä kutsu ei ole kelvollinen invited_by: 'Sinut kutsui:' max_uses: @@ -1525,7 +1525,7 @@ fi: follow_request: action: Hallitse seurantapyyntöjä body: "%{name} on pyytänyt lupaa seurata sinua" - subject: 'Odottava seuraamispyyntö: %{name}' + subject: 'Odottava seuraaja: %{name}' title: Uusi seurantapyyntö mention: action: Vastaa @@ -1549,13 +1549,13 @@ fi: number: human: decimal_units: - format: "%n %u" + format: "%n %u" units: - billion: Mrd - million: M - quadrillion: Brd - thousand: k - trillion: B + billion: mrd. + million: milj. + quadrillion: brd. + thousand: t. + trillion: bilj. otp_authentication: code_hint: Anna todennussovelluksen luoma koodi vahvistaaksesi description_html: Jos otat kaksivaiheisen todennuksen käyttöön käyttämällä todennussovellusta, kirjautumiseen vaaditaan puhelin, jolla voidaan luoda kirjautumistunnuksia. @@ -1572,7 +1572,7 @@ fi: truncate: "…" polls: errors: - already_voted: Olet jo äänestänyt tässä äänestyksessä + already_voted: Olet jo osallistunut tähän äänestykseen duplicate_options: sisältää kaksoiskappaleita duration_too_long: on liian kaukana tulevaisuudessa duration_too_short: on liian aikainen @@ -1636,9 +1636,9 @@ fi: account: Julkiset julkaisut tililtä @%{acct} tag: 'Julkiset julkaisut aihetunnisteella #%{hashtag}' scheduled_statuses: - over_daily_limit: Olet ylittänyt %{limit} ajoitetun julkaisun rajan tälle päivälle - over_total_limit: Olet ylittänyt %{limit} ajoitetun julkaisun rajan - too_soon: Ajoitetun päiväyksen pitää olla tulevaisuudessa + over_daily_limit: Olet ylittänyt %{limit} ajastetun julkaisun rajan tälle päivälle + over_total_limit: Olet ylittänyt %{limit} ajastetun julkaisun rajan + too_soon: Ajastetun päivämäärän on oltava tulevaisuudessa self_destruct: lead_html: Valitettavasti %{domain} sulkeutuu pysyvästi. Jos sinulla on siellä tili, et voi jatkaa sen käyttöä mutta voit yhä pyytää varmuuskopiota tiedoistasi. title: Tämä palvelin sulkeutuu @@ -1652,7 +1652,7 @@ fi: edge: Edge electron: Electron firefox: Firefox - generic: tuntematon selain + generic: Tuntematon selain huawei_browser: Huawei-selain ie: Internet Explorer micro_messenger: MicroMessenger @@ -1663,10 +1663,10 @@ fi: qq: QQ Browser safari: Safari uc_browser: UC Browser - unknown_browser: tuntematon selain + unknown_browser: Tuntematon selain weibo: Weibo current_session: Nykyinen istunto - date: Päiväys + date: Päivämäärä description: "%{browser} %{platform}" explanation: Nämä verkkoselaimet ovat parhaillaan kirjautuneena Mastodon-tilillesi. ip: IP-osoite @@ -1699,9 +1699,9 @@ fi: development: Kehitys edit_profile: Muokkaa profiilia export: Vie - featured_tags: Suositellut aihetunnisteet - import: Tuo tietoja - import_and_export: Tuonti ja vienti + featured_tags: Esiteltävät aihetunnisteet + import: Tuo + import_and_export: Tuo ja vie migrate: Tilin muutto toisaalle notifications: Sähköposti-ilmoitukset preferences: Asetukset @@ -1748,7 +1748,7 @@ fi: pin_errors: direct: Vain mainituille käyttäjille näkyviä julkaisuja ei voi kiinnittää limit: Olet jo kiinnittänyt enimmäismäärän julkaisuja - ownership: Muiden julkaisuja ei voi kiinnittää + ownership: Toisen julkaisua ei voi kiinnittää reblog: Tehostusta ei voi kiinnittää title: "%{name}: ”%{quote}”" visibilities: @@ -1808,10 +1808,10 @@ fi: system: Automaattinen (käytä järjestelmän teemaa) time: formats: - default: "%d.%m.%Y klo %H.%M" - month: "%b %Y" - time: "%H.%M" - with_time_zone: "%d.%m.%Y klo %H.%M %Z" + default: "%-d.%-m.%Y klo %-H.%M" + month: "%-m/%Y" + time: "%-H.%M" + with_time_zone: "%-d.%-m.%Y klo %-H.%M %Z" translation: errors: quota_exceeded: Palvelimen käännöspalvelun käyttökiintiö on ylitetty. @@ -1855,7 +1855,7 @@ fi: subject: Kaksivaiheisen todennuksen virhe title: Kaksivaiheisen todennuksen toinen vaihe epäonnistui suspicious_sign_in: - change_password: vaihda salasanasi + change_password: vaihdat salasanasi details: 'Tässä on tiedot kirjautumisesta:' explanation: Olemme havainneet kirjautumisen tilillesi uudesta IP-osoitteesta. further_actions_html: Jos tämä et ollut sinä, suosittelemme, että %{action} heti ja otat käyttöön kaksivaiheisen todennuksen pitääksesi tilisi turvassa. @@ -1872,15 +1872,15 @@ fi: disable: Et voi enää käyttää tiliäsi, mutta profiilisi ja muut tiedot pysyvät muuttumattomina. Voit pyytää varmuuskopiota tiedoistasi, vaihtaa tilin asetuksia tai poistaa tilisi. mark_statuses_as_sensitive: Palvelimen %{instance} moderaattorit ovat merkinneet osan julkaisuistasi arkaluonteisiksi. Tämä tarkoittaa sitä, että mediaa täytyy napauttaa ennen kuin sen esikatselu näytetään. Voit merkitä median itse arkaluonteiseksi, kun julkaiset tulevaisuudessa. sensitive: Tästä lähtien kaikki lähetetyt mediatiedostot merkitään arkaluonteisiksi ja piilotetaan napsautusvaroituksen taakse. - silence: Voit edelleen käyttää tiliäsi, mutta vain sinua jo seuraavat käyttäjät näkevät julkaisusi tällä palvelimella ja sinut voidaan sulkea pois eri löytämisominaisuuksista. Toiset voivat kuitenkin edelleen seurata sinua manuaalisesti. + silence: Voit edelleen käyttää tiliäsi, mutta vain sinua jo seuraavat käyttäjät näkevät julkaisusi tällä palvelimella ja sinut voidaan sulkea pois eri löydettävyysominaisuuksista. Toiset voivat kuitenkin edelleen seurata sinua manuaalisesti. suspend: Et voi enää käyttää tiliäsi, eivätkä profiilisi ja muut tiedot ole enää käytettävissä. Voit silti kirjautua sisään pyytääksesi tietojesi varmuuskopiota, kunnes tiedot on poistettu kokonaan noin 30 päivän kuluttua. Säilytämme kuitenkin joitain perustietoja, jotka estävät sinua kiertämästä jäädytystä. reason: 'Syy:' - statuses: 'Julkaisuja lainattu:' + statuses: 'Viitatut julkaisut:' subject: delete_statuses: Julkaisusi tilillä %{acct} on poistettu disable: Tilisi %{acct} on jäädytetty mark_statuses_as_sensitive: Julkaisusi tilillä %{acct} on merkitty arkaluonteisiksi - none: Varoitus %{acct} + none: Varoitus käyttäjälle %{acct} sensitive: Julkaisusi tilillä %{acct} merkitään arkaluonteisiksi tästä lähtien silence: Tiliäsi %{acct} on rajoitettu suspend: Tilisi %{acct} on jäädytetty @@ -1908,7 +1908,7 @@ fi: feature_audience_title: Rakenna yleisöäsi luottavaisin mielin feature_control: Tiedät itse parhaiten, mitä haluat nähdä kotisyötteessäsi. Ei algoritmeja eikä mainoksia tuhlaamassa aikaasi. Seuraa yhdellä tilillä ketä tahansa, miltä tahansa Mastodon-palvelimelta, vastaanota heidän julkaisunsa aikajärjestyksessä ja tee omasta internetin nurkastasi hieman enemmän omanlaisesi. feature_control_title: Pidä aikajanasi hallussasi - feature_creativity: Mastodon tukee ääni-, video- ja kuvajulkaisuja, saavutettavuuskuvauksia, äänestyksiä, sisältövaroituksia, animoituja avattaria, mukautettuja emojeita, pikkukuvien rajauksen hallintaa ja paljon muuta, mikä auttaa ilmaisemaan itseäsi verkossa. Julkaisetpa sitten taidetta, musiikkia tai podcastia, Mastodon on sinua varten. + feature_creativity: Mastodon tukee ääni-, video- ja kuvajulkaisuja, saavutettavuuskuvauksia, äänestyksiä, sisältövaroituksia, animoituja avattaria, mukautettuja emojeita, pienoiskuvien rajauksen hallintaa ja paljon muuta, mikä auttaa ilmaisemaan itseäsi verkossa. Julkaisetpa sitten taidetta, musiikkia tai podcastia, Mastodon on sinua varten. feature_creativity_title: Luovuutta vertaansa vailla feature_moderation: Mastodon palauttaa päätöksenteon käsiisi. Jokainen palvelin luo omat sääntönsä ja määräyksensä, joita valvotaan paikallisesti eikä ylhäältä alas kuten kaupallisessa sosiaalisessa mediassa, mikä tekee siitä joustavimman vastaamaan eri ihmisryhmien tarpeisiin. Liity palvelimelle, jonka säännöt sopivat sinulle, tai ylläpidä omaa palvelinta. feature_moderation_title: Moderointi juuri kuten sen pitäisi olla @@ -1936,7 +1936,7 @@ fi: users: follow_limit_reached: Et voi seurata yli %{limit} käyttäjää go_to_sso_account_settings: Avaa identiteettitarjoajasi tiliasetukset - invalid_otp_token: Virheellinen kaksivaiheisen todennuksen koodi + invalid_otp_token: Väärä kaksivaiheisen todennuksen koodi otp_lost_help_html: Jos sinulla ei ole pääsyä kumpaankaan, voit ottaa yhteyden osoitteeseen %{email} rate_limited: Liian monta todennusyritystä – yritä uudelleen myöhemmin. seamless_external_login: Olet kirjautunut ulkoisen palvelun kautta, joten salasana- ja sähköpostiasetukset eivät ole käytettävissä. @@ -1945,7 +1945,7 @@ fi: extra_instructions_html: Vinkki: Verkkosivustollasi oleva linkki voi olla myös näkymätön. Olennainen osuus on rel="me", joka estää toiseksi henkilöksi tekeytymisen verkkosivustoilla, joilla on käyttäjien luomaa sisältöä. Voit käyttää jopa link-elementtiä sivun head-osassa elementin a sijaan, mutta HTML:n pitää olla käytettävissä ilman JavaScript-koodin suorittamista. here_is_how: Näin se onnistuu hint_html: "Henkilöllisyyden vahvistaminen on Mastodonissa jokaisen käyttäjän ulottuvilla. Se perustuu avoimiin standardeihin ja on maksutonta nyt ja aina. Tarvitset vain henkilökohtaisen verkkosivuston, jonka perusteella sinut voidaan tunnistaa. Kun teet linkin tuolle verkkosivulle profiilistasi, tarkistamme, että verkkosivustolla on linkki takaisin profiiliisi, ja näytämme profiilissasi visuaalisen ilmaisimen." - instructions_html: Kopioi ja liitä seuraava koodi verkkosivustosi HTML-lähdekoodiin. Lisää sitten verkkosivustosi osoite johonkin profiilisi lisäkentistä ”Muokkaa profiilia” -välilehdellä ja tallenna muutokset. + instructions_html: Kopioi ja liitä seuraava koodi verkkosivustosi HTML-lähdekoodiin. Lisää sitten verkkosivustosi osoite johonkin profiilisi lisäkentistä ”Muokkaa profiilia” -⁠välilehdellä ja tallenna muutokset. verification: Vahvistus verified_links: Vahvistetut linkkisi website_verification: Verkkosivuston vahvistus diff --git a/config/locales/fr-CA.yml b/config/locales/fr-CA.yml index 5093e5d733..415cf592f1 100644 --- a/config/locales/fr-CA.yml +++ b/config/locales/fr-CA.yml @@ -21,11 +21,11 @@ fr-CA: one: Message other: Messages posts_tab_heading: Messages - self_follow_error: Il n'est pas possible de suivre votre propre compte + self_follow_error: Suivre votre propre compte n'est pas autorisé admin: account_actions: action: Effectuer l'action - already_silenced: Ce compte a déjà été limité. + already_silenced: Ce compte est déjà limité. already_suspended: Ce compte est déjà suspendu. title: Effectuer une action de modération sur %{acct} account_moderation_notes: @@ -48,7 +48,7 @@ fr-CA: title: Modifier le courriel pour %{username} change_role: changed_msg: Rôle modifié avec succès ! - edit_roles: Gérer les rôles d'utilisateur·ices + edit_roles: Gérer les rôles d'utilisateur·ice label: Modifier le rôle no_role: Aucun rôle title: Modifier le rôle de %{username} @@ -785,7 +785,7 @@ fr-CA: disabled: À personne users: Aux utilisateur·rice·s connecté·e·s localement registrations: - moderation_recommandation: Veuillez vous assurer d'avoir une équipe de modération adéquate et réactive avant d'ouvrir les inscriptions à tout le monde! + moderation_recommandation: Veuillez vous assurer d'avoir une équipe de modération adéquate et réactive avant d'ouvrir les inscriptions à tout le monde ! preamble: Affecte qui peut créer un compte sur votre serveur. title: Inscriptions registrations_mode: @@ -1592,9 +1592,9 @@ fr-CA: privacy: hint_html: "Personnalisez la façon dont votre profil et vos messages peuvent être découverts. Mastodon peut vous aider à atteindre un public plus large lorsque certains paramètres sont activés. Prenez le temps de les examiner pour vous assurer qu’ils sont configurés comme vous le souhaitez." privacy: Confidentialité - privacy_hint_html: Contrôlez ce que vous souhaitez divulguer. Les gens découvrent des profils intéressants en parcourant ceux suivis par d’autres personnes et des applications sympas en voyant lesquelles sont utilisées par d’autres pour publier des messages, mais vous préférez peut-être ne pas dévoiler ces informations. + privacy_hint_html: Contrôler ce que vous souhaitez divulguer. Les utilisateur·rice·s découvrent des profils intéressants en parcourant ceux suivis par d’autres personnes et des applications sympas en voyant celles utilisées pour publier des messages, mais vous préférez peut-être ne pas dévoiler ces informations. reach: Portée - reach_hint_html: Contrôlez si vous souhaitez être découvert et suivi par de nouvelles personnes. Voulez-vous que vos publications apparaissent sur l’écran Explorer ? Voulez-vous que d’autres personnes vous voient dans leurs recommandations de suivi ? Souhaitez-vous approuver automatiquement tous les nouveaux abonnés ou avoir un contrôle granulaire sur chacun d’entre eux ? + reach_hint_html: Contrôler si vous souhaitez être découvert et suivi par de nouvelles personnes. Voulez-vous que vos messages puissent apparaître dans les tendances ? Voulez-vous que d’autres personnes vous voient dans leurs recommandations de suivi ? Souhaitez-vous approuver automatiquement tous les nouveaux abonnés ou avoir un contrôle granulaire sur chacun d’entre eux ? search: Recherche search_hint_html: Contrôlez la façon dont vous voulez être retrouvé. Voulez-vous que les gens vous trouvent selon ce que vous avez publié publiquement ? Voulez-vous que des personnes extérieures à Mastodon trouvent votre profil en faisant des recherches sur le web ? N’oubliez pas que l’exclusion totale de tous les moteurs de recherche ne peut être garantie pour les informations publiques. title: Vie privée et visibilité diff --git a/config/locales/fr.yml b/config/locales/fr.yml index c348dc5f02..97d354410f 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -21,11 +21,11 @@ fr: one: Message other: Messages posts_tab_heading: Messages - self_follow_error: Il n'est pas possible de suivre votre propre compte + self_follow_error: Suivre votre propre compte n'est pas autorisé admin: account_actions: action: Effectuer l'action - already_silenced: Ce compte a déjà été limité. + already_silenced: Ce compte est déjà limité. already_suspended: Ce compte est déjà suspendu. title: Effectuer une action de modération sur %{acct} account_moderation_notes: @@ -44,18 +44,18 @@ fr: current_email: Adresse de courriel actuelle label: Modifier l’adresse de courriel new_email: Nouvelle adresse de courriel - submit: Modifier le courriel + submit: Modifier l’adresse de courriel title: Modifier l’adresse de courriel pour %{username} change_role: changed_msg: Rôle modifié avec succès ! - edit_roles: Gérer les rôles d'utilisateur·ices + edit_roles: Gérer les rôles d'utilisateur·ice label: Modifier le rôle no_role: Aucun rôle title: Modifier le rôle de %{username} confirm: Confirmer confirmed: Confirmé - confirming: Confirmation - custom: Personnalisé + confirming: Confirmation en attente + custom: Personnaliser delete: Supprimer les données deleted: Supprimé demote: Rétrograder @@ -773,7 +773,7 @@ fr: title: Par défaut, ne pas indexer les comptes dans les moteurs de recherche discovery: follow_recommendations: Suivre les recommandations - preamble: Il est essentiel de donner de la visibilité à des contenus intéressants pour attirer des utilisateur⋅rice⋅s néophytes qui ne connaissent peut-être personne sur Mastodon. Contrôlez le fonctionnement des différentes fonctionnalités de découverte sur votre serveur. + preamble: Il est essentiel de donner de la visibilité à des contenus intéressants pour attirer des utilisateur⋅rice⋅s néophytes qui ne connaissent peut-être personne sur Mastodon. Contrôler le fonctionnement des différentes fonctionnalités de découverte sur votre serveur. profile_directory: Annuaire des profils public_timelines: Fils publics publish_discovered_servers: Publier les serveurs découverts @@ -785,7 +785,7 @@ fr: disabled: À personne users: Aux utilisateur·rice·s connecté·e·s localement registrations: - moderation_recommandation: Veuillez vous assurer d'avoir une équipe de modération adéquate et réactive avant d'ouvrir les inscriptions à tout le monde! + moderation_recommandation: Veuillez vous assurer d'avoir une équipe de modération adéquate et réactive avant d'ouvrir les inscriptions à tout le monde ! preamble: Affecte qui peut créer un compte sur votre serveur. title: Inscriptions registrations_mode: @@ -1592,9 +1592,9 @@ fr: privacy: hint_html: "Personnalisez la façon dont votre profil et vos messages peuvent être découverts. Mastodon peut vous aider à atteindre un public plus large lorsque certains paramètres sont activés. Prenez le temps de les examiner pour vous assurer qu’ils sont configurés comme vous le souhaitez." privacy: Confidentialité - privacy_hint_html: Contrôlez ce que vous souhaitez divulguer. Les gens découvrent des profils intéressants en parcourant ceux suivis par d’autres personnes et des applications sympas en voyant lesquelles sont utilisées par d’autres pour publier des messages, mais vous préférez peut-être ne pas dévoiler ces informations. + privacy_hint_html: Contrôler ce que vous souhaitez divulguer. Les utilisateur·rice·s découvrent des profils intéressants en parcourant ceux suivis par d’autres personnes et des applications sympas en voyant celles utilisées pour publier des messages, mais vous préférez peut-être ne pas dévoiler ces informations. reach: Portée - reach_hint_html: Contrôlez si vous souhaitez être découvert et suivi par de nouvelles personnes. Voulez-vous que vos publications apparaissent sur l’écran Explorer ? Voulez-vous que d’autres personnes vous voient dans leurs recommandations de suivi ? Souhaitez-vous approuver automatiquement tous les nouveaux abonnés ou avoir un contrôle granulaire sur chacun d’entre eux ? + reach_hint_html: Contrôler si vous souhaitez être découvert et suivi par de nouvelles personnes. Voulez-vous que vos messages puissent apparaître dans les tendances ? Voulez-vous que d’autres personnes vous voient dans leurs recommandations de suivi ? Souhaitez-vous approuver automatiquement tous les nouveaux abonnés ou avoir un contrôle granulaire sur chacun d’entre eux ? search: Recherche search_hint_html: Contrôlez la façon dont vous voulez être retrouvé. Voulez-vous que les gens vous trouvent selon ce que vous avez publié publiquement ? Voulez-vous que des personnes extérieures à Mastodon trouvent votre profil en faisant des recherches sur le web ? N’oubliez pas que l’exclusion totale de tous les moteurs de recherche ne peut être garantie pour les informations publiques. title: Vie privée et visibilité @@ -1875,7 +1875,7 @@ fr: disable: Vous ne pouvez plus utiliser votre compte, mais votre profil et d'autres données restent intacts. Vous pouvez demander une sauvegarde de vos données, modifier les paramètres de votre compte ou supprimer votre compte. mark_statuses_as_sensitive: Certains de vos messages ont été marqués comme sensibles par l'équipe de modération de %{instance}. Cela signifie qu'il faudra cliquer sur le média pour pouvoir en afficher un aperçu. Vous pouvez marquer les médias comme sensibles vous-même lorsque vous posterez à l'avenir. sensitive: Désormais, tous vos fichiers multimédias téléchargés seront marqués comme sensibles et cachés derrière un avertissement à cliquer. - silence: Vous pouvez toujours utiliser votre compte, mais seules les personnes qui vous suivent déjà verront vos messages sur ce serveur, et vous pourriez être exclu de diverses fonctions de découverte. Cependant, d'autres personnes peuvent toujours vous suivre manuellement. + silence: Vous pouvez toujours utiliser votre compte, mais seules les personnes qui vous suivent déjà verront vos messages sur ce serveur, et votre compte pourra être exclu des fonctions de découverte. Cependant, les utilisateur·rice·s peuvent toujours vous suivre manuellement. suspend: Vous ne pouvez plus utiliser votre compte, votre profil et vos autres données ne sont plus accessibles. Vous pouvez toujours vous connecter pour demander une sauvegarde de vos données jusqu'à leur suppression complète dans environ 30 jours, mais nous conserverons certaines données de base pour vous empêcher d'échapper à la suspension. reason: 'Motif :' statuses: 'Messages cités :' @@ -1964,7 +1964,7 @@ fr: error: Il y a eu un problème en supprimant votre clé de sécurité. Veuillez réessayer. success: Votre clé de sécurité a été supprimée avec succès. invalid_credential: Clé de sécurité invalide - nickname_hint: Entrez le surnom de votre nouvelle clé de sécurité + nickname_hint: Entrez le nom de votre nouvelle clé de sécurité not_enabled: Vous n'avez pas encore activé WebAuthn not_supported: Ce navigateur ne prend pas en charge les clés de sécurité otp_required: Pour utiliser les clés de sécurité, veuillez d'abord activer l'authentification à deux facteurs. diff --git a/config/locales/gl.yml b/config/locales/gl.yml index 6b10da5738..7931940c0e 100644 --- a/config/locales/gl.yml +++ b/config/locales/gl.yml @@ -1902,7 +1902,7 @@ gl: edit_profile_action: Personalizar edit_profile_step: Aumenta as túas interaccións grazas a un perfil descriptivo. edit_profile_title: Personaliza o teu perfil - explanation: Aquí tes algunhas endereitas para ir aprendendo + explanation: Aquí tes algúns consellos para ir aprendendo feature_action: Saber máis feature_audience: Mastodon dache a oportunidade de xestionar sen intermediarios as túas relacións. Incluso se usas o teu propio servidor Mastodon poderás seguir e ser seguida desde calquera outro servidor Mastodon conectado á rede e estará baixo o teu control exclusivo. feature_audience_title: Crea a túa audiencia con tranquilidade diff --git a/config/locales/hu.yml b/config/locales/hu.yml index 84fcc55354..2de39006a8 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -99,7 +99,7 @@ hu: silenced: Korlátozott suspended: Felfüggesztve title: Moderáció - moderation_notes: Moderációs bejegyzés + moderation_notes: Moderációs megjegyzések most_recent_activity: Legutóbbi tevékenységek most_recent_ip: Legutóbbi IP-cím no_account_selected: Nem változott meg egy fiók sem, mert semmi sem volt kiválasztva @@ -141,8 +141,8 @@ hu: security_measures: only_password: Csak jelszó password_and_2fa: Jelszó és kétlépcsős hitelesítés - sensitive: Kényes - sensitized: Kényesnek jelölve + sensitive: Érzékeny + sensitized: Érzékenynek jelölve shared_inbox_url: Megosztott bejövő üzenetek URL show: created_reports: Létrehozott jelentések @@ -160,7 +160,7 @@ hu: unblock_email: E-mail-cím tiltásának feloldása unblocked_email_msg: A(z) %{username} e-mail-cím tiltása sikeresen feloldva unconfirmed_email: Nem megerősített e-mail - undo_sensitized: Kényesnek jelölés visszavonása + undo_sensitized: Érzékenynek jelölés visszavonása undo_silenced: Némítás visszavonása undo_suspension: Felfüggesztés visszavonása unsilenced_msg: A %{username} fiók korlátozásait sikeresen levettük @@ -587,8 +587,8 @@ hu: status: Állapot title: Továbbítók report_notes: - created_msg: Bejelentési feljegyzés létrehozva! - destroyed_msg: Bejelentési feljegyzés törölve! + created_msg: Bejelentési megjegyzés létrehozva! + destroyed_msg: Bejelentési megjegyzés törölve! reports: account: notes: @@ -633,8 +633,8 @@ hu: no_one_assigned: Senki notes: create: Feljegyzés hozzáadása - create_and_resolve: Megoldás feljegyzéssel - create_and_unresolve: Újranyitás feljegyzéssel + create_and_resolve: Megoldás megjegyzéssel + create_and_unresolve: Újranyitás megjegyzéssel delete: Törlés placeholder: Jegyezd le, mi tettünk az ügy érdekében, vagy bármilyen változást... title: Megjegyzések @@ -1205,7 +1205,7 @@ hu: proceed: Felhasználói fiók törlése success_msg: Felhasználói fiókod sikeresen töröltük warning: - before: 'Mielőtt továbbmész, kérlek olvasd el ezt alaposan:' + before: 'Mielőtt továbbmész, alaposan olvasd el ezt:' caches: Más szerverek által cache-elt tartalmak még megmaradhatnak data_removal: Bejegyzéseid és minden más adatod véglegesen törlődni fog email_change_html: Megváltoztathatod az e-mail-címed a fiókod törlése nélkül @@ -1493,7 +1493,7 @@ hu: set_redirect: Átirányítás beállítása warning: backreference_required: Az új fiókot először be kell úgy állítani, hogy ezt visszahivatkozza - before: 'Mielőtt továbbmész, olvasd el ezeket kérlek figyelmesen:' + before: 'Mielőtt továbbmész, figyelmesen olvasd el ezeket:' cooldown: A költözés után van egy türelmi idő, mely alatt nem tudsz majd újra költözni disabled_account: A jelenlegi fiókod nem lesz teljesen használható ezután. Viszont elérhető lesz majd az adatexport funkció, valamint a reaktiválás is. followers: Ez a művelet az összes követődet a jelenlegi fiókról az újra fogja költöztetni @@ -1505,7 +1505,7 @@ hu: move_handler: carry_blocks_over_text: 'Ez a felhasználó elköltözött innen: %{acct}, korábban letiltottad.' carry_mutes_over_text: 'Ez a felhasználó elköltözött innen: %{acct}, korábban lenémítottad.' - copy_account_note_text: 'Ez a fiók elköltözött innen: %{acct}, itt vannak a bejegyzéseid róla:' + copy_account_note_text: 'Ez a fiók elköltözött innen: %{acct}, itt vannak az előző megjegyzéseid róla:' navigation: toggle_menu: Menü be/ki notification_mailer: diff --git a/config/locales/ia.yml b/config/locales/ia.yml index f631d318a8..0ea46afdb2 100644 --- a/config/locales/ia.yml +++ b/config/locales/ia.yml @@ -303,7 +303,7 @@ ia: edit: title: Modificar annuncio empty: Necun annuncios trovate. - live: In directo + live: In vivo new: create: Crear annuncio title: Nove annuncio diff --git a/config/locales/is.yml b/config/locales/is.yml index be0d8277e3..5f8e57d1e7 100644 --- a/config/locales/is.yml +++ b/config/locales/is.yml @@ -182,7 +182,7 @@ is: create_account_warning: Útbúa aðvörun create_announcement: Búa til tilkynningu create_canonical_email_block: Búa til útilokunarblokk tölvupósts - create_custom_emoji: Búa til sérsniðið tjáningartákn + create_custom_emoji: Búa til sérsniðið lyndistákn create_domain_allow: Búa til lén leyft create_domain_block: Búa til útilokun léns create_email_domain_block: Búa til útilokun tölvupóstléns @@ -192,7 +192,7 @@ is: demote_user: Lækka notanda í tign destroy_announcement: Eyða tilkynningu destroy_canonical_email_block: Eyða útilokunarblokk tölvupósts - destroy_custom_emoji: Eyða sérsniðnu tjáningartákni + destroy_custom_emoji: Eyða sérsniðnu lyndistákni destroy_domain_allow: Eyða léni leyft destroy_domain_block: Eyða útilokun léns destroy_email_domain_block: Eyða útilokun tölvupóstléns @@ -202,10 +202,10 @@ is: destroy_unavailable_domain: Eyða léni sem ekki er tiltækt destroy_user_role: Eyða hlutverki disable_2fa_user: Gera tveggja-þátta auðkenningu óvirka - disable_custom_emoji: Gera sérsniðið tjáningartákn óvirkt + disable_custom_emoji: Gera sérsniðið lyndistákn óvirkt disable_sign_in_token_auth_user: Gera óvirka auðkenningu með teikni í tölvupósti fyrir notandann disable_user: Gera notanda óvirkan - enable_custom_emoji: Virkja sérsniðið tjáningartákn + enable_custom_emoji: Virkja sérsniðið lyndistákn enable_sign_in_token_auth_user: Gera virka auðkenningu með teikni í tölvupósti fyrir notandann enable_user: Virkja notanda memorialize_account: Gera aðgang að minningargrein @@ -226,7 +226,7 @@ is: unsilence_account: Hætta að hylja notandaaðgang unsuspend_account: Taka notandaaðgang úr frysti update_announcement: Uppfæra tilkynningu - update_custom_emoji: Uppfæra sérsniðið tjáningartákn + update_custom_emoji: Uppfæra sérsniðið lyndistákn update_domain_block: Uppfæra útilokun léns update_ip_block: Uppfæra reglu IP-vistfangs update_report: Uppfæra kæru @@ -242,7 +242,7 @@ is: create_account_warning_html: "%{name} sendi aðvörun til %{target}" create_announcement_html: "%{name} útbjó nýja tilkynningu %{target}" create_canonical_email_block_html: "%{name} útilokaði tölvupóst með tætigildið %{target}" - create_custom_emoji_html: "%{name} sendi inn nýtt tjáningartákn %{target}" + create_custom_emoji_html: "%{name} sendi inn nýtt lyndistákn %{target}" create_domain_allow_html: "%{name} leyfði skýjasamband með léninu %{target}" create_domain_block_html: "%{name} útilokaði lénið %{target}" create_email_domain_block_html: "%{name} útilokaði póstlénið %{target}" @@ -262,10 +262,10 @@ is: destroy_unavailable_domain_html: "%{name} hóf aftur afhendingu til lénsins %{target}" destroy_user_role_html: "%{name} eyddi hlutverki %{target}" disable_2fa_user_html: "%{name} gerði kröfu um tveggja-þátta innskráningu óvirka fyrir notandann %{target}" - disable_custom_emoji_html: "%{name} gerði tjáningartáknið %{target} óvirkt" + disable_custom_emoji_html: "%{name} gerði lyndistáknið %{target} óvirkt" disable_sign_in_token_auth_user_html: "%{name} gerði óvirka auðkenningu með teikni í tölvupósti fyrir %{target}" disable_user_html: "%{name} gerði innskráningu óvirka fyrir notandann %{target}" - enable_custom_emoji_html: "%{name} gerði tjáningartáknið %{target} virkt" + enable_custom_emoji_html: "%{name} gerði lyndistáknið %{target} virkt" enable_sign_in_token_auth_user_html: "%{name} gerði virka auðkenningu með teikni í tölvupósti fyrir %{target}" enable_user_html: "%{name} gerði innskráningu virka fyrir notandann %{target}" memorialize_account_html: "%{name} breytti notandaaðgangnum %{target} í minningargreinarsíðu" @@ -286,7 +286,7 @@ is: unsilence_account_html: "%{name} hætti að hylja notandaaðganginn %{target}" unsuspend_account_html: "%{name} tók notandaaðganginn %{target} úr frysti" update_announcement_html: "%{name} uppfærði tilkynningu %{target}" - update_custom_emoji_html: "%{name} uppfærði tjáningartáknið %{target}" + update_custom_emoji_html: "%{name} uppfærði lyndistáknið %{target}" update_domain_block_html: "%{name} uppfærði útilokun lénsins %{target}" update_ip_block_html: "%{name} breytti reglu fyrir IP-vistfangið %{target}" update_report_html: "%{name} uppfærði kæru %{target}" @@ -319,36 +319,36 @@ is: custom_emojis: assign_category: Úthluta flokki by_domain: Lén - copied_msg: Það tókst að búa til afrit af tjáningartákninu + copied_msg: Það tókst að búa til afrit af lyndistákninu copy: Afrita - copy_failed_msg: Ekki tókst að gera staðvært afrit af tjáningartákninu + copy_failed_msg: Ekki tókst að gera staðvært afrit af lyndistákninu create_new_category: Búa til nýjan flokk - created_msg: Tókst að búa til tjáningartákn! + created_msg: Tókst að búa til lyndistákn! delete: Eyða - destroyed_msg: Tókst að eyða tjáningartákni! + destroyed_msg: Tókst að eyða lyndistákni! disable: Gera óvirkt disabled: Óvirkt - disabled_msg: Tókst að gera þetta tjáningartákn óvirkt - emoji: Tjáningartákn + disabled_msg: Tókst að gera þetta lyndistákn óvirkt + emoji: Lyndistákn enable: Virkja enabled: Virkt - enabled_msg: Tókst að gera þetta tjáningartákn virkt + enabled_msg: Tókst að gera þetta lyndistákn virkt image_hint: PNG eða GIF allt að %{size} list: Listi listed: Skráð new: - title: Bæta við nýju sérsniðnu tjáningartákni + title: Bæta við nýju sérsniðnu lyndistákni no_emoji_selected: Engum táknum var breytt þar sem engin voru valin not_permitted: Þú hefur ekki réttindi til að framkvæma þessa aðgerð overwrite: Skrifa yfir shortcode: Stuttkóði shortcode_hint: Að minnsta kosti 2 stafir, einungis tölu- og bókstafir ásamt undirstrikum - title: Sérsniðin tjáningartákn + title: Sérsniðin lyndistákn uncategorized: Óflokkað unlist: Afskrá unlisted: Óskráð - update_failed_msg: Gat ekki uppfært þetta tjáningartákn - updated_msg: Tókst að uppfæra tjáningartákn! + update_failed_msg: Gat ekki uppfært þetta lyndistákn + updated_msg: Tókst að uppfæra lyndistákn! upload: Senda inn dashboard: active_users: virkir notendur @@ -710,8 +710,8 @@ is: manage_appeals_description: Leyfir notendum að yfirfara áfrýjanir vegna aðgerða umsjónarfólks manage_blocks: Sýsla með útilokanir manage_blocks_description: Leyfir notendum að loka á tölvupóstþjónustur og IP-vistföng - manage_custom_emojis: Sýsla með sérsniðin tjáningartákn - manage_custom_emojis_description: Leyfir notendum að sýsla með sérsniðin tjáningartákn á netþjóninum + manage_custom_emojis: Sýsla með sérsniðin lyndistákn + manage_custom_emojis_description: Leyfir notendum að sýsla með sérsniðin lyndistákn á netþjóninum manage_federation: Sýsla með netþjónasambönd manage_federation_description: Leyfir notendum að loka á eða leyfa samþættingu við önnur lén (federation) og stýra afhendingu skilaboða manage_invites: Sýsla með boðsgesti @@ -1604,7 +1604,7 @@ is: reactions: errors: limit_reached: Hámarki mismunandi viðbragða náð - unrecognized_emoji: er ekki þekkt tjáningartákn + unrecognized_emoji: er ekki þekkt lyndistákn redirects: prompt: Ef þú treystir þessum tengli, geturðu smellt á hann til að halda áfram. title: Þú ert að yfirgefa %{instance}. @@ -1912,7 +1912,7 @@ is: feature_audience_title: Byggðu upp orðspor þitt og áheyrendafjölda feature_control: Þú veist best hvað þú vilt sjá í heimastreyminu þínu. Engin reiknirit eða auglýsingar að þvælast fyrir. Fylgstu af einum aðgangi með hverjum sem er á milli Mastodon-netþjóna og fáðu færslurnar þeirra í tímaröð, þannig geturðu útbúið þitt eigið lítið horn á internetinu þar sem hlutirnir eru að þínu skapi. feature_control_title: Hafðu stjórn á þinni eigin tímalínu - feature_creativity: Mastodon styður færslur með hljóði, myndum og myndskeiðum, lýsingum fyrir aukið aðgengi, kannanir, aðvörunum vegna efnis, hreyanlegum auðkennismyndum, sérsniðnum tjáningartáknum, utanskurði smámynda ásamt fleiru; til að hjálpa þér við að tjá þig á netinu. Hvort sem þú sért að gefa út listina þína, tónlist eða hlaðvarp, þá er Mastodon til staðar fyrir þig. + feature_creativity: Mastodon styður færslur með hljóði, myndum og myndskeiðum, lýsingum fyrir aukið aðgengi, kannanir, aðvörunum vegna efnis, hreyanlegum auðkennismyndum, sérsniðnum lyndistáknum, utanskurði smámynda ásamt fleiru; til að hjálpa þér við að tjá þig á netinu. Hvort sem þú sért að gefa út listina þína, tónlist eða hlaðvarp, þá er Mastodon til staðar fyrir þig. feature_creativity_title: Óviðjafnanleg sköpunargleði feature_moderation: Mastodon setur ákvarðanatökur aftur í þínar hendur. Hver netþjónn býr til sínar eigin reglur og venjur, sem gilda fyrir þann netþjón en eru ekki boðaðar með valdi að ofan og niður líkt og á samfélagsnetum stórfyrirtækja. Á þennan hátt svarar samfélagsmiðillinn þörfum mismunandi hópa. Taktu þátt á netþjóni með reglum sem þú samþykkir, eða hýstu þinn eigin. feature_moderation_title: Umsjón með efni eins og slík á að vera diff --git a/config/locales/it.yml b/config/locales/it.yml index 020ca9b066..bf5538b912 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -8,8 +8,8 @@ it: title: Info accounts: followers: - one: Seguace - other: Seguaci + one: Follower + other: Follower following: Seguiti instance_actor_flash: Questo profilo è un attore virtuale, utilizzato per rappresentare il server stesso e non un singolo utente. È utilizzato per scopi federativi e non dovrebbe esser sospeso. last_active: ultima attività @@ -73,7 +73,7 @@ it: enable_sign_in_token_auth: Abilitare l'autenticazione del token e-mail enabled: Abilitato enabled_msg: Il profilo di %{username} è stato scongelato correttamente - followers: Seguaci + followers: Follower follows: Seguiti header: Intestazione inbox_url: URL casella @@ -466,7 +466,7 @@ it: title: Importare i blocchi di dominio no_file: Nessun file selezionato follow_recommendations: - description_html: "I consigli su chi seguire aiutano i nuovi utenti a trovare rapidamente dei contenuti interessanti. Quando un utente non ha interagito abbastanza con altri per avere dei consigli personalizzati, vengono consigliati questi account. Sono ricalcolati ogni giorno da un misto di account con le più alte interazioni recenti e con il maggior numero di seguaci locali per una data lingua." + description_html: "I consigli su chi seguire aiutano i nuovi utenti a trovare rapidamente dei contenuti interessanti. Quando un utente non ha interagito abbastanza con altri per avere dei consigli personalizzati, vengono consigliati questi account. Sono ricalcolati ogni giorno da un misto di account con le più alte interazioni recenti e con il maggior numero di follower locali per una data lingua." language: Per lingua status: Stato suppress: Nascondi consigli su chi seguire @@ -508,8 +508,8 @@ it: dashboard: instance_accounts_dimension: Profili più seguiti instance_accounts_measure: profili memorizzati - instance_followers_measure: i nostri seguaci lì - instance_follows_measure: i loro seguaci qui + instance_followers_measure: i nostri follower lì + instance_follows_measure: i loro follower qui instance_languages_dimension: Lingue preferite instance_media_attachments_measure: allegati multimediali memorizzati instance_reports_measure: segnalazioni su di loro @@ -1055,7 +1055,7 @@ it: created_msg: Hai creato un nuovo alias. Ora puoi iniziare lo spostamento dal vecchio account. deleted_msg: L'alias è stato eliminato. Lo spostamento da quell'account a questo non sarà più possibile. empty: Non hai alias. - hint_html: Se vuoi trasferirti da un altro account a questo, qui puoi creare un alias, che è necessario prima di poter spostare i seguaci dal vecchio account a questo. Questa azione è innocua e reversibile. La migrazione dell'account è avviata dal vecchio account. + hint_html: Se vuoi trasferirti da un altro account a questo, qui puoi creare un alias, che è necessario prima di poter spostare i follower dal vecchio account a questo. Questa azione è innocua e reversibile. La migrazione dell'account è avviata dal vecchio account. remove: Scollega alias appearance: advanced_web_interface: Interfaccia web avanzata @@ -1474,7 +1474,7 @@ it: migrations: acct: utente@dominio del nuovo account cancel: Annulla ridirezione - cancel_explanation: Se annulli il reindirizzamento sarà riattivato il tuo account attuale, ma i seguaci che sono stati spostati all'altro account non saranno riportati indietro. + cancel_explanation: Se annulli il reindirizzamento sarà riattivato il tuo account attuale, ma i follower che sono stati spostati all'altro account non saranno riportati indietro. cancelled_msg: Reindirizzamento annullato. errors: already_moved: è lo stesso account su cui ti sei già trasferito @@ -1482,14 +1482,14 @@ it: move_to_self: non può essere l'account attuale not_found: non trovato on_cooldown: Ti trovi nel periodo di pausa tra un trasferimento e l'altro - followers_count: Seguaci al momento dello spostamento + followers_count: Follower al momento dello spostamento incoming_migrations: In arrivo da un altro account incoming_migrations_html: Per spostarti da un altro account a questo, devi prima creare un alias. moved_msg: Il tuo account è ora reindirizzato a %{acct} e i tuoi follower sono stati spostati. not_redirecting: Il tuo account attualmente non è reindirizzato ad alcun altro account. on_cooldown: Hai recentemente trasferito il tuo account. Questa funzione sarà nuovamente disponibile tra %{count} giorni. past_migrations: Trasferimenti passati - proceed_with_move: Sposta seguaci + proceed_with_move: Sposta i follower redirected_msg: Il tuo account sta reindirizzando a %{acct}. redirecting_to: Il tuo account sta reindirizzando a %{acct}. set_redirect: Imposta reindirizzamento @@ -1523,11 +1523,11 @@ it: follow: body: "%{name} ti sta seguendo!" subject: "%{name} ti sta seguendo" - title: Nuovo seguace + title: Nuovo follower follow_request: action: Gestisci richieste di essere seguito body: "%{name} ha chiesto di seguirti" - subject: 'Seguace in attesa: %{name}' + subject: 'Follower in attesa: %{name}' title: Nuova richiesta di essere seguito mention: action: Rispondi @@ -1593,7 +1593,7 @@ it: privacy: Privacy privacy_hint_html: Controlla quanto tu voglia mostrare a beneficio degli altri. Le persone scoprono profili interessanti e app fantastiche sfogliando il seguito di altre persone e vedendo da quali app pubblichino, ma potresti preferire tenerlo nascosto. reach: Copertura - reach_hint_html: Controlla se vuoi essere scoperto e seguito da nuove persone. Vuoi che i tuoi post vengano visualizzati nella schermata Esplora? Vuoi che altre persone ti vedano tra i loro consigli di utenti da seguire? Vuoi accettare automaticamente tutti i nuovi seguaci o avere un controllo granulare su ciascuno di essi? + reach_hint_html: Controlla se vuoi essere scoperto e seguito da nuove persone. Vuoi che i tuoi post vengano visualizzati nella schermata Esplora? Vuoi che altre persone ti vedano tra i loro consigli di utenti da seguire? Vuoi accettare automaticamente tutti i nuovi follower o avere un controllo granulare su ciascuno di essi? search: Cerca search_hint_html: Controlla come vuoi essere trovato. Vuoi che le persone ti trovino in base a ciò che hai postato pubblicamente? Vuoi che le persone al di fuori di Mastodon trovino il tuo profilo durante la ricerca sul web? Si prega di notare che l'esclusione totale da tutti i motori di ricerca non può essere garantita per le informazioni pubbliche. title: Privacy e copertura @@ -1613,8 +1613,8 @@ it: confirm_remove_selected_follows: Sei sicuro di voler rimuovere i follow selezionati? dormant: Dormiente follow_failure: Impossibile seguire alcuni degli account selezionati. - follow_selected_followers: Segui i seguaci selezionati - followers: Seguaci + follow_selected_followers: Segui i follower selezionati + followers: Follower following: Seguiti invited: Invitato last_active: Ultima volta attivo @@ -1623,8 +1623,8 @@ it: mutual: Reciproco primary: Principale relationship: Relazione - remove_selected_domains: Rimuovi tutti i seguaci dai domini selezionati - remove_selected_followers: Rimuovi i seguaci selezionati + remove_selected_domains: Rimuovi tutti i follower dai domini selezionati + remove_selected_followers: Rimuovi i follower selezionati remove_selected_follows: Smetti di seguire gli utenti selezionati status: Stato dell'account remote_follow: @@ -1708,7 +1708,7 @@ it: notifications: Notifiche e-mail preferences: Preferenze profile: Profilo - relationships: Follows e followers + relationships: Seguiti e follower severed_relationships: Relazioni interrotte statuses_cleanup: Cancellazione automatica dei post strikes: Sanzioni di moderazione @@ -1720,9 +1720,9 @@ it: account_suspension: Sospensione dell'account (%{target_name}) domain_block: Sospensione del server (%{target_name}) user_domain_block: Hai bloccato %{target_name} - lost_followers: Seguaci persi + lost_followers: Follower persi lost_follows: Account seguiti persi - preamble: Potresti perdere account seguiti e seguaci quando blocchi un dominio o quando i tuoi moderatori decidono di sospendere un server remoto. Quando ciò accadrà, potrai scaricare liste di relazioni interrotte, da consultare ed eventualmente importare su un altro server. + preamble: Potresti perdere account seguiti e follower quando blocchi un dominio o quando i tuoi moderatori decidono di sospendere un server remoto. Quando ciò accadrà, potrai scaricare liste di relazioni interrotte, da consultare ed eventualmente importare su un altro server. purged: Le informazioni su questo server sono state eliminate dagli amministratori del tuo server. type: Evento statuses: @@ -1755,8 +1755,8 @@ it: title: '%{name}: "%{quote}"' visibilities: direct: Diretto - private: Mostra solo ai tuoi seguaci - private_long: Mostra solo ai seguaci + private: Solo i follower + private_long: Mostra solo ai follower public: Pubblico public_long: Tutti lo possono vedere unlisted: Pubblico, ma non visibile sulla timeline pubblica diff --git a/config/locales/kab.yml b/config/locales/kab.yml index 97ed8ec17b..933e5e77a7 100644 --- a/config/locales/kab.yml +++ b/config/locales/kab.yml @@ -23,6 +23,7 @@ kab: account_moderation_notes: create: Eǧǧ tazmilt accounts: + add_email_domain_block: Sewḥel taɣult n yimayl approve: Qbel are_you_sure: Tetḥeqqeḍ? avatar: Tugna n umaɣnu @@ -241,6 +242,8 @@ kab: software: Aseɣẓan space: Tallunt yettwasqedcen title: Tafelwit + top_languages: Tutlayin turmidin timezwura + top_servers: Iqeddacen urmiden imezwura website: Asmel domain_allows: add_new: Timerna n taɣult ɣer tabdert tamellalt @@ -376,6 +379,7 @@ kab: resolved: Fran status: Addad title: Ineqqisen + unknown_action_msg: 'Tigawt tarussint: %{action}' unresolved: Ur yefra ara updated_at: Yettwaleqqem view_profile: Wali amaɣnu @@ -428,6 +432,7 @@ kab: delete: Kkes afaylu yulin software_updates: documentation_link: Issin ugar + title: Llan ileqman type: Anaw version: Lqem statuses: @@ -440,6 +445,7 @@ kab: language: Tutlayt media: title: Amidya + metadata: Iɣefisefka open: Ldi tasuffeɣt title: Tisuffaɣ n umiḍan trending: Inezzaɣ @@ -471,6 +477,7 @@ kab: allow: Sireg aseɣwen title: Iseɣwan inezzaɣ statuses: + allow_account: Sireg ameskar title: Tisuffaɣ tinezzaɣ tags: dashboard: @@ -483,6 +490,7 @@ kab: delete: Kkes webhooks: delete: Kkes + disable: Kkes armad enable: Rmed enabled: D urmid admin_mailer: @@ -505,7 +513,9 @@ kab: guide_link_text: Yal yiwen·t y·tezmer a ttekki. sensitive_content: Agbur amḥulfu application_mailer: + notification_preferences: Snifel imenyafen n imayl salutation: "%{name}," + settings: 'Snifel imenyafen n imayl: %{link}' view: 'Ẓaṛ:' view_profile: Ssken-d amaɣnu view_status: Ssken-d tasuffiɣt @@ -640,6 +650,7 @@ kab: filters: contexts: account: Imeɣna + home: Agejdan akked tebdarin notifications: Ilɣa thread: Idiwenniyen edit: @@ -679,6 +690,9 @@ kab: modes: merge: Smezdi overwrite: Semselsi + states: + finished: Immed + status: Addad types: blocking: Tabdart n yimiḍanen iweḥlen bookmarks: Ticraḍ @@ -779,6 +793,8 @@ kab: status: Addad n umiḍan rss: content_warning: 'Alɣu n ugbur :' + self_destruct: + title: Aqeddac-a ad yemdel sessions: activity: Armud aneggaru browser: Iminig @@ -817,6 +833,7 @@ kab: kai_os: KaiOS linux: Linux mac: macOS + unknown_platform: Tiɣeṛɣeṛt tarussint windows: Windows windows_mobile: Windows Mobile windows_phone: Tiliɣri Windows Phone @@ -855,6 +872,7 @@ kab: video: one: "%{count} n tbidyutt" other: "%{count} n tbidyutin" + default_language: Kif kif am tutlayt n wegrudem edited_at_html: Tettwaẓreg ass n %{date} pin_errors: reblog: Azuzer ur yezmir ara ad yili d unṭiḍ diff --git a/config/locales/ko.yml b/config/locales/ko.yml index ffce8b6e66..471bb4b274 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -599,7 +599,7 @@ ko: add_to_report: 신고에 더 추가하기 already_suspended_badges: local: 이 서버에서 이미 정지되었습니다 - remote: 저 서버에서 이미 정지되었습니다 + remote: 이미 해당 서버에서 정지함 are_you_sure: 확실합니까? assign_to_self: 나에게 할당하기 assigned: 할당된 중재자 @@ -1043,7 +1043,7 @@ ko: remove: 별칭 연결 끊기 appearance: advanced_web_interface: 고급 웹 인터페이스 - advanced_web_interface_hint: '화면의 가로폭을 가득 채우고 싶다면, 고급 웹 인터페이스는 한 번에 여러 정보를 볼 수 있도록 여러 컬럼을 설정할 수 있도록 합니다: 홈, 알림, 연합타임라인, 리스트, 해시태그 등' + advanced_web_interface_hint: '화면의 가로폭을 가득 채우고 싶다면, 고급 웹 인터페이스는 한 번에 여러 정보를 볼 수 있도록 여러 칼럼을 설정할 수 있도록 합니다: 홈, 알림, 연합타임라인, 리스트, 해시태그 등' animations_and_accessibility: 애니메이션과 접근성 confirmation_dialogs: 확인 대화상자 discovery: 발견하기 @@ -1579,7 +1579,7 @@ ko: unrecognized_emoji: 인식 되지 않은 에모지입니다 redirects: prompt: 이 링크를 믿을 수 있다면, 클릭해서 계속하세요. - title: "%{instance}를 떠나려고 합니다." + title: "%{instance}을(를) 떠나려고 합니다." relationships: activity: 계정 활동 confirm_follow_selected_followers: 정말로 선택된 팔로워들을 팔로우하시겠습니까? @@ -1624,7 +1624,7 @@ ko: browsers: alipay: 알리페이 blackberry: 블랙베리 - chrome: 크롬 + chrome: Chrome edge: 마이크로소프트 엣지 electron: 일렉트론 firefox: 파이어폭스 @@ -1818,7 +1818,7 @@ ko: backup_ready: explanation: 마스토돈 계정에 대한 전체 백업을 요청했습니다 extra: 다운로드 할 준비가 되었습니다! - subject: 아카이브를 다운로드할 수 있습니다 + subject: 다운로드할 아카이의 준비를 마침 title: 아카이브 테이크아웃 failed_2fa: details: '로그인 시도에 대한 상세 정보입니다:' diff --git a/config/locales/lad.yml b/config/locales/lad.yml index 190ba483b5..28ddef54e7 100644 --- a/config/locales/lad.yml +++ b/config/locales/lad.yml @@ -663,6 +663,7 @@ lad: delete_data_html: Efasa el profil i kontenido de @%{acct} en 30 dias si no sea desuspendido en akel tiempo preview_preamble_html: "@%{acct} resivira una avertensya komo esta:" record_strike_html: Enrejistra un amonestamiento kontra @%{acct} para ke te ayude eskalar las violasyones de reglas de este kuento en el avenir + send_email_html: Embia un mesaj de avertensia a la posta elektronika de @%{acct} warning_placeholder: Adisionalas, opsionalas razones la aksyon de moderasyon. target_origin: Orijin del kuento raportado title: Raportos @@ -1149,6 +1150,7 @@ lad: example_title: Teksto de enshemplo more_from_html: Mas de %{name} s_blog: Blog de %{name} + title: Atribusyon del otor challenge: confirm: Kontinua hint_html: "Konsejo: No retornaremos a demandarte por el kod durante la sigiente ora." @@ -1683,6 +1685,7 @@ lad: preferences: Preferensyas profile: Profil publiko relationships: Segidos i suivantes + severed_relationships: Relasyones kortadas statuses_cleanup: Efasasyon otomatika de publikasyones strikes: Amonestamientos de moderasyon two_factor_authentication: Autentifikasyon en dos pasos @@ -1690,6 +1693,8 @@ lad: severed_relationships: download: Abasha (%{count}) event_type: + account_suspension: Suspensyon de kuento (%{target_name}) + domain_block: Suspensyon de sirvidor (%{target_name}) user_domain_block: Blokates a %{target_name} lost_followers: Suivantes pedridos lost_follows: Segimyentos pedridos diff --git a/config/locales/lt.yml b/config/locales/lt.yml index 5a8c980d6a..05d257f28b 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -1,7 +1,7 @@ --- lt: about: - about_mastodon_html: 'Ateities socialinis tinklas: jokių reklamų ir įmonių sekimo, etiškas dizainas bei decentralizacija! Turėkite savo duomenis su „Mastodon“.' + about_mastodon_html: 'Ateities socialinis tinklas: jokių reklamų ir įmonių sekimo, etiškas dizainas bei decentralizacija! Turėkite savo duomenis su „Mastodon“!' contact_missing: Nenustatyta contact_unavailable: Nėra hosted_on: "„Mastodon“ talpinamas domene %{domain}" @@ -25,6 +25,7 @@ lt: one: Įrašas other: Įrašų posts_tab_heading: Įrašai + self_follow_error: Neleidžiama sekti savo pačių paskyros admin: account_actions: action: Atlikti veiksmą @@ -36,8 +37,9 @@ lt: created_msg: Prižiūrėjimo pastaba sėkmingai sukurta! destroyed_msg: Prižiūrėjimo pastaba sėkmingai sunaikinta! accounts: + add_email_domain_block: Blokuoti el. pašto domeną approve: Patvirtinti - approved_msg: Sėkmingai patvirtinta %{username} registracijos paraiška. + approved_msg: Sėkmingai patvirtinta %{username} registracijos paraiška are_you_sure: Ar esi įsitikinęs (-usi)? avatar: Avataras by_domain: Domenas @@ -47,13 +49,13 @@ lt: label: Keisti el. paštą new_email: Naujas el. paštas submit: Keisti el. paštą - title: Keisti el. paštą %{username} + title: Keisti el. paštą vartotjui %{username} change_role: changed_msg: Vaidmuo sėkmingai pakeistas. edit_roles: Tvarkyti naudotojų vaidmenis label: Keisti vaidmenį no_role: Jokios vaidmenį - title: Keisti vaidmenį %{username} + title: Keisti teises vartotojui %{username} confirm: Patvirtinti confirmed: Patvirtinta confirming: Patvirtinama @@ -61,8 +63,9 @@ lt: delete: Ištrinti duomenis deleted: Ištrinta demote: Pažeminti - destroyed_msg: "%{username} duomenys dabar laukia eilėje, kad būtų netrukus ištrinti." + destroyed_msg: "%{username} duomenys dabar laukia eilėje, kad būtų netrukus ištrinti" disable: Sustabdyti + disable_sign_in_token_auth: Išjungti el. pašto prieigos rakto tapatybės nustatymą disable_two_factor_authentication: Išjungti 2FA disabled: Pristabdyta display_name: Rodomas vardas @@ -71,8 +74,9 @@ lt: email: El. paštas email_status: El. pašto būsena enable: Panaikinti sustabdymą + enable_sign_in_token_auth: Įjungti el. pašto prieigos rakto tapatybės nustatymą enabled: Įjungta - enabled_msg: Sėkmingai panaikintas %{username} paskyros sustabdymas. + enabled_msg: Sėkmingai %{username} paskyros sustabdymas panaikintas followers: Sekėjai follows: Seka header: Antraštė @@ -90,7 +94,7 @@ lt: media_attachments: Medijos priedai memorialize: Paversti į memorialinį memorialized: Memorializuota - memorialized_msg: Sėkmingai paversta %{username} į memorialinę paskyrą. + memorialized_msg: Sėkmingai %{username} paskyra paversta į memorialinę moderation: active: Aktyvus all: Visi @@ -119,15 +123,15 @@ lt: public: Viešas push_subscription_expires: PuSH prenumerata baigiasi redownload: Atnaujinti profilį - redownloaded_msg: Sėkmingai atnaujintas %{username} profilis iš kilmės šaltinio. + redownloaded_msg: Sėkmingai atnaujintas %{username} profilis iš pradinio šaltinio reject: Atmesti - rejected_msg: Sėkmingai atmesta %{username} registracijos paraiška. + rejected_msg: Sėkmingai atmesta %{username} registracijos paraiška remote_suspension_irreversible: Šios paskyros duomenys negrįžtamai ištrinti. remote_suspension_reversible_hint_html: Paskyra jų serveryje buvo pristabdyta, o duomenys bus visiškai pašalinti %{date}. Iki to laiko nuotolinis serveris gali atkurti šią paskyrą be jokių neigiamų pasekmių. Jei nori iš karto pašalinti visus paskyros duomenis, gali tai padaryti toliau. remove_avatar: Pašalinti avatarą remove_header: Pašalinti antraštę - removed_avatar_msg: Sėkmingai pašalintas %{username} avataro vaizdas. - removed_header_msg: Sėkmingai pašalintas %{username} antraštės vaizdas. + removed_avatar_msg: Sėkmingai pašalintas %{username} avataro vaizdas + removed_header_msg: Sėkmingai pašalintas %{username} antraštės paveikslėlis resend_confirmation: already_confirmed: Šis naudotojas jau patvirtintas. send: Iš naujo siųsti patvirtinimo nuorodą @@ -137,13 +141,14 @@ lt: resubscribe: Prenumeruoti iš naujo role: Vaidmuo search: Ieškoti + search_same_email_domain: Kiti naudotojai su tuo pačiu el. pašto domenu search_same_ip: Kiti naudotojai su tuo pačiu IP security: Saugumas security_measures: only_password: Tik slaptažodis password_and_2fa: Slaptažodis ir 2FA - sensitive: Priversti žymėti kaip jautrią - sensitized: Pažymėta kaip jautri + sensitive: Priversti žymėti kaip su jautria informacija + sensitized: Pažymėti kaip jautrią informaciją shared_inbox_url: Bendras gautiejų URL show: created_reports: Sukurtos ataskaitos @@ -161,7 +166,7 @@ lt: unblock_email: Atblokuoti el. pašto adresą unblocked_email_msg: Sėkmingai atblokuotas %{username} el. pašto adresas. unconfirmed_email: Nepatvirtintas el. pašto adresas. - undo_sensitized: Atšaukti privertimą žymėti kaip jautrią + undo_sensitized: Atšaukti privertimą žymėti kaip jautrią informaciją undo_silenced: Atšaukti ribojimą undo_suspension: Atšaukti pristabdymą unsilenced_msg: Sėkmingai atšauktas %{username} paskyros ribojimas. @@ -177,21 +182,26 @@ lt: approve_appeal: Patvirtinti apeliaciją approve_user: Patvirtinti naudotoją assigned_to_self_report: Priskirti ataskaitą + change_email_user: Keisti el. paštą vartotjui change_role_user: Keisti naudotojo vaidmenį confirm_user: Patvirtinti naudotoją create_account_warning: Kurti įspėjimą create_announcement: Kurti skelbimą + create_canonical_email_block: Sukurti el. pašto blokavimą create_custom_emoji: Kurti pasirinktinį jaustuką create_domain_allow: Kurti domeno leidimą create_domain_block: Kurti domeno bloką + create_email_domain_block: Sukurti el. pašto domeno blokavimą create_ip_block: Kurti IP taisyklę create_unavailable_domain: Kurti nepasiekiamą domeną create_user_role: Kurti vaidmenį demote_user: Pažeminti naudotoją destroy_announcement: Ištrinti skelbimą + destroy_canonical_email_block: Ištrinti el. pašto blokavimą destroy_custom_emoji: Ištrinti pasirinktinį jaustuką destroy_domain_allow: Ištrinti domeno leidimą destroy_domain_block: Ištrinti domeno bloką + destroy_email_domain_block: Ištrinti el. pašto domeno blokavimą destroy_instance: Išvalyti domeną destroy_ip_block: Ištrinti IP taisyklę destroy_status: Ištrinti įrašą @@ -199,6 +209,7 @@ lt: destroy_user_role: Sunaikinti vaidmenį disable_2fa_user: Išjungti 2FA disable_custom_emoji: Išjungti pasirinktinį jaustuką + disable_sign_in_token_auth_user: Išjungti el. pašto prieigos rakto tapatybės nustatymą naudotojui disable_user: Išjungti naudotoją enable_custom_emoji: Įjungti pasirinktinį jaustuką enable_user: Įjungti naudotoją @@ -211,12 +222,12 @@ lt: resend_user: Iš naujo siųsti patvirtinimo laišką reset_password_user: Nustatyti iš naujo slaptažodį resolve_report: Išspręsti ataskaitą - sensitive_account: Priversti žymėti kaip jautrią paskyrai + sensitive_account: Nustatyti kaip jautrios informacijos paskyrą silence_account: Riboti paskyrą suspend_account: Pristabdyti paskyrą unassigned_report: Panaikinti priskyrimą ataskaitą unblock_email_account: Atblokuoti el. pašto adresą - unsensitive_account: Atšaukti privertimą žymėti kaip jautrią paskyrai + unsensitive_account: Atšaukti privertimą žymėti kaip jautrios informacijos paskyrą unsilence_account: Atšaukti riboti paskyrą unsuspend_account: Atšaukti paskyros pristabdymą update_announcement: Atnaujinti skelbimą @@ -437,8 +448,13 @@ lt: title: Importuoti domeno blokavimus no_file: Nėra pasirinkto failo follow_recommendations: + description_html: "Rekomendacijos padeda naujiems vartotojams greitai rasti įdomų turinį. Kai vartotojas nėra pakankamai bendravęs su kitais, kad būtų galima suformuoti asmeninį turinį, vietoj to rekomenduojami šios paskyros. Jos perskaičiuojamos kasdien, remiantis kas pastaruoju metu sulaukė didžiausio susidomėjimo ir turi daugiausiai vietinių sekėjų tam tikra kalba." language: Kalbui status: Būsena + suppress: Slėpti rekomendacijas + suppressed: Paslėpta + title: Sekti rekomendacijas + unsuppress: Atkurti rekomendaciją instances: audit_log: title: Naujausi audito žurnalai @@ -479,6 +495,8 @@ lt: expired: Nebegaliojantis title: Filtras title: Kvietimai + ip_blocks: + delete: Ištrinti relays: add_new: Pridėti naują pamainą delete: Ištrinti @@ -541,9 +559,10 @@ lt: invite_users_description: Leidžia naudotojams pakviesti naujus žmones į serverį. manage_invites: Tvarkyti kvietimus manage_invites_description: Leidžia naudotojams naršyti ir deaktyvuoti kvietimų nuorodas. - manage_taxonomies_description: Leidžia naudotojams peržiūrėti tendencingą turinį ir atnaujinti saitažodžių nustatymus + manage_taxonomies_description: Leidžia naudotojams peržiūrėti tendencingą turinį ir atnaujinti grotažymių nustatymus settings: branding: + preamble: Jūsų serverio pavadinimas išskiria jį iš kitų tinklo serverių. Ši informacija gali būti rodoma įvairiose aplinkose, pavyzdžiui, „Mastodon“ žiniatinklio sąsajoje, programėlėse, nuorodų peržiūrose kitose svetainėse, žinučių programėlėse ir pan. Dėl to geriausia, kad ši informacija būtų aiški, trumpa ir glausta. title: Firminio ženklo kūrimas captcha_enabled: desc_html: Tai priklauso nuo hCaptcha išorinių skriptų, kurie gali kelti susirūpinimą dėl saugumo ir privatumo. Be to, dėl to registracijos procesas kai kuriems žmonėms (ypač neįgaliesiems) gali būti gerokai sunkiau prieinami. Dėl šių priežasčių apsvarstyk alternatyvias priemones, pavyzdžiui, patvirtinimu arba kvietimu grindžiamą registraciją. @@ -629,7 +648,8 @@ lt: open: Peržiūrėti viešai reset: Atkurti search: Paieška - title: Saitažodžiai + title: Grotažymė + updated_msg: Grotažymės nustatymai sėkmingai atnaujinti title: Administracija trends: allow: Leisti @@ -686,9 +706,10 @@ lt: tag_servers_dimension: Populiariausi serveriai tag_servers_measure: skirtingi serveriai tag_uses_measure: bendri naudojimai + description_html: Tai yra grotažymės, kurios šiuo metu dažnai pasirodo daugelyje jūsų serverio matomų įrašų. Tai gali padėti jūsų vartotojams sužinoti, apie ką žmonės šiuo metu kalba daugiausiai. Grotažymės nėra rodomos viešai, kol jūs jų nepatvirtinate. listable: Gali būti siūloma not_trendable: Nepasirodys tendencijose - title: Tendencingos saitažodžiai + title: Populiarios grotažymės trendable: Gali pasirodyti tendencijose trending_rank: 'Tendencinga #%{rank}' title: Rekomendacijos ir tendencijos @@ -727,11 +748,11 @@ lt: new_trending_statuses: title: Tendencingi įrašai new_trending_tags: - title: Tendencingos saitažodžiai + title: Populiarios grotažymės subject: Naujos tendencijos peržiūrimos %{instance} appearance: advanced_web_interface: Išplėstinė žiniatinklio sąsaja - advanced_web_interface_hint: 'Jei nori išnaudoti visą ekrano plotį, išplėstinė žiniatinklio sąsaja leidžia sukonfigūruoti daug skirtingų stulpelių, kad vienu metu matytum tiek informacijos, kiek tik nori: Pagrindinis, pranešimai, federacinė laiko skalė, bet kokie sąrašai ir saitažodžiai.' + advanced_web_interface_hint: 'Jei nori išnaudoti visą ekrano plotį, išplėstinė žiniatinklio sąsaja leidžia sukonfigūruoti daug skirtingų stulpelių, kad vienu metu matytum tiek informacijos, kiek tik nori: Pagrindinis, pranešimai, federacinė laiko skalė, bet kokie sąrašai ir grotažymės.' animations_and_accessibility: Animacijos ir pritaikymas neįgaliesiems confirmation_dialogs: Patvirtinimo dialogai discovery: Atradimas @@ -805,6 +826,7 @@ lt: security: Apsauga set_new_password: Nustatyti naują slaptažodį setup: + email_below_hint_html: Patikrinkite savo šlamšto aplanką arba paprašykite naujo el. laiško. Jei el. pašto adresas neteisingas, galite jį pataisyti. email_settings_hint_html: Spustelėkite nuorodą, kurią atsiuntėme, kad patvirtintumėte %{email}. Lauksime čia. link_not_received: Negavai nuorodos? title: Patikrinti pašto dėžutę @@ -857,7 +879,9 @@ lt: your_appeal_pending: Pateikei apeliaciją your_appeal_rejected: Tavo apeliacija buvo atmesta edit_profile: + basic_information: Pagrindinė informacija hint_html: "Tinkink tai, ką žmonės mato tavo viešame profilyje ir šalia įrašų. Kiti žmonės labiau linkę sekti atgal ir bendrauti su tavimi, jei tavo profilis yra užpildytas ir turi profilio nuotrauką." + other: Kita errors: '403': Jūs neturie prieigos matyti šiam puslapiui. '404': Puslapis nerastas. @@ -887,7 +911,7 @@ lt: storage: Medijos saugykla featured_tags: add_new: Pridėti naują - hint_html: "Savo profilyje parodyk svarbiausius saitažodžius. Tai puikus įrankis kūrybiniams darbams ir ilgalaikiams projektams sekti, todėl svarbiausios saitažodžiai rodomi matomoje vietoje profilyje ir leidžia greitai pasiekti tavo paties įrašus." + hint_html: "Savo profilyje parodyk svarbiausias grotažymes. Tai puikus įrankis kūrybiniams darbams ir ilgalaikiams projektams sekti, todėl svarbiausios grotažymės rodomos matomoje vietoje profilyje ir leidžia greitai pasiekti tavo paties įrašus." filters: contexts: account: Profiliai @@ -912,7 +936,7 @@ lt: changes_saved_msg: Pakeitimai sėkmingai išsaugoti! copy: Kopijuoti delete: Ištrinti - deselect: Panaikinti visus žymėjimus + deselect: Atžymėti visus order_by: Tvarkyti pagal save_changes: Išsaugoti pakeitimus today: šiandien @@ -938,7 +962,7 @@ lt: following_html: Ketinate sekti iki %{total_items} paskyrų%{filename}. lists_html: Ketinate įtraukti iki %{total_items} paskyrų%{filename} į savo sąrašus. Nauji sąrašai bus sukurti, jei nėra sąrašo, į kurį būtų galima įtraukti. muting_html: Ketinate nutildyti iki %{total_items} paskyrų%{filename}. - preface: Gali importuoti duomenis, kuriuos eksportavai iš kito serverio, pavyzdžiui, sekamų arba blokuojamų žmonių sąrašą. + preface: Galite importuoti duomenis, kuriuos eksportavote iš kito serverio kaip sekamų arba blokuojamų žmonių sąrašą. success: Jūsų informacija sėkmingai įkelta ir bus apdorota kaip įmanoma greičiau types: blocking: Blokuojamų sąrašas @@ -980,6 +1004,9 @@ lt: title: Tapatybės nustatymo istorija mail_subscriptions: unsubscribe: + emails: + notification_emails: + reblog: dalintis pranešimų el. pašto laiškais success_html: Daugiau negausi %{type} „Mastodon“ domene %{domain} į savo el. paštą %{email}. media_attachments: validations: @@ -1013,9 +1040,9 @@ lt: subject: Tave paminėjo %{name} title: Naujas paminėjimas reblog: - body: 'Tavo įrašą pakėlė %{name}:' - subject: "%{name} pakėlė tavo įrašą" - title: Naujas pakėlimas + body: 'Tavo įrašą dalinosi %{name}:' + subject: "%{name} dalinosi tavo įrašu" + title: Naujas dalinimasis notifications: administration_emails: Administratoriaus el. laiško pranešimai email_events: Įvykiai, skirti el. laiško pranešimams @@ -1070,6 +1097,9 @@ lt: status: Paskyros būsena remote_follow: missing_resource: Jūsų paskyros nukreipimo URL nerasta + rss: + descriptions: + tag: 'Vieši įrašai su grotažymėmis #%{hashtag}' scheduled_statuses: over_daily_limit: Jūs pasieketė limitą (%{limit}) galimų toot'ų per dieną over_total_limit: Jūs pasieketė %{limit} limitą galimų toot'ų @@ -1113,7 +1143,7 @@ lt: development: Kūrimas edit_profile: Redaguoti profilį export: Eksportuoti - featured_tags: Rodomi saitažodžiai + featured_tags: Išskirtos grotažymės import: Importuoti import_and_export: Importas ir eksportas migrate: Paskyros migracija @@ -1141,13 +1171,14 @@ lt: many: "%{count} vaizdo" one: "%{count} vaizdas" other: "%{count} vaizdų" - boosted_from_html: Pakelta iš %{acct_link} + boosted_from_html: Dalintasi iš %{acct_link} content_warning: 'Turinio įspėjimas: %{warning}' over_character_limit: pasiektas %{max} simbolių limitas pin_errors: limit: Jūs jau prisegėte maksimalų toot'ų skaičų ownership: Kitų vartotojų toot'ai negali būti prisegti - reblog: Pakeltos žinutės negali būti prisegtos + reblog: Žinutės, kuriomis pasidalinta, negali būti papildomai prisegtos + title: '%{name}: "%{quote}"' visibilities: direct: Tiesiogiai private: Tik sekėjams @@ -1158,18 +1189,21 @@ lt: unlisted_long: matyti gali visi, bet nėra įtraukti į viešąsias laiko skales statuses_cleanup: enabled_hint: Automatiškai ištrina įrašus, kai jie pasiekia nustatytą amžiaus ribą, nebent jie atitinka vieną iš toliau nurodytų išimčių + ignore_reblogs: Ignoruoti pasidalinimus interaction_exceptions_explanation: Atkreipk dėmesį, kad negarantuojama, jog įrašai nebus ištrinti, jei jų mėgstamumo ar pasidalinimo riba bus žemesnė, nors vieną kartą ji jau buvo viršyta. keep_polls_hint: Neištrina jokių tavo apklausų - keep_self_bookmark: Laikyti įrašus, kuriuos pažymėjai + keep_self_bookmark: Laikyti įrašus, kuriuos pažymėjai su žyma keep_self_bookmark_hint: Neištrina tavo pačių įrašų, jei esi juos pažymėjęs (-usi) keep_self_fav_hint: Neištrina tavo pačių įrašų, jei esi juos pamėgęs (-usi) min_age_label: Amžiaus riba + min_reblogs: Pasidalintus įrašus laikyti bent + min_reblogs_hint: Neištrina jokių jūsų įrašų, kuriais buvo dalintasi bent tiek kartų. Palikite tuščią laukelį, jei norite ištrinti pasidalitus įrašus, nepriklausomai nuo jų paskelbimų skaičiaus stream_entries: sensitive_content: Jautrus turinys themes: contrast: Mastodon (didelis kontrastas) - default: Mastodon (tamsi) - mastodon-light: Mastodon (šviesi) + default: Mastodon (Tamsus) + mastodon-light: Mastodon (Šviesus) system: Automatinis (naudoti sistemos temą) two_factor_authentication: add: Pridėti @@ -1243,8 +1277,8 @@ lt: follows_title: Ką sekti follows_view_more: Peržiūrėti daugiau sekamų žmonių hashtags_subtitle: Naršyk, kas tendencinga per pastarąsias 2 dienas - hashtags_title: Tendencingos saitažodžiai - hashtags_view_more: Peržiūrėti daugiau tendencingų saitažodžių + hashtags_title: Populiarios grotažymės + hashtags_view_more: Peržiūrėti daugiau populiarių grotažymių post_action: Sukurti post_step: Sakyk labas pasauliui tekstu, nuotraukomis, vaizdo įrašais arba apklausomis. post_title: Sukūrk savo pirmąjį įrašą diff --git a/config/locales/lv.yml b/config/locales/lv.yml index 4c2fdf92bf..1028811649 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -70,7 +70,7 @@ lv: domain: Domēns edit: Labot email: E-pasts - email_status: E-pasta statuss + email_status: E-pasta stāvoklis enable: Atsaldēt enable_sign_in_token_auth: Iespējot autentificēšanos ar e-pasta pilnvaru enabled: Iespējots @@ -85,10 +85,10 @@ lv: joined: Pievienojies location: all: Visi - local: Vietējie - remote: Attālinātie + local: Vietēji + remote: Attāli title: Atrašanās vieta - login_status: Pieteikšanās statuss + login_status: Pieteikšanās stāvoklis media_attachments: Multivides pielikumi memorialize: Pārvērst atmiņās memorialized: Piemiņa saglabāta @@ -160,7 +160,7 @@ lv: suspension_irreversible: Šī konta dati ir neatgriezeniski izdzēsti. Tu vari atcelt konta darbības apturēšanu, lai tas būtu izmantojams, taču tas neatjaunos iepriekšējos datus. suspension_reversible_hint_html: Konta darbība ir apturēta, un dati tiks pilnībā noņemti %{date}. Līdz tam kontu var atjaunot bez jebkādām nelabvēlīgām sekām. Ja vēlies nekavējoties noņemt visus konta datus, to vari izdarīt zemāk. title: Konti - unblock_email: Atbloķēt e-pasta adresi + unblock_email: Atcelt e-pasta adreses liegumu unblocked_email_msg: "%{username} e-pasta adreses liegšana sekmīgi atcelta" unconfirmed_email: Neapstiprināts e-pasts undo_sensitized: Atcelt uzspiestu atzīmēšanu kā jūtīgu @@ -224,7 +224,7 @@ lv: silence_account: Ierobežot Kontu suspend_account: Apturēt Kontu unassigned_report: Atcelt Pārskata Piešķiršanu - unblock_email_account: Atbloķēt e-pasta adresi + unblock_email_account: Atcelt e-pasta adreses liegumu unsensitive_account: Atsaukt uzspiestu konta atzīmēšanu kā jūtīgu unsilence_account: Atcelt Konta Ierobežošanu unsuspend_account: Atcelt konta apturēšanu @@ -247,7 +247,7 @@ lv: create_canonical_email_block_html: "%{name} liedza e-pasta adresi ar jaucējkodu %{target}" create_custom_emoji_html: "%{name} augšupielādēja jaunu emocijzīmi %{target}" create_domain_allow_html: "%{name} atļāva federāciju ar domēnu %{target}" - create_domain_block_html: "%{name} bloķēja domēnu %{target}" + create_domain_block_html: "%{name} liedza domēnu %{target}" create_email_domain_block_html: "%{name} liedza e-pasta domēnu %{target}" create_ip_block_html: "%{name} izveidoja nosacījumu priekš IP %{target}" create_unavailable_domain_html: "%{name} apturēja piegādi uz domēnu %{target}" @@ -257,7 +257,7 @@ lv: destroy_canonical_email_block_html: "%{name} atcēla e-pasta adreses liegumu ar jaucējvērtību %{target}" destroy_custom_emoji_html: "%{name} izdzēsa emocijzīmi %{target}" destroy_domain_allow_html: "%{name} neatļāva federāciju ar domēnu %{target}" - destroy_domain_block_html: "%{name} atbloķēja domēnu %{target}" + destroy_domain_block_html: "%{name} atcēla domēna %{target} liegšanu" destroy_email_domain_block_html: "%{name} atcēla e-pasta domēna %{target} liegumu" destroy_instance_html: "%{name} attīrija domēnu %{target}" destroy_ip_block_html: "%{name} izdzēsa nosacījumu priekš IP %{target}" @@ -282,7 +282,7 @@ lv: silence_account_html: "%{name} ierobežoja %{target} kontu" suspend_account_html: "%{name} apturēja %{target} kontu" unassigned_report_html: "%{name} nepiešķīra ziņojumu %{target}" - unblock_email_account_html: "%{name} atbloķēja %{target} e-pasta adresi" + unblock_email_account_html: "%{name} atcēla %{target} e-pasta adreses liegšanu" unsensitive_account_html: "%{name} atcēla %{target} informācijas nesēja atzīmēšanu kā jūtīgu" unsilence_account_html: "%{name} atcēla ierobežojumu %{target} kontam" unsuspend_account_html: "%{name} neapturēja %{target} kontu" @@ -401,12 +401,12 @@ lv: preamble_html: Tu gatavojies apturēt domēna %{domain} un tā apakšdomēnu darbību. remove_all_data: Tādējādi no tava servera tiks noņemts viss šī domēna kontu saturs, multivide un profila dati. stop_communication: Tavs serveris pārtrauks sazināties ar šiem serveriem. - title: Apstiprināt domēna %{domain} bloķēšanu + title: Apstiprināt domēna %{domain} liegšanu undo_relationships: Tādējādi tiks atsauktas jebkuras sekošanas attiecības starp šo un tavu serveru kontiem. - created_msg: Domēna bloķēšana tagad tiek apstrādāta - destroyed_msg: Domēna bloķēšana ir atsaukta + created_msg: Domēna liegšana tagad tiek apstrādāta + destroyed_msg: Domēna liegšana tika atsaukta domain: Domēns - edit: Labot domēna aizturēšanu + edit: Labot domēna liegšanu existing_domain_block: Tu jau esi noteicis stingrākus ierobežojumus %{name}. existing_domain_block_html: Tu jau esi noteicis stingrākus ierobežojumus %{name}, vispirms tev jāatbloķē. export: Eksportēt @@ -454,8 +454,8 @@ lv: no_email_domain_block_selected: Neviens e-pasta domēna bloks netika mainīts, jo neviens netika atlasīts not_permitted: Nav atļauta resolved_dns_records_hint_html: Domēna vārds saistās ar zemāk norādītajiem MX domēniem, kuri beigās ir atbildīgi par e-pasta pieņemšana. MX domēna liegšana liegs reģistrēšanos no jebkuras e-pasta adreses, kas izmanto to pašu MX domēnu, pat ja redzamais domēna vārds ir atšķirīgs. Jāuzmanās, lai neliegtu galvenos e-pasta pakalpojuma sniedzējus. - resolved_through_html: Atrisināts, izmantojot %{domain} - title: Bloķētie e-pasta domēni + resolved_through_html: Atrisināts no %{domain} + title: Liegtie e-pasta domēni export_domain_allows: new: title: Importēt domēnu atļaujas @@ -474,7 +474,7 @@ lv: follow_recommendations: description_html: "Sekošanas ieteikumi palīdz jauniem lietotājiem ātri arast saistošu saturu. Kad lietotājs nav pietiekami mijiedarbojies ar citiem, lai veidotos pielāgoti sekošanas iteikumi, tiek ieteikti šie konti. Tie tiek pārskaitļoti ik dienas, izmantojot kontu, kuriem ir augstākās nesenās iesaistīšanās un lielākais vietējo sekotāju skaits norādītajā valodā." language: Valodai - status: Statuss + status: Stāvoklis suppress: Apspiest sekošanas rekomendāciju suppressed: Apspiestie title: Sekošanas ieteikumi @@ -575,8 +575,8 @@ lv: '94670856': 3 gadi new: title: Izveidot jaunu IP noteikumu - no_ip_block_selected: Neviens IP noteikums netika mainīts, jo netika atlasīts - title: IP noteikumi + no_ip_block_selected: Neviena IP kārtula netika mainīta, jo neviena netika atlasīta + title: IP kārtulas relationships: title: "%{acct} attiecības" relays: @@ -593,7 +593,7 @@ lv: save_and_enable: Saglabāt un iespējot setup: Iestatīt releja savienojumu signatures_not_enabled: Releji nedarbosies pareizi, kamēr ir iespējots drošais režīms vai ierobežotas federācijas režīms - status: Statuss + status: Stāvoklis title: Releji report_notes: created_msg: Ziņojuma piezīme sekmīgi izveidota. @@ -657,35 +657,35 @@ lv: reported_account: Ziņotais konts reported_by: Ziņoja reported_with_application: Ziņots no lietotnes - resolved: Atrisināts + resolved: Atrisināti resolved_msg: Ziņojums sekmīgi atrisināts. skip_to_actions: Pāriet uz darbībām - status: Statuss + status: Stāvoklis statuses: Ziņotais saturs statuses_description_html: Pārkāpuma saturs tiks minēts saziņā ar paziņoto kontu summary: action_preambles: - delete_html: 'Jūs gatavojaties noņemt dažas no lietotāja @%{acct} ziņām. Tas:' - mark_as_sensitive_html: 'Tu gatavojies atzīmēt dažus no lietotāja @%{acct} ierakstiem kā jūtīgus. Tas:' - silence_html: 'Jūs gatavojaties ierobežot @%{acct} kontu. Tas:' - suspend_html: 'Jūs gatavojaties apturēt @%{acct} kontu. Tas:' + delete_html: 'Tu grasies noņemt dažus no @%{acct} ierakstiem. Tas:' + mark_as_sensitive_html: 'Tu grasies atzīmēt dažus no @%{acct} ierakstiem kā jūtīgus. Tas:' + silence_html: 'Tu grasies ierobežot @%{acct} kontu. Tas:' + suspend_html: 'Tu grasies apturēt @%{acct} kontu. Tas:' actions: delete_html: Noņemt aizskarošos ierakstus mark_as_sensitive_html: Atzīmēt aizskarošo ierakstu informācijas nesējus kā jūtīgus silence_html: Ievērojami ierobežo @%{acct} sasniedzamību, padarot viņa profilu un saturu redzamu tikai cilvēkiem, kas jau seko tam vai pašrocīgi uzmeklē profilu - suspend_html: Apturēt @%{acct}, padarot viņu profilu un saturu nepieejamu un neiespējamu mijiedarbību ar + suspend_html: apturēs @%{acct} darbību, padarot profilu un saturu nepieejamu un neiespējamu mijiedarboties ar to; close_report: 'Atzīmēt ziņojumu #%{id} kā atrisinātu' - close_reports_html: Atzīmējiet visus pārskatus par @%{acct} kā atrisinātus - delete_data_html: Dzēsiet lietotāja @%{acct} profilu un saturu pēc 30 dienām, ja vien to darbība pa šo laiku netiks atcelta + close_reports_html: atzīmēs visus ziņojumus par @%{acct} kā atrisinātus; + delete_data_html: izdzēsīs lietotāja @%{acct} profilu un saturu pēc 30 dienām, ja vien tā darbība šajā laikā netiks atjaunota; preview_preamble_html: "@%{acct} saņems brīdinājumu ar šādu saturu:" - record_strike_html: Ierakstiet brīdinājumu pret @%{acct}, lai palīdzētu jums izvērst turpmākus pārkāpumus no šī konta + record_strike_html: ierakstīs brīdinājumu par @%{acct}, lai palīdzētu virzīt turpmākus šī konta pārkāpumu izskatīšanu. send_email_html: Nosūtīt @%{acct} brīdinājuma e-pasta ziņojumu warning_placeholder: Izvēles papildu pamatojums satura pārraudzības darbībai. target_origin: Konta, par kuru ziņots, izcelsme title: Ziņojumi unassign: Atsaukt unknown_action_msg: 'Nezināms konts: %{action}' - unresolved: Neatrisinātie + unresolved: Neatrisināti updated_at: Atjaunināts view_profile: Skatīt profilu roles: @@ -792,7 +792,7 @@ lv: domain_blocks: all: Visiem disabled: Nevienam - users: Vietējiem reģistrētiem lietotājiem + users: Vietējiem lietotājiem, kuri ir pieteikušies registrations: moderation_recommandation: Lūgums nodrošināt, ka Tev ir pieņemama un atsaucīga satura pārraudzības komanda, pirms padari reģistrēšanos visiem pieejamu. preamble: Kontrolē, kurš var izveidot kontu tavā serverī. @@ -865,9 +865,9 @@ lv: database_schema_check: message_html: Ir nepabeigtas datubāzes migrācijas. Lūgums palaist tās, lai nodrošinātu, ka lietotne darbojas, kā paredzēts elasticsearch_health_red: - message_html: Elasticsearch klasteris ir neveselīgs (sarkans statuss), meklēšanas līdzekļi nav pieejami + message_html: Elasticsearch kopa ir neveselīga (sarkans stāvoklis), meklēšanas līdzekļi nav pieejami elasticsearch_health_yellow: - message_html: Elasticsearch klasteris ir neveselīgs (dzeltens statuss), tu varētu vēlēties meklēt iemeslu + message_html: Elasticsearch kopa ir neveselīga (dzeltens stāvoklis), varētu būt nepieciešams izmeklēt cēloni elasticsearch_index_mismatch: message_html: Elasticsearch indeksa kartējumi ir novecojuši. Lūdzu, palaid tootctl search deploy --only=%{value} elasticsearch_preset: @@ -1025,7 +1025,7 @@ lv: new: Jauna tīmekļa aizķere rotate_secret: Pagriezt noslēpumu secret: Paraksta noslēpums - status: Statuss + status: Stāvoklis title: Tīmekļa āķi webhook: Tīmekļa āķis admin_mailer: @@ -1064,7 +1064,7 @@ lv: new_trending_statuses: title: Populārākās ziņas new_trending_tags: - title: Izplatīti tēmturi + title: Populārākie tēmturi subject: Tiek pārskatītas jaunas tendences %{instance} aliases: add_new: Izveidot aizstājvārdu @@ -1160,7 +1160,7 @@ lv: setup: email_below_hint_html: Jāpārbauda sava surogātpasta mape vai jāpieprasa vēl vienu! Savu e-pasta adresi var labot, ja tā ir nepareiza. email_settings_hint_html: Jāatver saite, kuru mēs nosūtījām, lai apliecinātu %{email}. Mēs pagaidīsim tepat. - link_not_received: Vai nesaņēmi sati? + link_not_received: Vai nesaņēmi saiti? new_confirmation_instructions_sent: Pēc dažām minūtēm saņemsi jaunu e-pasta ziņojumu ar apstiprinājuma saiti. title: Pārbaudi savu iesūtni sign_in: @@ -1171,7 +1171,7 @@ lv: preamble: Ar kontu šajā Mastodon serverī varēsi sekot jebkuram citam tīklā esošam cilvēkam neatkarīgi no tā, kur tiek mitināts tā konts. title: Atļauj tevi iestatīt %{domain}. status: - account_status: Konta statuss + account_status: Konta stāvoklis confirming: Gaida e-pasta adreses apstiprināšanas pabeigšanu. functional: Tavs konts ir pilnā darba kārtībā. pending: Tavs pieteikums ir rindā uz izskatīšanu, ko veic mūsu personāls. Tas var aizņemt kādu laiku. Tu saņemsi e-pasta ziņojumu, ja Tavs pieteikums tiks apstiprināts. @@ -1291,10 +1291,10 @@ lv: in_progress: Notiek tava arhīva apkopošana... request: Pieprasi savu arhīvu size: Izmērs - blocks: Bloķētie konti + blocks: Tu liedzi bookmarks: Grāmatzīmes csv: CSV - domain_blocks: Bloķētie domēni + domain_blocks: Liegtie domēni lists: Saraksti mutes: Apklusinātie konti storage: Multividesu krātuve @@ -1320,7 +1320,7 @@ lv: deprecated_api_multiple_keywords: Šos parametrus šajā lietojumprogrammā nevar mainīt, jo tie attiecas uz vairāk nekā vienu filtra atslēgvārdu. Izmanto jaunāku lietojumprogrammu vai tīmekļa saskarni. invalid_context: Nav, vai piegādāts nederīgs konteksts index: - contexts: Filtri %{contexts} + contexts: Atsijātāji %{contexts} delete: Dzēst empty: Tev nav filtru. expires_in: Beidzas %{distance} @@ -1337,7 +1337,7 @@ lv: one: paslēpta %{count} individuālā ziņa other: slēptas %{count} individuālās ziņas zero: "%{count} paslēptu ziņu" - title: Filtri + title: Atsijātāji new: save: Saglabāt jauno filtru title: Pievienot jaunu filtru @@ -1412,7 +1412,7 @@ lv: in_progress: Procesā scheduled: Ieplānots unconfirmed: Neapstiprināti - status: Statuss + status: Stāvoklis success: Tavi dati tika sekmīgi augšupielādēti un tiks apstrādāti noteiktajā laikā time_started: Sākuma laiks titles: @@ -1648,7 +1648,7 @@ lv: remove_selected_domains: Noņemt visus sekotājus no atlasītajiem domēniem remove_selected_followers: Noņemt atlasītos sekotājus remove_selected_follows: Pārtraukt sekošanu atlasītajiem lietotājiem - status: Konta statuss + status: Konta stāvoklis remote_follow: missing_resource: Nevarēja atrast tavam kontam nepieciešamo novirzīšanas URL reports: @@ -1719,20 +1719,20 @@ lv: appearance: Izskats authorized_apps: Pilnvarotās lietotnes back: Atgriezties Mastodon - delete: Konta dzēšana + delete: Konta izdzēšana development: Izstrāde edit_profile: Labot profilu export: Izgūt featured_tags: Piedāvātie tēmturi import: Imports - import_and_export: Imports un eksports + import_and_export: Ievietošana un izgūšana migrate: Konta migrācija notifications: E-pasta paziņojumi preferences: Iestatījumi profile: Profils relationships: Sekojamie un sekotāji severed_relationships: Pārtrauktās attiecības - statuses_cleanup: Automātiska ziņu dzēšana + statuses_cleanup: Automatizēta ierakstu izdzēšana strikes: Satura pārraudzības aizrādījumi two_factor_authentication: Divpakāpju autentifikācija webauthn_authentication: Drošības atslēgas @@ -1946,7 +1946,7 @@ lv: other: "%{people} cilvēki pēdējās 2 dienās" zero: "%{people} cilvēku pēdējās divās dienās" hashtags_subtitle: Izpēti, kas pēdējās divās dienās ir piesasitījis cilvēku uzmanību - hashtags_title: Izplatīti tēmturi + hashtags_title: Populārākie tēmturi hashtags_view_more: Skatīt vairāk izplatītu tēmturu post_action: Rakstīt post_step: Pasveicini pasauli ar tekstu, fotoattēliem, video vai aptaujām! diff --git a/config/locales/nan-TW.yml b/config/locales/nan-TW.yml new file mode 100644 index 0000000000..32ad6a8231 --- /dev/null +++ b/config/locales/nan-TW.yml @@ -0,0 +1,1756 @@ +--- +nan-TW: + about: + about_mastodon_html: 社交網路ê未來:Bô廣告、bô企業監控、設計有道德,兼非中心化!加入Mastodon,保有lí ê資料! + contact_missing: Iáu bē設定 + contact_unavailable: 無開放 + hosted_on: 佇 %{domain} 運作 ê Mastodon站 + title: 關係本站 + accounts: + followers: + other: 跟tuè ê + following: Leh跟tuè + instance_actor_flash: Tsit ê口座是虛ê,用來代表tsit臺服侍器,毋是個人用者ê。伊用來做聯邦ê路用,毋好kā伊ê權限停止。 + last_active: 頂kái活動ê時間 + link_verified_on: Tsit ê連結ê所有權佇 %{date} 受檢查 + nothing_here: Tsia內底無物件! + pin_errors: + following: Lí著tāi先跟tuè想beh推薦ê用者。 + posts: + other: PO文 + posts_tab_heading: PO文 + self_follow_error: 跟tuè家己ê口座無允准 + admin: + account_actions: + action: 執行動作 + already_silenced: Tsit ê口座有受著限制。 + already_suspended: Tsit ê口座ê權限已經hōo lâng停止。 + title: Kā %{acct} 做管理ê動作 + account_moderation_notes: + create: 留記錄 + created_msg: 管理記錄成功建立! + destroyed_msg: 管理記錄成功thâi掉! + accounts: + add_email_domain_block: 封鎖電子phue ê域名 + approve: 允准 + approved_msg: 成功審核 %{username} ê註冊申請ah + are_you_sure: Lí kám確定? + avatar: 標頭 + by_domain: 域名 + change_email: + changed_msg: Email改成功ah! + current_email: 現在ê email + label: 改email + new_email: 新ê email + submit: 改email + title: 替 %{username} 改email + change_role: + changed_msg: 角色改成功ah! + edit_roles: 管理用者ê角色 + label: 改角色 + no_role: 無角色 + title: 替 %{username} 改角色 + confirm: 確認 + confirmed: 確認ah + confirming: Teh確認 + custom: 自訂 + delete: Thâi資料 + deleted: Thâi掉ah + demote: 降級 + destroyed_msg: Teh-beh thâi掉 %{username} ê資料 + disable: 冷凍 + disable_sign_in_token_auth: 停止用電子phue ê token認證 + disable_two_factor_authentication: 停止用雙因素認證 + disabled: 冷凍起來ah + display_name: 顯示ê名 + domain: 域名 + edit: 編輯 + email: 電子phue箱 + email_status: 電子phue ê狀態 + enable: 取消冷凍 + enable_sign_in_token_auth: 啟用電子phue ê token認證 + enabled: 啟用ah + enabled_msg: 成功kā %{username} ê口座退冰 + followers: 跟tuè伊ê + follows: 伊跟tuè ê + header: 封面ê圖 + inbox_url: 收件kheh-á ê URL + invite_request_text: 加入ê理由 + invited_by: 邀請ê lâng + ip: IP + joined: 加入ê時 + location: + all: Kui ê + local: 本地 + remote: 別ê站 + title: 位置 + login_status: 登入ê狀態 + media_attachments: 媒體ê附件 + memorialize: 變做故人ê口座 + memorialized: 變做故人ê口座ah + memorialized_msg: 成功kā %{username} 變做故人ê口座ah + moderation: + active: 活ê + all: 全部 + disabled: 停止使用ah + pending: Teh審核 + silenced: 受限制 + suspended: 權限中止ah + title: 管理 + moderation_notes: 管理ê筆記 + most_recent_activity: 最近ê活動時間 + most_recent_ip: 最近ê IP + no_account_selected: 因為無揀任何口座,所以lóng無改變 + no_limits_imposed: 無受著限制 + no_role_assigned: 無分著角色 + not_subscribed: 無訂 + pending: Teh等審核 + perform_full_suspension: 中止權限 + previous_strikes: Khah早ê處份 + previous_strikes_description_html: + other: Tsit ê口座有 %{count} kái警告。 + promote: 權限the̍h懸 + protocol: 協定 + public: 公開ê + push_subscription_expires: 訂PuSH ê期間過ah + redownload: 重頭整理個人檔案 + redownloaded_msg: Tuì來源站kā %{username} ê個人資料成功重頭整理 + reject: 拒絕 + rejected_msg: 成功拒絕 %{username} ê註冊申請ah + remote_suspension_irreversible: Tsit ê口座ê資料已經hōo lâng thâi掉,bē當復原。 + remote_suspension_reversible_hint_html: Tsit ê口座ê權限佇tsit ê服侍器hōo lâng停止ah,資料ē佇 %{date} lóng總thâi掉。佇hit日前,遠距離ê服侍器ē當復原tsit ê口座,無任何pháinn作用。Nā lí想beh liâm-mī thâi掉tsit ê口座ê任何資料,ē當佇下跤操作。 + remove_avatar: Thâi掉標頭 + remove_header: Thâi掉封面ê圖 + removed_avatar_msg: 成功thâi掉 %{username} ê 標頭影像 + removed_header_msg: 成功thâi掉 %{username} ê封面ê圖 + resend_confirmation: + already_confirmed: Tsit ê用者有受tio̍h確認 + send: 重送確認ê連結 + success: 確認連結傳成功ah! + reset: 重頭設 + reset_password: Kā密碼重頭設 + resubscribe: 重頭訂 + role: 角色 + search: Tshiau-tshuē + search_same_email_domain: 其他電子phue域名相kâng ê用者 + search_same_ip: 其他IP相kâng ê用者 + security: 安全 + security_measures: + only_password: Kan-ta用密碼 + password_and_2fa: 密碼kap雙因素驗證(2FA) + sensitive: 強制標做敏感ê + sensitized: 標做敏感ê ah + shared_inbox_url: 做伙用ê收件kheh-á (Shared Inbox) ê URL + show: + created_reports: 檢舉記錄 + targeted_reports: Hōo別lâng檢舉 + silence: 靜音 + silenced: 受靜音 + statuses: PO文 + strikes: Khah早ê處份 + subscribe: 訂 + suspend: 中止權限 + suspended: 權限中止ah + suspension_irreversible: Tsit ê口座ê資料已經thâi掉,bē當回復。Lí ē當取消停止tsit ê口座ê權限,予伊ē當使用,但是bē當回復任何khah早ê資料。 + suspension_reversible_hint_html: Tsit ê口座ê權限hōo lâng停止ah,資料ē佇 %{date} lóng總thâi掉。佇hit日前,tsit ê口座ē當復原,無任何pháinn作用。Nā lí想beh liâm-mī thâi掉tsit ê口座ê任何資料,ē當佇下跤操作。 + title: 口座 + unblock_email: 取消封鎖電子phue ê地址 + unblocked_email_msg: 成功取消封鎖 %{username} ê電子phue地址 + unconfirmed_email: 無驗證ê電子phue + undo_sensitized: 取消強制標做敏感ê + undo_silenced: 取消限制 + undo_suspension: 取消停止權限 + unsilenced_msg: 成功kā %{username} ê口座取消限制 + unsubscribe: 取消訂 + unsuspended_msg: 成功kā %{username} ê口座取消停止權限 + username: 用者ê名 + view_domain: 看域名ê摘要 + warn: 警告 + web: 網頁 + whitelisted: 允准佇聯邦傳資料 + action_logs: + action_types: + approve_appeal: 批准投訴 + approve_user: 批准用者 + assigned_to_self_report: 分配檢舉 + change_email_user: 替用者改email + change_role_user: 改用者ê角色 + confirm_user: 確認用者 + create_account_warning: 建立警告 + create_announcement: 加添公告 + create_canonical_email_block: 加添電子phue ê封鎖 + create_custom_emoji: 加添自訂ê Emoji + create_domain_allow: 加添允准ê域名 + create_domain_block: 加添封鎖ê域名 + create_email_domain_block: 加添電子phue域名ê封鎖 + create_ip_block: 加添IP規則 + create_unavailable_domain: 建立bē當用ê域名 + create_user_role: 建立角色 + demote_user: Kā用者降級 + destroy_announcement: Thâi掉公告 + destroy_canonical_email_block: Thâi掉電子phue ê封鎖 + destroy_custom_emoji: Thâi掉自訂ê Emoji + destroy_domain_allow: Thâi掉允准ê域名 + destroy_domain_block: Thâi掉封鎖ê域名 + destroy_email_domain_block: Thâi掉電子phue域名ê封鎖 + destroy_instance: 清掉域名 + destroy_ip_block: Thâi掉IP規則 + destroy_status: Thâi掉PO文 + destroy_unavailable_domain: Thâi掉bē當用ê域名 + destroy_user_role: Thâi掉角色 + disable_2fa_user: 停止用雙因素認證 + disable_custom_emoji: 停止用自訂ê Emoji + disable_sign_in_token_auth_user: 停止用使用者電子phue ê token認證 + disable_user: 停止用口座 + enable_custom_emoji: 啟用自訂ê Emoji + enable_sign_in_token_auth_user: 啟用使用者電子phue ê token認證 + enable_user: 啟用口座 + memorialize_account: 設做故人ê口座 + promote_user: Kā用者升級 + reject_appeal: 拒絕申訴 + reject_user: 拒絕用者 + remove_avatar_user: Thâi掉標頭 + reopen_report: 重頭kā檢舉phah開 + resend_user: 重送確認ê phue + reset_password_user: Kā密碼重頭設 + resolve_report: Kā檢舉處理好ah + sensitive_account: Kā口座內底ê媒體強制標敏感內容 + silence_account: Kā口座靜音 + suspend_account: 停止口座ê權限 + unassigned_report: 取消分配檢舉 + unblock_email_account: 取消封鎖電子phue ê地址 + unsensitive_account: 取消kā口座內底ê媒體強制標敏感內容 + unsilence_account: 取消kā口座靜音 + unsuspend_account: 取消停止口座ê權限 + update_announcement: 更新公告 + update_custom_emoji: 更新自訂ê Emoji + update_domain_block: 更新封鎖ê域名 + update_ip_block: 更新IP規則 + update_report: 更新檢舉 + update_status: 更新PO文 + update_user_role: 更新角色 + actions: + approve_appeal_html: "%{name} 允准 %{target} 所寫ê tuì管理決定ê投訴" + approve_user_html: "%{name} 允准 %{target} ê 註冊" + assigned_to_self_report_html: "%{name} kā報告 %{target} 分配hōo家tī" + change_email_user_html: "%{name} 改變 %{target} ê電子phue地址" + change_role_user_html: "%{name} 改變 %{target} ê角色" + confirm_user_html: "%{name} 確認 %{target} ê電子phue地址" + create_account_warning_html: "%{name} 送警告hōo %{target}" + create_announcement_html: "%{name} kā公告 %{target} 建立ah" + create_canonical_email_block_html: "%{name} kā hash是 %{target} ê電子phue封鎖ah" + create_custom_emoji_html: "%{name} kā 新ê emoji %{target} 傳上去ah" + create_domain_allow_html: "%{name} 允准 %{target} 域名加入聯邦" + create_domain_block_html: "%{name} 封鎖域名 %{target}" + create_email_domain_block_html: "%{name} kā 電子phue域名 %{target} 封鎖ah" + create_ip_block_html: "%{name} 建立 IP %{target} ê規則" + create_unavailable_domain_html: "%{name} 停止送kàu域名 %{target}" + create_user_role_html: "%{name} 建立 %{target} 角色" + demote_user_html: "%{name} kā用者 %{target} 降級" + destroy_announcement_html: "%{name} kā公告 %{target} thâi掉ah" + destroy_canonical_email_block_html: "%{name} kā hash是 %{target} ê電子phue取消封鎖ah" + destroy_custom_emoji_html: "%{name} kā 新ê emoji %{target} thâi掉ah" + destroy_domain_allow_html: "%{name} 無允准 %{target} 域名加入聯邦" + destroy_domain_block_html: "%{name} 取消封鎖域名 %{target}" + destroy_email_domain_block_html: "%{name} kā 電子phue域名 %{target} 取消封鎖ah" + destroy_instance_html: "%{name} 清除域名 %{target}" + destroy_ip_block_html: "%{name} thâi掉 IP %{target} ê規則" + destroy_status_html: "%{name} kā %{target} ê PO文thâi掉" + destroy_unavailable_domain_html: "%{name} 恢復送kàu域名 %{target}" + destroy_user_role_html: "%{name} thâi掉 %{target} 角色" + disable_2fa_user_html: "%{name} 停止使用者 %{target} 用雙因素驗證" + disable_custom_emoji_html: "%{name} kā 新ê emoji %{target} 停止使用ah" + disable_sign_in_token_auth_user_html: "%{name} 停止 %{target} 用電子phue ê token驗證" + disable_user_html: "%{name} kā 用者 %{target} 設做bē當登入" + enable_custom_emoji_html: "%{name} kā 新ê emoji %{target} 啟用ah" + enable_sign_in_token_auth_user_html: "%{name} 啟用 %{target} ê電子phue ê token驗證" + enable_user_html: "%{name} kā 用者 %{target} 設做允准登入" + memorialize_account_html: "%{name} kā %{target} 設做故人口座" + promote_user_html: "%{name} kā 用者 %{target} 升級" + reject_appeal_html: "%{name} 拒絕 %{target} 所寫ê tuì管理決定ê投訴" + reject_user_html: "%{name} 拒絕 %{target} ê 註冊" + remove_avatar_user_html: "%{name} thâi掉 %{target} ê標頭" + reopen_report_html: "%{name} 重開 %{target} ê檢舉" + resend_user_html: "%{name} 重頭送確認phue hōo %{target}" + reset_password_user_html: "%{name} kā 用者 %{target} 重頭設密碼ah" + resolve_report_html: "%{name} 已經處理 %{target} ê檢舉" + sensitive_account_html: "%{name} kā %{target} ê媒體標做敏感ê內容" + silence_account_html: "%{name} 限制 %{target} ê口座" + suspend_account_html: "%{name} kā %{target} ê口座停止權限ah" + unassigned_report_html: "%{name} 取消分配 %{target} ê檢舉" + unblock_email_account_html: "%{name} 取消封鎖 %{target} ê電子phue地址" + unsensitive_account_html: "%{name} kā %{target} ê媒體取消標做敏感ê內容" + unsilence_account_html: "%{name} 取消限制 %{target} ê口座" + unsuspend_account_html: "%{name} kā %{target} ê口座恢復權限ah" + update_announcement_html: "%{name} kā公告 %{target} 更新ah" + update_custom_emoji_html: "%{name} kā 新ê emoji %{target} 更新ah" + update_domain_block_html: "%{name} kā %{target} ê域名封鎖更新ah" + update_ip_block_html: "%{name} 改變 IP %{target} ê規則" + update_report_html: "%{name} 更新 %{target} ê檢舉" + update_status_html: "%{name} kā %{target} ê PO文更新" + update_user_role_html: "%{name} 更改 %{target} 角色" + deleted_account: thâi掉ê口座 + empty: Tshuē無log。 + filter_by_action: 照動作過濾 + filter_by_user: 照用者過濾 + title: 審查日誌 + unavailable_instance: "(域名bē當用)" + announcements: + destroyed_msg: 公告成功thâi掉ah! + edit: + title: 編輯公告 + empty: Tshuē無公告。 + live: Teh公開 + new: + create: 加添公告 + title: 新ê公告 + publish: 公開 + published_msg: 公告成功公佈ah! + scheduled_for: 排tī %{time} + scheduled_msg: 已經排好公告ê發布時間! + title: 公告 + unpublish: 取消公佈 + unpublished_msg: 公告成功取消ah! + updated_msg: 公告成功更新ah! + critical_update_pending: 愛處理ê重大更新 + custom_emojis: + assign_category: 分配類別 + by_domain: 域名 + copied_msg: 成功kā emoji khóo-pih kàu本地 + copy: Khóo-pih + copy_failed_msg: Bē當kā hit ê emoji khóo-pih kàu本地 + create_new_category: 開新ê分類 + created_msg: Emoji成功加添ah! + delete: Thâi掉 + destroyed_msg: Emoji成功thâi掉ah! + disable: 停止使用 + disabled: 停止使用ê + disabled_msg: Hit ê emoji成功停止使用ah + emoji: Emoji + enable: 啟用 + enabled: 啟用ê + enabled_msg: Hit ê emoji成功啟用ah + image_hint: Sài-suh無超過 %{size} ê PNG á是 GIF + list: 列單 + listed: 加入列單ah + new: + title: 加添新ê自訂emoji + no_emoji_selected: 因為無揀任何emoji,所以lóng無改變 + not_permitted: Lí無允准行tsit ê動作 + overwrite: Khàm掉 + shortcode: 短碼 + shortcode_hint: 字元上少2 ê,kan-ta接受字母、數字kap底線(_) + title: 自訂emoji + uncategorized: Iáu無分類 + unlist: Tuì列單the̍h掉 + unlisted: The̍h掉ah + update_failed_msg: Bē當更新hit ê emoji + updated_msg: Emoji成功更新ah! + upload: 傳上去 + dashboard: + active_users: 活動ê用者 + interactions: 互動 + media_storage: 媒體儲存 + new_users: 新用者 + opened_reports: 拍開ê報告 + pending_appeals_html: + other: "%{count} ê投訴愛處理" + pending_reports_html: + other: "%{count} ê檢舉愛處理" + pending_tags_html: + other: "%{count} ê hashtag愛處理" + pending_users_html: + other: "%{count} ê用者愛處理" + resolved_reports: 解決ê報告 + software: 軟體 + sources: 註冊ê源頭 + space: 空間ê使用 + title: La-jí-báng (dashboard) + top_languages: 上tsia̍p出現ê語言 + top_servers: 上tsia̍p活動ê服侍器 + website: 網站 + disputes: + appeals: + empty: Tshuē無投訴。 + title: 投訴 + domain_allows: + add_new: 允准kap tsit ê域名相連 + created_msg: 域名已經成功允准相連 + destroyed_msg: 域名已經成功取消相連 + export: 輸出 + import: 輸入 + undo: 禁止kap tsit ê域名相連 + domain_blocks: + add_new: 加添新ê封鎖域名 + confirm_suspension: + cancel: 取消 + confirm: 中止權限 + permanent_action: 取消中止權限,bē當復原任何資料á是關係。 + preamble_html: Lí teh beh停止 %{domain} kap伊ê kiánn域名ê權限。 + remove_all_data: Tse ē tī lí ê服侍器內底,kā tuì tsit ê域名ê口座來ê所有內容、媒體kap個人資料lóng thâi掉。 + stop_communication: Lí ê服侍器ē停止kap hia ê服侍器聯絡。 + title: 確認封鎖域名 %{domain} + undo_relationships: Tse ē取消任何ê佇in ê服侍器ê口座kap lí ê之間ê跟tuè關係。 + created_msg: 當leh封鎖域名 + destroyed_msg: 已經取消封鎖域名 + domain: 域名 + edit: 編輯域名封鎖 + existing_domain_block: Lí已經kā %{name} 下koh khah嚴ê限制。 + existing_domain_block_html: Lí已經kā %{name} 下koh khah嚴ê限制,lí著先解除封鎖。 + export: 輸出 + import: 輸入 + new: + create: 加添封鎖 + hint: 封鎖域名bē當擋口座記錄受加添佇資料庫,m̄-kú ē 自動自尾kàu頭,kā hia ê口座使用指定ê管理方式。 + severity: + desc_html: "限制ē kā hit ê域名ê口座所送ê PO文,設做kan-ta跟tuè伊ê tsiah通看見。中止權限ē thâi掉tī lí ê 服侍器內底,所有tuì hit ê域名ê口座來ê內容、媒體kap個人資料。Nā kan-ta beh拒絕媒體檔案,請用。" + noop: 無 + silence: 限制 + suspend: 中止權限 + title: 新ê域名封鎖 + no_domain_block_selected: 因為無揀任何域名封鎖,所以lóng無改變 + not_permitted: Lí無允准行tsit ê動作 + obfuscate: Kā域名舞bē清 + obfuscate_hint: Nā beh啟用廣告域名列單ê限制,tiō tī列單kā域名ê部份舞buē清。 + private_comment: 私人評論 + private_comment_hint: 請評論關係tsit ê域名ê制限,hōo管理員做內部ê路用。 + public_comment: 公開ê評論 + public_comment_hint: 請為一般大眾評論關係tsit ê域名ê制限,若beh啟用廣告域名列單ê限制。 + reject_media: 拒絕媒體檔案 + reject_media_hint: Thâi掉本地tiông ê媒體檔案,mā bē koh kā任何tuì hia來ê載落去。Hām中止權限無tī-tāi + reject_reports: 拒絕檢舉 + reject_reports_hint: 忽略ta̍k ê tuì tsit ê域名來ê檢舉,hām中止權限無tī-tāi。 + undo: 取消域名封鎖 + view: 檢視域名封鎖 + email_domain_blocks: + add_new: 加新ê + allow_registrations_with_approval: 許可了後允准註冊 + attempts_over_week: + other: 頂禮拜lóng總有 %{count} pái試註冊 + created_msg: 成功封鎖電子phue域名 + delete: Thâi掉 + dns: + types: + mx: MX記錄 + domain: 域名 + new: + create: 加添域名 + resolve: 解析域名 + title: 封鎖新ê電子phue ê域名 + no_email_domain_block_selected: 因為無揀任何電子phue域名封鎖,所以lóng無改變 + not_permitted: 無允准 + resolved_dns_records_hint_html: 域名解析做下kha ê MX域名,tsiah ê域名上後負責收電子phue。封鎖MX域名ē封任何有siâng款MX域名ê電子郵件ê註冊,就算通看見ê域名無kâng,mā án-ne。Tio̍h細膩,m̄通封鎖主要ê電子phue提供者。 + resolved_through_html: 通過 %{domain} 解析 + title: 封鎖ê電子phue域名 + export_domain_allows: + new: + title: 輸入允准ê域名 + no_file: Iáu bē揀檔案 + export_domain_blocks: + import: + description_html: Lí teh-beh輸入封鎖域名ê列單。請koh kā tsit ê列單斟酌檢查,特別是lí無家tī編tsit ê列單ê時。 + existing_relationships_warning: 有ê跟tuè關係 + private_comment_description_html: 為著幫tsān lí追蹤輸入ê封鎖tuì toh來,輸入ê封鎖ē kap下kha ê私人評論sann-kap加添:%{comment} + private_comment_template: 佇 %{date} tuì %{source} 輸入 + title: 輸入域名封鎖 + invalid_domain_block: 因為下kha ê錯誤,làng過tsi̍t ê以上ê域名封鎖:%{error} + new: + title: 輸入域名封鎖 + no_file: Iáu bē揀檔案 + follow_recommendations: + description_html: "跟tuè建議幫tsān新用者緊tshuē著心適ê內容。Nā使用者無hām別lâng有夠額ê互動,來形成個人化ê跟tuè建議,就ē推薦tsiah ê口座。In是佇指定語言內底,由最近上tsia̍p參與ê,kap上tsē lâng跟tuè ê口座,用ta̍k kang做基礎,相濫koh計算出來ê。" + language: 揀語言 + status: 狀態 + suppress: Khàm掉跟tuè建議 + suppressed: Khàm掉ê + title: 跟tuè建議 + unsuppress: 恢復跟tuè建議 + instances: + audit_log: + title: 最近ê審核日誌 + view_all: 看完整ê審核日誌 + availability: + description_html: + other: Nā佇 %{count} kang內,寄送kàu hit ê域名lóng失敗,除非收著hit ê域名來ê寄送,a̍h無buē koh試寄送。 + failure_threshold_reached: 佇 %{date} kàu失敗ê底限。 + failures_recorded: + other: 連suà %{count} kang lóng寄失敗。 + no_failures_recorded: 報告內底無失敗。 + title: 可用性 + warning: 頂kái試連接tsit臺服侍器是無成功 + back_to_all: 全部 + back_to_limited: 受限制 + back_to_warning: 警告 + by_domain: 域名 + confirm_purge: Lí kám確定beh永永thâi掉tsit ê域名來ê資料? + content_policies: + comment: 內部ê筆記 + description_html: Lí ē當定義用tī所有tuì tsit ê域名kap伊ê子域名來ê口座ê內容政策。 + limited_federation_mode_description_html: Lí通選擇kám beh允准tsit ê域名加入聯邦。 + policies: + reject_media: 拒絕媒體 + reject_reports: 拒絕檢舉 + silence: 限制 + suspend: 中止權限 + policy: 政策 + reason: 公開ê理由 + title: 內容政策 + dashboard: + instance_accounts_dimension: 上tsē lâng跟tuè ê口座 + instance_accounts_measure: 儲存ê口座 + instance_followers_measure: lán tī hia ê跟tuè者 + instance_follows_measure: in tī tsia ê跟tuè者 + instance_languages_dimension: Tsia̍p用ê語言 + instance_media_attachments_measure: 儲存ê媒體附件 + instance_reports_measure: 關係in ê檢舉 + instance_statuses_measure: 儲存ê PO文 + delivery: + all: 全部 + clear: 清寄送ê錯誤 + failing: 失敗 + restart: 重頭啟動寄送 + stop: 停止寄送 + unavailable: Bē當用 + delivery_available: 通寄送 + delivery_error_days: 寄送錯誤ê日數 + delivery_error_hint: Nā連續 %{count} kang bē當寄送,就ē自動標做bē當寄送。 + destroyed_msg: Tuì %{domain} 來ê資料,teh排隊beh thâi掉。 + empty: Tshuē無域名。 + known_accounts: + other: "%{count} ê知影ê口座" + moderation: + all: 全部 + limited: 受限制 + title: 管理 + private_comment: 私人評論 + public_comment: 公開ê評論 + purge: 清除 + purge_description_html: Nā lí想講tsit ê域名ē永永斷線,ē當tuì儲存內底thâi掉uì tsit ê域名來ê所有口座記錄kap相關資料。Huân-sè ē開點á時間。 + title: 聯邦 + total_blocked_by_us: Hōo lán封鎖 + total_followed_by_them: Hōo in跟tuè + total_followed_by_us: Hōo lán跟tuè + total_reported: 關係in ê檢舉 + total_storage: 媒體ê附件 + totals_time_period_hint_html: 下kha顯示ê總計包含ta̍k時ê資料。 + unknown_instance: 佇本服務器,現tsú時iáu無tsit ê域名ê記錄。 + invites: + deactivate_all: Lóng停用 + filter: + all: 全部 + available: 通用ê + expired: 過期ê + title: 過濾器 + title: 邀請 + ip_blocks: + add_new: 建立規則 + created_msg: 成功加添新ê IP規則 + delete: Thâi掉 + expires_in: + '1209600': 2 禮拜 + '15778476': 6個月 + '2629746': 1 個月 + '31556952': 1 年 + '86400': 1 kang + '94670856': 3 年 + new: + title: 建立新ê IP規則 + no_ip_block_selected: 因為無揀任何IP規則,所以lóng無改變 + title: IP規則 + relationships: + title: "%{acct} ê關係" + relays: + add_new: 加添新ê中繼 + delete: Thâi掉 + description_html: "聯邦ê中繼站 是中lâng ê服侍器,ē tī訂koh公開kàu hit ê中繼站ê服侍器之間,交換tsē-tsē ê 公開PO文。中繼站通幫tsān小型kap中型服侍器tuì聯邦宇宙發現內容,本地ê用者免手動跟tuè遠距離ê服侍器ê別lâng。" + disable: 停止使用 + disabled: 停止使用ê + enable: 啟用 + enable_hint: Lí ê服侍器tsi̍t-ē啟動,ē訂tuì tsit ê中繼逐ê公開PO文,mā ē開始送tsit ê服侍器ê公開PO文kàu hia。 + enabled: 啟用ê + inbox_url: 中繼 URL + pending: Teh等中繼站允准 + save_and_enable: 儲存koh啟用 + setup: 設定中繼ê連結 + signatures_not_enabled: Nā啟用安全模式á是受限ê聯邦模式,中繼可能buē-tàng正常運作 + status: 狀態 + title: 中繼 + report_notes: + created_msg: 檢舉記錄成功建立! + destroyed_msg: 檢舉記錄成功thâi掉! + reports: + account: + notes: + other: "%{count} 篇筆記" + action_log: 審查日誌 + action_taken_by: 操作由 + actions: + delete_description_html: 受檢舉ê PO文ē thâi掉,而且ē用tsi̍t ue̍h橫tsuā記錄,幫tsān lí提升kâng tsi̍t ê用戶未來ê違規。 + mark_as_sensitive_description_html: 受檢舉ê PO文內ê媒體ē標做敏感,而且ē用tsi̍t ue̍h橫tsuā記錄,幫tsān lí提升kâng tsi̍t ê用戶未來ê違規。 + other_description_html: 看其他控制tsit ê口座ê所行,kap自訂聯絡受檢舉ê口座ê選項。 + resolve_description_html: Buē用行動控制受檢舉ê口座,mā無用橫tsuā記錄,而且tsit ê報告ē關掉。 + silence_description_html: 本口座kan-ta ē hōo早前跟tuè ê á是手動tshiau ê看見,大大限制看見ê範圍。設定隨時ē當回復。請關所有tuì tsit ê口座ê檢舉。 + suspend_description_html: Tsit ê口座kap伊ê內容ē bē當用,落尾ē thâi掉,mā bē當hām伊互動。30 kang以內通回復。請關所有tuì tsit ê口座ê檢舉。 + actions_description_html: 決定行siánn物行動來解決tsit ê檢舉。Nā lí tuì受檢舉ê口座採用處罰,電子phue通知ē送予in,除非選擇 Pùn-sò phue 類別。 + actions_description_remote_html: 決定行siánn物行動來解決tsit ê檢舉。Tse kan-ta ē影響 lí ê 服侍器hām tsit ê遠距離服侍器聯絡kap處理伊ê內容ê方法。 + actions_no_posts: Tsit份檢舉無beh thâi掉ê相關PO文 + add_to_report: 加添其他ê內容kàu檢舉 + already_suspended_badges: + local: 已經佇tsit ê服侍器停止權限ah + remote: 已經佇in ê服侍器停止權限ah + are_you_sure: Lí kám確定? + assign_to_self: 分配hōo家kī + assigned: 分配管理者 + by_target_domain: 受檢舉ê口座ê域名 + cancel: 取消 + category: 類別 + category_description_html: Tsit ê 受檢舉ê口座kap/á是內容,ē佇kap tsit ê口座ê聯絡內底引用。 + comment: + none: 無 + comment_description_html: 為著提供其他資訊,%{name} 寫: + confirm: 確認 + confirm_action: 確認kā %{acct} 管理ê動作 + created_at: 檢舉tī + delete_and_resolve: Thâi掉PO文 + forwarded: 轉送ah + forwarded_replies_explanation: 本報告是tuì別站ê用者送ê,關係別站ê內容。本報告轉hōo lí,因為受檢舉ê內容是回應lí ê服侍器ê用者。 + forwarded_to: 有轉送kàu %{domain} + mark_as_resolved: 標做「解決ah」 + mark_as_sensitive: 標做敏感ê + mark_as_unresolved: 標做「無解決」 + no_one_assigned: 無lâng + notes: + create: 加添筆記 + create_and_resolve: 標「處理ah」,留筆記 + create_and_unresolve: 留筆記,koh重開 + delete: Thâi掉 + placeholder: 描述有行siánn物行動,á是其他關聯ê更新…… + title: 筆記 + notes_description_html: 檢視á是留筆記hōo別ê管理者kap未來ê家己 + processed_msg: '檢舉 #%{id} 處理成功ah' + quick_actions_description_html: 緊行行動,á是giú kàu下kha,看檢舉ê內容: + remote_user_placeholder: tuì %{instance} 來ê遠距離用者 + reopen: 重頭phah開檢舉 + report: '檢舉 #%{id}' + reported_account: 受檢舉ê口座 + reported_by: 檢舉人 + reported_with_application: 用應用程式檢舉 + resolved: 解決ah + resolved_msg: 檢舉成功解決ah! + skip_to_actions: 跳kàu行動 + status: 狀態 + statuses: 受檢舉ê內容 + statuses_description_html: 冒犯ê內容ē引用tī kap受檢舉口座ê聯絡 + summary: + action_preambles: + delete_html: Lí teh-beh thâi掉 @%{acct} ê tsi̍t-kuá PO文。Tse ē: + mark_as_sensitive_html: Lí teh-beh @%{acct} ê tsi̍t-kuá PO文標做敏感。Tse ē: + silence_html: Lí teh-beh 限制 @%{acct} ê口座。Tse ē: + suspend_html: Lí teh-beh 停止 @%{acct} ê口座權限。Tse ē: + actions: + delete_html: Thâi掉冒犯ê PO文 + mark_as_sensitive_html: Kā冒犯êPO文ê媒體標做敏感ê + silence_html: Kā in ê個人資料kap內容標做kan-ta有跟tuè ê,á是手動tshiau伊ê個人檔案ê,通看見,來嚴嚴限制 @%{acct} ê傳播範圍 + suspend_html: Kā @%{acct} 停止權限,koh kā in ê 個人資料kap內容標做bē當用,kap bē當hām in互動 + close_report: 'Kā 檢舉報告 #%{id} 標做解決ah' + close_reports_html: Kā ta̍k êtuì @%{acct} ê檢舉標做解決ah + delete_data_html: Tuì tann起30kang以後,thâi掉 @%{acct} ê個人資料kap內容,除非佇tsit ê期限進前,取消停止in ê權限 + preview_preamble_html: "@%{acct} ē收著警告,包含下kha ê內容:" + record_strike_html: 記錄tuì @%{acct}ê警告,來幫tsān lí提升佇tsit ê口座ê未來違規 + send_email_html: Kā警告電子phue寄hōo @%{acct} + warning_placeholder: 通選ê,管理行動ê補充理由 + target_origin: 受檢舉ê口座ê來源 + title: 檢舉 + unassign: 取消分配 + unknown_action_msg: M̄知影ê動作:%{action} + unresolved: 無解決 + updated_at: 更新 + view_profile: 看個人資料 + roles: + add_new: 加添角色 + assigned_users: + other: "%{count} ê用者" + categories: + administration: 管理員 + devops: DevOps + invites: 邀請 + moderation: 管理 + special: 特別 + delete: Thâi掉 + description_html: 用用者角色,lí通自訂lí ê用者ē當接近使用Mastodon ê siánn物功能kap區域。 + edit: 編「%{name}」ê角色 + everyone: 預設ê權限 + everyone_full_description_html: Tse是ē影響所有用者ê基本角色,就算是無分配tio̍h角色ê mā kâng款。所有其他ê角色繼承伊ê權限。 + permissions_count: + other: "%{count} ê權限" + privileges: + administrator: 管理員 + administrator_description: 有tsit ê權限ê用者ē忽略所有ê權限。 + delete_user_data: Thâi掉用者ê資料 + delete_user_data_description: 允准用者liâm-mi thâi掉其他用者ê資料 + invite_users: 邀請用者 + invite_users_description: 允准用者邀請新lâng來tsit ê服侍器 + manage_announcements: 管理公告 + manage_announcements_description: 允准用者管理佇tsit ê服侍器ê公告 + manage_appeals: 管理投訴 + manage_appeals_description: 允准用者審查tuì管理動作ê投訴 + manage_blocks: 管理封鎖 + manage_blocks_description: 允准用者封鎖電子phue ê 提供者kap IP地址 + manage_custom_emojis: 管理自訂ê Emoji + manage_custom_emojis_description: 允准用者管理佇tsit ê服侍器ê自訂Emoji + manage_federation: 管理聯邦 + manage_federation_description: 允准用者封鎖á是允准kap其他域名相連,mā控制寄送ê能力 + manage_invites: 管理邀請 + manage_invites_description: 允准用者瀏覽kap停止使用邀請連結 + manage_reports: 管理檢舉 + manage_reports_description: 允准用者審查檢舉kap執行對in ê管理ê動作。 + manage_roles: 管理角色 + manage_roles_description: 允准用者管理kap分配比in khah kē ê角色 + manage_rules: 管理規則 + manage_rules_description: 允准用者改服侍器ê規則 + manage_settings: 管理設定 + manage_settings_description: 允准用者改站ê設定 + manage_taxonomies: 管理分類 + manage_taxonomies_description: 允准用者審核趨勢內容,kap更新hashtag ê設定 + manage_user_access: 管理用者ê接近使用 + manage_user_access_description: 允准用者停止其他用者ê兩階段驗證,改in ê電子phue地址,kap重頭設定in ê密碼 + manage_users: 管理用者 + manage_users_description: 允准用者看其他ê用者ê詳細,kap執行tuì in ê管理行動 + manage_webhooks: 管理 Webhooks + manage_webhooks_description: 允許用者kā管理ê事件設定 webhooks + view_audit_log: 看審核ê日誌 + view_audit_log_description: 允准用者看tsit ê服侍器ê管理行動ê歷史 + view_dashboard: 看La-jí-báng (Dashboard) + view_dashboard_description: 允准用者接近使用tsit ê la-jí-báng kap tsē-tsē指標 + view_devops: DevOps + view_devops_description: 允准用者接近使用Sidekiq kap pgHero ê la-jí-báng + title: 角色 + rules: + add_new: 加添規則 + delete: Thâi掉 + description_html: 雖bóng大部份ê lóng講有讀kap同意服務規定,m̄-koh攏無讀了,直到發生問題ê時。提供in列單ē當hōo tsi̍t kái看服侍器ê規則khah快。請試kā個別ê規則寫kah短koh簡單,m̄-kú m̄通kā in拆做tsē-tsē分開ê項目。 + edit: 編輯規則 + empty: Iáu bē定義服侍器ê規則。 + title: 服侍器規則 + settings: + about: + manage_rules: 管理服侍器ê規則 + preamble: 提供關係服侍器án-nuá運作kap管理,以及資金源頭ê詳細資訊。 + rules_hint: Tse是關係lí ê用者應該遵守ê規則ê專區。 + title: 關係本站 + appearance: + preamble: 自訂Mastodon網頁ê界面。 + title: 外觀 + branding: + preamble: Lí ê服侍器品牌hōo伊kap別ê服侍器區別。Tsit ê資訊可能展示佇無kâng ê環境,比如Mastodon ê網頁界面、原底ê app、佇別站ê sing看連結ê所在kap佇通信app內底等。因為tsit ê緣故,上好kā資訊保持kah清楚、短koh簡要。 + title: 品牌 + captcha_enabled: + desc_html: Tsit ê功能需要tuì hCaptcha來ê外部kha本,可能有安全kap隱私ê顧慮。另外,tse ē明顯降kē tsi̍t寡lâng(特別是障礙者)註冊ê容易程度。因為tsiah ê緣故,請考慮別ê替代方案,比如審核制á是邀請制ê註冊。 + title: 要求新ê用者解決CAPTCHA問題,來確認in ê口座 + content_retention: + danger_zone: 危險ê所在 + preamble: 控制使用者產生ê內容tiông佇Mastodon ê方法。 + title: 內容保存期間 + default_noindex: + desc_html: 影響逐ê iáu buē改變tsit ê設定ê用者 + title: 預設kā用者tuì tshiau-tshuē ia̋n-jín ê索引排除 + discovery: + follow_recommendations: 跟tuè建議 + preamble: Kā心適ê內容浮現出來,ē當幫tsān tī Mastodon頂siáng lóng可能m̄知ê新手。控制tsē-tsē發現lí ê服侍器ê特色作品ê功能án-nuá運作。 + profile_directory: 個人資料ê目錄 + public_timelines: 公共ê時間線 + publish_statistics: 發布統計 + title: 發現 + trends: 趨勢 + domain_blocks: + all: Kàu ta̍k ê lâng + disabled: 無kàu tó tsi̍t ê + users: Kàu ta̍k位登入ê用者 + registrations: + moderation_recommandation: 佇開放hōo ta̍k ê lâng註冊進前,請確認lí有夠額koh主動反應ê管理團隊! + preamble: 控制ē當佇lí ê服侍器註冊ê人。 + title: 註冊 + registrations_mode: + modes: + approved: 註冊tio̍h愛核准 + none: 無lâng通註冊 + open: Ta̍k ê lâng lóng ē當註冊 + warning_hint: Guán建議用「註冊tio̍h愛核准」,除非lí tuì lí ê管理團隊ē當不管時處理pùn-sò訊息kap惡意註冊有信心。 + security: + authorized_fetch: 要求tuì聯邦ê服侍器ê認證 + authorized_fetch_hint: 要求tuì聯邦ê服侍器ê驗證ē當koh khah嚴格執行用者級kap服侍器級ê封鎖。M̄-kú ē致kàu性能處罰ê損失,減少lí ê回應ê擴散程度,mā有可能引入kap tsi̍t-kuá聯邦服務ê相容性問題。另外,tse bē當防止別lâng專工掠lí ê公開PO文kap口座。 + authorized_fetch_overridden_hint: 因為hōo環境變數khàm掉,lí tsit-má bē當改tsit ê設定。 + federation_authentication: 聯邦驗證ê執行 + title: 服侍器ê設定 + site_uploads: + delete: Thâi掉傳上去ê檔案 + destroyed_msg: 成功thâi掉傳上去kàu本站ê內容ah! + software_updates: + critical_update: 重要—請緊升級 + description: 建議kā lí ê Mastodon安裝維持上新ê狀態,the̍h著上新ê修正kap功能。另外,隨時更新Mastodon有時陣真重要,ē當避免安全問題。因為tsiah-ê原因,Mastodon每30分鐘檢查更新,mā ē根據lí ê電子phue通知ê偏愛設定kā lí通知。 + documentation_link: 看詳細 + release_notes: 版本ê資訊 + title: Ē當the̍h ê更新 + type: 類型 + types: + major: 大ê版本更新 + minor: 細ê版本更新 + patch: 碎布(patch)公開—修正錯誤kap容易作用ê改變 + version: 版本 + statuses: + account: 作者 + application: 應用程式 + back_to_account: Tńg去口座ê頁 + back_to_report: Tńg去檢舉ê頁 + batch: + remove_from_report: Tuì檢舉suá掉 + report: 檢舉 + deleted: Thâi掉ah + favourites: 收藏 + history: 版本ê歷史 + in_reply_to: 回應 + language: 語言 + media: + title: 媒體 + metadata: Meta資料 + no_status_selected: 因為無揀任何PO文,所以lóng無改變 + open: 公開PO文 + original_status: 原底ê PO文 + reblogs: 轉送 + status_changed: PO文有改ah + title: 口座ê PO文 + trending: 趨勢 + visibility: 通看ê程度 + with_media: 有媒體 + strikes: + actions: + delete_statuses: "%{name} kā %{target} ê PO文thâi掉ah" + disable: "%{name} kā %{target} ê口座冷凍ah" + mark_statuses_as_sensitive: "%{name} kā %{target} êPO文標做敏感ê內容" + none: "%{name} 送警告hōo %{target} ah" + sensitive: "%{name} kā %{target} ê口座標做敏感ê" + silence: "%{name} 限制 %{target} ê口座" + suspend: "%{name} kā %{target} ê口座停止權限ah" + appeal_approved: 投訴ah + appeal_pending: 投訴teh等審核 + appeal_rejected: 投訴hōo lâng拒絕 + system_checks: + database_schema_check: + message_html: 有leh等待處理ê資料庫遷suá。請執行tsiah-ê,來保證應用程式照期望pháng + elasticsearch_health_red: + message_html: Elasticsearch ê cluster無健康(紅色ê狀態),bē當用tshiau-tshuē功能 + elasticsearch_health_yellow: + message_html: Elasticsearch ê cluster無健康(黃色ê狀態),lí可能想beh調查原因。 + elasticsearch_index_mismatch: + message_html: Elasticsearch索引對應過期ah。請執行 tootctl search deploy --only=%{value} + elasticsearch_preset: + action: 看文件 + message_html: Lí ê Elasticsearch ê cluster有超過tsi̍t ê節點,m̄-kú Mastodon iáu無設定用in。 + elasticsearch_preset_single_node: + action: 看文件 + message_html: Lí ê Elasticsearch 叢集kan-ta有tsi̍t ê節點,ES_PRESET 應該設定做 single_node_cluster。 + elasticsearch_reset_chewy: + message_html: Lí ê Elasticsearch系統索引因為設定改變,過期ah。請執行 tootctl search deploy --reset-chewy 來更新。 + elasticsearch_running_check: + message_html: Bē當連接 Elasticsearch。請確認kám有teh pháng,á是停用全文tshiau-tshuē + elasticsearch_version_check: + message_html: Bē當相容ê Elasticsearch版本:%{value} + version_comparison: Elasticsearch %{running_version} 版teh pháng,m̄-kú 愛 %{required_version} 版。 + rules_check: + action: 管理服侍器ê規則 + message_html: Lí iáu bē定義任何服侍器ê規則。 + sidekiq_process_check: + message_html: 排列 %{value} 無leh pháng Sidekiq ê程序。請檢視lí ê Sidekiq 設定 + software_version_check: + action: 看ē當the̍h ê更新 + message_html: 有Mastodon ê更新ē當載落去。 + software_version_critical_check: + action: 看ē當the̍h ê更新 + message_html: 有重大ê Mastodon更新ē當載落去,請趕緊更新。 + software_version_patch_check: + action: 看ē當the̍h ê更新 + message_html: 有修正錯誤ê Mastodon ê更新,ē當載落去。 + upload_check_privacy_error: + action: 檢查tse,the̍h著其他資訊 + message_html: "Lí ê網頁服侍器設定錯誤。Lí ê服侍器ê隱私權有風險。" + upload_check_privacy_error_object_storage: + action: 檢查tse,the̍h著其他資訊 + message_html: "Lí ê物件儲存空間設定錯誤。Lí ê服侍器ê隱私權有風險。" + tags: + moderation: + not_trendable: Bē當做趨勢 + not_usable: Bē當用 + pending_review: Teh等審核 + review_requested: 審核請求ah + reviewed: 審核ah + title: 狀態 + trendable: 通列做趨勢 + unreviewed: Iáu bē審核 + usable: 通用 + name: 名 + newest: 上新ê + oldest: 上舊ê + open: 公開看 + reset: 重頭設 + review: 審核狀態 + search: Tshiau-tshuē + title: Hashtag + updated_msg: Hashtag設定更新成功ah + title: 管理 + trends: + allow: 允准 + approved: 允准ah + confirm_allow: Lí kám確定beh允准所揀ê標簽? + confirm_disallow: Lí kám確定無愛允准所揀ê標簽? + disallow: 無愛允准 + links: + allow: 允准連結 + allow_provider: 允准提供者 + confirm_allow: Lí kám確定beh允准所揀ê連結? + confirm_allow_provider: Lí kám確定beh允准所揀ê提供者? + confirm_disallow: Lí kám確定無愛允准所揀ê連結? + confirm_disallow_provider: Lí kám確定無愛允准所揀ê提供者? + description_html: Tsia是連結,現tsú時lí ê服侍器hōo通見ê用者大量分享ê。tse通幫tsān lí ê用者tshuē著tsit-má世間有siánn tāi誌。直kàu lí允准公開者,連結bē公開展示。lí通允准á是拒絕單ê連結。 + disallow: 無愛允准連結 + disallow_provider: 無愛允准提供者 + no_link_selected: 因為無揀任何連結,所以lóng無改變 + publishers: + no_publisher_selected: 因為無揀任何提供者,所以lóng無改變 + shared_by_over_week: + other: 頂禮拜hōo %{count} 位用者分享 + title: 趨勢ê連結 + usage_comparison: Tī kin-á日hōo %{today} ê lâng分享,比較tsa-hng有 %{yesterday} ê + not_allowed_to_trend: 無允准刊tī趨勢 + only_allowed: Kan-ta允准 + pending_review: Teh等審核 + preview_card_providers: + allowed: Tsit ê提供者ê連結通刊tī趨勢 + description_html: Tsiah ê域名來自定定受lí ê服侍器分享ê連結。連結bē變做公開趨勢,除非連結ê域名受允准。Lí ê允准(á是拒絕)擴展kàu kiánn域名。 + rejected: Tsit ê提供者ê連結bē刊tī趨勢 + title: 發布者 + rejected: 拒絕ê + statuses: + allow: 允准PO文 + allow_account: 允准作者 + confirm_allow: Lí kám確定beh允准所揀ê狀態? + confirm_allow_account: Lí kám確定beh允准所揀ê口座? + confirm_disallow: Lí kám確定無愛允准所揀ê狀態? + confirm_disallow_account: Lí kám確定無愛允准所揀ê口座? + description_html: Tsiah ê是lí ê服侍器所知ê,tsit-má teh受tsē-tsē分享kap收藏ê PO文。PO文bē公開顯示,除非lí允准作者,而且作者允准in ê口座hőng推薦hōo別lâng。Lí通允准á是拒絕個別PO文。 + disallow: 無允准PO文 + disallow_account: 無允准作者 + no_status_selected: 因為無揀任何趨勢PO文,所以lóng無改變 + not_discoverable: 作者iáu bē揀通hōo lâng發現 + shared_by: + other: Hōo lâng分享á是收藏 %{friendly_count} kái + title: 趨勢ê PO文 + tags: + current_score: 目前ê分數:%{score} + dashboard: + tag_accounts_measure: 無重複用 + tag_languages_dimension: Tsia̍p用ê語言 + tag_servers_dimension: 人氣服侍器 + tag_servers_measure: 無kâng ê服侍器 + tag_uses_measure: Lóng總使用 + description_html: Tsiah ê是hashtag,tsit-má佇lí ê服侍器看見ê tsē-tsē PO文中出現。Tse通tsān lí ê用者tshuē著ta̍k家上tsē討論ê內容。除非lí核准,hashtag bē公開顯示。 + listable: 通受建議 + no_tag_selected: 因為無揀任何標簽,所以lóng無改變 + not_listable: Bē當受建議 + not_trendable: Bē刊tī趨勢 + not_usable: Bē當用 + peaked_on_and_decaying: 佇 %{date} 日上烘,tsit-má teh退火 + title: 趨勢ê hashtag + trendable: 通刊tī趨勢 + trending_rank: '趨勢 #%{rank}' + usable: Ē當用 + usage_comparison: Tī kin-á日hōo %{today} ê lâng用,比較tsa-hng有 %{yesterday} ê + used_by_over_week: + other: 頂禮拜hōo %{count} 位用者用 + title: 推薦kap趨勢 + trending: 趨勢 + warning_presets: + add_new: 加新ê + delete: Thâi掉 + edit_preset: 編輯預設ê警告 + empty: Lí iáu bē定義任何預設ê警告。 + title: 預設ê警告 + webhooks: + add_new: 加添端點 + delete: Thâi掉 + description_html: "Webhook hōo Mastodon 通kā關係所揀ê事件ê即時通知sak kàu lí 家己ê應用程式,就án-ne lí ê應用程式ē當自動啟動反應。" + disable: 停止使用 + disabled: 停用ah + edit: 編輯端點 + empty: Lí iáu bē設定任何webhook端點。 + enable: 啟用 + enabled: 有效ê + enabled_events: + other: "%{count} ê啟用ê端點" + events: 事件 + new: 新ê Webhook + rotate_secret: 換秘密鎖匙 + secret: 簽秘密鎖匙 + status: 狀態 + title: Webhooks + webhook: Webhook + admin_mailer: + auto_close_registrations: + body: 因為欠最近ê管理員活動,佇 %{instance} ê註冊已經自動切kàu需要手動審查,以免 %{instance} hōo 可能行ê pháinn 行為ê當做平臺。Lí不管時lóng通切轉去,開放註冊。 + subject: "%{instance} ê註冊已經自動切kàu需要允准" + new_appeal: + actions: + delete_statuses: thâi掉in ê PO文 + disable: 冷凍in ê口座 + mark_statuses_as_sensitive: 標in ê PO文做敏感ê + none: 警告 + sensitive: 標in ê 口座做敏感ê + silence: 限制in ê口座 + suspend: 停止使用in ê口座 + body: "%{target} teh tuì %{action_taken_by} tī %{date} 所做ê管理決定送申訴,hit ê決定是 %{type}。In有寫:" + next_steps: Lí通允准申訴來取消管理決定,á是kā忽略。 + subject: "%{username} teh tuì tī %{instance} 頂ê管理決定送申訴" + new_critical_software_updates: + body: Mastodon 推出新ê重大版本,請liōng早升級! + subject: "%{instance} 有通the̍h ê Mastodon ê重大更新!" + new_pending_account: + body: 下kha是新口座ê詳細。Lí通允准á是拒絕tsit ê申請。 + subject: "%{instance} 頂有新ê口座 (%{username}) 愛審查" + new_report: + body: "%{reporter} 有檢舉用者 %{target}" + body_remote: Tuì %{domain} 來ê有檢舉 %{target} + subject: "%{instance} ê 新檢舉(#%{id})" + new_software_updates: + body: Mastodon推出新ê版本ah,lí huân-sè想beh升級! + subject: "%{instance} 有通the̍h ê Mastodon ê新版本!" + new_trends: + body: 下kha ê項目愛審查,tsiah ē當公開顯示: + new_trending_links: + title: 趨勢ê連結 + new_trending_statuses: + title: 趨勢ê PO文 + new_trending_tags: + title: 趨勢ê hashtag + subject: "%{instance} 頂有新ê趨勢愛審查" + aliases: + add_new: 加添別名 + created_msg: 別名成功加添ah。Lí ē當開始tuì舊ê口座轉。 + deleted_msg: Thâi掉捌名成功。Bē當tuì hit ê口座轉kàu tsit ê ah。 + empty: Lí bô半个別名。 + hint_html: Nā lí beh tuì別ê口座轉kah tsit ê,lí通佇tsia加別名,tse是必要ê,了後lí ē當kā跟tuè lí ê tuì舊口座suá到tsit ê。Tsit ê動作是無害koh通還原著tī舊口座suá口座。 + remove: 取消連結別名 + appearance: + animations_and_accessibility: 動畫kap無障礙設定 + discovery: 發現 + localization: + body: Mastodon是由志工翻譯。 + guide_link: https://crowdin.com/project/mastodon + guide_link_text: Ta̍k家lóng ē當貢獻。 + sensitive_content: 敏感ê內容 + application_mailer: + notification_preferences: 改電子phue ê偏好 + salutation: "%{name}、" + settings: 改電子phue ê偏好:%{link} + unsubscribe: 取消訂 + view: 檢視: + view_profile: 看個人資料 + view_status: 看PO文 + applications: + created: 應用程式成功加添 + destroyed: 應用程式成功thâi掉 + logout: 登出 + regenerate_token: 重頭產生接近使用ê token + token_regenerated: 接近使用ê token 成功重頭產生 + warning: 注意!毋通kā分享hōo別lâng! + your_token: Lí ê接近使用token + auth: + apply_for_account: 申請口座 + captcha_confirmation: + help_html: Nā lí完成CAPTCHA ê時陣有問題,lí通用 %{email} kap guán 聯絡,guán ē幫tsān lí。 + hint_html: 上尾步ah!Guán愛確認lí是人類(以免pùn-sò訊息入侵!)解決下kha êCAPTCHA了後,ji̍h「繼續」。 + title: 安全檢查 + confirmations: + awaiting_review: Lí ê電子phue地址有確認ah!%{domain} ê人員leh審查lí ê註冊。Nā in允准lí ê口座,Lí ē收著電子phue! + awaiting_review_title: Lí ê註冊當leh審查 + clicking_this_link: Ji̍h tsit ê連結 + login_link: 登入 + proceed_to_login_html: Lí tsit-má通繼續去 %{login_link}。 + redirect_to_app_html: Lí應該受重轉kàu %{app_name}應用程式,若是iáu-buē,試 %{clicking_this_link} á是手動轉去tsit ê應用程式。 + registration_complete: Lí佇 %{domain} ê註冊完成ah! + welcome_title: 歡迎 %{name}! + wrong_email_hint: Nā是電子phue ê地址無正確,lí ē當tī口座設定kā改。 + delete_account: Thâi掉口座 + delete_account_html: Nā lí beh thâi掉lí ê口座,lí ē當ji̍h tsia繼續。Lí著確認動作。 + description: + prefix_invited_by_user: "@%{name} 邀請lí加入tsit ê Mastodon 服侍器!" + prefix_sign_up: Tsit-má註冊Mastodon ê口座! + suffix: 有口座,lí當tuì ta̍k ê Mastodon 服侍器跟tuè lâng、PO更新kap交換訊息等等! + didnt_get_confirmation: Kám無收著確認ê連結? + dont_have_your_security_key: Lí iáu無安全鎖(security key)? + forgot_password: 密碼be記得? + invalid_reset_password_token: 重新設密碼ê token無效á是過期ah。請重頭the̍h新ê。 + link_to_otp: 請tuì lí ê手機á輸入雙因素認證(2FA)ê碼,á是恢復碼。 + link_to_webauth: 用lí ê安全鎖ê裝置 + log_in_with: 登入用 + login: 登入 + logout: 登出 + migrate_account: 轉kàu無kâng ê口座 + migrate_account_html: Nā lí ǹg望引tshuā別人tuè無kâng ê口座,請 kàutsia設定。 + or_log_in_with: Á是登入用 + privacy_policy_agreement_html: 我有讀,同意隱私權政策 + progress: + confirm: 確認電子phue + details: Lí ê詳細 + review: Lán ê審查 + rules: 接受規則 + providers: + cas: CAS + saml: SAML + register: 註冊 + registration_closed: "%{instance} 無接受新ê成員" + resend_confirmation: 重送確認ê連結 + reset_password: 重設密碼 + rules: + accept: 接受 + back: Tńg去 + invited_by: Lí通用有tuì hia收著ê邀請加入 %{domain}: + preamble: Tsiah-ê hōo %{domain} ê管理員設定kap實施。 + preamble_invited: 佇lí繼續進前,請思考 %{domain} ê管理員設立ê基本規則。 + title: Tsi̍t-kuá基本規定。 + title_invited: Lí受邀請ah。 + security: 安全 + set_new_password: 設新ê密碼 + setup: + email_below_hint_html: 請檢查lí ê pùn-sò phue資料giap-á,á是請求koh送tsi̍t改。Lí通改電子phue地址,nā是有出入。 + email_settings_hint_html: 請點gún所送ê連結來驗證 %{email}。Gún tī tsia等lí。 + link_not_received: Kám iáu bē收著連結? + new_confirmation_instructions_sent: Lí ē tī幾分鐘後收著新ê電子phue,有確認連結! + title: 請檢查lí ê收件giap-á + sign_in: + preamble_html: 請用lí佇 %{domain} ê口座kap密碼登入。若是lí ê口座tī別ê服侍器,lí bē當tī tsia登入。 + title: 登入 %{domain} + sign_up: + manual_review: 佇 %{domain} ê註冊ē經過guán ê管理員人工審查。為著tsān guán 進行lí ê註冊,寫tsi̍t點á關係lí家己kap想beh tī %{domain}註冊ê理由。 + preamble: 用tī tsit臺Mastodon服侍器ê口座,lí thang跟tuè其他佇tsit ê網路ê lâng,無論in ê口座khǹg tī tueh。 + title: Lán做伙設定 %{domain}。 + status: + account_status: 口座ê狀態 + confirming: Teh等電子phue確認完成。 + functional: Lí ê口座完全ē當用。 + pending: Lán ê人員teh處理lí ê申請。Tse可能愛一段時間。若是申請允准,lí ē收著e-mail。 + redirecting_to: Lí ê口座無活動,因為tann轉kàu %{acct}。 + self_destruct: 因為 %{domain} teh-beh關掉,lí kan-ta ē當有限接近使用lí ê口座。 + view_strikes: 看早前tuì lí ê口座ê警告 + too_fast: 添表ê速度傷緊,請koh試。 + use_security_key: 用安全鎖 + author_attribution: + example_title: 見本文字 + hint_html: Lí kám佇Mastodon外口寫新聞á是blog文章?控制當in佇Mastodon分享ê時陣,án-tsuánn表示作者資訊。 + instructions: 請確認lí ê文章HTML內底有tsit ê code: + more_from_html: 看 %{name} ê其他內容 + s_blog: "%{name} ê Blog" + then_instructions: 了後,kā公開ê所在ê域名加kàu下kha ê格á: + title: 作者ê落名 + challenge: + confirm: 繼續 + hint_html: "提醒:Guán佇一點鐘內底,bē koh問密碼。" + invalid_password: 無效ê密碼 + prompt: 確認密碼來繼續 + crypto: + errors: + invalid_key: m̄是有效ê Ed25519 á是 Curve25519 鎖 + date: + formats: + default: "%Y年%b月%d日" + with_month_name: "%Y年%B月%d日" + datetime: + distance_in_words: + about_x_hours: "%{count}點鐘前" + about_x_months: "%{count}kò月前" + about_x_years: "%{count}年前" + almost_x_years: 接近%{count}年前 + half_a_minute: 頭tú-á + less_than_x_minutes: "%{count}分鐘前以內" + less_than_x_seconds: 頭tú-á + over_x_years: "%{count}年" + x_days: "%{count}kang" + x_minutes: "%{count}分" + x_months: "%{count}個月" + x_seconds: "%{count}秒" + deletes: + challenge_not_passed: Lí輸入ê資訊毋著 + confirm_password: 輸入lí tsit-má ê密碼,驗證lí ê身份 + confirm_username: 輸入lí ê口座ê名,來確認程序 + proceed: Thâi掉口座 + success_msg: Lí ê口座thâi掉成功 + warning: + before: 佇繼續進前,請斟酌讀下kha ê說明: + caches: 已經hōo其他ê站the̍h著cache ê內容,可能iáu ē有資料 + data_removal: Lí ê PO文kap其他ê資料ē永永thâi掉。 + email_change_html: Lí ē當改lí ê電子phue地址,suah毋免thâi掉lí ê口座。 + email_contact_html: 若是iáu buē收著phue,lí通寄kàu %{email} tshuē幫tsān + email_reconfirmation_html: Nā是lí iáu bē收著驗證phue,lí通koh請求 + irreversible: Lí bē當復原á是重頭啟用lí ê口座 + more_details_html: 其他資訊,請看隱私政策。 + username_available: Lí ê用者名別lâng ē當申請 + username_unavailable: Lí ê口座ē保留,而且別lâng bē當用 + disputes: + strikes: + action_taken: 行ê行動 + appeal: 投訴 + appeal_approved: Tsit ê警告已經投訴成功,bē koh有效。 + appeal_rejected: Tsit ê投訴已經受拒絕 + appeal_submitted_at: 投訴送出去ah + appealed_msg: Lí ê投訴送出去ah。Nā受允准,ē通知lí。 + appeals: + submit: 送投訴 + approve_appeal: 允准投訴 + associated_report: 關聯ê報告 + created_at: 過時ê + description_html: Tsiah ê是 %{instance} ê人員送hōo lí ê,tuì lí ê口座行ê行動kap警告。 + recipient: 送kàu + reject_appeal: 拒絕投訴 + status: 'PO文 #%{id}' + status_removed: 嘟文已經tuì系統thâi掉 + title: "%{action} tuì %{date}" + title_actions: + delete_statuses: Thâi掉PO文 + disable: 冷凍口座 + mark_statuses_as_sensitive: Kā PO文標做敏感ê + none: 警告 + sensitive: Kā 口座文標做敏感ê + silence: 口座制限 + suspend: 停止口座權限 + your_appeal_approved: Lí ê投訴受允准 + your_appeal_pending: Lí有送投訴 + your_appeal_rejected: Lí ê投訴已經受拒絕 + edit_profile: + basic_information: 基本ê資訊 + hint_html: "自訂lâng佇lí ê個人資料kap lí ê Po文邊仔所通看ê。Nā是lí有添好個人資料kap標á,別lâng較有可能kā lí跟tuè轉去,kap lí互動。" + other: 其他 + errors: + '400': Lí所送ê請求無效,á是格式毋著。 + '403': Lí bô權限來看tsit頁。 + '404': Lí teh tshuē ê頁無佇leh。 + '406': Tsit頁bē當照lí所請求ê格式提供。 + '410': Lí所tshuē ê頁,無佇tsia ah。 + '422': + content: 安全驗證出tshê。Lí kám有封鎖cookie? + title: 安全驗證失敗 + '429': 請求siunn tsē + '500': + content: 歹勢,guán ê後臺出問題ah。 + title: Tsit頁無正確 + '503': Tsit頁bē當提供,因為服侍器暫時出tshê。 + noscript_html: Beh用Mastodon web app,請拍開JavaScript。另外,請試Mastodon hōo lí ê平臺用ê app。 + existing_username_validator: + not_found: bē當用tsit ê名tshuē著本地ê用者 + not_found_multiple: tshuē無 %{usernames} + exports: + archive_takeout: + date: 日期 + download: Kā lí ê檔案載落 + hint_html: Lí ē當請求lí ê PO文kap所傳ê媒體ê檔案。輸出ê資料ē用ActivityPub格式,通hōo適用ê軟體讀。Lí ē當每7 kang請求tsi̍t kái。 + in_progress: Teh備辦lí ê檔案…… + request: 請求lí ê檔案 + size: Sài-suh + blocks: Lí封鎖ê + bookmarks: 冊籤 + csv: CSV + domain_blocks: 域名封鎖 + lists: 列單 + mutes: Lí消音ê + storage: 媒體儲存 + featured_tags: + add_new: 加新ê + errors: + limit: Lí已經kā hashtag推薦kàu盡磅ah。 + hint_html: "佇個人資料推薦lí上重要ê hashtag。Tse是誠好ê家私,通the̍h來追蹤lí ê創意作品kap長期計畫。推薦ê hashtag ē佇lí ê個人資料顯目展示,koh允准緊緊接近使用lí家tī ê PO文。" + filters: + contexts: + account: 個人資料 + home: Tshù kap列單 + notifications: 通知 + public: 公共ê時間線 + thread: 會話 + edit: + add_keyword: 加關鍵字 + keywords: 關鍵字 + statuses: 個別ê PO文 + statuses_hint_html: Tsit ê過濾器應用佇所揀ê個別ê PO文,毋管in敢有符合下kha ê關鍵字重頭看,á是kā PO文tuì tsit ê過濾器suá掉。 + title: 編輯過濾器 + errors: + deprecated_api_multiple_keywords: Tsiah ê參數bē當tuì tsit ê應用程式改,因為in應用超過tsi̍t个過濾關鍵字。請用khah新ê應用程式,á是網頁界面。 + invalid_context: 無提供內文á是內文無效 + index: + contexts: "%{contexts} 內底ê過濾器" + delete: Thâi掉 + empty: Lí bô半个過濾器。 + expires_in: 佇 %{distance} kàu期 + expires_on: 佇 %{date} kàu期 + keywords: + other: "%{count} ê關鍵字" + statuses: + other: "%{count} 篇PO文" + statuses_long: + other: "%{count} 篇khàm掉ê個別PO文" + title: 過濾器 + new: + save: 儲存新ê過濾器 + title: 加新ê過濾器 + statuses: + back_to_filter: 轉去過濾器 + batch: + remove: Tuì過濾器內suá掉 + index: + hint: Tsit ê過濾器應用kàu所揀ê個別PO文,無論敢有其他ê條件。Lí ē當tuì網頁界面加koh khah tsē PO文kàu tsit ê過濾器。 + title: 過濾ê PO文 + generic: + all: 全部 + all_items_on_page_selected_html: + other: Tsit頁ê %{count} ê項目有揀ah。 + all_matching_items_selected_html: + other: 符合lí ê tshiau-tshuē ê %{count} ê項目有揀ah。 + cancel: 取消 + changes_saved_msg: 改變儲存成功! + confirm: 確認 + copy: Khóo-pih + delete: Thâi掉 + deselect: 取消lóng揀 + none: 無 + order_by: 排列照 + save_changes: 儲存改變 + select_all_matching_items: + other: 揀 %{count} ê符合lí所tshiau-tshuē ê項目。 + today: 今á日 + validation_errors: + other: 干焦iáu有狀況!請看下kha ê %{count} 項錯誤。 + imports: + errors: + empty: 空ê CSV檔案 + incompatible_type: Kap所揀ê輸入類型無配合 + invalid_csv_file: 無效ê CSV檔案。錯誤:%{error} + over_rows_processing_limit: 包含超過 %{count} tsuā + too_large: 檔案siunn大 + failures: 失敗 + imported: 輸入ah + mismatched_types_warning: Lí ká-ná kā輸入類型揀毋著,請koh確認。 + modes: + merge: 合併 + merge_long: 保存已經有ê記錄,koh加新ê + overwrite: Khàm掉 + overwrite_long: 用新ê記錄khàm掉tann ê + overwrite_preambles: + blocking_html: Lí teh-beh用%{filename} 內底ê %{total_items} ê口座,替換lí ê封鎖列單。 + preambles: + muting_html: Lí teh-beh kā %{filename}內底ê%{total_items} ê口座消音。 + preface: Lí ē當輸入lí對別ê服侍器輸出ê資料,比如lí所跟tuè ê á是封鎖ê ê列單。 + recent_imports: 最近輸入ê + states: + finished: 完成ah + in_progress: Teh處理 + scheduled: 有排入去 + unconfirmed: Iáu未確認 + status: 狀態 + success: Lí ê資料成功傳上去,時到ê處理 + time_started: 開始佇 + titles: + blocking: Teh輸入封鎖ê口座 + bookmarks: Teh輸入冊籤 + domain_blocking: Teh輸入封鎖ê域名 + following: Teh輸入leh跟tuè ê口座 + lists: Teh輸入列單 + muting: Teh輸入消音ê口座 + type: 輸入類型 + type_groups: + constructive: Leh跟tuè ê kap冊籤 + destructive: 封鎖kap消音 + types: + blocking: 封鎖ê列單 + bookmarks: 冊籤 + domain_blocking: 域名封鎖列單 + following: Leh跟tuè ê列單 + lists: 列單 + muting: 消音ê列單 + upload: 傳上去 + invites: + delete: 停用 + expired: 過期ah + expires_in: + '1800': 30 分以後 + '21600': 6 點鐘以後 + '3600': 1 點鐘以後 + '43200': 12 點鐘以後 + '604800': 1 禮拜以後 + '86400': 1 kang以後 + expires_in_prompt: 永永 + generate: 生邀請ê連結 + invalid: Tsit ê邀請無效 + invited_by: Lí予伊邀請: + max_uses: + other: "%{count} 改" + max_uses_prompt: 無限制 + prompt: 生分享ê連結,邀請別lâng佇tsit臺服侍器註冊 + table: + expires_at: 過期ê時 + uses: 使用幾改 + title: 邀請lâng + lists: + errors: + limit: Lí已經加kàu列表數ê盡磅ah。 + login_activities: + authentication_methods: + otp: 雙因素認證app + password: 密碼 + sign_in_token: 電子批ê安全碼 + webauthn: 安全檢查 + description_html: Nā lí看見認bē出ê活動,請考慮改lí ê密碼kap啟用雙因素認證。 + empty: 無認證ê歷史 + failed_sign_in_html: Uì %{ip} (%{browser}) 用 %{method} 試登入失敗 + successful_sign_in_html: Uì %{ip} (%{browser}) 用 %{method} 登入成功 + title: 認證歷史 + mail_subscriptions: + unsubscribe: + action: Hennh,mài訂 + complete: 無訂ah + confirmation_html: Lí kám確定beh取消訂 %{domain} ê Mastodon 內底 ê %{type} kàu lí ê電子批 %{email}?Lí ē當隨時對lí ê電子批通知設定重訂。 + emails: + notification_emails: + favourite: 收藏通知電子批 + follow: 跟tuè通知電子批 + follow_request: 跟tuè請求電子批 + mention: 提起通知電子批 + reblog: 轉送通知電子批 + resubscribe_html: Nā出tshê取消訂,lí通重訂tuì lí ê電子批通知設定。 + success_html: Lí bē koh收著佇 %{domain} ê Mastodon內底ê %{type} kàu lí ê電子批 %{email}。 + title: 取消訂 + media_attachments: + validations: + images_and_video: Bē當佇有影像ê PO文內底加影片 + not_found: Tshuē無媒體 %{ids},或者有kah佇別篇PO文 + not_ready: Bē當kah iáu bē處理suah ê檔案。請等leh koh試! + too_many: Bē當kah超過4 ê檔案 + migrations: + acct: Suá kàu + cancel: 取消重轉 + cancel_explanation: 取消重轉ē重啟用lí tsit-má ê口座,毋過bē kā suá kah tsit ê口座ê跟tuè者suá轉去。 + cancelled_msg: 取消重轉成功。 + errors: + already_moved: kap已經suá ê口座相kâng + missing_also_known_as: 毋是tsit ê口座ê別名 + move_to_self: bē當是目前ê口座 + not_found: tshuē無 + on_cooldown: Lí leh歇喘 + followers_count: 轉ê時ê跟tuè ê + incoming_migrations: 對無仝ê口座轉 + incoming_migrations_html: Nā欲對別ê口座轉kàu tsia,tāi先tio̍h開口座ê別名。 + moved_msg: Lí ê口座tsit-má teh重轉kàu %{acct},lí ê跟tuè ê mā ē轉。 + not_redirecting: Lí ê口座iáu buē重轉kàu其他ê口座。 + on_cooldown: Lí最近有suá lí ê口座。Tsit ê功能ē佇 %{count} kang後koh開放。 + past_migrations: 過去ê遷suá + proceed_with_move: Suá跟tuè ê + redirected_msg: Lí ê口座tsit-má重轉kàu %{acct}。 + redirecting_to: Lí ê口座leh重轉kàu %{acct}。 + set_redirect: 設定重轉 + warning: + backreference_required: 新ê口座定著先設定kātsit-ê口座引用倒轉 + before: 佇繼續進前,請斟酌讀下kha ê說明: + cooldown: 轉口座了後會有等待ê期間,hit時lí bē當koh suá + disabled_account: 了後,lí 目前ê口座ē完全bē當用。毋過,lí ē有接近使用權,來輸出資料kap重啟用。 + followers: Tsit ê動作ē對tsit má ê口座suá逐个跟tuè ê,kàu新ê口座 + only_redirect_html: Á是lí通kan-ta 佇lí ê個人資料khǹg重轉。 + redirect: Lí tsit-má 口座ê個人資料ē更新,加添重轉標示,而且buē包佇tshiau-tshuē ê結果。 + moderation: + title: 管理 + move_handler: + carry_blocks_over_text: Tsit ê用者對lí有封鎖ê %{acct} suá過來。 + carry_mutes_over_text: Tsit ê用者對lí有消音ê %{acct} suá過來。 + copy_account_note_text: Tsit ê用者對 %{acct} suá過來,下kha是lí進前對伊ê註: + navigation: + toggle_menu: 切換目錄 + notification_mailer: + admin: + report: + subject: "%{name} 送出檢舉" + sign_up: + subject: "%{name} 註冊ah" + favourite: + body: Lí ê PO文hōo %{name} kah意: + subject: "%{name} kah意lí ê PO文" + title: 新ê kah意 + follow: + body: "%{name} tsit-má跟tuè lí!" + subject: "%{name} tsit-má跟tuè lí" + title: 新ê跟tuè者 + follow_request: + action: 管理跟tuè ê請求 + body: "%{name} 請求跟tuè lí" + subject: 等待跟tuè lí ê:%{name} + title: 新ê跟tuè請求 + mention: + action: 回應 + body: "%{name} 佇PO文kā lí提起:" + subject: "%{name} 佇PO文kā lí提起" + title: 新ê提起 + poll: + subject: "%{name} 舉辦ê投票suah ah" + reblog: + body: Lí ê PO文hōo %{name} 轉送: + subject: "%{name} 轉送lí ê PO文" + title: 新ê轉送 + status: + subject: "%{name} 頭tú-á PO文" + update: + subject: "%{name} 有編輯PO文" + notifications: + administration_emails: 管理員ê電子phue通知 + email_events: 電子phue通知ê事件 + email_events_hint: 揀lí想beh收ê通知ê事件: + number: + human: + decimal_units: + format: "%n%u" + units: + billion: B + million: M + quadrillion: Q + thousand: K + trillion: T + otp_authentication: + code_hint: 請輸入lí ê驗證應用程式生成ê code,來確認 + description_html: Nā lí啟用用驗證應用程式ê雙因素驗證,登入需要lí有手機á,伊ê產生token hōo lí輸入。 + enable: 啟用 + instructions_html: "請用lí手機á ê TOTP應用程式(親像Google Authenticator)掃描tsit ê QR code。對tsit-má起,hit ê應用程式ê生token,佇lí登入ê時陣著輸入。" + manual_instructions: 若lí bē當掃描 QR code,需要手動輸入下kha ê光碼: + setup: 設定 + wrong_code: Lí輸入ê碼無效!服侍器時間kap設備時間kám lóng正確? + pagination: + newer: 較新ê + next: 後一頁 + older: 較舊ê + prev: 頂一頁 + truncate: "…" + polls: + errors: + already_voted: Lí有投票ah + duplicate_options: 包含重覆ê項目 + duration_too_long: 傷久ah + duration_too_short: 傷緊ah + expired: 投票結束ah + invalid_choice: 所揀ê選項無佇leh + over_character_limit: Bē當比 %{max} ê字元tsē + self_vote: Lí bē當佇lí開ê投票投 + too_few_options: 項目定著愛超過一ê + too_many_options: Bē當包含超過 %{max} ê項目 + preferences: + other: 其他 + posting_defaults: PO文預設值 + public_timelines: 公共ê時間線 + privacy: + hint_html: "自訂lí beh án-nuá hōo lí ê個人資料kap PO文受lâng發現。Mastodon ê tsē-tsē功能nā是拍開,通幫tsān lí接觸kàu較闊ê觀眾。請開一寡時間重看tsiah ê設定,確認in合lí ê使用例。" + privacy: 隱私權 + privacy_hint_html: 控制lí想欲為別lâng ê利益,公開guā tsē內容。Lâng用瀏覽別lâng ê跟tuè koh看in用啥物應用程式PO文,來發現心適ê個人資料kap時行ê應用程式,但是lí凡勢beh保持khàm起來。 + reach: 接觸 + reach_hint_html: 控制lí kám beh 受新lâng發現kap跟tuè。Lí kám beh予lí ê PO文出現佇探索ê頁?Lí kám 想beh予別lâng佇in ê新ê跟tuè建議內看著lí?Lí kám beh允准別lâng自動跟tuè lí,á是beh一ê一ê控制? + search: Tshiau-tshuē + search_hint_html: 控制lí想beh予lâng發現ê方法。Lí kám beh予別lâng用lí公開PO文ê主題揣著lí?Lí kám beh予Mastodon以外ê lâng,佇網路tshiau-tshuē ê時,tshuē著lí ê個人資料?請注意,公開ê資訊bē當保證lóng總予所有tshiau-tshuē ia̋n-jín排除。 + title: 隱私kap資訊ê及至 + privacy_policy: + title: 隱私權政策 + reactions: + errors: + limit_reached: Kàu無kâng回應ê限制ah + unrecognized_emoji: 毋是ē當辨別ê emoji + redirects: + prompt: 若是lí信任tsit ê連結,tshi̍h伊繼續。 + title: Lí teh-beh離開 %{instance}。 + relationships: + activity: 口座ê活動 + confirm_follow_selected_followers: Lí kám確定beh跟tuè所揀ê跟tuè者? + confirm_remove_selected_followers: Lí kám確定beh suá掉所揀ê跟tuè者? + confirm_remove_selected_follows: Lí kám確定beh取消跟tuè所揀ê用者? + dormant: Teh歇睏 + follow_failure: Bē當跟tuè一寡所揀ê口座。 + follow_selected_followers: 跟tuè所揀ê跟tuè者 + followers: 跟tuè伊ê + following: 伊跟tuè ê + invited: 邀請ah + last_active: 上尾ê活動 + most_recent: 最近來ê + moved: 有suá ah + mutual: 相跟tuè + primary: 主要ê + relationship: 關係 + remove_selected_domains: Suá掉所揀ê域名內底ê所有跟tuè者 + remove_selected_followers: Suá掉所揀ê跟tuè者 + remove_selected_follows: 取消跟tuè所揀ê用者 + status: 口座ê狀態 + remote_follow: + missing_resource: Bē當tshuē著lí ê口座ê需要ê重轉URL + reports: + errors: + invalid_rules: 無引用有效ê規則 + rss: + content_warning: 內容警告: + descriptions: + account: 對 @%{acct} 來ê公開ê PO文 + tag: '有 #%{hashtag} 標簽ê公開PO文' + scheduled_statuses: + over_daily_limit: Lí已經超過今á日預排ê PO文khòo-tah(%{limit}) + over_total_limit: Lí已經超過預排ê PO文khòo-tah(%{limit}) + too_soon: 預定PO文ê時間kan-ta tī未來 + self_destruct: + lead_html: "%{domain}不幸teh-beh永永關掉。Lí若佇hia有口座,lí bē當繼續用tse,但是lí iáu ē當請求lí ê資料ê備份。" + title: Tsit ê服侍器teh-beh關掉 + sessions: + activity: 上尾ê活動 + browser: 瀏覽器 + browsers: + alipay: Alipay + blackberry: BlackBerry + chrome: Chrome + edge: Microsoft Edge + electron: Electron + firefox: Firefox + generic: 毋知影ê瀏覽器 + huawei_browser: 華為ê瀏覽器 + ie: Internet Explorer + micro_messenger: 微信 + nokia: Nokia S40 Ovi 瀏覽器 + opera: Opera + otter: Otter + phantom_js: PhantomJS + qq: QQ 瀏覽器 + safari: Safari + uc_browser: UC 瀏覽器 + unknown_browser: 毋知影ê瀏覽器 + weibo: Weibo + current_session: 目前ê session + date: 日期 + description: "%{platform} ê %{browser}" + explanation: Tsiah ê是當leh登入lí ê Mastodon 口座ê網頁瀏覽器。 + ip: IP + platforms: + adobe_air: Adobe Air + android: Android + blackberry: BlackBerry + chrome_os: ChromeOS + firefox_os: Firefox OS + ios: iOS + kai_os: KaiOS + linux: Linux + mac: macOS + unknown_platform: 毋知影ê平台 + windows: Windows + windows_mobile: Windows Mobile + windows_phone: Windows Phone + revoke: 撤去 + revoke_success: Session 撤去成功 + title: Session + view_authentication_history: 看lí ê口座ê驗證歷史 + settings: + account: 口座 + account_settings: 口座ê設定 + aliases: 口座ê別名 + appearance: 外觀 + authorized_apps: 受授權ê應用程式 + back: 轉去Mastodon + delete: Thâi掉口座 + development: 開發 + edit_profile: 編輯個人資料 + export: 輸出 + featured_tags: 特色ê hashtag + import: 輸入 + import_and_export: 輸入kap輸出 + migrate: 口座遷suá + notifications: 電子phue ê通知 + preferences: 偏愛ê設定 + profile: 個人ê資料 + relationships: Leh跟tuè ê kap跟tuè lí ê + severed_relationships: 斷開ê關係 + statuses_cleanup: 自動thâi PO文 + strikes: 管理ê警告 + two_factor_authentication: 雙因素驗證 + webauthn_authentication: 安全鎖匙 + severed_relationships: + download: 載落去(%{count} 份) + event_type: + account_suspension: 中止權限ê口座(%{target_name}) + domain_block: 中止權限ê服侍器(%{target_name}) + user_domain_block: Lí kā %{target_name} 封鎖ah + lost_followers: 失去ê 跟tuè lí ê + lost_follows: 失去ê lí 跟tuè ê + preamble: Lí封鎖域名,á是lí ê管理員決定beh kā別ê服侍器停止權限ê時,Lí可能會失去跟tuè lí ê,á是lí跟tuè ê。若發生,lí會當kā中止聯絡ê ê列單載落去,來檢視或者有可能佇別站kā輸入。 + purged: 關係tsit台服侍器有予lí ê服侍器管理員清掉ê資訊。 + type: 事件 + statuses: + attached: + audio: + other: "%{count} 段聲音" + description: 附件: %{attached} + image: + other: "%{count} 幅圖" + video: + other: "%{count} 段影片" + boosted_from_html: 對 %{acct_link} 轉送 + content_warning: 內容警告: %{warning} + default_language: Kap界面ê語言sio kâng + disallowed_hashtags: + other: 包含bē用得ê標籤: %{tags} + edited_at_html: 佇 %{date} 編輯 + errors: + in_reply_not_found: Lí試應ê PO文假若無佇leh。 + over_character_limit: 超過 %{max} 字ê限制ah + pin_errors: + direct: Kan-ta受提起ê用者tsiah通看ê PO文bē當釘 + limit: Lí已經kā PO文釘kàu盡磅ah。 + ownership: Bē當釘別lâng êPO文 + reblog: 轉送ê PO文 bē當釘 + title: "%{name}:「%{quote}」" + visibilities: + public: 公開ê + statuses_cleanup: + enabled: 自動thâi掉舊ê PO文 + enabled_hint: PO文一下kàu指定ê期限,會自動thâi掉PO文,除非in符合下kha其中一个特例 + exceptions: 特例 + ignore_favs: 忽略收藏數 + ignore_reblogs: 忽略轉PO數 + interaction_exceptions: Tshāi佇互動ê特例 + keep_direct: 保留私人ê短phue + keep_direct_hint: Bē thâi掉任何lí ê私人ê提起 + keep_media: 保留有媒體附件ê PO文 + keep_media_hint: Bē thâi掉lí ê任何有媒體附件ê PO文 + keep_pinned: 保留所釘ê PO文 + keep_pinned_hint: Bē thâi掉任何lí所釘ê PO文 + keep_polls: 保留投票 + keep_polls_hint: Bē thâi掉任何lí ê投票 + keep_self_bookmark: 保留lí加冊籤ê PO文 + keep_self_bookmark_hint: Bē thâi掉lí家kī有加冊籤ê PO文 + keep_self_fav: 保留lí收藏ê PO文 + keep_self_fav_hint: Bē thâi掉lí家kī有收藏ê PO文 + min_age: + '1209600': 2 禮拜 + '15778476': 6 個月 + '2629746': 1 個月 + '31556952': 1 年 + '5259492': 2 個月 + '604800': 1 禮拜 + '63113904': 2 年 + '7889238': 3 個月 + min_age_label: 保持PO文ê期間 + min_favs: 保留超過下kha ê收藏數ê PO文 + min_favs_hint: 若是lí ê PO文有kàu tsit ê收藏數,就bē受thâi掉。留空白表示毋管收藏數,PO文lóng thâi掉 + min_reblogs: 保留超過下kha ê轉送數ê PO文 + min_reblogs_hint: 若是lí ê PO文有kàu tsit ê轉送數,就bē受thâi掉。留空白表示毋管轉送數,PO文lóng thâi掉 + stream_entries: + sensitive_content: 敏感ê內容 + strikes: + errors: + too_late: Lí bē赴申訴tsit ê處份ah + tags: + does_not_match_previous_name: kap進前ê名無kâng + two_factor_authentication: + disable: 停止用雙因素認證 + user_mailer: + welcome: + feature_creativity: Mastodon支持聲音、影kap圖片êPO文、容易使用性ê描述、投票、內容ê警告、動畫ê標頭、自訂ê繪文字kap裁縮小圖ê控制等等,幫tsān lí展現家己。無論beh發表藝術作品、音樂,á是podcast,Mastodon佇tsia為lí服務。 + sign_in_action: 登入 diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 5b11c97aae..f3afef08e3 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -905,7 +905,7 @@ nl: name: Naam newest: Nieuwste oldest: Oudste - open: In het openbaar bekijken + open: Oorspronkelijk bericht bekijken reset: Opnieuw review: Status beoordelen search: Zoeken @@ -1584,7 +1584,7 @@ nl: too_many_options: kan niet meer dan %{max} items bevatten preferences: other: Overig - posting_defaults: Instellingen voor berichten + posting_defaults: Jouw nieuwe berichten public_timelines: Openbare tijdlijnen privacy: hint_html: "Hoe wil je dat jouw profiel en berichten kunnen worden gevonden? Een verscheidenheid aan functies in Mastodon kunnen je helpen om een groter publiek te bereiken als ze zijn ingeschakeld. Neem rustig de tijd om deze instellingen te bekijken, om er zo zeker van te zijn dat ze aan jouw wensen voldoen." @@ -1761,7 +1761,7 @@ nl: unlisted_long: Aan iedereen tonen, maar niet op openbare tijdlijnen statuses_cleanup: enabled: Automatisch oude berichten verwijderen - enabled_hint: Verwijder uw berichten automatisch zodra ze een bepaalde leeftijdsgrens bereiken, tenzij ze overeenkomen met een van de onderstaande uitzonderingen + enabled_hint: Verwijder jouw berichten automatisch zodra ze een bepaalde leeftijdsgrens bereiken, tenzij ze overeenkomen met een van de onderstaande uitzonderingen exceptions: Uitzonderingen explanation: Doordat het verwijderen van berichten de server zwaar belast, gebeurt dit geleidelijk aan op momenten dat de server niet bezig is. Om deze reden kunnen uw berichten een tijdje nadat ze de leeftijdsgrens hebben bereikt worden verwijderd. ignore_favs: Favorieten negeren diff --git a/config/locales/nn.yml b/config/locales/nn.yml index e3957e9e3e..514ca44bbf 100644 --- a/config/locales/nn.yml +++ b/config/locales/nn.yml @@ -776,7 +776,7 @@ nn: publish_discovered_servers: Publiser oppdaga tenarar publish_statistics: Publiser statistikk title: Oppdaging - trends: Trender + trends: Populært domain_blocks: all: Til alle disabled: Til ingen @@ -971,7 +971,7 @@ nn: tag_uses_measure: brukarar totalt description_html: Dette er emneknagger som for øyeblikket vises i mange innlegg som serveren din ser. Det kan hjelpe dine brukere med å finne ut hva folk snakker mest om i øyeblikket. Ingen emneknagger vises offentlig før du godkjenner dem. listable: Kan bli foreslått - no_tag_selected: Ingen merkelappar vart endra fordi ingen var valde + no_tag_selected: Ingen emneknaggar vart endra fordi ingen var valde not_listable: Vil ikke bli foreslått not_trendable: Kjem ikkje til å syna under trendar not_usable: Kan ikke brukes @@ -1706,7 +1706,7 @@ nn: notifications: Epostvarsel preferences: Innstillingar profile: Profil - relationships: Fylgje og fylgjarar + relationships: Fylgjer og fylgjarar severed_relationships: Brotne forhold statuses_cleanup: Automatisert sletting av innlegg strikes: Modereringsadvarsler diff --git a/config/locales/no.yml b/config/locales/no.yml index ce8c51d356..df81392d7e 100644 --- a/config/locales/no.yml +++ b/config/locales/no.yml @@ -45,6 +45,7 @@ title: Endre E-postadressen til %{username} change_role: changed_msg: Rollen ble endret! + edit_roles: Administrer brukerroller label: Endre rolle no_role: Ingen rolle title: Endre rolle for %{username} @@ -129,6 +130,7 @@ resubscribe: Abonner på nytt role: Rolle search: Søk + search_same_email_domain: Andre brukere med det samme epost domenet search_same_ip: Andre brukere med den samme IP-en security: Sikkerhet security_measures: @@ -169,6 +171,7 @@ approve_appeal: Godkjenn anke approve_user: Godkjenn bruker assigned_to_self_report: Tilordne rapport + change_email_user: Endre brukerens e-postadresse change_role_user: Endre rolle for brukeren confirm_user: Bekreft brukeren create_account_warning: Opprett en advarsel @@ -1454,7 +1457,7 @@ billion: Mrd million: Mln quadrillion: Kvd - thousand: T + thousand: k trillion: Trl otp_authentication: code_hint: Skriv inn koden generert av autentiseringsappen din for å bekrefte @@ -1694,6 +1697,7 @@ contrast: Mastodon (Høykontrast) default: Mastodon mastodon-light: Mastodon (Lyst) + system: Automatisk (bruk systemtema) time: formats: default: "%-d. %b %Y, %H:%M" diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml index d3880142cd..d154df7608 100644 --- a/config/locales/pt-BR.yml +++ b/config/locales/pt-BR.yml @@ -13,18 +13,18 @@ pt-BR: following: Seguindo instance_actor_flash: Esta conta é um ator virtual usado para representar o próprio servidor e não um usuário individual. É utilizada para fins de federação e não deve ser suspensa. last_active: última atividade - link_verified_on: O link foi verificado em %{date} + link_verified_on: A propriedade do link foi verificada em %{date} nothing_here: Nada aqui! pin_errors: - following: Você deve estar seguindo a pessoa que você deseja sugerir + following: Você deve já estar seguindo a pessoa que você deseja sugerir posts: one: Publicação other: Publicações posts_tab_heading: Publicações - self_follow_error: Seguir sua conta não é permitido + self_follow_error: Não é permitido seguir sua própria conta admin: account_actions: - action: Tomar uma atitude + action: Efetuar uma ação already_silenced: Esta conta já foi limitada. already_suspended: Esta conta já foi suspensa. title: Moderar %{acct} @@ -1335,8 +1335,8 @@ pt-BR: one: "%{count} item nessa página está selecionado." other: Todos os %{count} itens nessa página estão selecionados. all_matching_items_selected_html: - one: "%{count} item correspondente à sua pesquisa está selecionado." - other: Todos os %{count} itens correspondentes à sua pesquisa estão selecionados. + one: "%{count} item correspondente à sua busca está selecionado." + other: Todos os %{count} itens correspondentes à sua busca estão selecionados. cancel: Cancelar changes_saved_msg: Alterações salvas! confirm: Confirmar @@ -1347,8 +1347,8 @@ pt-BR: order_by: Ordenar por save_changes: Salvar alterações select_all_matching_items: - one: Selecione %{count} item correspondente à sua pesquisa. - other: Selecione todos os %{count} itens correspondentes à sua pesquisa. + one: Selecione %{count} item correspondente à sua busca. + other: Selecione todos os %{count} itens correspondentes à sua busca. today: hoje validation_errors: one: Algo não está certo! Analise o erro abaixo @@ -1459,7 +1459,7 @@ pt-BR: follow: seguir emails de notificação follow_request: emails de seguidores pendentes mention: emails de notificação de menções - reblog: emails de notificação de boosts + reblog: emails de notificação de impulsos resubscribe_html: Se você cancelou sua inscrição por engano, você pode se inscrever novamente em suas configurações de notificações por e-mail. success_html: Você não mais receberá %{type} no Mastodon em %{domain} ao seu endereço de e-mail %{email}. title: Cancelar inscrição @@ -1556,6 +1556,7 @@ pt-BR: quadrillion: QUA thousand: MIL trillion: TRI + unit: '' otp_authentication: code_hint: Digite o código gerado pelo seu aplicativo autenticador para confirmar description_html: Se você ativar a autenticação de dois fatores usando um aplicativo autenticador, ao se conectar será exigido que você esteja com o seu telefone, que gerará tokens para você entrar. @@ -1636,7 +1637,7 @@ pt-BR: account: Publicações públicas de @%{acct} tag: 'Publicações públicas marcadas com #%{hashtag}' scheduled_statuses: - over_daily_limit: Você excedeu o limite de %{limit} publicações agendadas para esse dia + over_daily_limit: Você excedeu o limite de %{limit} publicações agendadas para hoje over_total_limit: Você excedeu o limite de %{limit} publicações agendadas too_soon: A data agendada precisa ser no futuro self_destruct: diff --git a/config/locales/pt-PT.yml b/config/locales/pt-PT.yml index b1afb54a66..aca4d4bb64 100644 --- a/config/locales/pt-PT.yml +++ b/config/locales/pt-PT.yml @@ -1096,7 +1096,7 @@ pt-PT: clicking_this_link: clicar nesta hiperligação login_link: iniciar sessão proceed_to_login_html: Podes agora prosseguir para %{login_link}. - redirect_to_app_html: Devias ter sido reencaminhado para a aplicação %{app_name}. Se isso não aconteceu, tenta %{clicking_this_link} ou regressa manualmente para a aplicação. + redirect_to_app_html: Devia ter sido reencaminhado para a aplicação %{app_name}. Se isso não aconteceu, tente %{clicking_this_link} ou regresse manualmente para a aplicação. registration_complete: O teu registo sem %{domain} está agora concluído! welcome_title: Bem-vindo(a), %{name}! wrong_email_hint: Se este endereço de correio eletrónico não estiver correto, podes alterá-lo nas definições de conta. @@ -1276,7 +1276,7 @@ pt-PT: request: Pedir o teu arquivo size: Tamanho blocks: Bloqueaste - bookmarks: Marcadores + bookmarks: Itens Salvos csv: CSV domain_blocks: Bloqueios de domínio lists: Listas @@ -1370,14 +1370,14 @@ pt-PT: overwrite_long: Substituir os registos atuais pelos novos overwrite_preambles: blocking_html: Estás prestes a substituir a tua lista de bloqueios com até %{total_items} contas de %{filename}. - bookmarks_html: Estás prestes a substituir os teus marcadores com até %{total_items} publicações de %{filename}. + bookmarks_html: Está prestes a substituir os seus itens salvos com até %{total_items} publicações de %{filename}. domain_blocking_html: Estás prestes a substituir a tua lista de bloqueios de domínio com até %{total_items} domínios de %{filename}. following_html: Estás prestes a seguir até %{total_items} contas de %{filename} e parar de seguir quaisquer outras contas. lists_html: Estás prestes a substituir as tuas listas pelo conteúdo de %{filename}. Até %{total_items} contas serão adicionadas a novas listas. muting_html: Estás prestes a substituir a tua lista de contas ocultadas com até %{total_items} contas de %{filename}. preambles: blocking_html: Estás prestes a bloquear até %{total_items} contas de %{filename}. - bookmarks_html: Estás prestes a adicionar até %{total_items} publicações de %{filename} aos teus marcadores. + bookmarks_html: Está prestes a adicionar até %{total_items} publicações de %{filename} aos seus itens salvos. domain_blocking_html: Estás prestes a bloquear até %{total_items} domínios de %{filename}. following_html: Estás prestes a seguir até %{total_items} contas de %{filename}. lists_html: Estás prestes a adicionar até %{total_items} contas do ficheiro %{filename} para as tuas listas. Novas listas serão criadas se não existir uma lista onde as adicionar. @@ -1394,18 +1394,18 @@ pt-PT: time_started: Iniciado em titles: blocking: Importar contas bloqueadas - bookmarks: Importar marcadores + bookmarks: Importar Itens Salvos domain_blocking: Importar domínios bloqueados following: Importar contas seguidas lists: Importar listas muting: Importar contas ocultadas type: Tipo de importação type_groups: - constructive: Seguidores e marcadores + constructive: Seguidores e Itens Salvos destructive: Bloqueios e ocultados types: blocking: Lista de bloqueios - bookmarks: Marcadores + bookmarks: Itens Salvos domain_blocking: Lista de domínios bloqueados following: Lista de pessoas que estás a seguir lists: Listas @@ -1459,7 +1459,7 @@ pt-PT: follow: e-mails de notificação de seguidor follow_request: e-mails de pedido de seguidor mention: e-mails de notificação de menção - reblog: e-mails de notificação de impulsos + reblog: e-mails de notificação de partilhas resubscribe_html: Se tiveres anulado a subscrição por engano, podes voltar a subscrevê-la nas definições de notificação por e-mail. success_html: Não receberás novamente %{type} do Mastodon em %{domain} para o teu e-mail em %{email}. title: Cancelar subscrição @@ -1535,8 +1535,8 @@ pt-PT: poll: subject: A sondagem de %{name} terminou reblog: - body: 'A tua publicação foi impulsionada por %{name}:' - subject: "%{name} impulsionou a tua publicação" + body: 'A tua publicação foi partilhada por %{name}:' + subject: "%{name} partilhou a sua publicação" title: Novo impulso status: subject: "%{name} acabou de publicar" @@ -1735,7 +1735,7 @@ pt-PT: video: one: "%{count} vídeo" other: "%{count} vídeos" - boosted_from_html: Impulsionado por %{acct_link} + boosted_from_html: Partilhado por %{acct_link} content_warning: 'Aviso de conteúdo: %{warning}' default_language: Igual ao idioma da interface disallowed_hashtags: @@ -1749,7 +1749,7 @@ pt-PT: direct: As publicações que só são visíveis para os utilizadores mencionados não podem ser fixadas limit: Já fixaste a quantidade máxima de publicações ownership: Não podem ser fixadas publicações de outras pessoas - reblog: Não é possível fixar um impulso + reblog: Não é possível fixar uma partilha title: '%{name}: "%{quote}"' visibilities: direct: Direto @@ -1765,9 +1765,9 @@ pt-PT: exceptions: Exceções explanation: Como eliminar publicações é uma operação custosa, isto é feito lentamente ao longo do tempo, quando o servidor não está ocupado. Por esta razão, as tuas publicações podem ser eliminadas um pouco depois de atingirem o limite de idade definido. ignore_favs: Ignorar favoritos - ignore_reblogs: Ignorar os impulsos + ignore_reblogs: Ignorar partilhas interaction_exceptions: Exceções baseadas em interações - interaction_exceptions_explanation: Tem em atenção que não há garantia de que as mensagens sejam eliminadas se ficarem abaixo do limite de favoritos ou de impulsionamento depois de os terem ultrapassado. + interaction_exceptions_explanation: Observe que não há garantia que as publicações serão excluídas se ficarem abaixo do limite de favoritos ou partilhas depois de terem ultrapassado esses limites. keep_direct: Manter mensagens diretas keep_direct_hint: Não elimina nenhuma das tuas mensagens diretas keep_media: Manter publicações com anexos de multimédia @@ -1776,8 +1776,8 @@ pt-PT: keep_pinned_hint: Não elimina nenhuma das tuas publicações afixadas keep_polls: Manter sondagens keep_polls_hint: Não elimina nenhuma das tuas sondagens - keep_self_bookmark: Manter as publicações que marquei - keep_self_bookmark_hint: Não elimina as tuas próprias publicações se as tiveres nos marcadores + keep_self_bookmark: Manter as publicações que salvou + keep_self_bookmark_hint: Não eliminar as suas próprias publicações se as tiver salvo keep_self_fav: Manter as publicações que adicionei aos favoritos keep_self_fav_hint: Não elimina as tuas próprias publicações se as tiveres adicionado aos favoritos min_age: @@ -1792,8 +1792,8 @@ pt-PT: min_age_label: Limite de idade min_favs: Manter publicações adicionadas aos favoritos pelos menos min_favs_hint: Não elimina nenhuma das tuas publicações que tenham sido adicionadas aos favoritos este número de vezes. Deixa em branco para eliminar publicações, independentemente do número de vezes que tenham sido adicionadas aos favoritos - min_reblogs: Manter as publicações impulsionadas, pelo menos - min_reblogs_hint: Não elimina nenhuma das tuas mensagens que tenham sido impulsionada pelo menos este número de vezes. Deixa em branco para eliminar as mensagens independentemente do número de impulsionamentos + min_reblogs: Manter, pelo menos, as publicações partilhadas + min_reblogs_hint: Não elimina nenhuma das suas publicações que tenha sido partilhadas pelo menos este número de vezes. Deixe em branco para eliminar publicações independentemente do número de partilhas stream_entries: sensitive_content: Conteúdo sensível strikes: @@ -1900,7 +1900,7 @@ pt-PT: checklist_subtitle: 'Vamos começar nesta nova fronteira social:' checklist_title: Passos de boas-vindas edit_profile_action: Personalizar - edit_profile_step: Aumenta as tuas interações com um perfil completo. + edit_profile_step: Aumente as suas interações ao ter um perfil mais completo. edit_profile_title: Personaliza o teu perfil explanation: Aqui estão algumas dicas para começar feature_action: Mais informações @@ -1942,7 +1942,7 @@ pt-PT: seamless_external_login: A sessão foi iniciada através de um serviço externo, pelo que as definições de palavra-passe e e-mail não estão disponíveis. signed_in_as: 'Registado como:' verification: - extra_instructions_html: Dica: a hiperligação no teu site pode ser invisível. A parte importante é rel="me" que impede a falsificação de identidade em sítios na web com conteúdos gerados pelos utilizadores. Podes até utilizar uma etiqueta link no cabeçalho da página ao invés de a, mas o HTML deve ser acessível sem executar JavaScript. + extra_instructions_html: Dica: a hiperligação no seu site pode ser invisível. A parte importante é rel="me" que impede a falsificação de identidade em sítios na web com conteúdos gerados pelos utilizadores. Pode até utilizar uma etiqueta link no cabeçalho da página ao invés de a, mas o HTML deve ser acessível sem executar JavaScript. here_is_how: Eis o que fazer hint_html: "Verificar a sua identidade no Mastodon é para todos. Baseado em normas públicas da web, agora e para sempre gratuitas. Tudo o que precisas é de um site pessoal pelo qual as pessoas te reconheçam. Quando colocas no teu perfil uma hiperligação para esse site, vamos verificar que o site tem uma hiperligação de volta para o teu perfil e mostrar um indicador visual." instructions_html: Copia e cola o código abaixo no HTML do teu site. Em seguida, adiciona o endereço do teu site num dos campos extras no teu perfil, na aba "Editar perfil" e guarda as alterações. diff --git a/config/locales/ru.yml b/config/locales/ru.yml index 90a6c99f3c..283ed84f60 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -29,179 +29,179 @@ ru: admin: account_actions: action: Выполнить действие - already_silenced: Эта учетная запись уже ограничена. - already_suspended: Действие этой учетной записи уже приостановлено. + already_silenced: Эта учётная запись уже ограничена. + already_suspended: Эта учётная запись уже заблокирована. title: Произвести модерацию учётной записи %{acct} account_moderation_notes: - create: Создать - created_msg: Заметка модератора успешно создана! - destroyed_msg: Заметка модератора успешно удалена! + create: Создать заметку + created_msg: Заметка для модераторов добавлена + destroyed_msg: Заметка для модераторов удалена accounts: - add_email_domain_block: Забанить email домен - approve: Подтвердить - approved_msg: Успешно одобрена заявка на регистрацию %{username} + add_email_domain_block: " Добавить блокировку по домену эл. почты" + approve: Одобрить + approved_msg: Заявка на регистрацию %{username} одобрена are_you_sure: Вы уверены? - avatar: Аватар + avatar: Фото профиля by_domain: Домен change_email: - changed_msg: Адрес эл. почты успешно изменен! - current_email: Текущий e-mail - label: Сменить e-mail - new_email: Новый e-mail - submit: Сменить e-mail - title: Сменить e-mail для %{username} + changed_msg: Адрес электронной почты изменён + current_email: Текущий адрес электронной почты + label: Изменить адрес эл. почты + new_email: Новый адрес электронной почты + submit: Изменить адрес электронной почты + title: Изменить адрес электронной почты пользователя %{username} change_role: - changed_msg: Роль успешно изменена! + changed_msg: Роль изменена edit_roles: Управление ролями пользователей label: Изменить роль - no_role: Нет роли - title: Изменить роль %{username} + no_role: Без роли + title: Изменить роль пользователя %{username} confirm: Подтвердить - confirmed: Подтверждено - confirming: Подтверждение + confirmed: Подтверждена + confirming: Ожидает подтверждения custom: Другое delete: Удалить данные - deleted: Удалён + deleted: Удалена demote: Разжаловать - destroyed_msg: Данные %{username} поставлены в очередь на удаление - disable: Заморозка - disable_sign_in_token_auth: Отключить аутентификацию по e-mail кодам + destroyed_msg: Данные %{username} будут удалены в ближайшее время + disable: Отключить + disable_sign_in_token_auth: Отключить аутентификацию с помощью одноразового пароля по эл. почте disable_two_factor_authentication: Отключить 2FA - disabled: Отключено + disabled: Отключена display_name: Отображаемое имя domain: Домен - edit: Изменить - email: E-mail - email_status: Статус e-mail + edit: Редактировать + email: Адрес электронной почты + email_status: Подтверждение учётной записи enable: Включить - enable_sign_in_token_auth: Включить аутентификацию по e-mail кодам - enabled: Включен - enabled_msg: Учётная запись %{username} успешно разморожена + enable_sign_in_token_auth: Включить аутентификацию с помощью одноразового пароля по эл. почте + enabled: Включена + enabled_msg: Отменено отключение учётной записи %{username} followers: Подписчики follows: Подписки - header: Шапка + header: Обложка профиля inbox_url: URL входящих invite_request_text: Причины для присоединения invited_by: Приглашение выдал(а) - ip: IP + ip: IP-адрес joined: Дата регистрации location: all: Все local: Локальные - remote: Удаленные - title: Размещение - login_status: Статус учётной записи - media_attachments: Медиафайлы - memorialize: Сделать мемориалом - memorialized: Превращён в памятник - memorialized_msg: "%{username} успешно превращён в памятник" + remote: С других серверов + title: По расположению + login_status: Состояние учётной записи + media_attachments: Медиавложения + memorialize: Почтить память + memorialized: Мемориальная + memorialized_msg: Учётная запись %{username} превращена в мемориальную moderation: active: Действующие all: Все - disabled: Отключено - pending: В ожидании + disabled: Отключённые + pending: Ожидают одобрения silenced: Ограниченные suspended: Заблокированные - title: Модерация + title: По состоянию moderation_notes: Заметки модератора most_recent_activity: Последняя активность - most_recent_ip: Последний IP + most_recent_ip: Недавние IP-адреса no_account_selected: Ничего не изменилось, так как ни одна учётная запись не была выделена - no_limits_imposed: Без ограничений + no_limits_imposed: Ограничения отсутствуют no_role_assigned: Роль не присвоена - not_subscribed: Не подписаны - pending: Ожидает рассмотрения - perform_full_suspension: Блокировка - previous_strikes: Предыдущие замечания + not_subscribed: Подписка отсутствует + pending: Ожидает одобрения + perform_full_suspension: Заблокировать + previous_strikes: Зафиксированные нарушения previous_strikes_description_html: - few: У этой учётной записи %{count} замечания. - many: У этой учётной записи %{count} замечаний. - one: У этой учётной записи одно замечание. - other: У этой учетной записи %{count} замечание. - promote: Повысить + few: За этой учётной записью числится %{count} нарушения. + many: За этой учётной записью числится %{count} нарушений. + one: За этой учётной записью числится %{count} нарушение. + other: За этой учётной записью числится %{count} нарушений. + promote: Сделать администратором protocol: Протокол - public: Публичный + public: Профиль push_subscription_expires: Подписка PuSH истекает redownload: Обновить аватар redownloaded_msg: Профиль %{username} успешно обновлен из оригинала reject: Отклонить - rejected_msg: Успешно отклонено приложение для регистрации %{username} + rejected_msg: Заявка на регистрацию %{username} отклонена remote_suspension_irreversible: Данные этого аккаунта были необратимо удалены. remote_suspension_reversible_hint_html: Учётная запись была заблокирована, и данные будут полностью удалены %{date}. До этого момента её можно восстановить без каких-либо неприятных последствий. Если вы хотите немедленно удалить все данные учётной записи, вы можете сделать это ниже. - remove_avatar: Удалить аватар - remove_header: Убрать шапку - removed_avatar_msg: Аватар %{username} успешно удален - removed_header_msg: Успешно удалено изображение заголовка %{username} + remove_avatar: Удалить фото профиля + remove_header: Удалить обложку профиля + removed_avatar_msg: Фото профиля %{username} удалено + removed_header_msg: Обложка профиля %{username} удалена resend_confirmation: already_confirmed: Этот пользователь уже подтвержден send: Повторно отправить ссылку подтверждения success: Ссылка для подтверждения успешно отправлена! reset: Сбросить reset_password: Сбросить пароль - resubscribe: Переподписаться + resubscribe: Пересоздать подписку role: Роль search: Поиск - search_same_email_domain: Другие пользователи с тем же почтовым доменом - search_same_ip: Другие пользователи с таким же IP + search_same_email_domain: Другие пользователи с тем же доменом эл. почты + search_same_ip: Другие пользователи с тем же IP-адресом security: Безопасность security_measures: only_password: Только пароль password_and_2fa: Пароль и 2FA - sensitive: Деликатный + sensitive: Скрыть медиа sensitized: отмечено как деликатный контент shared_inbox_url: URL общих входящих show: created_reports: Жалобы, отправленные с этой учётной записи targeted_reports: Жалобы на эту учётную запись - silence: Скрытие - silenced: Заглушен + silence: Ограничить + silenced: Ограничена statuses: Посты - strikes: Предыдущие замечания + strikes: Зафиксированные нарушения subscribe: Подписаться suspend: Заблокировать - suspended: Заморожен + suspended: Заблокирована suspension_irreversible: Данные этой учётной записи были необратимо удалены. Вы можете разблокировать учетную запись, чтобы сделать её доступной, но это не восстановит ранее имевшиеся в ней данные. suspension_reversible_hint_html: Учётная запись была заблокирована, и данные будут полностью удалены %{date}. До этого момента её можно восстановить без каких-либо неприятных последствий. Если вы хотите немедленно удалить все данные учётной записи, вы можете сделать это ниже. title: Учётные записи unblock_email: Разблокировать e-mail адрес unblocked_email_msg: E-mail адрес %{username} разблокирован unconfirmed_email: Неподтверждённый e-mail - undo_sensitized: Снять отметку "деликатный" - undo_silenced: Отменить скрытие - undo_suspension: Снять блокировку - unsilenced_msg: Ограничения с учётной записи %{username} сняты успешно + undo_sensitized: Не скрывать медиа + undo_silenced: Не ограничивать + undo_suspension: Разблокировать + unsilenced_msg: Отменено ограничение учётной записи %{username} unsubscribe: Отписаться - unsuspended_msg: Учётная запись %{username} успешно разморожена + unsuspended_msg: Учётная запись %{username} разблокирована username: Имя пользователя view_domain: Просмотр сводки по домену - warn: Предупреждение + warn: Предупредить web: Веб whitelisted: В белом списке action_logs: action_types: - approve_appeal: Одобрение обжалований - approve_user: Утверждение регистраций + approve_appeal: Удовлетворение апелляции + approve_user: Одобрение регистрации assigned_to_self_report: Присвоение жалоб - change_email_user: Смена e-mail пользователей - change_role_user: Смена ролей пользователей - confirm_user: Подтверждение пользователей - create_account_warning: Выдача предупреждения - create_announcement: Создание объявлений - create_canonical_email_block: Создание блокировок e-mail + change_email_user: Смена адреса эл. почты пользователя + change_role_user: Изменение роли пользователя + confirm_user: Подтверждение пользователя + create_account_warning: Вынесение предупреждения + create_announcement: Создание объявления + create_canonical_email_block: Добавление блокировки по адресу эл. почты create_custom_emoji: Добавление эмодзи create_domain_allow: Разрешение доменов create_domain_block: Блокировка доменов - create_email_domain_block: Создание доменных блокировок e-mail + create_email_domain_block: Добавление блокировки по домену эл. почты create_ip_block: Создание правил для IP-адресов create_unavailable_domain: Добавление домена в список недоступных - create_user_role: Создание ролей + create_user_role: Создание роли demote_user: Разжалование пользователей - destroy_announcement: Удаление объявлений - destroy_canonical_email_block: Удаление блокировок e-mail + destroy_announcement: Удаление объявления + destroy_canonical_email_block: Удаление блокировки по адресу эл. почты destroy_custom_emoji: Удаление эмодзи destroy_domain_allow: Отзыв разрешений для доменов destroy_domain_block: Разблокировка доменов - destroy_email_domain_block: Удаление доменных блокировок e-mail + destroy_email_domain_block: Удаление блокировки по домену эл. почты destroy_instance: Очистить домен destroy_ip_block: Удаление правил для IP-адресов destroy_status: Удаление постов @@ -209,10 +209,10 @@ ru: destroy_user_role: Удаление ролей disable_2fa_user: Отключение 2FA disable_custom_emoji: Отключение эмодзи - disable_sign_in_token_auth_user: Отключение аутентификации по e-mail кодам + disable_sign_in_token_auth_user: Отключение аутентификации с помощью одноразового пароля по эл. почте disable_user: Заморозка пользователей enable_custom_emoji: Включение эмодзи - enable_sign_in_token_auth_user: Включение аутентификации по e-mail кодам + enable_sign_in_token_auth_user: Включение аутентификации с помощью одноразового пароля по эл. почте enable_user: Разморозка пользователей memorialize_account: Присвоение пользователям статуса «мемориала» promote_user: Повышение пользователей @@ -239,8 +239,8 @@ ru: update_status: Изменение постов update_user_role: Изменение ролей actions: - approve_appeal_html: "%{name} одобрил(а) обжалование действий модерации от %{target}" - approve_user_html: "%{name} утвердил(а) регистрацию %{target}" + approve_appeal_html: "%{name} удовлетворил(а) апелляцию %{target}" + approve_user_html: "%{name} одобрил(а) заявку на регистрацию %{target}" assigned_to_self_report_html: "%{name} назначил(а) себя для решения жалобы %{target}" change_email_user_html: "%{name} cменил(а) e-mail адрес пользователя %{target}" change_role_user_html: "%{name} изменил(а) роль %{target}" @@ -269,10 +269,10 @@ ru: destroy_user_role_html: "%{name} удалил(а) роль %{target}" disable_2fa_user_html: "%{name} отключил(а) требование двухэтапной авторизации для пользователя %{target}" disable_custom_emoji_html: "%{name} отключил(а) эмодзи %{target}" - disable_sign_in_token_auth_user_html: "%{name} отключил(а) аутентификацию по e-mail кодам для %{target}" + disable_sign_in_token_auth_user_html: "%{name} отключил(а) аутентификацию с помощью одноразового пароля по эл. почте для %{target}" disable_user_html: "%{name} заморозил(а) пользователя %{target}" enable_custom_emoji_html: "%{name} включил(а) эмодзи %{target}" - enable_sign_in_token_auth_user_html: "%{name} включил(а) аутентификацию по e-mail кодам для %{target}" + enable_sign_in_token_auth_user_html: "%{name} включил(а) аутентификацию с помощью одноразового пароля по эл. почте для %{target}" enable_user_html: "%{name} разморозил(а) пользователя %{target}" memorialize_account_html: "%{name} перевел(а) учётную запись пользователя %{target} в статус памятника" promote_user_html: "%{name} повысил(а) пользователя %{target}" @@ -305,23 +305,23 @@ ru: title: Журнал аудита unavailable_instance: "(доменное имя недоступно)" announcements: - destroyed_msg: Объявление удалено. + destroyed_msg: Объявление удалено edit: title: Редактировать объявление - empty: Объявления не найдены. - live: В эфире + empty: Объявлений не найдено. + live: Опубликованные new: - create: Создать объявление - title: Новое объявление + create: Опубликовать объявление + title: Создать объявление publish: Опубликовать - published_msg: Объявление опубликовано. + published_msg: Объявление опубликовано scheduled_for: Запланировано на %{time} scheduled_msg: Объявление добавлено в очередь публикации. title: Объявления - unpublish: Отменить публикацию - unpublished_msg: Объявление скрыто. - updated_msg: Объявление обновлено. - critical_update_pending: Ожидается обновление критического уровня + unpublish: Скрыть + unpublished_msg: Объявление скрыто + updated_msg: Объявление отредактировано + critical_update_pending: Доступно критическое обновление custom_emojis: assign_category: Задать категорию by_domain: Домен @@ -344,7 +344,7 @@ ru: listed: В списке new: title: Добавить новый эмодзи - no_emoji_selected: Не было изменено ни одного эмодзи + no_emoji_selected: Ничего не изменилось, так как ни один эмодзи не был выделен not_permitted: У вас недостаточно прав для выполнения этого действия overwrite: Заменить shortcode: Краткий код @@ -363,25 +363,25 @@ ru: new_users: новые пользователи opened_reports: новые жалобы pending_appeals_html: - few: "%{count} ожидают аппеляции" - many: "%{count} ожидают апелляции" - one: "%{count} ожидает апелляции" - other: 'Ожидают апелляции: %{count}' + few: "%{count} открытые апелляции" + many: "%{count} открытых апелляций" + one: "%{count} открытая апелляция" + other: "%{count} открытых апелляций" pending_reports_html: - few: "%{count} ожидающих отчета" - many: "%{count} ожидающих отчетов" - one: "%{count} ожидающий отчет" - other: "%{count} ожидающих отчетов" + few: "%{count} открытые жалобы" + many: "%{count} открытых жалоб" + one: "%{count} открытая жалоба" + other: "%{count} открытых жалоб" pending_tags_html: - few: "%{count} ожидающих хэштега" - many: "%{count} ожидающих хэштегов" - one: "%{count} ожидающий хэштег" - other: "%{count} ожидающих хэштегов" + few: "%{count} нерассмотренных хештега" + many: "%{count} нерассмотренных хештегов" + one: "%{count} нерассмотренный хештег" + other: "%{count} нерассмотренных хештегов" pending_users_html: - few: "%{count} ожидающих пользователя" - many: "%{count} ожидающих пользователей" - one: "%{count} ожидающий пользователь" - other: "%{count} ожидающих пользователей" + few: "%{count} заявки на регистрацию" + many: "%{count} заявок на регистрацию" + one: "%{count} заявка на регистрацию" + other: "%{count} заявок на регистрацию" resolved_reports: жалоб решено software: Программное обеспечение sources: Источники регистрации @@ -392,15 +392,15 @@ ru: website: Веб-сайт disputes: appeals: - empty: Обжалования не найдены. - title: Обжалования + empty: Апелляций не найдено. + title: Апелляции domain_allows: - add_new: Внести в белый список - created_msg: Домен добавлен в белый список - destroyed_msg: Домен убран из белого списка + add_new: Внести домен в белый список + created_msg: Домен внесён в белый список, федерация с ним теперь разрешена + destroyed_msg: Домен исключён из белого списка, федерация с ним больше не разрешена export: Экспорт import: Импорт - undo: Убрать из белого списка + undo: Исключить из белого списка domain_blocks: add_new: Заблокировать домен confirm_suspension: @@ -444,31 +444,31 @@ ru: undo: Отменить блокировку домена view: Посмотреть доменные блокировки email_domain_blocks: - add_new: Добавить новую + add_new: Добавить allow_registrations_with_approval: Разрешить регистрацию с одобрением attempts_over_week: - few: "%{count} попытки за последнюю неделю" - many: "%{count} попыток за последнюю неделю" - one: "%{count} попытка за последнюю неделю" + few: "%{count} попытки регистрации за последнюю неделю" + many: "%{count} попыток регистрации за последнюю неделю" + one: "%{count} попытка регистрации за последнюю неделю" other: "%{count} попыток регистрации за последнюю неделю" - created_msg: Домен email забанен, ура - delete: Удалить + created_msg: Домен электронной почты заблокирован + delete: Разблокировать dns: types: mx: Запись MX domain: Домен new: - create: Создать блокировку - resolve: Проверить домен - title: Блокировка нового почтового домена - no_email_domain_block_selected: Блокировки почтовых доменов не были изменены, так как ни один из них не был выбран - not_permitted: Не разрешено - resolved_dns_records_hint_html: Доменное имя указывает на следующие MX-домены, которые в конечном итоге отвечают за прием электронной почты. Блокировка MX-домена будет блокировать регистрации с любого адреса электронной почты, который использует тот же MX-домен, даже если видимое доменное имя отличается от него. Будьте осторожны, чтобы не заблокировать основных провайдеров электронной почты - resolved_through_html: Разрешено через %{domain} - title: Заблокированные e-mail домены + create: Заблокировать домен + resolve: Проверить DNS-записи + title: Заблокировать домен электронной почты + no_email_domain_block_selected: Ничего не изменилось, так как ни один почтовый домен не был выделен + not_permitted: Недостаточно прав + resolved_dns_records_hint_html: Доменное имя указывает на следующие MX-домены, которые в конечном итоге отвечают за приём электронной почты. Блокировка MX-домена приведёт к блокировке регистраций со всех адресов электронной почты, которые используют тот же MX-домен, даже если видимое доменное имя отличается от него. Будьте осторожны, чтобы не заблокировать основных провайдеров электронной почты + resolved_through_html: Из DNS-записей домена %{domain} + title: Блокировки по домену эл. почты export_domain_allows: new: - title: Импорт домена разрешён + title: Импорт белого списка доменов no_file: Файл не выбран export_domain_blocks: import: @@ -482,12 +482,12 @@ ru: title: Импорт доменных блокировок no_file: Файл не выбран follow_recommendations: - description_html: "Следуйте рекомендациям, чтобы помочь новым пользователям быстро находить интересный контент. Если пользователь не взаимодействовал с другими в достаточной степени, чтобы сформировать персонализированные рекомендации, вместо этого рекомендуется использовать эти учетные записи. Они пересчитываются на ежедневной основе на основе комбинации аккаунтов с наибольшим количеством недавних взаимодействий и наибольшим количеством местных подписчиков для данного языка." - language: Для языка - status: Статус + description_html: "Рекомендации профилей помогают новым пользователям быстрее найти что-нибудь интересное. Если пользователь мало взаимодействовал с другими и составить персонализированные рекомендации не получается, будут предложены указанные здесь профили. Эти рекомендации обновляются ежедневно из совокупности учётных записей с наибольшим количеством недавних взаимодействий и наибольшим количеством подписчиков с этого сервера для данного языка." + language: Фильтр по языку + status: Фильтр по состоянию suppress: Скрыть рекомендацию suppressed: Скрыта - title: Рекомендации подписок + title: Рекомендации профилей unsuppress: Восстановить рекомендацию instances: audit_log: @@ -710,16 +710,16 @@ ru: one: "%{count} пользователь" other: "%{count} пользователей" categories: - administration: Администрация + administration: Администрирование devops: DevOps invites: Приглашения - moderation: Модерация - special: Особые + moderation: Модерирование + special: Особые разрешения delete: Удалить - description_html: С помощью ролей пользователей вы можете настроить, к каким функциям и областям Mastodon у ваших пользователей будет доступ. - edit: Изменить роль '%{name}' ' + description_html: С помощью пользовательских ролей вы можете настроить, к каким функциям и разделам Mastodon у ваших пользователей будет доступ. + edit: Редактировать роль '%{name}' everyone: Разрешения по умолчанию - everyone_full_description_html: Это базовая роль, касающаяся всех пользователей, даже тех, кто не имеет назначенной роли. Все другие роли наследуют разрешения от нее. + everyone_full_description_html: Это базовая роль, которая распространяется на всех пользователей, включая тех, кому не присвоена никакая роль. Все другие роли наследуют разрешения от неё. permissions_count: few: "%{count} разрешения" many: "%{count} разрешений" @@ -727,103 +727,100 @@ ru: other: "%{count} разрешений" privileges: administrator: Администратор - administrator_description: Пользователи с этим разрешением будут обходить все права - delete_user_data: Удалить пользовательские данные - delete_user_data_description: Позволяет пользователям удалять данные других пользователей без задержки - invite_users: Пригласить пользователей - invite_users_description: Позволяет пользователям приглашать новых людей на сервер + administrator_description: Пользователи с этим разрешением смогут обойти любую проверку разрешений + delete_user_data: Удаление пользовательских данных + delete_user_data_description: Разрешить пользователям моментально удалять данные других пользователей + invite_users: Приглашение пользователей + invite_users_description: Разрешить пользователям приглашать на этот сервер новых людей manage_announcements: Управление объявлениями - manage_announcements_description: Позволяет пользователям управлять объявлениями на сервере + manage_announcements_description: Разрешить пользователям управлять объявлениями этого сервера manage_appeals: Управление апелляциями - manage_appeals_description: Позволяет пользователям просматривать апелляции на действия модерации - manage_blocks: Управление блоками + manage_appeals_description: Разрешить пользователям рассматривать апелляции на действия модераторов + manage_blocks: Управление блокировками manage_blocks_description: Позволить пользователям блокировать провайдеров электронной почты и IP-адреса - manage_custom_emojis: Управление смайлами - manage_custom_emojis_description: Позволяет пользователям управлять пользовательскими эмодзи на сервере - manage_federation: Управление Федерацией + manage_custom_emojis: Управление эмодзи + manage_custom_emojis_description: Разрешить пользователям управлять эмодзи этого сервера + manage_federation: Управление федерацией с другими серверами manage_federation_description: Позволяет пользователям блокировать или разрешить объединение с другими доменами и контролировать возможность доставки manage_invites: Управление приглашениями manage_invites_description: Позволяет пользователям просматривать и деактивировать пригласительные ссылки manage_reports: Управление жалобами manage_reports_description: Позволяет пользователям просматривать жалобы и осуществлять модерацию по ним manage_roles: Управление ролями - manage_roles_description: Разрешает пользователям управлять ролями и назначать их + manage_roles_description: Разрешить пользователям управлять нижестоящими ролями, а также присваивать эти роли другим пользователям manage_rules: Управление правилами - manage_rules_description: Разрешает пользователям изменять правила на сервере + manage_rules_description: Разрешить пользователям менять правила сервера manage_settings: Управление параметрами manage_settings_description: Разрешает пользователям управлять параметрами сайта manage_taxonomies: Управление трендами manage_taxonomies_description: Позволяет пользователям модерировать список популярного контента и менять настройки хэштегов - manage_user_access: Управление правами пользователей - manage_user_access_description: Разрешает пользователям отключать двухэтапную аутентификацию другим пользователям, менять их e-mail и сбрасывать их пароль + manage_user_access: Управление доступом в учётную запись + manage_user_access_description: Разрешить пользователям отключать двухфакторную аутентификацию другим пользователям, менять адреса электронной почты и сбрасывать пароли manage_users: Управление пользователями manage_users_description: Разрешает пользователям просматривать информацию о других пользователях и применять против них модерацию - manage_webhooks: Управление веб-хуками + manage_webhooks: Управление вебхуками manage_webhooks_description: Разрешает пользователям настраивать веб-хуки для административных событий - view_audit_log: Посмотреть журнал аудита - view_audit_log_description: Позволяет пользователям просматривать историю административных действий на сервере - view_dashboard: Открыть панель управления - view_dashboard_description: Разрешает пользователям просматривать статистику сервера + view_audit_log: Просмотр журнала аудита + view_audit_log_description: Разрешить пользователям просмотр истории административных действий на этом сервере + view_dashboard: Просмотр панели мониторинга + view_dashboard_description: Разрешить пользователям доступ к панели мониторинга и различным метрикам view_devops: DevOps - view_devops_description: Разрешить пользователям доступ к панелям Sidekiq и pgHero + view_devops_description: Разрешить пользователям доступ к панелям управления Sidekiq и pgHero title: Роли rules: add_new: Добавить правило delete: Удалить - description_html: Хотя большинство утверждает, что прочитали и согласны с условиями обслуживания, обычно люди не читают их до тех пор, пока не возникнет проблема. Упростите просмотр правил вашего сервера с первого взгляда, предоставив их в виде простого маркированного списка. Старайтесь, чтобы отдельные правила были краткими и простыми, но старайтесь не разбивать их на множество отдельных элементов. + description_html: Хотя большинство людей утверждают, что они прочитали условия и согласились с ними, обычно никто не читает текст соглашений до тех пор, пока не возникнет проблема. Составьте правила вашего сервера в виде одноуровневого маркированного списка, чтобы было легче увидеть их сразу. Старайтесь, чтобы отдельные правила были простыми и лаконичными, но старайтесь не разбивать их на множество отдельных элементов. edit: Редактировать правило - empty: Правила сервера еще не определены. + empty: Правила сервера еще не добавлены. title: Правила сервера settings: about: - manage_rules: Управление правилами на сервере - preamble: Предоставьте подробную информацию как сервер работает, модерируется, финансируется. - rules_hint: Это отдельное место для правил, которыми должны руководствоваться пользователи. - title: О нас + manage_rules: Перейти к правилам сервера + preamble: Предоставьте подробную информацию о том, как сервер функционирует, модерируется, финансируется. + rules_hint: Для правил, которых должны придерживаться пользователи, есть отдельный раздел. + title: О сервере appearance: - preamble: Настройте веб-интерфейс Мастодона. + preamble: Настройте веб-интерфейс Mastodon. title: Внешний вид branding: - preamble: Брендинг вашего сервера отличает его от других серверов сети. Эта информация может отображаться в различных средах, таких как веб-интерфейс Mastodon, нативные приложения, в виде предпросмотра ссылок на других веб-сайтах, в почтовых приложениях и так далее. По этой причине лучше держать эту информацию ясной, короткой и краткой. + preamble: 'Брендинг вашего сервера отличает его от других серверов сети. Эти сведения могут отображаться в различных средах: веб-интерфейсе Mastodon, нативных приложениях, предпросмотре ссылки на других веб-сайтах и в мессенджерах и так далее. По этой причине лучше формулировать информацию в ясной, лаконичной и понятной форме.' title: Брендинг - captcha_enabled: - desc_html: Это зависит от внешних скриптов из hCaptcha, которые могут представлять интерес для безопасности и конфиденциальности. Кроме того, это может сделать процесс регистрации значительно менее доступным для некоторых (особенно отключенных) людей. По этим причинам просьба рассмотреть альтернативные меры, такие, как регистрация, основанная на официальном утверждении или на приглашении. - title: Запрашивать новых пользователей для решения CAPTCHA для подтверждения учетной записи content_retention: - danger_zone: Осторожно! - preamble: Управление сохранением пользовательского контента в Mastodon. - title: Хранение контента + danger_zone: Небезопасные настройки + preamble: Управляйте тем, как Mastodon сохраняет пользовательские данные. + title: Хранение данных default_noindex: - desc_html: Влияет на всех пользователей, которые не изменили эту настройку сами - title: Исключить пользователей из индексации поисковиками по умолчанию + desc_html: Применяется к тем пользователям, которые не изменили эту настройку сами + title: Не индексировать профили пользователей по умолчанию discovery: - follow_recommendations: Рекомендации подписок - preamble: Наблюдение интересного контента играет важную роль при открытии новых пользователей, которые могут не знать ни одного Mastodon. Контролируйте как работают различные функции обнаружения на вашем сервере. + follow_recommendations: Рекомендации профилей + preamble: Возможность найти интересный контент или получить его в рекомендациях играет важную роль в вовлечении новых пользователей, которые могут ещё не знать никого в Mastodon. Управляйте тем, как различные функции обзора работают на вашем сервере. profile_directory: Каталог профилей public_timelines: Публичные ленты publish_discovered_servers: Публикация списка обнаруженных узлов - publish_statistics: Опубликовать стаитстику + publish_statistics: Публикация статистики title: Обзор - trends: Популярное + trends: Актуальное domain_blocks: - all: Всем + all: Кому угодно disabled: Никому - users: Залогиненным локальным пользователям + users: Авторизованным пользователям этого сервера registrations: - moderation_recommandation: Убедитесь, что у вас есть адекватная и оперативная команда модераторов, прежде чем открывать регистрацию для всех желающих! - preamble: Контролируйте, кто может создать учетную запись на вашем сервере. + moderation_recommandation: Прежде чем открывать регистрацию для всех желающих, убедитесь, что у вас есть компетентная команда модераторов, способная на быструю реакцию! + preamble: Контролируйте, кто может создать учётную запись на вашем сервере. title: Регистрации registrations_mode: modes: - approved: Для регистрации требуется подтверждение - none: Никто не может регистрироваться - open: Все могут регистрироваться - warning_hint: Мы рекомендуем использовать "Требуется одобрение для регистрации", если вы не уверены, что ваша команда модераторов сможет своевременно справиться со спамом и злоумышленными регистрациями. + approved: Регистрация требует подтверждения + none: Никто не может зарегистрироваться + open: Кто угодно может зарегистрироваться + warning_hint: Мы рекомендуем использовать опцию «Регистрация требует подтверждения», если вы не уверены, что ваша команда модераторов сможет своевременно справиться со спамом и злоумышленными регистрациями. security: - authorized_fetch: Требовать аутентификацию от федеративных серверов - authorized_fetch_hint: Требование аутентификации от федеративных серверов позволяет более строго соблюдать блокировки как на уровне пользователя, так и на уровне сервера. Однако при этом снижается производительность, уменьшается охват ваших ответов и могут возникнуть проблемы совместимости с некоторыми федеративными сервисами. Кроме того, это не помешает специальным исполнителям получать ваши публичные сообщения и учётные записи. - authorized_fetch_overridden_hint: В настоящее время вы не можете изменить этот параметр, поскольку он переопределяется переменной среды. - federation_authentication: Принудительная аутентификация федерации + authorized_fetch: Требовать аутентификацию для межсерверного взаимодействия + authorized_fetch_hint: Требование аутентификации для сервер-серверного взаимодействия позволяет более строго соблюдать блокировки как на уровне пользователя, так и на уровне сервера. Однако при этом снижается производительность, уменьшается охват ваших ответов, и могут возникнуть проблемы совместимости с некоторыми федеративными сервисами. Кроме того, это не остановит заинтересованных лиц от получения публичных постов и учётных записей с вашего сервера. + authorized_fetch_overridden_hint: В данный момент вы не можете изменить этот параметр, поскольку он переопределён переменной среды. + federation_authentication: Обязательная аутентификация межсерверного взаимодействия title: Настройки сервера site_uploads: delete: Удалить загруженный файл @@ -1023,17 +1020,17 @@ ru: warning_presets: add_new: Добавить delete: Удалить - edit_preset: Удалить шаблон предупреждения - empty: Вы еще не определили пресеты предупреждений. + edit_preset: Редактировать шаблон предупреждения + empty: Вы ещё не создали ни одного шаблона предупреждения. title: Шаблоны предупреждений webhooks: - add_new: Добавить конечную точку + add_new: Добавить вебхук delete: Удалить description_html: "Вебхуки позволяют Mastodon отправлять вашим приложениям уведомления в реальном времени о выбранных происходящих событиях, а они могут обрабатывать их в автоматическом режиме." disable: Отключить - disabled: Отключено + disabled: Деактивирован edit: Редактировать вебхук - empty: У вас пока нет настроенных конечных точек вебхуков. + empty: Вы ещё не настроили ни одного вебхука. enable: Включить enabled: Активен enabled_events: @@ -1042,9 +1039,9 @@ ru: one: "%{count} событие включено" other: "%{count} событий включено" events: События - new: Новый вебхук + new: Создать вебхук rotate_secret: Сгенерировать новый - secret: Ключ подписи + secret: Секретный ключ status: Состояние title: Вебхуки webhook: Вебхук @@ -1197,7 +1194,7 @@ ru: pending: Ваша заявка ожидает одобрения администраторами, это может занять немного времени. Вы получите письмо, как только заявку одобрят. redirecting_to: Ваша учётная запись деактивированна, потому что вы настроили перенаправление на %{acct}. self_destruct: Поскольку %{domain} закрывается, вы получите ограниченный доступ к вашей учетной записи. - view_strikes: Просмотр предупреждений, которые модераторы выносили вам ранее + view_strikes: Просмотр нарушений, зафиксированных ранее при модерации вашей учётной записи too_fast: Форма отправлена слишком быстро, попробуйте еще раз. use_security_key: Использовать электронный ключ author_attribution: @@ -1260,7 +1257,7 @@ ru: appeal_submitted_at: Апелляция отправлена appealed_msg: Ваша апелляция была отправлена. Если она будет одобрена, вы будете уведомлены. appeals: - submit: Подать обжалование + submit: Подать апелляцию approve_appeal: Одобрить обжалование associated_report: Связанные обращения created_at: Дата @@ -1269,15 +1266,15 @@ ru: reject_appeal: Отклонить обжалование status: 'Пост #%{id}' status_removed: Пост уже удален из системы - title: "%{action} от %{date}" + title: "%{action} (%{date})" title_actions: delete_statuses: Удаление поста - disable: Заморозка аккаунта + disable: Отключение учётной записи mark_statuses_as_sensitive: Помечать посты как деликатные - none: Требующие внимания + none: Предупреждение sensitive: Отметить учетную запись как деликатную - silence: Ограничение учетной записи - suspend: Приостановка Аккаунта + silence: Ограничение учётной записи + suspend: Блокировка учётной записи your_appeal_approved: Ваша апелляция одобрена your_appeal_pending: Вы подали апелляцию your_appeal_rejected: Ваша апелляция отклонена @@ -1493,6 +1490,7 @@ ru: authentication_methods: otp: приложения для генерации кодов password: пароля + sign_in_token: одноразового пароля по эл. почте webauthn: электронного ключа description_html: Если вы заметили действия, которых не совершали, вам следует сменить пароль и включить двухфакторную аутентификацию. empty: История входов отсутствует @@ -1917,7 +1915,7 @@ ru: change_password: сменить пароль details: 'Подробности о новом входе:' explanation: Мы заметили вход в вашу учётную запись с нового IP-адреса. - further_actions_html: Если это были не вы, рекомендуем вам немедленно %{action} и включить двухфакторную авторизацию, чтобы обезопасить свою учётную запись. + further_actions_html: Если это были не вы, рекомендуем немедленно %{action} и включить двухфакторную аутентификацию, чтобы обезопасить свою учётную запись. subject: В вашу учётную запись был выполнен вход с нового IP-адреса title: Выполнен вход warning: diff --git a/config/locales/simple_form.be.yml b/config/locales/simple_form.be.yml index d9306cf81a..8b3077682f 100644 --- a/config/locales/simple_form.be.yml +++ b/config/locales/simple_form.be.yml @@ -40,14 +40,14 @@ be: text: Вы можаце абскардзіць рашэнне толькі адзін раз defaults: autofollow: Людзі, якія зарэгістраваліся праз запрашэнне, аўтаматычна падпішуцца на вас - avatar: WEBP, PNG, GIF ці JPG. Не больш за %{size}. Будзе сціснуты да памеру %{dimensions}} пікселяў + avatar: WEBP, PNG, GIF ці JPG. Не больш за %{size}. Будзе сціснуты да памеру %{dimensions} пікселяў bot: Паведаміць іншым, што гэты ўліковы запіс у асноўным выконвае аўтаматычныя дзеянні і можа не кантралявацца context: Адзін ці некалькі кантэкстаў, да якіх трэба прымяніць фільтр current_password: У мэтах бяспекі, увядзіце пароль бягучага ўліковага запісу current_username: Каб пацвердзіць, увядзіце, калі ласка імя карыстальніка бягучага ўліковага запісу digest: Будзе даслана толькі пасля доўгага перыяду неактыўнасці і толькі, калі Вы атрымалі асабістыя паведамленні падчас Вашай адсутнасці email: Пацвярджэнне будзе выслана па электроннай пошце - header: WEBP, PNG, GIF ці JPG. Не больш за %{size}. Будзе сціснуты да памеру %{dimensions}} пікселяў + header: WEBP, PNG, GIF ці JPG. Не больш за %{size}. Будзе сціснуты да памеру %{dimensions} пікселяў inbox_url: Капіраваць URL са старонкі рэтранслятара, якім вы хочаце карыстацца irreversible: Адфільтраваныя пасты прападуць незваротна, нават калі фільтр потым будзе выдалены locale: Мова карыстальніцкага інтэрфейсу, электронных паведамленняў і апавяшчэнняў @@ -184,7 +184,7 @@ be: avatar: Аватар bot: Гэта бот chosen_languages: Фільтр моў - confirm_new_password: Пацвердзіць новы пароль + confirm_new_password: Пацвердзіце новы пароль confirm_password: Пацвердзіць пароль context: Фільтр кантэкстаў current_password: Бягучы пароль @@ -206,7 +206,7 @@ be: phrase: Ключавое слова ці фраза setting_advanced_layout: Уключыць пашыраны вэб-інтэрфейс setting_aggregate_reblogs: Групаваць прасоўванні ў стужках - setting_always_send_emails: Заўжды дасылаць для апавяшчэнні эл. пошты + setting_always_send_emails: Заўжды дасылаць апавяшчэнні на электронную пошту setting_auto_play_gif: Аўтапрайграванне анімаваных GIF setting_boost_modal: Паказваць акно пацвярджэння перад пашырэннем setting_default_language: Мова допісаў diff --git a/config/locales/simple_form.cy.yml b/config/locales/simple_form.cy.yml index 0af738712d..61b62cd7d2 100644 --- a/config/locales/simple_form.cy.yml +++ b/config/locales/simple_form.cy.yml @@ -247,7 +247,7 @@ cy: activity_api_enabled: Cyhoeddi ystadegau cyfanredol am weithgarwch defnyddwyr yn yr API app_icon: Eicon ap backups_retention_period: Cyfnod cadw archif defnyddwyr - bootstrap_timeline_accounts: Argymhellwch y cyfrifon hyn i ddefnyddwyr newydd bob amser + bootstrap_timeline_accounts: Argymhellwch y cyfrifon hyn i ddefnyddwyr newydd bob tro closed_registrations_message: Neges bersonol pan nad yw cofrestriadau ar gael content_cache_retention_period: Cyfnod cadw cynnwys o bell custom_css: CSS cyfaddas diff --git a/config/locales/simple_form.da.yml b/config/locales/simple_form.da.yml index e8f88f10a5..64e4fccf9d 100644 --- a/config/locales/simple_form.da.yml +++ b/config/locales/simple_form.da.yml @@ -5,7 +5,7 @@ da: account: attribution_domains_as_text: Ét pr. linje. Beskytter mod falske tilskrivninger. discoverable: Dine offentlige indlæg og profil kan blive fremhævet eller anbefalet i forskellige områder af Mastodon, og profilen kan blive foreslået til andre brugere. - display_name: Dit fulde navn eller dit sjove navn. + display_name: Dit fulde navn eller et kaldenavn. fields: Din hjemmeside, dine pronominer, din alder, eller hvad du har lyst til. indexable: Dine offentlige indlæg vil kunne vises i Mastodon-søgeresultater. Folk, som har interageret med dem, vil kunne finde dem uanset. note: 'Du kan @omtale andre personer eller #hashtags.' @@ -98,10 +98,10 @@ da: site_title: Hvordan folk kan henvise til serveren udover domænenavnet. status_page_url: URL'en til en side, hvor status for denne server kan ses under en afbrydelse theme: Tema, som udloggede besøgende og nye brugere ser. - thumbnail: Et ca. 2:1 billede vist sammen med serveroplysningerne. + thumbnail: Et ca. 2:1 billede vist sammen med dine serveroplysninger. timeline_preview: Udloggede besøgende kan gennemse serverens seneste offentlige indlæg. trendable_by_default: Spring manuel gennemgang af trendindhold over. Individuelle elementer kan stadig fjernes fra trends efter kendsgerningen. - trends: Tendenser viser, hvilke indlæg, hashtags og nyheder opnår momentum på serveren. + trends: Trends viser, hvilke indlæg, hashtags og nyhedshistorier der opnår momentum på din server. trends_as_landing_page: Vis tendensindhold til udloggede brugere og besøgende i stedet for en beskrivelse af denne server. Kræver, at tendenser er aktiveret. form_challenge: current_password: Du bevæger dig ind på et sikkert område @@ -122,7 +122,7 @@ da: hint: Valgfrit. Oplys yderligere detaljer om reglen text: Beskriv på en kort og enkel form en regel/krav for brugere på denne server sessions: - otp: 'Angiv tofaktorkoden generet af din mobil-app eller brug en af genoprettelseskoderne:' + otp: 'Angiv tofaktorkoden generet af din mobil-app eller brug en af dine gendannelseskoder:' webauthn: Er det en USB-nøgle, så sørg for at isætte den og, om nødvendigt, åbne den manuelt. settings: indexable: Din profilside kan fremgå i søgeresultater på Google, Bing mv. @@ -150,7 +150,7 @@ da: name: Etiket value: Indhold indexable: Medtag offentlige indlæg i søgeresultater - show_collections: Vis følger og følgere på profil + show_collections: Vis fulgte og følgere på profil unlocked: Acceptér automatisk nye følgere account_alias: acct: Brugernavn på den gamle konto @@ -198,7 +198,7 @@ da: inbox_url: URL til videreformidlingsindbakken irreversible: Fjern istedet for skjul locale: Grænsefladesprog - max_uses: Maks. antal afbenyttelser + max_uses: Maks. antal anvendelser new_password: Ny adgangskode note: Biografi otp_attempt: Tofaktorkode diff --git a/config/locales/simple_form.de.yml b/config/locales/simple_form.de.yml index bca4c8582c..8f9a5c3d95 100644 --- a/config/locales/simple_form.de.yml +++ b/config/locales/simple_form.de.yml @@ -35,19 +35,19 @@ de: ends_at: "(Optional) Die Ankündigung wird zu diesem Zeitpunkt automatisch zurückgezogen" scheduled_at: Leer lassen, um die Ankündigung sofort zu veröffentlichen starts_at: "(Optional) Für den Fall, dass deine Ankündigung an einen bestimmten Zeitraum gebunden ist" - text: Du kannst die Syntax wie für Beiträge verwenden. Bitte berücksichtige den Platz, den die Ankündigung auf dem Bildschirm der Benutzer*innen einnehmen wird + text: Du kannst die reguläre Syntax wie für Beiträge verwenden, also auch Profile erwähnen und Hashtags nutzen. Bitte beachte den Platz, den die Ankündigung auf dem Bildschirm der Benutzer*innen einnehmen wird appeal: text: Du kannst nur einmal Einspruch gegen eine Maßnahme einlegen defaults: autofollow: Personen, die sich über deine Einladung registrieren, folgen automatisch deinem Profil - avatar: WEBP, PNG, GIF oder JPG. Höchstens %{size} groß. Wird auf %{dimensions} px verkleinert + avatar: WebP, PNG, GIF oder JPG. Höchstens %{size} groß. Wird auf %{dimensions} px verkleinert bot: Signalisiert, dass dieses Konto hauptsächlich automatisierte Aktionen durchführt und möglicherweise nicht persönlich betreut wird context: Orte, an denen der Filter aktiv sein soll current_password: Gib aus Sicherheitsgründen bitte das Passwort des aktuellen Kontos ein current_username: Um das zu bestätigen, gib den Profilnamen des aktuellen Kontos ein digest: Wenn du eine längere Zeit inaktiv bist oder du während deiner Abwesenheit in einer privaten Nachricht erwähnt worden bist email: Du wirst eine E-Mail zur Verifizierung dieser E-Mail-Adresse erhalten - header: WEBP, PNG, GIF oder JPG. Höchstens %{size} groß. Wird auf %{dimensions} px verkleinert + header: WebP, PNG, GIF oder JPG. Höchstens %{size} groß. Wird auf %{dimensions} px verkleinert inbox_url: Kopiere die URL von der Startseite des gewünschten Relais irreversible: Bereinigte Beiträge verschwinden unwiderruflich für dich, auch dann, wenn dieser Filter zu einem späteren wieder entfernt wird locale: Die Sprache der Bedienoberfläche, E-Mails und Push-Benachrichtigungen @@ -55,10 +55,10 @@ de: phrase: Wird unabhängig von der Groß- und Kleinschreibung im Text oder der Inhaltswarnung eines Beitrags abgeglichen scopes: Welche Schnittstellen der Applikation erlaubt sind. Wenn du einen Top-Level-Scope auswählst, dann musst du nicht jeden einzelnen darunter auswählen. setting_aggregate_reblogs: Beiträge, die erst kürzlich geteilt wurden, werden nicht noch einmal angezeigt (betrifft nur zukünftig geteilte Beiträge) - setting_always_send_emails: Normalerweise werden Benachrichtigungen nicht per E-Mail versendet, wenn du gerade auf Mastodon aktiv bist + setting_always_send_emails: Normalerweise werden Benachrichtigungen nicht per E-Mail verschickt, wenn du gerade auf Mastodon aktiv bist setting_default_sensitive: Medien, die mit einer Inhaltswarnung versehen worden sind, werden – je nach Einstellung – erst nach einem zusätzlichen Klick angezeigt setting_display_media_default: Medien mit Inhaltswarnung ausblenden - setting_display_media_hide_all: Medien immer ausblenden + setting_display_media_hide_all: Alle Medien grundsätzlich ausblenden setting_display_media_show_all: Medien mit Inhaltswarnung immer anzeigen setting_use_blurhash: Der Farbverlauf basiert auf den Farben der ausgeblendeten Medien, verschleiert aber jegliche Details setting_use_pending_items: Neue Beiträge hinter einem Klick verstecken, anstatt automatisch zu scrollen @@ -70,7 +70,7 @@ de: domain: Das kann die Domain aus einer E-Mail-Adresse oder einem MX-Eintrag sein. Bei der Registrierung eines neuen Profils wird beides überprüft. with_dns_records: Ein Versuch, die DNS-Einträge der Domain aufzulösen, wurde unternommen, und diese Ergebnisse werden unter anderem auch blockiert featured_tag: - name: 'Hier sind ein paar Hashtags, die du in letzter Zeit am häufigsten verwendet hast:' + name: 'Hier sind ein paar Hashtags, die du in letzter Zeit am häufigsten genutzt hast:' filters: action: Gib an, welche Aktion ausgeführt werden soll, wenn ein Beitrag dem Filter entspricht actions: @@ -78,26 +78,26 @@ de: warn: Den gefilterten Beitrag hinter einer Warnung, die den Filtertitel beinhaltet, ausblenden form_admin_settings: activity_api_enabled: Anzahl der wöchentlichen Beiträge, aktiven Profile und Registrierungen auf diesem Server - app_icon: WEBP, PNG, GIF oder JPG. Überschreibt das Standard-App-Symbol auf mobilen Geräten mit einem eigenen Symbol. + app_icon: WebP, PNG, GIF oder JPG. Überschreibt das Standard-App-Symbol auf mobilen Geräten mit einem eigenen Symbol. backups_retention_period: Nutzer*innen haben die Möglichkeit, Archive ihrer Beiträge zu erstellen, die sie später herunterladen können. Wenn ein positiver Wert gesetzt ist, werden diese Archive nach der festgelegten Anzahl von Tagen automatisch aus deinem Speicher gelöscht. bootstrap_timeline_accounts: Diese Konten werden bei den Follower-Empfehlungen für neu registrierte Nutzer*innen oben angeheftet. closed_registrations_message: Wird angezeigt, wenn Registrierungen deaktiviert sind - content_cache_retention_period: Sämtliche Beiträge von anderen Servern (einschließlich geteilte Beiträge und Antworten) werden, unabhängig von der Interaktion der lokalen Nutzer*innen mit diesen Beiträgen, nach der festgelegten Anzahl von Tagen gelöscht. Das betrifft auch Beiträge, die von lokalen Nutzer*innen favorisiert oder als Lesezeichen gespeichert wurden. Private Erwähnungen zwischen Nutzer*innen von verschiedenen Servern werden ebenfalls verloren gehen und können nicht wiederhergestellt werden. Diese Option richtet sich ausschließlich an Server mit speziellen Zwecken und wird die allgemeine Nutzungserfahrung beeinträchtigen, wenn sie für den allgemeinen Gebrauch aktiviert ist. - custom_css: Du kannst benutzerdefinierte Stile auf die Web-Version von Mastodon anwenden. - favicon: WEBP, PNG, GIF oder JPG. Überschreibt das Standard-Mastodon-Favicon mit einem eigenen Symbol. - mascot: Überschreibt die Abbildung in der erweiterten Weboberfläche. + content_cache_retention_period: Sämtliche Beiträge von anderen Servern (einschließlich geteilte Beiträge und Antworten) werden, unabhängig von der Interaktion der lokalen Nutzer*innen mit diesen Beiträgen, nach der festgelegten Anzahl von Tagen gelöscht. Davon sind auch Beiträge betroffen, die von lokalen Nutzer*innen favorisiert oder als Lesezeichen gespeichert wurden. Private Erwähnungen zwischen Nutzer*innen von verschiedenen Servern werden ebenfalls verloren gehen und können nicht wiederhergestellt werden. Diese Option richtet sich ausschließlich an Server mit speziellen Zwecken und wird die allgemeine Nutzungserfahrung beeinträchtigen, wenn sie für den allgemeinen Gebrauch aktiviert ist. + custom_css: Du kannst eigene Stylesheets für das Webinterface von Mastodon verwenden. + favicon: WebP, PNG, GIF oder JPG. Überschreibt das Standard-Mastodon-Favicon mit einem eigenen Favicon. + mascot: Überschreibt die Abbildung im erweiterten Webinterface. media_cache_retention_period: Mediendateien aus Beiträgen von externen Nutzer*innen werden auf deinem Server zwischengespeichert. Wenn ein positiver Wert gesetzt ist, werden die Medien nach der festgelegten Anzahl von Tagen gelöscht. Sollten die Medien nach dem Löschvorgang wieder angefragt werden, werden sie erneut heruntergeladen, sofern der ursprüngliche Inhalt noch vorhanden ist. Es wird empfohlen, diesen Wert auf mindestens 14 Tage festzulegen, da die Häufigkeit der Abfrage von Linkvorschaukarten für Websites von Dritten begrenzt ist und die Linkvorschaukarten sonst nicht vor Ablauf dieser Zeit aktualisiert werden. peers_api_enabled: Eine Liste von Domains, die diesem Server im Fediverse begegnet sind. Hierbei werden keine Angaben darüber gemacht, ob du mit einem bestimmten Server föderierst, sondern nur, dass dein Server davon weiß. Dies wird von Diensten verwendet, die allgemein Statistiken übers Ferdiverse sammeln. profile_directory: Dieses Verzeichnis zeigt alle Profile an, die sich dafür entschieden haben, entdeckt zu werden. - require_invite_text: Wenn Registrierungen eine manuelle Genehmigung erfordern, dann werden Nutzer einen Grund für ihre Registrierung angeben müssen + require_invite_text: Wenn Registrierungen eine manuelle Genehmigung erfordern, müssen Benutzer*innen ihren Beitrittswunsch begründen site_contact_email: Wie man dich bei rechtlichen oder Support-Anfragen erreichen kann. site_contact_username: Wie man dich auf Mastodon erreichen kann. site_extended_description: Alle zusätzlichen Informationen, die für Besucher*innen und deine Benutzer*innen nützlich sein könnten. Kann mit der Markdown-Syntax formatiert werden. site_short_description: Eine kurze Beschreibung zur eindeutigen Identifizierung des Servers. Wer betreibt ihn, für wen ist er bestimmt? - site_terms: Verwende eine eigene Datenschutzerklärung oder lasse das Feld leer, um die allgemeine Vorlage zu verwenden. Kann mit der Markdown-Syntax formatiert werden. + site_terms: Verwende eine eigene Datenschutzerklärung oder lass das Feld leer, um die allgemeine Vorlage zu verwenden. Kann mit der Markdown-Syntax formatiert werden. site_title: Wie Personen neben dem Domainnamen auf deinen Server verweisen können. status_page_url: Link zu einer Internetseite, auf der der Serverstatus während eines Ausfalls angezeigt wird - theme: Das Design, das abgemeldete Besucher und neue Benutzer sehen. + theme: Das Design, das nicht angemeldete Personen sehen. thumbnail: Ein Bild ungefähr im 2:1-Format, das neben den Server-Informationen angezeigt wird. timeline_preview: Nicht angemeldete Personen können die neuesten öffentlichen Beiträge dieses Servers aufrufen. trendable_by_default: Manuelles Überprüfen angesagter Inhalte überspringen. Einzelne Elemente können später noch aus den Trends entfernt werden. @@ -128,16 +128,16 @@ de: indexable: Deine Profilseite kann in Suchergebnissen auf Google, Bing und anderen erscheinen. show_application: Du wirst immer sehen können, über welche App dein Beitrag veröffentlicht wurde. tag: - name: Du kannst nur die Groß- und Kleinschreibung der Buchstaben ändern, um es z. B. lesbarer zu machen + name: Du kannst nur die Groß- und Kleinschreibung der Buchstaben ändern, um z. B. die Lesbarkeit zu verbessern user: chosen_languages: Wenn du hier eine oder mehrere Sprachen auswählst, werden ausschließlich Beiträge in diesen Sprachen in deinen öffentlichen Timelines angezeigt role: Die Rolle bestimmt, welche Berechtigungen das Konto hat. user_role: - color: Farbe, die für diese Rolle in der gesamten Benutzerschnittstelle verwendet wird, als RGB im Hexadezimalsystem - highlighted: Dies macht die Rolle öffentlich im Profil sichtbar + color: Farbe, die für diese Rolle im Webinterface verwendet wird, als RGB im Hexadezimalsystem + highlighted: Moderative/administrative Rolle im öffentlichen Profil anzeigen name: Name der Rolle, der auch öffentlich als Badge angezeigt wird, sofern dies unten aktiviert ist - permissions_as_keys: Benutzer*innen mit dieser Rolle haben Zugriff auf... - position: Höhere Rollen entscheiden über Konfliktlösungen zu gewissen Situationen. Bestimmte Aktionen können nur mit geringfügigeren Rollen durchgeführt werden + permissions_as_keys: Konten mit dieser Rolle haben eine Berechtigung für … + position: Eine höherrangige Rolle entscheidet in bestimmten Situationen über Konfliktlösungen. Einige Aktionen können jedoch nur mit untergeordneten Rollen durchgeführt werden webhook: events: Zu sendende Ereignisse auswählen template: Erstelle deine eigenen JSON-Nutzdaten mit Hilfe von Variablen-Interpolation. Leer lassen für Standard-JSON. @@ -145,7 +145,7 @@ de: labels: account: attribution_domains_as_text: Websites, die auf dich verweisen dürfen - discoverable: Profil und Beiträge in Suchalgorithmen berücksichtigen + discoverable: Profil und Beiträge in Empfehlungsalgorithmen berücksichtigen fields: name: Beschriftung value: Inhalt @@ -153,7 +153,7 @@ de: show_collections: Follower und „Folge ich“ im Profil anzeigen unlocked: Neue Follower automatisch akzeptieren account_alias: - acct: Adresse des alten Kontos + acct: Adresse des vorherigen Kontos account_migration: acct: Adresse des neuen Kontos account_warning_preset: @@ -162,7 +162,7 @@ de: admin_account_action: include_statuses: Gemeldete Beiträge der E-Mail beifügen send_email_notification: Benachrichtigung per E-Mail - text: Individuelle Warnung + text: Individuelle Verwarnung type: Aktion types: disable: Einfrieren @@ -198,9 +198,9 @@ de: inbox_url: URL des Relais-Posteingangs irreversible: Endgültig, nicht nur temporär ausblenden locale: Sprache des Webinterface - max_uses: Maximale Anzahl von Verwendungen + max_uses: Maximale Anzahl von Registrierungen new_password: Neues Passwort - note: Biografie + note: Über mich otp_attempt: Zwei-Faktor-Authentisierung password: Passwort phrase: Wort oder Formulierung @@ -215,7 +215,7 @@ de: setting_delete_modal: Bestätigungsdialog beim Löschen eines Beitrags anzeigen setting_disable_hover_cards: Profilvorschau deaktivieren, wenn die Maus über das Profil bewegt wird setting_disable_swiping: Wischgesten deaktivieren - setting_display_media: Darstellung von Medien + setting_display_media: Darstellung setting_display_media_default: Standard setting_display_media_hide_all: Alle Medien ausblenden setting_display_media_show_all: Alle Medien anzeigen @@ -247,12 +247,12 @@ de: activity_api_enabled: Aggregierte Nutzungsdaten über die API veröffentlichen app_icon: App-Symbol backups_retention_period: Aufbewahrungsfrist für Archive - bootstrap_timeline_accounts: Neuen Nutzern immer diese Konten empfehlen + bootstrap_timeline_accounts: Neuen Nutzer*innen immer diese Konten empfehlen closed_registrations_message: Nachricht, falls Registrierungen deaktiviert sind content_cache_retention_period: Aufbewahrungsfrist für externe Inhalte custom_css: Eigenes CSS favicon: Favicon - mascot: Benutzerdefiniertes Maskottchen (Legacy) + mascot: Eigenes Maskottchen (Veraltet) media_cache_retention_period: Aufbewahrungsfrist für Medien im Cache peers_api_enabled: Die entdeckten Server im Fediverse über die API veröffentlichen profile_directory: Profilverzeichnis aktivieren @@ -276,7 +276,7 @@ de: interactions: must_be_follower: Benachrichtigungen von Profilen, die mir nicht folgen, ausblenden must_be_following: Benachrichtigungen von Profilen, denen ich nicht folge, ausblenden - must_be_following_dm: Private Nachrichten von Profilen, denen ich nicht folge, ausblenden + must_be_following_dm: Private Erwähnungen von Profilen, denen ich nicht folge, ausblenden invite: comment: Kommentar invite_request: @@ -290,21 +290,21 @@ de: sign_up_requires_approval: Registrierungen begrenzen severity: Regel notification_emails: - appeal: Jemand hat Einspruch gegen eine Moderationsentscheidung erhoben + appeal: Jemand hat Einspruch gegen eine Maßnahme erhoben digest: Zusammenfassung senden - favourite: Mein Beitrag wurde favorisiert - follow: Jemand Neues folgt mir - follow_request: Jemand möchte mir folgen + favourite: wenn jemand meinen Beitrag favorisiert + follow: Ein neues Profil folgt mir + follow_request: Ein Profil fragt an, mir zu folgen mention: Ich wurde erwähnt pending_account: Ein neues Konto muss überprüft werden - reblog: Mein Beitrag wurde geteilt + reblog: wenn jemand meinen Beitrag teilt report: Eine neue Meldung wurde eingereicht software_updates: all: Über alle Updates informieren - critical: Nur über kritische Updates informieren + critical: Nur über kritische Sicherheitsupdates informieren label: Eine neue Mastodon-Version ist verfügbar none: Nie über Updates informieren (nicht empfohlen) - patch: Über Fehlerkorrekturen informieren + patch: Über kleinere Fehlerkorrekturen informieren trending_tag: Neuer Trend erfordert eine Überprüfung rule: hint: Zusätzliche Informationen @@ -313,16 +313,16 @@ de: indexable: Profilseite in Suchmaschinen einbeziehen show_application: App anzeigen, über die ich einen Beitrag veröffentlicht habe tag: - listable: Erlaube, dass dieser Hashtag in Suchen und Empfehlungen erscheint + listable: Dieser Hashtag darf in Suchen und Empfehlungen erscheinen name: Hashtag - trendable: Erlaube, dass dieser Hashtag in den Trends erscheint - usable: Beiträge dürfen diesen Hashtag lokal verwenden + trendable: Dieser Hashtag darf in den Trends erscheinen + usable: Dieser Hashtag darf lokal in Beiträgen verwendet werden user: role: Rolle time_zone: Zeitzone user_role: color: Badge-Farbe - highlighted: Rolle als Badge im Profil anzeigen + highlighted: Badge im Profil name: Name permissions_as_keys: Berechtigungen position: Priorität diff --git a/config/locales/simple_form.el.yml b/config/locales/simple_form.el.yml index 6387b696a2..21295a3344 100644 --- a/config/locales/simple_form.el.yml +++ b/config/locales/simple_form.el.yml @@ -4,10 +4,10 @@ el: hints: account: attribution_domains_as_text: Μία ανά γραμμή. Προστατεύει από ψευδείς ιδιότητες. - discoverable: Οι δημόσιες δημοσιεύσεις και το προφίλ σου μπορεί να εμφανίζονται ή να συνιστώνται σε διάφορους τομείς του Mastodon και το προφίλ σου μπορεί να προτείνεται σε άλλους χρήστες. + discoverable: Οι δημόσιες αναρτήσεις και το προφίλ σου μπορεί να αναδεικνύονται ή να συνιστώνται σε διάφορους τομείς του Mastodon και το προφίλ σου μπορεί να προτείνεται σε άλλους χρήστες. display_name: Το πλήρες ή το αστείο σου όνομα. fields: Η αρχική σου σελίδα, αντωνυμίες, ηλικία, ό,τι θες. - indexable: Οι δημόσιες δημοσιεύσεις σου μπορεί να εμφανιστούν στα αποτελέσματα αναζήτησης στο Mastodon. Άτομα που έχουν αλληλεπιδράσει με τις δημοσιεύσεις σου μπορεί να είναι σε θέση να τις αναζητήσουν όπως και να 'χει. + indexable: Οι δημόσιες αναρτήσεις σου μπορεί να εμφανιστούν στα αποτελέσματα αναζήτησης στο Mastodon. Άτομα που έχουν αλληλεπιδράσει με τις αναρτήσεις σου μπορεί να είναι σε θέση να τις αναζητήσουν όπως και να 'χει. note: 'Μπορείς να @επισημάνεις άλλα άτομα ή #ετικέτες.' show_collections: Οι χρήστες θα είναι σε θέση να περιηγηθούν στα άτομα που ακολουθείς και στους ακόλουθούς σου. Άτομα που ακολουθείς θα βλέπουν ότι τους ακολουθείς όπως και να 'χει. unlocked: Οι χρήστες θα είναι σε θέση να σε ακολουθήσουν χωρίς να ζητούν έγκριση. Κατάργησε την επιλογή αν θες να αξιολογείς τα αιτήματα ακολούθησης και να επιλέξεις αν θα αποδεχθείς ή απορρίψεις νέους ακόλουθους. @@ -16,7 +16,7 @@ el: account_migration: acct: Όρισε το username@domain του λογαριασμού στον οποίο θέλεις να μετακινηθείς account_warning_preset: - text: Μπορείς να χρησιμοποιήσεις το ίδιο συντακτικό των αναρτήσεων όπως URL, ετικέτες και αναφορές + text: Μπορείς να χρησιμοποιήσεις το ίδιο συντακτικό των αναρτήσεων όπως URL, ετικέτες και επισημάνσεις title: Προαιρετικό. Δεν εμφανίζεται στον παραλήπτη admin_account_action: include_statuses: Ο χρήστης θα δει ποιες αναρτήσεις προκάλεσαν την προειδοποίηση ή την ενέργεια των συντονιστών @@ -27,7 +27,7 @@ el: disable: Απέτρεψε το χρήστη από τη χρήση του λογαριασμού του, αλλά μη διαγράψεις ή αποκρύψεις το περιεχόμενό του. none: Χρησιμοποίησε αυτό για να στείλεις μια προειδοποίηση στον χρήστη, χωρίς να ενεργοποιήσεις οποιαδήποτε άλλη ενέργεια. sensitive: Ανάκασε όλα τα συνημμένα πολυμέσα αυτού του χρήστη να επισημαίνονται ως ευαίσθητα. - silence: Απέτρεψετον χρήστη από το να μπορεί να δημοσιεύει με δημόσια ορατότητα, να αποκρύπτει τις αναρτήσεις του και τις ειδοποιήσεις του από άτομα που δεν τον ακολουθούν. Κλείνει όλες τις αναφορές εναντίον αυτού του λογαριασμού. + silence: Απέτρεψε τον χρήστη από το να μπορεί να δημοσιεύει με δημόσια ορατότητα, να αποκρύπτει τις αναρτήσεις του και τις ειδοποιήσεις του από άτομα που δεν τον ακολουθούν. Κλείνει όλες τις αναφορές εναντίον αυτού του λογαριασμού. suspend: Αποτροπή οποιασδήποτε αλληλεπίδρασης από ή προς αυτόν τον λογαριασμό και διαγραφή των περιεχομένων του. Αναστρέψιμο εντός 30 ημερών. Κλείνει όλες τις αναφορές εναντίον αυτού του λογαριασμού. warning_preset_id: Προαιρετικό. Μπορείς να προσθέσεις επιπλέον κείμενο μετά το προκαθορισμένο κείμενο announcement: @@ -41,7 +41,7 @@ el: defaults: autofollow: Όσοι εγγραφούν μέσω της πρόσκλησης θα σε ακολουθούν αυτόματα avatar: WEBP, PNG, GIF ή JPG. Το πολύ %{size}. Θα υποβαθμιστεί σε %{dimensions}px - bot: Ο λογαριασμός αυτός εκτελεί κυρίως αυτοματοποιημένες ενέργειες και ίσως να μην παρακολουθείται + bot: Υποδεικνύει σε άλλους χρήστες ότι ο λογαριασμός αυτός εκτελεί κυρίως αυτοματοποιημένες ενέργειες και ίσως να μην παρακολουθείται context: Ένα ή περισσότερα πλαίσια στα οποία μπορεί να εφαρμόζεται αυτό το φίλτρο current_password: Για λόγους ασφαλείας παρακαλώ γράψε τον κωδικό του τρέχοντος λογαριασμού current_username: Για επιβεβαίωση, παρακαλώ γράψε το όνομα χρήστη του τρέχοντος λογαριασμού @@ -49,11 +49,11 @@ el: email: Θα σου σταλεί email επιβεβαίωσης header: WEBP, PNG, GIF ή JPG. Το πολύ %{size}. Θα υποβαθμιστεί σε %{dimensions}px inbox_url: Αντέγραψε το URL της αρχικής σελίδας του ανταποκριτή που θέλεις να χρησιμοποιήσεις - irreversible: Οι φιλτραρισμένες αναρτήσεις θα εξαφανιστούν αμετάκλητα, ακόμα και αν το φίλτρο αργότερα αφαιρεθεί + irreversible: Οι φιλτραρισμένες αναρτήσεις θα εξαφανιστούν αμετάκλητα, ακόμη και αν το φίλτρο αργότερα αφαιρεθεί locale: Η γλώσσα χρήσης, των email και των ειδοποιήσεων push password: Χρησιμοποίησε τουλάχιστον 8 χαρακτήρες - phrase: Θα ταιριάζει ανεξαρτήτως πεζών/κεφαλαίων ή προειδοποίησης περιεχομένου μιας ανάρτησης - scopes: Ποια API θα επιτρέπεται στην εφαρμογή να χρησιμοποιήσεις. Αν επιλέξεις κάποιο υψηλό εύρος εφαρμογής, δε χρειάζεται να επιλέξεις και το καθένα ξεχωριστά. + phrase: Θα αντιστοιχηθεί ανεξαρτήτως πεζών/κεφαλαίων ενός κειμένου ή προειδοποίησης περιεχομένου μιας ανάρτησης + scopes: Ποια API θα επιτρέπεται να χρησιμοποιήσει η εφαρμογή. Αν επιλέξεις κάποιο υψηλό εύρος εφαρμογής, δε χρειάζεται να επιλέξεις και το καθένα ξεχωριστά. setting_aggregate_reblogs: Απόκρυψη των νέων αναρτήσεων για τις αναρτήσεις που έχουν ενισχυθεί πρόσφατα (επηρεάζει μόνο τις νέες ενισχύσεις) setting_always_send_emails: Κανονικά οι ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου δεν θα αποστέλλονται όταν χρησιμοποιείτε ενεργά το Mastodon setting_default_sensitive: Τα ευαίσθητα πολυμέσα είναι κρυμμένα και εμφανίζονται με ένα κλικ @@ -63,30 +63,30 @@ el: setting_use_blurhash: Οι χρωματισμοί βασίζονται στα χρώματα του κρυμμένου πολυμέσου αλλά θολώνουν τις λεπτομέρειες setting_use_pending_items: Εμφάνιση ενημερώσεων ροής μετά από κλικ αντί για αυτόματη κύλισή τους username: Μπορείς να χρησιμοποιήσεις γράμματα, αριθμούς και κάτω παύλες - whole_word: Όταν η λέξη ή η φράση κλειδί είναι μόνο αλφαριθμητική, θα εφαρμοστεί μόνο αν ταιριάζει με ολόκληρη τη λέξη + whole_word: Όταν η λέξη-κλειδί ή η φράση είναι μόνο αλφαριθμητική, θα εφαρμοστεί μόνο αν αντιστοιχεί με ολόκληρη τη λέξη domain_allow: domain: Ο τομέας αυτός θα επιτρέπεται να ανακτά δεδομένα από αυτό τον διακομιστή και τα εισερχόμενα δεδομένα θα επεξεργάζονται και θα αποθηκεύονται email_domain_block: domain: Αυτό μπορεί να είναι το όνομα τομέα που εμφανίζεται στη διεύθυνση email ή η εγγραφή MX που χρησιμοποιεί. Θα ελέγχονται κατά την εγγραφή. with_dns_records: Θα γίνει απόπειρα ανάλυσης των εγγραφών DNS του τομέα και τα αποτελέσματα θα μπουν και αυτά σε μαύρη λίστα featured_tag: - name: 'Εδώ είναι μερικά από τα hashtags που χρησιμοποιήσατε περισσότερο πρόσφατα:' + name: 'Εδώ είναι μερικές από τις ετικέτες που χρησιμοποίησες περισσότερο πρόσφατα:' filters: - action: Επιλέξτε ποια ενέργεια θα εκτελεστεί όταν μια ανάρτηση ταιριάζει με το φίλτρο + action: Επιλέξτε ποια ενέργεια θα εκτελεστεί όταν μια ανάρτηση αντιστοιχεί με το φίλτρο actions: hide: Πλήρης αποκρυψη του φιλτραρισμένου περιεχομένου, συμπεριφέρεται σαν να μην υπήρχε warn: Απόκρυψη φιλτραρισμένου περιεχομένου πίσω από μια προειδοποίηση που αναφέρει τον τίτλο του φίλτρου form_admin_settings: - activity_api_enabled: Καταμέτρηση τοπικά δημοσιευμένων δημοσιεύσεων, ενεργών χρηστών και νέων εγγραφών σε εβδομαδιαία πακέτα + activity_api_enabled: Καταμέτρηση τοπικά δημοσιευμένων αναρτήσεων, ενεργών χρηστών και νέων εγγραφών σε εβδομαδιαία πακέτα app_icon: WEBP, PNG, GIF ή JPG. Παρακάμπτει το προεπιλεγμένο εικονίδιο εφαρμογής σε κινητές συσκευές με προσαρμοσμένο εικονίδιο. backups_retention_period: Οι χρήστες έχουν τη δυνατότητα να δημιουργήσουν αρχεία των αναρτήσεων τους για να κατεβάσουν αργότερα. Όταν οριστεί μια θετική τιμή, αυτά τα αρχεία θα διαγράφονται αυτόματα από τον αποθηκευτικό σου χώρο μετά τον καθορισμένο αριθμό ημερών. bootstrap_timeline_accounts: Αυτοί οι λογαριασμοί θα καρφιτσωθούν στην κορυφή των νέων χρηστών που ακολουθούν τις συστάσεις. closed_registrations_message: Εμφανίζεται όταν κλείνουν οι εγγραφές - content_cache_retention_period: Όλες οι αναρτήσεις από άλλους διακομιστές (συμπεριλαμβανομένων των ενισχύσεων και απαντήσεων) θα διαγραφούν μετά τον καθορισμένο αριθμό ημερών, χωρίς να λαμβάνεται υπόψη οποιαδήποτε αλληλεπίδραση τοπικού χρήστη με αυτές τις αναρτήσεις. Αυτό περιλαμβάνει αναρτήσεις όπου ένας τοπικός χρήστης την έχει χαρακτηρίσει ως σελιδοδείκτη ή αγαπημένη. Θα χαθούν επίσης ιδιωτικές αναφορές μεταξύ χρηστών από διαφορετικές οντότητες και θα είναι αδύνατο να αποκατασταθούν. Η χρήση αυτής της ρύθμισης προορίζεται για οντότητες ειδικού σκοπού και χαλάει πολλές προσδοκίες του χρήστη όταν εφαρμόζεται για χρήση γενική σκοπού. - custom_css: Μπορείς να εφαρμόσεις προσαρμοσμένα στυλ στην έκδοση ιστοσελίδας του Mastodon. + content_cache_retention_period: Όλες οι αναρτήσεις από άλλους διακομιστές (συμπεριλαμβανομένων των ενισχύσεων και απαντήσεων) θα διαγραφούν μετά τον καθορισμένο αριθμό ημερών, χωρίς να λαμβάνεται υπόψη οποιαδήποτε αλληλεπίδραση τοπικού χρήστη με αυτές τις αναρτήσεις. Αυτό περιλαμβάνει αναρτήσεις όπου ένας τοπικός χρήστης την έχει χαρακτηρίσει ως σελιδοδείκτη ή αγαπημένη. Θα χαθούν επίσης ιδιωτικές επισημάνσεις μεταξύ χρηστών από διαφορετικές οντότητες και θα είναι αδύνατο να αποκατασταθούν. Η χρήση αυτής της ρύθμισης προορίζεται για οντότητες ειδικού σκοπού και χαλάει πολλές προσδοκίες του χρήστη όταν εφαρμόζεται για χρήση γενική σκοπού. + custom_css: Μπορείς να εφαρμόσεις προσαρμοσμένα στυλ στην έκδοση ιστού του Mastodon. favicon: WEBP, PNG, GIF ή JPG. Παρακάμπτει το προεπιλεγμένο favicon του Mastodon με ένα προσαρμοσμένο εικονίδιο. mascot: Παρακάμπτει την εικονογραφία στην προηγμένη διεπαφή ιστού. - media_cache_retention_period: Τα αρχεία πολυμέσων από αναρτήσεις που γίνονται από απομακρυσμένους χρήστες αποθηκεύονται προσωρινά στο διακομιστή σου. Όταν οριστεί μια θετική τιμή, τα μέσα θα διαγραφούν μετά τον καθορισμένο αριθμό ημερών. Αν τα δεδομένα πολυμέσων ζητηθούν μετά τη διαγραφή τους, θα γίνει ε, αν το πηγαίο περιεχόμενο είναι ακόμα διαθέσιμο. Λόγω περιορισμών σχετικά με το πόσο συχνά οι κάρτες προεπισκόπησης συνδέσμων συνδέονται σε ιστοσελίδες τρίτων, συνιστάται να ορίσεις αυτή την τιμή σε τουλάχιστον 14 ημέρες ή οι κάρτες προεπισκόπησης συνδέσμων δεν θα ενημερώνονται κατ' απάιτηση πριν από εκείνη την ώρα. + media_cache_retention_period: Τα αρχεία πολυμέσων από αναρτήσεις που γίνονται από απομακρυσμένους χρήστες αποθηκεύονται προσωρινά στο διακομιστή σου. Όταν οριστεί μια θετική τιμή, τα μέσα θα διαγραφούν μετά τον καθορισμένο αριθμό ημερών. Αν τα δεδομένα πολυμέσων ζητηθούν μετά τη διαγραφή τους, θα γίνει λήψη τους ξανά, αν το πηγαίο περιεχόμενο είναι ακόμη διαθέσιμο. Λόγω περιορισμών σχετικά με το πόσο συχνά οι κάρτες προεπισκόπησης συνδέσμων συνδέονται σε ιστοσελίδες τρίτων, συνιστάται να ορίσεις αυτή την τιμή σε τουλάχιστον 14 ημέρες ή οι κάρτες προεπισκόπησης συνδέσμων δεν θα ενημερώνονται κατ' απάιτηση πριν από εκείνη την ώρα. peers_api_enabled: Μια λίστα με ονόματα τομέα που συνάντησε αυτός ο διακομιστής στο fediverse. Δεν περιλαμβάνονται δεδομένα εδώ για το αν συναλλάσσετε με ένα συγκεκριμένο διακομιστή, μόνο ότι ο διακομιστής σας το ξέρει. Χρησιμοποιείται από υπηρεσίες που συλλέγουν στατιστικά στοιχεία για την συναλλαγή με γενική έννοια. profile_directory: Ο κατάλογος προφίλ παραθέτει όλους τους χρήστες που έχουν επιλέξει να είναι ανακαλύψιμοι. require_invite_text: 'Όταν η εγγραφή απαιτεί χειροκίνητη έγκριση, κάνε το πεδίο κειμένου: «Γιατί θέλετε να συμμετάσχετε;» υποχρεωτικό αντί για προαιρετικό' @@ -99,16 +99,16 @@ el: status_page_url: Το URL μιας σελίδας όπου κάποιος μπορεί να δει την κατάσταση αυτού του διακομιστή κατά τη διάρκεια μιας διακοπής λειτουργίας theme: Θέμα που βλέπουν αποσυνδεδεμένοι επισκέπτες ή νέοι χρήστες. thumbnail: Μια εικόνα περίπου 2:1 που εμφανίζεται παράλληλα με τις πληροφορίες του διακομιστή σου. - timeline_preview: Αποσυνδεδεμένοι επισκέπτες θα μπορούν να περιηγηθούν στις πιο πρόσφατες δημόσιες δημοσιεύσεις που είναι διαθέσιμες στο διακομιστή. - trendable_by_default: Παράλειψη χειροκίνητης αξιολόγησης του περιεχομένου σε τάση. Μεμονωμένα στοιχεία μπορούν ακόμα να αφαιρεθούν από τις τάσεις μετέπειτα. - trends: Τάσεις δείχνουν ποιες δημοσιεύσεις, ετικέτες και ειδήσεις προκαλούν έλξη στο διακομιστή σας. + timeline_preview: Αποσυνδεδεμένοι επισκέπτες θα μπορούν να περιηγηθούν στις πιο πρόσφατες δημόσιες αναρτήσεις που είναι διαθέσιμες στο διακομιστή. + trendable_by_default: Παράλειψη χειροκίνητης αξιολόγησης του περιεχομένου σε τάση. Μεμονωμένα στοιχεία μπορούν ακόμη να αφαιρεθούν από τις τάσεις μετέπειτα. + trends: Τάσεις δείχνουν ποιες αναρτήσεις, ετικέτες και ειδήσεις προκαλούν έλξη στο διακομιστή σας. trends_as_landing_page: Εμφάνιση περιεχομένου σε τάση σε αποσυνδεδεμένους χρήστες και επισκέπτες αντί για μια περιγραφή αυτού του διακομιστή. Απαιτεί οι τάσεις να έχουν ενεργοποιηθεί. form_challenge: current_password: Μπαίνεις σε ασφαλή περιοχή imports: - data: Αρχείο CSV που έχει εξαχθεί από διαφορετικό κόμβο Mastodon + data: Αρχείο CSV που έχει εξαχθεί από διαφορετικό διακομιστή Mastodon invite_request: - text: Αυτό θα μας βοηθήσει να επιθεωρήσουμε την αίτησή σου + text: Αυτό θα μας βοηθήσει να ελέγξουμε την αίτησή σου ip_block: comment: Προαιρετικό. Θυμηθείτε γιατί προσθέσατε αυτόν τον κανόνα. expires_in: Οι διευθύνσεις IP είναι ένας πεπερασμένος πόρος, μερικές φορές μοιράζονται και συχνά αλλάζουν χέρια. Για το λόγο αυτό, δεν συνιστώνται αόριστοι αποκλεισμοί διευθύνσεων IP. @@ -130,7 +130,7 @@ el: tag: name: Μπορείς να αλλάξεις μόνο το πλαίσιο των χαρακτήρων, για παράδειγμα για να γίνει περισσότερο ευανάγνωστο user: - chosen_languages: Όταν ενεργοποιηθεί, στη δημόσια ροή θα εμφανίζονται τουτ μόνο από τις επιλεγμένες γλώσσες + chosen_languages: Όταν ενεργοποιηθεί, στη δημόσια ροή θα εμφανίζονται αναρτήσεις μόνο από τις επιλεγμένες γλώσσες role: Ο ρόλος ελέγχει ποια δικαιώματα έχει ο χρήστης. user_role: color: Το χρώμα που θα χρησιμοποιηθεί για το ρόλο σε ολόκληρη τη διεπαφή, ως RGB σε δεκαεξαδική μορφή @@ -144,44 +144,44 @@ el: url: Πού θα σταλούν τα γεγονότα labels: account: - attribution_domains_as_text: Ιστοσελίδες που επιτρέπεται να σου δώσουν εύσημα + attribution_domains_as_text: Ιστοσελίδες που επιτρέπεται να σας κάνουν αναφορά δημιουργού discoverable: Παροχή προφίλ και αναρτήσεων σε αλγορίθμους ανακάλυψης fields: - name: Περιγραφή + name: Ετικέτα value: Περιεχόμενο indexable: Συμπερίληψη δημόσιων αναρτήσεων στα αποτελέσματα αναζήτησης show_collections: Εμφάνιση ακολούθων και ακολουθουμένων στο προφίλ unlocked: Αυτόματη αποδοχή νέων ακολούθων account_alias: - acct: Διακριτικό του παλιού λογαριασμού + acct: Πλήρες όνομα χρήστη του παλιού λογαριασμού account_migration: - acct: Διακριτικό του νέου λογαριασμού + acct: Πλήρες όνομα χρήστη του νέου λογαριασμού account_warning_preset: text: Προκαθορισμένο κείμενο title: Τίτλος admin_account_action: - include_statuses: Συμπερίληψη των καταγγελλομένων τουτ στο email + include_statuses: Συμπερίληψη των αναφερόμενων αναρτήσεων στο email send_email_notification: Ενημέρωση χρήστη μέσω email text: Προσαρμοσμένη προειδοποίηση type: Ενέργεια types: - disable: Απενεργοποίηση - none: Καμία ενέργεια + disable: Πάγωμα + none: Αποστολή προειδοποίησης sensitive: Ευαίσθητο - silence: Αποσιώπηση - suspend: Αναστολή και αμετάκλητη διαγραφή στοιχείων λογαριασμού + silence: Περιορισμός + suspend: Αναστολή warning_preset_id: Χρήση προκαθορισμένης προειδοποίησης announcement: - all_day: Ολοήμερο γεγονός - ends_at: Λήξη γεγονότος - scheduled_at: Προγραμματισμένη δημοσίευση - starts_at: Έναρξη γεγονότος + all_day: Ολοήμερη εκδήλωση + ends_at: Λήξη εκδήλωσης + scheduled_at: Προγραμματισμός δημοσίευσης + starts_at: Έναρξη εκδήλωσης text: Ανακοίνωση appeal: text: Εξηγήστε γιατί αυτή η απόφαση πρέπει να αντιστραφεί defaults: autofollow: Προσκάλεσε για να ακολουθήσουν το λογαριασμό σου - avatar: Αβατάρ + avatar: Εικόνα προφίλ bot: Αυτός είναι ένας αυτοματοποιημένος λογαριασμός (bot) chosen_languages: Φιλτράρισμα γλωσσών confirm_new_password: Επιβεβαίωσε νέο συνθηματικό @@ -189,43 +189,43 @@ el: context: Πλαίσια φιλτραρίσματος current_password: Τρέχον συνθηματικό data: Δεδομένα - display_name: Όνομα εμφάνισης + display_name: Εμφανιζόμενο όνομα email: Διεύθυνση email expires_in: Λήξη μετά από - fields: Μεταδεδομένα προφίλ - header: Επικεφαλίδα + fields: Επιπλέον πεδία + header: Εικόνα κεφαλίδας honeypot: "%{label} (μη συμπληρώνετε)" inbox_url: Το URL του inbox του ανταποκριτή (relay) irreversible: Απόρριψη αντί για κρύψιμο - locale: Γλώσσα χρήσης + locale: Γλώσσα διεπαφής max_uses: Μέγιστος αριθμός χρήσεων new_password: Νέο συνθηματικό note: Βιογραφικό otp_attempt: Κωδικός δυο παραγόντων password: Συνθηματικό - phrase: Λέξη ή φράση κλειδί - setting_advanced_layout: Ενεργοποίηση προηγμένης λειτουργίας χρήσης + phrase: Λέξη-κλειδί ή φράση + setting_advanced_layout: Ενεργοποίηση προηγμένης διεπαφής ιστού setting_aggregate_reblogs: Ομαδοποίηση προωθήσεων στις ροές setting_always_send_emails: Πάντα να αποστέλλονται ειδοποίησεις μέσω email setting_auto_play_gif: Αυτόματη αναπαραγωγή των GIF - setting_boost_modal: Επιβεβαίωση πριν την προώθηση - setting_default_language: Γλώσσα κατά την ανάρτηση - setting_default_privacy: Ιδιωτικότητα αναρτήσεων - setting_default_sensitive: Σημείωση όλων των πολυμέσων ως ευαίσθητου περιεχομένου - setting_delete_modal: Επιβεβαίωση πριν τη διαγραφή ενός τουτ + setting_boost_modal: Εμφάνιση διαλόγου επιβεβαίωσης πριν από την ενίσχυση + setting_default_language: Γλώσσα ανάρτησης + setting_default_privacy: Ιδιωτικότητα ανάρτησης + setting_default_sensitive: Πάντα σήμανση των πολυμέσων ως ευαίσθητα + setting_delete_modal: Εμφάνιση διαλόγου επιβεβαίωσης πριν τη διαγραφή μιας ανάρτησης setting_disable_hover_cards: Απενεργοποίηση προεπισκόπησης προφίλ κατά την αιώρηση setting_disable_swiping: Απενεργοποίηση κινήσεων συρσίματος setting_display_media: Εμφάνιση πολυμέσων - setting_display_media_default: Προκαθορισμένο + setting_display_media_default: Προεπιλογή setting_display_media_hide_all: Απόκρυψη όλων setting_display_media_show_all: Εμφάνιση όλων - setting_expand_spoilers: Μόνιμη ανάπτυξη των τουτ με προειδοποίηση περιεχομένου - setting_hide_network: Κρύψε τις διασυνδέσεις σου + setting_expand_spoilers: Πάντα επέκταση των αναρτήσεων που σημαίνονται με προειδοποιήσεις περιεχομένου + setting_hide_network: Απόκρυψη των διασυνδέσεών σου setting_reduce_motion: Μείωση κίνησης κινουμένων στοιχείων setting_system_font_ui: Χρήση της προεπιλεγμένης γραμματοσειράς του συστήματος setting_theme: Θέμα ιστότοπου setting_trends: Εμφάνιση σημερινών τάσεων - setting_unfollow_modal: Επιβεβαίωση πριν τη διακοπή παρακολούθησης κάποιου + setting_unfollow_modal: Εμφάνιση διαλόγου επιβεβαίωσης πριν την άρση ακολούθησης κάποιου setting_use_blurhash: Χρωματιστή απόκρυψη για τα κρυμμένα πολυμέσα setting_use_pending_items: Αργή λειτουργία severity: Αυστηρότητα @@ -233,7 +233,7 @@ el: title: Τίτλος type: Τύπος εισαγωγής username: Όνομα χρηστη - username_or_email: Όνομα ή διεύθυνση email χρήστη + username_or_email: Όνομα χρήστη ή διεύθυνση email whole_word: Ολόκληρη λέξη email_domain_block: with_dns_records: Συμπερίληψη εγγραφών MX και διευθύνσεων IP του τομέα @@ -246,13 +246,13 @@ el: form_admin_settings: activity_api_enabled: Δημοσίευση συγκεντρωτικών στατιστικών σχετικά με τη δραστηριότητα του χρήστη στο API app_icon: Εικονίδιο εφαρμογής - backups_retention_period: Περίοδος αρχειοθέτησης του χρήστη + backups_retention_period: Περίοδος διατήρησης αρχείου χρηστών bootstrap_timeline_accounts: Πρότεινε πάντα αυτούς τους λογαριασμούς σε νέους χρήστες closed_registrations_message: Προσαρμοσμένο μήνυμα όταν οι εγγραφές δεν είναι διαθέσιμες content_cache_retention_period: Περίοδος διατήρησης απομακρυσμένου περιεχομένου - custom_css: Προσαρμοσμένο CSS + custom_css: Προσαρμοσμένη CSS favicon: Favicon - mascot: Προσαρμοσμένη μασκότ (απαρχαιωμένο) + mascot: Προσαρμοσμένη μασκότ (legacy) media_cache_retention_period: Περίοδος διατήρησης προσωρινής μνήμης πολυμέσων peers_api_enabled: Δημοσίευση λίστας των εντοπισμένων διακομιστών στο API profile_directory: Ενεργοποίηση καταλόγου προφίλ @@ -270,7 +270,7 @@ el: theme: Προεπιλεγμένο θέμα thumbnail: Μικρογραφία διακομιστή timeline_preview: Να επιτρέπεται μη πιστοποιημένη πρόσβαση σε δημόσιες ροές - trendable_by_default: Επίτρεψε τις τάσεις χωρίς προηγούμενη αξιολόγηση + trendable_by_default: Επίτρεψε τις τάσεις χωρίς προηγούμενο έλεγχο trends: Ενεργοποίηση τάσεων trends_as_landing_page: Χρήση των τάσεων ως σελίδα προορισμού interactions: @@ -296,7 +296,7 @@ el: follow: Κάποιος σε ακολούθησε follow_request: Κάποιος ζήτησε να σε ακολουθήσει mention: Κάποιος σε επισήμανε - pending_account: Νέος λογαριασμός χρειάζεται αναθεώρηση + pending_account: Νέος λογαριασμός χρειάζεται έλεγχο reblog: Κάποιος ενίσχυσε την ανάρτηση σου report: Υποβλήθηκε νέα αναφορά software_updates: @@ -305,7 +305,7 @@ el: label: Μια νέα έκδοση του Mastodon είναι διαθέσιμη none: Να μην ειδοποιούμαι ποτέ για ενημερώσεις (δεν συνιστάται) patch: Ειδοποίηση για ενημερώσεις σφαλμάτων - trending_tag: Νέο περιεχόμενο προς τάση απαιτεί αξιολόγηση + trending_tag: Νέο περιεχόμενο προς τάση απαιτεί έλεγχο rule: hint: Επιπρόσθετες πληροφορίες text: Κανόνας @@ -321,15 +321,15 @@ el: role: Ρόλος time_zone: Ζώνη ώρας user_role: - color: Χρώμα εμβλήματος + color: Χρώμα σήματος highlighted: Εμφάνιση ρόλου ως σήμα στα προφίλ χρηστών name: Όνομα permissions_as_keys: Δικαιώματα position: Προτεραιότητα webhook: events: Ενεργοποιημένα συμβάντα - template: Πρότυπο payload - url: Endpoint URL + template: Πρότυπο φορτίου + url: URL τελικού σημείου 'no': Όχι not_recommended: Δεν προτείνεται overridden: Αντικαταστάθηκε diff --git a/config/locales/simple_form.en-GB.yml b/config/locales/simple_form.en-GB.yml index 039a69dba2..21e5a7de18 100644 --- a/config/locales/simple_form.en-GB.yml +++ b/config/locales/simple_form.en-GB.yml @@ -10,13 +10,13 @@ en-GB: indexable: Your public posts may appear in search results on Mastodon. People who have interacted with your posts may be able to search them regardless. note: 'You can @mention other people or #hashtags.' show_collections: People will be able to browse through your follows and followers. People that you follow will see that you follow them regardless. - unlocked: People will be able to follow you without requesting approval. Uncheck if you want to review follow requests and chose whether to accept or reject new followers. + unlocked: People will be able to follow you without requesting approval. Untick if you want to review follow requests and chose whether to accept or reject new followers. account_alias: acct: Specify the username@domain of the account you want to move from account_migration: acct: Specify the username@domain of the account you want to move to account_warning_preset: - text: You can use post syntax, such as URLs, hashtags and mentions + text: You can use post syntax, such as URLs, hashtags, and mentions title: Optional. Not visible to the recipient admin_account_action: include_statuses: The user will see which posts have caused the moderation action or warning @@ -29,9 +29,9 @@ en-GB: sensitive: Force all this user's media attachments to be flagged as sensitive. silence: Prevent the user from being able to post with public visibility, hide their posts and notifications from people not following them. Closes all reports against this account. suspend: Prevent any interaction from or to this account and delete its contents. Revertible within 30 days. Closes all reports against this account. - warning_preset_id: Optional. You can still add custom text to end of the preset + warning_preset_id: Optional. You can still add custom text to the end of the preset announcement: - all_day: When checked, only the dates of the time range will be displayed + all_day: When ticked, only the dates of the time range will be displayed ends_at: Optional. Announcement will be automatically unpublished at this time scheduled_at: Leave blank to publish the announcement immediately starts_at: Optional. In case your announcement is bound to a specific time range @@ -43,36 +43,36 @@ en-GB: avatar: WEBP, PNG, GIF or JPG. At most %{size}. Will be downscaled to %{dimensions}px bot: Signal to others that the account mainly performs automated actions and might not be monitored context: One or multiple contexts where the filter should apply - current_password: For security purposes please enter the password of the current account + current_password: For security purposes, please enter the password of the current account current_username: To confirm, please enter the username of the current account digest: Only sent after a long period of inactivity and only if you have received any personal messages in your absence - email: You will be sent a confirmation e-mail + email: You will be sent a confirmation email header: WEBP, PNG, GIF or JPG. At most %{size}. Will be downscaled to %{dimensions}px - inbox_url: Copy the URL from the frontpage of the relay you want to use - irreversible: Filtered posts will disappear irreversibly, even if filter is later removed - locale: The language of the user interface, e-mails and push notifications - password: Use at least 8 characters + inbox_url: Copy the URL from the front page of the relay you want to use + irreversible: Filtered posts will disappear irreversibly, even if the filter is later removed + locale: The language of the user interface, emails, and push notifications + password: Use at least eight characters phrase: Will be matched regardless of casing in text or content warning of a post scopes: Which APIs the application will be allowed to access. If you select a top-level scope, you don't need to select individual ones. setting_aggregate_reblogs: Do not show new boosts for posts that have been recently boosted (only affects newly-received boosts) - setting_always_send_emails: Normally e-mail notifications won't be sent when you are actively using Mastodon + setting_always_send_emails: Normally email notifications won't be sent when you are actively using Mastodon setting_default_sensitive: Sensitive media is hidden by default and can be revealed with a click setting_display_media_default: Hide media marked as sensitive setting_display_media_hide_all: Always hide media setting_display_media_show_all: Always show media - setting_use_blurhash: Gradients are based on the colors of the hidden visuals but obfuscate any details + setting_use_blurhash: Gradients are based on the colours of the hidden visuals but obfuscate any details setting_use_pending_items: Hide timeline updates behind a click instead of automatically scrolling the feed username: You can use letters, numbers, and underscores whole_word: When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word domain_allow: domain: This domain will be able to fetch data from this server and incoming data from it will be processed and stored email_domain_block: - domain: This can be the domain name that shows up in the e-mail address or the MX record it uses. They will be checked upon sign-up. + domain: This can be the domain name that shows up in the email address or the MX record it uses. They will be checked upon sign-up. with_dns_records: An attempt to resolve the given domain's DNS records will be made and the results will also be blocked featured_tag: name: 'Here are some of the hashtags you used the most recently:' filters: - action: Chose which action to perform when a post matches the filter + action: Choose which action to perform when a post matches the filter actions: hide: Completely hide the filtered content, behaving as if it did not exist warn: Hide the filtered content behind a warning mentioning the filter's title @@ -82,12 +82,12 @@ en-GB: backups_retention_period: Users have the ability to generate archives of their posts to download later. When set to a positive value, these archives will be automatically deleted from your storage after the specified number of days. bootstrap_timeline_accounts: These accounts will be pinned to the top of new users' follow recommendations. closed_registrations_message: Displayed when sign-ups are closed - content_cache_retention_period: All posts from other servers (including boosts and replies) will be deleted after the specified number of days, without regard to any local user interaction with those posts. This includes posts where a local user has marked it as bookmarks or favorites. Private mentions between users from different instances will also be lost and impossible to restore. Use of this setting is intended for special purpose instances and breaks many user expectations when implemented for general purpose use. + content_cache_retention_period: All posts from other servers (including boosts and replies) will be deleted after the specified number of days, without regard to any local user interaction with those posts. This includes posts where a local user has marked it as bookmarks or favourites. Private mentions between users from different instances will also be lost and impossible to restore. Use of this setting is intended for special purpose instances and breaks many user expectations when implemented for general purpose use. custom_css: You can apply custom styles on the web version of Mastodon. favicon: WEBP, PNG, GIF or JPG. Overrides the default Mastodon favicon with a custom icon. mascot: Overrides the illustration in the advanced web interface. media_cache_retention_period: Media files from posts made by remote users are cached on your server. When set to a positive value, media will be deleted after the specified number of days. If the media data is requested after it is deleted, it will be re-downloaded, if the source content is still available. Due to restrictions on how often link preview cards poll third-party sites, it is recommended to set this value to at least 14 days, or link preview cards will not be updated on demand before that time. - peers_api_enabled: A list of domain names this server has encountered in the fediverse. No data is included here about whether you federate with a given server, just that your server knows about it. This is used by services that collect statistics on federation in a general sense. + peers_api_enabled: A list of domain names this server has encountered in the Fediverse. No data is included here about whether you federate with a given server, just that your server knows about it. This is used by services that collect statistics on federation in a general sense. profile_directory: The profile directory lists all users who have opted-in to be discoverable. require_invite_text: When sign-ups require manual approval, make the “Why do you want to join?” text input mandatory rather than optional site_contact_email: How people can reach you for legal or support inquiries. @@ -101,7 +101,7 @@ en-GB: thumbnail: A roughly 2:1 image displayed alongside your server information. timeline_preview: Logged out visitors will be able to browse the most recent public posts available on the server. trendable_by_default: Skip manual review of trending content. Individual items can still be removed from trends after the fact. - trends: Trends show which posts, hashtags and news stories are gaining traction on your server. + trends: Trends show which posts, hashtags, and news stories are gaining traction on your server. trends_as_landing_page: Show trending content to logged-out users and visitors instead of a description of this server. Requires trends to be enabled. form_challenge: current_password: You are entering a secure area @@ -123,7 +123,7 @@ en-GB: text: Describe a rule or requirement for users on this server. Try to keep it short and simple sessions: otp: 'Enter the two-factor code generated by your phone app or use one of your recovery codes:' - webauthn: If it's an USB key be sure to insert it and, if necessary, tap it. + webauthn: If it's a USB key be sure to insert it and, if necessary, tap it. settings: indexable: Your profile page may appear in search results on Google, Bing, and others. show_application: You will always be able to see which app published your post regardless. @@ -133,7 +133,7 @@ en-GB: chosen_languages: When checked, only posts in selected languages will be displayed in public timelines role: The role controls which permissions the user has. user_role: - color: Color to be used for the role throughout the UI, as RGB in hex format + color: Colour to be used for the role throughout the UI, as RGB in hex format highlighted: This makes the role publicly visible name: Public name of the role, if role is set to be displayed as a badge permissions_as_keys: Users with this role will have access to... @@ -141,7 +141,7 @@ en-GB: webhook: events: Select events to send template: Compose your own JSON payload using variable interpolation. Leave blank for default JSON. - url: Where events will be sent to + url: Where events will be sent labels: account: attribution_domains_as_text: Websites allowed to credit you @@ -160,8 +160,8 @@ en-GB: text: Preset text title: Title admin_account_action: - include_statuses: Include reported posts in the e-mail - send_email_notification: Notify the user per e-mail + include_statuses: Include reported posts in the email + send_email_notification: Notify the user per email text: Custom warning type: Action types: @@ -190,7 +190,7 @@ en-GB: current_password: Current password data: Data display_name: Display name - email: E-mail address + email: Email address expires_in: Expire after fields: Profile metadata header: Header @@ -198,7 +198,7 @@ en-GB: inbox_url: URL of the relay inbox irreversible: Drop instead of hide locale: Interface language - max_uses: Max number of uses + max_uses: Maximum number of uses new_password: New password note: Bio otp_attempt: Two-factor code @@ -206,7 +206,7 @@ en-GB: phrase: Keyword or phrase setting_advanced_layout: Enable advanced web interface setting_aggregate_reblogs: Group boosts in timelines - setting_always_send_emails: Always send e-mail notifications + setting_always_send_emails: Always send email notifications setting_auto_play_gif: Auto-play animated GIFs setting_boost_modal: Show confirmation dialogue before boosting setting_default_language: Posting language @@ -225,7 +225,7 @@ en-GB: setting_system_font_ui: Use system's default font setting_theme: Site theme setting_trends: Show today's trends - setting_unfollow_modal: Show confirmation dialog before unfollowing someone + setting_unfollow_modal: Show confirmation dialogue before unfollowing someone setting_use_blurhash: Show colourful gradients for hidden media setting_use_pending_items: Slow mode severity: Severity @@ -256,11 +256,11 @@ en-GB: media_cache_retention_period: Media cache retention period peers_api_enabled: Publish list of discovered servers in the API profile_directory: Enable profile directory - registrations_mode: Who can sign-up + registrations_mode: Who can sign up require_invite_text: Require a reason to join show_domain_blocks: Show domain blocks show_domain_blocks_rationale: Show why domains were blocked - site_contact_email: Contact e-mail + site_contact_email: Contact email site_contact_username: Contact username site_extended_description: Extended description site_short_description: Server description @@ -304,7 +304,7 @@ en-GB: critical: Notify on critical updates only label: A new Mastodon version is available none: Never notify of updates (not recommended) - patch: Notify on bugfix updates + patch: Notify on bug fix updates trending_tag: New trend requires review rule: hint: Additional information diff --git a/config/locales/simple_form.eo.yml b/config/locales/simple_form.eo.yml index 20187c4124..f7a2afc009 100644 --- a/config/locales/simple_form.eo.yml +++ b/config/locales/simple_form.eo.yml @@ -4,7 +4,7 @@ eo: hints: account: attribution_domains_as_text: Unu por linio. Protektas kontraŭ falsaj atribuoj. - discoverable: Viaj publikaj afiŝoj kaj profilo povas esti prezentitaj aŭ rekomenditaj en diversaj lokoj de Mastodon kaj via profilo povas esti proponita al aliaj uzantoj. + discoverable: Viaj publikaj afiŝoj kaj profilo povas esti elstarigitaj aŭ rekomenditaj en diversaj lokoj de Mastodon kaj via profilo povas esti proponita al aliaj uzantoj. display_name: Via plena nomo aŭ via kromnomo. fields: Via retpaĝo, pronomoj, aĝo, ĉio, kion vi volas. indexable: Viaj publikaj afiŝoj povas aperi en serĉrezultoj ĉe Mastodon. Homoj, kiuj interagis kun viaj afiŝoj, eble povos serĉi ilin sendepende. @@ -49,7 +49,7 @@ eo: email: Vi ricevos konfirman retpoŝton header: WEBP, PNG, GIF aŭ JPG. Maksimume %{size}. Malgrandiĝos al %{dimensions}px inbox_url: Kopiu la URL de la ĉefpaĝo de la ripetilo, kiun vi volas uzi - irreversible: La filtritaj mesaĝoj malaperos por eterne, eĉ se la filtrilo poste estas forigita + irreversible: La filtritaj mesaĝoj malaperos por ĉiam, eĉ se la filtrilo poste estas forigita locale: La lingvo de la fasado, retpoŝtaĵoj, kaj sciigoj password: Uzu almenaŭ 8 signojn phrase: Estos provita senzorge pri la uskleco de teksto aŭ averto pri enhavo de mesaĝo diff --git a/config/locales/simple_form.es-AR.yml b/config/locales/simple_form.es-AR.yml index 98254c5e99..48a4ef0724 100644 --- a/config/locales/simple_form.es-AR.yml +++ b/config/locales/simple_form.es-AR.yml @@ -31,13 +31,13 @@ es-AR: suspend: Evitá cualquier interacción desde o hacia esta cuenta y eliminá su contenido. Revertible en 30 días. Esto cierra todas las denuncias contra esta cuenta. warning_preset_id: Opcional. Todavía podés agregar texto personalizado al final del preajuste announcement: - all_day: Cuando esté seleccionado, sólo se mostrarán las fechas del rango de tiempo + all_day: Cuando esté seleccionado, solo se mostrarán las fechas del rango de tiempo ends_at: Opcional. El anuncio desaparecerá automáticamente en este momento scheduled_at: Dejar en blanco para publicar el anuncio inmediatamente starts_at: Opcional. En caso de que tu anuncio esté vinculado a un rango de tiempo específico text: Podés usar sintaxis de mensajes. Por favor, tené en cuenta el espacio que ocupará el anuncio en la pantalla del usuario appeal: - text: Sólo podés apelar un incumplimiento una vez + text: Solo podés apelar un incumplimiento una vez defaults: autofollow: Los usuarios que se registren mediante la invitación te seguirán automáticamente avatar: WEBP, PNG, GIF o JPG. Máximo %{size}. Será escalado a %{dimensions}px @@ -45,7 +45,7 @@ es-AR: context: Uno o múltiples contextos en los que debe aplicarse el filtro current_password: Por razones de seguridad, por favor, ingresá la contraseña de la cuenta actual current_username: Para confirmar, por favor, ingresá el nombre de usuario de la cuenta actual - digest: Sólo enviado tras un largo periodo de inactividad, y sólo si recibiste mensajes personales en tu ausencia + digest: Solo enviado tras un largo periodo de inactividad, y solo si recibiste mensajes personales en tu ausencia email: Se te enviará un correo electrónico de confirmación header: WEBP, PNG, GIF o JPG. Máximo %{size}. Será escalado a %{dimensions}px inbox_url: Copiá la dirección web desde la página principal del relé que querés usar @@ -54,7 +54,7 @@ es-AR: password: Usá al menos 8 caracteres phrase: Se aplicará sin importar las mayúsculas o las advertencias de contenido de un mensaje scopes: Qué APIs de la aplicación tendrán acceso. Si seleccionás el alcance de nivel más alto, no necesitás seleccionar las individuales. - setting_aggregate_reblogs: No mostrar nuevas adhesiones de los mensajes que fueron recientemente adheridos (sólo afecta a las adhesiones recibidas recientemente) + setting_aggregate_reblogs: No mostrar nuevas adhesiones de los mensajes que fueron recientemente adheridos (solo afecta a las adhesiones recibidas recientemente) setting_always_send_emails: Normalmente las notificaciones por correo electrónico no se enviarán cuando estés usando Mastodon activamente setting_default_sensitive: El contenido de medios sensibles está oculto predeterminadamente y puede ser mostrado con un clic setting_display_media_default: Ocultar medios marcados como sensibles @@ -63,7 +63,7 @@ es-AR: setting_use_blurhash: Los gradientes se basan en los colores de las imágenes ocultas pero haciendo borrosos los detalles setting_use_pending_items: Ocultar actualizaciones de la línea temporal detrás de un clic en lugar de desplazar automáticamente el flujo username: Podés usar letras, números y subguiones ("_") - whole_word: Cuando la palabra clave o frase es sólo alfanumérica, sólo será aplicado si coincide con toda la palabra + whole_word: Cuando la palabra clave o frase sea solo alfanumérica, solamente será aplicado si coincide con toda la palabra domain_allow: domain: Este dominio podrá recolectar datos de este servidor, y los datos entrantes serán procesados y archivados email_domain_block: @@ -87,7 +87,7 @@ es-AR: favicon: WEBP, PNG, GIF o JPG. Reemplaza el favicón predeterminado de Mastodon con uno personalizado. mascot: Reemplaza la ilustración en la interface web avanzada. media_cache_retention_period: Los archivos de medios de mensajes publicados por usuarios remotos se almacenan en la memoria caché en tu servidor. Cuando se establece un valor positivo, los medios se eliminarán después del número especificado de días. Si los datos multimedia se solicitan después de eliminarse, se volverán a descargar, si es que el contenido fuente todavía está disponible. Debido a restricciones en la frecuencia con la que las tarjetas de previsualización de enlace consultan a sitios web de terceros, se recomienda establecer este valor a, al menos, 14 días, o las tarjetas de previsualización de enlaces no se actualizarán a pedido antes de ese momento. - peers_api_enabled: Una lista de nombres de dominio que este servidor ha encontrado en el Fediverso. Acá no se incluye ningún dato sobre si federás con un servidor determinado, sólo que tu servidor lo conoce. Esto es usado por los servicios que recopilan estadísticas sobre la federación en un sentido general. + peers_api_enabled: Una lista de nombres de dominio que este servidor ha encontrado en el Fediverso. Acá no se incluye ningún dato sobre si federás con un servidor determinado, solo que tu servidor lo conoce. Esto es usado por los servicios que recopilan estadísticas sobre la federación en un sentido general. profile_directory: El directorio de perfiles lista a todos los usuarios que han optado a que su cuenta pueda ser descubierta. require_invite_text: Cuando registros aprobación manual, hacé que la solicitud de invitación "¿Por qué querés unirte?" sea obligatoria, en vez de opcional site_contact_email: Cómo la gente puede estar en contacto con vos para consultas legales o de ayuda. @@ -128,16 +128,16 @@ es-AR: indexable: Tu página de perfil podría aparecer en los resultados de búsqueda en Google, Bing y otros motores de búsqueda. show_application: Sin embargo, siempre podrás ver desde qué aplicación se envió tu mensaje. tag: - name: Sólo podés cambiar la capitalización de las letras, por ejemplo, para que sea más legible + name: Solo podés cambiar la capitalización de las letras, por ejemplo, para que sea más legible user: - chosen_languages: Cuando estén marcados, sólo se mostrarán los mensajes en los idiomas seleccionados en las líneas temporales públicas + chosen_languages: Cuando estén marcados, solo se mostrarán los mensajes en los idiomas seleccionados en las líneas temporales públicas role: El rol controla qué permisos tiene el usuario. user_role: color: Color que se utilizará para el rol a lo largo de la interface de usuario, como RGB en formato hexadecimal highlighted: Esto hace que el rol sea públicamente visible name: Nombre público del rol, si el rol se establece para que se muestre como una insignia permissions_as_keys: Los usuarios con este rol tendrán acceso a… - position: Un rol más alto decide la resolución de conflictos en ciertas situaciones. Ciertas acciones sólo pueden llevarse a cabo en roles con prioridad inferior + position: Un rol más alto decide la resolución de conflictos en ciertas situaciones. Ciertas acciones solo pueden llevarse a cabo en roles con prioridad inferior webhook: events: Seleccionar eventos para enviar template: Creá tu propio archivo JSON usando interpolación variable. Dejalo en blanco para usar el archivo JSON predeterminado. diff --git a/config/locales/simple_form.es-MX.yml b/config/locales/simple_form.es-MX.yml index 0ee34b83f5..66948967a4 100644 --- a/config/locales/simple_form.es-MX.yml +++ b/config/locales/simple_form.es-MX.yml @@ -70,7 +70,7 @@ es-MX: domain: Este puede ser el nombre de dominio que se muestra en la dirección de correo o el registro MX que utiliza. Se comprobarán al registrarse. with_dns_records: Se hará un intento de resolver los registros DNS del dominio dado y los resultados serán también puestos en lista negra featured_tag: - name: 'Aquí están algunas de las etiquetas que más has usado recientemente:' + name: 'Estas son algunas de las etiquetas que más has utilizado recientemente:' filters: action: Elegir qué acción realizar cuando una publicación coincide con el filtro actions: @@ -212,7 +212,7 @@ es-MX: setting_default_language: Idioma de publicación setting_default_privacy: Privacidad de publicaciones setting_default_sensitive: Marcar siempre imágenes como sensibles - setting_delete_modal: Mostrar diálogo de confirmación antes de borrar una publicación + setting_delete_modal: Mostrar un cuadro de diálogo de confirmación antes de eliminar una publicación setting_disable_hover_cards: Desactivar vista previa del perfil al pasar el cursor setting_disable_swiping: Deshabilitar movimientos de deslizamiento setting_display_media: Visualización multimedia diff --git a/config/locales/simple_form.et.yml b/config/locales/simple_form.et.yml index 1b036a4592..b26af05c90 100644 --- a/config/locales/simple_form.et.yml +++ b/config/locales/simple_form.et.yml @@ -8,7 +8,7 @@ et: display_name: Su täisnimi või naljanimi. fields: Su koduleht, sugu, vanus. Mistahes, mida soovid. indexable: Sinu avalikud postitused võivad ilmuda Mastodoni otsingutulemustes. Inimesed, kes on sinu postitustele reageerinud, saavad neid otsida nii või naa. - note: 'Saad @mainida teisi inimesi või #silte.' + note: 'Saad @mainida teisi inimesi või #teemaviiteid.' show_collections: Inimesed saavad sirvida su jälgijaid ja jälgitavaid. Inimesed, keda sa jälgid, näevad seda sõltumata häälestuse valikust. unlocked: Inimesed saavad sind jälgima hakata kinnitamist taotlemata. Eemalda märge, kui soovid jälgimistaotlusi üle vaadata ja valida, kas nõustuda või keelduda uute jälgijatega. account_alias: @@ -16,7 +16,7 @@ et: account_migration: acct: Sisesta kasutajanimi@domeen, kuhu soovid konto siit kolida account_warning_preset: - text: Saab kasutada postituse süntaksi, näiteks URLe, silte ja mainimisi + text: Saad kasutada postituse süntaksi, näiteks võrguaadresse, teemaviiteid ja mainimisi title: Valikuline. Ei ole nähtav saajale admin_account_action: include_statuses: Kasutaja näeb, millised postitused on põhjustanud moderaatori otsuse või hoiatuse @@ -51,7 +51,7 @@ et: inbox_url: Kopeeri soovitud sõnumivahendusserveri avalehe võrguaadress irreversible: Filtreeritud postitused kaovad taastamatult, isegi kui filter on hiljem eemaldatud locale: Kasutajaliidese, e-kirjade ja tõuketeadete keel - password: Vajalik on vähemalt 8 märki + password: Vajalik on vähemalt 8 tähemärki phrase: Kattub olenemata postituse teksti suurtähtedest või sisuhoiatusest scopes: Milliseid API-sid see rakendus tohib kasutada. Kui valid kõrgeima taseme, ei pea üksikuid eraldi valima. setting_aggregate_reblogs: Ära kuva uusi postituste jagamisi, mis on hiljuti jagatud (kehtib vaid uutele jagamistele) @@ -70,7 +70,7 @@ et: domain: See võib olla e-postiaadressis näha olev domeen või MX-kirje, mida aadress kasutab. Kontroll toimub liitumise käigus. with_dns_records: Püütakse lahendada selle domeeni DNS-kirjed ja ühtlasi blokeerida ka selle tulemused featured_tag: - name: 'Siin on mõned nendest siltidest, mida oled viimati kasutanud:' + name: 'Siin on mõned nendest teemaviiteid, mida oled viimati kasutanud:' filters: action: Tegevuse valik, kui postitus vastab filtrile actions: @@ -101,10 +101,10 @@ et: thumbnail: Umbes 2:1 mõõdus pilt serveri informatsiooni kõrval. timeline_preview: Sisenemata külastajatel on võimalik sirvida viimaseid avalikke postitusi serveril. trendable_by_default: Populaarse sisu ülevaatuse vahele jätmine. Pärast seda on siiski võimalik üksikuid üksusi trendidest eemaldada. - trends: Trendid näitavad, millised postitused, sildid ja uudislood koguvad sinu serveris tähelepanu. + trends: Trendid näitavad, millised postitused, teemaviited ja uudislood koguvad sinu serveris tähelepanu. trends_as_landing_page: Näitab välja logitud kasutajatele ja külalistele serveri kirjelduse asemel populaarset sisu. Populaarne sisu (trendid) peab selleks olema sisse lülitatud. form_challenge: - current_password: Turvalisse alasse sisenemine + current_password: Sisened turvalisse alasse imports: data: CSV fail eksporditi teisest Mastodoni serverist invite_request: @@ -184,8 +184,8 @@ et: avatar: Profiilipilt bot: See konto on robot chosen_languages: Keelte filtreerimine - confirm_new_password: Uue salasõna kinnitamine - confirm_password: Salasõna kinnitamine + confirm_new_password: Korda uut salasõna + confirm_password: Korda salasõna context: Filtreeri kontekste current_password: Kehtiv salasõna data: Andmed @@ -238,7 +238,7 @@ et: email_domain_block: with_dns_records: Kaasa domeeni MX-kirjed ning IP-aadressid featured_tag: - name: Silt + name: Teemaviide filters: actions: hide: Peida täielikult @@ -313,10 +313,10 @@ et: indexable: Kaasa profiilileht otsimootoritesse show_application: Näita, millisest äpist postituse saatsid tag: - listable: Luba sellel sildil ilmuda profiilide kataloogis - name: Silt - trendable: Luba sellel sildil trendida - usable: Luba seda märksõna postitustes kasutada lokaalselt + listable: Luba sellel teemaviitel ilmuda profiilide kataloogis + name: Teemaviide + trendable: Luba sellel teemaviitel olla nähtav viimaste trendide all + usable: Luba seda teemaviidet postitustes kasutada lokaalselt user: role: Roll time_zone: Ajavöönd diff --git a/config/locales/simple_form.eu.yml b/config/locales/simple_form.eu.yml index 67b1f2f93f..acfa188f10 100644 --- a/config/locales/simple_form.eu.yml +++ b/config/locales/simple_form.eu.yml @@ -131,6 +131,7 @@ eu: name: Letrak maiuskula/minuskulara aldatu ditzakezu besterik ez, adibidez irakurterrazago egiteko user: chosen_languages: Markatzean, hautatutako hizkuntzetan dauden tutak besterik ez dira erakutsiko. + role: Rolak erabiltzaileak dituen baimenak zeintzuk diren kontrolatzen du. user_role: color: Rolarentzat erabiltzaile interfazean erabiliko den kolorea, formatu hamaseitarreko RGB bezala highlighted: Honek rola publikoki ikusgai jartzen du @@ -212,6 +213,7 @@ eu: setting_default_privacy: Mezuen pribatutasuna setting_default_sensitive: Beti markatu edukiak hunkigarri gisa setting_delete_modal: Erakutsi baieztapen elkarrizketa-koadroa toot bat ezabatu aurretik + setting_disable_hover_cards: Desgaitu profilaren aurrebista gainetik igarotzean setting_disable_swiping: Desgaitu hatza pasatzeko mugimenduak setting_display_media: Multimedia bistaratzea setting_display_media_default: Lehenetsia diff --git a/config/locales/simple_form.fa.yml b/config/locales/simple_form.fa.yml index 36eba5fcca..d30a8a3084 100644 --- a/config/locales/simple_form.fa.yml +++ b/config/locales/simple_form.fa.yml @@ -82,7 +82,7 @@ fa: backups_retention_period: کاربران می توانند بایگانی هایی از پست های خود ایجاد کنند تا بعدا دانلود کنند. وقتی روی مقدار مثبت تنظیم شود، این بایگانی‌ها پس از تعداد روزهای مشخص شده به‌طور خودکار از فضای ذخیره‌سازی شما حذف می‌شوند. bootstrap_timeline_accounts: سنجاق کردنThese accounts will be pinned to the top of new users' follow recommendations. closed_registrations_message: نمایش داده هنگام بسته بودن ثبت‌نام‌ها - content_cache_retention_period: همه پست‌های سرورهای دیگر (از جمله تقویت‌کننده‌ها و پاسخ‌ها) پس از چند روز مشخص شده، بدون توجه به هرگونه تعامل کاربر محلی با آن پست‌ها، حذف خواهند شد. این شامل پست هایی می شود که یک کاربر محلی آن را به عنوان نشانک یا موارد دلخواه علامت گذاری کرده است. ذکر خصوصی بین کاربران از نمونه های مختلف نیز از بین خواهد رفت و بازیابی آنها غیرممکن است. استفاده از این تنظیم برای موارد با هدف خاص در نظر گرفته شده است و بسیاری از انتظارات کاربر را هنگامی که برای استفاده عمومی اجرا می شود، از بین می برد. + content_cache_retention_period: پس از تعداد روزهای مشخّص شده تمامی فرسته‌ها از دیگر کارسازها (از جمله تقویت‌ها و پاسخ‌ها) بدون توجّه به هر تعامل کاربری محلی با آن‌ها حذف خواهند شد. این موضوع شامل حال فرسته‌هایی که کاربران محلی به عنوان نشانک یا برگزیده علامت زده‌اند نیز می‌شود. اشاره‌های خصوصی بین کاربران نمونه‌های مختلف نیزی از دست رفته و قابل بازگردانی نخواهند بود. استفاده از این تنظیم برای نمونه‌هایی با هدف خاص در نظر گرفته شده و برای استفادهٔ عمومی بسیاری از انتظارات کاربر را زیر پا می‌گذارد. custom_css: می‌توانیدروی نگارش وب ماستودون سبک‌های سفارشی اعمال کنید. favicon: WEBP، PNG، GIF یا JPG. فاویکون پیش‌فرض ماستودون را با یک نماد سفارشی لغو می‌کند. mascot: نقش میانای وب پیش‌رفته را پایمال می‌کند. diff --git a/config/locales/simple_form.fi.yml b/config/locales/simple_form.fi.yml index a9e77b6cac..59796bf8bb 100644 --- a/config/locales/simple_form.fi.yml +++ b/config/locales/simple_form.fi.yml @@ -4,7 +4,7 @@ fi: hints: account: attribution_domains_as_text: Yksi riviä kohti. Suojaa vääriltä tekijän nimeämisiltä. - discoverable: Julkisia julkaisujasi ja profiiliasi voidaan pitää esillä tai suositella Mastodonin eri alueilla ja profiiliasi voidaan ehdottaa toisille käyttäjille. + discoverable: Julkisia julkaisujasi ja profiiliasi voidaan esitellä tai suositella Mastodonin eri alueilla, ja profiiliasi voidaan ehdottaa toisille käyttäjille. display_name: Koko nimesi tai lempinimesi. fields: Verkkosivustosi, pronominisi, ikäsi ja mitä ikinä haluatkaan ilmoittaa. indexable: Julkiset julkaisusi voivat näkyä Mastodonin hakutuloksissa. Käyttäjät, jotka ovat olleet vuorovaikutuksessa julkaisujesi kanssa, voivat etsiä niitä asetuksesta riippumatta. @@ -19,7 +19,7 @@ fi: text: Voit käyttää julkaisun syntaksia, kuten URL-osoitteita, aihetunnisteita ja mainintoja title: Valinnainen. Ei näy vastaanottajalle admin_account_action: - include_statuses: Käyttäjä näkee, mitkä julkaisut johtivat moderointitoimeen tai -varoitukseen + include_statuses: Käyttäjä näkee, mitkä julkaisut johtivat moderointitoimeen tai -⁠varoitukseen send_email_notification: Käyttäjä saa selvityksen siitä, mitä hänen tililleen tapahtui text_html: Valinnainen. Voit käyttää julkaisun syntaksia. Voit lisätä varoitusasetuksia säästääksesi aikaa type_html: Valitse mitä teet käyttäjälle %{acct} @@ -28,7 +28,7 @@ fi: none: Käytä tätä lähettääksesi varoitus käyttäjälle käynnistämättä mitään muita toimia. sensitive: Pakota kaikki tämän käyttäjän mediatiedostot arkaluonteisiksi. silence: Estä käyttäjää lähettämästä julkaisuja, joiden näkyvyys on julkinen, sekä piilota hänen julkaisunsa ja häneen liittyvät ilmoitukset niiltä, jotka eivät seuraa häntä. Sulkee kaikki tiliin kohdistuvat raportit. - suspend: Estä kaikki vuorovaikutus tältä tililtä ja tälle tilille sekä poista kaikki sen sisältö. Peruttavissa 30 päivän ajan. Sulkee kaikki tiliin kohdistuvat raportit. + suspend: Estä kaikki vuorovaikutus tältä tililtä ja tälle tilille sekä poista kaikki sen sisältö. Peruttavissa 30 päivän ajan. Sulkee kaikki tiliin kohdistuvat raportit. warning_preset_id: Valinnainen. Voit silti lisätä mukautetun tekstin esiasetuksen loppuun announcement: all_day: Kun valittuna, vain aikavälin päivät näytetään @@ -48,7 +48,7 @@ fi: digest: Lähetetään vain pitkän poissaolon jälkeen ja vain, jos olet saanut suoria viestejä poissaolosi aikana email: Sinulle lähetetään vahvistusviesti header: WEBP, PNG, GIF tai JPG. Enintään %{size}. Skaalataan kokoon %{dimensions} px - inbox_url: Kopioi URL-osoite haluamasi välittäjän etusivulta + inbox_url: Kopioi URL-⁠osoite haluamasi välittäjän etusivulta irreversible: Suodatetut julkaisut katoavat peruuttamattomasti, vaikka suodatin poistettaisiin myöhemmin locale: Käyttöliittymän, sähköpostiviestien ja puskuilmoitusten kieli password: Käytä vähintään 8:aa merkkiä @@ -63,7 +63,7 @@ fi: setting_use_blurhash: Liukuvärit perustuvat piilotettujen kuvien väreihin mutta sumentavat yksityiskohdat setting_use_pending_items: Piilota aikajanan päivitykset napsautuksen taakse syötteen automaattisen vierityksen sijaan username: Voit käyttää kirjaimia, numeroita ja alaviivoja - whole_word: Kun avainsana tai -fraasi on täysin aakkosnumeerinen, suodatin aktivoituu vain sen täysvastineille + whole_word: Kun avainsana tai -⁠fraasi on kokonaan aakkosnumeerinen, suodatin tulee voimaan vain sen täysvastineille domain_allow: domain: Tämä verkkotunnus voi noutaa tietoja tältä palvelimelta, ja sieltä saapuvat tiedot käsitellään ja tallennetaan email_domain_block: @@ -89,7 +89,7 @@ fi: media_cache_retention_period: Etäkäyttäjien tekemien julkaisujen mediatiedostot ovat välimuistissa palvelimellasi. Kun kentän arvo on positiivinen, media poistuu, kun määritetty määrä päiviä on kulunut. Jos mediaa pyydetään sen poistamisen jälkeen, se ladataan uudelleen, jos lähdesisältö on vielä saatavilla. Koska linkkien esikatselun kyselyitä kolmansien osapuolien sivustoille on rajoitettu, on suositeltavaa asettaa tämä arvo vähintään 14 päivään, tai linkkien kortteja ei päivitetä pyynnöstä ennen tätä ajankohtaa. peers_api_enabled: Luettelo verkkotunnuksista, jotka tämä palvelin on kohdannut fediversumissa. Se ei kerro, federoitko tietyn palvelimen kanssa, vaan että palvelimesi on ylipäätään tietoinen siitä. Tätä tietoa käytetään palveluissa, jotka keräävät tilastoja federoinnista yleisellä tasolla. profile_directory: Profiilihakemisto luetteloi kaikki käyttäjät, jotka ovat valinneet olla löydettävissä. - require_invite_text: Kun rekisteröityminen vaatii manuaalisen hyväksynnän, tee ”Miksi haluat liittyä?” -tekstikentästä pakollinen vapaaehtoisen sijaan + require_invite_text: Kun rekisteröityminen vaatii manuaalisen hyväksynnän, tee ”Miksi haluat liittyä?” -⁠tekstikentästä pakollinen vapaaehtoisen sijaan site_contact_email: Miten sinut voi tavoittaa oikeus- tai tukikysymyksissä. site_contact_username: Miten sinut voi tavoittaa Mastodonissa. site_extended_description: Kaikki lisätiedot, jotka voivat olla hyödyllisiä kävijöille ja käyttäjille. Voidaan jäsentää Markdown-syntaksilla. @@ -145,7 +145,7 @@ fi: labels: account: attribution_domains_as_text: Verkkosivustot, jotka voivat antaa sinulle tunnustusta - discoverable: Pidä profiiliasi ja julkaisujasi esillä löytämisalgoritmeissa + discoverable: Esittele profiilia ja julkaisuja löydettävyysalgoritmeissa fields: name: Nimike value: Sisältö @@ -174,7 +174,7 @@ fi: announcement: all_day: Koko päivän tapahtuma ends_at: Tapahtuman loppu - scheduled_at: Ajoita julkaisu + scheduled_at: Ajasta julkaisu starts_at: Tapahtuman alku text: Tiedote appeal: @@ -195,13 +195,13 @@ fi: fields: Lisäkentät header: Otsakekuva honeypot: "%{label} (älä täytä)" - inbox_url: Välittäjän postilaatikon URL-osoite + inbox_url: Välittäjän postilaatikon URL-⁠osoite irreversible: Pudota piilottamisen sijaan locale: Käyttöliittymän kieli max_uses: Käyttökertoja enintään new_password: Uusi salasana note: Elämäkerta - otp_attempt: Kaksivaiheisen todennuksen tunnusluku + otp_attempt: Kaksivaiheisen todennuksen koodi password: Salasana phrase: Avainsana tai fraasi setting_advanced_layout: Ota edistynyt selainkäyttöliittymä käyttöön @@ -278,7 +278,7 @@ fi: must_be_following: Estä ilmoitukset käyttäjiltä, joita et seuraa must_be_following_dm: Estä yksityisviestit käyttäjiltä, joita et seuraa invite: - comment: Kommentoi + comment: Kommentti invite_request: text: Miksi haluat liittyä? ip_block: @@ -304,7 +304,7 @@ fi: critical: Ilmoita vain kriittisistä päivityksistä label: Uusi Mastodon-versio on saatavilla none: Älä koskaan ilmoita päivityksistä (ei suositeltu) - patch: Ilmoita virhekorjauspäivityksistä + patch: Ilmoita virheenkorjauspäivityksistä trending_tag: Uusi trendi vaatii tarkastuksen rule: hint: Lisätietoja @@ -336,7 +336,7 @@ fi: recommended: Suositellaan required: mark: "*" - text: vaadittu tieto + text: pakollinen title: sessions: webauthn: Käytä yhtä suojausavaimistasi kirjautuaksesi sisään diff --git a/config/locales/simple_form.fr.yml b/config/locales/simple_form.fr.yml index f300f294e7..041d05a422 100644 --- a/config/locales/simple_form.fr.yml +++ b/config/locales/simple_form.fr.yml @@ -31,7 +31,7 @@ fr: suspend: Empêcher toute interaction depuis ou vers ce compte et supprimer son contenu. Réversible dans les 30 jours. Cloture tous les signalements concernant ce compte. warning_preset_id: Facultatif. Vous pouvez toujours ajouter un texte personnalisé à la fin de la présélection announcement: - all_day: Coché, seules les dates de l’intervalle de temps seront affichées + all_day: Lorsque coché, seules les dates de l’intervalle de temps seront affichées ends_at: Facultatif. La fin de l'annonce surviendra automatiquement à ce moment scheduled_at: Laisser vide pour publier l’annonce immédiatement starts_at: Facultatif. Si votre annonce est liée à une période spécifique @@ -88,7 +88,7 @@ fr: mascot: Remplace l'illustration dans l'interface Web avancée. media_cache_retention_period: Les fichiers médias des messages publiés par des utilisateurs distants sont mis en cache sur votre serveur. Lorsque cette valeur est positive, les médias sont supprimés au terme du nombre de jours spécifié. Si les données des médias sont demandées après leur suppression, elles seront téléchargées à nouveau, dans la mesure où le contenu source est toujours disponible. En raison des restrictions concernant la fréquence à laquelle les cartes de prévisualisation des liens interrogent des sites tiers, il est recommandé de fixer cette valeur à au moins 14 jours, faute de quoi les cartes de prévisualisation des liens ne seront pas mises à jour à la demande avant cette échéance. peers_api_enabled: Une liste de noms de domaine que ce serveur a rencontrés dans le fédiverse. Aucune donnée indiquant si vous vous fédérez ou non avec un serveur particulier n'est incluse ici, seulement l'information que votre serveur connaît un autre serveur. Cette option est utilisée par les services qui collectent des statistiques sur la fédération en général. - profile_directory: L'annuaire des profils répertorie tous les comptes qui choisi d'être découvrables. + profile_directory: L'annuaire des profils répertorie tous les comptes qui ont permis d'être découverts. require_invite_text: Lorsque les inscriptions nécessitent une approbation manuelle, rendre le texte de l’invitation "Pourquoi voulez-vous vous inscrire ?" obligatoire plutôt que facultatif site_contact_email: Comment l'on peut vous joindre pour des requêtes d'assistance ou d'ordre juridique. site_contact_username: Comment les gens peuvent vous contacter sur Mastodon. @@ -254,7 +254,7 @@ fr: favicon: Favicon mascot: Mascotte personnalisée (héritée) media_cache_retention_period: Durée de rétention des médias dans le cache - peers_api_enabled: Publie la liste des serveurs découverts dans l'API + peers_api_enabled: Publier la liste des serveurs découverts dans l’API profile_directory: Activer l’annuaire des profils registrations_mode: Qui peut s’inscrire require_invite_text: Exiger une raison pour s’inscrire diff --git a/config/locales/simple_form.is.yml b/config/locales/simple_form.is.yml index 40ae267a06..5741cfafda 100644 --- a/config/locales/simple_form.is.yml +++ b/config/locales/simple_form.is.yml @@ -201,7 +201,7 @@ is: max_uses: Hámarksfjöldi afnota new_password: Nýtt lykilorð note: Æviágrip - otp_attempt: Teggja-þátta kóði + otp_attempt: Tveggja-þátta kóði password: Lykilorð phrase: Stikkorð eða setning setting_advanced_layout: Virkja ítarlegt vefviðmót diff --git a/config/locales/simple_form.it.yml b/config/locales/simple_form.it.yml index c36fce36f7..480ee31fe3 100644 --- a/config/locales/simple_form.it.yml +++ b/config/locales/simple_form.it.yml @@ -9,7 +9,7 @@ it: fields: La tua homepage, i pronomi, l'età, tutto quello che vuoi. indexable: I tuoi post pubblici potrebbero apparire nei risultati di ricerca su Mastodon. Le persone che hanno interagito con i tuoi post potrebbero essere in grado di cercarli anche se non hai attivato questa impostazione. note: 'Puoi @menzionare altre persone o usare gli #hashtags.' - show_collections: Le persone saranno in grado di navigare attraverso i tuoi seguaci e seguaci. Le persone che segui vedranno che li seguirai indipendentemente dalle tue impostazioni. + show_collections: Le persone saranno in grado di navigare tra chi segui e chi ti segue. Le persone che segui vedranno che segui loro a prescindere. unlocked: Le persone saranno in grado di seguirti senza richiedere l'approvazione. Deseleziona se vuoi controllare le richieste di seguirti e scegli se accettare o rifiutare nuovi follower. account_alias: acct: Indica il nomeutente@dominio dell'account dal quale vuoi trasferirti diff --git a/config/locales/simple_form.kab.yml b/config/locales/simple_form.kab.yml index aa4129797a..c173ece0ea 100644 --- a/config/locales/simple_form.kab.yml +++ b/config/locales/simple_form.kab.yml @@ -27,6 +27,8 @@ kab: username: Tzemreḍ ad tesqedceḍ isekkilen, uṭṭunen akked yijerriden n wadda featured_tag: name: 'Ha-t-an kra seg ihacṭagen i tesseqdaceḍ ussan-a ineggura maḍi :' + form_admin_settings: + site_contact_username: Amek i zemren ad ak·em-id-afen medden ɣef Mastodon. form_challenge: current_password: Tkecmeḍ ɣer temnaḍt taɣellsant imports: @@ -50,6 +52,7 @@ kab: title: Azwel admin_account_action: send_email_notification: Sileɣ aseqdac s imaylen + text: Alɣu udmawan ɣef ugbur type: Tigawt types: disable: Sens anekcum diff --git a/config/locales/simple_form.ko.yml b/config/locales/simple_form.ko.yml index ddac920e2f..220979dfc6 100644 --- a/config/locales/simple_form.ko.yml +++ b/config/locales/simple_form.ko.yml @@ -82,7 +82,7 @@ ko: backups_retention_period: 사용자들은 나중에 다운로드하기 위해 게시물 아카이브를 생성할 수 있습니다. 양수로 설정된 경우 이 아카이브들은 지정된 일수가 지난 후에 저장소에서 자동으로 삭제될 것입니다. bootstrap_timeline_accounts: 이 계정들은 팔로우 추천 목록 상단에 고정됩니다. closed_registrations_message: 새 가입을 차단했을 때 표시됩니다 - content_cache_retention_period: 다른 서버의 모든 게시물(부스트 및 답글 포함)은 해당 게시물에 대한 로컬 사용자의 상호 작용과 관계없이 지정된 일수가 지나면 삭제됩니다. 여기에는 로컬 사용자가 북마크 또는 즐겨찾기로 표시한 게시물도 포함됩니다. 다른 인스턴스 사용자와 주고 받은 비공개 멘션도 손실되며 복원할 수 없습니다. 이 설정은 특수 목적의 인스턴스를 위한 것이며 일반적인 용도의 많은 사용자의 예상이 빗나가게 됩니다. + content_cache_retention_period: "(부스트 및 답글 포함) 다른 서버의 모든 게시물은 해당 게시물에 대한 로컬 사용자의 상호 작용과 관계없이 지정된 일수가 지나면 삭제됩니다. 여기에는 로컬 사용자가 북마크 또는 즐겨찾기로 표시한 게시물도 포함됩니다. 다른 인스턴스 사용자와 주고 받은 개인 멘션도 손실되며 복원할 수 없습니다. 이 설정은 특수 목적의 인스턴스를 위한 것이며 일반적인 용도의 많은 사용자의 예상이 빗나가게 됩니다." custom_css: 사용자 지정 스타일을 웹 버전의 마스토돈에 지정할 수 있습니다. favicon: WEBP, PNG, GIF 또는 JPG. 기본 파비콘을 대체합니다. mascot: 고급 웹 인터페이스의 그림을 대체합니다. @@ -189,7 +189,7 @@ ko: context: 필터 컨텍스트 current_password: 현재 암호 입력 data: 데이터 - display_name: 표시 이름 + display_name: 표시되는 이름 email: 이메일 주소 expires_in: 만기 fields: 부가 필드 diff --git a/config/locales/simple_form.lad.yml b/config/locales/simple_form.lad.yml index de37005312..40d50983cb 100644 --- a/config/locales/simple_form.lad.yml +++ b/config/locales/simple_form.lad.yml @@ -3,6 +3,7 @@ lad: simple_form: hints: account: + attribution_domains_as_text: Una por linya. Defende de falsas atribusyones. discoverable: Tus publikasyones publikas i profil pueden ser avaliadas o rekomendadas en varias partes de Mastodon i tu profil puede ser sujerido a otros utilizadores. display_name: Tu nombre para amostrar. fields: Tu deskripsyon, pronombres, edad, todo lo ke keras. @@ -138,6 +139,7 @@ lad: url: Ande los evenimientos seran embiados labels: account: + attribution_domains_as_text: Sitios web autorizados a akreditarte discoverable: Avalia profil i publikasyones en algoritmos de deskuvrimyento fields: name: Etiketa @@ -206,6 +208,7 @@ lad: setting_default_privacy: Privasita de publikasyones setting_default_sensitive: Syempre marka multimedia komo sensivles setting_delete_modal: Mostra dialogo de konfirmasyon antes de efasar una publikasyon + setting_disable_hover_cards: Dezaktiva vista previa del profil al pasar el kursor setting_disable_swiping: Inkapasita movimyentos de arresvalamiento setting_display_media: Vizualizasyon de multimedia setting_display_media_default: Predeterminado diff --git a/config/locales/simple_form.lt.yml b/config/locales/simple_form.lt.yml index d2f46dbb32..09adec8085 100644 --- a/config/locales/simple_form.lt.yml +++ b/config/locales/simple_form.lt.yml @@ -8,7 +8,7 @@ lt: display_name: Tavo pilnas vardas arba smagus vardas. fields: Tavo pagrindinis puslapis, įvardžiai, amžius, bet kas, ko tik nori. indexable: Tavo vieši įrašai gali būti rodomi Mastodon paieškos rezultatuose. Žmonės, kurie bendravo su tavo įrašais, gali jų ieškoti nepriklausomai nuo to. - note: 'Gali @paminėti kitus žmones arba #saitažodžius.' + note: 'Gali @paminėti kitus žmones arba #grotažymes.' show_collections: Žmonės galės peržiūrėti tavo sekimus ir sekėjus. Žmonės, kuriuos seki, matys, kad juos seki, nepaisant to. unlocked: Žmonės galės jus sekti nepaprašę patvirtinimo. Panaikinkite žymėjimą, jei norite peržiūrėti sekimo prašymus, ir pasirinkti, ar priimti, ar atmesti naujus sekėjus. account_alias: @@ -41,7 +41,7 @@ lt: defaults: autofollow: Žmonės, kurie užsiregistruos per kvietimą, automatiškai seks tave avatar: WEBP, PNG, GIF arba JPG. Ne daugiau kaip %{size}. Bus sumažintas iki %{dimensions} tšk. - bot: Signalizuoti kitiems, kad paskyroje daugiausia atliekami automatiniai veiksmai ir kad ji gali būti nestebima. + bot: Pranešti visiems, kad paskyroje daugiausia atliekami automatiniai veiksmai ir kad jos neverta sekti context: Vienas arba keli kontekstai, kuriems turėtų būti taikomas filtras current_password: Saugumo sumetimais įvesk dabartinės paskyros slaptažodį current_username: Kad patvirtintum, įvesk dabartinės paskyros naudotojo vardą @@ -54,7 +54,7 @@ lt: password: Naudok bent 8 simbolius phrase: Bus suderinta, neatsižvelgiant į teksto lygį arba įrašo turinio įspėjimą scopes: Prie kurių API programai bus leidžiama pasiekti. Pasirinkus aukščiausio lygio sritį, atskirų sričių pasirinkti nereikia. - setting_aggregate_reblogs: Nerodyti naujų pakėlimų įrašams, kurie neseniai buvo pakelti (taikoma tik naujai gautiems pakėlimams). + setting_aggregate_reblogs: Neberodyti naujų pasidalinimų įrašais, kuriais neseniai buvo pasidalinta (taikoma tik naujai daromiems pasidalinimams) setting_always_send_emails: Paprastai el. laiško pranešimai nebus siunčiami, kai aktyviai naudoji Mastodon. setting_default_sensitive: Jautrioji medija pagal numatytuosius nustatymus yra paslėpta ir gali būti atskleista spustelėjus. setting_display_media_default: Slėpti mediją, pažymėtą kaip jautrią @@ -64,10 +64,12 @@ lt: setting_use_pending_items: Slėpti laiko skalės naujienas po paspaudimo, vietoj automatinio srauto slinkimo. username: Gali naudoti raides, skaičius ir pabraukimus whole_word: Kai raktažodis ar frazė yra tik raidinis ir skaitmeninis, jis bus taikomas tik tada, jei atitiks visą žodį + domain_allow: + domain: Nurodytas domenas galės gauti duomenis iš šio serverio ir iš jo gaunami duomenys bus apdorojami ir saugomi email_domain_block: with_dns_records: Bus bandoma išspręsti nurodyto domeno DNS įrašus, o rezultatai taip pat bus blokuojami featured_tag: - name: 'Štai keletas pastaruoju metu dažniausiai saitažodžių, kurių tu naudojai:' + name: 'Štai keletas pastaruoju metu dažniausiai tavo naudotų grotažymių:' filters: action: Pasirink, kokį veiksmą atlikti, kai įrašas atitinka filtrą actions: @@ -86,9 +88,10 @@ lt: site_contact_email: Kaip žmonės gali su tavimi susisiekti teisiniais ar pagalbos užklausimais. site_contact_username: Kaip žmonės gali tave pasiekti Mastodon. site_extended_description: Bet kokia papildoma informacija, kuri gali būti naudinga lankytojams ir naudotojams. Gali būti struktūrizuota naudojant Markdown sintaksę. + theme: Tema, kurią mato atsijungę lankytojai ir nauji vartotojai. thumbnail: Maždaug 2:1 dydžio vaizdas, rodomas šalia tavo serverio informacijos. timeline_preview: Atsijungę lankytojai galės naršyti naujausius viešus įrašus, esančius serveryje. - trends: Trendai rodo, kurios įrašai, saitažodžiai ir naujienų istorijos tavo serveryje sulaukia didžiausio susidomėjimo. + trends: Tendencijos rodo, kurie įrašai, grotažymės ir naujienų istorijos tavo serveryje sulaukia didžiausio susidomėjimo. trends_as_landing_page: Rodyti tendencingą turinį atsijungusiems naudotojams ir lankytojams vietoj šio serverio aprašymo. Reikia, kad tendencijos būtų įjungtos. imports: data: CSV failas, eksportuotas iš kito „Mastodon“ serverio. @@ -116,6 +119,11 @@ lt: title: Pavadinimas admin_account_action: include_statuses: Įtraukti praneštus įrašus į el. laišką + type: Veiksmas + types: + disable: Sustabdyti + none: Siųsti įspėjimą + sensitive: Jautrus(-i) defaults: autofollow: Kviesti sekti tavo paskyrą avatar: Profilio nuotrauka @@ -125,6 +133,7 @@ lt: email: El. pašto adresas expires_in: Nustoja galioti po fields: Papildomi laukai + header: Antraštės paveikslėlis irreversible: Mesti vietoj slėpti locale: Sąsajos kalba max_uses: Maksimalus naudojimo skaičius @@ -136,7 +145,7 @@ lt: setting_aggregate_reblogs: Grupuoti pakėlimus laiko skalėse setting_always_send_emails: Visada siųsti el. laiško pranešimus setting_auto_play_gif: Automatiškai leisti animuotų GIF - setting_boost_modal: Rodyti patvirtinimo dialogą prieš pakėliant įrašą + setting_boost_modal: Rodyti patvirtinimo dialogą prieš dalinantis įrašu setting_default_language: Skelbimo kalba setting_default_privacy: Skelbimo privatumas setting_default_sensitive: Visada žymėti mediją kaip jautrią @@ -162,13 +171,13 @@ lt: email_domain_block: with_dns_records: Įtraukti MX įrašus ir domeno IP adresus featured_tag: - name: Saitažodis + name: Grotažymė filters: actions: hide: Slėpti visiškai warn: Slėpti su įspėjimu form_admin_settings: - activity_api_enabled: Skelbti suvestinį statistiką apie naudotojų veiklą per API + activity_api_enabled: Skelbti suvestinę statistiką apie naudotojų veiklą per API app_icon: Programėlės piktograma bootstrap_timeline_accounts: Visada rekomenduoti šias paskyras naujiems naudotojams content_cache_retention_period: Nuotolinio turinio saugojimo laikotarpis @@ -197,7 +206,7 @@ lt: follow_request: Kažkas paprašė sekti tave mention: Kažkas paminėjo tave pending_account: Reikia peržiūros naujam paskyrui - reblog: Kažkas pakėlė tavo įrašą + reblog: Kažkas dalinosi tavo įrašu software_updates: label: Yra nauja Mastodon versija patch: Pranešti apie klaidų ištaisymo atnaujinimus @@ -209,10 +218,10 @@ lt: indexable: Įtraukti profilio puslapį į paieškos variklius show_application: Rodyti, iš kurios programėles išsiuntei įrašą tag: - listable: Leisti šį saitažodį rodyti paieškose ir pasiūlymuose - name: Saitažodis - trendable: Leisti šį saitažodį rodyti pagal trendus - usable: Leisti įrašams naudoti šį saitažodį vietoje + listable: Leisti šį grotažodį rodyti paieškose ir pasiūlymuose + name: Grotažymė + trendable: Leisti šią grotažymę rodyti tendencijose + usable: Leisti įrašams naudoti šią grotažymę lokaliai user: role: Vaidmuo time_zone: Laiko juosta diff --git a/config/locales/simple_form.lv.yml b/config/locales/simple_form.lv.yml index 11a76e6793..27e0c1e59a 100644 --- a/config/locales/simple_form.lv.yml +++ b/config/locales/simple_form.lv.yml @@ -28,7 +28,7 @@ lv: none: Šis ir izmantojams, lai nosūtītu lietotājam brīdinājumu bez jebkādu citu darbību izraisīšanas. sensitive: Visus šī lietotāja informācijas nesēju pielikumus uzspiesti atzīmēt kā jūtīgus. silence: Neļaut lietotājam veikt ierakstus ar publisku redzamību, paslēpt viņa ierakstus un paziņojumus no cilvēkiem, kas tam neseko. Tiek aizvērti visi ziņojumi par šo kontu. - suspend: Novērs jebkādu mijiedarbību no šī konta vai uz to un dzēs tā saturu. Atgriežams 30 dienu laikā. Tiek aizvērti visi šī konta pārskati. + suspend: Novērst jebkādu mijiedarbību ar kontu vai no tā un izdzēst tā saturu. Atsaucams 30 dienu laikā. Tiks aizvērti visi šī konta pārskati. warning_preset_id: Neobligāts. Tu joprojām vari pievienot pielāgotu tekstu sākotnējās iestatīšanas beigās announcement: all_day: Atzīmējot šo opciju, tiks parādīti tikai laika diapazona datumi @@ -54,7 +54,7 @@ lv: password: Izmanto vismaz 8 rakstzīmes phrase: Tiks saskaņots neatkarīgi no ziņas teksta reģistra vai satura brīdinājuma scopes: Kuriem API lietotnei būs ļauts piekļūt. Ja atlasa augstākā līmeņa tvērumu, nav nepieciešamas atlasīt atsevišķus. - setting_aggregate_reblogs: Nerādīt jaunus izcēlumus ziņām, kas nesen tika palielinātas (ietekmē tikai nesen saņemtos palielinājumus) + setting_aggregate_reblogs: Nerādīt jaunus pastiprinājumus ierakstiem, kas nesen tikuši pastiprināti (ietekmēs tikai turpmāk saņemtos pastiprinājumus) setting_always_send_emails: Parasti e-pasta paziņojumi netiek sūtīti, kad aktīvi izmantojat Mastodon setting_default_sensitive: Pēc noklusējuma jūtīgi informācijas nesēji ir paslēpti, un tos var atklāt ar klikšķi setting_display_media_default: Paslēpt attēlus un video, kas atzīmēti kā jūtīgi @@ -205,7 +205,7 @@ lv: password: Parole phrase: Atslēgvārds vai frāze setting_advanced_layout: Iespējot paplašināto tīmekļa saskarni - setting_aggregate_reblogs: Grupēt izcēlumus ierakstu lentās + setting_aggregate_reblogs: Grupēt pastiprinājumus ierakstu lentās setting_always_send_emails: Vienmēr sūtīt e-pasta paziņojumus setting_auto_play_gif: Automātiski atskaņot animētos GIF setting_boost_modal: Rādīt apstiprinājuma dialogu pirms izcelšanas diff --git a/config/locales/simple_form.nan-TW.yml b/config/locales/simple_form.nan-TW.yml new file mode 100644 index 0000000000..53e5b3340f --- /dev/null +++ b/config/locales/simple_form.nan-TW.yml @@ -0,0 +1,12 @@ +--- +nan-TW: + simple_form: + hints: + account: + display_name: Lí ê全名á是別號。 + fields: Lí ê頭頁、代名詞、年歲,kap其他beh分享ê。 + unlocked: 逐ê m̄免受批准就ē當tuè lí,若是lí想beh審查跟綴ê請求,揀beh准á是拒絕跟tuè ê,請毋通勾。 + defaults: + password: 用 8 ê字元以上 + setting_display_media_hide_all: 一直khàm掉媒體 + setting_display_media_show_all: 一直展示媒體 diff --git a/config/locales/simple_form.nl.yml b/config/locales/simple_form.nl.yml index 61884dc1aa..ef5fdcde4c 100644 --- a/config/locales/simple_form.nl.yml +++ b/config/locales/simple_form.nl.yml @@ -205,7 +205,7 @@ nl: password: Wachtwoord phrase: Trefwoord of zinsdeel setting_advanced_layout: Geavanceerde webomgeving inschakelen - setting_aggregate_reblogs: Boosts in tijdlijnen groeperen + setting_aggregate_reblogs: Boosts op tijdlijnen groeperen setting_always_send_emails: Altijd e-mailmeldingen verzenden setting_auto_play_gif: Geanimeerde GIF's automatisch afspelen setting_boost_modal: Vraag voor het boosten van een bericht een bevestiging @@ -272,7 +272,7 @@ nl: timeline_preview: Toegang tot de openbare tijdlijnen zonder in te loggen toestaan trendable_by_default: Trends goedkeuren zonder voorafgaande beoordeling trends: Trends inschakelen - trends_as_landing_page: Laat trends op de startpagina zien + trends_as_landing_page: Laat trends op de landingspagina zien interactions: must_be_follower: Meldingen van mensen die jou niet volgen blokkeren must_be_following: Meldingen van mensen die jij niet volgt blokkeren diff --git a/config/locales/simple_form.no.yml b/config/locales/simple_form.no.yml index 2b97809d7f..6d4a596e24 100644 --- a/config/locales/simple_form.no.yml +++ b/config/locales/simple_form.no.yml @@ -3,6 +3,7 @@ simple_form: hints: account: + attribution_domains_as_text: En per linje. Beskytter mot falske krediteringer. discoverable: Dine offentlige innlegg og profil kan bli omtalt eller anbefalt i ulike deler av Mastodon, og profilen din kan foreslås til andre brukere. display_name: Ditt fulle navn eller ditt morsomme navn. fields: Din hjemmeside, uttalelse, alder, eller alt annet du vil. @@ -136,6 +137,7 @@ url: Hvor hendelser vil bli sendt til labels: account: + attribution_domains_as_text: Nettsteder som har lov til å kreditere deg discoverable: Anbefal profil og innlegg i Mastodons algoritmer fields: name: Etikett diff --git a/config/locales/simple_form.pt-BR.yml b/config/locales/simple_form.pt-BR.yml index acc390381d..29b91c7507 100644 --- a/config/locales/simple_form.pt-BR.yml +++ b/config/locales/simple_form.pt-BR.yml @@ -7,7 +7,7 @@ pt-BR: discoverable: Suas publicações e perfil públicos podem ser destaques ou recomendados em várias áreas de Mastodon, e seu perfil pode ser sugerido a outros usuários. display_name: Seu nome completo ou apelido. fields: Sua página inicial, pronomes, idade ou qualquer coisa que quiser. - indexable: Suas publicações públicas podem aparecer nos resultados da pesquisa em Mastodon. As pessoas que interagiram com suas publicações podem conseguir pesquisá-las independentemente disso. + indexable: Suas publicações abertas podem aparecer nos resultados da busca em Mastodon. As pessoas que interagiram com suas publicações podem conseguir pesquisá-las independentemente disso. note: 'Você pode @mencionar outras pessoas ou usar #hashtags.' show_collections: As pessoas podem ver seus seguidores e quem você está seguindo. Os perfis que você seguir saberão que você os segue independentemente do que selecionar. unlocked: As pessoas poderão te seguir sem solicitar aprovação. Desmarque caso você queira revisar as solicitações. @@ -44,7 +44,7 @@ pt-BR: bot: Sinaliza aos outros de que essa conta executa principalmente ações automatizadas e pode não ser monitorada context: Um ou mais contextos onde o filtro deve atuar current_password: Para fins de segurança, digite a senha da conta atual - current_username: Para confirmar, digite o nome de usuário da conta atual + current_username: Para confirmar, entre com nome de usuário da conta atual digest: Enviado apenas após um longo período de inatividade com um resumo das menções recebidas durante ausência email: Você receberá um e-mail de confirmação header: WEBP, PNG, GIF ou JPG. No máximo %{size}. Será reduzido para %{dimensions}px @@ -125,7 +125,7 @@ pt-BR: otp: 'Digite o código de dois fatores gerado pelo aplicativo no seu celular ou use um dos códigos de recuperação:' webauthn: Se for uma chave USB tenha certeza de inseri-la e, se necessário, tocar nela. settings: - indexable: Sua página de perfil pode aparecer nos resultados de pesquisa no Google, Bing e outros. + indexable: Sua página de perfil pode aparecer nos resultados de busca no Google, Bing e outros. show_application: Você sempre conseguirá ver qual aplicativo realizou sua publicação independentemente disso. tag: name: Você pode mudar a capitalização das letras, por exemplo, para torná-la mais legível @@ -149,7 +149,7 @@ pt-BR: fields: name: Rótulo value: Conteúdo - indexable: Incluir publicações abertas nos resultados da pesquisa + indexable: Incluir publicações abertas nos resultados da busca show_collections: Mostrar quem segue e seguidores no perfil unlocked: Aceitar automaticamente novos seguidores account_alias: @@ -313,7 +313,7 @@ pt-BR: indexable: Incluir página de perfil nos motores de busca show_application: Exibir a partir de qual aplicativo você publicou tag: - listable: Permitir que esta hashtag apareça em pesquisas e sugestões + listable: Permitir que esta hashtag apareça em buscas e sugestões name: Hashtag trendable: Permitir que esta hashtag fique em alta usable: Permitir que as publicações usem esta hashtag localmente diff --git a/config/locales/simple_form.pt-PT.yml b/config/locales/simple_form.pt-PT.yml index 753e1e6166..4c2746f167 100644 --- a/config/locales/simple_form.pt-PT.yml +++ b/config/locales/simple_form.pt-PT.yml @@ -54,7 +54,7 @@ pt-PT: password: Use pelo menos 8 caracteres phrase: Será correspondido independentemente da capitalização ou do aviso de conteúdo duma publicação scopes: Quais as API a que a aplicação terá permissão para aceder. Se selecionar um âmbito de nível superior, não precisa de selecionar âmbitos individuais. - setting_aggregate_reblogs: Não mostrar os novos impulsos para publicações que tenham sido recentemente impulsionadas (apenas afeta os impulsos recentemente recebidos) + setting_aggregate_reblogs: Não mostrar as novas partilhas para publicações que tenham sido partilhadas recentemente (apenas afeta as partilhas recebidas recentemente) setting_always_send_emails: Normalmente as notificações por e-mail não serão enviadas quando estiver a utilizar ativamente o Mastodon setting_default_sensitive: Os multimédia sensíveis são ocultados por predefinição e podem ser revelados com um clique/toque setting_display_media_default: Esconder multimédia marcada como sensível @@ -82,11 +82,11 @@ pt-PT: backups_retention_period: Os utilizadores têm a possibilidade de gerar arquivos das suas publicações para descarregar mais tarde. Quando definido para um valor positivo, estes arquivos serão automaticamente eliminados do seu armazenamento após o número de dias especificado. bootstrap_timeline_accounts: Estas contas serão destacadas no topo das recomendações aos novos utilizadores. closed_registrations_message: Apresentado quando as inscrições estiverem encerradas - content_cache_retention_period: Todas as mensagens de outros servidores (incluindo impulsos e respostas) serão eliminadas após o número de dias especificado, independentemente de qualquer interação do utilizador local com essas mensagens. Isto inclui mensagens em que um utilizador local as tenha marcado ou adicionado aos favoritos. As menções privadas entre utilizadores de instâncias diferentes também se perderão e serão impossíveis de restaurar. A utilização desta definição destina-se a instâncias para fins especiais e quebra muitas expectativas dos utilizadores quando implementada para utilização geral. + content_cache_retention_period: Todas as publicações de outros servidores (incluindo partilhas e respostas) serão eliminadas após o número de dias especificado, independentemente de qualquer interação do utilizador local com essas publicações. Isto inclui mensagens em que um utilizador local as tenha salvo ou adicionado aos favoritos. As menções privadas entre utilizadores de instâncias diferentes também se perderão e serão impossíveis de recuperar. A utilização desta definição destina-se a instâncias para fins especiais e quebra muitas expectativas dos utilizadores quando implementada para utilização geral. custom_css: Pode aplicar estilos personalizados na versão web do Mastodon. favicon: WEBP, PNG, GIF ou JPG. Substitui o ícone de favorito padrão do Mastodon por um ícone personalizado. mascot: Sobrepõe-se à ilustração na interface web avançada. - media_cache_retention_period: Os ficheiros multimédia de publicações feitas por utilizadores remotos são armazenados em cache no seu servidor. Quando definido para um valor positivo, os ficheiros multimédia serão eliminados após o número de dias especificado. Se os ficheiros multimédia forem solicitados depois de terem sido eliminados, serão transferidos novamente, se o conteúdo de origem ainda estiver disponível. Devido a restrições sobre a frequência com que os cartões de pré-visualização de links pesquisam sites de terceiros, recomenda-se que este valor seja definido para, pelo menos, 14 dias, ou os cartões de pré-visualização de links não serão atualizados a pedido antes desse período. + media_cache_retention_period: Os ficheiros multimédia de publicações feitas por utilizadores remotos são armazenados em cache no seu servidor. Quando definido para um valor positivo, os ficheiros multimédia serão eliminados após o número de dias especificado. Se os ficheiros multimédia forem solicitados depois de terem sido eliminados, serão transferidos novamente, se o conteúdo de origem ainda estiver disponível. Devido a restrições sobre a frequência com que os cartões de pré-visualização de hiperligação pesquisam sites de terceiros, recomenda-se que este valor seja definido para, pelo menos, 14 dias, ou os cartões de pré-visualização de hiperligação não serão atualizados a pedido antes desse período. peers_api_enabled: Uma lista de nomes de domínio que este servidor encontrou no fediverso. Nenhum dado é incluído aqui sobre se você federa com um determinado servidor, apenas que o seu servidor o conhece. Este serviço é utilizado por serviços que recolhem estatísticas na federação, em termos gerais. profile_directory: O diretório de perfis lista todos os utilizadores que optaram por ter a sua conta a ser sugerida a outros. require_invite_text: Quando as incrições exigirem aprovação manual, faça o texto "Por que se quer juntar a nós?" da solicitação de convite ser obrigatório, em vez de opcional @@ -205,10 +205,10 @@ pt-PT: password: Palavra-passe phrase: Palavra-chave ou frase setting_advanced_layout: Ativar interface web avançada - setting_aggregate_reblogs: Agrupar impulsos em linhas de tempo + setting_aggregate_reblogs: Agrupar partilhas nas cronologias setting_always_send_emails: Enviar sempre notificações por e-mail setting_auto_play_gif: Reproduzir GIF automaticamente - setting_boost_modal: Mostrar caixa de diálogo de confirmação antes de impulsionar + setting_boost_modal: Mostrar caixa de diálogo de confirmação antes de partilhar setting_default_language: Idioma de publicação setting_default_privacy: Privacidade da publicação setting_default_sensitive: Marcar sempre os multimédia como sensíveis @@ -297,7 +297,7 @@ pt-PT: follow_request: Alguém pediu para ser seu seguidor mention: Alguém o mencionou pending_account: Uma nova conta aguarda aprovação - reblog: Alguém impulsionou uma publicação sua + reblog: Alguém partilhou uma publicação sua report: Uma nova denúncia foi submetida software_updates: all: Notificar todas as atualizações diff --git a/config/locales/simple_form.ru.yml b/config/locales/simple_form.ru.yml index 9ac0656c66..d37e2e70e9 100644 --- a/config/locales/simple_form.ru.yml +++ b/config/locales/simple_form.ru.yml @@ -19,23 +19,23 @@ ru: text: Вы можете использовать всё то же самое, что и в обычных постах, — ссылки, хештеги и упоминания title: Необязательно. Не видно получателю admin_account_action: - include_statuses: Пользователь будет видеть к каким постами применялись модераторские действия и выносились предупреждения + include_statuses: Пользователь увидит, какие посты стали причиной действий модераторов либо вынесения предупреждения send_email_notification: Пользователь получит сообщение о том, что случилось с его/её учётной записью text_html: Необязательно. Можно использовать всё то же самое, что и в обычных постах. Для экономии времени вы можете добавить шаблоны предупреждений - type_html: Выберите, какую санкцию вынести в отношении %{acct} + type_html: Выберите, какое действие применить к %{acct} types: - disable: Запретить пользователю использование своей учётной записи, без удаления или скрытия контента. - none: Отправить пользователю предупреждение, не принимая иных действий. - sensitive: Принудительно отметить опубликованное пользователем содержимое как «деликатного характера». - silence: Запретить пользователю публиковать посты с открытой видимостью, а также скрыть все прошлые посты и уведомления от людей, не читающих этого пользователя. Закрыть все отчеты по этому счету. - suspend: Предотвратить любое взаимодействие с этой учётной записью, удалив всё содержимое опубликованное с неё. Это действие можно отменить в течение 30 дней. Закрывает все отчеты против этого аккаунта. + disable: Запретить пользователю использовать свою учётную запись, при этом не удаляя и не скрывая саму учётную запись. + none: Отправить пользователю предупреждение, не принимая никаких других действий. + sensitive: Принудительно отмечать все медиавложения пользователя как содержимое деликатного характера. + silence: Пользователю будет запрещено создавать посты с публичной видимостью, а увидеть уведомления от этого пользователя и его посты смогут только подписчики. Все жалобы на эту учётную запись будут отмечены как решённые. + suspend: Запретить любое взаимодействие с этой учётной записью и удалить все связанные с ней данные. Это действие можно отменить в течение 30 дней. Все жалобы на эту учётную запись будут отмечены как решённые. warning_preset_id: Необязательно. Вы по-прежнему сможете добавить собственный текст в конец шаблона announcement: all_day: Если выбрано, часы начала и завершения будут скрыты ends_at: Необязательно. Объявление будет автоматически отменено в это время scheduled_at: Оставьте поля незаполненными, чтобы опубликовать объявление сразу starts_at: Необязательно. На случай, если ваше объявление привязано к какому-то временному интервалу - text: Вы можете использовать тот же синтаксис, что и в постах. Будьте предусмотрительны насчёт места, которое займёт объявление на экране пользователей + text: Вы можете использовать всё то же самое, что и в обычных постах. Пожалуйста, не забывайте о пространстве, которое объявление будет занимать на экране пользователя appeal: text: Вы можете обжаловать замечание только один раз defaults: @@ -77,10 +77,10 @@ ru: hide: Полностью скрыть отфильтрованный пост, будто бы его не существует warn: Скрыть отфильтрованный пост за предупреждением с указанием названия фильтра form_admin_settings: - activity_api_enabled: Подсчёт количества локальных постов, активных пользователей и новых регистраций на еженедельной основе - app_icon: WEBP, PNG, GIF или JPG. Замените значок приложения по умолчанию на мобильных устройствах пользовательским значком. - backups_retention_period: Пользователи могут создавать архивы своих постов, чтобы потом их забрать. Если задать положительное значение, эти архивы автоматически удалятся с вашего хранилища через указанное число дней. - bootstrap_timeline_accounts: Эти аккаунты будут рекомендованы для подписки новым пользователям. + activity_api_enabled: Еженедельная выгрузка количества локальных постов, активных пользователей и новых регистраций + app_icon: WEBP, PNG, GIF или JPG. Заменяет значок приложения на мобильных устройствах по умолчанию вашим значком. + backups_retention_period: Пользователи могут запустить создание архива своих постов, чтобы скачать его позже. Если задать положительное значение, эти архивы будут автоматически удалены с вашего хранилища через указанное число дней. + bootstrap_timeline_accounts: Эти учётные записи будут закреплены в начале списка рекомендуемых профилей для новых пользователей. closed_registrations_message: Отображается, когда регистрация закрыта content_cache_retention_period: Все сообщения с других серверов (включая бусты и ответы) будут удалены через указанное количество дней, независимо от того, как локальный пользователь взаимодействовал с этими сообщениями. Это касается и тех сообщений, которые локальный пользователь пометил в закладки или избранное. Приватные упоминания между пользователями из разных инстансов также будут потеряны и не смогут быть восстановлены. Использование этой настройки предназначено для экземпляров специального назначения и нарушает многие ожидания пользователей при использовании в общих целях. custom_css: Вы можете применять пользовательские стили в веб-версии Mastodon. @@ -119,8 +119,8 @@ ru: sign_up_requires_approval: Новые регистрации потребуют вашего одобрения severity: Выберите, что будет происходить с запросами с этого IP rule: - hint: Необязательно. Предоставьте дополнительные сведения о правиле - text: Опишите правило или требование для пользователей на этом сервере. Постарайтесь сделать его коротким и простым + hint: Необязательно. Расскажите о правиле подробнее + text: Опишите правило или требование для пользователей на этом сервере. Постарайтесь сформулировать его просто и лаконично sessions: otp: Создайте код двухфакторной аутентификации в приложении на вашем смартфоне и введите его здесь, или же вы можете использовать один из ваших резервных кодов. webauthn: Если вы используете USB-ключ, не забудьте вставить и активировать его. @@ -158,18 +158,18 @@ ru: acct: Адрес новой учётной записи account_warning_preset: text: Текст шаблона - title: Заголовок + title: Название admin_account_action: - include_statuses: Включать в письмо жалобы на посты - send_email_notification: Уведомить пользователя по электронной почте + include_statuses: Сообщить пользователю о том, на какие из его постов пожаловались + send_email_notification: Отправить пользователю уведомление по электронной почте text: Текст предупреждения type: Действие types: - disable: Заморозить - none: Ничего не делать - sensitive: Отметить как «деликатного характера» - silence: Скрыть - suspend: Заблокировать и безвозвратно удалить все данные учётной записи + disable: Отключить + none: Вынести предупреждение + sensitive: Скрыть медиа + silence: Ограничить + suspend: Заблокировать warning_preset_id: Использовать шаблон предупреждения announcement: all_day: Весь день @@ -245,32 +245,32 @@ ru: warn: Скрыть с предупреждением form_admin_settings: activity_api_enabled: Публикация агрегированной статистики активности пользователей в API - app_icon: Иконка приложения - backups_retention_period: Период хранения архива пользователя - bootstrap_timeline_accounts: Всегда рекомендовать эти учетные записи новым пользователям - closed_registrations_message: Сообщение, когда регистрация недоступна - content_cache_retention_period: Период хранения удаленного содержимого + app_icon: Значок приложения + backups_retention_period: Срок хранения архива пользователя + bootstrap_timeline_accounts: Всегда рекомендовать эти профили новым пользователям + closed_registrations_message: Текст сообщения о том, что регистрация недоступна + content_cache_retention_period: Срок хранения содержимого с других серверов custom_css: Пользовательский CSS favicon: Favicon mascot: Пользовательский маскот (устаревшее) - media_cache_retention_period: Период хранения кэша медиафайлов - peers_api_enabled: Публикация списка обнаруженных узлов в API + media_cache_retention_period: Срок хранения кэша медиа + peers_api_enabled: Публикация списка обнаруженных серверов в API profile_directory: Включить каталог профилей registrations_mode: Кто может зарегистрироваться - require_invite_text: Требуется причина для присоединения - show_domain_blocks: Показать блокировки домена - show_domain_blocks_rationale: Показать причину блокировки доменов - site_contact_email: Контактный e-mail + require_invite_text: Требовать указывать причину регистрации + show_domain_blocks: Показывать список заблокированных доменов + show_domain_blocks_rationale: Показывать причину блокировки домена + site_contact_email: Контактный адрес электронной почты site_contact_username: Контактное имя пользователя site_extended_description: Подробное описание site_short_description: Описание сервера site_terms: Политика конфиденциальности site_title: Имя сервера - status_page_url: Страница уведомлений + status_page_url: Страница состояния сервера theme: Тема по умолчанию - thumbnail: Изображение сервера + thumbnail: Обложка сервера timeline_preview: Разрешить доступ к публичным лентам без авторизации - trendable_by_default: Разрешить треды без предварительной проверки + trendable_by_default: Отключить обязательную премодерацию трендов trends: Включить тренды trends_as_landing_page: Использовать тенденции в качестве целевой страницы interactions: @@ -307,7 +307,7 @@ ru: patch: Уведомлять об обновлении исправлений trending_tag: Новый тренд требует рассмотрения rule: - hint: Больше информации + hint: Дополнительная информация text: Правило settings: indexable: Разрешить индексацию моего профиля поисковыми системами @@ -327,9 +327,9 @@ ru: permissions_as_keys: Разрешения position: Приоритет webhook: - events: Включенные события - template: Шаблон полезной нагрузки - url: Endpoint URL + events: Типы событий + template: Шаблон данных + url: Адрес 'no': Нет not_recommended: Не рекомендуется overridden: Переопределено diff --git a/config/locales/simple_form.tr.yml b/config/locales/simple_form.tr.yml index 5aed566626..69ec7a3996 100644 --- a/config/locales/simple_form.tr.yml +++ b/config/locales/simple_form.tr.yml @@ -276,7 +276,7 @@ tr: interactions: must_be_follower: Takipçim olmayan kişilerden gelen bildirimleri engelle must_be_following: Takip etmediğim kişilerden gelen bildirimleri engelle - must_be_following_dm: Takip etmediğiniz kişilerden gelen doğrudan iletileri engelle + must_be_following_dm: Takip etmediğiniz kişilerden gelen direkt mesajları engelle invite: comment: Yorum invite_request: diff --git a/config/locales/simple_form.uk.yml b/config/locales/simple_form.uk.yml index 9b901cbe2c..6c215793ff 100644 --- a/config/locales/simple_form.uk.yml +++ b/config/locales/simple_form.uk.yml @@ -3,7 +3,7 @@ uk: simple_form: hints: account: - attribution_domains_as_text: Один на рядок. Захищає від фальшивих атрибутів. + attribution_domains_as_text: Один на рядок. Захищає від фальшивих приписувань авторства. discoverable: Ваші дописи та профіль можуть бути рекомендовані в різних частинах Mastodon і ваш профіль може бути запропонований іншим користувачам. display_name: Ваше повне ім'я або ваш псевдонім. fields: Ваша домашня сторінка, займенники, вік, все, що вам заманеться. @@ -144,7 +144,7 @@ uk: url: Куди надсилатимуться події labels: account: - attribution_domains_as_text: Сайти дозволяють вам вказувати ваше авторство + attribution_domains_as_text: Сайти, яким можна вказувати вас як автора discoverable: Функції профілю та дописів у алгоритмах виявлення fields: name: Мітка @@ -214,7 +214,7 @@ uk: setting_default_sensitive: Позначати медіа делікатними setting_delete_modal: Показувати діалог підтвердження під час видалення допису setting_disable_hover_cards: Вимкнути попередній перегляд профілю під час наведення мишки - setting_disable_swiping: Вимкнути рух посування + setting_disable_swiping: Вимкнути жести гортання setting_display_media: Показ медіа setting_display_media_default: За промовчанням setting_display_media_hide_all: Сховати всі diff --git a/config/locales/simple_form.vi.yml b/config/locales/simple_form.vi.yml index 1561d0c1df..a79e894163 100644 --- a/config/locales/simple_form.vi.yml +++ b/config/locales/simple_form.vi.yml @@ -26,9 +26,9 @@ vi: types: disable: Tạm không cho đăng nhập tài khoản. none: Cảnh cáo tài khoản này, không áp đặt trừng phạt. - sensitive: Tất cả media tải lên sẽ bị gắn nhãn nhạy cảm. - silence: Cấm người này đăng tút công khai, ẩn tút của họ hiện ra với những người chưa theo dõi họ. - suspend: Vô hiệu hóa và xóa sạch dữ liệu của tài khoản này. Có thể khôi phục trước 30 ngày. + sensitive: Gán nhãn nhạy cảm cho tất cả media của tài khoản này. + silence: Cấm đăng tút công khai, ẩn tút của họ hiện ra với những người chưa theo dõi họ. + suspend: Vô hiệu hóa và xóa mọi nội dung. Có thể đảo ngược quyết định trước 30 ngày. warning_preset_id: Tùy chọn. Bạn vẫn có thể thêm chú thích riêng announcement: all_day: Chỉ có khoảng thời gian được đánh dấu mới hiển thị @@ -189,7 +189,7 @@ vi: context: Áp dụng current_password: Mật khẩu hiện tại data: Dữ liệu - display_name: Biệt danh + display_name: Tên gọi email: Địa chỉ email expires_in: Hết hạn sau fields: Metadata diff --git a/config/locales/simple_form.zh-CN.yml b/config/locales/simple_form.zh-CN.yml index 7e204f6b3b..af34cdfa49 100644 --- a/config/locales/simple_form.zh-CN.yml +++ b/config/locales/simple_form.zh-CN.yml @@ -10,7 +10,7 @@ zh-CN: indexable: 你的公开嘟文会出现在 Mastodon 的搜索结果中。无论是否勾选,与你的嘟文有过交互的人都可能通过搜索找到它们。 note: '你可以提及 @其他人 或 #话题 。' show_collections: 人们将能够浏览你的关注和追随者。你关注的人会看到你关注他们。 - unlocked: 人们将能够在不请求批准的情况下关注你。如果你希望审核关注请求并选择接受或拒绝新的粉丝,请取消勾选此项。 + unlocked: 人们将能够在不请求批准的情况下关注你。如果你希望审核关注请求并选择接受或拒绝新的关注者,请取消勾选此项。 account_alias: acct: 指定你想要迁移过来的原账号:用户名@站点域名 account_migration: @@ -26,9 +26,9 @@ zh-CN: types: disable: 禁止用户使用账号,但不会删除或隐藏账号内容。 none: 用它来向用户发送警告,不会触发其他操作。 - sensitive: 强制将此用户的所有媒体文件标记为敏感内容。 - silence: 阻止用户发送公开嘟文,除了关注者以外,其他人都无法看到他的嘟文和通知。关闭针对此账号的所有举报。 - suspend: 阻止此账号的任何交互并删除其内容。30天内可以撤销操作。关闭针对此账号的所有举报。 + sensitive: 强制将此用户的全部媒体文件标记为敏感内容。 + silence: 阻止用户发送公开嘟文,除了关注者以外,其他人都无法看到他的嘟文和通知。关闭针对此账号的全部举报。 + suspend: 阻止此账号的任何交互并删除其内容。30天内可以撤销操作。关闭针对此账号的全部举报。 warning_preset_id: 可选。你可以在预置文本末尾添加自定义文本 announcement: all_day: 如果选中,只有该时间段内的日期会显示。 @@ -87,7 +87,7 @@ zh-CN: favicon: WEBP、PNG、GIF 或 JPG。使用自定义图标覆盖 Mastodon 的默认图标。 mascot: 覆盖高级网页界面中的绘图形象。 media_cache_retention_period: 来自外站用户嘟文的媒体文件将被缓存到你的实例上。当该值被设为正值时,缓存的媒体文件将在指定天数后被清除。如果媒体文件在被清除后重新被请求,且源站内容仍然可用,它将被重新下载。由于链接预览卡拉取第三方站点的频率受到限制,建议将此值设置为至少 14 天,如果小于该值,链接预览卡将不会按需更新。 - peers_api_enabled: 本站在联邦宇宙中遇到的站点列表。 此处不包含关于您是否与给定站点联合的数据,只是您的实例知道它。 这由收集一般意义上的联合统计信息的服务使用。 + peers_api_enabled: 本站在联邦宇宙中遇到的站点列表。 此处不包含关于你是否与给定站点联合的数据,只是你的实例知道它。 这由收集一般意义上的联合统计信息的服务使用。 profile_directory: 个人资料目录会列出所有选择可被发现的用户。 require_invite_text: 当注册需要手动批准时,将“你为什么想要加入?”设为必填项 site_contact_email: 他人需要询恰法务或支持信息时的联络方式 @@ -300,7 +300,7 @@ zh-CN: reblog: 有人转嘟了我的嘟文 report: 有人提交了新举报 software_updates: - all: 通知所有更新 + all: 通知全部更新 critical: 仅在有关键更新时通知 label: 有新的 Mastodon 版本可用 none: 从不通知更新(不推荐) diff --git a/config/locales/simple_form.zh-TW.yml b/config/locales/simple_form.zh-TW.yml index 289a24f122..91a8550b4e 100644 --- a/config/locales/simple_form.zh-TW.yml +++ b/config/locales/simple_form.zh-TW.yml @@ -56,7 +56,7 @@ zh-TW: scopes: 允許使應用程式存取的 API。 若您選擇最高階範圍,則無須選擇個別項目。 setting_aggregate_reblogs: 不顯示最近已被轉嘟之嘟文的最新轉嘟(只影響最新收到的嘟文) setting_always_send_emails: 一般情況下若您活躍使用 Mastodon ,我們不會寄送電子郵件通知 - setting_default_sensitive: 敏感內容媒體預設隱藏,且按一下即可重新顯示 + setting_default_sensitive: 敏感內容媒體為預設隱藏,且按一下即可重新顯示 setting_display_media_default: 隱藏標為敏感內容的媒體 setting_display_media_hide_all: 總是隱藏所有媒體 setting_display_media_show_all: 總是顯示標為敏感內容的媒體 @@ -80,7 +80,7 @@ zh-TW: activity_api_enabled: 本站使用者的嘟文數量,以及本站的活躍使用者與一週內新使用者數量 app_icon: WEBP、PNG、GIF、或 JPG。於行動裝置上使用自訂圖示替代預設應用程式圖示。 backups_retention_period: 使用者能產生他們嘟文的備份以便日後下載。當設定為正值時,這些嘟文備份將於指定之天數後自您的儲存空間中自動刪除。 - bootstrap_timeline_accounts: 這些帳號將被釘選於新帳號跟隨推薦之上。 + bootstrap_timeline_accounts: 這些帳號將被釘選於新帳號跟隨建議之上。 closed_registrations_message: 於註冊關閉時顯示 content_cache_retention_period: 所有來自其他伺服器之嘟文(包括轉嘟與回嘟)將於指定之天數後自動刪除,不論這些嘟文與本地使用者間的任何互動。這將包含本地使用者已標記為書籤或最愛之嘟文。不同站點使用者間之私訊亦將遺失且不可回復。此設定應適用於特殊情況,若常規使用將超乎多數使用者預期。 custom_css: 您於 Mastodon 網頁版本中能套用客製化風格。 @@ -100,9 +100,9 @@ zh-TW: theme: 未登入之訪客或新使用者所見之佈景主題。 thumbnail: 大約 2:1 圖片會顯示於您伺服器資訊之旁。 timeline_preview: 未登入之訪客能夠瀏覽此伺服器上最新的公開嘟文。 - trendable_by_default: 跳過手動審核熱門內容。仍能於登上熱門趨勢後移除個別內容。 - trends: 熱門趨勢將顯示於您伺服器上正在吸引大量注意力的嘟文、主題標籤、或者新聞。 - trends_as_landing_page: 顯示熱門趨勢內容至未登入使用者及訪客而不是關於此伺服器之描述。需要啟用熱門趨勢。 + trendable_by_default: 跳過手動審核熱門內容。您仍能於登上熱門趨勢後移除個別內容。 + trends: 熱門趨勢將顯示於您伺服器上正在吸引大量注意力之嘟文、主題標籤、或新聞。 + trends_as_landing_page: 顯示熱門趨勢內容至未登入使用者及訪客而不是關於此伺服器之描述。需要啟用熱門趨勢功能。 form_challenge: current_password: 您正要進入安全區域 imports: @@ -234,7 +234,7 @@ zh-TW: type: 匯入類型 username: 使用者名稱 username_or_email: 使用者名稱或電子郵件地址 - whole_word: 整個詞彙 + whole_word: 完整詞彙 email_domain_block: with_dns_records: 包括網域的 MX 記錄與 IP 位址 featured_tag: @@ -315,7 +315,7 @@ zh-TW: tag: listable: 允許此主題標籤於搜尋及個人檔案目錄中顯示 name: 主題標籤 - trendable: 允許此主題標籤於熱門趨勢下顯示 + trendable: 允許此主題標籤於熱門趨勢中顯示 usable: 允許嘟文使用此主題標籤 user: role: 角色 diff --git a/config/locales/sq.yml b/config/locales/sq.yml index 7d7df6d4c2..28c4bd6ef2 100644 --- a/config/locales/sq.yml +++ b/config/locales/sq.yml @@ -807,7 +807,7 @@ sq: types: major: Hedhje e rëndësishme në qarkullim minor: Hedhje e vockël në qarkullim - patch: Hedhje në qarkullim arnimesh — ndreqje të meash dhe ndryshime të lehta për t’u aplikuar + patch: Hedhje në qarkullim arnimesh — ndreqje të metash dhe ndryshime të lehta për t’u aplikuar version: Version statuses: account: Autor diff --git a/config/locales/th.yml b/config/locales/th.yml index 188840a8b4..eb7fee5c76 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -69,7 +69,7 @@ th: email_status: สถานะอีเมล enable: เลิกอายัด enable_sign_in_token_auth: เปิดใช้งานการรับรองความถูกต้องด้วยโทเคนอีเมล - enabled: เปิดใช้งานอยู่ + enabled: เปิดใช้งานแล้ว enabled_msg: เลิกอายัดบัญชีของ %{username} สำเร็จ followers: ผู้ติดตาม follows: การติดตาม @@ -92,7 +92,7 @@ th: moderation: active: ใช้งานอยู่ all: ทั้งหมด - disabled: ปิดใช้งานอยู่ + disabled: ปิดใช้งานแล้ว pending: รอดำเนินการ silenced: จำกัดอยู่ suspended: ระงับอยู่ @@ -324,11 +324,11 @@ th: delete: ลบ destroyed_msg: ทำลายอีโมโจสำเร็จ! disable: ปิดใช้งาน - disabled: ปิดใช้งานอยู่ + disabled: ปิดใช้งานแล้ว disabled_msg: ปิดใช้งานอีโมจินั้นสำเร็จ emoji: อีโมจิ enable: เปิดใช้งาน - enabled: เปิดใช้งานอยู่ + enabled: เปิดใช้งานแล้ว enabled_msg: เปิดใช้งานอีโมจินั้นสำเร็จ image_hint: PNG หรือ GIF สูงสุด %{size} list: แสดงรายการ @@ -564,10 +564,10 @@ th: delete: ลบ description_html: "รีเลย์การติดต่อกับภายนอก เป็นเซิร์ฟเวอร์ตัวกลางที่แลกเปลี่ยนโพสต์สาธารณะจำนวนมากระหว่างเซิร์ฟเวอร์ที่บอกรับและเผยแพร่ไปยังรีเลย์ รีเลย์สามารถช่วยให้เซิร์ฟเวอร์ขนาดเล็กและขนาดกลางค้นพบเนื้อหาจากจักรวาลสหพันธ์ ซึ่งมิฉะนั้นจะต้องให้ผู้ใช้ในเซิร์ฟเวอร์ติดตามผู้คนอื่น ๆ ในเซิร์ฟเวอร์ระยะไกลด้วยตนเอง" disable: ปิดใช้งาน - disabled: ปิดใช้งานอยู่ + disabled: ปิดใช้งานแล้ว enable: เปิดใช้งาน enable_hint: เมื่อเปิดใช้งาน เซิร์ฟเวอร์ของคุณจะบอกรับโพสต์สาธารณะทั้งหมดจากรีเลย์นี้ และจะเริ่มส่งโพสต์สาธารณะของเซิร์ฟเวอร์นี้ไปยังรีเลย์ - enabled: เปิดใช้งานอยู่ + enabled: เปิดใช้งานแล้ว inbox_url: URL ของรีเลย์ pending: กำลังรอการอนุมัติของรีเลย์ save_and_enable: บันทึกและเปิดใช้งาน @@ -980,7 +980,7 @@ th: delete: ลบ description_html: "เว็บฮุค ทำให้ Mastodon สามารถส่ง การแจ้งเตือนตามเวลาจริง แบบผลักเกี่ยวกับเหตุการณ์ที่เลือกไปยังแอปพลิเคชันของคุณเอง ดังนั้นแอปพลิเคชันของคุณสามารถ ทริกเกอร์การตอบสนองได้โดยอัตโนมัติ" disable: ปิดใช้งาน - disabled: ปิดใช้งานอยู่ + disabled: ปิดใช้งานแล้ว edit: แก้ไขปลายทาง empty: คุณยังไม่ได้กำหนดค่าปลายทางเว็บฮุคใด ๆ enable: เปิดใช้งาน diff --git a/config/locales/uk.yml b/config/locales/uk.yml index f941bfac79..c92266ae20 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -24,7 +24,7 @@ uk: many: Дописів one: Допис other: Дописів - posts_tab_heading: Дописів + posts_tab_heading: Дописи self_follow_error: Ви не можете стежити за власним обліковим записом admin: account_actions: @@ -1207,7 +1207,7 @@ uk: more_from_html: Більше від %{name} s_blog: Блог %{name} then_instructions: Потім додайте доменне ім'я публікації у поле нижче. - title: Атрибути авторства + title: Зазначення авторства challenge: confirm: Далі hint_html: "Підказка: ми не будемо запитувати ваш пароль впродовж наступної години." @@ -1824,10 +1824,10 @@ uk: enabled_hint: Автоматично видаляє ваші дописи після досягнення вказаного вікового порогу, якщо вони не є одним з наведених винятків exceptions: Винятки explanation: Оскільки видалення дописів є складною операцією, то це відбувається повільно, коли сервер не дуже завантажено. З цієї причини ваші дописи можуть бути видалені через деякий час після досягнення вікового порогу. - ignore_favs: Ігнорувати обране + ignore_favs: Ігнорувати вподобані ignore_reblogs: Ігнорувати поширення interaction_exceptions: Винятки базуються на взаємодії - interaction_exceptions_explanation: Зверніть увагу, що немає гарантії, щоб дописи були видалені, якщо вони йдуть нижче улюблених або підсилювачів після того, як вони перейшли за них. + interaction_exceptions_explanation: 'Зауважте: якщо допис вподобають або поширять достатню кількість разів, а потім це скасують, то його може все одно бути залишено.' keep_direct: Зберігати приватні повідомлення keep_direct_hint: Не видаляти ваших особистих повідомлень keep_media: Зберігати повідомлення з вкладеними мультимедійними файлами @@ -1850,8 +1850,8 @@ uk: '63113904': 2 роки '7889238': 3 місяці min_age_label: Поріг давності - min_favs: Залишати дописи в обраному більше ніж - min_favs_hint: Не видаляти ваших дописів, що були поширені більш ніж вказану кількість разів. Залиште порожнім, щоб видаляти дописи, попри кількість їхніх поширень + min_favs: Залишати дописи, вподобані стільки разів + min_favs_hint: Не видаляти ваших дописів, які були вподобані принаймні стільки разів. Залиште порожнім, щоб видаляти дописи незалежно від кількості вподобань min_reblogs: Залишати дописи, поширені більше ніж min_reblogs_hint: Не видаляти ваших дописів, що були поширені більш ніж вказану кількість разів. Залиште порожнім, щоб видаляти дописи, попри кількість їхніх поширень stream_entries: diff --git a/config/locales/vi.yml b/config/locales/vi.yml index 4303f5dff6..f81bfdd4ed 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -62,7 +62,7 @@ vi: disable_sign_in_token_auth: Tắt xác minh bằng email disable_two_factor_authentication: Vô hiệu hóa xác thực 2 bước disabled: Tạm khóa - display_name: Biệt danh + display_name: Tên gọi domain: Máy chủ edit: Chỉnh sửa email: Email @@ -78,7 +78,7 @@ vi: invite_request_text: Lý do đăng ký invited_by: Được mời bởi ip: IP - joined: Đã tham gia + joined: Tham gia location: all: Tất cả local: Máy chủ này @@ -403,7 +403,7 @@ vi: create: Tạo chặn hint: Chặn máy chủ sẽ không ngăn việc hiển thị tút của máy chủ đó trong cơ sở dữ liệu, nhưng sẽ khiến tự động áp dụng các phương pháp kiểm duyệt cụ thể trên các tài khoản đó. severity: - desc_html: "Ẩn sẽ làm cho tút của tài khoản trở nên vô hình đối với bất kỳ ai không theo dõi họ. Vô hiệu hóa sẽ xóa tất cả nội dung, phương tiện và dữ liệu khác của tài khoản. Dùng Cảnh cáo nếu bạn chỉ muốn cấm tải lên ảnh và video." + desc_html: "Hạn chế sẽ làm cho tút của tài khoản trở nên vô hình đối với bất kỳ ai không theo dõi họ. Vô hiệu hóa sẽ xóa tất cả nội dung, phương tiện và dữ liệu khác của tài khoản. Dùng Cảnh cáo nếu bạn chỉ muốn cấm tải lên ảnh và video." noop: Không hoạt động silence: Ẩn suspend: Vô hiệu hóa @@ -967,7 +967,7 @@ vi: usage_comparison: Dùng %{today} lần hôm nay, so với %{yesterday} hôm qua used_by_over_week: other: "%{count} người dùng tuần rồi" - title: Đề xuất & Xu hướng + title: Đề xuất và Xu hướng trending: Xu hướng warning_presets: add_new: Thêm mới @@ -1262,7 +1262,7 @@ vi: csv: CSV domain_blocks: Máy chủ chặn lists: Danh sách - mutes: Người ẩn + mutes: Tài khoản bị phớt lờ storage: Tập tin featured_tags: add_new: Thêm mới @@ -1349,14 +1349,14 @@ vi: domain_blocking_html: Bạn sắp thay thế danh sách máy chủ chặn với %{total_items} máy chủ từ %{filename}. following_html: Bạn sắp theo dõi với %{total_items} người từ %{filename}ngừng theo dõi bất kỳ ai. lists_html: Bạn sắp thay thế các danh sách bằng nội dung từ %{filename}. Hơn %{total_items} tài khoản sẽ được thêm vào những danh sách mới. - muting_html: Bạn sắp thay thế danh sách ẩn với %{total_items} người từ %{filename}. + muting_html: Bạn sắp thay thế danh sách tài khoản phớt lờ tới %{total_items} tài khoản từ %{filename}. preambles: blocking_html: Bạn sắp chặn tới %{total_items} người từ %{filename}. bookmarks_html: Bạn sắp thêm vào %{total_items} tút từ %{filename} vào lượt lưu. domain_blocking_html: Bạn sắp chặn tới %{total_items} máy chủ từ %{filename}. following_html: Bạn sắp theo dõi tới %{total_items} người từ %{filename}. lists_html: Bạn sắp thêm %{total_items} tài khoản từ %{filename} vào danh sách của bạn. Những danh sách mới sẽ được tạo nếu bạn chưa có danh sách nào. - muting_html: Bạn sắp ẩn lên tới %{total_items} người từ %{filename}. + muting_html: Bạn sắp phớt lờ lên tới %{total_items} tài khoản từ %{filename}. preface: Bạn có thể nhập dữ liệu mà bạn đã xuất từ một máy chủ khác, chẳng hạn danh sách những người đang theo dõi hoặc chặn. recent_imports: Đã nhập gần đây states: @@ -1373,11 +1373,11 @@ vi: domain_blocking: Đang nhập máy chủ đã chặn following: Đang nhập người theo dõi lists: Nhập danh sách - muting: Đang nhập người đã ẩn + muting: Nhập danh sách tài khoản phớt lờ type: Kiểu nhập type_groups: constructive: Theo dõi và lưu - destructive: Chặn và ẩn + destructive: Chặn và phớt lờ types: blocking: Danh sách người đã chặn bookmarks: Tút đã lưu @@ -1478,7 +1478,7 @@ vi: title: Kiểm duyệt move_handler: carry_blocks_over_text: Tài khoản này chuyển từ %{acct}, máy chủ mà bạn đã chặn trước đó. - carry_mutes_over_text: Tài khoản này chuyển từ %{acct}, máy chủ mà bạn đã ẩn trước đó. + carry_mutes_over_text: Tài khoản này chuyển sang từ %{acct}, máy chủ mà bạn đã phớt lờ trước đó. copy_account_note_text: 'Tài khoản này chuyển từ %{acct}, đây là lịch sử kiểm duyệt của họ:' navigation: toggle_menu: Bật/tắt menu @@ -1563,7 +1563,7 @@ vi: privacy: hint_html: Tùy chỉnh cách mọi người tìm thấy hồ sơ và tút của bạn. privacy: Riêng tư - privacy_hint_html: Kiểm soát mức độ chi tiết bạn muốn tiết lộ. Mọi người khám phá các hồ sơ thú vị và các ứng dụng thú vị bằng cách theo dõi những người khác và xem họ đăng từ ứng dụng nào, nhưng có thể bạn muốn ẩn nó đi. + privacy_hint_html: Kiểm soát mức độ tiết lộ chi tiết. Mọi người khám phá các hồ sơ thú vị và các ứng dụng thú vị bằng cách xem bạn theo dõi ai và bạn đăng bằng ứng dụng nào, nhưng có thể bạn muốn ẩn nó đi. reach: Tiếp cận reach_hint_html: Kiểm soát cách bạn được đề xuất và theo dõi. Bạn có muốn tút của mình xuất hiện trên trang Khám phá không? Bạn có muốn bạn xuất hiện trong các đề xuất theo dõi của người khác không? Bạn muốn tự động chấp nhận tất cả những người theo dõi mới hay tự duyệt từng người theo dõi? search: Tìm kiếm diff --git a/config/locales/zh-CN.yml b/config/locales/zh-CN.yml index 806024b110..a4d04f717c 100644 --- a/config/locales/zh-CN.yml +++ b/config/locales/zh-CN.yml @@ -71,7 +71,7 @@ zh-CN: enable_sign_in_token_auth: 启用邮件令牌身份验证 enabled: 已启用 enabled_msg: 成功解冻 %{username} 的账号 - followers: 粉丝 + followers: 关注者 follows: 关注 header: 封面图 inbox_url: 收件箱(Inbox)URL @@ -118,7 +118,7 @@ zh-CN: reject: 拒绝 rejected_msg: 已拒绝 %{username} 的注册申请 remote_suspension_irreversible: 此账号的数据已被不可逆转地删除。 - remote_suspension_reversible_hint_html: 账号已在他们的服务器上封禁,数据将在 %{date} 完全删除。 在此之前,远程服务器仍可恢复此账号,并且没有任何不良影响。 如果你想立即移除该账号的所有数据,可以在下面进行。 + remote_suspension_reversible_hint_html: 账号已在他们的服务器上封禁,数据将在 %{date} 完全删除。 在此之前,远程服务器仍可恢复此账号,并且没有任何不良影响。 如果你想立即移除该账号的全部数据,可以在下面进行。 remove_avatar: 删除头像 remove_header: 移除封面图 removed_avatar_msg: 成功删除 %{username} 的头像 @@ -485,7 +485,7 @@ zh-CN: confirm_purge: 确定要删除此站点的全部数据吗? content_policies: comment: 内部备注 - description_html: 你可以设置应用于此域名所有账号和其所有子域名的内容策略。 + description_html: 你可以设置应用于此域名全部账号和其全部子域名的内容策略。 limited_federation_mode_description_html: 你可以选择是否允许与此实例联合。 policies: reject_media: 拒收媒体 @@ -525,7 +525,7 @@ zh-CN: private_comment: 私密评论 public_comment: 公开评论 purge: 清除 - purge_description_html: 如果你确认此域名已永久离线,可以从存储中删除此域名的所有账号记录和相关数据。这将会需要一段时间。 + purge_description_html: 如果你确认此域名已永久离线,可以从存储中删除此域名的全部账号记录和相关数据。这将会需要一段时间。 title: 联合 total_blocked_by_us: 被本站屏蔽的 total_followed_by_them: 被对方关注的 @@ -566,7 +566,7 @@ zh-CN: disable: 禁用 disabled: 已禁用 enable: 启用 - enable_hint: 启用此功能后,你的实例会订阅此中继站的所有公开嘟文,并同时向其推送本服务器的公开嘟文。 + enable_hint: 启用此功能后,你的实例会订阅此中继站的全部公开嘟文,并同时向其推送本服务器的公开嘟文。 enabled: 已启用 inbox_url: 中继站 URL pending: 等待中继站的确认 @@ -589,8 +589,8 @@ zh-CN: mark_as_sensitive_description_html: 被举报的嘟文将被标记为敏感,同时该账号将被标记一次处罚,以供未来同一账号再次违规时参考。 other_description_html: 查看更多控制该账号行为的选项,并自定义编写与被举报账号的通信。 resolve_description_html: 不会对被举报账号采取任何动作,举报将被关闭,也不会留下处罚记录。 - silence_description_html: 只有关注或手工搜索此账号才能查看其资料,将严重限制其触达范围。可随时撤销。关闭针对此账号的所有举报。 - suspend_description_html: 该账号及其所有内容将无法访问并最终被删除,且无法与该账号进行互动。 在 30 天内可随时撤销。关闭针对此账号的所有举报。 + silence_description_html: 只有关注或手工搜索此账号才能查看其资料,将严重限制其触达范围。可随时撤销。关闭针对此账号的全部举报。 + suspend_description_html: 该账号及其全部内容将无法访问并最终被删除,且无法与该账号进行互动。 在 30 天内可随时撤销。关闭针对此账号的全部举报。 actions_description_html: 决定采取何种措施处理此举报。如果对被举报账号采取惩罚性措施,将向其发送一封电子邮件通知。但若选中垃圾信息类别则不会发送通知。 actions_description_remote_html: 决定采取何种行动来解决此举报。 这只会影响你的服务器如何与该远程账号的通信并处理其内容。 actions_no_posts: 该举报没有相关嘟文可供删除 @@ -653,7 +653,7 @@ zh-CN: silence_html: 严格限制 @%{acct} 的影响力,方法是让他们的个人资料和内容仅对已经关注他们的人可见,或手动查找其个人资料时 suspend_html: 暂停 @%{acct},使他们的个人资料和内容无法访问,也无法与之互动 close_report: '将举报 #%{id} 标记为已解决' - close_reports_html: 将针对 @%{acct}所有举报标记为已解决 + close_reports_html: 将针对 @%{acct}全部举报标记为已解决 delete_data_html: 从现在起 30 天后删除 @%{acct} 的个人资料和内容,除非他们同时解除暂停。 preview_preamble_html: "@%{acct} 将收到包含以下内容的警告:" record_strike_html: 记录一次针对 @%{acct} 的警示,以帮助你在这个账号上的未来违规事件中得到重视。 @@ -680,7 +680,7 @@ zh-CN: description_html: 使用 用户角色,你可以自定义你的用户可以访问的 Mastodon 功能和区域。 edit: 编辑角色 '%{name}' everyone: 默认权限 - everyone_full_description_html: 该角色是基础角色,会影响所有用户,包括未指定角色的用户。 其他所有的角色都继承该角色的权限。 + everyone_full_description_html: 该角色是基础角色,会影响全部用户,包括未指定角色的用户。 其他全部的角色都继承该角色的权限。 permissions_count: other: "%{count} 个权限" privileges: @@ -752,7 +752,7 @@ zh-CN: preamble: 控制用户生成的内容在 Mastodon 中如何存储。 title: 内容保留 default_noindex: - desc_html: 影响所有尚未更改此设置的用户 + desc_html: 影响全部尚未更改此设置的用户 title: 默认不让用户被搜索引擎索引 discovery: follow_recommendations: 关注推荐 @@ -764,11 +764,11 @@ zh-CN: title: 发现 trends: 热门 domain_blocks: - all: 对所有人 + all: 对每个人 disabled: 不对任何人 users: 对已登录的本站用户 registrations: - moderation_recommandation: 在向所有人开放注册之前,请确保你拥有一个人手足够且反应迅速的管理团队! + moderation_recommandation: 在向每个人开放注册之前,请确保你拥有一个人手足够且反应迅速的管理团队! preamble: 控制谁可以在你的服务器上创建账号。 title: 注册 registrations_mode: @@ -825,7 +825,7 @@ zh-CN: with_media: 含有媒体文件 strikes: actions: - delete_statuses: "%{name} 刪除了 %{target} 的嘟文" + delete_statuses: "%{name} 删除了 %{target} 的嘟文" disable: "%{name} 冻结了用户 %{target}" mark_statuses_as_sensitive: "%{name} 已将 %{target} 的嘟文标记为敏感内容" none: "%{name} 向 %{target} 发送了警告" @@ -873,10 +873,10 @@ zh-CN: message_html: 有一个Mastodon错误修复更新可用。 upload_check_privacy_error: action: 点击这里查看更多信息 - message_html: "您的网站服务器配置错误,您用户的隐私处于危险中。" + message_html: "你的网站服务器配置错误,你的用户的隐私处于危险中。" upload_check_privacy_error_object_storage: action: 点击这里查看更多信息 - message_html: "您的对象存储空间配置错误,您用户的隐私处于危险中。" + message_html: "你的对象存储空间配置错误,你的用户的隐私处于危险中。" tags: moderation: not_trendable: 不在热门中显示 @@ -1313,7 +1313,7 @@ zh-CN: all_items_on_page_selected_html: other: 此页面上的所有 %{count} 项目已被选中。 all_matching_items_selected_html: - other: 所有 %{count} 匹配你搜索的项目都已被选中。 + other: 全部 %{count} 匹配你搜索的项目都已被选中。 cancel: 取消 changes_saved_msg: 更改保存成功! confirm: 确认 @@ -1324,7 +1324,7 @@ zh-CN: order_by: 排序方式 save_changes: 保存更改 select_all_matching_items: - other: 选择匹配你搜索的所有 %{count} 个项目。 + other: 选择匹配你搜索的全部 %{count} 个项目。 today: 今天 validation_errors: other: 出错啦!检查一下下面 %{count} 处出错的地方吧 @@ -1470,7 +1470,7 @@ zh-CN: before: 在继续前,请仔细阅读下列说明: cooldown: 移动后会有一个冷却期,在此期间你将无法再次移动 disabled_account: 此后,你的当前账号将无法使用。但是,你仍然有权导出数据或者重新激活。 - followers: 这步操作将把所有关注者从当前账号移动到新账号 + followers: 这步操作将把全部关注者从当前账号移动到新账号 only_redirect_html: 或者,你可以只在你的账号资料上设置一个跳转。 other_data: 不会自动移动其它数据 redirect: 在收到一个跳转通知后,你当前的账号资料将会更新,并被排除在搜索范围外 @@ -1565,7 +1565,7 @@ zh-CN: privacy: 隐私 privacy_hint_html: 控制你愿意向他人透露多少信息。通过浏览他人的关注列表和查看他们发嘟所用的应用,人们可以发现有趣的用户和酷炫的应用,但你可能更喜欢将其隐藏起来。 reach: 范围 - reach_hint_html: 控制你是否希望被新人发现和关注。你是否希望你的嘟文出现在“探索”页面上?你是否希望其他人在关注推荐中看到你?你是想自动接受所有新粉丝,还是对每个粉丝都进行仔细的筛选? + reach_hint_html: 控制你是否希望被新人发现和关注。你是否希望你的嘟文出现在“探索”页面上?你是否希望其他人在关注推荐中看到你?你是想自动接受全部新关注者,还是对每个关注者都进行仔细的筛选? search: 搜索 search_hint_html: 控制你希望被找到的方式。你想让人们通过你公开发布的内容来找到你吗?当在网络上搜索时,你是否希望Mastodon之外的人能够找到你的个人资料?请注意,我们无法保证完全排除所有搜索引擎对公开信息的索引。 title: 隐私与可达性 @@ -1582,7 +1582,7 @@ zh-CN: activity: 账号活动 confirm_follow_selected_followers: 你确定想要关注所选的关注者吗? confirm_remove_selected_followers: 你确定想要取关所选的关注者吗? - confirm_remove_selected_follows: 您确定要删除选定的关注者吗? + confirm_remove_selected_follows: 你确定要删除选定的关注者吗? dormant: 休眠 follow_failure: 无法关注选中的部分账号。 follow_selected_followers: 关注选中的关注者 @@ -1595,7 +1595,7 @@ zh-CN: mutual: 互相关注 primary: 主要 relationship: 关系 - remove_selected_domains: 删除在选定站点中的所有关注者 + remove_selected_domains: 删除在选定站点中的全部关注者 remove_selected_followers: 移除选中的关注者 remove_selected_follows: 取消关注所选用户 status: 账号状态 @@ -1734,7 +1734,7 @@ zh-CN: enabled_hint: 自动删除你发布的超过指定期限的嘟文,除非满足下列条件之一 exceptions: 例外 explanation: 删除嘟文会占用大量服务器资源,所以这个操作将在服务器空闲时完成。因此,你的嘟文可能会在达到删除期限之后一段时间才会被删除。 - ignore_favs: 喜欢数阈值 + ignore_favs: 忽略喜欢 ignore_reblogs: 转嘟数阈值 interaction_exceptions: 基于互动的例外 interaction_exceptions_explanation: 请注意,如果嘟文的转嘟数和喜欢数超过保留阈值之后,又降到阈值以下,则可能不会被删除。 @@ -1841,7 +1841,7 @@ zh-CN: delete_statuses: 你的一些嘟文被发现违反了一条或多条社区准则,并已被 %{instance} 的管理员删除。 disable: 你不能再使用你的账号,但你的个人资料和其他数据保持不变。你可以请求数据备份,更改账号设置或删除账号。 mark_statuses_as_sensitive: 你的一些嘟文已经被 %{instance} 管理员标记为敏感内容。这意味着别人需要在嘟文中点击媒体,才能显示媒体预览。你可以在今后发布嘟文时自行将媒体标记为敏感内容。 - sensitive: 即刻起,你上传的所有媒体文件都将被标记为敏感内容并隐藏,在点击警告后才能查看。 + sensitive: 即刻起,你上传的全部媒体文件都将被标记为敏感内容并隐藏,在点击警告后才能查看。 silence: 你可以继续使用你的账号,但只有已关注你的人才能在看到你在此服务器上的嘟文,并且你会被排除在各类公共列表之外。其他用户仍可以手动关注你。 suspend: 你不能再使用你的账号,并且你的个人资料和其他数据都将无法访问。在大约30天内,你仍可以登录并请求数据备份,之后相关数据将被完全删除。我们会保留一些基础数据以避免封禁失效。 reason: 理由: @@ -1904,9 +1904,9 @@ zh-CN: title: "%{name},欢迎你的加入!" users: follow_limit_reached: 你不能关注超过 %{limit} 个人 - go_to_sso_account_settings: 转到您的身份提供商进行账号设置 + go_to_sso_account_settings: 转到你的身份提供商进行账号设置 invalid_otp_token: 输入的双因素认证代码无效 - otp_lost_help_html: 如果你不慎丢失了所有的代码,请联系 %{email} 寻求帮助 + otp_lost_help_html: 如果你不慎丢失了全部的代码,请联系 %{email} 寻求帮助 rate_limited: 验证尝试次数过多,请稍后再试。 seamless_external_login: 你通过外部服务登录,因此密码和邮件设置不可用。 signed_in_as: 当前登录的账号: diff --git a/config/locales/zh-TW.yml b/config/locales/zh-TW.yml index 7be4322572..bac49d23a4 100644 --- a/config/locales/zh-TW.yml +++ b/config/locales/zh-TW.yml @@ -1285,7 +1285,7 @@ zh-TW: statuses_hint_html: 此過濾器會套用至所選之各別嘟文,無論其是否符合下列關鍵字。審閱或自過濾條件移除嘟文。 title: 編輯過濾條件 errors: - deprecated_api_multiple_keywords: 這些參數無法自此應用程式中更改,因為它們適用於一或多個過濾器關鍵字。請使用較新的應用程式或是網頁介面。 + deprecated_api_multiple_keywords: 這些參數無法自此應用程式中更改,因為它們適用於一個以上之過濾器關鍵字。請使用較新的應用程式或是網頁介面。 invalid_context: 沒有提供內文或內文無效 index: contexts: "%{contexts} 中的過濾器" @@ -1556,7 +1556,7 @@ zh-TW: invalid_choice: 您所選的投票選項並不存在 over_character_limit: 不能多於 %{max} 個字元 self_vote: 您無法於您的嘟文投票 - too_few_options: 必須包含至少一個項目 + too_few_options: 必須包含一個項目以上 too_many_options: 不能包含多於 %{max} 個項目 preferences: other: 其他 @@ -1570,7 +1570,7 @@ zh-TW: reach_hint_html: 控制您希望被新使用者探索或跟隨之方式。想使您的嘟文出現於探索頁面嗎?想使其他人透過他們的跟隨建議找到您嗎?想自動接受所有新跟隨者嗎?或是想逐一控制跟隨請求嗎? search: 搜尋 search_hint_html: 控制您希望如何被發現。您想透過您的公開嘟文被人們發現嗎?您想透過網頁搜尋被 Mastodon 以外的人找到您的個人檔案嗎?請注意,公開資訊可能無法全面地被所有搜尋引擎所排除。 - title: 隱私權及觸及 + title: 隱私權與觸及 privacy_policy: title: 隱私權政策 reactions: From 87327afc4ec42f53f87f84ada0dbe70e3e73828c Mon Sep 17 00:00:00 2001 From: Claire Date: Tue, 24 Mar 2026 12:03:57 +0100 Subject: [PATCH 4/8] Update dependency `rails` --- Gemfile.lock | 112 +++++++++++++++++++++++++++------------------------ 1 file changed, 59 insertions(+), 53 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 87aa76772e..a6af484c5f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -10,35 +10,36 @@ GIT GEM remote: https://rubygems.org/ specs: - actioncable (7.1.5.2) - actionpack (= 7.1.5.2) - activesupport (= 7.1.5.2) + actioncable (7.1.6) + actionpack (= 7.1.6) + activesupport (= 7.1.6) nio4r (~> 2.0) websocket-driver (>= 0.6.1) zeitwerk (~> 2.6) - actionmailbox (7.1.5.2) - actionpack (= 7.1.5.2) - activejob (= 7.1.5.2) - activerecord (= 7.1.5.2) - activestorage (= 7.1.5.2) - activesupport (= 7.1.5.2) + actionmailbox (7.1.6) + actionpack (= 7.1.6) + activejob (= 7.1.6) + activerecord (= 7.1.6) + activestorage (= 7.1.6) + activesupport (= 7.1.6) mail (>= 2.7.1) net-imap net-pop net-smtp - actionmailer (7.1.5.2) - actionpack (= 7.1.5.2) - actionview (= 7.1.5.2) - activejob (= 7.1.5.2) - activesupport (= 7.1.5.2) + actionmailer (7.1.6) + actionpack (= 7.1.6) + actionview (= 7.1.6) + activejob (= 7.1.6) + activesupport (= 7.1.6) mail (~> 2.5, >= 2.5.4) net-imap net-pop net-smtp rails-dom-testing (~> 2.2) - actionpack (7.1.5.2) - actionview (= 7.1.5.2) - activesupport (= 7.1.5.2) + actionpack (7.1.6) + actionview (= 7.1.6) + activesupport (= 7.1.6) + cgi nokogiri (>= 1.8.5) racc rack (>= 2.2.4) @@ -46,16 +47,17 @@ GEM rack-test (>= 0.6.3) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - actiontext (7.1.5.2) - actionpack (= 7.1.5.2) - activerecord (= 7.1.5.2) - activestorage (= 7.1.5.2) - activesupport (= 7.1.5.2) + actiontext (7.1.6) + actionpack (= 7.1.6) + activerecord (= 7.1.6) + activestorage (= 7.1.6) + activesupport (= 7.1.6) globalid (>= 0.6.0) nokogiri (>= 1.8.5) - actionview (7.1.5.2) - activesupport (= 7.1.5.2) + actionview (7.1.6) + activesupport (= 7.1.6) builder (~> 3.1) + cgi erubi (~> 1.11) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) @@ -64,22 +66,22 @@ GEM activemodel (>= 4.1) case_transform (>= 0.2) jsonapi-renderer (>= 0.1.1.beta1, < 0.3) - activejob (7.1.5.2) - activesupport (= 7.1.5.2) + activejob (7.1.6) + activesupport (= 7.1.6) globalid (>= 0.3.6) - activemodel (7.1.5.2) - activesupport (= 7.1.5.2) - activerecord (7.1.5.2) - activemodel (= 7.1.5.2) - activesupport (= 7.1.5.2) + activemodel (7.1.6) + activesupport (= 7.1.6) + activerecord (7.1.6) + activemodel (= 7.1.6) + activesupport (= 7.1.6) timeout (>= 0.4.0) - activestorage (7.1.5.2) - actionpack (= 7.1.5.2) - activejob (= 7.1.5.2) - activerecord (= 7.1.5.2) - activesupport (= 7.1.5.2) + activestorage (7.1.6) + actionpack (= 7.1.6) + activejob (= 7.1.6) + activerecord (= 7.1.6) + activesupport (= 7.1.6) marcel (~> 1.0) - activesupport (7.1.5.2) + activesupport (7.1.6) base64 benchmark (>= 0.3) bigdecimal @@ -163,6 +165,7 @@ GEM case_transform (0.2) activesupport cbor (0.5.9.8) + cgi (0.5.1) charlock_holmes (0.7.9) chewy (7.6.0) activesupport (>= 5.2) @@ -642,20 +645,20 @@ GEM rackup (1.0.0) rack (< 3) webrick - rails (7.1.5.2) - actioncable (= 7.1.5.2) - actionmailbox (= 7.1.5.2) - actionmailer (= 7.1.5.2) - actionpack (= 7.1.5.2) - actiontext (= 7.1.5.2) - actionview (= 7.1.5.2) - activejob (= 7.1.5.2) - activemodel (= 7.1.5.2) - activerecord (= 7.1.5.2) - activestorage (= 7.1.5.2) - activesupport (= 7.1.5.2) + rails (7.1.6) + actioncable (= 7.1.6) + actionmailbox (= 7.1.6) + actionmailer (= 7.1.6) + actionpack (= 7.1.6) + actiontext (= 7.1.6) + actionview (= 7.1.6) + activejob (= 7.1.6) + activemodel (= 7.1.6) + activerecord (= 7.1.6) + activestorage (= 7.1.6) + activesupport (= 7.1.6) bundler (>= 1.15.0) - railties (= 7.1.5.2) + railties (= 7.1.6) rails-controller-testing (1.0.5) actionpack (>= 5.0.1.rc1) actionview (>= 5.0.1.rc1) @@ -670,13 +673,15 @@ GEM rails-i18n (7.0.9) i18n (>= 0.7, < 2) railties (>= 6.0.0, < 8) - railties (7.1.5.2) - actionpack (= 7.1.5.2) - activesupport (= 7.1.5.2) + railties (7.1.6) + actionpack (= 7.1.6) + activesupport (= 7.1.6) + cgi irb rackup (>= 1.0.0) rake (>= 12.2) thor (~> 1.0, >= 1.2.2) + tsort (>= 0.2) zeitwerk (~> 2.6) rainbow (3.1.1) rake (13.2.1) @@ -847,6 +852,7 @@ GEM bindata (~> 2.4) openssl (> 2.0) openssl-signature_algorithm (~> 1.0) + tsort (0.2.0) tty-color (0.6.0) tty-cursor (0.7.1) tty-prompt (0.23.1) From 5d5d6bd0dfccb64218e0b02405441ec1ab4c5159 Mon Sep 17 00:00:00 2001 From: Claire Date: Tue, 24 Mar 2026 12:04:32 +0100 Subject: [PATCH 5/8] Update dependency `rack` --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index a6af484c5f..a7020ff6ba 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -622,7 +622,7 @@ GEM activesupport (>= 3.0.0) raabro (1.4.0) racc (1.8.1) - rack (2.2.20) + rack (2.2.22) rack-attack (6.7.0) rack (>= 1.0, < 4) rack-cors (2.0.2) From f69e38807d401d902fcc8acd8f18ff71695971a1 Mon Sep 17 00:00:00 2001 From: Claire Date: Tue, 24 Mar 2026 12:05:21 +0100 Subject: [PATCH 6/8] Update dependency `faraday` --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index a7020ff6ba..4ae3562f51 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -242,7 +242,7 @@ GEM fabrication (2.31.0) faker (3.4.2) i18n (>= 1.8.11, < 2) - faraday (1.10.3) + faraday (1.10.5) faraday-em_http (~> 1.0) faraday-em_synchrony (~> 1.0) faraday-excon (~> 1.1) From e1f319b66d3dfb5404811d103f845fd6b3f1363c Mon Sep 17 00:00:00 2001 From: Claire Date: Tue, 24 Mar 2026 15:42:39 +0100 Subject: [PATCH 7/8] Merge commit from fork --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index 83170fba0f..5ba4d3e4b4 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -223,7 +223,7 @@ Rails.application.routes.draw do get path, to: 'home#index' end - get '/web/(*any)', to: redirect('/%{any}', status: 302), as: :web, defaults: { any: '' }, format: false + get '/web/(*any)', to: redirect(path: '/%{any}', status: 302), as: :web, defaults: { any: '' }, format: false get '/about', to: 'about#show' get '/about/more', to: redirect('/about') From 8fb494ba0adf87abeb2954cff214118324186edf Mon Sep 17 00:00:00 2001 From: Claire Date: Tue, 24 Mar 2026 16:44:21 +0100 Subject: [PATCH 8/8] Bump version to v4.3.21 (#38373) --- CHANGELOG.md | 24 ++++++++++++++++++++++++ docker-compose.yml | 6 +++--- lib/mastodon/version.rb | 2 +- 3 files changed, 28 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf49817dfc..c0c16214ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,30 @@ All notable changes to this project will be documented in this file. +## [4.3.21] - 2026-03-24 + +### Security + +- Fix insufficient checks on quote authorizations ([GHSA-q4g8-82c5-9h33](https://github.com/mastodon/mastodon/security/advisories/GHSA-q4g8-82c5-9h33)) +- Fix open redirect in legacy path handler ([GHSA-xqw8-4j56-5hj6](https://github.com/mastodon/mastodon/security/advisories/GHSA-xqw8-4j56-5hj6)) +- Updated dependencies + +### Added + +- Add for searching already-known private GtS posts (#38057 by @ClearlyClaire) + +### Changed + +- Change media description length limit for remote media attachments from 1500 to 10000 characters (#37921 by @ClearlyClaire) + +### Fixed + +- Fix some model definitions in `tootctl maintenance fix-duplicates` (#38214 by @ClearlyClaire) +- Fix poll expiration notification being re-triggered on implicit updates (#38078 by @ClearlyClaire) +- Fix incorrect translation string in webauthn mailers (#38062 by @mjankowski) +- Fix username availability check being wrongly applied on race conditions (#37975 by @ClearlyClaire) +- Fix hover card unintentionally being shown in some cases (#38039 by @diondiondion) + ## [4.3.20] - 2026-02-24 ### Added diff --git a/docker-compose.yml b/docker-compose.yml index 5ed0804465..980e3e4bce 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -59,7 +59,7 @@ services: web: # You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes # build: . - image: ghcr.io/mastodon/mastodon:v4.3.20 + image: ghcr.io/mastodon/mastodon:v4.3.21 restart: always env_file: .env.production command: bundle exec puma -C config/puma.rb @@ -83,7 +83,7 @@ services: # build: # dockerfile: ./streaming/Dockerfile # context: . - image: ghcr.io/mastodon/mastodon-streaming:v4.3.20 + image: ghcr.io/mastodon/mastodon-streaming:v4.3.21 restart: always env_file: .env.production command: node ./streaming/index.js @@ -102,7 +102,7 @@ services: sidekiq: # You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes # build: . - image: ghcr.io/mastodon/mastodon:v4.3.20 + image: ghcr.io/mastodon/mastodon:v4.3.21 restart: always env_file: .env.production command: bundle exec sidekiq diff --git a/lib/mastodon/version.rb b/lib/mastodon/version.rb index 312149a634..f8576e1c5e 100644 --- a/lib/mastodon/version.rb +++ b/lib/mastodon/version.rb @@ -13,7 +13,7 @@ module Mastodon end def patch - 20 + 21 end def default_prerelease