Merge branch 'master' into glitch-soc/merge-upstream
Conflicts: - `Gemfile.lock`: No real conflict, glitch-soc-only dependency (redcarpet) too close to an upstream one (rdf-normalize) - `README.md`: we have different READMEs, discarded upstream's changes - `app/views/admin/custom_emojis/index.html.haml`: No real conflict, different context because of glitch-soc theming - `lib/mastodon/statuses_cli.rb`: Upstream added code to keep bookmarked statuses, we were already doing so with slightly different code. Discarded upstream's changes. - `package.json`: No real conflict, glitch-soc-only dependency (favico.js) too close to an upstream one
This commit is contained in:
@ -29,7 +29,7 @@ module Twitter
|
||||
( # $1 total match
|
||||
(#{REGEXEN[:valid_url_preceding_chars]}) # $2 Preceding character
|
||||
( # $3 URL
|
||||
((https?|dat|dweb|ipfs|ipns|ssb|gopher):\/\/)? # $4 Protocol (optional)
|
||||
((?:https?|dat|dweb|ipfs|ipns|ssb|gopher):\/\/)? # $4 Protocol (optional)
|
||||
(#{REGEXEN[:valid_domain]}) # $5 Domain(s)
|
||||
(?::(#{REGEXEN[:valid_port_number]}))? # $6 Port number (optional)
|
||||
(/#{REGEXEN[:valid_url_path]}*)? # $7 URL Path and anchor
|
||||
@ -37,5 +37,54 @@ module Twitter
|
||||
)
|
||||
)
|
||||
}iox
|
||||
REGEXEN[:validate_nodeid] = /(?:
|
||||
#{REGEXEN[:validate_url_unreserved]}|
|
||||
#{REGEXEN[:validate_url_pct_encoded]}|
|
||||
[!$()*+,;=]
|
||||
)/iox
|
||||
REGEXEN[:validate_resid] = /(?:
|
||||
#{REGEXEN[:validate_url_unreserved]}|
|
||||
#{REGEXEN[:validate_url_pct_encoded]}|
|
||||
#{REGEXEN[:validate_url_sub_delims]}
|
||||
)/iox
|
||||
REGEXEN[:valid_xmpp_uri] = %r{
|
||||
( # $1 total match
|
||||
(#{REGEXEN[:valid_url_preceding_chars]}) # $2 Preceding character
|
||||
( # $3 URL
|
||||
((?:xmpp):) # $4 Protocol
|
||||
(//#{REGEXEN[:validate_nodeid]}+@#{REGEXEN[:valid_domain]}/)? # $5 Authority (optional)
|
||||
(#{REGEXEN[:validate_nodeid]}+@)? # $6 Username in path (optional)
|
||||
(#{REGEXEN[:valid_domain]}) # $7 Domain in path
|
||||
(/#{REGEXEN[:validate_resid]}+)? # $8 Resource in path (optional)
|
||||
(\?#{REGEXEN[:valid_url_query_chars]}*#{REGEXEN[:valid_url_query_ending_chars]})? # $9 Query String
|
||||
)
|
||||
)
|
||||
}iox
|
||||
end
|
||||
|
||||
module Extractor
|
||||
# Extracts a list of all XMPP URIs included in the Tweet <tt>text</tt> along
|
||||
# with the indices. If the <tt>text</tt> is <tt>nil</tt> or contains no
|
||||
# XMPP URIs an empty array will be returned.
|
||||
#
|
||||
# If a block is given then it will be called for each XMPP URI.
|
||||
def extract_xmpp_uris_with_indices(text, options = {}) # :yields: uri, start, end
|
||||
return [] unless text && text.index(":")
|
||||
urls = []
|
||||
|
||||
text.to_s.scan(Twitter::Regex[:valid_xmpp_uri]) do
|
||||
valid_uri_match_data = $~
|
||||
|
||||
start_position = valid_uri_match_data.char_begin(3)
|
||||
end_position = valid_uri_match_data.char_end(3)
|
||||
|
||||
urls << {
|
||||
:url => valid_uri_match_data[3],
|
||||
:indices => [start_position, end_position]
|
||||
}
|
||||
end
|
||||
urls.each{|url| yield url[:url], url[:indices].first, url[:indices].last} if block_given?
|
||||
urls
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -1,6 +1,9 @@
|
||||
---
|
||||
ast:
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
options: Escoyetes
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
|
@ -14,4 +14,4 @@ ca:
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
taken: de l'estat ja existeix
|
||||
taken: del tut ja existeix
|
||||
|
17
config/locales/activerecord.is.yml
Normal file
17
config/locales/activerecord.is.yml
Normal file
@ -0,0 +1,17 @@
|
||||
---
|
||||
is:
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
expires_at: Lokadagur
|
||||
options: Valkostir
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
attributes:
|
||||
username:
|
||||
invalid: aðeins bókstafir, tölur og undirstrik
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
taken: af stöðu er þegar fyrirliggjandi
|
12
config/locales/activerecord.kab.yml
Normal file
12
config/locales/activerecord.kab.yml
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
kab:
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
options: Tifranin
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
attributes:
|
||||
username:
|
||||
invalid: isekkilen, uṭṭunen d yijerriden n wadda kan
|
@ -1 +1,12 @@
|
||||
---
|
||||
ml:
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
expires_at: സമയപരിധി
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
attributes:
|
||||
username:
|
||||
invalid: അക്ഷരങ്ങളും, അക്കങ്ങളും, പിന്നെ അടിവരയും മാത്രം
|
||||
|
@ -1 +1,17 @@
|
||||
---
|
||||
nn:
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
expires_at: Frist
|
||||
options: Val
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
attributes:
|
||||
username:
|
||||
invalid: bare bokstaver, tall og understreker
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
taken: av status eksisterer allerede
|
||||
|
@ -1,6 +1,10 @@
|
||||
---
|
||||
'no':
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
expires_at: Tidsfrist
|
||||
options: Valg
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
|
@ -4,13 +4,13 @@ pt-BR:
|
||||
attributes:
|
||||
poll:
|
||||
expires_at: Expira em
|
||||
options: Escolhas
|
||||
options: Opções
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
attributes:
|
||||
username:
|
||||
invalid: apenas letras, números e '_' são permitidos
|
||||
invalid: apenas letras, números e underlines ( "_" )
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
@ -1,6 +1,10 @@
|
||||
---
|
||||
pt-PT:
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
expires_at: Expira em
|
||||
options: Escolhas
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
|
@ -3,15 +3,15 @@ ta:
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
expires_at: இறுதிகட்டம்
|
||||
expires_at: காலக்கெடு
|
||||
options: தேர்வுகள்
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
attributes:
|
||||
username:
|
||||
invalid: எழுத்துக்கள், எண்கள் மற்றும் அடிக்கோடு
|
||||
invalid: எழுத்துகள், எண்கள் மற்றும் அடிக்கோடுகள் மட்டுமே
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
taken: அந்த நிலையறிக்கை ஏற்கனவே உள்ளது
|
||||
taken: ஏற்கனவே பதியப்பட்டது
|
||||
|
17
config/locales/activerecord.vi.yml
Normal file
17
config/locales/activerecord.vi.yml
Normal file
@ -0,0 +1,17 @@
|
||||
---
|
||||
vi:
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
expires_at: Hạn chót
|
||||
options: Lựa chọn
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
attributes:
|
||||
username:
|
||||
invalid: chỉ chấp nhận số, ký tự, và dấu gạch dưới
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
taken: của trạng thái đã tồn tại
|
@ -9,7 +9,7 @@ ar:
|
||||
administered_by: 'يُديره:'
|
||||
api: واجهة برمجة التطبيقات
|
||||
apps: تطبيقات الأجهزة المحمولة
|
||||
apps_platforms: إستخدم ماستودون في iOS، أندرويد وأنظمة أخرى
|
||||
apps_platforms: استخدم ماستدون على iOS وأندرويد وأنظمة أخرى
|
||||
browse_directory: تصفح دليل الصفحات التعريفية وصفّي بحسب الإهتمام
|
||||
browse_public_posts: تصفح تيارًا مباشرًا مِن منشورات عامة على ماستدون
|
||||
contact: للتواصل معنا
|
||||
@ -39,6 +39,7 @@ ar:
|
||||
unavailable_content_description:
|
||||
domain: الخادم
|
||||
reason: 'السبب:'
|
||||
silenced: 'سيتم إخفاء المنشورات القادمة من هذه الخوادم في الخيوط الزمنية والمحادثات العامة، ولن يتم إنشاء أي إخطارات من جراء تفاعلات مستخدميها، ما لم تُتَابعهم:'
|
||||
user_count_after:
|
||||
few: مستخدمين
|
||||
many: مستخدمين
|
||||
@ -50,6 +51,7 @@ ar:
|
||||
what_is_mastodon: ما هو ماستدون ؟
|
||||
accounts:
|
||||
choices_html: 'توصيات %{name}:'
|
||||
endorsements_hint: يمكنك التوصية بالأشخاص الذين تتابعهم من واجهة الويب، وسيظهرون هنا.
|
||||
follow: اتبع
|
||||
followers:
|
||||
few: متابِعون
|
||||
@ -177,6 +179,7 @@ ar:
|
||||
staff: الفريق
|
||||
user: مستخدِم
|
||||
search: البحث
|
||||
search_same_ip: مستخدِمون آخرون بنفس الـ IP
|
||||
shared_inbox_url: رابط الصندوق المُشترَك للبريد الوارد
|
||||
show:
|
||||
created_reports: البلاغات التي أنشأها هذا الحساب
|
||||
@ -203,10 +206,12 @@ ar:
|
||||
confirm_user: "%{name} قد قام بتأكيد عنوان البريد الإلكتروني لـ %{target}"
|
||||
create_account_warning: قام %{name} بإرسال تحذير إلى %{target}
|
||||
create_custom_emoji: "%{name} قام برفع إيموجي جديد %{target}"
|
||||
create_domain_allow: قام %{name} بإضافة النطاق %{target} إلى القائمة البيضاء
|
||||
create_domain_block: "%{name} قام بحجب نطاق %{target}"
|
||||
create_email_domain_block: "%{name} قد قام بحظر نطاق البريد الإلكتروني %{target}"
|
||||
demote_user: "%{name} قد قام بإنزال الرتبة الوظيفية لـ %{target}"
|
||||
destroy_custom_emoji: قام %{name} بحذف الإيموجي %{target}
|
||||
destroy_domain_allow: قام %{name} بإزالة النطاق %{target} مِن القائمة البيضاء
|
||||
destroy_domain_block: "%{name} قام بإلغاء الحجب عن النطاق %{target}"
|
||||
destroy_email_domain_block: قام %{name} بإضافة نطاق البريد الإلكتروني %{target} إلى اللائحة البيضاء
|
||||
destroy_status: لقد قام %{name} بحذف منشور %{target}
|
||||
@ -337,6 +342,7 @@ ar:
|
||||
delete: حذف
|
||||
destroyed_msg: تم حذف نطاق البريد الإلكتروني من اللائحة السوداء بنجاح
|
||||
domain: النطاق
|
||||
empty: ليس هناك أية نطاقات للبريد الإلكتروني مُدرَجة في القائمة السوداء.
|
||||
new:
|
||||
create: إضافة نطاق
|
||||
title: إضافة نطاق بريد جديد إلى اللائحة السوداء
|
||||
@ -388,6 +394,7 @@ ar:
|
||||
pending: في انتظار تسريح المُرحِّل
|
||||
save_and_enable: حفظ وتشغيل
|
||||
setup: إعداد اتصال بمُرحّل
|
||||
signatures_not_enabled: لن تعمل المُرحِّلات بشكل صحيح إن تم تنشيط الوضع الآمن أو وضع القائمة البيضاء
|
||||
status: الحالة
|
||||
title: المُرحّلات
|
||||
report_notes:
|
||||
@ -433,8 +440,12 @@ ar:
|
||||
custom_css:
|
||||
desc_html: يقوم بتغيير المظهر بواسطة سي أس أس يُحمَّل على كافة الصفحات
|
||||
title: سي أس أس مخصص
|
||||
default_noindex:
|
||||
title: عدم السماح مبدئيا لمحركات البحث بفهرسة الملفات التعريفية للمستخدمين
|
||||
domain_blocks:
|
||||
all: للجميع
|
||||
disabled: لا أحد
|
||||
title: اظهر خاصية حجب النطاقات
|
||||
domain_blocks_rationale:
|
||||
title: اظهر السبب
|
||||
hero:
|
||||
@ -492,6 +503,8 @@ ar:
|
||||
desc_html: عرض الخيط العمومي على صفحة الاستقبال
|
||||
title: مُعاينة الخيط العام
|
||||
title: إعدادات الموقع
|
||||
trendable_by_default:
|
||||
title: السماح للوسوم بالظهور على المتداوَلة بدون مراجعة مسبقة
|
||||
trends:
|
||||
title: الوسوم المتداولة
|
||||
statuses:
|
||||
@ -539,11 +552,19 @@ ar:
|
||||
body: قام %{reporter} بالإبلاغ عن %{target}
|
||||
body_remote: أبلغ شخص ما من %{domain} عن %{target}
|
||||
subject: تقرير جديد ل%{instance} (#%{id})
|
||||
aliases:
|
||||
add_new: أنشئ كُنية
|
||||
created_msg: تم إنشاء الكُنية الجديدة بنجاح. يمكنكم الآن الشروع في الإنتقال مِن حسابكم القديم.
|
||||
remove: إلغاء ربط الكنية
|
||||
appearance:
|
||||
advanced_web_interface: واجهة الويب المتقدمة
|
||||
animations_and_accessibility: الإتاحة والحركة
|
||||
confirmation_dialogs: نوافذ التأكيد
|
||||
discovery: استكشاف
|
||||
localization:
|
||||
body: ماستدون يُترجِمه متطوّعون.
|
||||
guide_link: https://crowdin.com/project/mastodon
|
||||
guide_link_text: يمكن للجميع المساهمة.
|
||||
sensitive_content: محتوى حساس
|
||||
toot_layout: تصميم التبويق
|
||||
application_mailer:
|
||||
@ -571,6 +592,7 @@ ar:
|
||||
description:
|
||||
prefix_invited_by_user: يدعوك @%{name} للاتحاق بخادم ماستدون هذا!
|
||||
prefix_sign_up: أنشئ حسابًا على ماستدون اليوم!
|
||||
suffix: بفضل حساب ، ستكون قادرا على متابعة الأشخاص ونشر تحديثات وتبادل رسائل مع مستخدمين مِن أي خادم Mastodon وأكثر!
|
||||
didnt_get_confirmation: لم تتلق تعليمات التأكيد ؟
|
||||
forgot_password: نسيت كلمة المرور ؟
|
||||
invalid_reset_password_token: رمز إعادة تعيين كلمة المرور غير صالح أو منتهي الصلاحية. يرجى طلب واحد جديد.
|
||||
@ -589,9 +611,11 @@ ar:
|
||||
security: الأمان
|
||||
set_new_password: إدخال كلمة مرور جديدة
|
||||
setup:
|
||||
email_below_hint_html: إذا كان عنوان البريد الإلكتروني التالي غير صحيح، فيمكنك تغييره هنا واستلام بريد إلكتروني جديد للتأكيد.
|
||||
title: الضبط
|
||||
status:
|
||||
account_status: حالة الحساب
|
||||
confirming: في انتظار اكتمال تأكيد البريد الإلكتروني.
|
||||
functional: حسابك جاهز.
|
||||
redirecting_to: حسابك غير نشط لأنه تم تحويله حاليا إلى %{acct}.
|
||||
trouble_logging_in: هل صادفتكم مشكلة في الولوج؟
|
||||
@ -608,6 +632,7 @@ ar:
|
||||
title: إتباع %{acct}
|
||||
challenge:
|
||||
confirm: واصل
|
||||
hint_html: "<strong>توصية:</strong> لن نطلب منك ثانية كلمتك السرية في غضون الساعة اللاحقة."
|
||||
invalid_password: الكلمة السرية خاطئة
|
||||
prompt: أكِّد الكلمة السرية للمواصلة
|
||||
datetime:
|
||||
@ -648,7 +673,7 @@ ar:
|
||||
'400': The request you submitted was invalid or malformed.
|
||||
'403': ليس لك الصلاحيات الكافية لعرض هذه الصفحة.
|
||||
'404': إنّ الصفحة التي تبحث عنها لا وجود لها أصلا.
|
||||
'406': This page is not available in the requested format.
|
||||
'406': إنّ هذه الصفحة غير متوفّرة في النسق المطلوب.
|
||||
'410': إنّ الصفحة التي تبحث عنها لم تعد موجودة.
|
||||
'422':
|
||||
content: فشل التحقق الآمن. ربما منعتَ كعكات الكوكيز؟
|
||||
@ -657,9 +682,10 @@ ar:
|
||||
'500':
|
||||
content: نحن متأسفون، لقد حدث خطأ ما مِن جانبنا.
|
||||
title: هذه الصفحة خاطئة
|
||||
'503': The page could not be served due to a temporary server failure.
|
||||
'503': تعذر تحميل الصفحة بسبب فشل مؤقت في الخادم.
|
||||
noscript_html: يرجى تفعيل الجافا سكريبت لاستخدام تطبيق الويب لماستدون، أو عِوض ذلك قوموا بتجريب إحدى <a href="%{apps_path}">التطبيقات الأصلية</a> الدّاعمة لماستدون على منصّتكم.
|
||||
existing_username_validator:
|
||||
not_found: لم نتمكّن مِن العثور على مستخدم محلي باسم المستخدم هذا
|
||||
not_found_multiple: تعذر العثور على %{usernames}
|
||||
exports:
|
||||
archive_takeout:
|
||||
@ -672,7 +698,6 @@ ar:
|
||||
blocks: قمت بحظر
|
||||
csv: CSV
|
||||
domain_blocks: النطاقات المحظورة
|
||||
follows: أنت تتبع
|
||||
lists: القوائم
|
||||
mutes: قُمتَ بكتم
|
||||
storage: ذاكرة التخزين
|
||||
@ -776,11 +801,13 @@ ar:
|
||||
cancel: ألغِ التوجيه
|
||||
cancelled_msg: تم إلغاء التوجيه بنجاح.
|
||||
errors:
|
||||
already_moved: هو نفسه نفس الحساب الذي قمت بالإنتقال إليه
|
||||
move_to_self: لا يمكنه أن يكون الحساب الحالي
|
||||
not_found: تعذر العثور عليه
|
||||
on_cooldown: إنّك في مرحلة الجمود
|
||||
followers_count: المتابِعين عند الإنتقال
|
||||
incoming_migrations: الانتقال مِن حساب آخر
|
||||
incoming_migrations_html: قصد الإنتقال من حساب آخَر إلى هذا يجب عليك أوّلًا <a href="%{path}">إنشاء كُنية حساب</a>.
|
||||
not_redirecting: حاليا ، حسابك لا يقوم بالتحويل إلى أي حساب آخر.
|
||||
past_migrations: التهجيرات السابقة
|
||||
proceed_with_move: انقل مشارِكيك
|
||||
@ -788,6 +815,7 @@ ar:
|
||||
set_redirect: تعين إعادة التوجيه
|
||||
warning:
|
||||
before: 'يرجى قراءة هذه الملاحظات بتأنّي قبل المواصلة:'
|
||||
other_data: لن يتم نقل أية بيانات أخرى تلقائيا
|
||||
moderation:
|
||||
title: الإشراف
|
||||
notification_mailer:
|
||||
@ -832,6 +860,10 @@ ar:
|
||||
body: 'قام %{name} بترقية منشورك:'
|
||||
subject: قام %{name} بترقية منشورك
|
||||
title: ترقية جديدة
|
||||
notifications:
|
||||
email_events: الأحداث للإشعارات عبر البريد الإلكتروني
|
||||
email_events_hint: 'اختر الأحداث التي تريد أن تصِلَك اشعارات عنها:'
|
||||
other_settings: إعدادات أخرى للإشعارات
|
||||
number:
|
||||
human:
|
||||
decimal_units:
|
||||
@ -855,6 +887,7 @@ ar:
|
||||
duration_too_long: بعيد جدا في المستقبَل
|
||||
duration_too_short: مبكّر جدا
|
||||
expired: لقد انتهى استطلاع الرأي
|
||||
too_many_options: لا يمكنه أن يحتوي أكثر مِن %{max} عناصر
|
||||
preferences:
|
||||
other: إعدادات أخرى
|
||||
posting_defaults: التفضيلات الافتراضية لنشر التبويقات
|
||||
@ -862,6 +895,8 @@ ar:
|
||||
relationships:
|
||||
activity: نشاط الحساب
|
||||
dormant: في سبات
|
||||
followers: المتابِعون
|
||||
following: يُتابِع
|
||||
last_active: آخر نشاط
|
||||
most_recent: الأحدث
|
||||
moved: هاجر
|
||||
@ -935,6 +970,7 @@ ar:
|
||||
settings:
|
||||
account: الحساب
|
||||
account_settings: إعدادات الحساب
|
||||
aliases: كُنيات الحساب
|
||||
appearance: المظهر
|
||||
authorized_apps: التطبيقات المرخص لها
|
||||
back: عودة إلى ماستدون
|
||||
@ -1049,11 +1085,13 @@ ar:
|
||||
subject: نسخة بيانات حسابك جاهزة للتنزيل
|
||||
title: المغادرة بأرشيف الحساب
|
||||
warning:
|
||||
get_in_touch: يمكنك الرد على هذا البريد الإلكتروني للاتصال بفريق %{instance}.
|
||||
review_server_policies: مراجعة شروط السيرفر
|
||||
statuses: 'خصيصا لـ:'
|
||||
subject:
|
||||
disable: تم تجميد حسابك %{acct}
|
||||
none: تحذير إلى %{acct}
|
||||
silence: إنّ حسابك %{acct} محدود
|
||||
suspend: لقد تم تعليق حسابك %{acct}
|
||||
title:
|
||||
disable: الحساب مُجمَّد
|
||||
@ -1071,10 +1109,12 @@ ar:
|
||||
full_handle: عنوانك الكامل
|
||||
full_handle_hint: هذا هو ما يجب تقديمه لأصدقائك قصد أن يكون بإمكانهم متابَعتك أو مُراسَلتك حتى و إن كانت حساباتهم على خوادم أخرى.
|
||||
review_preferences_action: تعديل التفضيلات
|
||||
review_preferences_step: تأكد من ضبط تفضيلاتك ، مثلًا أية رسائل بريد إلكترونية ترغب في تلقيها أو أي مستوى للخصوصية ترغب في اسناده افتراضيًا لمنشوراتك. إن كانت الحركة لا تُعكّر مزاجك فيمكنك إختيار تفعيل التشغيل التلقائي لوسائط GIF المتحركة.
|
||||
subject: أهلًا بك على ماستدون
|
||||
tip_federated_timeline: الخيط الزمني الفديرالي هو بمثابة شبه نظرة شاملة على شبكة ماستدون. غير أنه لا يشمل إلا على الأشخاص المتابَعين مِن طرف جيرانك و جاراتك، لذا فهذا الخيط لا يعكس كافة الشبكة برُمّتها.
|
||||
tip_following: أنت تتبع تلقائيا مديري و مديرات الخادم. للعثور على أشخاص مميزين أو قد تهمك حساباتهم بإمكانك الإطلاع على الخيوط العامة المحلية و كذا الفدرالية.
|
||||
tip_local_timeline: الخيط العام المحلي هو بمثابة نظرة سريعة على الأشخاص المتواجدين على %{instance} يمكن اعتبارهم كجيرانك وجاراتك الأقرب إليك!
|
||||
tip_mobile_webapp: إن كان متصفحك على جهازك المحمول يُتيح ميزة إضافة Mastodon على شاشتك الرئيسية ، فيمكنك تلقي الإشعارات المدفوعة. إنه يعمل كتطبيق أصلي بحت!
|
||||
tips: نصائح
|
||||
title: أهلاً بك، %{name}!
|
||||
users:
|
||||
|
@ -1,18 +1,29 @@
|
||||
---
|
||||
ast:
|
||||
about:
|
||||
about_mastodon_html: Mastodon ye una rede social basada en protocolos abiertos y software de códigu llibre. Ye descentralizada, como'l corréu electrónicu.
|
||||
about_hashtag_html: Estos son los barritos públicos etiquetaos con <strong>#%{hashtag}</strong>. Pues interactuar con ellos si tienes una cuenta en cualesquier parte del fediversu.
|
||||
about_mastodon_html: 'La rede social del futuru: ¡ensin anuncios nin vixilancia, con un diseñu éticu y descentralizáu! Controla los tos datos con Mastodon.'
|
||||
about_this: Tocante a
|
||||
administered_by: 'Alministráu por:'
|
||||
api: API
|
||||
browse_directory: Restola nun direutoriu de perfiles y peñera polos intereses
|
||||
contact: Contautu
|
||||
contact_missing: Nun s'afitó
|
||||
contact_unavailable: N/D
|
||||
discover_users: Descubri usuarios
|
||||
documentation: Documentación
|
||||
federation_hint_html: Con una cuenta en %{instance} vas ser a siguir a persones de cualesquier sirvidor de Mastodon y más.
|
||||
hosted_on: Mastodon ta agospiáu en %{domain}
|
||||
learn_more: Deprendi más
|
||||
learn_more: Deprender más
|
||||
privacy_policy: Política de privacidá
|
||||
server_stats: 'Estadístiques del sirvidor:'
|
||||
source_code: Códigu fonte
|
||||
status_count_before: Que crearon
|
||||
tagline: Sigui a persones y conoz a más
|
||||
terms: Términos del serviciu
|
||||
unavailable_content_description:
|
||||
domain: Sirvidor
|
||||
reason: Razón
|
||||
user_count_after:
|
||||
one: usuariu
|
||||
other: usuarios
|
||||
@ -20,29 +31,39 @@ ast:
|
||||
what_is_mastodon: "¿Qué ye Mastodon?"
|
||||
accounts:
|
||||
followers:
|
||||
one: Xente que te sigue
|
||||
one: Siguidor
|
||||
other: Siguidores
|
||||
joined: Xunióse en %{date}
|
||||
last_active: última actividá
|
||||
moved_html: "%{name} mudóse a %{new_profile_link}:"
|
||||
network_hidden: Esta información nun ta disponible
|
||||
never_active: Enxamás
|
||||
nothing_here: "¡Equí nun hai nada!"
|
||||
people_followed_by: Persones a les que sigue %{name}
|
||||
people_who_follow: Persones que siguen a %{name}
|
||||
posts_with_replies: Toots y rempuestes
|
||||
posts:
|
||||
one: Barritu
|
||||
other: Barritos
|
||||
posts_tab_heading: Barritos
|
||||
posts_with_replies: Barritos y rempuestes
|
||||
reserved_username: El nome d'usuariu ta acutáu
|
||||
roles:
|
||||
bot: Robó
|
||||
admin:
|
||||
accounts:
|
||||
approve_all: Aprobar too
|
||||
are_you_sure: "¿De xuru?"
|
||||
avatar: Avatar
|
||||
by_domain: Dominiu
|
||||
domain: Dominiu
|
||||
email: Corréu
|
||||
followers: Siguidores
|
||||
ip: IP
|
||||
location:
|
||||
local: Llocal
|
||||
title: Allugamientu
|
||||
protocol: Protocolu
|
||||
reject_all: Refugar too
|
||||
resend_confirmation:
|
||||
already_confirmed: Esti usuariu yá ta confirmáu
|
||||
role: Permisos
|
||||
@ -53,11 +74,21 @@ ast:
|
||||
statuses: Estaos
|
||||
title: Cuentes
|
||||
username: Nome d'usuariu
|
||||
web: Web
|
||||
action_logs:
|
||||
actions:
|
||||
create_account_warning: "%{name} unvió una alvertencia a %{target}"
|
||||
create_domain_block: "%{name} bloquió'l dominiu %{target}"
|
||||
disable_custom_emoji: "%{name} desactivó'l fustaxe %{target}"
|
||||
disable_user: "%{name} desactivó l'aniciu de sesión del usuariu %{target}"
|
||||
enable_custom_emoji: "%{name} activó'l fustaxe %{target}"
|
||||
promote_user: "%{name} ascendió al usuariu %{target}"
|
||||
remove_avatar_user: "%{name} desanició l'avatar de %{target}"
|
||||
reopen_report: "%{name} reabrió l'informe de %{target}"
|
||||
reset_password_user: "%{name} reafitó la contraseña del usuariu %{target}"
|
||||
resolve_report: "%{name} resolvió l'informe de %{target}"
|
||||
silence_account: "%{name} silenció la cuenta de %{target}"
|
||||
suspend_account: "%{name} suspendió la cuenta de %{target}"
|
||||
custom_emojis:
|
||||
by_domain: Dominiu
|
||||
copy_failed_msg: Nun pudo facese una copia llocal d'esi fustaxe
|
||||
@ -68,8 +99,10 @@ ast:
|
||||
feature_registrations: Rexistros
|
||||
features: Carauterístiques
|
||||
hidden_service: Federación con servicios anubríos
|
||||
recent_users: Usuarios recientes
|
||||
recent_users: Usuarios de recién
|
||||
software: Software
|
||||
total_users: usuarios en total
|
||||
trends: Tendencies
|
||||
week_interactions: interaiciones d'esta selmana
|
||||
week_users_new: usuarios d'esta selmana
|
||||
domain_blocks:
|
||||
@ -77,7 +110,8 @@ ast:
|
||||
email_domain_blocks:
|
||||
domain: Dominiu
|
||||
instances:
|
||||
title: Instancies conocíes
|
||||
by_domain: Dominiu
|
||||
title: Federación
|
||||
invites:
|
||||
filter:
|
||||
available: Disponible
|
||||
@ -85,6 +119,7 @@ ast:
|
||||
title: Invitaciones
|
||||
relays:
|
||||
save_and_enable: Guardar y activar
|
||||
status: Estáu
|
||||
reports:
|
||||
are_you_sure: "¿De xuru?"
|
||||
status: Estáu
|
||||
@ -93,28 +128,54 @@ ast:
|
||||
min_invite_role:
|
||||
disabled: Naide
|
||||
site_description:
|
||||
title: Descipción de la instancia
|
||||
site_title: Nome de la instancia
|
||||
title: Descripción del sirvidor
|
||||
site_title: Nome del sirvidor
|
||||
title: Axustes del sitiu
|
||||
statuses:
|
||||
failed_to_execute: Fallu al executar
|
||||
tags:
|
||||
context: Contestu
|
||||
most_recent: Lo más recién
|
||||
name: Etiqueta
|
||||
title: Etiquetes
|
||||
title: Alministración
|
||||
admin_mailer:
|
||||
new_pending_account:
|
||||
body: Los detalles de la cuenta nueva tán embaxo. Pues aprobar o refugar esta aplicación.
|
||||
new_report:
|
||||
body_remote: Daquién dende %{domain} informó de %{target}
|
||||
new_trending_tag:
|
||||
body: 'Güei la etiqueta #%{name} ye tendencia pero nun se revisó anteriormente. Nun va amosase públicamente a nun ser que lo permitas o guardes el formulariu como ta pa nun saber más d''ello.'
|
||||
appearance:
|
||||
advanced_web_interface: Interfaz web avanzada
|
||||
confirmation_dialogs: Diálogos de confirmación
|
||||
discovery: Descubrición
|
||||
localization:
|
||||
body: Mastodon tradúcenlu voluntarios,
|
||||
guide_link: https://crowdin.com/project/mastodon
|
||||
guide_link_text: tol mundu pue collaborar.
|
||||
toot_layout: Distribución de los barritos
|
||||
applications:
|
||||
invalid_url: La URL apurrida nun ye válida
|
||||
warning: Ten curiáu con estos datos, ¡enxamás nun los compartas con naide!
|
||||
warning: Ten munchu curiáu con estos datos, ¡enxamás nun los compartas con naide!
|
||||
auth:
|
||||
change_password: Contraseña
|
||||
checkbox_agreement_html: Aceuto les <a href="%{rules_path}" target="_blank">regles del sirvidor</a> y los <a href="%{terms_path}" target="_blank">términos del serviciu</a>
|
||||
checkbox_agreement_without_rules_html: Aceuto los <a href="%{terms_path}" target="_blank"> términos del serviciu</a>
|
||||
delete_account: Desaniciu de la cuenta
|
||||
delete_account_html: Si deseyes desaniciar la to cuenta, pues <a href="%{path}">siguir equí</a>. Va pidísete la confirmación.
|
||||
description:
|
||||
suffix: "¡Con una cuenta, vas ser a siguir a persones, espublizar anovamientos ya intercambiar mensaxes con usuarios de cualesquier sirvidor de Mastodon y más!"
|
||||
forgot_password: "¿Escaeciesti la contraseña?"
|
||||
login: Aniciar sesión
|
||||
migrate_account: Mudase a otra cuenta
|
||||
migrate_account_html: Si deseyes redirixir esta cuenta a otra, pues <a href="%{path}"> configuralo equí</a>.
|
||||
migrate_account_html: Si deseyes redirixir esta cuenta a otra, pues <a href="%{path}">configuralo equí</a>.
|
||||
providers:
|
||||
cas: CAS
|
||||
saml: SAML
|
||||
register: Rexistrase
|
||||
security: Seguranza
|
||||
trouble_logging_in: "¿Problemes col aniciu de sesión?"
|
||||
authorize_follow:
|
||||
already_following: Yá tas siguiendo a esta cuenta
|
||||
error: Desafortunadamente, hebo un fallu guetando la cuenta remota
|
||||
@ -129,10 +190,13 @@ ast:
|
||||
less_than_x_seconds: Púramente agora
|
||||
deletes:
|
||||
confirm_password: Introduz la contraseña pa verificar la to identidá
|
||||
warning:
|
||||
email_contact_html: Si entá nun aportó, pues unviar un corréu a<a href="mailto:%{email}">%{email}</a> pa más ayuda
|
||||
more_details_html: Pa más detalles, mira la <a href="%{terms_path}">política de privacidá</a>.
|
||||
errors:
|
||||
'400': The request you submitted was invalid or malformed.
|
||||
'403': Nun tienes permisu pa ver esta páxina.
|
||||
'404': La páxina que tabes guetando nun esiste.
|
||||
'404': La páxina que tabes guetando nun ta equí.
|
||||
'406': This page is not available in the requested format.
|
||||
'410': La páxina que tabes guetando yá nun esiste.
|
||||
'422':
|
||||
@ -144,26 +208,39 @@ ast:
|
||||
exports:
|
||||
archive_takeout:
|
||||
date: Data
|
||||
hint_html: Pues solicitar un archivu colos tos <strong>toots y ficheros xubíos</strong>. Los datos esportaos van tar nel formatu ActivityPub, llexible pa cualesquier software que seya compatible. Pues solicitar un archivu cada 7 díes.
|
||||
hint_html: Pues solicitar un archivu colos tos <strong>barritos y ficheros xubíos</strong>. Los datos esportaos van tar nel formatu ActivityPub, llexible pa cualesquier software que seya compatible. Pues solicitar un archivu cada 7 díes.
|
||||
request: Solicitar l'archivu
|
||||
size: Tamañu
|
||||
blocks: Xente que bloquiesti
|
||||
follows: Xente que sigues
|
||||
csv: CSV
|
||||
lists: Llistes
|
||||
mutes: Xente que silenciesti
|
||||
featured_tags:
|
||||
add_new: Amestar
|
||||
filters:
|
||||
contexts:
|
||||
notifications: Avisos
|
||||
public: Llinies temporales públiques
|
||||
thread: Conversaciones
|
||||
index:
|
||||
empty: Nun tienes peñeres.
|
||||
title: Peñeres
|
||||
new:
|
||||
title: Amestar una peñera nueva
|
||||
footer:
|
||||
developers: Desendolcadores
|
||||
more: Más…
|
||||
resources: Recursos
|
||||
generic:
|
||||
all: Too
|
||||
changes_saved_msg: "¡Los cambeos guardáronse con ésitu!"
|
||||
save_changes: Guardar cambeos
|
||||
identity_proofs:
|
||||
authorize: Sí, autorizar
|
||||
i_am_html: Soi %{username} de %{service}.
|
||||
identity: Identidá
|
||||
imports:
|
||||
preface: Pues importar los datos qu'esportares dende otra instancia, como por exemplu la llista de persones que bloquiares o tubieres siguiendo.
|
||||
preface: Pues importar los datos qu'esportares dende otra instancia, como por exemplu la llista de persones que bloquiares o tuvieres siguiendo.
|
||||
types:
|
||||
blocking: Llista de xente bloquiao
|
||||
following: Llista de siguidores
|
||||
@ -180,13 +257,16 @@ ast:
|
||||
'604800': 1 selmana
|
||||
'86400': 1 día
|
||||
expires_in_prompt: Enxamás
|
||||
generate: Xenerar un enllaz d'invitación
|
||||
invited_by: 'Convidóte:'
|
||||
max_uses:
|
||||
one: 1 usu
|
||||
other: "%{count} usos"
|
||||
prompt: Xenera y comparti enllaces con otros pa da-yos accesu a esti sirividor
|
||||
table:
|
||||
expires_at: Data de caducidá
|
||||
uses: Usos
|
||||
title: Convidar a persones
|
||||
lists:
|
||||
errors:
|
||||
limit: Algamesti la cantidá máxima de llistes
|
||||
@ -196,6 +276,8 @@ ast:
|
||||
too_many: Nun puen axuntase más de 4 ficheros
|
||||
migrations:
|
||||
acct: nome_usuariu@dominiu de la cuenta nueva
|
||||
warning:
|
||||
followers: Esta aición va mover tolos siguidores de la cuenta actual a la nueva
|
||||
notification_mailer:
|
||||
digest:
|
||||
body: Equí hai un resume de los mensaxes que nun viesti dende la última visita'l %{since}
|
||||
@ -213,31 +295,83 @@ ast:
|
||||
reblog:
|
||||
body: "%{name} compartió'l to estáu:"
|
||||
subject: "%{name} compartió'l to estáu"
|
||||
title: Compartición nueva de toot
|
||||
title: Compartición nueva de barritu
|
||||
notifications:
|
||||
email_events_hint: 'Esbilla los eventos de los que quies recibir avisos:'
|
||||
other_settings: Otros axustes
|
||||
pagination:
|
||||
next: Siguiente
|
||||
polls:
|
||||
errors:
|
||||
already_voted: Yá votesti nesta encuesta
|
||||
expired: La encuesta yá finó
|
||||
preferences:
|
||||
public_timelines: Llinies temporales públiques
|
||||
relationships:
|
||||
followers: Siguidores
|
||||
most_recent: Lo más recién
|
||||
relationship: Rellación
|
||||
remove_selected_follows: Dexar de siguir a los usuarios esbillaos
|
||||
remote_follow:
|
||||
acct: Introduz el nome_usuariu@dominiu dende'l que lo quies facer
|
||||
no_account_html: "¿Nun tienes una cuenta? Pues <a href='%{sign_up_path}' target='_blank'>rexistrate equí</a>"
|
||||
proceed: Siguir
|
||||
prompt: 'Vas siguir a:'
|
||||
remote_interaction:
|
||||
reblog:
|
||||
prompt: 'Quies compartir esti barritu:'
|
||||
reply:
|
||||
prompt: 'Quies responder a esti barritu:'
|
||||
sessions:
|
||||
browser: Restolador
|
||||
browsers:
|
||||
alipay: Alipay
|
||||
blackberry: Blackberry
|
||||
chrome: Chrome
|
||||
edge: Microsoft Edge
|
||||
electron: Electron
|
||||
firefox: Firefox
|
||||
generic: Restolador desconocíu
|
||||
ie: Internet Explorer
|
||||
micro_messenger: MicroMessenger
|
||||
opera: Opera
|
||||
otter: Otter
|
||||
phantom_js: PhantomJS
|
||||
qq: QQ Browser
|
||||
safari: Safari
|
||||
uc_browser: UCBrowser
|
||||
weibo: Weibo
|
||||
current_session: Sesión actual
|
||||
description: "%{browser} en %{platform}"
|
||||
ip: IP
|
||||
platforms:
|
||||
adobe_air: Adobe Air
|
||||
android: Android
|
||||
blackberry: Blackberry
|
||||
chrome_os: ChromeOS
|
||||
firefox_os: Firefox OS
|
||||
ios: iOS
|
||||
linux: Linux
|
||||
mac: Mac
|
||||
other: plataforma desconocida
|
||||
windows: Windows
|
||||
windows_mobile: Windows Mobile
|
||||
windows_phone: Windows Phone
|
||||
title: Sesiones
|
||||
settings:
|
||||
account: Cuenta
|
||||
appearance: Aspeutu
|
||||
authorized_apps: Aplicaciones autorizaes
|
||||
back: Volver a Mastodon
|
||||
edit_profile: Edición del perfil
|
||||
development: Desendolcu
|
||||
edit_profile: Editar el perfil
|
||||
export: Esportación de datos
|
||||
featured_tags: Etiquetes destacaes
|
||||
import: Importación
|
||||
import_and_export: Importación y esportación
|
||||
notifications: Avisos
|
||||
preferences: Preferencies
|
||||
profile: Perfil
|
||||
two_factor_authentication: Autenticación en dos pasos
|
||||
statuses:
|
||||
attached:
|
||||
@ -247,20 +381,34 @@ ast:
|
||||
video:
|
||||
one: "%{count} videu"
|
||||
other: "%{count} vídeos"
|
||||
boosted_from_html: Compartióse'l toot dende %{acct_link}
|
||||
boosted_from_html: Compartióse'l barritu dende %{acct_link}
|
||||
language_detection: Deteutala automáticamente
|
||||
pin_errors:
|
||||
limit: Yá fixesti'l númberu máxiumu de toots
|
||||
ownership: Nun pue fixase'l toot d'otra persona
|
||||
private: Nun puen fixase los toots que nun seyan públicos
|
||||
reblog: Nun pue fixase un toot compartíu
|
||||
limit: Yá fixesti'l númberu máximu de barritos
|
||||
ownership: Nun pue fixase'l barritu d'otra persona
|
||||
private: Nun puen fixase los barritos que nun seyan públicos
|
||||
reblog: Nun pue fixase un barritu compartíu
|
||||
poll:
|
||||
total_people:
|
||||
one: "%{count} persona"
|
||||
other: "%{count} persones"
|
||||
total_votes:
|
||||
one: "%{count} votu"
|
||||
other: "%{count} votos"
|
||||
show_more: Amosar más
|
||||
title: "%{name}: «%{quote}»"
|
||||
visibilities:
|
||||
private: Namái siguidores
|
||||
private_long: Namái s'amuesen a los siguidores
|
||||
public_long: Tol mundu los puen ver
|
||||
unlisted: Nun llistar
|
||||
unlisted_long: Tol mundu puen velos pero nun se llisten nes llinies temporales públiques
|
||||
stream_entries:
|
||||
reblogged: compartióse
|
||||
pinned: Barritu fixáu
|
||||
reblogged: compartió
|
||||
sensitive_content: Conteníu sensible
|
||||
tags:
|
||||
does_not_match_previous_name: nun concasa col nome anterior
|
||||
themes:
|
||||
default: Mastodon
|
||||
two_factor_authentication:
|
||||
@ -269,17 +417,27 @@ ast:
|
||||
enabled: L'autenticación en dos pasos ta activada
|
||||
enabled_success: L'autenticación en dos pasos activóse con ésitu
|
||||
generate_recovery_codes: Xenerar códigos de recuperación
|
||||
lost_recovery_codes: Los códigos de recuperación permítente recuperar l'accesu a la cuenta si pierdes el teléfonu. Si tamién pierdes esos códigos, pues xeneralos de nueves equí. Los códigos de recuperación vieyos van invalidase.
|
||||
lost_recovery_codes: Los códigos de recuperación permítente recuperar l'accesu a la cuenta si pierdes el teléfonu. Si tamién pierdes estos códigos, pues rexeneralos equí. Los códigos de recuperación vieyos van invalidase.
|
||||
manual_instructions: 'Si nun pues escaniar el códigu QR y precises introducilu a mano, equí ta''l secretu en testu planu:'
|
||||
recovery_codes: Códigos de recuperación
|
||||
recovery_codes_regenerated: Los códigos de recuperación rexeneráronse con ésitu
|
||||
user_mailer:
|
||||
warning:
|
||||
explanation:
|
||||
suspend: La to cuenta suspendióse y tolos espublizamientos qu'espublizares desaniciáronse de mou irreversible d'esti sirvidor y sirvidores onde teníes siguidores.
|
||||
subject:
|
||||
suspend: Suspendióse la cuenta %{acct}
|
||||
title:
|
||||
none: Alvertencia
|
||||
suspend: Cuenta suspendida
|
||||
welcome:
|
||||
full_handle_hint: Esto ye lo que-yos diríes a los collacios pa que puean unviate mensaxes o siguite dende otra instancia.
|
||||
subject: Afáyate en Mastodon
|
||||
tips: Conseyos
|
||||
users:
|
||||
invalid_email: La direición de corréu nun ye válida
|
||||
invalid_otp_token: El códigu nun ye válidu
|
||||
otp_lost_help_html: Si pierdes l'accesu, contauta con %{email}
|
||||
seamless_external_login: Aniciesti sesión pente un serviciu esternu, polo que los axustes de la contraseña y corréu nun tán disponibles.
|
||||
verification:
|
||||
verification: Verificación
|
||||
|
@ -59,7 +59,6 @@ bg:
|
||||
'503': The page could not be served due to a temporary server failure.
|
||||
exports:
|
||||
blocks: Вашите блокирания
|
||||
follows: Вашите следвания
|
||||
storage: Съхранение на мултимедия
|
||||
generic:
|
||||
changes_saved_msg: Успешно запазване на промените!
|
||||
|
@ -1,5 +1,10 @@
|
||||
---
|
||||
br:
|
||||
about:
|
||||
about_this: Diàr-benn
|
||||
active_count_after: oberiant
|
||||
apps: Arloadoù pellgomz
|
||||
apps_platforms: Ober get Mastodoñ àr iOS, Android ha savennoù arall
|
||||
errors:
|
||||
'400': The request you submitted was invalid or malformed.
|
||||
'403': You don't have permission to view this page.
|
||||
|
@ -1,26 +1,26 @@
|
||||
---
|
||||
ca:
|
||||
about:
|
||||
about_hashtag_html: Aquests són toots públics etiquetats amb <strong>#%{hashtag}</strong>. Pots interactuar amb ells si tens un compte a qualsevol lloc del fediverse.
|
||||
about_mastodon_html: Mastodon és una xarxa social basada en protocols web oberts i en programari lliure i de codi obert. Està descentralitzat com el correu electrònic.
|
||||
about_hashtag_html: Aquests són tuts públics etiquetats amb <strong>#%{hashtag}</strong>. Pots interactuar amb elles si tens un compte a qualsevol lloc del fedivers.
|
||||
about_mastodon_html: 'La xarxa social del futur: sense anuncis, sense vigilància corporativa, disseny ètic i descentralització. Posseeix les teves dades amb Mastodon!'
|
||||
about_this: Quant a
|
||||
active_count_after: actiu
|
||||
active_footnote: Usuaris actius mensuals (UAM)
|
||||
administered_by: 'Administrat per:'
|
||||
api: API
|
||||
apps: Apps mòbils
|
||||
apps_platforms: Utilitza Mastodon des de iOS, Android i altres plataformes
|
||||
apps_platforms: Utilitza Mastodont des de iOS, Android i altres plataformes
|
||||
browse_directory: Navega per el directori de perfils i filtra segons interessos
|
||||
browse_local_posts: Navega un flux en directe de publicacions d’aquest servidor
|
||||
browse_public_posts: Navega per una transmissió en directe de publicacions públiques a Mastodon
|
||||
browse_public_posts: Navega per una transmissió en directe de publicacions públiques a Mastodont
|
||||
contact: Contacte
|
||||
contact_missing: No configurat
|
||||
contact_unavailable: N/D
|
||||
discover_users: Descobreix usuaris
|
||||
documentation: Documentació
|
||||
federation_hint_html: Amb un compte de %{instance} podràs seguir persones de qualsevol servidor Mastodon i altres.
|
||||
federation_hint_html: Amb un compte de %{instance} podràs seguir persones de qualsevol servidor Mastodont i altres.
|
||||
get_apps: Prova una aplicació mòbil
|
||||
hosted_on: Mastodon allotjat a %{domain}
|
||||
hosted_on: Mastodont allotjat a %{domain}
|
||||
instance_actor_flash: |
|
||||
Aquest compte és un actor virtual utilitzat per a representar al propi servidor i no cap usuari individual.
|
||||
S'utilitza per a propòsits de federació i no ha de ser bloquejat si no voleu bloquejar tota la instància, en aquest cas hauríeu d'utilitzar un bloqueig de domini.
|
||||
@ -30,8 +30,8 @@ ca:
|
||||
server_stats: 'Estadístiques del servidor:'
|
||||
source_code: Codi font
|
||||
status_count_after:
|
||||
one: toot
|
||||
other: toots
|
||||
one: estat
|
||||
other: estats
|
||||
status_count_before: Que han escrit
|
||||
tagline: Segueix els teus amics i descobreix-ne de nous
|
||||
terms: Termes del servei
|
||||
@ -40,14 +40,14 @@ ca:
|
||||
domain: Servidor
|
||||
reason: Raó
|
||||
rejecting_media: 'Els arxius multimèdia d''aquests servidors no seran processats o emmagatzemats i cap miniatura serà mostrada, requerint clic manual a través de l''arxiu original:'
|
||||
silenced: 'Les publicacions d''aquests servidors seran amagades en les línies de temps públiques i converses, i cap notificació serà generada de les interaccions dels seus usuaris, llevat que estiguis seguint-los:'
|
||||
silenced: 'Les publicacions d''aquests servidors seran amagades en les cronologíes públiques i converses, i cap notificació serà generada de les interaccions dels seus usuaris, llevat que estiguis seguint-los:'
|
||||
suspended: 'Cap dada d''aquests servidors serà processada, emmagatzemada o intercanviada, fent impossible qualsevol interacció o comunicació amb els usuaris d''aquests servidors:'
|
||||
unavailable_content_html: Mastodon generalment et permet per veure contingut i interaccionar amb usuaris de qualsevol altre servidor en el fedivers. Aquestes són les excepcions que s'han fet en aquest servidor particular.
|
||||
unavailable_content_html: Mastodont generalment et permet per veure contingut i interaccionar amb usuaris de qualsevol altre servidor en el fedivers. Aquestes són les excepcions que s'han fet en aquest servidor particular.
|
||||
user_count_after:
|
||||
one: usuari
|
||||
other: usuaris
|
||||
user_count_before: Tenim
|
||||
what_is_mastodon: Què és Mastodon?
|
||||
what_is_mastodon: Què és Mastodont?
|
||||
accounts:
|
||||
choices_html: 'Eleccions de %{name}:'
|
||||
endorsements_hint: Pots recomanar persones que segueixes a l'interfície de web, que apareixeran aquí.
|
||||
@ -70,14 +70,15 @@ ca:
|
||||
pin_errors:
|
||||
following: Has d'estar seguint la persona que vulguis avalar
|
||||
posts:
|
||||
one: Toot
|
||||
other: Toots
|
||||
posts_tab_heading: Toots
|
||||
posts_with_replies: Toots i respostes
|
||||
one: Barrita
|
||||
other: Barritadas
|
||||
posts_tab_heading: Barritadas
|
||||
posts_with_replies: Barritades i respostes
|
||||
reserved_username: El nom d'usuari està reservat
|
||||
roles:
|
||||
admin: Administrador
|
||||
bot: Bot
|
||||
group: Grup
|
||||
moderator: Moderador
|
||||
unavailable: Perfil inaccessible
|
||||
unfollow: Deixa de seguir
|
||||
@ -225,7 +226,7 @@ ca:
|
||||
unsuspend_account: "%{name} ha llevat la suspensió del compte de %{target}"
|
||||
update_custom_emoji: "%{name} ha actualitzat l'emoji %{target}"
|
||||
update_status: "%{name} estat actualitzat per %{target}"
|
||||
deleted_status: "(toot suprimit)"
|
||||
deleted_status: "(estat esborrat)"
|
||||
title: Registre d'auditoria
|
||||
custom_emojis:
|
||||
assign_category: Assigna una categoria
|
||||
@ -269,7 +270,7 @@ ca:
|
||||
feature_registrations: Registres
|
||||
feature_relay: Relay de la Federació
|
||||
feature_spam_check: Anti-spam
|
||||
feature_timeline_preview: Vista previa de línia de temps
|
||||
feature_timeline_preview: Vista previa de la cronología
|
||||
features: Característiques
|
||||
hidden_service: Federació amb serveis ocults
|
||||
open_reports: informes oberts
|
||||
@ -338,6 +339,7 @@ ca:
|
||||
delete: Suprimeix
|
||||
destroyed_msg: S'ha eliminat correctament el bloc del domini de correu
|
||||
domain: Domini
|
||||
empty: Cap domini de correu a la llista negre.
|
||||
new:
|
||||
create: Afegeix un domini
|
||||
title: Nova adreça de correu en la llista negra
|
||||
@ -376,11 +378,11 @@ ca:
|
||||
relays:
|
||||
add_new: Afegiu un nou relay
|
||||
delete: Esborra
|
||||
description_html: Un <strong>relay de federació</strong> és un servidor intermediari que intercanvia grans volums de toots públics entre servidors que es subscriuen i publiquen en ell. <strong>Pot ajudar a servidors petits i mitjans a descobrir contingut del fedivers</strong>, no fent necessari que els usuaris locals manualment segueixin altres persones de servidors remots.
|
||||
description_html: Un <strong>relay de federació</strong> és un servidor intermediari que intercanvia grans volums de barritades públiquess entre servidors que es subscriuen i publiquen en ell. <strong>Pot ajudar a servidors petits i mitjans a descobrir contingut del fedivers</strong>, no fent necessari que els usuaris locals manualment segueixin altres persones de servidors remots.
|
||||
disable: Inhabilita
|
||||
disabled: Desactivat
|
||||
enable: Activat
|
||||
enable_hint: Una vegada habilitat el teu servidor es subscriurà a tots els toots públics d'aquest relay i començarà a enviar-hi tots els toots públics d'aquest servidor.
|
||||
enable_hint: Una vegada habilitat el teu servidor es subscriurà a totes les barritades públiques d'aquesta ristra i començarà a enviar-hi totes les barritades públiques d'aquest servidor.
|
||||
enabled: Activat
|
||||
inbox_url: URL del Relay
|
||||
pending: S'està esperant l'aprovació del relay
|
||||
@ -393,10 +395,18 @@ ca:
|
||||
created_msg: La nota del informe s'ha creat correctament!
|
||||
destroyed_msg: La nota del informe s'ha esborrat correctament!
|
||||
reports:
|
||||
account:
|
||||
notes:
|
||||
one: "%{count} nota"
|
||||
other: "%{count} notes"
|
||||
reports:
|
||||
one: "%{count} informe"
|
||||
other: "%{count} informes"
|
||||
action_taken_by: Mesures adoptades per
|
||||
are_you_sure: N'estàs segur?
|
||||
assign_to_self: Assignar-me
|
||||
assigned: Moderador assignat
|
||||
by_target_domain: Domini del compte reportat
|
||||
comment:
|
||||
none: Cap
|
||||
created_at: Reportat
|
||||
@ -442,6 +452,8 @@ ca:
|
||||
users: Per als usuaris locals en línia
|
||||
domain_blocks_rationale:
|
||||
title: Mostra el raonament
|
||||
enable_bootstrap_timeline_accounts:
|
||||
title: Activa els seguiments per defecte per els usuaris nous
|
||||
hero:
|
||||
desc_html: Es mostra en pàgina frontal. Recomanat al menys 600x100px. Si no es configura es mostrarà el del servidor
|
||||
title: Imatge d’heroi
|
||||
@ -474,8 +486,8 @@ ca:
|
||||
open: Qualsevol pot registrar-se
|
||||
title: Mode de registres
|
||||
show_known_fediverse_at_about_page:
|
||||
desc_html: Quan s'activa, mostrarà tots els toots de tot el fedivers conegut en vista prèvia. En cas contrari, només es mostraran toots locals.
|
||||
title: Mostra el fedivers conegut en vista prèvia de la línia de temps
|
||||
desc_html: Quan s'activa, mostrarà tots els brams del fedivers conegut en vista prèvia. En cas contrari, només es mostraran els locals
|
||||
title: Mostra el fedivers conegut en vista prèvia de la cronología
|
||||
show_staff_badge:
|
||||
desc_html: Mostra una insígnia de personal en la pàgina d'usuari
|
||||
title: Mostra insígnia de personal
|
||||
@ -486,21 +498,21 @@ ca:
|
||||
desc_html: Un bon lloc per al codi de conducta, regles, directrius i altres coses que distingeixen el teu servidor. Pots utilitzar etiquetes HTML
|
||||
title: Descripció ampliada del lloc
|
||||
site_short_description:
|
||||
desc_html: Es mostra a la barra lateral i a metaetiquetes. Descriu en un únic paràgraf què és Mastodon i què fa que aquest servidor sigui especial. Si està buit, s'estableix per defecte la descripció del servidor.
|
||||
desc_html: Es mostra a la barra lateral i a metaetiquetes. Descriu en un únic paràgraf què és Mastodont i què fa que aquest servidor sigui especial. Si està buit, s'estableix per defecte la descripció del servidor.
|
||||
title: Descripció curta del servidor
|
||||
site_terms:
|
||||
desc_html: Pots escriure la teva pròpia política de privadesa, els termes del servei o d'altres normes legals. Pots utilitzar etiquetes HTML
|
||||
title: Termes del servei personalitzats
|
||||
site_title: Nom del servidor
|
||||
spam_check_enabled:
|
||||
desc_html: Mastodon pot auto-silenciar i informar automàticament de comptes basat en mesures com ara la detecció de comptes que envien missatges repetits no sol·licitats. Pot haver-hi falsos positius.
|
||||
desc_html: Mastodont pot auto-silenciar i informar automàticament de comptes basat en mesures com ara la detecció de comptes que envien missatges repetits no sol·licitats. Pot haver-hi falsos positius.
|
||||
title: Anti-spam
|
||||
thumbnail:
|
||||
desc_html: S'utilitza per obtenir visualitzacions prèvies a través d'OpenGraph i API. Es recomana 1200x630px
|
||||
title: Miniatura del servidor
|
||||
timeline_preview:
|
||||
desc_html: Mostra la línia de temps pública a la pàgina inicial
|
||||
title: Vista prèvia de la línia de temps
|
||||
desc_html: Mostra la cronología pública a la pàgina inicial
|
||||
title: Vista prèvia de la cronología
|
||||
title: Configuració del lloc
|
||||
trendable_by_default:
|
||||
desc_html: Afecta a les etiquetes que no s'havien rebutjat prèviament
|
||||
@ -566,12 +578,16 @@ ca:
|
||||
remove: Desvincular l'àlies
|
||||
appearance:
|
||||
advanced_web_interface: Interfície web avançada
|
||||
advanced_web_interface_hint: 'Si vols fer ús de tota l''amplada de la teva pantalla, l''interfície web avançada et permet configurar diverses columnes per a veure molta més informació al mateix temps: Inici, notificacions, línia de temps federada i qualsevol número de llistes i etiquetes.'
|
||||
advanced_web_interface_hint: 'Si vols fer ús de tota l''amplada de la teva pantalla, l''interfície web avançada et permet configurar diverses columnes per a veure molta més informació al mateix temps: Inici, notificacions, cronología federada i qualsevol número de llistes i etiquetes.'
|
||||
animations_and_accessibility: Animacions i accessibilitat
|
||||
confirmation_dialogs: Diàlegs de confirmació
|
||||
discovery: Descobriment
|
||||
localization:
|
||||
body: Mastodon és traduït per voluntaris.
|
||||
guide_link: https://crowdin.com/project/mastodon
|
||||
guide_link_text: Tothom hi pot contribuir.
|
||||
sensitive_content: Contingut sensible
|
||||
toot_layout: Disseny del tut
|
||||
toot_layout: Disseny de la barritada
|
||||
application_mailer:
|
||||
notification_preferences: Canvia les preferències de correu
|
||||
salutation: "%{name},"
|
||||
@ -595,9 +611,9 @@ ca:
|
||||
delete_account: Suprimeix el compte
|
||||
delete_account_html: Si vols suprimir el compte pots <a href="%{path}">fer-ho aquí</a>. Se't demanarà confirmació.
|
||||
description:
|
||||
prefix_invited_by_user: "@%{name} t'ha invitat a unir-te a aquest servidor de Mastodon!"
|
||||
prefix_sign_up: Registra't avui a Mastodon!
|
||||
suffix: Amb un compte seràs capaç de seguir persones, publicar i intercanviar missatges amb usuaris de qualsevol servidor de Mastodon i més!
|
||||
prefix_invited_by_user: "@%{name} t'ha invitat a unir-te a aquest servidor de Mastodont!"
|
||||
prefix_sign_up: Registra't avui a Mastodont!
|
||||
suffix: Amb un compte seràs capaç de seguir persones, publicar i intercanviar missatges amb usuaris de qualsevol servidor de Mastodont i més!
|
||||
didnt_get_confirmation: No has rebut el correu de confirmació?
|
||||
forgot_password: Has oblidat la contrasenya?
|
||||
invalid_reset_password_token: L'enllaç de restabliment de la contrasenya no és vàlid o ha caducat. Torna-ho a provar.
|
||||
@ -693,22 +709,21 @@ ca:
|
||||
content: Ho sentim, però alguna cosa ha fallat a la nostra banda.
|
||||
title: Aquesta pàgina no es correcta
|
||||
'503': La pàgina no podria ser servida a causa d'un error temporal del servidor.
|
||||
noscript_html: Per a utilitzar Mastodon, activa el JavaScript. També pots provar una de les <a href="%{apps_path}"> aplicacions natives</a> de Mastodon per a la vostra plataforma.
|
||||
noscript_html: Per a utilitzar Mastodont, activa el JavaScript. També pots provar una de les <a href="%{apps_path}"> aplicacions natives</a> de Mastodont per a la vostra plataforma.
|
||||
existing_username_validator:
|
||||
not_found: no s'ha pogut trobar cap usuari local amb aquest nom d'usuari
|
||||
not_found_multiple: no s'ha pogut trobar %{usernames}
|
||||
exports:
|
||||
archive_takeout:
|
||||
date: Data
|
||||
download: Descarrega l’arxiu
|
||||
hint_html: Pots sol·licitar un arxiu dels teus <strong>toots i dels fitxers multimèdia pujats</strong>. Les dades exportades tindran el format ActivityPub, llegible per qualsevol programari compatible. Pots sol·licitar un arxiu cada 7 dies.
|
||||
in_progress: Compilant el teu arxiu...
|
||||
download: Baixa l’arxiu
|
||||
hint_html: Pots sol·licitar un arxiu de les teves <strong>barritades i dels fitxers multimèdia pujats</strong>. Les dades exportades tindran el format ActivityPub, llegible per qualsevol programari compatible. Pots sol·licitar un arxiu cada 7 dies.
|
||||
in_progress: S'està compilant el teu arxiu...
|
||||
request: Sol·licita el teu arxiu
|
||||
size: Tamany
|
||||
blocks: Persones que has blocat
|
||||
csv: CSV
|
||||
domain_blocks: Bloquejos de dominis
|
||||
follows: Persones que segueixes
|
||||
lists: Llistes
|
||||
mutes: Persones silenciades
|
||||
storage: Emmagatzematge
|
||||
@ -719,9 +734,9 @@ ca:
|
||||
hint_html: "<strong>Què son les etiquetes destacades?</strong> Es mostren de manera destacada en el teu perfil públic i permeten a les persones navegar per les teves publicacions amb aquestes etiquetes. Són una gran eina per fer un seguiment de treballs creatius o de projectes a llarg termini."
|
||||
filters:
|
||||
contexts:
|
||||
home: Línia de temps Inici
|
||||
home: Cronología d'inici
|
||||
notifications: Notificacions
|
||||
public: Línies de temps públiques
|
||||
public: Cronologíes públiques
|
||||
thread: Converses
|
||||
edit:
|
||||
title: Editar filtre
|
||||
@ -730,6 +745,7 @@ ca:
|
||||
invalid_irreversible: El filtratge irreversible només funciona amb el contextos inici o notificacions
|
||||
index:
|
||||
delete: Esborra
|
||||
empty: No hi tens cap filtre.
|
||||
title: Filtres
|
||||
new:
|
||||
title: Afegir nou filtre
|
||||
@ -764,7 +780,7 @@ ca:
|
||||
i_am_html: Sóc %{username} a %{service}.
|
||||
identity: Identitat
|
||||
inactive: Inactiu
|
||||
publicize_checkbox: 'I tooteja això:'
|
||||
publicize_checkbox: 'I barrita això:'
|
||||
publicize_toot: 'Està provat! Sóc %{username} a %{service}: %{url}'
|
||||
status: Estat de verificació
|
||||
view_proof: Veure la prova
|
||||
@ -781,7 +797,7 @@ ca:
|
||||
domain_blocking: Llistat de dominis bloquejats
|
||||
following: Llista de seguits
|
||||
muting: Llista de silenciats
|
||||
upload: Carregar
|
||||
upload: Carrega
|
||||
in_memoriam_html: En Memòria.
|
||||
invites:
|
||||
delete: Desactivar
|
||||
@ -878,6 +894,10 @@ ca:
|
||||
body: "%{name} ha impulsat el teu estat:"
|
||||
subject: "%{name} ha impulsat el teu estat"
|
||||
title: Nou impuls
|
||||
notifications:
|
||||
email_events: Esdeveniments per a notificacions per correu electrònic
|
||||
email_events_hint: 'Selecciona els esdeveniments per als quals vols rebre notificacions:'
|
||||
other_settings: Altres opcions de notificació
|
||||
number:
|
||||
human:
|
||||
decimal_units:
|
||||
@ -907,10 +927,12 @@ ca:
|
||||
preferences:
|
||||
other: Altre
|
||||
posting_defaults: Valors predeterminats de publicació
|
||||
public_timelines: Línies de temps públiques
|
||||
public_timelines: Cronologíes públiques
|
||||
relationships:
|
||||
activity: Activitat del compte
|
||||
dormant: Inactiu
|
||||
followers: Seguidors
|
||||
following: Seguint
|
||||
last_active: Darrer actiu
|
||||
most_recent: Més recent
|
||||
moved: Mogut
|
||||
@ -931,16 +953,16 @@ ca:
|
||||
remote_interaction:
|
||||
favourite:
|
||||
proceed: Procedir a afavorir
|
||||
prompt: 'Vols marcar com a favorit aquest toot:'
|
||||
prompt: 'Vols marcar com a favorit aquesta barritada:'
|
||||
reblog:
|
||||
proceed: Procedir a impulsar
|
||||
prompt: 'Vols impulsar aquest toot:'
|
||||
prompt: 'Vols impulsar aquesta barritada:'
|
||||
reply:
|
||||
proceed: Procedir a respondre
|
||||
prompt: 'Vols respondre a aquest toot:'
|
||||
prompt: 'Vols respondre a aquesta barritada:'
|
||||
scheduled_statuses:
|
||||
over_daily_limit: Has superat el límit de %{limit} toots programats per a aquell dia
|
||||
over_total_limit: Has superat el limit de %{limit} toots programats
|
||||
over_daily_limit: Has superat el límit de %{limit} barritades programades per a aquell dia
|
||||
over_total_limit: Has superat el limit de %{limit} barritades programades
|
||||
too_soon: La data programada ha de ser futura
|
||||
sessions:
|
||||
activity: Última activitat
|
||||
@ -965,7 +987,7 @@ ca:
|
||||
weibo: Weibo
|
||||
current_session: Sessió actual
|
||||
description: "%{browser} de %{platform}"
|
||||
explanation: Aquests són els navegadors web que actualment han iniciat la sessió amb el teu compte de Mastodon.
|
||||
explanation: Aquests són els navegadors web que actualment han iniciat la sessió amb el teu compte de Mastodont.
|
||||
ip: IP
|
||||
platforms:
|
||||
adobe_air: Adobe Air
|
||||
@ -989,15 +1011,15 @@ ca:
|
||||
aliases: Àlies de compte
|
||||
appearance: Aparènça
|
||||
authorized_apps: Aplicacions autoritzades
|
||||
back: Torna a Mastodon
|
||||
back: Torna a Mastodont
|
||||
delete: Eliminació del compte
|
||||
development: Desenvolupament
|
||||
edit_profile: Editar perfil
|
||||
export: Exportar dades
|
||||
export: Exportació de dades
|
||||
featured_tags: Etiquetes destacades
|
||||
identity_proofs: Proves d'identitat
|
||||
import: Importar
|
||||
import_and_export: Importar i exportar
|
||||
import: Importació
|
||||
import_and_export: Importació i exportació
|
||||
migrate: Migració del compte
|
||||
notifications: Notificacions
|
||||
preferences: Preferències
|
||||
@ -1024,9 +1046,9 @@ ca:
|
||||
open_in_web: Obre en la web
|
||||
over_character_limit: Límit de caràcters de %{max} superat
|
||||
pin_errors:
|
||||
limit: Ja has fixat el màxim nombre de toots
|
||||
ownership: No es pot fixar el toot d'algú altre
|
||||
private: No es pot fixar el toot no públic
|
||||
limit: Ja has fixat el màxim nombre de barritades
|
||||
ownership: No es pot fixar la barritada d'altra persona
|
||||
private: No es pot fixar la barritada no pública
|
||||
reblog: No es pot fixar un impuls
|
||||
poll:
|
||||
total_people:
|
||||
@ -1045,9 +1067,9 @@ ca:
|
||||
public: Públic
|
||||
public_long: Tothom pot veure-ho
|
||||
unlisted: No llistat
|
||||
unlisted_long: Tothom ho pot veure, però no es mostra en la història federada
|
||||
unlisted_long: Tothom ho pot veure, però no es mostra en la cronología federada
|
||||
stream_entries:
|
||||
pinned: Toot fixat
|
||||
pinned: Barritada fixada
|
||||
reblogged: ha impulsat
|
||||
sensitive_content: Contingut sensible
|
||||
tags:
|
||||
@ -1136,9 +1158,9 @@ ca:
|
||||
<p>Originalment adaptat des del <a href="https://github.com/discourse/discourse">Discourse privacy policy</a>.</p>
|
||||
title: "%{instance} Condicions del servei i política de privadesa"
|
||||
themes:
|
||||
contrast: Mastodon (Alt contrast)
|
||||
default: Mastodon (Fosc)
|
||||
mastodon-light: Mastodon (Clar)
|
||||
contrast: Mastodont (Alt contrast)
|
||||
default: Mastodont (Fosc)
|
||||
mastodon-light: Mastodont (Clar)
|
||||
time:
|
||||
formats:
|
||||
default: "%b %d, %Y, %H:%M"
|
||||
@ -1161,14 +1183,14 @@ ca:
|
||||
wrong_code: El codi introduït no és vàlid! És correcta l'hora del servidor i del dispositiu?
|
||||
user_mailer:
|
||||
backup_ready:
|
||||
explanation: Has sol·licitat una copia completa del teu compte Mastodon. Ara ja està a punt per descàrrega!
|
||||
explanation: Has sol·licitat una copia completa del teu compte Mastodont. Ara ja està a punt per descàrrega!
|
||||
subject: El teu arxiu està preparat per a descàrrega
|
||||
title: Recollida del arxiu
|
||||
warning:
|
||||
explanation:
|
||||
disable: Mentre el teu compte estigui congelat les dades romandran intactes però no pots dur a terme cap acció fins que no estigui desbloquejat.
|
||||
silence: Mentre el teu compte estigui limitat només les persones que ja et segueixen veuen les teves dades en aquest servidor i pots ser exclòs de diverses llistes públiques. No obstant això, d'altres encara poden seguir-te manualment.
|
||||
suspend: El teu compte s'ha suspès i tots els teus toots i fitxers multimèdia penjats s'han eliminat irreversiblement d'aquest servidor i dels servidors on tenies seguidors.
|
||||
suspend: El teu compte s'ha suspès i totes les teves barritades i fitxers multimèdia penjats s'han eliminat irreversiblement d'aquest servidor i dels servidors on tenies seguidores.
|
||||
get_in_touch: Pots respondre a aquest correu electrònic per a contactar amb el personal de %{instance}.
|
||||
review_server_policies: Revisa les polítiques del servidor
|
||||
statuses: 'Concretament, per:'
|
||||
@ -1192,11 +1214,11 @@ ca:
|
||||
full_handle_hint: Això és el que has de dir als teus amics perquè puguin enviar-te missatges o seguir-te des d'un altre servidor.
|
||||
review_preferences_action: Canviar preferències
|
||||
review_preferences_step: Assegura't d'establir les teves preferències, com ara els correus electrònics que vols rebre o el nivell de privadesa per defecte que t'agradaria que tinguin les teves entrades. Si no tens malaltia de moviment, pots optar per habilitar la reproducció automàtica de GIF.
|
||||
subject: Benvingut/da a Mastodon
|
||||
tip_federated_timeline: La línia de temps federada és el cabal principal de la xarxa Mastodon. Però només inclou les persones a les quals els teus veïns estan subscrits, de manera que no està complet.
|
||||
subject: Benvingut/da a Mastodont
|
||||
tip_federated_timeline: La cronología federada és el cabal principal de la xarxa Mastodont. Però només inclou les persones a les quals els teus veïns estan subscrits, de manera que no està complet.
|
||||
tip_following: Per defecte segueixes als administradors del servidor. Per trobar més persones interessants, consulta les línies de temps local i federada.
|
||||
tip_local_timeline: La línia de temps local és la vista del flux de publicacions dels usuaris de %{instance}. Aquests usuaris són els teus veïns més propers!
|
||||
tip_mobile_webapp: Si el teu navegador del mòbil t'ofereix afegir Mastodon a la teva pantalla d'inici, podràs rebre notificacions "push". Es comporta com una aplicació nativa en molts aspectes!
|
||||
tip_mobile_webapp: Si el teu navegador del mòbil t'ofereix afegir Mastodont a la teva pantalla d'inici, podràs rebre notificacions d'empènyer "push". Es comporta com una aplicació nativa en molts aspectes!
|
||||
tips: Consells
|
||||
title: Benvingut a bord, %{name}!
|
||||
users:
|
||||
@ -1207,5 +1229,5 @@ ca:
|
||||
seamless_external_login: Has iniciat sessió via un servei extern per tant els ajustos de contrasenya i correu electrònic no estan disponibles.
|
||||
signed_in_as: 'Sessió iniciada com a:'
|
||||
verification:
|
||||
explanation_html: 'Pots <strong>verificar-te com a propietari dels enllaços a les metadades del teu perfil</strong>. Per això, el lloc web enllaçat ha de contenir un enllaç al teu perfil de Mastodon. El vincle <strong>ha de</strong> tenir l''atribut <code>rel="me"</code>. El contingut del text de l''enllaç no importa. Aquí tens un exemple:'
|
||||
explanation_html: 'Pots <strong>verificar-te com a propietari dels enllaços a les metadades del teu perfil</strong>. Per això, el lloc web enllaçat ha de contenir un enllaç al teu perfil de Mastodont. El vincle <strong>ha de</strong> tenir l''atribut <code>rel="me"</code>. El contingut del text de l''enllaç no importa. Aquí tens un exemple:'
|
||||
verification: Verificació
|
||||
|
@ -2,7 +2,7 @@
|
||||
co:
|
||||
about:
|
||||
about_hashtag_html: Quessi sò statuti pubblichi taggati cù <strong>#%{hashtag}</strong>. Pudete interagisce cù elli sì voi avete un contu in qualche parte di u fediverse.
|
||||
about_mastodon_html: Mastodon ghjè una rete suciale custruita incù prutucolli web aperti è lugiziali liberi. Hè decentralizatu cumu l’e-mail.
|
||||
about_mastodon_html: 'A rete suciale di u futuru: micca pubblicità, micca surveglianza, cuncezzione etica, è dicentralizazione! Firmate in cuntrollu di i vostri dati cù Mastodon!'
|
||||
about_this: À prupositu
|
||||
active_count_after: attivi
|
||||
active_footnote: Utilizatori Attivi Mensili (UAM)
|
||||
@ -78,6 +78,7 @@ co:
|
||||
roles:
|
||||
admin: Amministratore
|
||||
bot: Bot
|
||||
group: Gruppu
|
||||
moderator: Muderatore
|
||||
unavailable: Prufile micca dispunibule
|
||||
unfollow: Ùn siguità più
|
||||
@ -314,7 +315,7 @@ co:
|
||||
public_comment_hint: Cummentariu nant'à a limitazione di stu duminiu per u pubblicu generale, s'ella hè attivata a rivelazione di a lista di limitazione di duminiu.
|
||||
reject_media: Righjittà i fugliali media
|
||||
reject_media_hint: Sguassa tutti i media caricati è ricusa caricamenti futuri. Inutile per una suspensione
|
||||
reject_reports: Righjittà i rapporti
|
||||
reject_reports: Righjittà i riporti
|
||||
reject_reports_hint: Ignurà tutti i signalamenti chì venenu d'issu duminiu. Senz'oghjettu pè e suspensione
|
||||
rejecting_media: righjettu di i fugliali media
|
||||
rejecting_reports: righjettu di i signalamenti
|
||||
@ -338,6 +339,7 @@ co:
|
||||
delete: Toglie
|
||||
destroyed_msg: U blucchime di u duminiu d’e-mail ùn hè più attivu
|
||||
domain: Duminiu
|
||||
empty: Ùn c'hè manc'un duminiu d'email in lista nera.
|
||||
new:
|
||||
create: Creà un blucchime
|
||||
title: Nova iscrizzione nant’a lista nera e-mail
|
||||
@ -361,7 +363,7 @@ co:
|
||||
total_blocked_by_us: Bluccati da noi
|
||||
total_followed_by_them: Siguitati da elli
|
||||
total_followed_by_us: Siguitati da noi
|
||||
total_reported: Rapporti nant'à elli
|
||||
total_reported: Riporti nant'à elli
|
||||
total_storage: Media aghjunti
|
||||
invites:
|
||||
deactivate_all: Disattivà tuttu
|
||||
@ -393,10 +395,18 @@ co:
|
||||
created_msg: Nota di signalamentu creata!
|
||||
destroyed_msg: Nota di signalamentu sguassata!
|
||||
reports:
|
||||
account:
|
||||
notes:
|
||||
one: "%{count} nota"
|
||||
other: "%{count} note"
|
||||
reports:
|
||||
one: "%{count} riportu"
|
||||
other: "%{count} riporti"
|
||||
action_taken_by: Intervenzione di
|
||||
are_you_sure: Site sicuru·a?
|
||||
assign_to_self: Assignallu à mè
|
||||
assigned: Muderatore assignatu
|
||||
by_target_domain: Duminiu di u contu signalatu
|
||||
comment:
|
||||
none: Nisunu
|
||||
created_at: Palisatu
|
||||
@ -442,6 +452,8 @@ co:
|
||||
users: À l'utilizatori lucali cunnettati
|
||||
domain_blocks_rationale:
|
||||
title: Vede ragiò
|
||||
enable_bootstrap_timeline_accounts:
|
||||
title: Attivà l'abbunamenti predefiniti per l'utilizatori novi
|
||||
hero:
|
||||
desc_html: Affissatu nant’a pagina d’accolta. Ricumandemu almenu 600x100px. S’ellu ùn hè micca definiti, a vignetta di u servore sarà usata
|
||||
title: Ritrattu di cuprendula
|
||||
@ -570,6 +582,10 @@ co:
|
||||
animations_and_accessibility: Animazione è accessibilità
|
||||
confirmation_dialogs: Pop-up di cunfirmazione
|
||||
discovery: Scuperta
|
||||
localization:
|
||||
body: Mastodon hè tradottu da una squadra di vuluntari.
|
||||
guide_link: https://fr.crowdin.com/project/mastodon
|
||||
guide_link_text: Tuttu u mondu pò participà.
|
||||
sensitive_content: Cuntinutu sensibile
|
||||
toot_layout: Urganizazione
|
||||
application_mailer:
|
||||
@ -708,7 +724,6 @@ co:
|
||||
blocks: Bluccate
|
||||
csv: CSV
|
||||
domain_blocks: Blucchime di duminiu
|
||||
follows: Seguitate
|
||||
lists: Liste
|
||||
mutes: Piattate
|
||||
storage: I vostri media
|
||||
@ -730,6 +745,7 @@ co:
|
||||
invalid_irreversible: A filtrazione irreversibile marchja solu per l'accolta è e nutificazione
|
||||
index:
|
||||
delete: Toglie
|
||||
empty: Ùn avete manc'un filtru.
|
||||
title: Filtri
|
||||
new:
|
||||
title: Aghjunghje un novu filtru
|
||||
@ -878,6 +894,10 @@ co:
|
||||
body: 'U vostru statutu hè statu spartutu da %{name}:'
|
||||
subject: "%{name} hà spartutu u vostru statutu"
|
||||
title: Nova spartera
|
||||
notifications:
|
||||
email_events: Avvenimenti da nutificà cù l'e-mail
|
||||
email_events_hint: 'Selezziunate l''avvenimenti per quelli vulete riceve nutificazione:'
|
||||
other_settings: Altri parametri di nutificazione
|
||||
number:
|
||||
human:
|
||||
decimal_units:
|
||||
@ -911,6 +931,8 @@ co:
|
||||
relationships:
|
||||
activity: Attività di u contu
|
||||
dormant: Inattivu
|
||||
followers: Abbunati
|
||||
following: Abbunamenti
|
||||
last_active: Ultima attività
|
||||
most_recent: Più ricente
|
||||
moved: Spiazzatu
|
||||
@ -1005,7 +1027,7 @@ co:
|
||||
relationships: Abbunamenti è abbunati
|
||||
two_factor_authentication: Identificazione à dui fattori
|
||||
spam_check:
|
||||
spam_detected: Quessu ghjè un rapportu automaticu. Un spam hè statu ditettatu.
|
||||
spam_detected: Quessu ghjè un riportu automaticu. Un spam hè statu ditettatu.
|
||||
statuses:
|
||||
attached:
|
||||
description: 'Aghjuntu: %{attached}'
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -11,6 +11,7 @@ cy:
|
||||
apps: Apiau symudol
|
||||
apps_platforms: Defnyddio Mastodon o iOS, Android a phlatfformau eraill
|
||||
browse_directory: Pori cyfeiriadur proffil a hidlo wrth diddordebau
|
||||
browse_local_posts: Pori ffrwd byw o byst cyhoeddus o'r gweinydd hyn
|
||||
browse_public_posts: Pori ffrwd byw o byst cyhoeddus ar Fastodon
|
||||
contact: Cyswllt
|
||||
contact_missing: Heb ei osod
|
||||
@ -93,6 +94,7 @@ cy:
|
||||
roles:
|
||||
admin: Gweinyddwr
|
||||
bot: Bot
|
||||
group: Grŵp
|
||||
moderator: Safonwr
|
||||
unavailable: Proffil ddim ar gael
|
||||
unfollow: Dad-ddilyn
|
||||
@ -213,10 +215,12 @@ cy:
|
||||
confirm_user: Cadarnhaodd %{name} gyfeiriad e-bost y defnyddiwr %{target}
|
||||
create_account_warning: Anfonwyd rhybudd i %{target} gan %{name}
|
||||
create_custom_emoji: Uwchlwythodd %{name} emoji newydd %{target}
|
||||
create_domain_allow: Gwynrestrodd %{name} y parth %{target}
|
||||
create_domain_block: Blociodd %{name} y parth %{target}
|
||||
create_email_domain_block: Cosbrestrwyd parth e-bost %{target} gan %{name}
|
||||
demote_user: Diraddiodd %{name} y defnyddiwr %{target}
|
||||
destroy_custom_emoji: Dinistriodd %{name} emoji %{target}
|
||||
destroy_domain_allow: Tynnodd %{name} parth %{target} o'r gwynrestr
|
||||
destroy_domain_block: Dadflociodd %{name} y parth %{target}
|
||||
destroy_email_domain_block: Gwynrestrodd %{name} parth e-bost %{target}
|
||||
destroy_status: Cafodd %{name} wared ar statws gan %{target}
|
||||
@ -414,10 +418,26 @@ cy:
|
||||
created_msg: Llwyddwyd i greu nodyn adroddiad!
|
||||
destroyed_msg: Llwyddwyd i ddileu nodyn adroddiad!
|
||||
reports:
|
||||
account:
|
||||
notes:
|
||||
few: "%{count} o nodiadau"
|
||||
many: "%{count} o nodiadau"
|
||||
one: "%{count} nodyn"
|
||||
other: "%{count} o nodiadau"
|
||||
two: "%{count} o nodiadau"
|
||||
zero: "%{count} nodyn"
|
||||
reports:
|
||||
few: "%{count} o adroddiadau"
|
||||
many: "%{count} o adroddiadau"
|
||||
one: "%{count} adroddiad"
|
||||
other: "%{count} o adroddiadau"
|
||||
two: "%{count} o adroddiadau"
|
||||
zero: "%{count} adroddiad"
|
||||
action_taken_by: Gwnaethpwyd hyn gan
|
||||
are_you_sure: Ydych chi'n sicr?
|
||||
assign_to_self: Aseinio i mi
|
||||
assigned: Arolygwr wedi'i aseinio
|
||||
by_target_domain: Parth cyfrif a adroddir
|
||||
comment:
|
||||
none: Dim
|
||||
created_at: Adroddwyd
|
||||
@ -463,6 +483,8 @@ cy:
|
||||
users: I ddefnyddwyr lleol mewngofnodadwy
|
||||
domain_blocks_rationale:
|
||||
title: Dangos rhesymwaith
|
||||
enable_bootstrap_timeline_accounts:
|
||||
title: Alluogi dilyn diofyn i ddefnyddwyr newydd
|
||||
hero:
|
||||
desc_html: Yn cael ei arddangos ar y dudadlen flaen. Awgrymir 600x100px oleia. Pan nad yw wedi ei osod, mae'n ymddangos fel mân-lun yr achos
|
||||
title: Delwedd arwr
|
||||
@ -591,6 +613,10 @@ cy:
|
||||
animations_and_accessibility: Animeiddiau ac hygyrchedd
|
||||
confirmation_dialogs: Deialog cadarnhau
|
||||
discovery: Darganfyddiad
|
||||
localization:
|
||||
body: Caiff Mastodon ei gyfieithu gan wirfoddolwyr.
|
||||
guide_link: https://crowdin.com/project/mastodon
|
||||
guide_link_text: Gall pawb gyfrannu.
|
||||
sensitive_content: Cynnwys sensitif
|
||||
toot_layout: Gosodiad tŵt
|
||||
application_mailer:
|
||||
@ -729,7 +755,6 @@ cy:
|
||||
blocks: Yr ydych yn blocio
|
||||
csv: CSV
|
||||
domain_blocks: Blociau parth
|
||||
follows: Yr ydych yn dilyn
|
||||
lists: Rhestrau
|
||||
mutes: Yr ydych yn tawelu
|
||||
storage: Storio cyfryngau
|
||||
@ -915,6 +940,10 @@ cy:
|
||||
body: 'Cafodd eich statws ei fŵstio gan %{name}:'
|
||||
subject: Bŵstiodd %{name} eich statws
|
||||
title: Hwb newydd
|
||||
notifications:
|
||||
email_events: Digwyddiadau ar gyfer hysbysiadau e-bost
|
||||
email_events_hint: 'Dewis digwyddiadau hoffech derbyn hysbysiadau ar eu cyfer:'
|
||||
other_settings: Gosodiadau hysbysiadau arall
|
||||
number:
|
||||
human:
|
||||
decimal_units:
|
||||
@ -948,6 +977,8 @@ cy:
|
||||
relationships:
|
||||
activity: Gweithgareddau cyfrif
|
||||
dormant: Segur
|
||||
followers: Dilynwyr
|
||||
following: Yn dilyn
|
||||
last_active: Gweithred ddiwethaf
|
||||
most_recent: Yn diweddaraf
|
||||
moved: Wedi symud
|
||||
|
@ -5,27 +5,44 @@ da:
|
||||
about_mastodon_html: Mastodon er et socialt netværk der er baseret på åbne web protokoller og frit, open-source source software. Der er decentraliseret ligesom e-mail tjenester.
|
||||
about_this: Om
|
||||
active_count_after: aktive
|
||||
active_footnote: Månedligt Aktive Brugere (MAU)
|
||||
administered_by: 'Administreret af:'
|
||||
api: API
|
||||
apps: Apps til mobilen
|
||||
apps_platforms: Brug Mastodon på iOS, Android og andre platformer
|
||||
browse_directory: Gennemse en profils indholdsfortegnelse og filtrer efter interesser
|
||||
browse_local_posts: Gennemse en live stream af offentlige indlæg fra denne server
|
||||
browse_public_posts: Gennemse en live stream af offentlige indlæg fra Mastodon
|
||||
contact: Kontakt
|
||||
contact_missing: Ikke sat
|
||||
contact_unavailable: Ikke tilgængeligt
|
||||
discover_users: Opdag brugere
|
||||
documentation: Dokumentation
|
||||
federation_hint_html: Med en konto på %{instance} har du har mulighed for at følge andre på en hvilken som helst Mastodon server.
|
||||
get_apps: Prøv en mobil app
|
||||
hosted_on: Mostodon hostet på %{domain}
|
||||
instance_actor_flash: |
|
||||
Denne konto er en virtuel aktør, der bruges til at repræsentere selve serveren og ikke nogen individuel bruger.
|
||||
Det bruges til Federation formål og bør ikke blokeres, medmindre du vil blokere hele Instance, i hvilket tilfælde du skal bruge en domæne blokering.
|
||||
learn_more: Lær mere
|
||||
privacy_policy: Privatlivspolitik
|
||||
see_whats_happening: Se hvad der sker
|
||||
server_stats: 'Server statstik:'
|
||||
source_code: Kildekode
|
||||
status_count_after:
|
||||
one: status
|
||||
other: statusser
|
||||
status_count_before: Som har skrevet
|
||||
tagline: Følg venner og find nye
|
||||
terms: Vilkår for service
|
||||
unavailable_content: Utilgængeligt indhold
|
||||
unavailable_content_description:
|
||||
domain: Server
|
||||
reason: Årsag
|
||||
rejecting_media: 'Medie filer fra disse servere vil ikke blive behandlet eller gemt, og ingen miniaturebilleder vil blive vist, som kræver tilgang til den originale fil:'
|
||||
silenced: 'Posteringer fra disse servere vil være skjulte i den offentlige tidslinje feed eller beskeder og ingen notifikationer vil blive genereret fra brugere du ikke følger:'
|
||||
suspended: 'Ingen date fra disse servere vil blive behandlet, gemt eller udvekslet, at interagere eller kommunikere med brugere fra disse servere er ikke muligt:'
|
||||
unavailable_content_html: Mastodon tillader dig generelt at se indhold og interagere med brugere fra enhver anden server i fediverset. Dette er undtagelser der er foretaget på netop denne server.
|
||||
user_count_after:
|
||||
one: bruger
|
||||
other: brugere
|
||||
@ -33,6 +50,7 @@ da:
|
||||
what_is_mastodon: Hvad er Mastodon?
|
||||
accounts:
|
||||
choices_html: "%{name}s valg:"
|
||||
featured_tags_hint: Du kan tilføje specifikke hashtags der vil blive vist her.
|
||||
follow: Følg
|
||||
followers:
|
||||
one: Følger
|
||||
@ -59,12 +77,14 @@ da:
|
||||
roles:
|
||||
admin: Administrator
|
||||
bot: Robot
|
||||
group: Gruppe
|
||||
moderator: Moderator
|
||||
unavailable: Profil utilgængelig
|
||||
unfollow: Følg ikke længere
|
||||
admin:
|
||||
account_actions:
|
||||
action: Udfør handling
|
||||
title: Udfør moderator handlinger på %{acct}
|
||||
account_moderation_notes:
|
||||
create: Læg en note
|
||||
created_msg: Moderator notat succesfuldt oprettet!
|
||||
@ -94,10 +114,13 @@ da:
|
||||
display_name: Visningsnavn
|
||||
domain: Domæne
|
||||
edit: Rediger
|
||||
email: Email
|
||||
email_status: Email status
|
||||
enable: Aktiver
|
||||
enabled: Aktiveret
|
||||
followers: Følgere
|
||||
follows: Følger
|
||||
header: Overskrift/billede
|
||||
inbox_url: Link til indbakke
|
||||
invited_by: Inviteret af
|
||||
ip: IP-adresse
|
||||
@ -120,7 +143,10 @@ da:
|
||||
moderation_notes: Moderator notater
|
||||
most_recent_activity: Seneste aktivitet
|
||||
most_recent_ip: Senest IP
|
||||
no_account_selected: Ingen konti blev ændret da ingen var valgt
|
||||
no_limits_imposed: Ingen ændringer gennemført
|
||||
not_subscribed: Ikke abonneret
|
||||
pending: Afventende anmeldelser
|
||||
perform_full_suspension: Udeluk
|
||||
promote: Forfrem
|
||||
protocol: Protokol
|
||||
@ -130,6 +156,7 @@ da:
|
||||
reject: Afvis
|
||||
reject_all: Afvis alle
|
||||
remove_avatar: Fjern profilbillede
|
||||
remove_header: Fjern overskrift/billede
|
||||
resend_confirmation:
|
||||
already_confirmed: Denne bruger er allerede blevet bekræftet
|
||||
send: Gensend bekræftelsesmail
|
||||
@ -154,6 +181,7 @@ da:
|
||||
statuses: Statusser
|
||||
subscribe: Abonner
|
||||
suspended: Udelukket
|
||||
time_in_queue: Venter i køen %{time}
|
||||
title: Konti
|
||||
unconfirmed_email: Ikke-bekræftet email
|
||||
undo_silenced: Fortryd dæmpning
|
||||
@ -161,6 +189,7 @@ da:
|
||||
unsubscribe: Abonner ikke længere
|
||||
username: Brugernavn
|
||||
warn: Advar
|
||||
web: Web
|
||||
whitelisted: Hvidlistet
|
||||
action_logs:
|
||||
actions:
|
||||
@ -173,6 +202,7 @@ da:
|
||||
create_domain_block: "%{name} blokerede domænet %{target}"
|
||||
create_email_domain_block: "%{name} sortlistede email domænet %{target}"
|
||||
demote_user: "%{name} degraderede %{target}"
|
||||
destroy_custom_emoji: "%{name} fjernede emoji %{target}"
|
||||
destroy_domain_allow: "%{name} fjernede godkendelsen af domænet %{target}"
|
||||
destroy_domain_block: "%{name} fjernede blokeringen af domænet %{target}"
|
||||
destroy_email_domain_block: "%{name} hvid-listede email domænet %{target}"
|
||||
@ -198,6 +228,7 @@ da:
|
||||
deleted_status: "(slettet status)"
|
||||
title: Revisionslog
|
||||
custom_emojis:
|
||||
assign_category: Vælg kategori
|
||||
by_domain: Domæne
|
||||
copied_msg: Succesfuldt oprettede en lokal kopi af humørikonet
|
||||
copy: Kopier
|
||||
@ -214,6 +245,7 @@ da:
|
||||
enabled: Aktiveret
|
||||
enabled_msg: Succesfuldt aktiverede det humørikon
|
||||
image_hint: PNG op til 50KB
|
||||
list: Listet
|
||||
listed: Listet
|
||||
new:
|
||||
title: Tilføj nyt brugerdefineret humørikon
|
||||
@ -221,11 +253,14 @@ da:
|
||||
shortcode: Kortkode
|
||||
shortcode_hint: Mindst 2 tegn, kun alfabetiske tegn og understreger
|
||||
title: Brugerdefinerede humørikoner
|
||||
uncategorized: Uden kategori
|
||||
unlist: Ulistet
|
||||
unlisted: Ikke listet
|
||||
update_failed_msg: Kunne ikke opdatere det humørikon
|
||||
updated_msg: Humørikon succesfuldt opdateret!
|
||||
upload: Læg op
|
||||
dashboard:
|
||||
authorized_fetch_mode: Sikker tilstand
|
||||
backlog: ophobede jobs
|
||||
config: Konfiguration
|
||||
feature_deletions: Konto sletninger
|
||||
@ -233,12 +268,17 @@ da:
|
||||
feature_profile_directory: Profilliste
|
||||
feature_registrations: Registreringer
|
||||
feature_relay: Føderations relæ
|
||||
feature_spam_check: Anti-spam
|
||||
feature_timeline_preview: Tidslinje eksempelvisning
|
||||
features: Funktioner
|
||||
hidden_service: Føderation med skjulte tjenester
|
||||
open_reports: åbne anmeldelser
|
||||
pending_tags: hastags der afventer gennemgang
|
||||
pending_users: brugere der afventer gennemgang
|
||||
recent_users: Seneste brugere
|
||||
search: Søg på fuld tekst
|
||||
single_user_mode: Enkelt bruger mode
|
||||
software: Software
|
||||
space: Brugt lagerplads
|
||||
title: Betjeningspanel
|
||||
total_users: samlede antal brugere
|
||||
@ -246,13 +286,18 @@ da:
|
||||
week_interactions: interaktioner denne uge
|
||||
week_users_active: aktive denne uge
|
||||
week_users_new: brugere denne uge
|
||||
whitelist_mode: Whitelist tilstand
|
||||
domain_allows:
|
||||
add_new: Whitelist domæne
|
||||
created_msg: Domænet er tilføjet whitelist
|
||||
destroyed_msg: Domænet er fjernet fra whitelist
|
||||
undo: Fjern fra hvidliste
|
||||
domain_blocks:
|
||||
add_new: Tilføj ny domain block
|
||||
created_msg: Domæne blokade bliver nu behandlet
|
||||
destroyed_msg: Domæne blokade er blevet annulleret
|
||||
domain: Domæne
|
||||
edit: Rediger domæne blokering
|
||||
new:
|
||||
create: Opret blokering
|
||||
hint: Domæne blokeringen vil ikke forhindre oprettelse af konto opslag i databasen, men vil retroaktivt og automatisk benytte specifikke moderator metoder på disse konti.
|
||||
@ -267,6 +312,8 @@ da:
|
||||
reject_media: Afvis medie filer
|
||||
reject_media_hint: Fjerner lokalt lagrede multimedie filer og nægter at hente nogen i fremtiden. Irrelevant for udelukkelser
|
||||
reject_reports: Afvis anmeldelser
|
||||
rejecting_media: afviser mediefiler
|
||||
rejecting_reports: afviser anmeldelser
|
||||
show:
|
||||
affected_accounts:
|
||||
one: En konto i databasen påvirket
|
||||
@ -277,6 +324,7 @@ da:
|
||||
title: Annuller domæne blokeringen for domænet %{domain}
|
||||
undo: Fortryd
|
||||
undo: Fortryd domain block
|
||||
view: Vis domæne blokering
|
||||
email_domain_blocks:
|
||||
add_new: Tilføj ny
|
||||
created_msg: Tilføjede succesfuldt email domænet til sortliste
|
||||
@ -292,6 +340,7 @@ da:
|
||||
title: "%{acct}'s følgere"
|
||||
instances:
|
||||
by_domain: Domæne
|
||||
delivery_available: Levering er tilgængelig
|
||||
moderation:
|
||||
all: Alle
|
||||
limited: Begrænset
|
||||
@ -370,6 +419,7 @@ da:
|
||||
domain_blocks:
|
||||
all: Til alle
|
||||
disabled: Til ingen
|
||||
title: Vis domæne blokeringer
|
||||
hero:
|
||||
desc_html: Vist på forsiden. Mindst 600x100px anbefales. Hvis ikke sat, vil dette falde tilbage til billedet fra serveren
|
||||
title: Billede af helt
|
||||
@ -448,8 +498,15 @@ da:
|
||||
body: "%{reporter} har anmeldt %{target}"
|
||||
body_remote: Nogen fra %{domain} har anmeldt %{target}
|
||||
subject: Ny anmeldelse for %{instance} (#%{id})
|
||||
aliases:
|
||||
add_new: Opret alias
|
||||
appearance:
|
||||
animations_and_accessibility: Animationer og tilgængelighed
|
||||
discovery: Opdagelse
|
||||
localization:
|
||||
body: Mastodon oversættes af frivillige.
|
||||
guide_link: https://da.crowdin.com/project/mastodon
|
||||
guide_link_text: Alle kan bidrage.
|
||||
sensitive_content: Følsomt indhold
|
||||
application_mailer:
|
||||
notification_preferences: Ændre email præferencer
|
||||
@ -525,6 +582,8 @@ da:
|
||||
directories:
|
||||
directory: Profilliste
|
||||
explore_mastodon: Uforsk %{title}
|
||||
domain_validator:
|
||||
invalid_domain: er ikke et gyldigt domænenavn
|
||||
errors:
|
||||
'400': The request you submitted was invalid or malformed.
|
||||
'403': Du har ikke tilladelse til at se denne side.
|
||||
@ -553,7 +612,7 @@ da:
|
||||
size: Størrelse
|
||||
blocks: Du blokerer
|
||||
csv: CSV
|
||||
follows: Du følger
|
||||
domain_blocks: Domæne blokeringer
|
||||
lists: Lister
|
||||
mutes: Du dæmper
|
||||
storage: Medie lager
|
||||
@ -694,6 +753,8 @@ da:
|
||||
public_timelines: Offentlige tidslinjer
|
||||
relationships:
|
||||
activity: Aktivitet for konto
|
||||
followers: Følgere
|
||||
following: Følger
|
||||
last_active: Sidst aktiv
|
||||
most_recent: Seneste
|
||||
moved: Flyttet
|
||||
@ -833,7 +894,10 @@ da:
|
||||
title: Udpluk af arkiv
|
||||
warning:
|
||||
title:
|
||||
disable: Konto frosset
|
||||
none: Advarsel
|
||||
silence: Konto begrænset
|
||||
suspend: Konto suspenderet
|
||||
welcome:
|
||||
edit_profile_action: Opsæt profil
|
||||
edit_profile_step: Du kan skræddersy din profil ved at uploade et profilbillede, overskrift, ændre dit visningsnavn og mere. Hvis du kunne tænke dig at gennemse nye følgere før de må følge dig, kan du låse din konto.
|
||||
@ -852,6 +916,7 @@ da:
|
||||
tips: Råd
|
||||
title: Velkommen ombord, %{name}!
|
||||
users:
|
||||
follow_limit_reached: Du kan ikke følge mere end %{limit} personer
|
||||
invalid_email: E-mail adressen er ugyldig
|
||||
invalid_otp_token: Ugyldig to-faktor kode
|
||||
otp_lost_help_html: Hvis du har mistet adgang til begge, kan du få kontakt via %{email}
|
||||
|
@ -78,6 +78,7 @@ de:
|
||||
roles:
|
||||
admin: Administrator
|
||||
bot: Bot
|
||||
group: Gruppe
|
||||
moderator: Moderator
|
||||
unavailable: Profil nicht verfügbar
|
||||
unfollow: Entfolgen
|
||||
@ -198,10 +199,12 @@ de:
|
||||
confirm_user: "%{name} hat die E-Mail-Adresse von %{target} bestätigt"
|
||||
create_account_warning: "%{name} hat eine Warnung an %{target} gesendet"
|
||||
create_custom_emoji: "%{name} hat neues Emoji %{target} hochgeladen"
|
||||
create_domain_allow: "%{name} hat die Domain %{target} gewhitelistet"
|
||||
create_domain_block: "%{name} hat die Domain %{target} blockiert"
|
||||
create_email_domain_block: "%{name} hat die E-Mail-Domain %{target} geblacklistet"
|
||||
demote_user: "%{name} stufte Benutzer_in %{target} herunter"
|
||||
destroy_custom_emoji: "%{name} zerstörte Emoji %{target}"
|
||||
destroy_domain_allow: "%{name} hat die Domain %{target} von der Whitelist entfernt"
|
||||
destroy_domain_block: "%{name} hat die Domain %{target} entblockt"
|
||||
destroy_email_domain_block: "%{name} hat die E-Mail-Domain %{target} gewhitelistet"
|
||||
destroy_status: "%{name} hat einen Beitrag von %{target} entfernt"
|
||||
@ -336,6 +339,7 @@ de:
|
||||
delete: Löschen
|
||||
destroyed_msg: E-Mail-Domain-Blockade erfolgreich gelöscht
|
||||
domain: Domain
|
||||
empty: Keine E-Mail-Domains sind momentan auf der Blacklist.
|
||||
new:
|
||||
create: Blockade erstellen
|
||||
title: Neue E-Mail-Domain-Blockade
|
||||
@ -391,10 +395,18 @@ de:
|
||||
created_msg: Meldungs-Kommentar erfolgreich erstellt!
|
||||
destroyed_msg: Meldungs-Kommentar erfolgreich gelöscht!
|
||||
reports:
|
||||
account:
|
||||
notes:
|
||||
one: "%{count} Notiz"
|
||||
other: "%{count} Notizen"
|
||||
reports:
|
||||
one: "%{count} Bericht"
|
||||
other: "%{count} Berichte"
|
||||
action_taken_by: Maßnahme ergriffen durch
|
||||
are_you_sure: Bist du dir sicher?
|
||||
assign_to_self: Mir zuweisen
|
||||
assigned: Zugewiesener Moderator
|
||||
by_target_domain: Domain des gemeldeten Kontos
|
||||
comment:
|
||||
none: Kein
|
||||
created_at: Gemeldet
|
||||
@ -440,6 +452,8 @@ de:
|
||||
users: Für angemeldete lokale Benutzer
|
||||
domain_blocks_rationale:
|
||||
title: Rationale anzeigen
|
||||
enable_bootstrap_timeline_accounts:
|
||||
title: Aktiviere die Option "Konten, denen Neu-Angemeldete automatisch folgen"
|
||||
hero:
|
||||
desc_html: Wird auf der Startseite angezeigt. Mindestens 600x100px sind empfohlen. Wenn es nicht gesetzt wurde, wird das Server-Thumbnail dafür verwendet
|
||||
title: Bild für Einstiegsseite
|
||||
@ -568,6 +582,10 @@ de:
|
||||
animations_and_accessibility: Animationen und Barrierefreiheit
|
||||
confirmation_dialogs: Bestätigungsfenster
|
||||
discovery: Entdecken
|
||||
localization:
|
||||
body: Mastodon wurde von Freiwilligen übersetzt.
|
||||
guide_link: https://de.crowdin.com/project/mastodon
|
||||
guide_link_text: Jeder kann etwas dazu beitragen.
|
||||
sensitive_content: Heikle Inhalte
|
||||
toot_layout: Beitragslayout
|
||||
application_mailer:
|
||||
@ -706,7 +724,6 @@ de:
|
||||
blocks: Du hast blockiert
|
||||
csv: CSV
|
||||
domain_blocks: Domainblockaden
|
||||
follows: Du folgst
|
||||
lists: Listen
|
||||
mutes: Du hast stummgeschaltet
|
||||
storage: Medienspeicher
|
||||
@ -728,6 +745,7 @@ de:
|
||||
invalid_irreversible: Unwiderrufliche Filterung funktioniert nur mit Heim- oder Benachrichtigungskontext
|
||||
index:
|
||||
delete: Löschen
|
||||
empty: Du hast keine Filter.
|
||||
title: Filter
|
||||
new:
|
||||
title: Neuen Filter hinzufügen
|
||||
@ -876,6 +894,10 @@ de:
|
||||
body: "%{name} hat deinen Beitrag geteilt:"
|
||||
subject: "%{name} hat deinen Beitrag geteilt"
|
||||
title: Dein Beitrag wurde geteilt
|
||||
notifications:
|
||||
email_events: Ereignisse für E-Mail-Benachrichtigungen
|
||||
email_events_hint: 'Wähle Ereignisse, für die du Benachrichtigungen erhalten möchtest:'
|
||||
other_settings: Weitere Benachrichtigungseinstellungen
|
||||
number:
|
||||
human:
|
||||
decimal_units:
|
||||
@ -909,6 +931,8 @@ de:
|
||||
relationships:
|
||||
activity: Kontoaktivität
|
||||
dormant: Inaktiv
|
||||
followers: Folgende
|
||||
following: Folgt
|
||||
last_active: Zuletzt aktiv
|
||||
most_recent: Neuste
|
||||
moved: Umgezogen
|
||||
|
@ -51,6 +51,9 @@ ar:
|
||||
two_factor_enabled:
|
||||
subject: 'ماستدون: تم تفعيل نظام المصادقة بخطوتين'
|
||||
title: إنّ 2FA نشِط
|
||||
two_factor_recovery_codes_changed:
|
||||
subject: 'ماستدون: تم إعادة توليد رموز استرجاع المصادقة بخطوتين'
|
||||
title: تم استبدال رموز استرجاع 2FA
|
||||
unlock_instructions:
|
||||
subject: 'ماستدون: تعليمات فك القفل'
|
||||
omniauth_callbacks:
|
||||
|
@ -1,21 +1,45 @@
|
||||
---
|
||||
ast:
|
||||
devise:
|
||||
confirmations:
|
||||
confirmed: La direición de corréu confirmóse con ésitu.
|
||||
send_instructions: Nunos minutos, vas recibir un corréu coles instrucciones pa cómo confirmar la direición de corréu. Comprueba la carpeta Puxarra si nun lu recibiesti, por favor.
|
||||
send_paranoid_instructions: Si la direición de corréu esiste na nuesa base de datos, nunos minutos vas recibir un corréu coles instrucciones pa cómo confirmala. Comprueba la carpeta Puxarra si nun lu recibiesti.
|
||||
failure:
|
||||
already_authenticated: Yá aniciesti sesión.
|
||||
inactive: Entá nun s'activó la cuenta.
|
||||
last_attempt: Tienes un intentu más enantes de bloquiar la cuenta.
|
||||
locked: La cuenta ta bloquiada.
|
||||
pending: La cuenta ta entá en revisión.
|
||||
timeout: La sesión caducó. Volvi aniciar sesión pa siguir, por favor.
|
||||
unauthenticated: Precises aniciar sesión o rexistrate enantes de siguir.
|
||||
mailer:
|
||||
confirmation_instructions:
|
||||
explanation: Creesti una cuenta en %{host} con esta direición de corréu. Tas a un clic d'activala. Si nun fuisti tu, inora esti corréu.
|
||||
explanation: Creesti una cuenta en %{host} con esta direición de corréu. Tas a un calcu d'activala. Si nun fuisti tu, inora esti corréu.
|
||||
email_changed:
|
||||
title: Direición de corréu nueva
|
||||
explanation: 'La direición de corréu de la cuenta camudó a:'
|
||||
subject: 'Mastodón: Camudó la direición de corréu'
|
||||
title: Direición nueva de corréu
|
||||
password_change:
|
||||
explanation: Camudó la contraseña de la cuenta.
|
||||
subject: 'Mastodon: Camudó la contraseña'
|
||||
reset_password_instructions:
|
||||
explanation: Solicitesti una contraseña nueva pa la cuenta.
|
||||
extra: Si nun solicitesti esto, inora esti corréu. La contraseña nun va camudar hasta que nun accedas al enllaz d'enriba y crees una nueva.
|
||||
subject: 'Mastodon: Instrucciones pa reafitar la contraseña'
|
||||
two_factor_disabled:
|
||||
subject: 'Mastodon: Desactivóse l''autenticación en dos pasos'
|
||||
two_factor_enabled:
|
||||
subject: 'Mastodon: Activóse l''autenticación en dos pasos'
|
||||
two_factor_recovery_codes_changed:
|
||||
subject: 'Mastodon: Rexeneráronse los códigos de l''autenticación en dos pasos'
|
||||
unlock_instructions:
|
||||
subject: 'Mastodon: Instrucciones de desbloquéu'
|
||||
passwords:
|
||||
send_instructions: Si la direición de corréu esiste na base de datos, nunos minutos vas recibir un enllaz pa recuperar la contraseña a esi corréu. Comprueba la carpeta Puxarra si nun lu recibiesti.
|
||||
send_paranoid_instructions: Si la direición de corréu esiste na base de datos, nunos minutos vas recibir un enllaz pa recuperar la contraseña a esi corréu. Comprueba la carpeta Puxarra si nun lu recibiesti.
|
||||
updated: La contraseña camudó con ésitu. Agora aniciesti sesión.
|
||||
updated_not_active: La contraseña camudó con ésitu.
|
||||
registrations:
|
||||
signed_up: "¡Afáyate! Rexistréstite con ésitu."
|
||||
signed_up_but_unconfirmed: Unvióse un mensaxe de confirmación a la direición de corréu. Sigui l'enllaz p'activar la cuenta. Comprueba la carpeta Puxarra si nun recibiesti esti corréu, por favor.
|
||||
@ -28,3 +52,6 @@ ast:
|
||||
messages:
|
||||
already_confirmed: yá se confirmó, volvi aniciar sesión
|
||||
not_found: nun s'alcontró
|
||||
not_saved:
|
||||
one: '1 fallu torgó que %{resource} se guardare:'
|
||||
other: "%{count} fallos torgó que %{resource} se guardaren:"
|
||||
|
@ -3,15 +3,15 @@ ca:
|
||||
devise:
|
||||
confirmations:
|
||||
confirmed: L'adreça de correu s'ha confirmat correctament.
|
||||
send_instructions: "En pocs minuts rebràs un correu electrònic amb instruccions sobre com confirmar l'adreça de correu. \nSi us plau verifica la carpeta de corrreu brossa si no has rebut aquest correu."
|
||||
send_instructions: "En pocs minuts rebràs un correu electrònic amb instruccions sobre com confirmar l'adreça de correu. \nSi us plau verifica la teva carpeta de correu brossa si no has rebut aquest correu."
|
||||
send_paranoid_instructions: |-
|
||||
Si l'adreça de correu electrònic existeix en la nostra base de dades, en pocs minuts rebràs un correu electrònic amb instruccions sobre com confirmar l'adreça de correu.
|
||||
Si us plau verifica la carpeta de corrreu brossa si no has rebut aquest correu.
|
||||
Si us plau verifica la teva carpeta de correu brossa si no has rebut aquest correu.
|
||||
failure:
|
||||
already_authenticated: Ja estàs registrat.
|
||||
inactive: El teu compte encara no s'ha activat.
|
||||
invalid: "%{authentication_keys} o contrasenya no són vàlids."
|
||||
last_attempt: Tens un intent més, abans que es bloqueji el compte.
|
||||
last_attempt: Tens un intent més, abans que es bloquegi el compte.
|
||||
locked: El compte s'ha bloquejat.
|
||||
not_found_in_database: "%{authentication_keys} o contrasenya no són vàlids."
|
||||
pending: El teu compte encara està en revisió.
|
||||
@ -25,7 +25,7 @@ ca:
|
||||
explanation: Has creat un compte a %{host} amb aquesta adreça de correu electrònic. Estàs a un sol clic de l'activació. Si no fos així, ignora aquest correu electrònic.
|
||||
explanation_when_pending: Has sol·licitat una invitació a %{host} amb aquesta adreça de correu electrònic. Un cop confirmis la teva adreça de correu electrònic revisarem la teva sol·licitud. No es pot iniciar la sessió fins llavors. Si la teva sol·licitud és rebutjada les teves dades s’eliminaran, de manera que no s’exigirà cap altra acció. Si no has estat tu qui ha fet aquest sol·licitud si us plau ignora aquest correu electrònic.
|
||||
extra_html: Si us plau consulta també <a href="%{terms_path}"> les regles del servidor</a> i <a href="%{policy_path}"> les nostres condicions de servei</a>.
|
||||
subject: 'Mastodon: Instruccions de confirmació %{instance}'
|
||||
subject: 'Mastodont: Instruccions de confirmació %{instance}'
|
||||
title: Verifica l'adreça de correu
|
||||
email_changed:
|
||||
explanation: 'L''adreça de correu del teu compte s''està canviant a:'
|
||||
@ -46,7 +46,7 @@ ca:
|
||||
action: Canviar contrasenya
|
||||
explanation: Has sol·licitat una contrasenya nova per al teu compte.
|
||||
extra: Si no ho has sol·licitat, ignora aquest correu electrònic. La teva contrasenya no canviarà fins que accedeixis a l'enllaç de dalt i creis un de nou.
|
||||
subject: 'Mastodon: Instruccions per a reiniciar contrassenya'
|
||||
subject: 'Mastodon: Instruccions per a reiniciar contrasenya'
|
||||
title: Contrasenya restablerta
|
||||
two_factor_disabled:
|
||||
explanation: L´autenticació de dos factors pel teu compte ha estat desactivat. L'inici de sessió és ara possible utilitzant només l'adreça de correu electrònic i la contrasenya.
|
||||
@ -61,16 +61,16 @@ ca:
|
||||
subject: 'Mastodon: codis de recuperació de Dos factors regenerats'
|
||||
title: 2FA codis de recuperació canviats
|
||||
unlock_instructions:
|
||||
subject: 'Mastodon: Instruccions per a desblocar'
|
||||
subject: 'Mastodon: Instruccions per a desbloquejar'
|
||||
omniauth_callbacks:
|
||||
failure: No podem autentificar-te desde %{kind} degut a "%{reason}".
|
||||
failure: No podem autentificar-te des de %{kind} degut a "%{reason}".
|
||||
success: Autentificat amb èxit des del compte %{kind}.
|
||||
passwords:
|
||||
no_token: No pots accedir a aquesta pàgina sense provenir des del correu de restabliment de la contrasenya. Si vens des del correu de restabliment de contrasenya, assegura't que estàs emprant l'adreça completa proporcionada.
|
||||
send_instructions: Rebràs un correu electrònic amb instruccions sobre com reiniciar la contrasenya en pocs minuts.
|
||||
send_instructions: Si el teu correu electrònic existeix en la nostra base de dades, rebràs en pocs minuts un enllaç de restabliment de contrasenya en l'adreça de correu. Si us plau verifica la teva carpeta de correu brossa if no rebut aquest correu.
|
||||
send_paranoid_instructions: Si el seu correu electrònic existeix en la nostra base de dades, rebràs un enllaç de restabliment de contrasenya en l'adreça de correu en pocs minuts.
|
||||
updated: La contrassenya s'ha canviat correctament. Ara ja estàs registrat.
|
||||
updated_not_active: La contrassenya s'ha canviat correctament.
|
||||
updated: La contrasenya s'ha canviat correctament. Ara ja estàs registrat.
|
||||
updated_not_active: La contrasenya s'ha canviat correctament.
|
||||
registrations:
|
||||
destroyed: Adéu! el compte s'ha cancel·lat amb èxit. Desitgem veure't de nou aviat.
|
||||
signed_up: Benvingut! T'has registrat amb èxit.
|
||||
@ -85,8 +85,8 @@ ca:
|
||||
signed_in: T'has registrat amb èxit.
|
||||
signed_out: Has tancat la sessió amb èxit.
|
||||
unlocks:
|
||||
send_instructions: Rebràs un correu electrònic amb instruccions sobre com desblocar el compte en pocs minuts.
|
||||
send_paranoid_instructions: Si el compte existeix, rebràs un correu electrònic amb instruccions sobre com desblocar-lo en pocs minuts.
|
||||
send_instructions: En pocs minuts rebràs un correu electrònic amb instruccions sobre com desbloquejar el teu compte. Si us plau verifica la teva carpeta de correu brossa si no has rebut aquest correu.
|
||||
send_paranoid_instructions: Si el compte existeix, rebràs en pocs minuts un correu electrònic amb instruccions sobre com desbloquejar-lo. Si us plau verifica la teva carpeta de correu brossa si no has rebut aquest correu.
|
||||
unlocked: El compte s'ha blocat correctament. Inicia sessió per a continuar.
|
||||
errors:
|
||||
messages:
|
||||
@ -94,7 +94,7 @@ ca:
|
||||
confirmation_period_expired: calia fer la confirmació dins de %{period}, torna a sol·licitar-la
|
||||
expired: ha expirat, demana'n una altra
|
||||
not_found: no s'ha trobat
|
||||
not_locked: no està blocada
|
||||
not_locked: no està bloquejada
|
||||
not_saved:
|
||||
one: '1 error ha impedit desar aquest %{resource}:'
|
||||
other: "%{count} errors hab impedit desar aquest %{resource}:"
|
||||
|
@ -3,10 +3,10 @@ cs:
|
||||
devise:
|
||||
confirmations:
|
||||
confirmed: Vaše e-mailová adresa byla úspěšně ověřena.
|
||||
send_instructions: Za několik minut obdržíte e-mail s instrukcemi pro potvrzení vašeho účtu. Pokud tento e-mail neobdržíte, prosím zkontrolujte si složku „spam“.
|
||||
send_paranoid_instructions: Pokud vaše e-mailová adresa existuje v naší databázi, obdržíte za několik minut e-mail s instrukcemi pro potvrzení vaší e-mailové adresy. Pokud tento e-mail neobdržíte, prosím zkontrolujte si složku „spam“.
|
||||
send_instructions: Za několik minut obdržíte e-mail s instrukcemi pro potvrzení vašeho účtu. Pokud tento e-mail neobdržíte, podívejte se prosím také do složky „spam“.
|
||||
send_paranoid_instructions: Pokud je vaše e-mailová adresa v naší databázi, obdržíte za několik minut e-mail s instrukcemi pro potvrzení vaší e-mailové adresy. Pokud tento e-mail neobdržíte, podívejte se prosím také do složky „spam“.
|
||||
failure:
|
||||
already_authenticated: Již jste přihlášen/a.
|
||||
already_authenticated: Již jste přihlášeni.
|
||||
inactive: Váš účet ještě není aktivován.
|
||||
invalid: Neplatné %{authentication_keys} nebo heslo.
|
||||
last_attempt: Máte ještě jeden pokus, než bude váš účet uzamčen.
|
||||
@ -14,46 +14,46 @@ cs:
|
||||
not_found_in_database: Neplatné %{authentication_keys} nebo heslo.
|
||||
pending: Váš účet je stále posuzován.
|
||||
timeout: Vaše relace vypršela. Pro pokračování se prosím přihlaste znovu.
|
||||
unauthenticated: Před pokračováním se musíte přihlásit nebo registrovat.
|
||||
unauthenticated: Před pokračováním se musíte přihlásit nebo zaregistrovat.
|
||||
unconfirmed: Před pokračováním musíte potvrdit svůj e-mail.
|
||||
mailer:
|
||||
confirmation_instructions:
|
||||
action: Potvrdit e-mailovou adresu
|
||||
action_with_app: Potvrdit a navrátit se do %{app}
|
||||
explanation: S touto e-mailovou adresou jste si vytvořil/a účet na %{host}. K jeho aktivaci vám zbývá jedno kliknutí. Pokud jste to nebyl/a vy, prosím ignorujte tento e-mail.
|
||||
explanation_when_pending: S touto e-mailovou adresou jste si vyžádal/a pozvánku na %{host}. Jakmile svou e-mailovou adresu potvrdíte, posoudíme váš poadavek. Můžete se přihlásit, změnit si své detaily či smazat svůj účet, ale do schválení účtu nemáte přístup ke většině funkcí. Pokud bude váš požadavek zamítnut, budou vaše data odstraněna, takže od vás nebude vyžadována žádná další akce. Pokud jste to nebyl/a vy, prosím ignorujte tento e-mail.
|
||||
extra_html: Prosím podívejte se také na <a href="%{terms_path}">pravidla tohoto serveru</a> a <a href="%{policy_path}">naše podmínky používání</a>.
|
||||
subject: 'Mastodon: Potvrzovací instrukce pro %{instance}'
|
||||
action_with_app: Potvrdit a vrátit se do %{app}
|
||||
explanation: S touto e-mailovou adresou jste si již účet na serveru %{host} vytvořili. K jeho aktivaci vám zbývá jedno kliknutí. Pokud jste to nebyli vy, považujte tento e-mail za bezpředmětný.
|
||||
explanation_when_pending: S touto e-mailovou adresou jste si již pozvánku na server %{host} vyžádali. Jakmile svou e-mailovou adresu potvrdíte, vaši žádost posoudíme. Můžete se přihlásit, změnit podrobnosti svého účtu nebo ho smazat, ale do schválení účtu nebudete mít k většině funkcí přístup. Pokud bude vaše žádost zamítnuta, vaše data budou odstraněna, a nebude od vás vyžadována žádná další akce. Pokud jste to nebyli vy, považujte tento e-mail za bezpředmětný.
|
||||
extra_html: Přečtěte si prosím také <a href="%{terms_path}">pravidla tohoto serveru</a> a <a href="%{policy_path}">naše podmínky používání</a>.
|
||||
subject: 'Mastodon: Potvrzení účtu na serveru %{instance}'
|
||||
title: Potvrďte e-mailovou adresu
|
||||
email_changed:
|
||||
explanation: 'E-mailová adresa vašeho účtu byla změněna na:'
|
||||
extra: Pokud jste si e-mail nezměnil/a, je pravděpodobné, že někdo jiný získal přístup k vašemu účtu. Prosím změňte si okamžitě heslo, nebo, pokud se nemůžete na účet přihlásit, kontaktujte administrátora serveru.
|
||||
subject: 'Mastodon: E-mail byl změněn'
|
||||
extra: Pokud jste si e-mailovou adresu neměnili, je pravděpodobné, že někdo jiný získal přístup k vašemu účtu. Změňte si prosím okamžitě heslo, nebo, pokud se nemůžete na účet přihlásit, kontaktujte administrátora serveru.
|
||||
subject: 'Mastodon: E-mailová adresa změněna'
|
||||
title: Nová e-mailová adresa
|
||||
password_change:
|
||||
explanation: Heslo k vašemu účtu bylo změněno.
|
||||
extra: Pokud jste si heslo nezměnil/a, je pravděpodobné, že někdo jiný získal přístup k vašemu účtu. Prosím změňte si okamžitě heslo, nebo, pokud se nemůžete na účet přihlásit, kontaktujte administrátora serveru.
|
||||
extra: Pokud jste si heslo neměnili, je pravděpodobné, že někdo jiný získal přístup k vašemu účtu. Změňte si prosím okamžitě heslo, nebo, pokud se nemůžete na účet přihlásit, kontaktujte administrátora serveru.
|
||||
subject: 'Mastodon: Heslo bylo změněno'
|
||||
title: Heslo bylo změněno
|
||||
reconfirmation_instructions:
|
||||
explanation: Potvrďte novou adresu pro změnu e-mailu.
|
||||
extra: Pokud jste tuto změnu nevyžádal/a vy, prosím ignorujte tento e-mail. E-mailová adresa nebude změněna, dokud nepřejdete na výše uvedenou adresu.
|
||||
extra: Pokud jste si tuto změnu nevyžádali vy, považujte tento e-mail za bezpředmětný. Pokud výše uvedenou adresu nenavštívíte, e-mailová adresa změněna nebude.
|
||||
subject: 'Mastodon: Potvrďte e-mail pro %{instance}'
|
||||
title: Ověřit e-mailovou adresu
|
||||
reset_password_instructions:
|
||||
action: Změnit heslo
|
||||
explanation: Vyžádal/a jste si pro svůj účet nové heslo.
|
||||
extra: Pokud jste tohle nevyžádal/a, prosím ignorujte tento e-mail. Vaše heslo nebude změněno, dokud nepřejdete na výše uvedenou adresu a nevytvoříte si nové.
|
||||
explanation: Pro svůj účet jste si vyžádali nové heslo.
|
||||
extra: Pokud jste si tuto změnu nevyžádali vy, považujte tento e-mail za bezpředmětný. Pokud výše uvedenou adresu nenavštívíte, vaše heslo změněno nebude.
|
||||
subject: 'Mastodon: Instrukce pro obnovení hesla'
|
||||
title: Obnovení hesla
|
||||
two_factor_disabled:
|
||||
explanation: Dvoufázové ověřování bylo pr váš účet zakázáno. Přihlašování je nyní možné pouze pomocí e-mailové adresy a hesla.
|
||||
subject: 'Mastodon: Dvoufázové ověřování zakázáno'
|
||||
title: 2FA zakázáno
|
||||
explanation: Dvoufázové ověřování bylo pro váš účet vypnuto. Pro přihlášení je nyní stačí pouze e-mailová adresa a heslo.
|
||||
subject: 'Mastodon: Dvoufázové ověřování vypnuto'
|
||||
title: 2FA vypnuto
|
||||
two_factor_enabled:
|
||||
explanation: Dvoufázové ověřování bylo pr váš účet povoleno. Pro přihlášení bude vyžadován token vygenerovaný spárovanou TOTP aplikací.
|
||||
subject: 'Mastodon: Dvoufázové ověřování povoleno'
|
||||
title: 2FA povoleno
|
||||
explanation: Dvoufázové ověřování bylo pro váš účet zapnuto. Pro přihlášení bude vyžadován token vygenerovaný spárovanou TOTP aplikací.
|
||||
subject: 'Mastodon: Dvoufázové ověřování zapnuto'
|
||||
title: 2FA zapnuto
|
||||
two_factor_recovery_codes_changed:
|
||||
explanation: Předchozí záložní kódy byly zrušeny a byly vygenerovány nové.
|
||||
subject: 'Mastodon: Dvoufázové záložní kódy znovu vygenerovány'
|
||||
@ -64,37 +64,37 @@ cs:
|
||||
failure: Nelze vás ověřit z %{kind}, protože „%{reason}“.
|
||||
success: Úspěšně ověřeno z účtu %{kind}.
|
||||
passwords:
|
||||
no_token: Tuto stránku nemůžete navštívit, pokud nepřicházíte z e-mailu pro obnovení hesla. Pokud z něj přicházíte, ujistěte se, že jste použil/a celé URL z e-mailu.
|
||||
send_instructions: Pokud vaše e-mailová adresa existuje v naší databázi, obdržíte za několik minut ve vašem e-mailu odkaz pro obnovení hesla. Pokud tento e-mail neobdržíte, prosím zkontrolujte si složku „spam“.
|
||||
send_paranoid_instructions: Pokud vaše e-mailová adresa existuje v naší databázi, obdržíte za několik minut ve vašem e-mailu odkaz pro obnovení hesla. Pokud tento e-mail neobdržíte, prosím zkontrolujte si složku „spam“.
|
||||
updated: Vaše heslo bylo úspěšně změněno. Nyní jste přihlášen/a.
|
||||
no_token: Tuto stránku nemůžete navštívit, pokud nepřicházíte z e-mailu pro obnovení hesla. Pokud z něj přicházíte, ujistěte se, že jste použili celou URL adresu z e-mailu.
|
||||
send_instructions: Pokud je vaše e-mailová adresa v naší databázi, obdržíte za několik minut e-mail s odkazem pro obnovení vašeho hesla. Pokud tento e-mail neobdržíte, podívejte se prosím také do složky „spam“.
|
||||
send_paranoid_instructions: Pokud je vaše e-mailová adresa v naší databázi, obdržíte za několik minut e-mail s odkazem pro obnovení vašeho hesla. Pokud tento e-mail neobdržíte, podívejte se prosím také do složky „spam“.
|
||||
updated: Vaše heslo bylo úspěšně změněno. Nyní jste přihlášeni.
|
||||
updated_not_active: Vaše heslo bylo úspěšně změněno.
|
||||
registrations:
|
||||
destroyed: Sbohem! Váš účet byl úspěšně zrušen. Doufáme, že vás opět brzy uvidíme.
|
||||
signed_up: Vítejte! Registroval/a jste se úspěšně.
|
||||
signed_up_but_inactive: Registroval/a jste se úspěšně. Nemohli jsme vás však přihlásit, protože váš účet ještě není aktivován.
|
||||
signed_up_but_locked: Registroval/a jste se úspěšně. Nemohli jsme vás však přihlásit, protože váš účet je uzamčen.
|
||||
signed_up_but_pending: Na vaši e-mailovou adresu byla poslána zpráva s potvrzovacím odkazem. Poté, co kliknete na odkaz, posoudíme váš požadavek. Pokud bude schválen, budete informován/a.
|
||||
signed_up_but_unconfirmed: Na vaši e-mailovou adresu byla poslána zpráva s potvrzovacím odkazem. Pro aktivaci účtu přejděte na danou adresu. Pokud jste tento e-mail neobdržel/a, prosím zkontrolujte si složku spam.
|
||||
update_needs_confirmation: Váš účet byl úspěšně aktualizován, ale je potřeba ověřit vaši novou e-mailovou adresu. Pokud tento e-mail neobdržíte, prosím zkontrolujte si složku „spam“.
|
||||
signed_up: Vítejte! Vaše registrace proběhla úspěšně.
|
||||
signed_up_but_inactive: Vaše registrace proběhla úspěšně. Nemohli jsme vás však přihlásit, protože váš účet ještě není aktivován.
|
||||
signed_up_but_locked: Vaše registrace proběhla úspěšně. Nemohli jsme vás však přihlásit, protože váš účet je uzamčen.
|
||||
signed_up_but_pending: Na vaši e-mailovou adresu byla poslána zpráva s odkazem pro potvrzení. Poté, co na odkaz kliknete, vaši žádost posoudíme. Pokud bude schválena, budeme vás informovat.
|
||||
signed_up_but_unconfirmed: Na vaši e-mailovou adresu byla poslána zpráva s odkazem pro potvrzení. Pro aktivaci vašeho účtu prosím klepněte na v něm uvedený odkaz. Pokud tento e-mail neobdržíte, podívejte se prosím také do složky „spam“.
|
||||
update_needs_confirmation: Váš účet byl úspěšně aktualizován, ale je potřeba ověřit vaši novou e-mailovou adresu. Pokud tento e-mail neobdržíte, podívejte se prosím také do složky „spam“.
|
||||
updated: Váš účet byl úspěšně aktualizován.
|
||||
sessions:
|
||||
already_signed_out: Odhlášení proběhlo úspěšně.
|
||||
signed_in: Přihlášení proběhlo úspěšně.
|
||||
signed_out: Odhlášení proběhlo úspěšně.
|
||||
unlocks:
|
||||
send_instructions: Za několik minut obdržíte e-mail s instrukcemi pro odemčení vašeho účtu. Pokud tento e-mail neobdržíte, prosím zkontrolujte si složku „spam“.
|
||||
send_paranoid_instructions: Pokud váš účet existuje, obdržíte za několik minut e-mail s instrukcemi pro odemčení vašeho účtu. Pokud tento e-mail neobdržíte, prosím zkontrolujte si složku „spam“.
|
||||
send_instructions: Za několik minut obdržíte e-mail s instrukcemi pro odemčení vašeho účtu. Pokud tento e-mail neobdržíte, podívejte se prosím také do složky „spam“.
|
||||
send_paranoid_instructions: Pokud váš účet existuje, obdržíte za několik minut e-mail s instrukcemi pro odemčení vašeho účtu. Pokud tento e-mail neobdržíte, podívejte se prosím také do složky „spam“.
|
||||
unlocked: Váš účet byl úspěšně odemčen. Pro pokračování se prosím přihlaste.
|
||||
errors:
|
||||
messages:
|
||||
already_confirmed: byl již potvrzen, prosím zkuste se přihlásit
|
||||
confirmation_period_expired: musí být potvrzen do %{period}, prosím vyžádejte si nový
|
||||
expired: vypršel, prosím vyžádejte si nový
|
||||
already_confirmed: byl již potvrzen, zkuste se prosím přihlásit
|
||||
confirmation_period_expired: musí být potvrzen do %{period}, vyžádejte si prosím nový
|
||||
expired: vypršel, vyžádejte si prosím nový
|
||||
not_found: nenalezen
|
||||
not_locked: nebyl uzamčen
|
||||
not_saved:
|
||||
few: "%{count} chyby zabránily uložení tohoto %{resource}:"
|
||||
many: "%{count} chyb zabránilo uložení tohoto %{resource}:"
|
||||
one: '1 chyba zabránila uložení tohoto %{resource}:'
|
||||
one: 'Jedna chyba zabránila uložení tohoto %{resource}:'
|
||||
other: "%{count} chyb zabránilo uložení tohoto %{resource}:"
|
||||
|
@ -8,8 +8,8 @@ da:
|
||||
failure:
|
||||
already_authenticated: Du er allerede logget ind.
|
||||
inactive: Din konto er endnu ikke aktiveret.
|
||||
invalid: Ugyldig %{authentication_keys} eller ugyldigt kodeord.
|
||||
last_attempt: Du har et forsøg tilbage før din konto låses.
|
||||
invalid: Ugyldig %{authentication_keys} eller adgangskode.
|
||||
last_attempt: Du har ét forsøg mere, før din konto bliver låst.
|
||||
locked: Din konto er låst.
|
||||
not_found_in_database: Ugyldig %{authentication_keys} eller ugyldigt kodeord.
|
||||
pending: Din konto er stadig under bedømmelse.
|
||||
@ -47,9 +47,17 @@ da:
|
||||
subject: 'Mastodon: Instrukser for nulstilling af adgangskode'
|
||||
title: Kodeordet er blevet nulstillet
|
||||
two_factor_disabled:
|
||||
explanation: To-trins godkendelse for din konto er blevet deaktiveret. Det nu kun muligt at logge ind med email og kodeord.
|
||||
subject: 'Mastodon: To-trins godkendelse er deaktiveret'
|
||||
title: 2FA deaktiveret
|
||||
two_factor_enabled:
|
||||
explanation: To-trins godkendelse er blevet aktiveret for din konto. En token fra den parrede TOTP app vil være påkrævet for at logge ind.
|
||||
subject: 'Mastodon: To-trins godkendelse er nu aktiveret'
|
||||
title: 2FA aktiveret
|
||||
two_factor_recovery_codes_changed:
|
||||
explanation: De tidligere gendannelseskoder er ugyldige og nye genereret.
|
||||
subject: 'Mastodan: To-trins gendannelseskoder er fornyet'
|
||||
title: 2FA gendannelseskoder er ændret
|
||||
unlock_instructions:
|
||||
subject: 'Mastodon: Instruktioner for oplåsning'
|
||||
omniauth_callbacks:
|
||||
|
@ -20,7 +20,7 @@ de:
|
||||
confirmation_instructions:
|
||||
action: E-Mail-Adresse verifizieren
|
||||
action_with_app: Bestätigen und zu %{app} zurückkehren
|
||||
explanation: Du hast einen Account auf %{host} mit dieser E-Mail-Adresse erstellt. Du bist nun einen Klick entfernt vor der Aktivierung. Wenn du das nicht warst, kannst du diese E-Mail ignorieren.
|
||||
explanation: Du hast einen Account auf %{host} mit dieser E-Mail-Adresse erstellt. Du bist nur noch einen Klick weit entfernt von der Aktivierung. Wenn du das nicht warst, kannst du diese E-Mail ignorieren.
|
||||
explanation_when_pending: Du hast dich für eine Einladung bei %{host} mit dieser E-Mailadresse beworben. Sobald du deine E-Mailadresse bestätigst werden wir deine Anfrage überprüfen. Du kannst dich in dieser Zeit nicht anmelden. Wenn deine Anfrage abgelehnt wird, werden deine Daten entfernt, also wird keine weitere Handlung benötigt. Wenn du das nicht warst kannst du diese E-Mail ignorieren.
|
||||
extra_html: Bitte lies auch die <a href="%{terms_path}">Regeln des Servers</a> und <a href="%{policy_path}">unsere Nutzungsbedingungen</a>.
|
||||
subject: 'Mastodon: Bestätigung deines Kontos bei %{instance}'
|
||||
@ -37,7 +37,7 @@ de:
|
||||
title: Passwort geändert
|
||||
reconfirmation_instructions:
|
||||
explanation: Bestätige deine neue E-Mail-Adresse, um sie zu ändern.
|
||||
extra: Wenn diese Änderung nicht von dir angestoßen wurde, dann solltest du diese E-Mail ignorieren. Die E-Mail-Adresse für deinen Mastodon-Account wird sich nicht ändern, bis du den obigen Link anklickst.
|
||||
extra: Wenn diese Änderung nicht von dir ausgeführt wurde, dann solltest du diese E-Mail ignorieren. Die E-Mail-Adresse für deinen Mastodon-Account wird sich nicht ändern, bis du den obigen Link anklickst.
|
||||
subject: 'Mastodon: Bestätige E-Mail-Adresse für %{instance}'
|
||||
title: Verifiziere E-Mail-Adresse
|
||||
reset_password_instructions:
|
||||
|
@ -23,43 +23,43 @@ es:
|
||||
explanation: Has creado una cuenta en %{host} con esta dirección de correo electrónico. Estas a un clic de activarla. Si no fue usted, por favor ignore este correo electrónico.
|
||||
explanation_when_pending: Usted ha solicitado una invitación a %{host} con esta dirección de correo electrónico. Una vez que confirme su dirección de correo electrónico, revisaremos su aplicación. No puede iniciar sesión hasta que su aplicación sea revisada. Si su solicitud está rechazada, sus datos serán eliminados, así que no será necesaria ninguna acción adicional por ti. Si no fuera usted, por favor ignore este correo electrónico.
|
||||
extra_html: Por favor revise <a href="%{terms_path}">las reglas de la instancia</a> y <a href="%{policy_path}">nuestros términos de servicio</a>.
|
||||
subject: 'Mastodon: Instrucciones de confirmación para %{instance}'
|
||||
subject: 'Mastodonte: Instrucciones de confirmación para %{instance}'
|
||||
title: Verificar dirección de correo electrónico
|
||||
email_changed:
|
||||
explanation: 'El correo electrónico para su cuenta esta siendo cambiada a:'
|
||||
extra: Si usted no ha cambiado su correo electrónico, es probable que alguien haya conseguido acceso a su cuenta. Por favor cambie su contraseña inmediatamente o contacte al administrador de la instancia si usted no puede iniciar sesión.
|
||||
subject: 'Mastodon: Correo electrónico cambiado'
|
||||
subject: 'Mastodonte: Correo electrónico cambiado'
|
||||
title: Nueva dirección de correo electrónico
|
||||
password_change:
|
||||
explanation: La contraseña de su cuenta a sido cambiada.
|
||||
extra: Si usted no a cambiado su contraseña. es probable que alguien a conseguido acceso a su cuenta. Por favor cambie su contraseña inmediatamente o contacte a el administrador de la instancia si usted esta bloqueado de su cuenta.
|
||||
subject: 'Mastodon: Contraseña cambiada'
|
||||
subject: 'Mastodonte: Contraseña cambiada'
|
||||
title: Contraseña cambiada
|
||||
reconfirmation_instructions:
|
||||
explanation: Confirme la nueva dirección para cambiar su coreo electrónico.
|
||||
extra: Si no iniciaste este cambio, por favor ignora este correo. Esta dirección de correo para la cuenta de Mastodon no cambiará hasta que accedas al vinculo arriba.
|
||||
subject: 'Mastodon: Confirme correo electrónico para %{instance}'
|
||||
extra: Si no iniciaste este cambio, por favor ignora este correo. Esta dirección de correo para la cuenta de Mastodonte no cambiará hasta que accedas al vinculo arriba.
|
||||
subject: 'Mastodonte: Confirme correo electrónico para %{instance}'
|
||||
title: Verifique dirección de correo electrónico
|
||||
reset_password_instructions:
|
||||
action: Cambiar contraseña
|
||||
explanation: Solicitaste una nueva contraseña para tu cuenta.
|
||||
extra: Si no solicitaste esto, por favor ignora este correo. Tu contraseña no cambiará hasta que tu accedas al vinculo arriba y crees una nueva.
|
||||
subject: 'Mastodon: Instrucciones para reiniciar contraseña'
|
||||
subject: 'Mastodonte: Instrucciones para reiniciar contraseña'
|
||||
title: Reiniciar contraseña
|
||||
two_factor_disabled:
|
||||
explanation: La autenticación de dos factores para tu cuenta ha sido deshabilitada. Ahora puedes conectarte solamente usando la dirección de correo electrónico y la contraseña.
|
||||
subject: 'Mastodon: La autenticación de dos factores está deshabilitada'
|
||||
subject: 'Mastodonte: La autenticación de dos factores está deshabilitada'
|
||||
title: 2FA desactivada
|
||||
two_factor_enabled:
|
||||
explanation: La autenticación de dos factores para tu cuenta ha sido habilitada. Se requiere un token generado por la aplicación TOTP emparejada para ingresar.
|
||||
subject: 'Mastodon: La autenticación de dos factores está habilitada'
|
||||
subject: 'Mastodonte: La autenticación de dos factores está habilitada'
|
||||
title: 2FA activada
|
||||
two_factor_recovery_codes_changed:
|
||||
explanation: Los códigos de recuperación previos han sido invalidados y se generaron códigos nuevos.
|
||||
subject: 'Mastodon: Los códigos de recuperación de dos factores fueron regenerados'
|
||||
subject: 'Mastodonte: Los códigos de recuperación de dos factores fueron regenerados'
|
||||
title: Códigos de recuperación 2FA cambiados
|
||||
unlock_instructions:
|
||||
subject: 'Mastodon: Instrucciones para desbloquear'
|
||||
subject: 'Mastodonte: Instrucciones para desbloquear'
|
||||
omniauth_callbacks:
|
||||
failure: No podemos autentificarle desde %{kind} debido a "%{reason}".
|
||||
success: Autentificado con éxito desde la cuenta %{kind} .
|
||||
|
@ -2,97 +2,97 @@
|
||||
gl:
|
||||
devise:
|
||||
confirmations:
|
||||
confirmed: O seu enderezo de email foi confirmado con éxito.
|
||||
send_instructions: Nuns minutos recibirá un correo electrónico con instruccións sobre como confirmar o seu enderezo de correo. Comprobe por favor o cartafol de spam se non recibe este correo.
|
||||
send_paranoid_instructions: Si o seu enderezo existe na nosa base de datos, recibirá nuns minutos un correo con instruccións sobre como confirmar o enderezo de correo. Por favor comprobe o cartafol de spam si non recibe este correo.
|
||||
confirmed: O teu enderezo de email foi confirmado.
|
||||
send_instructions: Vas recibir un email coas instrucións para confirmar o teu enderezo de email dentro dalgúns minutos. Por favor, comproba o cartafol de spam se non recibiches o correo.
|
||||
send_paranoid_instructions: Se o teu enderezo de email xa existira na nosa base de datos, vas recibir un correo coas instrucións de confirmación dentro dalgúns minutos. Por favor, comproba o cartafol de spam se non recibiches o correo.
|
||||
failure:
|
||||
already_authenticated: Xa está conectada.
|
||||
inactive: A súa conta aínda non foi activada.
|
||||
invalid: Contrasinal ou %{authentication_keys} non válidos.
|
||||
last_attempt: Quédalle un intento antes de que a conta sexa bloqueada.
|
||||
locked: A súa conta foi bloqueada.
|
||||
not_found_in_database: Contrasinal ou %{authentication_keys} non válidos.
|
||||
pending: A súa conta está en proceso de revisión.
|
||||
timeout: Caducou a sesión. Por favor conéctese de novo para seguir.
|
||||
unauthenticated: Precisa rexistrarse ou conectarse para continuar.
|
||||
unconfirmed: Debe confirmar o seu enderezo de correo antes de continuar.
|
||||
already_authenticated: Xa estás rexistrado.
|
||||
inactive: A túa conta aínda non está activada.
|
||||
invalid: "%{authentication_keys} ou contrasinal non validos."
|
||||
last_attempt: Tes máis dun intento antes de que a túa conta fique bloqueada.
|
||||
locked: A túa conta está bloqueada.
|
||||
not_found_in_database: "%{authentication_keys} ou contrasinal non válidos."
|
||||
pending: A túa conta aínda está baixo revisión.
|
||||
timeout: A túa sesión expirou. Por favor, entra de novo para continuares.
|
||||
unauthenticated: Precisas de entrar na túa conta ou rexistrarte antes de continuar.
|
||||
unconfirmed: Tes que confirmar o teu enderezo de email antes de continuar.
|
||||
mailer:
|
||||
confirmation_instructions:
|
||||
action: Validar enderezo de correo-e
|
||||
action: Verificar o enderezo de email
|
||||
action_with_app: Confirmar e voltar a %{app}
|
||||
explanation: Creou unha conta en %{host} con este enderezo de correo. Está a punto de activalo, si non foi vostede quen fixo a petición, por favor ignore este correo.
|
||||
explanation_when_pending: Vostede solicitou un convite para %{host} con este enderezo de correo. Unha vez confirme o enderezo de correo revisaremos a solicitude. Non pode conectarse ata entón. Si a solicitude fose rexeitada, os seus datos eliminaranse, así que non precisaría facer nada máis. Se non fixo vostede unha solicitude por favor ignore este correo.
|
||||
extra_html: Por favor, lea tamén <a href="%{terms_path}">as normas do sevidor</a> e <a href="%{policy_path}">os termos do servizo</a>.
|
||||
subject: 'Mastodon: Instruccións de confirmación para %{instance}'
|
||||
title: Verificar enderezo de correo-e
|
||||
explanation: Creaches unha conta en %{host} con este enderezo de email. Estás a un clic de activala. Se non foches ti o que fixeches este rexisto, por favor ignora esta mensaxe.
|
||||
explanation_when_pending: Solicitaches un convite para %{host} com este enderezo de email. Logo de que confirmes o teu enderezo de email, imos revisar a túa inscrición. Podes iniciar sesión para mudar os teus datos ou eliminar a túa conta, mais non poderás aceder á meirande parte das funcións até que a túa conta sexa aprobada. Se a túa inscrición for rexeitada, os teus datos serán eliminados, polo que non será necesaria calquera acción adicional da túa parte. Se non solicitaches este convite, por favor, ignora este correo.
|
||||
extra_html: Por favor, le <a href="%{terms_path}">as regras do servidor</a> e os <a href="%{policy_path}">nosos termos do servizo</a>.
|
||||
subject: 'Mastodon: Instrucións de confirmación para %{instance}'
|
||||
title: Verificar o enderezo de email
|
||||
email_changed:
|
||||
explanation: 'O seu enderezo de correo para esta conta foi cambiado a:'
|
||||
extra: Se non fixo a petición de cambio de correo-e é probable que alguén obtivese acceso a súa conta. Por favor, cambie o contrasinal inmediatamente ou contacte coa administración do servidor se non ten acceso a súa conta.
|
||||
subject: 'Mastodon: email cambiado'
|
||||
title: Novo enderezo de correo
|
||||
explanation: 'O email asociado á túa conta será mudado a:'
|
||||
extra: Se non mudaches o teu email é posíbel que alguén teña conseguido acceder á túa conta. Por favor muda o teu contrasinal de xeito imediato ou entra en contacto cun administrador do servidor se ficaste sen acceso á túa conta.
|
||||
subject: 'Mastodon: Email mudado'
|
||||
title: Novo enderezo de email
|
||||
password_change:
|
||||
explanation: Cambiouse o contrasinal da súa conta.
|
||||
extra: Se non cambiou o contrasinal, é probable que alguén obtivese acceso a súa conta. Por favor cambie o contrasinal inmediatamente ou contacte coa administración do servidor se non ten acceso a súa conta.
|
||||
subject: 'Mastodon: contrasinal cambiado'
|
||||
title: Contrainal cambiado
|
||||
explanation: O contrasinal da túa conta foi mudado.
|
||||
extra: Se non mudaches o teu contrasinal, é posíbel que alguén teña conseguido acceder á túa conta. Por favor muda o teu contrasinal de xeito imediato ou entra en contato cun administrador do servidor se ficaste sen acesso á túa conta.
|
||||
subject: 'Mastodon: Contrasinal mudado'
|
||||
title: Contrainal mudado
|
||||
reconfirmation_instructions:
|
||||
explanation: Confirme o novo enderezo para cambiar o correo-e.
|
||||
extra: Si vostede non fixo esta petición, ignore este correo por favor. Este enderezo de correo-e para a conta Mastodon non cambiará ate que acceda a ligazón superior.
|
||||
subject: 'Mastodon: Confirme email para %{instance}'
|
||||
title: Verificación do enderezo de correo-e
|
||||
explanation: Confirma o teu novo enderezo para mudar o email.
|
||||
extra: Se esta mudanza non foi comezada por ti, por favor ignora este email. O enderezo de email para a túa conta do Mastodon non mudará mentres non accedas á ligazón de enriba.
|
||||
subject: 'Mastodon: Confirmar email para %{instance}'
|
||||
title: Verificar o enderezo de email
|
||||
reset_password_instructions:
|
||||
action: Cambiar contrasinal
|
||||
explanation: Solicitou un novo contrasinal para a súa conta.
|
||||
extra: Si non fixo esta solicitude, por favor ignore este correo. O seu contrasinal non cambiará ate que acceda a ligazón superior e cree unha nova.
|
||||
subject: 'Mastodon: Instruccións para restablecer o contrasinal'
|
||||
title: Restablecer contrasinal
|
||||
action: Mudar contrasinal
|
||||
explanation: Solicitaches un novo contrasinal para a túa conta.
|
||||
extra: Se non fixeches esta solicitude, por favor ignora este email. O teu contrasinal non mudará se non accedes á ligazón de enriba e creas unha nova.
|
||||
subject: 'Mastodon: Instrucións para restabelecer o contrasinal'
|
||||
title: Restabelecer contrasinal
|
||||
two_factor_disabled:
|
||||
explanation: Desactivouse o segundo factor de autenticación para túa conta. Agora xa podes conectarte utilizando só o correo-e e contrasinal.
|
||||
subject: 'Mastodon: Autenticación con dobre factor desactivada'
|
||||
title: 2FA desactivada
|
||||
explanation: A autenticación de dobre factor para a túa conta foi desactivada. É agora posíbel acceder só co teu enderezo de email e contrasinal.
|
||||
subject: 'Mastodon: Autenticación de dobre factor desactivada'
|
||||
title: 2FA desactivado
|
||||
two_factor_enabled:
|
||||
explanation: A autenticación con dobre factor foi activada para a túa conta. Pedirase o testemuño xerado pola aplicación TOTP emparellada.
|
||||
subject: 'Mastodon: Activouse o dobre factor de autenticación'
|
||||
explanation: A autenticación de dobre factor foi activada para a túa conta. Un token, xerado pola aplicación TOTP emparellada, será necesario para acceder.
|
||||
subject: 'Mastodon: Activouse a autenticación de dobre factor'
|
||||
title: 2FA activado
|
||||
two_factor_recovery_codes_changed:
|
||||
explanation: Os códigos de recuperación anteriores quedan anulados e os novos foron creados.
|
||||
subject: 'Mastodon: Código de recuperación do dobre factor rexenerados'
|
||||
title: Códigos de recuperación 2FA cambiados
|
||||
explanation: Os códigos de recuperación anteriores fican anulados e os novos foron xerados.
|
||||
subject: 'Mastodon: Xerados novos códigos de recuperación de dobre factor'
|
||||
title: Códigos de recuperación 2FA mudados
|
||||
unlock_instructions:
|
||||
subject: 'Mastodon: Instruccións para desbloquear'
|
||||
subject: 'Mastodon: Instrucións para desbloquear'
|
||||
omniauth_callbacks:
|
||||
failure: Non podemos autenticala desde %{kind} porque "%{reason}".
|
||||
success: Autenticouse con éxito desde a conta %{kind}.
|
||||
failure: Non foi posíbel autenticar %{kind} porque "%{reason}".
|
||||
success: Autenticado con éxito na conta %{kind}.
|
||||
passwords:
|
||||
no_token: Non pode acceder a esta páxina vindo desde un correo de restablecemento de contrasinal. Si vostede chega desde un correo de restablecemento de contrasinal, por favor asegúrese de que utiliza o URL completo proporcionado.
|
||||
send_instructions: Si o seu enderezo de correo existe na nosa base de datos, nuns minutos recibirá unha ligazón para recuperar o contrasinal. Por favor comprobe o seu cartafol de spam si non recibe este correo.
|
||||
send_paranoid_instructions: Si o seu enderezo de correo existe na nosa base de datos, recibirá nuns minutos unha ligazón para recuperar o contrasinal. Por favor comprobe o seu cartafol de spam si non recibe este correo.
|
||||
updated: Cambiou o contrasinal con éxito. Agora xa está conectada.
|
||||
updated_not_active: Cambiouse o seu contrasinal correctamente.
|
||||
no_token: Non podes acceder a esta páxina se non vés a través da ligazón enviada por email para o mudado do teu contrasinal. Se empregaches esa ligazón para chegar aquí, por favor verifica que o enderezo URL actual é o mesmo do que foi enviado no email.
|
||||
send_instructions: Se o teu enderezo de email existe na nosa base de datos, vas recibir un email coas instrucións para mudar o contrasinal dentro duns minutos. Por favor, comproba o teu cartafol de correo lixo (spam) se ves que non recibiches o email.
|
||||
send_paranoid_instructions: Se o teu enderezo de email existe na nosa base de datos, vas recibir unha ligazón para recuperar o contrasinal dentro duns minutos. Por favor, comproba o teu cartafol de correo lixo (spam) se ves que non recibiches o email.
|
||||
updated: O teu contrasinal foi mudado. Estás xa autenticado na túa conta.
|
||||
updated_not_active: O teu contrasinal foi mudado de xeito correcto.
|
||||
registrations:
|
||||
destroyed: Adeus! A súa conta cancelouse con éxito. Agardamos vela de novo.
|
||||
signed_up: Ben vida! Rexistrouse con éxito.
|
||||
signed_up_but_inactive: Rexistrouse correctamente. Porén, aínda non podemos conectala porque a súa conta aínda non foi activada.
|
||||
signed_up_but_locked: Rexistrouse correctamente. Porén, non podemos conectala porque a conta está bloqueada.
|
||||
signed_up_but_pending: Enviouselle unha mensaxe de correo que contén unha ligazón de confirmación. Tras pulsar na ligazón, revisaremos a súa solicitude. Notificarémoslle se está aprobada.
|
||||
signed_up_but_unconfirmed: Foi enviada unha mensaxe con unha ligazón de confirmación ao seu enderezo electrónico. Por favor siga a ligazón para activar a súa conta. Por favor comprobe o cartafol de spam si non recibe este correo.
|
||||
update_needs_confirmation: Actualizou a súa conta correctamente, pero precisamos verificar o seu enderezo. Por favor comprobe o seu email e siga a ligazón de confirmación para confirmar o seu novo enderezo. Por favor comprobe o cartafol de spam si non recibe este correo.
|
||||
updated: A súa conta foi actualizada correctamente.
|
||||
destroyed: Adeus! A túa conta foi cancelada de xeito correcto. Agardamos verte de novo.
|
||||
signed_up: Benvido! Rexistrácheste de xeito correcto.
|
||||
signed_up_but_inactive: A túa conta foi rexistada. Porén aínda non está activada.
|
||||
signed_up_but_locked: A túa conta foi rexistada. Porén está bloqueada.
|
||||
signed_up_but_pending: Unha mensaxe cunha ligazón de confirmación foi enviada ó teu enderezo de email. Após premer na ligazón, revisaremos a túa aplicación. Serás notificado se a túa conta é aprobada.
|
||||
signed_up_but_unconfirmed: Unha mensaxe cunha ligazón de confirmación foi enviada ó teu email. Por favor, segue esa ligazón para activar a túa conta. Comproba o teu cartafol de correo lixo (spam) se ves que non recibiches o correo.
|
||||
update_needs_confirmation: Actualizaches a túa conta de xeito correcto, pero precisamos verificar o teu novo enderezo de email. Por favor, revisa o teu email e segue a ligazón para confirmar o teu novo enderezo de email. Comproba o teu cartafol de correo lixo (spam) se ves que non recibiches o correo.
|
||||
updated: A túa conta foi actualizada de xeito correcto.
|
||||
sessions:
|
||||
already_signed_out: Desconectouse con éxito.
|
||||
signed_in: Conectouse correctamente.
|
||||
signed_out: Desconectouse correctamente.
|
||||
already_signed_out: Pechouse a sesión de xeito correcto.
|
||||
signed_in: Iniciouse a sesión de xeito correcto.
|
||||
signed_out: Pechouse a sesión de xeito correcto.
|
||||
unlocks:
|
||||
send_instructions: Recibirá nuns minutos un correo con instrucións sobre como desbloquear a súa conta. Por favor comprobe o cartafol de spam si non recibe este correo.
|
||||
send_paranoid_instructions: Si a conta existe, recibirá un correo nuns minutos sobre como desbloquear a súa conta. Por favor comprobe o cartafol de spam si non recibe este correo.
|
||||
unlocked: A súa conta foi desbloqueada correctamente. Por favor, conéctese para continuar.
|
||||
send_instructions: Vas recibir un email coas instrucións para desbloquear a túa conta dentro duns minutos. Por favor, comproba o teu cartafol de correo lixo (spam) se ves que non recibiches o correo.
|
||||
send_paranoid_instructions: Se a túa conta existe, vas recibir un email coas instrucións detalladas de como desbloqueala dentro duns minutos. Por favor, comproba o teu cartafol de correo lixo (spam) se ves que non recibiches o correo.
|
||||
unlocked: A túa conta foi desbloqueada. Por favor, inicia a sesión para continuar.
|
||||
errors:
|
||||
messages:
|
||||
already_confirmed: xa foi confirmada, por favor intente conectarse
|
||||
confirmation_period_expired: precisa ser confirmada en %{period}, por favor solicite unha nova
|
||||
expired: caducou, por favor solicite unha nova
|
||||
not_found: non se atopou
|
||||
already_confirmed: xa confirmado, tenta iniciar a sesión
|
||||
confirmation_period_expired: ten que ser confirmado dentro de %{period}, solicita unha nova
|
||||
expired: expirou, solicita unha nova
|
||||
not_found: non atopado
|
||||
not_locked: non foi bloqueada
|
||||
not_saved:
|
||||
one: '1 erro evitou que %{resource} fose gardada:'
|
||||
other: "%{count} erros evitaron que %{resource} fose gardada:"
|
||||
one: '1 erro impediu este %{resource} de ser gardado:'
|
||||
other: "%{count} erros impediron este %{resource} de ser gardado:"
|
||||
|
98
config/locales/devise.is.yml
Normal file
98
config/locales/devise.is.yml
Normal file
@ -0,0 +1,98 @@
|
||||
---
|
||||
is:
|
||||
devise:
|
||||
confirmations:
|
||||
confirmed: Tölvupóstfang þitt hefur verið staðfest.
|
||||
send_instructions: Þú munt innan nokkurra mínútna fá tölvupóst með leiðbeiningunum um hvernig eigi að staðfesta tölvupóstfangið þitt. Skoðaðu í ruslpóstmöppuna þína ef þú færð ekki þennan tölvupóst.
|
||||
send_paranoid_instructions: Ef tölvupóstfangið þitt fyrirfinnst í gagnagrunninum okkar, munt þú innan nokkurra mínútna fá tölvupóst með leiðbeiningunum um hvernig eigi að staðfesta tölvupóstfangið þitt. Skoðaðu í ruslpóstmöppuna þína ef þú færð ekki þennan tölvupóst.
|
||||
failure:
|
||||
already_authenticated: Þú ert nú þegar skráð(ur) inn.
|
||||
inactive: Aðgangur þinn hefur ekki enn verið virkjaður.
|
||||
invalid: Ógildur %{authentication_keys} eða lykilorð.
|
||||
last_attempt: Þú getur reynt einu sinni í viðbót áður en aðgangnum þínum verður læst.
|
||||
locked: Notandaaðgangurinn þinn er læstur.
|
||||
not_found_in_database: Ógildur %{authentication_keys} eða lykilorð.
|
||||
pending: Notandaaðgangurinn þinn er enn til yfirferðar.
|
||||
timeout: Setan þín er útrunnin. Skráðu þig aftur inn til að halda áfram.
|
||||
unauthenticated: Þú þarft að skrá þig inn eða nýskrá þig áður en lengra er haldið.
|
||||
unconfirmed: Þú verður að staðfesta tölvupóstfangið þitt áður en lengra er haldið.
|
||||
mailer:
|
||||
confirmation_instructions:
|
||||
action: Staðfestu tölvupóstfang
|
||||
action_with_app: Staðfestu og snúðu aftur í %{app}
|
||||
explanation: Þú hefur búið til notandaaðgang á %{host} með þessu tölvupóstfangi. Þú ert einn smell frá því að virkja hann. Ef það varst ekki þú sem baðst um þetta, geturðu hunsað þennan tölvupóst.
|
||||
explanation_when_pending: Þú sóttir um að vera boðinn á %{host} með þessu tölvupóstfangi. Þegar þú hefur staðfest tölvupóstfangið, munum við fara yfir umsóknina þína. Þú getur skrá þig inn og breytt ýmsum upplýsingum um þig eða jafnvel eytt aðgangnum þínum, en þú getur hinsvegar ekki nýtt þér flesta eiginleika hans fyrr en búið er að samþykkja aðganginn. Ef umsókninni er hafnað, verður öllum gögnum um þig eytt, þannig að ekki verður krafist frekari aðgerða af þinni hálfu. Ef það varst ekki þú sem baðst um þetta, geturðu hunsað þennan tölvupóst.
|
||||
extra_html: Skoðaðu líka <a href="%{terms_path}">gildandi reglur vefþjónsins</a> og <a href="%{policy_path}">þjónustuskilmálana okkar</a>.
|
||||
subject: 'Mastodon: Leiðbeiningar vegna staðfestingar á %{instance}'
|
||||
title: Staðfestu tölvupóstfang
|
||||
email_changed:
|
||||
explanation: 'Tölvupóstfanginu fyrir notandaaðganginn þinn verður breytt í:'
|
||||
extra: Ef það varst ekki þú sem breyttir tölvupóstfanginu þínu, þá er líklegt að einhver hafi komist inn í notandaaðganginn þinn. Skiptu núna strax um lykilorð eða hafðu samband við kerfisstjóra netþjónsins ef þú hefur verið læst/ur úti af notandaaðgangnum þínum.
|
||||
subject: 'Mastodon: Tölvupóstfang breyttist'
|
||||
title: Nýtt tölvupóstfang
|
||||
password_change:
|
||||
explanation: Lykilorðinu á notandaaðgangnum þínum hefur verið breytt.
|
||||
extra: Ef það varst ekki þú sem breyttir lykilorðinu þínu, þá er líklegt að einhver hafi komist inn í notandaaðganginn þinn. Skiptu núna strax um lykilorð eða hafðu samband við kerfisstjóra netþjónsins ef þú hefur verið læst/ur úti af notandaaðgangnum þínum.
|
||||
subject: 'Mastodon: Lykilorð breyttist'
|
||||
title: Lykilorð breyttist
|
||||
reconfirmation_instructions:
|
||||
explanation: Staðfestu nýja vistfangið til að skipta um tölvupóstfang.
|
||||
extra: Ef það varst ekki þú sem baðst um þessa breytingu, geturðu hunsað þennan tölvupóst. Tölvupóstfangið fyrir Mastodon-aðganginn mun ekki breytast fyrr en þú hefur fylgt tenglinum hér fyrir ofan.
|
||||
subject: 'Mastodon: Staðfestu tölvupóst fyrir %{instance}'
|
||||
title: Staðfestu tölvupóstfang
|
||||
reset_password_instructions:
|
||||
action: Breyta lykilorði
|
||||
explanation: Þú baðst um nýtt lykilorð fyrir notandaaðganginn þinn.
|
||||
extra: Ef það varst ekki þú sem baðst um þetta, geturðu hunsað þennan tölvupóst. Lykilorðið þitt mun ekki breytast fyrr en þú hefur fylgt tenglinum hér fyrir ofan og búið til nýtt lykilorð.
|
||||
subject: 'Mastodon: Leiðbeiningar til að endurstilla lykilorð'
|
||||
title: Endurstilling lykilorðs
|
||||
two_factor_disabled:
|
||||
explanation: Tveggja-þátta auðkenning fyrir aðganginn þinn hefur verið gerð óvirk. Núna er einungis hægt að skrá inn með tölvupóstfangi og lykilorði.
|
||||
subject: 'Mastodon: Tveggja-þátta auðkenning er óvirk'
|
||||
title: 2FA tveggja-þátta auðkenning er óvirk
|
||||
two_factor_enabled:
|
||||
explanation: Tveggja-þátta auðkenning hefur verið gerð virk fyrir aðganginn þinn. Krafist er teikns útbúnu af paraða TOTP-forritinu til að skrá inn.
|
||||
subject: 'Mastodon: Tveggja-þátta auðkenning er virk'
|
||||
title: 2FA tveggja-þátta auðkenning er virk
|
||||
two_factor_recovery_codes_changed:
|
||||
explanation: Fyrri endurheimtukóðar tveggja-þátta auðkenningar voru ógiltir og nýir útbúnir í staðinn.
|
||||
subject: 'Mastodon: Endurheimtukóðar tveggja-þátta auðkenningar voru endurnýjaðir'
|
||||
title: Endurheimtukóðar tveggja-þátta auðkenningar breyttust
|
||||
unlock_instructions:
|
||||
subject: 'Mastodon: Leiðbeiningar til að aflæsa'
|
||||
omniauth_callbacks:
|
||||
failure: Gat ekki auðkennt þig frá %{kind} vegna "%{reason}".
|
||||
success: Tókst að auðkenna frá %{kind} notandaaðgangnum.
|
||||
passwords:
|
||||
no_token: Þú getur ekki séð þessa síðu án þess að koma á slóð úr tölvupósti fyrir endurstillingu lykilorðs. Ef svo er skaltu ganga úr skugga um að að þú hafir notað alla slóðina sem var gefin.
|
||||
send_instructions: Ef tölvupóstfangið þitt fyrirfinnst í gagnagrunninum okkar, munt þú innan nokkurra mínútna fá tölvupóst með tengli til að endurheimta lykilorðið þitt. Skoðaðu í ruslpóstmöppuna þína ef þú færð ekki þennan tölvupóst.
|
||||
send_paranoid_instructions: Ef tölvupóstfangið þitt fyrirfinnst í gagnagrunninum okkar, munt þú innan nokkurra mínútna fá tölvupóst með tengli til að endurheimta lykilorðið þitt. Skoðaðu í ruslpóstmöppuna þína ef þú færð ekki þennan tölvupóst.
|
||||
updated: Það tókst að breyta lykilorðinu þínu. Þú ert núna skráð/ur inn.
|
||||
updated_not_active: Það tókst að breyta lykilorðinu þínu.
|
||||
registrations:
|
||||
destroyed: Bless! Hætt hefur verið við notandaaðganginn þinn. Við vonumst samt eftir að sjá þig fljótt aftur.
|
||||
signed_up: Velkonin/n! Það tókst að nýskrá þig.
|
||||
signed_up_but_inactive: Þér hefur tekist að nýskrá þig. Hinsvegar gátum við ekki skráð þig inn því notandaaðgangurinn þinn hefur ekki enn verið virkjaður.
|
||||
signed_up_but_locked: Þér hefur tekist að nýskrá þig. Hinsvegar gátum við ekki skráð þig inn því notandaaðgangurinn þinn er læstur.
|
||||
signed_up_but_pending: Skilaboð með staðfestingartengli hafa verið send á tölvupóstfangið þitt. Þegar þú smellir á þennan tengil munum við yfirfara og staðfesta umsóknina þína. Þú færð svo að vita hvort hún verður samþykkt.
|
||||
signed_up_but_unconfirmed: Skilaboð með staðfestingartengli hafa verið send á tölvupóstfangið þitt. Smelltu á þennan tengil til að virkja notandaaðganginn þinn. Skoðaðu í ruslpóstmöppuna þína ef þú færð ekki þessi skilaboð.
|
||||
update_needs_confirmation: Þú uppfærðir notandaaðganginn þinn, en við þurfum að sannreyna nýja tölvupóstfangið þitt. Skoðaðu tölvupóstinn þinn og fylgdu tenglinum sem þangað á að berast til að staðfesta tölvupóstfangið þitt. Skoðaðu í ruslpóstmöppuna þína ef þú færð ekki þennan tölvupóst.
|
||||
updated: Það tókst að uppfæra notandaaðganginn þinn.
|
||||
sessions:
|
||||
already_signed_out: Tókst að skrá út.
|
||||
signed_in: Tókst að skrá inn.
|
||||
signed_out: Tókst að skrá út.
|
||||
unlocks:
|
||||
send_instructions: Þú munt innan nokkurra mínútna fá tölvupóst með leiðbeiningunum um hvernig eigi að aflæsa notandaaðgangnum þínum. Skoðaðu í ruslpóstmöppuna þína ef þú færð ekki þennan tölvupóst.
|
||||
send_paranoid_instructions: Ef notandaaðgangurinn þinn er til, munt þú innan nokkurra mínútna fá tölvupóst með leiðbeiningunum um hvernig eigi að aflæsa honum. Skoðaðu í ruslpóstmöppuna þína ef þú færð ekki þennan tölvupóst.
|
||||
unlocked: Það tókst að aflæsa notandaaðgangnum þínum. Skráðu þig inn til að halda áfram.
|
||||
errors:
|
||||
messages:
|
||||
already_confirmed: var þegar staðfest, prófaðu að skrá þig inn
|
||||
confirmation_period_expired: þarf að staðfesta inna %{period}, biddu um nýtt
|
||||
expired: er útrunnið, biddu um nýtt
|
||||
not_found: fannst ekki
|
||||
not_locked: var ekki læst
|
||||
not_saved:
|
||||
one: '1 villa kom í veg fyrir að þessi %{resource} væri vistað:'
|
||||
other: "%{count} villur komu í veg fyrir að þessi %{resource} væri vistað:"
|
58
config/locales/devise.kab.yml
Normal file
58
config/locales/devise.kab.yml
Normal file
@ -0,0 +1,58 @@
|
||||
---
|
||||
kab:
|
||||
devise:
|
||||
confirmations:
|
||||
confirmed: Tansa-ik imayl tettwasentem.
|
||||
send_instructions: Deg kra n tesdatin, ad n-teṭṭfeḍ imayl deg-s iwellihen i ilaqen i usentem n umiḍan-ik. Ma yella ur tufiḍ ara izen-agi, ttxil-k ẓer deg ukaram spam.
|
||||
send_paranoid_instructions: Ma yella tansa-ik imayl tella deg uzadur-nneɣ n yisefka, ad n-teṭṭfeḍ imayl deg tesdatin i d-iteddun, deg-s iwellihen i ilaqen i usentem n umiḍan-ik. Ma yella ur tufiḍ ara izen-agi, ttxil-k ẓer deg ukaram spam.
|
||||
failure:
|
||||
already_authenticated: Aqla-k teqqneḍ yakan.
|
||||
inactive: Amiḍan-inek mazal ur yermed ara.
|
||||
invalid: Tella tuccḍa deg %{authentication_keys} neɣ deg wawal uffir.
|
||||
last_attempt: Ɣur-k yiwen n uɛraḍ-nniḍen kan qbel ad yettucekkel umiḍan-ik.
|
||||
locked: Amiḍan-ik yewḥel.
|
||||
not_found_in_database: Tella tuccḍa deg %{authentication_keys} neɣ deg wawal uffir.
|
||||
pending: Amiḍan-inek mazal-it deg ɛiwed n tmuɣli.
|
||||
timeout: Tiɣimit n tuqqna tezri. Ma ulac aɣilif ɛiwed tuqqna akken ad tkemmleḍ.
|
||||
unauthenticated: Ilaq ad teqqneḍ neɣ ad tjerrḍeḍ akken ad tkemmelḍ.
|
||||
unconfirmed: Ilaq ad wekdeḍ tansa-inek imayl akken ad tkemmelḍ.
|
||||
mailer:
|
||||
confirmation_instructions:
|
||||
action: Senqed tansa-inek imayl
|
||||
action_with_app: Wekked sakkin uɣal ɣer %{app}
|
||||
explanation: Aqla-k terniḍ amiḍan deg %{host} s tansa imayl-agi. Mazal-ak yiwen utekki akken ad t-tremdeḍ. Ma mačči d kečč i yessutren ay-agi, ttxil-k ssinef izen-a.
|
||||
explanation_when_pending: Tsutreḍ-d ajerred deg %{host} s tansa-agi imayl. Ad nɣeṛ asuter-ik ticki tsentmeḍ tansa-ik imayl. Send asentem, ur tezmireḍ ara ad teqqneḍ ɣer umiḍan-ik. Ma yella nugi asuter-ik, isefka-ik ad ttwakksen seg uqeddac, ihi ulac tigawt-nniḍen ara k-d-yettuqeblen. Ma mačči d kečč i yellan deffir n usuter-agi, ttxil-k ssinef izen-agi.
|
||||
extra_html: Ttxil-k ẓer daɣen <a href="%{terms_path}">ilugan n uqeddac</a> akked <a href="%{policy_path}">twetlin n useqdec</a>.
|
||||
subject: 'Mastudun: Asentem n ujerred deg uqeddac %{instance}'
|
||||
title: Senqed tansa-inek imayl
|
||||
email_changed:
|
||||
extra: Ma mačči d kečč i ibeddlen tansa imayl, ihi yezmer d alebɛaḍ i ikecmen ɣer umiḍan-ik. Ttxil-k beddel awal-ik uffir tura neɣ siwel i unedbal n uqeddac ma tḥesleḍ berra n umiḍan-ik.
|
||||
subject: 'Masṭudun: Imayl-ik yettubeddel'
|
||||
title: Tansa imayl tamaynut
|
||||
password_change:
|
||||
explanation: Awal uffir n umiḍan-ik yettubeddel.
|
||||
extra: Ma mačči d kečč i ibeddlen awal uffir, ihi yezmer d alebɛaḍ i ikecmen ɣer umiḍan-ik. Ttxil-k beddel awal-ik uffir tura neɣ siwel i unedbal n uqeddac ma tḥesleḍ berra n umiḍan-ik.
|
||||
subject: 'Masṭudun: Yettubeddel wawal-ik uffir'
|
||||
title: Awal uffir yettubeddel
|
||||
reconfirmation_instructions:
|
||||
explanation: Sentem tansa imayl tamaynut akken ad tbeddleḍ imayl-inek.
|
||||
subject: 'Mastudun: Sentem tansa imayl n %{instance}'
|
||||
title: Senqed tansa-inek imayl
|
||||
reset_password_instructions:
|
||||
action: Beddel awal uffir
|
||||
explanation: Tessutreḍ awal uffir amaynut i umiḍan-ik.
|
||||
title: Aɛiwed n wawal uffir
|
||||
passwords:
|
||||
send_paranoid_instructions: Ma nufa tansa-inek imayl tella deg uzadur-nneɣ n yisefka, ad n-teṭṭfeḍ izen deg kra n tesdatin, deg-s assaɣ i uɛawed n wawal uffir. Ma ur k-in-yewwiḍ ara yizen, ttxil-k ẓer deg ukaram spam.
|
||||
updated: Awal-ik uffir yettwabeddel mebla ugur. Aqla-k tura tjerrḍeḍ.
|
||||
updated_not_active: Awal-ik uffir yettwabeddel mebla ugur.
|
||||
registrations:
|
||||
destroyed: Ar timlilit! Amiḍan-ik yettwakkes mebla ugur. Nessaram ad k-nwali tikelt-nniḍen.
|
||||
signed_up: Anṣuf! Aqla-k tkecmeḍ.
|
||||
sessions:
|
||||
signed_in: Aqla-k teqqneḍ.
|
||||
signed_out: Aqla-k teffɣeḍ.
|
||||
errors:
|
||||
messages:
|
||||
not_found: ulac-it
|
||||
not_locked: ur yettucekkel ara
|
@ -1 +1,5 @@
|
||||
---
|
||||
kn:
|
||||
devise:
|
||||
confirmations:
|
||||
confirmed: '"ಸಂದರ್ಭ"'
|
||||
|
@ -1,8 +1,32 @@
|
||||
---
|
||||
ml:
|
||||
devise:
|
||||
confirmations:
|
||||
confirmed: നിങ്ങളുടെ ഇലക്ട്രോണിക് കത്തിന്റെ മേൽവിലാസം വിജയകരമായി സ്ഥിരീകരിക്കപ്പെട്ടിരിക്കുന്നു.
|
||||
send_instructions: ഏതാനും നിമിഷങ്ങൾക്കുള്ളിൽ നിങ്ങൾക്ക് നിങ്ങളുടെ ഇലക്ട്രോണിക് കത്തിന്റെ വിലാസം എങ്ങനെ സ്ഥിരീകരിക്കാം എന്നുള്ള നിർദ്ദേശങ്ങൾ അതെ വിലാസത്തിൽ ലഭിക്കുന്നതാണ്. അത് ലഭിച്ചില്ലെങ്കിൽ അസംബന്ധമായ കത്തുകൾ ശേഖരിക്കപ്പെടുന്ന സ്ഥലത്ത് എത്തപ്പെട്ടോ എന്ന് പരിശോധിക്കുക.
|
||||
send_paranoid_instructions: ഞങ്ങളുടെ വിവരശേഖരണത്തിൽ നിങ്ങളുടെ ഇലക്ട്രോണിക് കത്തിന്റെ വിലാസം ഉൾപെട്ടിട്ടുണ്ടെങ്കിൽ ഏതാനും നിമിഷങ്ങൾക്കുള്ളിൽ നിങ്ങൾക്ക് അത് എങ്ങനെ സ്ഥിരീകരിക്കാം എന്നുള്ള നിർദ്ദേശങ്ങൾ അതെ വിലാസത്തിൽ ലഭിക്കുന്നതാണ്. കത്ത് ലഭിച്ചില്ലെങ്കിൽ അസംബന്ധമായ കത്തുകൾ ശേഖരിക്കപ്പെടുന്ന സ്ഥലത്ത് എത്തപ്പെട്ടോ എന്ന് പരിശോധിക്കുക.
|
||||
failure:
|
||||
already_authenticated: നിങ്ങൾ മുൻപേതന്നെ പ്രവേശിച്ചിരുന്നു.
|
||||
inactive: നിങ്ങളുടെ അംഗത്വം ഇതുവരെ സജീവമാക്കപ്പെട്ടിട്ടില്ല.
|
||||
invalid: "%{authentication_keys} അല്ലെങ്കിൽ സൂത്രവാക്യം പ്രാബല്യത്തിലില്ല."
|
||||
last_attempt: നിങ്ങളുടെ അംഗത്വം ബന്ധിക്കപ്പെടുന്നതിന് മുൻപ് ഒരു അവസരം കൂടി ബാക്കിയുണ്ട്.
|
||||
locked: നിങ്ങളുടെ അംഗത്വം ബന്ധിക്കപ്പെട്ടിരിക്കുന്നു.
|
||||
not_found_in_database: "%{authentication_keys} അല്ലെങ്കിൽ സൂത്രവാക്യം പ്രാബല്യത്തിലില്ല."
|
||||
pending: നിങ്ങളുടെ അംഗത്വം ഇപ്പോഴും അവലോകനയിലാണ്.
|
||||
timeout: നിങ്ങളുടെ വിഹരണസമയം കാലഹരണപ്പെട്ടിരിക്കുന്നു. തുടരാൻ ദയവായി വീണ്ടും പ്രവേശിക്കുക.
|
||||
unauthenticated: തുടരുന്നതിന് മുൻപ് നിങ്ങൾ അംഗത്വത്തോടെ പ്രവേശിക്കുകയോ അംഗത്വം എടുക്കുകയോ ചെയ്യേണ്ടതാണ്.
|
||||
unconfirmed: തുടരുന്നതിന് മുൻപ് നിങ്ങൾ നിങ്ങളുടെ ഇലക്ട്രോണിക് കത്തിന്റെ മേൽവിലാസം സ്ഥിരീകരിക്കേണ്ടതാണ്.
|
||||
mailer:
|
||||
confirmation_instructions:
|
||||
action: ഇലക്ട്രോണിക് കത്തിന്റെ മേൽവിലാസം നേരാണെന്നു തെളിയിക്കുക
|
||||
action_with_app: സ്ഥിരീകരിക്കുകയും, %{app} ലേക്ക് തിരികെ പോകുകയും ചെയ്യുക
|
||||
title: ഇമെയിൽ മേൽവിലാസം നേരാണെന്നു തെളിയിക്കുക
|
||||
email_changed:
|
||||
explanation: 'നിങ്ങളുടെ അംഗത്വത്തിനായുള്ള ഇമെയിൽ വിലാസം ഇതിലേക്ക് മാറ്റുകയാണ്:'
|
||||
subject: 'മാസ്റ്റോഡോൺ: ഇമെയിൽ മാറ്റം വരുത്തി'
|
||||
title: പുതിയ ഇ-മെയിൽ വിലാസം
|
||||
password_change:
|
||||
explanation: താങ്കളുടെ അംഗത്വത്തിന്റെ പാസ്സ് വേഡ് മാറ്റം വരുത്തി.
|
||||
title: പാസ് വേഡ് മാറ്റി
|
||||
reset_password_instructions:
|
||||
action: പാസ്വേഡ് മാറ്റുക
|
||||
|
@ -1 +1,94 @@
|
||||
---
|
||||
nn:
|
||||
devise:
|
||||
confirmations:
|
||||
confirmed: E-posten din er stadefesta.
|
||||
send_instructions: Om nokre få minutt får du ein e-post som fortel deg korleis du skal stadfesta e-postadressa di. Sjekk søppelpostmappa di om du ikkje fekk e-posten.
|
||||
send_paranoid_instructions: Om vi har e-postadressa di i databasen vår, får du ein e-post som fortel deg korleis du skal stadfesta e-postadressa om nokre få minutt. Ver venleg og sjekk søppelpostmappa di om du ikkje fekk denne e-posten.
|
||||
failure:
|
||||
already_authenticated: Du er allereie logga inn.
|
||||
inactive: Kontoen din er ikkje aktiv enno.
|
||||
invalid: Ugyldig %{authentication_keys} eller passord.
|
||||
last_attempt: Du har eitt forsøk igjen før kontoen din vert låst.
|
||||
locked: Kontoen din er låst.
|
||||
not_found_in_database: Ugyldig %{authentication_keys} eller passord.
|
||||
pending: Kontoen din er fortsatt under gjennomgang.
|
||||
timeout: Økten din løp ut på tid. Logg inn på nytt for å fortsette.
|
||||
unauthenticated: Du må logge inn eller registrere deg før du kan fortsette.
|
||||
unconfirmed: Du må stadfesta e-postadressa di før du kan gå vidare.
|
||||
mailer:
|
||||
confirmation_instructions:
|
||||
action: Stadfest e-postadresse
|
||||
action_with_app: Stadfest og gå tilbake til %{app}
|
||||
explanation: Du har laget en konto på %{host} med denne e-postadressen. Du er ett klikk unna å aktivere den. Hvis dette ikke var deg, vennligst se bort fra denne e-posten.
|
||||
extra_html: Vennligst også sjekk ut <a href="%{terms_path}">instansens regler </a> og <a href="%{policy_path}">våre bruksvilkår</a>.
|
||||
subject: 'Mastodon: Instruksjoner for å bekrefte e-postadresse %{instance}'
|
||||
title: Stadfest e-postadresse
|
||||
email_changed:
|
||||
explanation: 'E-postadressa til kontoen din vert endra til:'
|
||||
extra: Hvis du ikke endret din e-postadresse, er det sannsynlig at noen har fått tilgang til din konto. Vennligst endre ditt passord umiddelbart eller kontakt instansens administrator dersom du er utestengt fra kontoen din.
|
||||
subject: 'Mastodon: E-postadressa er endra'
|
||||
title: Ny e-postadresse
|
||||
password_change:
|
||||
explanation: Passordet til kontoen din er endra.
|
||||
extra: Om du ikkje har endra passordet er det sannsynleg at nokon har fått tilgang til kontoen din. Ver venleg og skift passordet ditt med det same eller tak kontakt med tenaradministratoren om du er sperra ute av kontoen din.
|
||||
subject: 'Mastodon: Passord endra'
|
||||
title: Passord endra
|
||||
reconfirmation_instructions:
|
||||
explanation: Stadfest den nye adressa for å byta e-postadressa di.
|
||||
extra: Se bort fra denne e-posten dersom du ikke gjorde denne endringen. E-postadressen for Mastadon-kontoen blir ikke endret før du trykker på lenken over.
|
||||
subject: 'Mastodon: Bekreft e-postadresse for %{instance}'
|
||||
title: Stadfest e-postadresse
|
||||
reset_password_instructions:
|
||||
action: Endr passord
|
||||
explanation: Du har bedt om eit nytt passord til kontoen din.
|
||||
extra: Om du ikkje bad om dette, ignorer denne e-posten. Passordet ditt vert ikkje endra før du går inn på lenkja ovanfor og lagar eit nytt.
|
||||
subject: 'Mastodon: Instuksjonar for å endra passord'
|
||||
title: Attstilling av passord
|
||||
two_factor_disabled:
|
||||
subject: 'Mastodon: To-faktor autentisering deaktivert'
|
||||
title: 2FA deaktivert
|
||||
two_factor_enabled:
|
||||
explanation: To-faktor autentisering er aktivert for kontoen din. Et symbol som er generert av den sammenkoblede TOTP-appen vil være påkrevd for innlogging.
|
||||
subject: 'Mastodon: To-faktor autentisering aktivert'
|
||||
title: 2FA aktivert
|
||||
two_factor_recovery_codes_changed:
|
||||
explanation: De forrige gjenopprettingskodene er ugyldig og nye generert.
|
||||
unlock_instructions:
|
||||
subject: 'Mastodon: Instruksjoner for å gjenåpne konto'
|
||||
omniauth_callbacks:
|
||||
failure: Kunne ikke autentisere deg fra %{kind} fordi "%{reason}".
|
||||
success: Vellykket autentisering fra %{kind}.
|
||||
passwords:
|
||||
no_token: Du har ingen tilgang til denne siden hvis ikke klikket på en e-post om nullstilling av passord. Hvis du kommer fra en sådan bør du dobbelsjekke at du limte inn hele URLen.
|
||||
send_instructions: Du vil motta en e-post med instruksjoner om nullstilling av passord om noen få minutter.
|
||||
send_paranoid_instructions: Om vi har e-postadressa di i databasen vår, får du ei lenkje til å endra passordet om nokre få minutt. Ver venleg og sjekk søppelpostmappa om du ikkje fekk denne e-posten.
|
||||
updated: Passordet ditt er endra. No er du logga inn.
|
||||
updated_not_active: Passordet ditt er endra.
|
||||
registrations:
|
||||
destroyed: Ha det! Kontoen din er sletta. Vi vonar å sjå deg igjen snart.
|
||||
signed_up: Velkomen! No er du registrert.
|
||||
signed_up_but_inactive: Du har registrert deg inn, men vi kunne ikkje logga deg inn fordi kontoen din er ikkje aktivert enno.
|
||||
signed_up_but_locked: Du har registrert deg inn, men vi kunne ikkje logga deg inn fordi kontoen din er låst.
|
||||
signed_up_but_pending: Ei melding med ei stadfestingslenkje er vorten send til e-postadressa di. Når du klikkar på lenkja skal vi sjå gjennom søknaden din. Du får ei melding om han vert godkjend.
|
||||
signed_up_but_unconfirmed: En e-post med en bekreftelseslenke har blitt sendt til din innboks. Klikk på lenken i e-posten for å aktivere kontoen din.
|
||||
update_needs_confirmation: Du har oppdatert kontoen din, men vi må bekrefte din nye e-postadresse. Sjekk e-posten din og følg bekreftelseslenken for å bekrefte din nye e-postadresse.
|
||||
updated: Kontoen din ble oppdatert.
|
||||
sessions:
|
||||
already_signed_out: Logga ut.
|
||||
signed_in: Logga inn.
|
||||
signed_out: Logga ut.
|
||||
unlocks:
|
||||
send_instructions: Du vil motta en e-post med instruksjoner for å åpne kontoen din om noen få minutter.
|
||||
send_paranoid_instructions: Hvis kontoen din eksisterer vil du motta en e-post med instruksjoner for å åpne kontoen din om noen få minutter.
|
||||
unlocked: Kontoen din ble åpnet uten problemer. Logg på for å fortsette.
|
||||
errors:
|
||||
messages:
|
||||
already_confirmed: har allerede blitt bekreftet, prøv å logge på istedet
|
||||
confirmation_period_expired: må bekreftes innen %{period}. Spør om en ny e-post for bekreftelse istedet
|
||||
expired: er utgått, ver venleg å beda om ein ny ein
|
||||
not_found: ikkje funne
|
||||
not_locked: var ikkje låst
|
||||
not_saved:
|
||||
one: '1 feil hindret denne %{resource} i å bli lagret:'
|
||||
other: "%{count} feil hindret denne %{resource} i å bli lagret:"
|
||||
|
@ -21,6 +21,7 @@
|
||||
action: Bekreft e-postadresse
|
||||
action_with_app: Bekreft og gå tilbake til %{app}
|
||||
explanation: Du har laget en konto på %{host} med denne e-postadressen. Du er ett klikk unna å aktivere den. Hvis dette ikke var deg, vennligst se bort fra denne e-posten.
|
||||
explanation_when_pending: Du søkte om en invitasjon til %{host} med denne E-postadressen. Når du har bekreftet E-postadressen din, vil vi gå gjennom søknaden din. Du kan logge på for å endre dine detaljer eller slette kontoen din, men du har ikke tilgang til de fleste funksjoner før kontoen din er akseptert. Dersom søknaden din blir avslått, vil dataene dine bli fjernet, så ingen ytterligere handlinger fra deg vil være nødvendige. Dersom dette ikke var deg, vennligst ignorer denne E-posten.
|
||||
extra_html: Vennligst også sjekk ut <a href="%{terms_path}">instansens regler </a> og <a href="%{policy_path}">våre bruksvilkår</a>.
|
||||
subject: 'Mastodon: Instruksjoner for å bekrefte e-postadresse %{instance}'
|
||||
title: Bekreft e-postadresse
|
||||
@ -46,6 +47,7 @@
|
||||
subject: 'Mastodon: Hvordan nullstille passord'
|
||||
title: Nullstill passord
|
||||
two_factor_disabled:
|
||||
explanation: 2-trinnsinnlogging for kontoen din har blitt skrudd av. Pålogging er mulig gjennom kun E-postadresse og passord.
|
||||
subject: 'Mastodon: To-faktor autentisering deaktivert'
|
||||
title: 2FA deaktivert
|
||||
two_factor_enabled:
|
||||
@ -54,6 +56,8 @@
|
||||
title: 2FA aktivert
|
||||
two_factor_recovery_codes_changed:
|
||||
explanation: De forrige gjenopprettingskodene er ugyldig og nye generert.
|
||||
subject: 'Mastodon: 2-trinnsgjenopprettingskoder har blitt generert på nytt'
|
||||
title: 2FA-gjenopprettingskodene ble endret
|
||||
unlock_instructions:
|
||||
subject: 'Mastodon: Instruksjoner for å gjenåpne konto'
|
||||
omniauth_callbacks:
|
||||
|
@ -12,6 +12,7 @@ pt-PT:
|
||||
last_attempt: Tens mais uma tentativa antes de a tua conta ficar bloqueada.
|
||||
locked: A tua conta está bloqueada.
|
||||
not_found_in_database: "%{authentication_keys} ou palavra-passe inválida."
|
||||
pending: A sua conta está ainda a aguardar revisão.
|
||||
timeout: A tua sessão expirou. Por favor, entra de novo para continuares.
|
||||
unauthenticated: Precisas de entrar na tua conta ou de te registares antes de continuar.
|
||||
unconfirmed: Tens de confirmar o teu endereço de email antes de continuar.
|
||||
@ -20,6 +21,7 @@ pt-PT:
|
||||
action: Verificar o endereço de e-mail
|
||||
action_with_app: Confirmar e regressar a %{app}
|
||||
explanation: Criaste uma conta em %{host} com este endereço de e-mail. Estás a um clique de activá-la. Se não foste tu que fizeste este registo, por favor ignora esta mensagem.
|
||||
explanation_when_pending: Você solicitou um convite para %{host} com este endereço de e-mail. Logo que confirme o seu endereço de e-mail, iremos rever a sua inscrição. Pode iniciar sessão para alterar os seus dados ou eliminar a sua conta, mas não poderá aceder à maioria das funções até que a sua conta seja aprovada. Se a sua inscrição for rejeitada, os seus dados serão removidos, pelo que não será necessária qualquer acção adicional da sua parte. Se não solicitou este convite, por favor, ignore este e-mail.
|
||||
extra_html: Por favor lê <a href="%{terms_path}">as regras da instância</a> e os <a href="%{policy_path}"> nossos termos de serviço</a>.
|
||||
subject: 'Mastodon: Instruções de confirmação %{instance}'
|
||||
title: Verificar o endereço de e-mail
|
||||
@ -44,6 +46,18 @@ pt-PT:
|
||||
extra: Se não fizeste este pedido, por favor ignora este e-mail. A tua palavra-passe não irá mudar se não acederes ao link acima e criares uma nova.
|
||||
subject: 'Mastodon: Instruções para alterar a palavra-passe'
|
||||
title: Solicitar nova palavra-passe
|
||||
two_factor_disabled:
|
||||
explanation: A autenticação de dois fatores para sua conta foi desativada. É agora possível aceder apenas com seu endereço de e-mail e senha.
|
||||
subject: 'Mastodon: Autenticação de dois fatores desativada'
|
||||
title: 2FA desativado
|
||||
two_factor_enabled:
|
||||
explanation: A autenticação de dois fatores foi ativada para sua conta. Um token, gerado pela aplicação TOTP emparelhada, será necessário para aceder.
|
||||
subject: 'Mastodon: Autenticação de dois fatores ativada'
|
||||
title: 2FA ativado
|
||||
two_factor_recovery_codes_changed:
|
||||
explanation: Os códigos de recuperação anteriores foram invalidados e novos foram gerados.
|
||||
subject: 'Mastodonte: Gerados novos códigos de recuperação de dois fatores'
|
||||
title: Códigos de recuperação 2FA alterados
|
||||
unlock_instructions:
|
||||
subject: 'Mastodon: Instruções para desbloquear a tua conta'
|
||||
omniauth_callbacks:
|
||||
@ -60,6 +74,7 @@ pt-PT:
|
||||
signed_up: Bem-vindo! A tua conta foi registada com sucesso.
|
||||
signed_up_but_inactive: A tua conta foi registada. No entanto ainda não está activa.
|
||||
signed_up_but_locked: A tua conta foi registada. No entanto está bloqueada.
|
||||
signed_up_but_pending: Uma mensagem com um link de confirmação foi enviada para o seu endereço de e-mail. Depois de clicar no link, iremos rever a sua inscrição. Será notificado se a sua conta é aprovada.
|
||||
signed_up_but_unconfirmed: Uma mensagem com um link de confirmação foi enviada para o teu email. Por favor segue esse link para activar a tua conta.
|
||||
update_needs_confirmation: Alteraste o teu endereço de email ou palavra-passe, mas é necessário confirmar essa alteração. Por favor vai ao teu email e segue link que te enviámos.
|
||||
updated: A tua conta foi actualizada com sucesso.
|
||||
|
@ -7,10 +7,10 @@ ru:
|
||||
send_paranoid_instructions: Если Ваш адрес e-mail есть в нашей базе данных, вы получите e-mail с инструкцией по подтверждению вашего адреса в течение нескольких минут.
|
||||
failure:
|
||||
already_authenticated: Вы уже авторизованы.
|
||||
inactive: Ваш аккаунт еще не активирован.
|
||||
inactive: Ваша учётная запись ещё не активирована.
|
||||
invalid: Неверно введены %{authentication_keys} или пароль.
|
||||
last_attempt: У Вас есть последняя попытка, после чего вход будет заблокирован.
|
||||
locked: Ваш аккаунт заблокирован.
|
||||
locked: Ваша учётная запись заблокирована.
|
||||
not_found_in_database: Неверно введены %{authentication_keys} или пароль.
|
||||
pending: Ваша заявка на вступление всё ещё рассматривается.
|
||||
timeout: Ваша сессия истекла. Пожалуйста, войдите снова, чтобы продолжить.
|
||||
@ -27,12 +27,12 @@ ru:
|
||||
title: Подтвердите e-mail адрес
|
||||
email_changed:
|
||||
explanation: 'E-mail адрес вашей учётной записи будет изменён на:'
|
||||
extra: Если Вы не меняли адрес e-mail, возможно кто-то получил доступ к вашей учётной записи. Пожалуйста, срочно смените пароль или свяжитесь с администратором узла, если у вас нет доступа к учётной записи.
|
||||
subject: 'Mastodon: Адрес e-mail изменён'
|
||||
extra: Если вы не меняли e-mail адрес, возможно кто-то получил доступ к вашей учётной записи. Пожалуйста, немедленно смените пароль или свяжитесь с администратором узла, если вы уже потеряли доступ к ней.
|
||||
subject: 'Mastodon: изменён e-mail адрес'
|
||||
title: Новый адрес e-mail
|
||||
password_change:
|
||||
explanation: Пароль Вашей учётной записи был изменён.
|
||||
extra: Если Вы не меняли пароль, возможно кто-то получил доступ к вашей учётной записи. Пожалуйста, срочно смените пароль или свяжитесь с администратором узла, если у вас нет доступа к учётной записи.
|
||||
extra: Если вы не меняли пароль, возможно кто-то получил доступ к вашей учётной записи. Пожалуйста, немедленно смените пароль или свяжитесь с администратором узла, если вы уже потеряли доступ к ней.
|
||||
subject: 'Mastodon: Пароль изменен'
|
||||
title: Пароль изменён
|
||||
reconfirmation_instructions:
|
||||
@ -47,22 +47,22 @@ ru:
|
||||
subject: 'Mastodon: инструкция по смене пароля'
|
||||
title: Сброс пароля
|
||||
two_factor_disabled:
|
||||
explanation: Двуфакторная авторизация вашего аккаунта отключена. Войти теперь можно используя только e-mail и пароль.
|
||||
subject: 'Mastodon: двуфакторная авторизация убрана'
|
||||
title: 2ФА отключена
|
||||
explanation: Для вашей учётной записи была отключена двухфакторная авторизация. Выполнить вход теперь можно используя лишь e-mail и пароль.
|
||||
subject: 'Mastodon: двухфакторная авторизация отключена'
|
||||
title: Двухфакторная авторизация отключена
|
||||
two_factor_enabled:
|
||||
explanation: Двуфакторная авторизация включена для вашего аккаунта. Отныне для входа потребуется также временный код из привязанного приложения.
|
||||
subject: 'Mastodon: двуфакторная авторизация установлена'
|
||||
title: 2ФА включена
|
||||
explanation: Для вашей учётной записи была настроена двухфакторная авторизация. Отныне для входа потребуется также временный код из приложения-аутентификатора.
|
||||
subject: 'Mastodon: настроена двухфакторная авторизация'
|
||||
title: Двухфакторная авторизация включена
|
||||
two_factor_recovery_codes_changed:
|
||||
explanation: Предыдущие резервные коды были аннулированы и созданы новые.
|
||||
subject: 'Mastodon: резервные коды двуфакторной авторизации обновлены'
|
||||
title: Резервные коды 2ФА изменены
|
||||
title: Резервные коды двухфакторной авторизации изменены
|
||||
unlock_instructions:
|
||||
subject: 'Mastodon: Инструкция по разблокировке'
|
||||
omniauth_callbacks:
|
||||
failure: Не получилось аутентифицировать вас с помощью %{kind} по следующей причине - "%{reason}".
|
||||
success: Аутентификация с помощью аккаунта %{kind} прошла успешно.
|
||||
success: Аутентификация с помощью учётной записи %{kind} прошла успешно.
|
||||
passwords:
|
||||
no_token: Вы можете получить доступ к этой странице, только перейдя по ссылке в e-mail для сброса пароля. Если вы действительно перешли по такой ссылке, пожалуйста, удостоверьтесь, что ссылка была введена полностью и без изменений.
|
||||
send_instructions: Вы получите e-mail с инструкцией по сбросу пароля в течение нескольких минут.
|
||||
@ -70,22 +70,22 @@ ru:
|
||||
updated: Ваш пароль был успешно изменен. Вход выполнен.
|
||||
updated_not_active: Ваш пароль был успешно изменен.
|
||||
registrations:
|
||||
destroyed: До свидания! Ваш аккаунт был успешно удален. Мы надеемся скоро увидеть вас снова.
|
||||
destroyed: До свидания! Ваша учётная запись была успешно удалена. Мы надеемся скоро увидеть вас снова.
|
||||
signed_up: Добро пожаловать! Вы успешно зарегистрировались.
|
||||
signed_up_but_inactive: Вы успешно зарегистрировались. Тем не менее, мы не можем авторизовать вас, поскольку ваш аккаунт еще не активирован.
|
||||
signed_up_but_locked: Вы успешно зарегистрировались. Тем не менее, мы не можем авторизовать вас, поскольку ваш аккаунт заблокирован.
|
||||
signed_up_but_inactive: Вы успешно зарегистрировались. Тем не менее, мы не можем авторизовать вас, поскольку ваша учётная запись еще не активирована.
|
||||
signed_up_but_locked: Вы успешно зарегистрировались. Тем не менее, мы не можем авторизовать вас, поскольку ваша учётная запись заблокирована.
|
||||
signed_up_but_pending: На ваш e-mail адрес было отправлено письмо с ссылкой для подтверждения. После перехода по ней, мы начнём рассматривать вашу заявку. В случае подтверждения, мы вас оповестим.
|
||||
signed_up_but_unconfirmed: Сообщение со ссылкой для подтверждения было выслано на ваш адрес e-mail. Пожалуйста, пройдите по ссылке для активации вашего аккаунта.
|
||||
update_needs_confirmation: Вы успешно обновили данные учётной записи, но нам нужно подтвердить ваш новый адрес e-mail. Пожалуйста, проверьте почту и перейдите по ссылке из письма для подтверждения вашего нового адреса.
|
||||
updated: Ваш аккаунт был успешно обновлен.
|
||||
signed_up_but_unconfirmed: Сообщение со ссылкой для подтверждения было выслано на ваш адрес e-mail. Пожалуйста, пройдите по ссылке для активации вашей учётной записи.
|
||||
update_needs_confirmation: Данные учётной записи обновлены, но нам необходимо подтвердить ваш новый e-mail адрес. Проверьте почту и перейдите по ссылке из письма. Если оно не приходит, проверьте папку «спам».
|
||||
updated: Ваша учётная запись успешно обновлена.
|
||||
sessions:
|
||||
already_signed_out: Выход прошел успешно.
|
||||
signed_in: Вход прошел успешно.
|
||||
signed_out: Выход прошел успешно.
|
||||
unlocks:
|
||||
send_instructions: Вы получите e-mail с инструкцией по разблокировке вашего аккаунта в течение нескольких минут.
|
||||
send_paranoid_instructions: Если Ваш аккаунт существует, вы получите e-mail с инструкцией по его разблокировке в течение нескольких минут.
|
||||
unlocked: Ваш аккаунт был успешно разблокирован. пожалуйста, войдите для продолжения.
|
||||
send_instructions: Вы получите e-mail с инструкцией по разблокировке вашей учётной записи в течение нескольких минут.
|
||||
send_paranoid_instructions: Если ваша учётная запись существует, вы получите e-mail с инструкцией по её разблокировке в течение нескольких минут.
|
||||
unlocked: Ваша учётная запись был успешно разблокирована. Пожалуйста, войдите для продолжения.
|
||||
errors:
|
||||
messages:
|
||||
already_confirmed: уже подтвержден, пожалуйста, попробуйте войти
|
||||
|
@ -46,9 +46,11 @@ sk:
|
||||
subject: 'Mastodon: Pokyny pre obnovu hesla'
|
||||
title: Nastav nové heslo
|
||||
two_factor_disabled:
|
||||
explanation: Dvojfázové overovanie tvojho účtu bolo vypnuté. Teraz sa môžeš prihlásiť len pomocou emailu a hesla.
|
||||
subject: 'Mastodon: Dvojfázové overovanie vypnuté'
|
||||
title: 2FA vypnuté
|
||||
two_factor_enabled:
|
||||
explanation: Dvojfázové overovanie bolo zapnuté pre tvoj účet. Pre prihlásenie budeš potrebovať token vygenerovaný pre TOTP aplikáciu, ktorá je spárovaná.
|
||||
subject: 'Mastodon: Dvojfázové overovanie zapnuté'
|
||||
title: 2FA zapnuté
|
||||
two_factor_recovery_codes_changed:
|
||||
|
@ -12,12 +12,14 @@ sv:
|
||||
last_attempt: Du har ytterligare ett försök innan ditt konto blir låst.
|
||||
locked: Ditt konto är låst.
|
||||
not_found_in_database: Ogiltigt %{authentication_keys} eller lösenord.
|
||||
pending: Ditt konto granskas fortfarande.
|
||||
timeout: Din session löpte ut. Vänligen logga in igen för att fortsätta.
|
||||
unauthenticated: Du måste logga in eller registrera dig innan du fortsätter.
|
||||
unconfirmed: Du måste bekräfta din e-postadress innan du fortsätter.
|
||||
mailer:
|
||||
confirmation_instructions:
|
||||
action: Verifiera e-postadress
|
||||
action_with_app: Bekräfta och återgå till %{app}
|
||||
explanation: Du har skapat ett konto på %{host} med den här e-postadressen. Du är ett klick bort från att aktivera det. Om det inte var du ignorerar det här e-postmeddelandet.
|
||||
extra_html: Kolla gärna också <a href="%{terms_path}">instansens regler</a> och <a href="%{policy_path}">våra användarvillkor</a>.
|
||||
subject: 'Mastodon: Bekräftelsesinstruktioner för %{instance}'
|
||||
@ -36,13 +38,25 @@ sv:
|
||||
explanation: Bekräfta den nya adressen för att ändra din e-postadress.
|
||||
extra: Om den här ändringen inte initierades av dig kan du ignorerar det här e-postmeddelandet. E-postadressen för Mastodon-kontot ändras inte förrän du kommer åt länken ovan.
|
||||
subject: 'Mastodon: Bekräfta e-post för %{instance}'
|
||||
title: Verifiera e-postadressen
|
||||
title: Verifiera e-postadress
|
||||
reset_password_instructions:
|
||||
action: Ändra lösenord
|
||||
explanation: Du begärde ett nytt lösenord för ditt konto.
|
||||
extra: Om du inte begärt detta kan du ignorerar det här e-postmeddelandet. Ditt lösenord ändras inte förrän du öppnar länken ovan och skapar ett nytt.
|
||||
subject: 'Mastodon: Instruktioner för återställning av lösenord'
|
||||
title: Lösenordsåterställning
|
||||
two_factor_disabled:
|
||||
explanation: Tvåfaktorsautentisering för ditt konto har inaktiverats. Det är nu möjligt att logga in med enbart e-postadress och lösenord.
|
||||
subject: 'Mastodon: Tvåfaktorsautentisering inaktiverad'
|
||||
title: 2FA inaktiverad
|
||||
two_factor_enabled:
|
||||
explanation: Tvåfaktorsautentisering har aktiverats för ditt konto. En token som genereras av en kopplad TOTP-app kommer att krävas vid inloggning.
|
||||
subject: 'Mastodon: Tvåfaktorsautentisering aktiverad'
|
||||
title: 2FA aktiverad
|
||||
two_factor_recovery_codes_changed:
|
||||
explanation: De tidigare återställningskoderna har ogiltigförklarats och nya har genererats.
|
||||
subject: Mastodon Tvåfaktors-återställningskoder genererades på nytt
|
||||
title: 2FA-återställningskoder ändrades
|
||||
unlock_instructions:
|
||||
subject: 'Mastodon: Lås upp instruktioner'
|
||||
omniauth_callbacks:
|
||||
@ -59,7 +73,7 @@ sv:
|
||||
signed_up: Välkommen! Du har nu registrerat dig.
|
||||
signed_up_but_inactive: Du har nu registrerat dig. Vi kunde dock inte logga in dig eftersom ditt konto ännu inte är aktiverat.
|
||||
signed_up_but_locked: Du har nu registrerat dig. Vi kunde dock inte logga in eftersom ditt konto är låst.
|
||||
signed_up_but_unconfirmed: Ett meddelande med en bekräftelse länk har skickats till din e-postadress. Vänligen följ länken för att aktivera ditt konto. Kontrollera din spammapp om du inte fick det här e-postmeddelandet.
|
||||
signed_up_but_unconfirmed: Ett meddelande med en bekräftelselänk har skickats till din e-postadress. Vänligen följ länken för att aktivera ditt konto. Kontrollera din skräppostmapp om du inte fick det här e-postmeddelandet.
|
||||
update_needs_confirmation: Du har uppdaterat ditt konto med framgång, men vi måste verifiera din nya e-postadress. Vänligen kolla din email och följ bekräfta länken för att bekräfta din nya e-postadress. Kontrollera din spammapp om du inte fick det här e-postmeddelandet.
|
||||
updated: Ditt konto har uppdaterats utan problem.
|
||||
sessions:
|
||||
|
@ -2,7 +2,7 @@
|
||||
ta:
|
||||
devise:
|
||||
confirmations:
|
||||
confirmed: உங்கள் இணைய முகவரி வெற்றிகரமாக உறுதி செய்யப்பட்டது.
|
||||
confirmed: தங்கள் மின்னஞ்சல் முகவரி வெற்றிகரமாக உறுதி செய்யப்பட்டது.
|
||||
send_instructions: இன்னும் சற்று நேரத்தில் உங்கள் இணைய முகவரியை உறுதி செய்வது எப்படி என்று விளக்கும் இணைய செய்தி ஒன்று வந்தடையும். வரவில்லை எனில், தயவு செய்து உங்கள் ஸ்பாம் பெட்டியைப் பார்க்கவும்.
|
||||
send_paranoid_instructions: உங்கள் இணைய முகவரி எங்கள் தகவல்ப் பெட்டகத்தில் இருந்தால், இன்னும் சற்று நேரத்தில் உங்கள் இணைய முகவரியை உறுதி செய்வது எப்படி என்று விளக்கும் இணைய செய்தி ஒன்று வந்தடையும். வரவில்லை எனில், தயவு செய்து உங்கள் ஸ்பாம் பெட்டியைப் பார்க்கவும்.
|
||||
failure:
|
||||
@ -23,14 +23,26 @@ ta:
|
||||
explanation: இந்த இணைய முகவரி கொண்டு %{host}-இல் நீங்கள் ஒரு கணக்கை உருவாக்கியுள்ளீர்கள். அதை செயல்படுத்துவதில் இருந்து ஒரு சொடக்கு தூரத்தில் உள்ளீர்கள். நீங்கள் அதை செய்யவில்லை என்றால், இந்த செய்தியை கண்டுகொள்ள வேண்டாம்.
|
||||
title: மின்னஞ்சல் முகவரியை உறுதிபடுத்தவும்
|
||||
email_changed:
|
||||
subject: 'மாஸ்டோடான்: மின்னஞ்சல் மாற்றப்பட்டது'
|
||||
title: புதிய மின்னஞ்சல் முகவரி
|
||||
password_change:
|
||||
explanation: உங்கள் கணக்கிற்கான கடவுச்சொல் மாற்றப்பட்டது.
|
||||
subject: 'மாஸ்டோடான்: கடவுச்சொல் மாற்றப்பட்டது'
|
||||
title: கடவுச்சொல் மாற்றப்பட்டது
|
||||
reconfirmation_instructions:
|
||||
explanation: உங்கள் மின்னஞ்சல் முகவரியை மாற்ற மீண்டும் ஒரு முறை உறுதி செய்யவும்.
|
||||
subject: 'மாஸ்டோடான்: %{instance}-கான மின்னஞ்சலை உறுதிசெய்யவும்'
|
||||
title: மின்னஞ்சல் முகவரியை உறுதிபடுத்தவும்
|
||||
reset_password_instructions:
|
||||
action: கடவுச்சொல்லை மாற்றவும்
|
||||
explanation: உங்கள் கணக்கிற்குப் புதிய கடவுச்சொல்லைக் கோரியிருக்கிறீர்கள்.
|
||||
subject: 'மாஸ்டோடான்: கடவுச்சொல்லை மீட்டமைப்பதற்கான வழிமுறைகள்'
|
||||
title: கடவுச்சொல் மீட்டமைப்பு
|
||||
two_factor_disabled:
|
||||
title: 2FA உபயோகத்தில் இல்லை
|
||||
registrations:
|
||||
destroyed: நன்றி! தங்கள் கணக்கு வெற்றிகரமாக ரத்து செய்யப்பட்டது. தங்கள் வருகையை மீண்டும் எதிர்நோக்கியிருக்கிறோம்.
|
||||
signed_up: வருக! நீங்கள் வெற்றிகரமாகப் பதிவுசெய்துவிட்டீர்கள்.
|
||||
unlocks:
|
||||
send_instructions: இன்னும் சற்று நேரத்தில் மின்னஞ்சல் முகவரியை உறுதி செய்வதற்கான விளக்கம், உங்கள் மின்னஞ்சலை வந்தடையும். வரவில்லை எனில், தயவு செய்து உங்கள் Spam பெட்டியைப் பார்க்கவும்.
|
||||
errors:
|
||||
|
@ -3,12 +3,13 @@ th:
|
||||
devise:
|
||||
confirmations:
|
||||
confirmed: ยืนยันที่อยู่อีเมลของคุณสำเร็จ
|
||||
send_instructions: คุณจะได้รับอีเมลพร้อมวิธีการยืนยันที่อยู่อีเมลของคุณในไม่กี่นาที หากคุณไม่ได้รับอีเมล กรุณาตรวจสอบโฟลเดอร์สแปมของคุณ
|
||||
send_paranoid_instructions: หากที่อยู่อีเมลของคุณอยู่ในระบบของเรา คุณจะได้รับอีเมลพร้อมวิธีการยืนยันที่อยู่อีเมลของคุณในไม่กี่นาที หากคุณไม่ได้รับอีเมล กรุณาตรวจสอบโฟลเดอร์สแปมของคุณ
|
||||
send_instructions: คุณจะได้รับอีเมลพร้อมคำแนะนำวิธีการยืนยันที่อยู่อีเมลของคุณในไม่กี่นาที โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
|
||||
send_paranoid_instructions: หากมีที่อยู่อีเมลของคุณอยู่ในฐานข้อมูลของเรา คุณจะได้รับอีเมลพร้อมคำแนะนำวิธีการยืนยันที่อยู่อีเมลของคุณในไม่กี่นาที โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
|
||||
failure:
|
||||
already_authenticated: คุณได้ลงชื่อเข้าอยู่แล้ว
|
||||
inactive: ยังไม่ได้เปิดใช้งานบัญชีของคุณ
|
||||
invalid: "%{authentication_keys} หรือรหัสผ่านไม่ถูกต้อง"
|
||||
last_attempt: คุณลองได้อีกหนึ่งครั้งก่อนที่บัญชีของคุณจะถูกล็อค
|
||||
locked: มีการล็อคบัญชีของคุณอยู่
|
||||
not_found_in_database: "%{authentication_keys} หรือรหัสผ่านไม่ถูกต้อง"
|
||||
pending: บัญชีของคุณยังอยู่ระหว่างการตรวจทาน
|
||||
@ -19,36 +20,53 @@ th:
|
||||
confirmation_instructions:
|
||||
action: ยืนยันที่อยู่อีเมล
|
||||
action_with_app: ยืนยันแล้วกลับไปยัง %{app}
|
||||
explanation: คุณได้สร้างบัญชีใหม่บน %{host} ด้วยที่อยู่อีเมลนี้ เหลืออีกเพียงคลิกเดียวก็สามารถเปิดใช้งานบัญชีได้แล้ว หากไม่ใช่คุณ กรุณาปฏิเสธอีเมลนี้
|
||||
extra_html: นอกจากนี้ กรุณาอ่าน<a href="%{terms_path}">กฎของเซิร์ฟเวอร์</a>และ<a href="%{policy_path}">เงื่อนไขการให้บริการ</a>
|
||||
explanation: คุณได้สร้างบัญชีใน %{host} ด้วยที่อยู่อีเมลนี้ คุณเหลืออีกคลิกเดียวเพื่อเปิดใช้งานบัญชี หากนี่ไม่ใช่คุณ โปรดเพิกเฉยต่ออีเมลนี้
|
||||
explanation_when_pending: คุณได้สมัครเพื่อขอคำเชิญสู่ %{host} ด้วยที่อยู่อีเมลนี้ เมื่อคุณยืนยันที่อยู่อีเมลของคุณ เราจะตรวจทานใบสมัครของคุณ คุณสามารถเข้าสู่ระบบเพื่อเปลี่ยนรายละเอียดของคุณหรือลบบัญชีของคุณ แต่คุณไม่สามารถเข้าถึงฟังก์ชันส่วนใหญ่ได้จนกว่าจะมีการอนุมัติบัญชีของคุณ หากมีการปฏิเสธใบสมัครของคุณ จะเอาข้อมูลของคุณออก ดังนั้นจึงไม่ต้องมีการกระทำเพิ่มเติมจากคุณ หากนี่ไม่ใช่คุณ โปรดเพิกเฉยต่ออีเมลนี้
|
||||
extra_html: นอกจากนี้โปรดตรวจสอบ <a href="%{terms_path}">กฎของเซิร์ฟเวอร์</a> และ <a href="%{policy_path}">เงื่อนไขการให้บริการของเรา</a>
|
||||
subject: 'Mastodon: คำแนะนำการยืนยันสำหรับ %{instance}'
|
||||
title: ยืนยันที่อยู่อีเมล
|
||||
email_changed:
|
||||
explanation: 'กำลังเปลี่ยนที่อยู่อีเมลสำหรับบัญชีของคุณเป็น:'
|
||||
extra: หากคุณไม่ได้เปลี่ยนอีเมลของคุณ อาจเป็นไปได้ว่ามีใครสักคนได้รับสิทธิเข้าถึงบัญชีของคุณ โปรดเปลี่ยนรหัสผ่านของคุณทันทีหรือติดต่อผู้ดูแลเซิร์ฟเวอร์หากคุณถูกล็อคออกจากบัญชีของคุณ
|
||||
subject: 'Mastodon: เปลี่ยนอีเมลแล้ว'
|
||||
title: ที่อยู่อีเมลใหม่
|
||||
password_change:
|
||||
explanation: เปลี่ยนรหัสผ่านสำหรับบัญชีของคุณแล้ว
|
||||
extra: หากคุณไม่ได้เปลี่ยนรหัสผ่านของคุณ อาจเป็นไปได้ว่ามีใครสักคนได้รับสิทธิเข้าถึงบัญชีของคุณ โปรดเปลี่ยนรหัสผ่านของคุณทันทีหรือติดต่อผู้ดูแลเซิร์ฟเวอร์หากคุณถูกล็อคออกจากบัญชีของคุณ
|
||||
subject: 'Mastodon: เปลี่ยนรหัสผ่านแล้ว'
|
||||
title: เปลี่ยนรหัสผ่านแล้ว
|
||||
reconfirmation_instructions:
|
||||
explanation: ยืนยันที่อยู่ใหม่เพื่อเปลี่ยนอีเมลของคุณ
|
||||
extra: หากการเปลี่ยนแปลงนี้ไม่ได้ทำโดยคุณ โปรดเพิกเฉยต่ออีเมลนี้ ที่อยู่อีเมลสำหรับบัญชี Mastodon จะไม่เปลี่ยนแปลงจนกว่าคุณจะเข้าถึงลิงก์ด้านบน
|
||||
subject: 'Mastodon: ยืนยันอีเมลสำหรับ %{instance}'
|
||||
title: ยืนยันที่อยู่อีเมล
|
||||
reset_password_instructions:
|
||||
action: เปลี่ยนรหัสผ่าน
|
||||
explanation: คุณได้ขอรหัสผ่านใหม่สำหรับบัญชีของคุณ
|
||||
extra: หากคุณไม่ได้ขอสิ่งนี้ โปรดเพิกเฉยต่ออีเมลนี้ รหัสผ่านของคุณจะไม่เปลี่ยนแปลงจนกว่าคุณจะเข้าถึงลิงก์ด้านบนและสร้างรหัสผ่านใหม่
|
||||
subject: 'Mastodon: คำแนะนำการตั้งรหัสผ่านใหม่'
|
||||
title: ตั้งรหัสผ่านใหม่
|
||||
title: การตั้งรหัสผ่านใหม่
|
||||
two_factor_disabled:
|
||||
subject: 'Mastodon: ปิดการยืนยันสองขั้นตอนแล้ว'
|
||||
explanation: ปิดใช้งานการรับรองความถูกต้องด้วยสองปัจจัยสำหรับบัญชีของคุณแล้ว การเข้าสู่ระบบสามารถทำได้โดยใช้ที่อยู่อีเมลและรหัสผ่านเท่านั้น
|
||||
subject: 'Mastodon: ปิดใช้งานการรับรองความถูกต้องด้วยสองปัจจัยแล้ว'
|
||||
title: ปิดใช้งาน 2FA แล้ว
|
||||
two_factor_enabled:
|
||||
subject: 'Mastodon: เปิดการยืนยันสองขั้นตอนแล้ว'
|
||||
explanation: เปิดใช้งานการรับรองความถูกต้องด้วยสองปัจจัยสำหรับบัญชีของคุณแล้ว จะต้องใช้โทเคนที่สร้างโดยแอป TOTP ที่จับคู่สำหรับการเข้าสู่ระบบ
|
||||
subject: 'Mastodon: เปิดใช้งานการรับรองความถูกต้องด้วยสองปัจจัยแล้ว'
|
||||
title: เปิดใช้งาน 2FA แล้ว
|
||||
two_factor_recovery_codes_changed:
|
||||
explanation: ยกเลิกรหัสกู้คืนก่อนหน้าและสร้างรหัสใหม่แล้ว
|
||||
subject: 'Mastodon: สร้างรหัสกู้คืนสองปัจจัยใหม่แล้ว'
|
||||
title: เปลี่ยนรหัสกู้คืน 2FA แล้ว
|
||||
unlock_instructions:
|
||||
subject: 'Mastodon: คำแนะนำการปลดล็อค'
|
||||
omniauth_callbacks:
|
||||
failure: ไม่สามารถรับรองความถูกต้องของคุณจาก %{kind} เนื่องจาก "%{reason}"
|
||||
success: รับรองความถูกต้องจากบัญชี %{kind} สำเร็จ
|
||||
passwords:
|
||||
no_token: คุณไม่สามารถเข้าถึงหน้านี้โดยไม่ได้มาจากอีเมลการตั้งรหัสผ่านใหม่ หากคุณมาจากอีเมลการตั้งรหัสผ่านใหม่ โปรดตรวจสอบให้แน่ใจว่าคุณได้ใช้ URL แบบเต็มที่ให้มา
|
||||
send_instructions: หากมีที่อยู่อีเมลของคุณอยู่ในฐานข้อมูลของเรา คุณจะได้รับลิงก์กู้คืนรหัสผ่านที่ที่อยู่อีเมลของคุณในไม่กี่นาที โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
|
||||
send_paranoid_instructions: หากมีที่อยู่อีเมลของคุณอยู่ในฐานข้อมูลของเรา คุณจะได้รับลิงก์กู้คืนรหัสผ่านที่ที่อยู่อีเมลของคุณในไม่กี่นาที โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
|
||||
updated: เปลี่ยนรหัสผ่านของคุณสำเร็จ ตอนนี้คุณได้ลงชื่อเข้าแล้ว
|
||||
updated_not_active: เปลี่ยนรหัสผ่านของคุณสำเร็จ
|
||||
registrations:
|
||||
@ -56,17 +74,24 @@ th:
|
||||
signed_up: ยินดีต้อนรับ! คุณได้ลงทะเบียนสำเร็จ
|
||||
signed_up_but_inactive: คุณได้ลงทะเบียนสำเร็จ อย่างไรก็ตามเราไม่สามารถลงชื่อคุณเข้าเนื่องจากยังไม่ได้เปิดใช้งานบัญชีของคุณ
|
||||
signed_up_but_locked: คุณได้ลงทะเบียนสำเร็จ อย่างไรก็ตามเราไม่สามารถลงชื่อคุณเข้าเนื่องจากมีการล็อคบัญชีของคุณอยู่
|
||||
signed_up_but_pending: ส่งข้อความพร้อมลิงก์ยืนยันไปยังที่อยู่อีเมลของคุณแล้ว หลังจากคุณคลิกลิงก์ เราจะตรวจทานใบสมัครของคุณ คุณจะได้รับการแจ้งเตือนหากใบสมัครได้รับการอนุมัติ
|
||||
signed_up_but_pending: ส่งข้อความพร้อมลิงก์ยืนยันไปยังที่อยู่อีเมลของคุณแล้ว หลังจากคุณคลิกลิงก์ เราจะตรวจทานใบสมัครของคุณ คุณจะได้รับการแจ้งเตือนหากมีการอนุมัติใบสมัคร
|
||||
signed_up_but_unconfirmed: ส่งข้อความพร้อมลิงก์ยืนยันไปยังที่อยู่อีเมลของคุณแล้ว โปรดไปตามลิงก์เพื่อเปิดใช้งานบัญชีของคุณ โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
|
||||
update_needs_confirmation: คุณได้อัปเดตบัญชีของคุณสำเร็จ แต่เราจำเป็นต้องยืนยันที่อยู่อีเมลใหม่ของคุณ โปรดตรวจสอบอีเมลของคุณแล้วไปตามลิงก์ยืนยันเพื่อยืนยันที่อยู่อีเมลใหม่ของคุณ โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
|
||||
updated: อัปเดตบัญชีของคุณสำเร็จ
|
||||
sessions:
|
||||
already_signed_out: ลงชื่อออกสำเร็จ
|
||||
signed_in: ลงชื่อเข้าสำเร็จ
|
||||
signed_out: ลงชื่อออกสำเร็จ
|
||||
unlocks:
|
||||
send_instructions: คุณจะได้รับอีเมลพร้อมวิธีการปลดล็อคบัญชีของคุณในไม่กี่นาที หากคุณไม่ได้รับอีเมล กรุณาตรวจสอบโฟลเดอร์สแปมของคุณ
|
||||
send_instructions: คุณจะได้รับอีเมลพร้อมคำแนะนำวิธีการปลดล็อคบัญชีของคุณในไม่กี่นาที โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
|
||||
send_paranoid_instructions: หากมีบัญชีของคุณอยู่ คุณจะได้รับอีเมลพร้อมคำแนะนำวิธีการปลดล็อคบัญชีในไม่กี่นาที โปรดตรวจสอบโฟลเดอร์สแปมของคุณหากคุณไม่ได้รับอีเมลนี้
|
||||
unlocked: ปลดล็อคบัญชีของคุณสำเร็จ โปรดลงชื่อเข้าเพื่อดำเนินการต่อ
|
||||
errors:
|
||||
messages:
|
||||
already_confirmed: ยืนยันอยู่แล้ว โปรดลองลงชื่อเข้า
|
||||
confirmation_period_expired: ต้องได้รับการยืนยันภายใน %{period} โปรดขออีเมลใหม่
|
||||
expired: หมดอายุแล้ว โปรดขออีเมลใหม่
|
||||
not_found: ไม่พบ
|
||||
not_locked: ไม่ได้ล็อคอยู่
|
||||
not_saved:
|
||||
other: "%{count} ข้อผิดพลาดได้ห้ามไม่ให้บันทึก %{resource} นี้:"
|
||||
|
@ -21,6 +21,7 @@ uk:
|
||||
action: Підтвердити адресу електронної пошти
|
||||
action_with_app: Підтвердити та повернутися до %{app}
|
||||
explanation: Ви створили обліковий запис на %{host} з цією адресою електронної пошти, і зараз на відстані одного кліку від його активації. Якщо це були не ви, проігноруйте цього листа, будь ласка.
|
||||
explanation_when_pending: Ви подали заявку на запрошення до %{host} з цією адресою електронної пошти. Після підтвердження адреси ми розглянемо вашу заявку. Ви можете увійти, щоб змінити ваші дані або видалити свій обліковий запис, але Ви не зможете отримати доступ до більшості функцій, поки Ваш обліковий запис не буде схвалено. Якщо вашу заявку буде відхилено, ваші дані будуть видалені, тож вам не потрібно буде нічого робити. Якщо це були не ви, просто проігноруйте цей лист.
|
||||
extra_html: Також перегляньте <a href="%{terms_path}">правила серверу</a> та <a href="%{policy_path}">умови використання</a>.
|
||||
subject: 'Mastodon: Інструкції для підтвердження %{instance}'
|
||||
title: Підтвердити адресу електронної пошти
|
||||
|
@ -1 +1,5 @@
|
||||
---
|
||||
ur:
|
||||
devise:
|
||||
confirmations:
|
||||
confirmed: آپکے ایمیل اڈرش (email address) کی تصدیق کر لی گئی ہے.
|
||||
|
97
config/locales/devise.vi.yml
Normal file
97
config/locales/devise.vi.yml
Normal file
@ -0,0 +1,97 @@
|
||||
---
|
||||
vi:
|
||||
devise:
|
||||
confirmations:
|
||||
confirmed: Địa chỉ email của bạn đã được xác nhận thành công.
|
||||
send_instructions: Bạn sẽ nhận được một email với các hướng dẫn về cách xác nhận địa chỉ email của bạn trong vài phút. Vui lòng kiểm tra thư mục thư rác nếu bạn không nhận được email này.
|
||||
send_paranoid_instructions: Nếu địa chỉ email của bạn tồn tại trong cơ sở dữ liệu của chúng tôi, bạn sẽ nhận được email có hướng dẫn cách xác nhận địa chỉ email của bạn trong vài phút. Vui lòng kiểm tra thư mục thư rác nếu bạn không nhận được email này.
|
||||
failure:
|
||||
already_authenticated: Bạn đã đăng nhập.
|
||||
inactive: Tài khoản của bạn chưa được kich hoạt.
|
||||
invalid: "%{authentication_keys} hoặc mật khẩu không hợp lệ."
|
||||
last_attempt: Bạn có thêm một lần thử trước khi tài khoản của bạn bị khóa.
|
||||
locked: Tài khoản của bạn bị khóa.
|
||||
not_found_in_database: "%{authentication_keys} hoặc mật khẩu không hợp lệ."
|
||||
pending: Tài khoản của bạn vẫn đang được xem xét.
|
||||
timeout: Phiên của bạn đã hết hạn. Vui lòng đăng nhập lại để tiếp tục.
|
||||
unauthenticated: Bạn cần đăng nhập hoặc đăng ký trước khi tiếp tục.
|
||||
unconfirmed: Bạn phải xác nhận địa chỉ email của bạn trước khi tiếp tục.
|
||||
mailer:
|
||||
confirmation_instructions:
|
||||
action: Xác nhận địa chỉ email
|
||||
action_with_app: Xác nhận và quay lại %{app}
|
||||
explanation: Bạn đã tạo một tài khoản trên %{host} với địa chỉ email này. Bạn chỉ cần một cú nhấp chuột để kích hoạt nó. Nếu đây không phải là bạn, xin vui lòng bỏ qua email này.
|
||||
explanation_when_pending: Bạn đã đăng ký lời mời đến %{host} với địa chỉ email này. Khi bạn xác nhận địa chỉ e-mail của mình, chúng tôi sẽ xem xét đơn đăng ký của bạn. Bạn có thể đăng nhập để thay đổi chi tiết hoặc xóa tài khoản của mình, nhưng bạn không thể truy cập hầu hết các chức năng cho đến khi tài khoản của bạn được chấp thuận. Nếu ứng dụng của bạn bị từ chối, dữ liệu của bạn sẽ bị xóa, do đó bạn sẽ không cần phải thực hiện thêm hành động nào nữa. Nếu đây không phải là bạn, xin vui lòng bỏ qua email này.
|
||||
extra_html: Vui lòng kiểm tra <a href="%{terms_path}">các quy tắc của máy chủ</a> và <a href="%{policy_path}">điều khoản dịch vụ của chúng tôi</a> .
|
||||
subject: 'Mastodon: Hướng dẫn xác nhận cho %{instance}'
|
||||
title: Xác nhận địa chỉ email
|
||||
email_changed:
|
||||
explanation: 'Địa chỉ email cho tài khoản của bạn đang được thay đổi thành:'
|
||||
extra: Nếu bạn không thay đổi email của mình, có khả năng ai đó đã truy cập được vào tài khoản của bạn. Vui lòng thay đổi mật khẩu của bạn ngay lập tức hoặc liên hệ với quản trị viên máy chủ nếu bạn bị khóa khỏi tài khoản của bạn.
|
||||
subject: 'Mastodon: Email đã thay đổi'
|
||||
title: Địa chỉ thư điện tử mới
|
||||
password_change:
|
||||
explanation: Mật khẩu cho tài khoản của bạn đã được thay đổi.
|
||||
extra: Nếu bạn không thay đổi mật khẩu, có khả năng ai đó đã truy cập được vào tài khoản của bạn. Vui lòng thay đổi mật khẩu của bạn ngay lập tức hoặc liên hệ với quản trị viên máy chủ nếu bạn bị khóa khỏi tài khoản của bạn.
|
||||
subject: 'Mastodon: Mật khẩu đã thay đổi'
|
||||
title: mật khẩu đã được thay đổi
|
||||
reconfirmation_instructions:
|
||||
explanation: Xác nhận địa chỉ mới để thay đổi email của bạn.
|
||||
extra: Nếu thay đổi này không phải do bạn khởi xướng, vui lòng bỏ qua email này. Địa chỉ email cho tài khoản Mastodon sẽ không thay đổi cho đến khi bạn truy cập vào liên kết ở trên.
|
||||
subject: 'Mastodon: Xác nhận email cho %{instance}'
|
||||
title: Xác nhận địa chỉ email
|
||||
reset_password_instructions:
|
||||
action: Đổi mật khẩu
|
||||
explanation: Bạn đã yêu cầu một mật khẩu mới cho tài khoản của bạn.
|
||||
extra: Nếu bạn không yêu cầu điều này, xin vui lòng bỏ qua email này. Mật khẩu của bạn sẽ không thay đổi cho đến khi bạn truy cập vào liên kết ở trên và tạo một mật khẩu mới.
|
||||
subject: 'Mastodon: Đặt lại hướng dẫn mật khẩu'
|
||||
title: Đặt lại mật khẩu
|
||||
two_factor_disabled:
|
||||
explanation: Xác thực hai yếu tố cho tài khoản của bạn đã bị vô hiệu hóa. Đăng nhập bây giờ có thể chỉ bằng địa chỉ e-mail và mật khẩu.
|
||||
subject: 'Mastodon: Xác thực hai yếu tố bị vô hiệu hóa'
|
||||
title: Vô hiệu hóa 2FA
|
||||
two_factor_enabled:
|
||||
explanation: Xác thực hai yếu tố đã được kích hoạt cho tài khoản của bạn. Mã thông báo được tạo bởi ứng dụng TOTP được ghép nối sẽ được yêu cầu để đăng nhập.
|
||||
subject: 'Mastodon: Kích hoạt xác thực hai yếu tố'
|
||||
title: Đã bật 2FA
|
||||
two_factor_recovery_codes_changed:
|
||||
explanation: Các mã khôi phục trước đó đã bị vô hiệu và các mã mới được tạo.
|
||||
subject: 'Mastodon: Mã phục hồi hai yếu tố được tạo lại'
|
||||
title: Mã khôi phục 2FA đã thay đổi
|
||||
unlock_instructions:
|
||||
subject: 'Mastodon: Hướng dẫn mở khóa'
|
||||
omniauth_callbacks:
|
||||
failure: Không thể xác thực bạn từ %{kind} vì "%{reason}".
|
||||
success: Xác thực thành công từ tài khoản %{kind}.
|
||||
passwords:
|
||||
no_token: Bạn không thể truy cập trang này mà không đến từ email đặt lại mật khẩu. Nếu bạn đến từ một email đặt lại mật khẩu, vui lòng đảm bảo rằng bạn đã sử dụng URL đầy đủ được cung cấp.
|
||||
send_instructions: Nếu địa chỉ email của bạn tồn tại trong cơ sở dữ liệu của chúng tôi, bạn sẽ nhận được liên kết khôi phục mật khẩu tại địa chỉ email của bạn sau vài phút. Vui lòng kiểm tra thư mục thư rác nếu bạn không nhận được email này.
|
||||
send_paranoid_instructions: Nếu địa chỉ email của bạn tồn tại trong cơ sở dữ liệu của chúng tôi, bạn sẽ nhận được liên kết khôi phục mật khẩu tại địa chỉ email của bạn sau vài phút. Vui lòng kiểm tra thư mục thư rác nếu bạn không nhận được email này.
|
||||
updated: Mật khẩu của bạn đã được thay đổi thành công. Bây giờ bạn đã đăng nhập.
|
||||
updated_not_active: Mật khẩu của bạn đã được thay đổi thành công.
|
||||
registrations:
|
||||
destroyed: Tạm biệt! Tài khoản của bạn đã bị hủy thành công. Mong rằng chúng tôi sẽ sớm gặp lại bạn.
|
||||
signed_up: Chào mừng bạn Bạn đã đăng ký thành công.
|
||||
signed_up_but_inactive: Bạn đã đăng ký thành công. Tuy nhiên, chúng tôi không thể đăng nhập cho bạn vì tài khoản của bạn chưa được kích hoạt.
|
||||
signed_up_but_locked: Bạn đã đăng ký thành công. Tuy nhiên, chúng tôi không thể đăng nhập cho bạn vì tài khoản của bạn bị khóa.
|
||||
signed_up_but_pending: Một tin nhắn với một liên kết xác nhận đã được gửi đến địa chỉ email của bạn. Sau khi bạn nhấp vào liên kết, chúng tôi sẽ xem xét ứng dụng của bạn. Bạn sẽ được thông báo nếu nó được chấp thuận.
|
||||
signed_up_but_unconfirmed: Một tin nhắn với một liên kết xác nhận đã được gửi đến địa chỉ email của bạn. Vui lòng theo liên kết để kích hoạt tài khoản của bạn. Vui lòng kiểm tra thư mục thư rác nếu bạn không nhận được email này.
|
||||
update_needs_confirmation: Bạn đã cập nhật tài khoản thành công, nhưng chúng tôi cần xác minh địa chỉ email mới của bạn. Vui lòng kiểm tra email của bạn và theo liên kết xác nhận để xác nhận địa chỉ email mới của bạn. Vui lòng kiểm tra thư mục thư rác nếu bạn không nhận được email này.
|
||||
updated: Tài khoản của bạn đã được cập nhật thành công.
|
||||
sessions:
|
||||
already_signed_out: Đăng xuất thành công.
|
||||
signed_in: Đã đăng nhập thành công.
|
||||
signed_out: Đăng xuất thành công.
|
||||
unlocks:
|
||||
send_instructions: Bạn sẽ nhận được một email với các hướng dẫn về cách mở khóa tài khoản của bạn trong vài phút. Vui lòng kiểm tra thư mục thư rác nếu bạn không nhận được email này.
|
||||
send_paranoid_instructions: Nếu tài khoản của bạn tồn tại, bạn sẽ nhận được email có hướng dẫn cách mở khóa trong vài phút. Vui lòng kiểm tra thư mục thư rác nếu bạn không nhận được email này.
|
||||
unlocked: Tài khoản của bạn đã được mở khóa thành công. Vui lòng đăng nhập để tiếp tục.
|
||||
errors:
|
||||
messages:
|
||||
already_confirmed: đã được xác nhận, vui lòng thử đăng nhập
|
||||
confirmation_period_expired: cần được xác nhận trong vòng %{period}, vui lòng yêu cầu một cái mới
|
||||
expired: đã hết hạn, vui lòng yêu cầu một cái mới
|
||||
not_found: không tìm thấy
|
||||
not_locked: không bị khóa
|
||||
not_saved:
|
||||
other: "%{count} lỗi đã cấm %{resource} này được lưu:"
|
@ -12,7 +12,7 @@ zh-CN:
|
||||
last_attempt: 你还有最后一次尝试机会,再次失败你的帐户将被锁定。
|
||||
locked: 你的帐户已被锁定。
|
||||
not_found_in_database: "%{authentication_keys}或密码错误。"
|
||||
pending: 你的账户仍在审核中。
|
||||
pending: 你的帐号仍在审核中。
|
||||
timeout: 你已登录超时,请重新登录。
|
||||
unauthenticated: 继续操作前请注册或者登录。
|
||||
unconfirmed: 继续操作前请先确认你的帐户。
|
||||
@ -47,12 +47,12 @@ zh-CN:
|
||||
subject: Mastodon:重置密码信息
|
||||
title: 重置密码
|
||||
two_factor_disabled:
|
||||
explanation: 账户的双重认证已禁用。现在仅使用邮箱和密码登录即可登录。
|
||||
explanation: 帐号的双重认证已禁用。现在仅使用邮箱和密码登录即可登录。
|
||||
subject: Mastodon:双重认证已禁用。
|
||||
title: 双重认证禁用
|
||||
title: 双重认证已禁用
|
||||
two_factor_enabled:
|
||||
explanation: 账户双重认证已启用。登录时将需要来自已配对的 TOTP 应用生成的验证码。
|
||||
subject: 'Mastodon: 双重验证已开启'
|
||||
explanation: 账号双重认证已启用。登录时将需要来自已配对的 TOTP 应用生成的验证码。
|
||||
subject: Mastodon:双重验证已开启
|
||||
title: 已启用双重认证
|
||||
two_factor_recovery_codes_changed:
|
||||
explanation: 之前的恢复码已失效,现已生成了新的恢复码。
|
||||
|
@ -4,17 +4,17 @@ zh-TW:
|
||||
confirmations:
|
||||
confirmed: 您的電子信箱位址已確認成功。
|
||||
send_instructions: 幾分鐘後您將收到確認信件。若未收到此信件,請檢查垃圾郵件資料夾。
|
||||
send_paranoid_instructions: 如果您的電子信箱存在於我們的資料庫,將會在幾分鐘內收到確認信。若未收到請檢查垃圾郵件資料夾。
|
||||
send_paranoid_instructions: 如果您的電子信箱存在於我們的資料庫,您將會在幾分鐘內收到確認信。若未收到請檢查垃圾郵件資料夾。
|
||||
failure:
|
||||
already_authenticated: 您已登入。
|
||||
inactive: 您的帳戶尚未啟用。
|
||||
invalid: 無效的 %{authentication_keys} 或密碼。
|
||||
last_attempt: 在帳號遭封鎖前您還有最後一次嘗試機會。
|
||||
locked: 您的帳戶已被鎖定。
|
||||
last_attempt: 在帳號鎖定前,您還有最後一次嘗試機會。
|
||||
locked: 已鎖定您的帳戶。
|
||||
not_found_in_database: 無效的 %{authentication_keys} 或密碼。
|
||||
pending: 您的帳戶仍在審核中。
|
||||
timeout: 登入階段逾時。請重新登入以繼續。
|
||||
unauthenticated: 您必須先登入或註冊以繼續使用。
|
||||
unauthenticated: 您必須先登入或註冊才能繼續使用。
|
||||
unconfirmed: 您必須先確認電子信箱才能繼續使用。
|
||||
mailer:
|
||||
confirmation_instructions:
|
||||
@ -22,7 +22,7 @@ zh-TW:
|
||||
action_with_app: 確認並返回 %{app}
|
||||
explanation: 您已經在 %{host} 上以此電子信箱位址建立了一支帳戶。您距離啟用它只剩一點之遙了。若這不是您,請忽略此信件。
|
||||
explanation_when_pending: 您使用此電子信箱位址申請了 %{host} 的邀請。當您確認電子信箱後我們將審核您的申請,而直到核准前您都無法登入。當您的申請遭拒絕,您的資料將被移除而不必做後續動作。如果這不是您,請忽略此信件。
|
||||
extra_html: 同時也請看看<a href="%{terms_path}">該伺服器的規則</a>與<a href="%{policy_path}">服務條款</a>。
|
||||
extra_html: 同時也請看看<a href="%{terms_path}">伺服器規則</a>與<a href="%{policy_path}">服務條款</a>。
|
||||
subject: Mastodon:%{instance} 確認說明
|
||||
title: 驗證電子信箱位址
|
||||
email_changed:
|
||||
@ -42,7 +42,7 @@ zh-TW:
|
||||
title: 驗證電子信箱位址
|
||||
reset_password_instructions:
|
||||
action: 變更密碼
|
||||
explanation: 您已請求設定帳號的新密碼。
|
||||
explanation: 您已請求帳戶的新密碼。
|
||||
extra: 若您並未請求,請忽略此信件。您的密碼在存取上方連結並建立新連結前不會變更。
|
||||
subject: Mastodon:重設密碼指引
|
||||
title: 重設密碼
|
||||
@ -55,14 +55,14 @@ zh-TW:
|
||||
subject: Mastodon:已啟用兩步驟驗證
|
||||
title: 已啟用 2FA
|
||||
two_factor_recovery_codes_changed:
|
||||
explanation: 上一次的復原碼已經失效,且已產生新的復原碼。
|
||||
explanation: 上一次的復原碼已經失效,且已產生新的。
|
||||
subject: Mastodon:兩步驟驗證復原碼已經重新產生
|
||||
title: 2FA 復原碼已變更
|
||||
unlock_instructions:
|
||||
subject: Mastodon:帳戶解鎖指引
|
||||
subject: Mastodon:解鎖指引
|
||||
omniauth_callbacks:
|
||||
failure: 無法透過 %{kind} 認證是否為您,因為「%{reason}」。
|
||||
success: 成功透過 %{kind} 登入帳戶。
|
||||
success: 成功透過 %{kind} 帳戶登入。
|
||||
passwords:
|
||||
no_token: 您必須透過密碼重設信件才能存取此頁面。若確實如此,請確定輸入的網址是完整的。
|
||||
send_instructions: 若電子信箱位址存在於資料庫,幾分鐘後您將在信箱中收到密碼復原連結。若未收到請檢查垃圾郵件資料夾。
|
||||
@ -92,6 +92,6 @@ zh-TW:
|
||||
confirmation_period_expired: 需要在 %{period} 內完成驗證。請重新申請
|
||||
expired: 已經過期,請重新請求
|
||||
not_found: 找不到
|
||||
not_locked: 並未被鎖定
|
||||
not_locked: 並未鎖定
|
||||
not_saved:
|
||||
other: 因 %{count} 錯誤導致 %{resource} 無法儲存:
|
||||
|
@ -38,6 +38,7 @@ ar:
|
||||
application: تطبيق
|
||||
callback_url: رابط رد النداء
|
||||
delete: حذف
|
||||
empty: ليس لديك أية تطبيقات.
|
||||
name: التسمية
|
||||
new: تطبيق جديد
|
||||
scopes: المجالات
|
||||
@ -123,6 +124,7 @@ ar:
|
||||
read: قراءة كافة بيانات حسابك
|
||||
read:accounts: معاينة معلومات الحساب
|
||||
read:blocks: رؤية الحسابات التي قمت بحجبها
|
||||
read:bookmarks: اطّلع على فواصلك المرجعية
|
||||
read:favourites: رؤية مفضلاتك
|
||||
read:filters: رؤية عوامل التصفية الخاصة بك
|
||||
read:follows: رؤية متابِعيك
|
||||
@ -135,6 +137,7 @@ ar:
|
||||
write: تغيير كافة بيانات حسابك
|
||||
write:accounts: تعديل صفحتك التعريفية
|
||||
write:blocks: حجب الحسابات و النطاقات
|
||||
write:bookmarks: الإحتفاظ بالمنشورات في الفواصل المرجعية
|
||||
write:favourites: الإعجاب بمنشورات
|
||||
write:filters: إنشاء عوامل تصفية
|
||||
write:follows: متابَعة الأشخاص
|
||||
|
@ -4,6 +4,7 @@ ast:
|
||||
attributes:
|
||||
doorkeeper/application:
|
||||
name: Nome de l'aplicación
|
||||
scopes: Ámbitos
|
||||
website: Sitiu web de l'aplicación
|
||||
errors:
|
||||
models:
|
||||
@ -19,10 +20,21 @@ ast:
|
||||
destroy: Destruyir
|
||||
edit: Editar
|
||||
submit: Unviar
|
||||
confirmations:
|
||||
destroy: "¿De xuru?"
|
||||
form:
|
||||
error: "¡Meca! Comprueba los fallos posibles del formulariu"
|
||||
help:
|
||||
native_redirect_uri: Usa %{native_redirect_uri} pa pruebes llocales
|
||||
index:
|
||||
name: Nome
|
||||
new: Aplicación nueva
|
||||
scopes: Ámbitos
|
||||
new:
|
||||
title: Aplicación nueva
|
||||
show:
|
||||
actions: Aiciones
|
||||
scopes: Ámbitos
|
||||
title: 'Aplicación: %{name}'
|
||||
authorizations:
|
||||
error:
|
||||
@ -31,19 +43,27 @@ ast:
|
||||
able_to: Va ser a
|
||||
prompt: L'aplicación %{client_name} solicitó l'accesu a la to cuenta
|
||||
show:
|
||||
title: Copia esti códigu d'autorización y apégalu na aplicación.
|
||||
title: Copia esti códigu d'autorización y apiégalu na aplicación.
|
||||
authorized_applications:
|
||||
buttons:
|
||||
revoke: Revocar
|
||||
confirmations:
|
||||
revoke: "¿De xuru?"
|
||||
index:
|
||||
application: Aplicación
|
||||
created_at: Data d'autorización
|
||||
date_format: "%H:%M:%S %d-%m-%Y"
|
||||
scopes: Ámbitos
|
||||
title: Les aplicaciones qu'autoricesti
|
||||
errors:
|
||||
messages:
|
||||
access_denied: El dueñu del recursu o'l sirvidor d'autorización ñegó la solicitú.
|
||||
invalid_token:
|
||||
expired: Caducó'l pase d'accesu
|
||||
revoked: Revocóse'l pase d'accesu
|
||||
unknown: El pase d'accesu nun ye válidu
|
||||
server_error: El sirvidor d'autorizaciones alcontró una condición inesperada qu'evitó que cumpliera la solicitú.
|
||||
temporarily_unavailable: Anguaño'l sirvidor d'autorizaciones nun ye a remanar la solicitú pola mor d'una sobrecarga temporal o caltenimientu del sirvidor.
|
||||
unauthorized_client: El veceru nun ta autorizáu pa facer esta solicitú usando esti métodu.
|
||||
unsupported_response_type: El sirvidor d'autorización nun sofita esta triba de rempuesta.
|
||||
layouts:
|
||||
@ -52,13 +72,21 @@ ast:
|
||||
applications: Aplicaciones
|
||||
oauth2_provider: Fornidor d'OAuth2
|
||||
scopes:
|
||||
admin:read: lleer tolos datos del sirvidor
|
||||
admin:read:accounts: lleer la información sensible de toles cuentes
|
||||
admin:read:reports: lleer la información sensible de tolos informe y cuentes informaes
|
||||
admin:write: modificar tolos datos del sirvidor
|
||||
read: lleer tolos datos de la to cuenta
|
||||
read:accounts: ver información de cuentes
|
||||
read:blocks: ver quién bloquies
|
||||
read:bookmarks: ver los tos marcadores
|
||||
read:favourites: ver los tos favoritos
|
||||
read:filters: ver les tos peñeres
|
||||
read:follows: ver quién sigues
|
||||
read:lists: ver les tos llistes
|
||||
read:mutes: ver quién silencies
|
||||
read:notifications: ver los tos avisos
|
||||
read:reports: ver los tos informes
|
||||
read:statuses: ver tolos estaos
|
||||
write: modificar los datos de la to cuenta
|
||||
write:accounts: modificar el to perfil
|
||||
@ -66,7 +94,7 @@ ast:
|
||||
write:filters: crear peñeres
|
||||
write:follows: siguir a xente
|
||||
write:lists: crear llistes
|
||||
write:media: xubir ficheros de medios
|
||||
write:media: xubir ficheros multimedia
|
||||
write:mutes: silenciar xente y conversaciones
|
||||
write:notifications: llimpiar los tos avisos
|
||||
write:statuses: espublizar estaos
|
||||
|
@ -38,6 +38,7 @@ ca:
|
||||
application: Aplicació
|
||||
callback_url: URL de retorn
|
||||
delete: Suprimeix
|
||||
empty: No tens cap aplicació.
|
||||
name: Nom
|
||||
new: Aplicació nova
|
||||
scopes: Àmbits
|
||||
@ -63,7 +64,7 @@ ca:
|
||||
prompt: L'aplicació %{client_name} sol⋅licita tenir accés al teu compte
|
||||
title: Cal autorizació
|
||||
show:
|
||||
title: Copia aquest coddi d'autorització i enganxa'l en l'aplicació.
|
||||
title: Copia aquest codi d'autorització i enganxa'l en l'aplicació.
|
||||
authorized_applications:
|
||||
buttons:
|
||||
revoke: Revoca
|
||||
@ -124,7 +125,8 @@ ca:
|
||||
push: rebre notificacions push del teu compte
|
||||
read: llegir les dades del teu compte
|
||||
read:accounts: veure informació dels comptes
|
||||
read:blocks: veure els teus bloqueijos
|
||||
read:blocks: veure els teus bloqueigs
|
||||
read:bookmarks: veure els teus marcadors
|
||||
read:favourites: veure els teus favorits
|
||||
read:filters: veure els teus filtres
|
||||
read:follows: veure els teus seguiments
|
||||
@ -133,11 +135,12 @@ ca:
|
||||
read:notifications: veure les teves notificacions
|
||||
read:reports: veure els teus informes
|
||||
read:search: cerca en nom teu
|
||||
read:statuses: veure tots els toots
|
||||
read:statuses: veure tots els tuts
|
||||
write: publicar en el teu nom
|
||||
write:accounts: modifica el teu perfil
|
||||
write:blocks: bloqueja comptes i dominis
|
||||
write:favourites: afavoreix toots
|
||||
write:bookmarks: publicacions a marcadors
|
||||
write:favourites: afavoreix tuts
|
||||
write:filters: crear filtres
|
||||
write:follows: seguir usuaris
|
||||
write:lists: crear llistes
|
||||
@ -145,4 +148,4 @@ ca:
|
||||
write:mutes: silencia usuaris i converses
|
||||
write:notifications: esborra les teves notificacions
|
||||
write:reports: informe d’altres persones
|
||||
write:statuses: publicar toots
|
||||
write:statuses: publicar tuts
|
||||
|
@ -38,6 +38,7 @@ co:
|
||||
application: Applicazione
|
||||
callback_url: URL di richjama
|
||||
delete: Toglie
|
||||
empty: Ùn avete micca d'applicazione.
|
||||
name: Nome
|
||||
new: Applicazione nova
|
||||
scopes: Scopi
|
||||
@ -125,6 +126,7 @@ co:
|
||||
read: leghje tutte l’infurmazioni di u vostru contu
|
||||
read:accounts: Vede l'infurmazione di i conti
|
||||
read:blocks: vede i vostri blucchimi
|
||||
read:bookmarks: vede i vostri segnalibri
|
||||
read:favourites: vede i vostri favuriti
|
||||
read:filters: vede i vostri filtri
|
||||
read:follows: vede i vostri abbunamenti
|
||||
@ -137,6 +139,7 @@ co:
|
||||
write: mudificà i dati di u vostru contu
|
||||
write:accounts: mudificà u prufile
|
||||
write:blocks: bluccà conti è dumini
|
||||
write:bookmarks: segnà statuti
|
||||
write:favourites: aghjustà statuti à i favuriti
|
||||
write:filters: creà filtri
|
||||
write:follows: siguità conti
|
||||
|
@ -14,8 +14,8 @@ cs:
|
||||
redirect_uri:
|
||||
fragment_present: nesmí obsahovat fragment.
|
||||
invalid_uri: musí být platné URI.
|
||||
relative_uri: musí být apsolutní URI.
|
||||
secured_uri: musí být URI HTTPS/SSL.
|
||||
relative_uri: musí být absolutní URI.
|
||||
secured_uri: musí být HTTPS/SSL URI.
|
||||
doorkeeper:
|
||||
applications:
|
||||
buttons:
|
||||
@ -25,19 +25,20 @@ cs:
|
||||
edit: Upravit
|
||||
submit: Odeslat
|
||||
confirmations:
|
||||
destroy: Jste si jistý/á?
|
||||
destroy: Opravdu?
|
||||
edit:
|
||||
title: Upravit aplikaci
|
||||
form:
|
||||
error: A jéje! Zkontrolujte svůj formulář kvůli případným chybám
|
||||
error: A jéje! Zkontrolujte ve formuláři případné chyby
|
||||
help:
|
||||
native_redirect_uri: Pro místní testy použijte %{native_redirect_uri}
|
||||
redirect_uri: Jedno URI na každý řádek
|
||||
scopes: Oddělujte rozsahy mezerami. Pro použití výchozích rozsahů zanechte prázdné.
|
||||
scopes: Oddělujte rozsahy mezerami. Pro použití výchozích rozsahů ponechte prázdné.
|
||||
index:
|
||||
application: Aplikace
|
||||
callback_url: Zpáteční URL
|
||||
delete: Smazat
|
||||
empty: Nemáte žádné aplikace.
|
||||
name: Název
|
||||
new: Nová aplikace
|
||||
scopes: Rozsahy
|
||||
@ -50,7 +51,7 @@ cs:
|
||||
application_id: Klientský klíč
|
||||
callback_urls: Zpáteční URL
|
||||
scopes: Rozsahy
|
||||
secret: Klientské tajemství
|
||||
secret: Klientský secret
|
||||
title: 'Aplikace: %{name}'
|
||||
authorizations:
|
||||
buttons:
|
||||
@ -68,7 +69,7 @@ cs:
|
||||
buttons:
|
||||
revoke: Zamítnout
|
||||
confirmations:
|
||||
revoke: Jste si jistý/á?
|
||||
revoke: Opravdu?
|
||||
index:
|
||||
application: Aplikace
|
||||
created_at: Autorizováno
|
||||
@ -77,14 +78,14 @@ cs:
|
||||
title: Vaše autorizované aplikace
|
||||
errors:
|
||||
messages:
|
||||
access_denied: Vlastník zdroje či autorizační server zamítl požadavek.
|
||||
access_denied: Vlastník zdroje či autorizační server žádost zamítl.
|
||||
credential_flow_not_configured: Proud Resource Owner Password Credentials selhal, protože Doorkeeper.configure.resource_owner_from_credentials nebylo nakonfigurováno.
|
||||
invalid_client: Ověření klienta selhalo kvůli neznámému klientovi, chybějící klientské autentizaci či nepodporované autentizační metodě.
|
||||
invalid_grant: Poskytnuté oprávnění je neplatné, vypršelé, zamítnuté, neshoduje se s URI přesměrování použitým v požadavku o autorizaci, nebo bylo uděleno jinému klientu.
|
||||
invalid_redirect_uri: Přesměrovací URI není platné.
|
||||
invalid_request: Požadavku chybí pžadovaný parametr, obsahuje nepodporovanou hodnotu parametru, či je jinak malformovaný.
|
||||
invalid_grant: Poskytnuté oprávnění je neplatné, vypršela jeho platnost, bylo zamítnuto, neshoduje se s URI přesměrování použitým v požadavku o autorizaci, nebo bylo uděleno jinému klientu.
|
||||
invalid_redirect_uri: URI pro přesměrování není platné.
|
||||
invalid_request: Požadavku chybí povinný parametr, obsahuje nepodporovanou hodnotu parametru, či je jinak špatné formulovaný.
|
||||
invalid_resource_owner: Poskytnuté přihlašovací údaje vlastníka zdroje nejsou platné, nebo vlastník zdroje nemůže být nalezen
|
||||
invalid_scope: Požadovaný rozsah je neplatný, neznámý, nebo malformovaný.
|
||||
invalid_scope: Požadovaný rozsah je neplatný, neznámý, nebo špatně formulovaný.
|
||||
invalid_token:
|
||||
expired: Přístupový token vypršel
|
||||
revoked: Přístupový token byl zamítnut
|
||||
@ -93,8 +94,8 @@ cs:
|
||||
server_error: Autorizační server se setkal s neočekávanou chybou, která mu zabránila ve vykonání požadavku.
|
||||
temporarily_unavailable: Autorizační server vás nyní nemůže obsloužit kvůli dočasnému přetížení či údržbě serveru.
|
||||
unauthorized_client: Klient není autorizován k vykonání tohoto požadavku touto metodou.
|
||||
unsupported_grant_type: Tento typ oprávnění není podporován autorizačním serverem.
|
||||
unsupported_response_type: Autorizační server nepodporuje tento typ odpovědi.
|
||||
unsupported_grant_type: Tento typ oprávnění není autorizačním serverem podporován.
|
||||
unsupported_response_type: Autorizační server tento typ odpovědi nepodporuje.
|
||||
flash:
|
||||
applications:
|
||||
create:
|
||||
@ -119,30 +120,32 @@ cs:
|
||||
admin:read:reports: číst citlivé informace všech nahlášení a nahlášených účtů
|
||||
admin:write: měnit všechna data na serveru
|
||||
admin:write:accounts: provádět moderátorské akce s účty
|
||||
admin:write:reports: provádět moderátorské akce s nahlášeními
|
||||
admin:write:reports: provádět moderátorské akce s hlášeními
|
||||
follow: upravovat vztahy mezi profily
|
||||
push: přijímat vaše push oznámení
|
||||
read: vidět všechna data vašeho účtu
|
||||
read:accounts: vidět informace o účtech
|
||||
read:blocks: vidět vaše blokace
|
||||
read:favourites: vidět vaše oblíbení
|
||||
read:bookmarks: vidět vaše záložky
|
||||
read:favourites: vidět vaše oblíbené příspěvky
|
||||
read:filters: vidět vaše filtry
|
||||
read:follows: vidět vaše sledování
|
||||
read:lists: vidět vaše seznamy
|
||||
read:mutes: vidět vaše skrytí
|
||||
read:notifications: vidět vaše oznámení
|
||||
read:reports: vidět vaše nahlášení
|
||||
read:reports: vidět vaše hlášení
|
||||
read:search: vyhledávat za vás
|
||||
read:statuses: vidět všechny tooty
|
||||
write: měnit všechna data vašeho účtu
|
||||
write:accounts: měnit váš profil
|
||||
write:blocks: blokovat účty a domény
|
||||
write:favourites: oblibovat si tooty
|
||||
write:bookmarks: přidávat tooty do záložek
|
||||
write:favourites: označovat tooty jako oblíbené
|
||||
write:filters: vytvářet filtry
|
||||
write:follows: sledovat lidi
|
||||
write:lists: vytvářet seznamy
|
||||
write:media: nahrávat mediální soubory
|
||||
write:mutes: skrývat lidi a konverzace
|
||||
write:notifications: vymazávat vaše oznámení
|
||||
write:notifications: mazat vaše oznámení
|
||||
write:reports: nahlašovat jiné uživatele
|
||||
write:statuses: publikovat tooty
|
||||
write:statuses: zvařejňovat tooty
|
||||
|
@ -125,6 +125,7 @@ cy:
|
||||
read: darllen holl ddata eich cyfrif
|
||||
read:accounts: gweld gwybodaeth y cyfrif
|
||||
read:blocks: gweld eich blociau
|
||||
read:bookmarks: gweld eich tudalnodau
|
||||
read:favourites: gweld eich ffefrynnau
|
||||
read:filters: gweld eich hidlwyr
|
||||
read:follows: gweld eich dilynwyr
|
||||
@ -137,6 +138,7 @@ cy:
|
||||
write: addasu holl ddata eich cyfri
|
||||
write:accounts: addasu eich proffil
|
||||
write:blocks: blocio cyfrifon a parthau
|
||||
write:bookmarks: statwsau tudalnod
|
||||
write:favourites: hoff dŵtiau
|
||||
write:filters: creu hidlwyr
|
||||
write:follows: dilyn pobl
|
||||
|
@ -61,7 +61,7 @@ da:
|
||||
new:
|
||||
able_to: Den vil være i stand til
|
||||
prompt: Applikationen %{client_name} anmoder om adgang til din konto
|
||||
title: Godkendelse påkræves
|
||||
title: Godkendelse påkrævet
|
||||
show:
|
||||
title: Kopiere denne godkendelseskode og indsæt den i applikationen.
|
||||
authorized_applications:
|
||||
@ -125,6 +125,7 @@ da:
|
||||
read: læse alle din kontos data
|
||||
read:accounts: se konto oplysninger
|
||||
read:blocks: se dine blokeringer
|
||||
read:bookmarks: se dine bogmærker
|
||||
read:favourites: se dine favoritter
|
||||
read:filters: se dine filtre
|
||||
read:follows: se hvem du følger
|
||||
@ -137,6 +138,7 @@ da:
|
||||
write: ændre din kontos data
|
||||
write:accounts: ændre din profil
|
||||
write:blocks: bloker konti og domæner
|
||||
write:bookmarks: bogmærk statusser
|
||||
write:favourites: favoriser statusser
|
||||
write:filters: opret filtre
|
||||
write:follows: følg folk
|
||||
|
@ -38,6 +38,7 @@ de:
|
||||
application: Anwendung
|
||||
callback_url: Callback-URL
|
||||
delete: Löschen
|
||||
empty: Du hast keine Anwendungen.
|
||||
name: Name
|
||||
new: Neue Anwendung
|
||||
scopes: Befugnisse
|
||||
@ -125,6 +126,7 @@ de:
|
||||
read: all deine Daten lesen
|
||||
read:accounts: deine Konteninformationen einsehen
|
||||
read:blocks: deine Blockaden einsehen
|
||||
read:bookmarks: deine Lesezeichen lesen
|
||||
read:favourites: deine Favoriten ansehen
|
||||
read:filters: deine Filter ansehen
|
||||
read:follows: sehen, wem du folgst
|
||||
@ -137,6 +139,7 @@ de:
|
||||
write: all deine Benutzerdaten verändern
|
||||
write:accounts: dein Profil bearbeiten
|
||||
write:blocks: Domains und Konten blockieren
|
||||
write:bookmarks: Lesezeichen hinzufügen
|
||||
write:favourites: Beiträge favorisieren
|
||||
write:filters: Filter erstellen
|
||||
write:follows: Leuten folgen
|
||||
|
@ -38,6 +38,7 @@ el:
|
||||
application: Εφαρμογή
|
||||
callback_url: URL επιστροφής (Callback)
|
||||
delete: Διαγραφή
|
||||
empty: Δεν έχετε αιτήσεις.
|
||||
name: Όνομα
|
||||
new: Νέα εφαρμογή
|
||||
scopes: Εύρος εφαρμογής
|
||||
@ -125,6 +126,7 @@ el:
|
||||
read: να διαβάζει όλα τα στοιχεία του λογαριασμού σου
|
||||
read:accounts: να βλέπει τα στοιχεία λογαριασμών
|
||||
read:blocks: να βλέπει τους αποκλεισμένους σου
|
||||
read:bookmarks: εμφάνιση των σελιδοδεικτών σας
|
||||
read:favourites: να βλέπει τα αγαπημένα σου
|
||||
read:filters: να βλέπει τα φίλτρα σου
|
||||
read:follows: να βλέπει ποιους ακολουθείς
|
||||
@ -137,6 +139,7 @@ el:
|
||||
write: να αλλάζει όλα τα στοιχεία του λογαριασμού σου
|
||||
write:accounts: να αλλάζει το προφίλ σου
|
||||
write:blocks: να μπλοκάρει λογαριασμούς και τομείς
|
||||
write:bookmarks: προσθήκη σελιδοδεικτών
|
||||
write:favourites: να σημειώνει δημοσιεύσεις ως αγαπημένες
|
||||
write:filters: να δημιουργεί φίλτρα
|
||||
write:follows: να ακολουθεί ανθρώπους
|
||||
|
@ -38,6 +38,7 @@ eo:
|
||||
application: Aplikaĵo
|
||||
callback_url: Revena URL
|
||||
delete: Forigi
|
||||
empty: Vi havas neniun aplikaĵon.
|
||||
name: Nomo
|
||||
new: Nova aplikaĵo
|
||||
scopes: Ampleksoj
|
||||
@ -116,13 +117,14 @@ eo:
|
||||
scopes:
|
||||
admin:read: legu ĉiujn datumojn en la servilo
|
||||
admin:read:accounts: legas senteman informacion de ĉiuj kontoj
|
||||
admin:read:reports: legas senteman informacion de ĉiuj raportoj kun raportis kontojn
|
||||
admin:read:reports: legas konfidencajn informojn de ĉiuj signaloj kaj signalitaj kontoj
|
||||
admin:write: modifu ĉiujn datumojn en la servilo
|
||||
follow: ŝanĝi rilatojn al aliaj kontoj
|
||||
push: ricevi viajn puŝ-sciigojn
|
||||
read: legi ĉiujn datumojn de via konto
|
||||
read:accounts: vidi la informojn de la konto
|
||||
read:blocks: vidi viajn blokojn
|
||||
read:bookmarks: vidi viajn legosignojn
|
||||
read:favourites: vidi viajn stelumojn
|
||||
read:filters: vidi viajn filtrilojn
|
||||
read:follows: vidi viajn sekvatojn
|
||||
@ -135,6 +137,7 @@ eo:
|
||||
write: ŝanĝi ĉiujn datumojn de via konto
|
||||
write:accounts: ŝanĝi vian profilon
|
||||
write:blocks: bloki kontojn kaj domajnojn
|
||||
write:bookmarks: aldoni mesaĝojn al la legosignoj
|
||||
write:favourites: stelumitaj mesaĝoj
|
||||
write:filters: krei filtrilojn
|
||||
write:follows: sekvi homojn
|
||||
|
@ -38,6 +38,7 @@ es-AR:
|
||||
application: Aplicación
|
||||
callback_url: Dirección web de respuesta ("callback")
|
||||
delete: Eliminar
|
||||
empty: No tenés aplicaciones.
|
||||
name: Nombre
|
||||
new: Nueva aplicación
|
||||
scopes: Ámbitos
|
||||
@ -125,6 +126,7 @@ es-AR:
|
||||
read: leer todos los datos de tu cuenta
|
||||
read:accounts: ver información de cuentas
|
||||
read:blocks: ver qué cuentas bloqueaste
|
||||
read:bookmarks: mirá tus marcadores
|
||||
read:favourites: ver tus favoritos
|
||||
read:filters: ver tus filtros
|
||||
read:follows: ver qué cuentas seguís
|
||||
@ -137,6 +139,7 @@ es-AR:
|
||||
write: modificar todos los datos de tu cuenta
|
||||
write:accounts: modificar tu perfil
|
||||
write:blocks: bloquear cuentas y dominios
|
||||
write:bookmarks: estados del marcador
|
||||
write:favourites: toots favoritos
|
||||
write:filters: crear filtros
|
||||
write:follows: seguir cuentas
|
||||
|
@ -38,6 +38,7 @@ es:
|
||||
application: Aplicación
|
||||
callback_url: URL de callback
|
||||
delete: Eliminar
|
||||
empty: No tienes aplicaciones.
|
||||
name: Nombre
|
||||
new: Nueva aplicación
|
||||
scopes: Ámbitos
|
||||
@ -125,6 +126,7 @@ es:
|
||||
read: leer los datos de tu cuenta
|
||||
read:accounts: ver información de cuentas
|
||||
read:blocks: ver a quién has bloqueado
|
||||
read:bookmarks: ver tus marcadores
|
||||
read:favourites: ver tus favoritos
|
||||
read:filters: ver tus filtros
|
||||
read:follows: ver a quién sigues
|
||||
@ -137,7 +139,8 @@ es:
|
||||
write: publicar en tu nombre
|
||||
write:accounts: modifica tu perfil
|
||||
write:blocks: bloquear cuentas y dominios
|
||||
write:favourites: toots favoritos
|
||||
write:bookmarks: guardar estados como marcadores
|
||||
write:favourites: estados favoritos
|
||||
write:filters: crear filtros
|
||||
write:follows: seguir usuarios
|
||||
write:lists: crear listas
|
||||
|
@ -38,6 +38,7 @@ et:
|
||||
application: Rakendus
|
||||
callback_url: Ümbersuunamise URL
|
||||
delete: Kustuta
|
||||
empty: Teil pole rakendusi.
|
||||
name: Nimi
|
||||
new: Uus rakendus
|
||||
scopes: Ulatused
|
||||
@ -125,6 +126,7 @@ et:
|
||||
read: lugeda kogu Teie konto andmeid
|
||||
read:accounts: näha konto informatsiooni
|
||||
read:blocks: näha Teie blokeeringuid
|
||||
read:bookmarks: näha järjehoidjaid
|
||||
read:favourites: näha Teie lemmikuid
|
||||
read:filters: näha Teie filtreid
|
||||
read:follows: näha Teie jälgimisi
|
||||
@ -137,6 +139,7 @@ et:
|
||||
write: redigeerida kogu Teie konto andmeid
|
||||
write:accounts: redigeerida Teie profiili
|
||||
write:blocks: blokeerida kontosid ja domeene
|
||||
write:bookmarks: lisada staatusele järjehoidjaid
|
||||
write:favourites: lisada staatuseid lemmikuks
|
||||
write:filters: luua filtreid
|
||||
write:follows: jälgida inimesi
|
||||
|
@ -38,6 +38,7 @@ eu:
|
||||
application: Aplikazioa
|
||||
callback_url: Itzulera URLa
|
||||
delete: Ezabatu
|
||||
empty: Ez duzu eskaerarik.
|
||||
name: Izena
|
||||
new: Aplikazio berria
|
||||
scopes: Irismena
|
||||
@ -125,6 +126,7 @@ eu:
|
||||
read: irakurri zure kontuko datu guztiak
|
||||
read:accounts: ikusi kontuaren informazioa
|
||||
read:blocks: ikusi zure blokeoak
|
||||
read:bookmarks: ikusi zure laster-markak
|
||||
read:favourites: ikusi zure gogokoak
|
||||
read:filters: ikusi zure iragazkiak
|
||||
read:follows: ikusi zuk jarraitutakoak
|
||||
@ -137,6 +139,7 @@ eu:
|
||||
write: kontuaren datu guztiak aldatzea
|
||||
write:accounts: zure profila aldatzea
|
||||
write:blocks: kontuak eta domeinuak blokeatzea
|
||||
write:bookmarks: mezuen laster-marka
|
||||
write:favourites: gogoko mezuak
|
||||
write:filters: sortu iragazkiak
|
||||
write:follows: jarraitu jendea
|
||||
|
@ -5,8 +5,8 @@ fa:
|
||||
doorkeeper/application:
|
||||
name: نام برنامه
|
||||
redirect_uri: نشانی تغییرمسیر
|
||||
scopes: محدوده
|
||||
website: وبگاه برنامه
|
||||
scopes: حوزهها
|
||||
website: پایگاه وب برنامه
|
||||
errors:
|
||||
models:
|
||||
doorkeeper/application:
|
||||
@ -23,6 +23,7 @@ fa:
|
||||
cancel: لغو
|
||||
destroy: پاک کردن
|
||||
edit: ویرایش
|
||||
submit: ثبت
|
||||
confirmations:
|
||||
destroy: آیا مطمئن هستید؟
|
||||
edit:
|
||||
@ -37,6 +38,7 @@ fa:
|
||||
application: برنامه
|
||||
callback_url: نشانی Callback
|
||||
delete: حذف
|
||||
empty: شما هیچ برنامهای ندارید.
|
||||
name: نام
|
||||
new: برنامهٔ تازه
|
||||
scopes: دامنهها
|
||||
@ -45,6 +47,7 @@ fa:
|
||||
new:
|
||||
title: برنامهٔ تازه
|
||||
show:
|
||||
actions: کنشها
|
||||
application_id: کلید کلاینت
|
||||
callback_urls: نشانیهای Callabck
|
||||
scopes: دامنهها
|
||||
@ -70,17 +73,29 @@ fa:
|
||||
index:
|
||||
application: برنامه
|
||||
created_at: مجازشده از
|
||||
date_format: "%Y-%m-%d%H:%M:%S"
|
||||
scopes: اجازهها
|
||||
title: برنامههای مجاز
|
||||
errors:
|
||||
messages:
|
||||
access_denied: دارندهٔ منبع یا سرور اجازه دهنده درخواست را نپذیرفت.
|
||||
credential_flow_not_configured: جریان اعتبارنامهٔ گذرواژهٔ مالک منبع به دلیل پیکربندی نشده بودن Doorkeeper.configure.resource_owner_from_credentials شکست خورد.
|
||||
invalid_client: تأیید هویت کارخواه به دلیل کارخواه ناشناخته، عدم وجود تأیید هویت کاره یا روش تأیید هویت پشتیبانینشده شکست خورد.
|
||||
invalid_grant: اعطای دسترسی فراهم شده نامعتبر، منقضی یا نامطابق با نشانی بازگشت استفادهشده در درخواست تأیید هویت بوده و یا برای کارخواهی دیگر صادر شده است.
|
||||
invalid_redirect_uri: نشانی بازگشت موجود، معتبر نیست.
|
||||
invalid_request: درخواست فاقد یک پارامتر ضروری، شامل یک پارامتر پشتیبانینشده یا بههم ریخته است.
|
||||
invalid_resource_owner: اعتبارنامهٔ مالک منبع فراهمشده نامعتبر بوده یا مالک منبع نتوانست پیدا شود
|
||||
invalid_scope: حوزهٔ درخواستی نامعتبر، ناشناخته یا دستکاریشده است.
|
||||
invalid_token:
|
||||
expired: کد دسترسی منقضی شده است
|
||||
revoked: کد دسترسی فسخ شده است
|
||||
unknown: کد دسترسی معتبر نیست
|
||||
resource_owner_authenticator_not_configured: یافتن مالک منبع به دلیل پیکربندینشده بودن Doorkeeper.configure.resource_owner_authenticator شکست خورد.
|
||||
server_error: خطای پیشبینینشدهای برای سرور اجازهدهنده رخ داد که جلوی اجرای این درخواست را گرفت.
|
||||
temporarily_unavailable: سرور اجازهدهنده به دلیل بار زیاد یا تعمیرات سرور هماینک نمیتواند درخواست شما را بررسی کند.
|
||||
unauthorized_client: کارخواه مجاز نیست این درخواست را با استفاده از این روش انجام دهد.
|
||||
unsupported_grant_type: گونهٔ اعطای تأیید هویت توسّط کارساز تأیید هویتپشتیبانی نمیشود.
|
||||
unsupported_response_type: کارساز تأیید هویت این گونه از پاسخ را پشتیبانی نمیکند.
|
||||
flash:
|
||||
applications:
|
||||
create:
|
||||
@ -100,7 +115,37 @@ fa:
|
||||
application:
|
||||
title: درخواست اجازهٔ OAuth
|
||||
scopes:
|
||||
admin:read: خواندن تمام دادهها روی کارساز
|
||||
admin:read:accounts: خواندن اطّلاعات حساس از همهٔ حسابها
|
||||
admin:read:reports: خواندن اطّلاعات حساس از همهٔ گزارشها و حسابهای گزارششده
|
||||
admin:write: تغییر تمام دادهها روی کارساز
|
||||
admin:write:accounts: انجام کنش مدیریتی روی حسابها
|
||||
admin:write:reports: انجام کنش مدیریتی روی گزارشها
|
||||
follow: پیگیری، مسدودسازی، لغو مسدودسازی، و لغو پیگیری حسابها
|
||||
push: برای حساب خود اعلانهای لحظهای دریافت کنید
|
||||
read: خواندن اطلاعات حساب شما
|
||||
read:accounts: دیدن اطّلاعات حساب
|
||||
read:blocks: دیدن انسدادهایتان
|
||||
read:bookmarks: دیدن نشانکهایتان
|
||||
read:favourites: دیدن برگزیدههایتان
|
||||
read:filters: دیدن پالایههایتان
|
||||
read:follows: دیدن پیگیریهایتان
|
||||
read:lists: دیدن فهرستهایتان
|
||||
read:mutes: دیدن خموشیهایتان
|
||||
read:notifications: دیدن آگاهیهایتان
|
||||
read:reports: دیدن گزارشهایتان
|
||||
read:search: حستوجو از سمت خودتان
|
||||
read:statuses: دیدن همهٔ وضعیتها
|
||||
write: انتشار مطالب از طرف شما
|
||||
write:accounts: تغییر نمایهتان
|
||||
write:blocks: انسداد حسابها و دامنهها
|
||||
write:bookmarks: نشانکگذاری وضعیتها
|
||||
write:favourites: برگزیدن وضعیتها
|
||||
write:filters: ایحاد پالایشها
|
||||
write:follows: پیگیری افراد
|
||||
write:lists: ایجاد فهرستها
|
||||
write:media: بارگذاری پروندههای رسانه
|
||||
write:mutes: خموش کردن افراد و گفتوگوها
|
||||
write:notifications: پامسازی آگاهیهایتان
|
||||
write:reports: گزارش دیگر افراد
|
||||
write:statuses: انتشار وضعیتها
|
||||
|
@ -33,14 +33,14 @@ fr:
|
||||
help:
|
||||
native_redirect_uri: Utiliser %{native_redirect_uri} pour les tests locaux
|
||||
redirect_uri: Utiliser une ligne par URL
|
||||
scopes: Séparer les portées avec des espaces. Laisser vide pour utiliser les portées par défaut.
|
||||
scopes: Séparer les permissions avec des espaces. Laisser vide pour utiliser les portées par défaut.
|
||||
index:
|
||||
application: Application
|
||||
callback_url: URL de retour d’appel
|
||||
delete: Effacer
|
||||
name: Nom
|
||||
new: Nouvelle application
|
||||
scopes: Portées
|
||||
scopes: Permissions
|
||||
show: Voir
|
||||
title: Vos applications
|
||||
new:
|
||||
@ -49,7 +49,7 @@ fr:
|
||||
actions: Actions
|
||||
application_id: ID de l’application
|
||||
callback_urls: URL du retour d’appel
|
||||
scopes: Portées
|
||||
scopes: Permissions
|
||||
secret: Secret
|
||||
title: 'Application : %{name}'
|
||||
authorizations:
|
||||
@ -73,7 +73,7 @@ fr:
|
||||
application: Application
|
||||
created_at: Créé le
|
||||
date_format: "%d-%m-%Y %H:%M:%S"
|
||||
scopes: permissions
|
||||
scopes: Permissions
|
||||
title: Vos applications autorisées
|
||||
errors:
|
||||
messages:
|
||||
@ -84,7 +84,7 @@ fr:
|
||||
invalid_redirect_uri: L’URL de redirection n’est pas valide.
|
||||
invalid_request: La requête omet un paramètre requis, inclut une valeur de paramètre non prise en charge ou est autrement mal formée.
|
||||
invalid_resource_owner: Les identifiants fournis par le propriétaire de la ressource ne sont pas valides ou le propriétaire de la ressource ne peut être trouvé
|
||||
invalid_scope: La portée demandée n’est pas valide, est inconnue ou mal formée.
|
||||
invalid_scope: La permission demandée est invalide, inconnue ou mal formée.
|
||||
invalid_token:
|
||||
expired: Le jeton d’accès a expiré
|
||||
revoked: Le jeton d’accès a été révoqué
|
||||
@ -119,30 +119,32 @@ fr:
|
||||
admin:read:reports: lire les informations sensibles de tous les signalements et des comptes signalés
|
||||
admin:write: modifier toutes les données sur le serveur
|
||||
admin:write:accounts: effectuer des actions de modération sur les comptes
|
||||
admin:write:reports: effectuer des actions de modération sur les singnalements
|
||||
follow: modifier les relations avec les comptes
|
||||
admin:write:reports: effectuer des actions de modération sur les signalements
|
||||
follow: modifier les relations du compte
|
||||
push: recevoir vos notifications poussées
|
||||
read: lire toutes les données de votre compte
|
||||
read:accounts: voir les informations du compte
|
||||
read:blocks: voir vos bloquages
|
||||
read:accounts: voir les informations des comptes
|
||||
read:blocks: voir vos blocages
|
||||
read:bookmarks: voir vos marque-pages
|
||||
read:favourites: voir vos favoris
|
||||
read:filters: voir vos filtres
|
||||
read:follows: voir vos suivis
|
||||
read:follows: voir vos abonnements
|
||||
read:lists: voir vos listes
|
||||
read:mutes: voir vos masquages
|
||||
read:notifications: voir vos notifications
|
||||
read:reports: voir vos rapports
|
||||
read:reports: voir vos signalements
|
||||
read:search: rechercher en votre nom
|
||||
read:statuses: voir tous les statuts
|
||||
write: modifier toutes les données de votre compte
|
||||
write:accounts: modifier votre profil
|
||||
write:blocks: bloquer des comptes et des domaines
|
||||
write:favourites: statuts favoris
|
||||
write:bookmarks: statuts des marque-pages
|
||||
write:favourites: mettre des statuts en favori
|
||||
write:filters: créer des filtres
|
||||
write:follows: suivre les gens
|
||||
write:follows: suivre des personnes
|
||||
write:lists: créer des listes
|
||||
write:media: téléverser des fichiers-média
|
||||
write:media: téléverser des fichiers média
|
||||
write:mutes: masquer des gens et des conversations
|
||||
write:notifications: nettoyer vos notifications
|
||||
write:reports: rapporter d’autres personnes
|
||||
write:reports: signaler d’autres personnes
|
||||
write:statuses: publier des statuts
|
||||
|
@ -38,6 +38,7 @@ gl:
|
||||
application: Aplicativo
|
||||
callback_url: URL de chamada
|
||||
delete: Eliminar
|
||||
empty: Non tes aplicacións.
|
||||
name: Nome
|
||||
new: Novo aplicativo
|
||||
scopes: Permisos
|
||||
@ -125,6 +126,7 @@ gl:
|
||||
read: ler todos os datos da súa conta
|
||||
read:accounts: ver información das contas
|
||||
read:blocks: ver a quen bloquea
|
||||
read:bookmarks: aquí tes os marcadores
|
||||
read:favourites: ver as súas favoritas
|
||||
read:filters: ver os seus filtros
|
||||
read:follows: ver a quen segue
|
||||
@ -137,6 +139,7 @@ gl:
|
||||
write: modificar todos os datos da súa conta
|
||||
write:accounts: modificar o seu perfil
|
||||
write:blocks: bloquear contas e dominios
|
||||
write:bookmarks: marca os estados
|
||||
write:favourites: estados favoritos
|
||||
write:filters: crear filtros
|
||||
write:follows: seguir usuarias
|
||||
|
@ -125,6 +125,7 @@ hu:
|
||||
read: fiókod adatainak olvasása
|
||||
read:accounts: fiók adatainak megtekintése
|
||||
read:blocks: letiltások megtekintése
|
||||
read:bookmarks: könyvjelzőid megtekintése
|
||||
read:favourites: kedvencek megtekintése
|
||||
read:filters: szűrök megtekintése
|
||||
read:follows: követések megtekintése
|
||||
@ -137,6 +138,7 @@ hu:
|
||||
write: fiókod adatainak megváltoztatása
|
||||
write:accounts: profilod megváltoztatása
|
||||
write:blocks: fiókok és domainek letiltása
|
||||
write:bookmarks: könyvjelzők állapota
|
||||
write:favourites: tülkök kedvencnek jelölése
|
||||
write:filters: szűrők létrehozása
|
||||
write:follows: mások követése
|
||||
|
@ -38,6 +38,7 @@ id:
|
||||
application: Aplikasi
|
||||
callback_url: URL Callback
|
||||
delete: Hapus
|
||||
empty: Anda tidak punya aplikasi.
|
||||
name: Nama
|
||||
new: Aplikasi baru
|
||||
scopes: Cakupan
|
||||
@ -125,6 +126,7 @@ id:
|
||||
read: membaca data pada akun anda
|
||||
read:accounts: lihat informasi akun
|
||||
read:blocks: lihat blokiran Anda
|
||||
read:bookmarks: lihat markah Anda
|
||||
read:favourites: lihat favorit Anda
|
||||
read:filters: lihat saringan Anda
|
||||
read:follows: lihat yang Anda ikuti
|
||||
@ -137,6 +139,7 @@ id:
|
||||
write: memposting sebagai anda
|
||||
write:accounts: ubah profil Anda
|
||||
write:blocks: blokir akun dan domain
|
||||
write:bookmarks: status markah
|
||||
write:favourites: status favorit
|
||||
write:filters: buat saringan
|
||||
write:follows: ikuti orang
|
||||
|
140
config/locales/doorkeeper.is.yml
Normal file
140
config/locales/doorkeeper.is.yml
Normal file
@ -0,0 +1,140 @@
|
||||
---
|
||||
is:
|
||||
activerecord:
|
||||
attributes:
|
||||
doorkeeper/application:
|
||||
name: Heiti forrits
|
||||
redirect_uri: Slóð endurbeiningar
|
||||
scopes: Gildissvið
|
||||
website: Vefsvæði forrits
|
||||
errors:
|
||||
models:
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
redirect_uri:
|
||||
fragment_present: má ekki innihalda brot.
|
||||
invalid_uri: verður að vera gild URI-slóð.
|
||||
relative_uri: verður að vera algild URI-slóð.
|
||||
secured_uri: verður að vera HTTPS/SSL URI-slóð.
|
||||
doorkeeper:
|
||||
applications:
|
||||
buttons:
|
||||
authorize: Heimila
|
||||
cancel: Hætta við
|
||||
destroy: Eyðileggja
|
||||
edit: Breyta
|
||||
submit: Senda inn
|
||||
confirmations:
|
||||
destroy: Ertu viss?
|
||||
edit:
|
||||
title: Breyta forriti
|
||||
form:
|
||||
error: Úbbs! Athugaðu með mögulegar villur í útfyllingarreitum
|
||||
help:
|
||||
native_redirect_uri: Notaðu %{native_redirect_uri} fyrir staðværar prófanir
|
||||
redirect_uri: Nota eina línu á hverja URI-slóð
|
||||
scopes: Aðgreindu gildissviðin með bilum. Skildu þetta eftir autt til að nota sjálfgefin gildissvið.
|
||||
index:
|
||||
application: Forrit
|
||||
callback_url: URL-slóð baksvörunar (callback)
|
||||
delete: Eyða
|
||||
name: Heiti
|
||||
new: Nýtt forrit
|
||||
scopes: Gildissvið
|
||||
show: Sýna
|
||||
title: Forritin þín
|
||||
new:
|
||||
title: Nýtt forrit
|
||||
show:
|
||||
actions: Aðgerðir
|
||||
application_id: Lykill biðlara
|
||||
callback_urls: URL-slóðir baksvörunar (callback)
|
||||
scopes: Gildissvið
|
||||
secret: Leynilykill biðlara
|
||||
title: 'Forrit: %{name}'
|
||||
authorizations:
|
||||
buttons:
|
||||
authorize: Heimila
|
||||
deny: Neita
|
||||
error:
|
||||
title: Villa kom upp
|
||||
new:
|
||||
able_to: Það mun geta
|
||||
prompt: Forritið %{client_name} biður um aðgang að notandaaðgangnum þínum
|
||||
title: Auðkenning er nauðsynleg
|
||||
show:
|
||||
title: Afritaðu þennan auðkenningarkóða og límdu hann inn hjá forritinu.
|
||||
authorized_applications:
|
||||
buttons:
|
||||
revoke: Afturkalla
|
||||
confirmations:
|
||||
revoke: Ertu viss?
|
||||
index:
|
||||
application: Forrit
|
||||
created_at: Heimilað
|
||||
date_format: "%Y-%m-%d %H:%M:%S"
|
||||
scopes: Gildissvið
|
||||
title: Heimiluðu forritin þín
|
||||
errors:
|
||||
messages:
|
||||
access_denied: Eigandi tilfangs eða auðkenningarþjónn höfnuðu beininni.
|
||||
invalid_redirect_uri: Endurbeiningarslóðin sem fylgdi er ekki gild.
|
||||
invalid_scope: Umbeðið gildissvið er ógilt, óþekkt eða rangt uppsett.
|
||||
invalid_token:
|
||||
expired: Auðkenningarteiknið er útrunnið
|
||||
revoked: Auðkenningarteiknið var aturkallað
|
||||
unknown: Auðkenningarteiknið er ógilt
|
||||
unsupported_response_type: Auðkenningarþjónninn styður ekki þessa tegund svars.
|
||||
flash:
|
||||
applications:
|
||||
create:
|
||||
notice: Forrit útbúið.
|
||||
destroy:
|
||||
notice: Forriti eytt.
|
||||
update:
|
||||
notice: Forrit uppfært.
|
||||
authorized_applications:
|
||||
destroy:
|
||||
notice: Forrit afturkallað.
|
||||
layouts:
|
||||
admin:
|
||||
nav:
|
||||
applications: Forrit
|
||||
oauth2_provider: OAuth þjónusta
|
||||
application:
|
||||
title: Krafist er OAuth auðkenningar við að
|
||||
scopes:
|
||||
admin:read: lesa öll gögn á netþjóninum
|
||||
admin:read:accounts: lesa viðkvæmar upplýsingar á öllum notendaaðgöngum
|
||||
admin:read:reports: lesa viðkvæmar upplýsingar í öllum skýrslum og kærðum notendaaðgöngum
|
||||
admin:write: breyta öllum gögnum á netþjóninum
|
||||
admin:write:accounts: framkvæma umsjónaraðgerðir á notendaaðganga
|
||||
admin:write:reports: framkvæma umsjónaraðgerðir á kærur
|
||||
follow: breyta venslum aðgangs
|
||||
push: taka á móti ýti-tilkynningum til þín
|
||||
read: lesa öll gögn á notandaaðgangnum þínum
|
||||
read:accounts: sjá upplýsingar í notendaaðgöngum
|
||||
read:blocks: skoða útilokanirnar þínar
|
||||
read:bookmarks: skoða bókamerki
|
||||
read:favourites: skoða eftirlætin þín
|
||||
read:filters: skoða síurnar þínar
|
||||
read:follows: sjá hverjum þú fylgist með
|
||||
read:lists: skoða listana þína
|
||||
read:mutes: skoða hverja þú þaggar
|
||||
read:notifications: sjá tilkynningarnar þínar
|
||||
read:reports: skoða skýrslurnar þína
|
||||
read:search: leita fyrir þína hönd
|
||||
read:statuses: sjá allar stöðufærslur
|
||||
write: breyta öllum gögnum á notandaaðgangnum þínum
|
||||
write:accounts: breyta notandasniðinu þínu
|
||||
write:blocks: útiloka notandaaðganga og lén
|
||||
write:bookmarks: bókamerkja stöðufærslur
|
||||
write:favourites: setja stöðufærslur í eftirlæti
|
||||
write:filters: útbúa síur
|
||||
write:follows: fylgjast með fólki
|
||||
write:lists: búa til lista
|
||||
write:media: senda inn myndefnisskrár
|
||||
write:mutes: þagga niður í fólki og samtölum
|
||||
write:notifications: hreinsa tilkynningarnar þínar
|
||||
write:reports: kæra annað fólk
|
||||
write:statuses: gefa út stöður
|
@ -38,6 +38,7 @@ it:
|
||||
application: Applicazione
|
||||
callback_url: URL di callback
|
||||
delete: Elimina
|
||||
empty: Non hai applicazioni.
|
||||
name: Nome
|
||||
new: Nuova applicazione
|
||||
scopes: Visibilità
|
||||
@ -125,6 +126,7 @@ it:
|
||||
read: leggere tutte le informazioni del tuo account
|
||||
read:accounts: vedere informazioni sull'account
|
||||
read:blocks: vedere i tuoi blocchi
|
||||
read:bookmarks: vedi i tuoi preferiti
|
||||
read:favourites: vedere i tuoi preferiti
|
||||
read:filters: vedere i tuoi filtri
|
||||
read:follows: vedere i tuoi seguiti
|
||||
@ -137,6 +139,7 @@ it:
|
||||
write: modificare tutti i dati del tuo account
|
||||
write:accounts: modificare il tuo profilo
|
||||
write:blocks: bloccare account e domini
|
||||
write:bookmarks: aggiungi post ai preferiti
|
||||
write:favourites: segnare status come preferiti
|
||||
write:filters: creare filtri
|
||||
write:follows: seguire persone
|
||||
|
@ -38,6 +38,7 @@ ja:
|
||||
application: アプリ
|
||||
callback_url: コールバックURL
|
||||
delete: 削除
|
||||
empty: アプリがありません
|
||||
name: 名前
|
||||
new: 新規アプリ
|
||||
scopes: アクセス権
|
||||
@ -125,6 +126,7 @@ ja:
|
||||
read: アカウントのすべてのデータの読み取り
|
||||
read:accounts: アカウント情報の読み取り
|
||||
read:blocks: ブロックの読み取り
|
||||
read:bookmarks: ブックマークを見る
|
||||
read:favourites: お気に入りの読み取り
|
||||
read:filters: フィルターの読み取り
|
||||
read:follows: フォローの読み取り
|
||||
@ -137,6 +139,7 @@ ja:
|
||||
write: アカウントのすべてのデータの変更
|
||||
write:accounts: プロフィールの変更
|
||||
write:blocks: ユーザーのブロックやドメインの非表示
|
||||
write:bookmarks: トゥートのブックマーク登録
|
||||
write:favourites: トゥートのお気に入り登録
|
||||
write:filters: フィルターの変更
|
||||
write:follows: あなたの代わりにフォロー、アンフォロー
|
||||
|
104
config/locales/doorkeeper.kab.yml
Normal file
104
config/locales/doorkeeper.kab.yml
Normal file
@ -0,0 +1,104 @@
|
||||
---
|
||||
kab:
|
||||
activerecord:
|
||||
attributes:
|
||||
doorkeeper/application:
|
||||
name: Isem n usnas
|
||||
redirect_uri: URI n uwelleh
|
||||
website: Asmel web n usnas
|
||||
errors:
|
||||
models:
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
redirect_uri:
|
||||
fragment_present: ur yezmir ad yegber afrur.
|
||||
invalid_uri: ilaq ad tili d tansa URL tameɣtut.
|
||||
relative_uri: ilaq ad yili d URI amagdaz.
|
||||
secured_uri: ilaq URI ad yili HTTPS/SSL.
|
||||
doorkeeper:
|
||||
applications:
|
||||
buttons:
|
||||
authorize: Ssireg
|
||||
cancel: Sefsex
|
||||
destroy: Hudd
|
||||
edit: Ẓreg
|
||||
submit: Azen
|
||||
confirmations:
|
||||
destroy: Tetḥeqqeḍ?
|
||||
edit:
|
||||
title: Ẓreg asnas
|
||||
form:
|
||||
error: Ay ay! Senqed tiferkit-inek ma ulac deg-s tuccḍiwin
|
||||
help:
|
||||
native_redirect_uri: Seqdec %{native_redirect_uri} i yisekyaden idiganen
|
||||
redirect_uri: Seqdec yiwen n ujerrid i yal URI
|
||||
index:
|
||||
application: Asnas
|
||||
callback_url: URL n tririt n wawal
|
||||
delete: Kkes
|
||||
name: Isem
|
||||
new: Asnas amaynut
|
||||
show: Ẓer
|
||||
title: Isnasen-ik
|
||||
new:
|
||||
title: Asnas amaynut
|
||||
show:
|
||||
actions: Tigawin
|
||||
application_id: ID n usnas
|
||||
callback_urls: URL n tririt n wawal
|
||||
title: 'Asnas: %{name}'
|
||||
authorizations:
|
||||
buttons:
|
||||
authorize: Ssireg
|
||||
deny: Ggami
|
||||
error:
|
||||
title: Tella-d tuccḍa
|
||||
new:
|
||||
able_to: Asnas-agi yezmer
|
||||
prompt: Eǧǧ i %{client_name} ad yekcem ɣer umiḍan-ik
|
||||
show:
|
||||
title: Nɣel tangalt n wurag sakkin senteḍ-itt deg usnas.
|
||||
authorized_applications:
|
||||
confirmations:
|
||||
revoke: Tetḥeqqeḍ?
|
||||
index:
|
||||
application: Asnas
|
||||
created_at: Yettussireg
|
||||
date_format: "%d-%m-%Y %H:%M:%S"
|
||||
errors:
|
||||
messages:
|
||||
invalid_redirect_uri: URI n uwelleh mačči d ameɣtu.
|
||||
flash:
|
||||
applications:
|
||||
create:
|
||||
notice: Asnas yettwarna-d.
|
||||
destroy:
|
||||
notice: Asnan yettwakkes.
|
||||
update:
|
||||
notice: Asnan yettwalqem.
|
||||
layouts:
|
||||
admin:
|
||||
nav:
|
||||
applications: Isnasen
|
||||
scopes:
|
||||
admin:read: ɣeṛ akk isefka ɣef uqeddac
|
||||
admin:write: ẓreg akk isefka ɣef uqeddac
|
||||
follow: beddel assaɣen n umiḍan
|
||||
push: ṭṭef-d tilɣa-ik yettwademren
|
||||
read: ɣeṛ akk isefka n umiḍan-ik
|
||||
read:accounts: ẓer isallen n yimiḍanen
|
||||
read:blocks: ẓer imiḍanen i tesḥebseḍ
|
||||
read:bookmarks: ẓer ticraḍ-ik
|
||||
read:favourites: ẓer ismenyifen-ik
|
||||
read:filters: ẓer imsizedgen-ik
|
||||
read:follows: ẓer imeḍfaṛen-ik
|
||||
read:lists: ẓer tibdarin-ik
|
||||
read:mutes: ẓer wid i tesgugmeḍ
|
||||
read:notifications: ẓer tilɣa-ik
|
||||
read:statuses: ẓer meṛṛa tisuffaɣ
|
||||
write: beddel meṛṛa isefka n umiḍan-ik
|
||||
write:accounts: ẓreg amaɣnu-ik
|
||||
write:blocks: seḥbes imiḍanen d tɣula
|
||||
write:filters: rnu-d imsizedgen
|
||||
write:follows: ḍfeṛ imdanen
|
||||
write:lists: rnu-d tibdarin
|
@ -38,6 +38,7 @@ kk:
|
||||
application: Қосымша
|
||||
callback_url: Callbаck URL
|
||||
delete: Өшіру
|
||||
empty: Сізде ешқандай қосымша жоқ.
|
||||
name: Аты
|
||||
new: Жаңа қосымша
|
||||
scopes: Scopеs
|
||||
@ -125,6 +126,7 @@ kk:
|
||||
read: read all your accоunt's data
|
||||
read:accounts: see accounts infоrmation
|
||||
read:blocks: see your blоcks
|
||||
read:bookmarks: белгілегендерді қарау
|
||||
read:favourites: see your favоurites
|
||||
read:filters: see yоur filters
|
||||
read:follows: see your follоws
|
||||
@ -137,6 +139,7 @@ kk:
|
||||
write: modify all your accоunt's data
|
||||
write:accounts: modify your prоfile
|
||||
write:blocks: block accounts and dоmains
|
||||
write:bookmarks: белгілер статусы
|
||||
write:favourites: favourite stаtuses
|
||||
write:filters: creаte filters
|
||||
write:follows: follow peоple
|
||||
|
@ -38,6 +38,7 @@ ko:
|
||||
application: 애플리케이션
|
||||
callback_url: 콜백 URL
|
||||
delete: 삭제
|
||||
empty: 어플리케이션이 없습니다
|
||||
name: 이름
|
||||
new: 새 애플리케이션
|
||||
scopes: 범위
|
||||
@ -125,6 +126,7 @@ ko:
|
||||
read: 계정의 모든 데이터를 읽기
|
||||
read:accounts: 계정의 정보를 보기
|
||||
read:blocks: 차단을 보기
|
||||
read:bookmarks: 내 갈무리 보기
|
||||
read:favourites: 관심글을 보기
|
||||
read:filters: 필터를 보기
|
||||
read:follows: 팔로우를 보기
|
||||
@ -137,6 +139,7 @@ ko:
|
||||
write: 계정 정보 수정
|
||||
write:accounts: 프로필 수정
|
||||
write:blocks: 계정이나 도메인 차단
|
||||
write:bookmarks: 게시글을 갈무리하기
|
||||
write:favourites: 관심글 지정
|
||||
write:filters: 필터 만들기
|
||||
write:follows: 사람을 팔로우
|
||||
|
@ -1 +1,29 @@
|
||||
---
|
||||
ml:
|
||||
activerecord:
|
||||
errors:
|
||||
models:
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
redirect_uri:
|
||||
invalid_uri: URI സാധുവായിരിക്കണം.
|
||||
relative_uri: URI വിപുലീകരിച്ചതായിരിക്കണം.
|
||||
secured_uri: URI HTTPS/SSL ആയിരിക്കണം.
|
||||
doorkeeper:
|
||||
applications:
|
||||
buttons:
|
||||
authorize: ചുമതലപ്പെടുത്തുക
|
||||
cancel: റദ്ദാക്കുക
|
||||
destroy: നശിപ്പിക്കുക
|
||||
edit: തിരുത്തുക
|
||||
submit: സമർപ്പിക്കുക
|
||||
confirmations:
|
||||
destroy: നിങ്ങൾക്ക് ഉറപ്പാണോ?
|
||||
index:
|
||||
delete: മായ്ക്കുക
|
||||
name: പേര്
|
||||
authorized_applications:
|
||||
buttons:
|
||||
revoke: പിൻവലിക്കുക
|
||||
confirmations:
|
||||
revoke: നിങ്ങൾക്ക് ഉറപ്പാണോ?
|
||||
|
@ -114,29 +114,31 @@ nl:
|
||||
application:
|
||||
title: OAuth-autorisatie vereist
|
||||
scopes:
|
||||
admin:read: lees alle gegevens op de server
|
||||
admin:read:accounts: lees gevoelige informatie van alle accounts
|
||||
admin:read:reports: lees gevoelige informatie van alle rapportages en gerapporteerde accounts
|
||||
admin:read: alle gegevens op de server lezen
|
||||
admin:read:accounts: gevoelige informatie van alle accounts lezen
|
||||
admin:read:reports: gevoelige informatie van alle rapportages en gerapporteerde accounts lezen
|
||||
admin:write: wijzig alle gegevens op de server
|
||||
admin:write:accounts: moderatieacties op accounts uitvoeren
|
||||
admin:write:reports: moderatieacties op rapportages uitvoeren
|
||||
follow: relaties tussen accounts bewerken
|
||||
push: ontvang jouw pushmeldingen
|
||||
push: jouw pushmeldingen ontvangen
|
||||
read: alle gegevens van jouw account lezen
|
||||
read:accounts: zie informatie accounts
|
||||
read:blocks: zie jouw geblokkeerde gebruikers
|
||||
read:favourites: zie jouw favorieten
|
||||
read:filters: zie jouw filters
|
||||
read:follows: zie de accounts die jij volgt
|
||||
read:lists: zie jouw lijsten
|
||||
read:mutes: zie jouw genegeerde gebruikers
|
||||
read:notifications: zie jouw meldingen
|
||||
read:reports: zie jouw gerapporteerde toots
|
||||
read:accounts: informatie accounts bekijken
|
||||
read:blocks: jouw geblokkeerde gebruikers bekijken
|
||||
read:bookmarks: jouw bladwijzers bekijken
|
||||
read:favourites: jouw favorieten bekijken
|
||||
read:filters: jouw filters bekijken
|
||||
read:follows: de accounts die jij volgt bekijken
|
||||
read:lists: jouw lijsten bekijken
|
||||
read:mutes: jouw genegeerde gebruikers bekijken
|
||||
read:notifications: jouw meldingen bekijken
|
||||
read:reports: jouw gerapporteerde toots bekijken
|
||||
read:search: namens jou zoeken
|
||||
read:statuses: zie alle toots
|
||||
read:statuses: alle toots bekijken
|
||||
write: alle gegevens van jouw account bewerken
|
||||
write:accounts: jouw profiel bewerken
|
||||
write:blocks: accounts en domeinen blokkeren
|
||||
write:bookmarks: toots aan bladwijzers toevoegen
|
||||
write:favourites: toots als favoriet markeren
|
||||
write:filters: filters aanmaken
|
||||
write:follows: mensen volgen
|
||||
|
@ -1 +1,150 @@
|
||||
---
|
||||
nn:
|
||||
activerecord:
|
||||
attributes:
|
||||
doorkeeper/application:
|
||||
name: Applikasjonsnamn
|
||||
redirect_uri: Omdirigerings-URI
|
||||
scopes: Omfang
|
||||
website: Applikasjonsnettside
|
||||
errors:
|
||||
models:
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
redirect_uri:
|
||||
fragment_present: kan ikkje innehalde eit fragment.
|
||||
invalid_uri: må vere ein gyldig URI.
|
||||
relative_uri: må vere ein absolutt URI.
|
||||
secured_uri: må vere ein HTTPS/SSL URI.
|
||||
doorkeeper:
|
||||
applications:
|
||||
buttons:
|
||||
authorize: Autoriser
|
||||
cancel: Avbryt
|
||||
destroy: Utslett
|
||||
edit: Rediger
|
||||
submit: Send inn
|
||||
confirmations:
|
||||
destroy: Er du sikker?
|
||||
edit:
|
||||
title: Rediger søknad
|
||||
form:
|
||||
error: Oi sann! Sjekk skjemaet for eventuelle mistak
|
||||
help:
|
||||
native_redirect_uri: Bruk %{native_redirect_uri} for lokale testar
|
||||
redirect_uri: Bruk ei linjer per URI
|
||||
scopes: Adskill omfang med mellomrom. La det være blankt for å bruke standard omfang.
|
||||
index:
|
||||
application: Applikasjon
|
||||
callback_url: Callback-URL
|
||||
delete: Slett
|
||||
name: Namn
|
||||
new: Ny applikasjon
|
||||
scopes: Omfang
|
||||
show: Vis
|
||||
title: Dine applikasjonar
|
||||
new:
|
||||
title: Ny applikasjon
|
||||
show:
|
||||
actions: Handlingar
|
||||
application_id: Klientnøkkel
|
||||
callback_urls: Callback-URLer
|
||||
scopes: Omfang
|
||||
secret: Klienthemmelegheit
|
||||
title: 'Applikasjon: %{name}'
|
||||
authorizations:
|
||||
buttons:
|
||||
authorize: Autoriser
|
||||
deny: Avslå
|
||||
error:
|
||||
title: Ein feil har oppstått
|
||||
new:
|
||||
able_to: Den vil ha mulighet til
|
||||
prompt: Applikasjon %{client_name} spør om tilgang til din konto
|
||||
title: Autorisasjon nødvendig
|
||||
show:
|
||||
title: Kopier denne autorisasjonskoden og lim den inn i applikasjonen.
|
||||
authorized_applications:
|
||||
buttons:
|
||||
revoke: Opphev
|
||||
confirmations:
|
||||
revoke: Er du sikker?
|
||||
index:
|
||||
application: Applikasjon
|
||||
created_at: Autorisert
|
||||
date_format: "%Y-%m-%d %H:%M:%S"
|
||||
scopes: Omfang
|
||||
title: Dine autoriserte applikasjonar
|
||||
errors:
|
||||
messages:
|
||||
access_denied: Ressurseieren eller autoriseringstjeneren avviste forespørslen.
|
||||
credential_flow_not_configured: Ressurseiers passordflyt feilet fordi Doorkeeper.configure.resource_owner_from_credentials ikke var konfigurert.
|
||||
invalid_client: Klientautentisering feilet på grunn av ukjent klient, ingen autentisering inkludert, eller autentiseringsmetode er ikke støttet.
|
||||
invalid_grant: Autoriseringen er ugyldig, utløpt, opphevet, stemmer ikke overens med omdirigerings-URIen eller var utstedt til en annen klient.
|
||||
invalid_redirect_uri: Den inkluderte omdirigerings-URLen er ikke gyldig.
|
||||
invalid_request: Forespørslen mangler en eller flere parametere, inkluderte en parameter som ikke støttes eller har feil struktur.
|
||||
invalid_resource_owner: Ressurseierens detaljer er ikke gyldige, eller så er det ikke mulig å finne eieren
|
||||
invalid_scope: Det etterspurte omfanget er ugyldig, ukjent eller har feil struktur.
|
||||
invalid_token:
|
||||
expired: Tilgangsbeviset har utløpt
|
||||
revoked: Tilgangsbeviset har blitt opphevet
|
||||
unknown: Tilgangsbeviset er ugyldig
|
||||
resource_owner_authenticator_not_configured: Ressurseier kunne ikke finnes fordi Doorkeeper.configure.resource_owner_authenticator ikke er konfigurert.
|
||||
server_error: Autoriseringstjeneren støtte på en uventet hendelse som hindret den i å svare på forespørslen.
|
||||
temporarily_unavailable: Autoriseringstjeneren kan ikke håndtere forespørslen grunnet en midlertidig overbelastning eller tjenervedlikehold.
|
||||
unauthorized_client: Klienten har ikke autorisasjon for å utføre denne forespørslen med denne metoden.
|
||||
unsupported_grant_type: Autorisasjonstildelingstypen er ikke støttet av denne autoriseringstjeneren.
|
||||
unsupported_response_type: Autorisasjonsserveren støtter ikke denne typen av forespørsler.
|
||||
flash:
|
||||
applications:
|
||||
create:
|
||||
notice: App laga.
|
||||
destroy:
|
||||
notice: Appen er sletta.
|
||||
update:
|
||||
notice: App oppdatert.
|
||||
authorized_applications:
|
||||
destroy:
|
||||
notice: App avvist.
|
||||
layouts:
|
||||
admin:
|
||||
nav:
|
||||
applications: Appar
|
||||
oauth2_provider: OAuth2-tilbyder
|
||||
application:
|
||||
title: OAuth-autorisering påkrevet
|
||||
scopes:
|
||||
admin:read: lese alle data på tjeneren
|
||||
admin:read:accounts: lese sensitiv informasjon om alle kontoer
|
||||
admin:read:reports: lese sensitiv informasjon om alle rapporter og rapporterte kontoer
|
||||
admin:write: modifisere alle data på tjeneren
|
||||
admin:write:accounts: utføre moderatorhandlinger på kontoer
|
||||
admin:write:reports: utføre moderatorhandlinger på rapporter
|
||||
follow: følg, blokkér, avblokkér, avfølg brukere
|
||||
push: motta dine varsler
|
||||
read: lese dine data
|
||||
read:accounts: se informasjon om kontoer
|
||||
read:blocks: se dine blokkeringer
|
||||
read:bookmarks: sjå bokmerka dine
|
||||
read:favourites: sjå favorittane dine
|
||||
read:filters: sjå filtera dine
|
||||
read:follows: sjå fylgjarane dine
|
||||
read:lists: sjå listene dine
|
||||
read:mutes: sjå kven du har målbunde
|
||||
read:notifications: sjå varsla dine
|
||||
read:reports: sjå rapportane dine
|
||||
read:search: søke på dine vegne
|
||||
read:statuses: sjå alle statusar
|
||||
write: poste på dine vegne
|
||||
write:accounts: rediger profilen din
|
||||
write:blocks: blokker kontoar og domene
|
||||
write:bookmarks: bokmerk statusar
|
||||
write:favourites: merk statusar som favoritt
|
||||
write:filters: lag filter
|
||||
write:follows: fylg folk
|
||||
write:lists: lag lister
|
||||
write:media: last opp mediefiler
|
||||
write:mutes: målbind folk og samtalar
|
||||
write:notifications: tøm varsla dine
|
||||
write:reports: rapporter andre folk
|
||||
write:statuses: legg ut statusar
|
||||
|
@ -72,6 +72,7 @@
|
||||
index:
|
||||
application: Applikasjon
|
||||
created_at: Autorisert
|
||||
date_format: "%Y-%m-%d %H:%M:%S"
|
||||
scopes: Omfang
|
||||
title: Dine autoriserte applikasjoner
|
||||
errors:
|
||||
@ -113,6 +114,37 @@
|
||||
application:
|
||||
title: OAuth-autorisering påkrevet
|
||||
scopes:
|
||||
admin:read: lese alle data på tjeneren
|
||||
admin:read:accounts: lese sensitiv informasjon om alle kontoer
|
||||
admin:read:reports: lese sensitiv informasjon om alle rapporter og rapporterte kontoer
|
||||
admin:write: modifisere alle data på tjeneren
|
||||
admin:write:accounts: utføre moderatorhandlinger på kontoer
|
||||
admin:write:reports: utføre moderatorhandlinger på rapporter
|
||||
follow: følg, blokkér, avblokkér, avfølg brukere
|
||||
push: motta dine varsler
|
||||
read: lese dine data
|
||||
read:accounts: se informasjon om kontoer
|
||||
read:blocks: se dine blokkeringer
|
||||
read:bookmarks: se dine bokmerker
|
||||
read:favourites: se dine likinger
|
||||
read:filters: se dine filtre
|
||||
read:follows: se dine følginger
|
||||
read:lists: se listene dine
|
||||
read:mutes: se dine dempinger
|
||||
read:notifications: se dine varslinger
|
||||
read:reports: se dine rapporter
|
||||
read:search: søke på dine vegne
|
||||
read:statuses: se alle statuser
|
||||
write: poste på dine vegne
|
||||
write:accounts: endre på profilen din
|
||||
write:blocks: blokkere kontoer og domener
|
||||
write:bookmarks: bokmerke statuser
|
||||
write:favourites: like statuser
|
||||
write:filters: opprett filtre
|
||||
write:follows: følg personer
|
||||
write:lists: opprett lister
|
||||
write:media: last opp mediafiler
|
||||
write:mutes: dempe folk og samtaler
|
||||
write:notifications: tømme dine varsler
|
||||
write:reports: rapportere andre folk
|
||||
write:statuses: legg ut statuser
|
||||
|
@ -125,6 +125,7 @@ oc:
|
||||
read: legir totas las donadas de vòstre compte
|
||||
read:accounts: veire las informacions del compte
|
||||
read:blocks: veire vòstres blocatges
|
||||
read:bookmarks: veire vòstres marcadors
|
||||
read:favourites: veire vòstres favorits
|
||||
read:filters: veire vòstres filtres
|
||||
read:follows: veire vòstres abonaments
|
||||
@ -137,6 +138,7 @@ oc:
|
||||
write: modificar totas las donadas de vòstre compte
|
||||
write:accounts: modificar vòstre perfil
|
||||
write:blocks: blocar de comptes e de domenis
|
||||
write:bookmarks: ajustar als marcadors
|
||||
write:favourites: metre en favorit
|
||||
write:filters: crear de filtres
|
||||
write:follows: sègre de monde
|
||||
|
@ -4,18 +4,18 @@ pt-BR:
|
||||
attributes:
|
||||
doorkeeper/application:
|
||||
name: Nome do aplicativo
|
||||
redirect_uri: URI de redirecionamento
|
||||
redirect_uri: Link de redirecionamento
|
||||
scopes: Autorizações
|
||||
website: Website do aplicativo
|
||||
website: Site do aplicativo
|
||||
errors:
|
||||
models:
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
redirect_uri:
|
||||
fragment_present: não pode conter um fragmento.
|
||||
invalid_uri: precisa ser uma URI válida.
|
||||
relative_uri: precisa ser uma URI absoluta.
|
||||
secured_uri: precisa ser uma URI HTTPS/SSL.
|
||||
invalid_uri: precisa ser um link válido.
|
||||
relative_uri: precisa ser um link absoluto.
|
||||
secured_uri: precisa ser um link HTTPS/SSL.
|
||||
doorkeeper:
|
||||
applications:
|
||||
buttons:
|
||||
@ -29,26 +29,27 @@ pt-BR:
|
||||
edit:
|
||||
title: Editar aplicativo
|
||||
form:
|
||||
error: Oops! Verifique o seu formulário para saber de possíveis erros
|
||||
error: Eita! Verifique o seu formulário para saber de possíveis erros
|
||||
help:
|
||||
native_redirect_uri: Use %{native_redirect_uri} para testes locais
|
||||
redirect_uri: Use uma linha para cada URI
|
||||
redirect_uri: Use uma linha para cada link
|
||||
scopes: Separe autorizações com espaços. Deixe em branco para usar autorizações padrões.
|
||||
index:
|
||||
application: Aplicativos
|
||||
callback_url: URL de retorno
|
||||
callback_url: Link de retorno
|
||||
delete: Excluir
|
||||
empty: Não tem aplicações.
|
||||
name: Nome
|
||||
new: Novo aplicativo
|
||||
scopes: Autorizações
|
||||
show: Mostrar
|
||||
title: Seus aplicativos
|
||||
new:
|
||||
title: Novos aplicativos
|
||||
title: Novo aplicativo
|
||||
show:
|
||||
actions: Ações
|
||||
application_id: Chave do cliente
|
||||
callback_urls: URLs de retorno
|
||||
callback_urls: Links de retorno
|
||||
scopes: Autorizações
|
||||
secret: Segredo do cliente
|
||||
title: 'Aplicativo: %{name}'
|
||||
@ -59,7 +60,7 @@ pt-BR:
|
||||
error:
|
||||
title: Ocorreu um erro
|
||||
new:
|
||||
able_to: Será capaz de
|
||||
able_to: Poderá
|
||||
prompt: O aplicativo %{client_name} solicita acesso à sua conta
|
||||
title: Autorização necessária
|
||||
show:
|
||||
@ -79,28 +80,28 @@ pt-BR:
|
||||
messages:
|
||||
access_denied: O proprietário ou servidor de autorização negou a solicitação.
|
||||
credential_flow_not_configured: Cadeira de Credenciais de Senha do Proprietário falhou porque Doorkeeper.configure.resource_owner_from_credentials não foram configuradas.
|
||||
invalid_client: Autenticação do cliente falhou por causa de um cliente desconhecido, nenhum cliente de autenticação incluído ou método de autenticação não suportado.
|
||||
invalid_grant: A garantia de autorização é inválida, expirou, foi revogada, não é equivalente à URI de redirecionamento usada da solicitação de autorização ou foi emitida por outro cliente.
|
||||
invalid_redirect_uri: A URI de redirecionamento incluída não é válida.
|
||||
invalid_request: A solicitação não possui um parâmetro obrigatório, inclui um valor não suportado ou está mal formatada.
|
||||
invalid_client: Autenticação do cliente falhou por causa de um cliente desconhecido, nenhum cliente de autenticação foi incluído ou o método de autenticação não é suportado.
|
||||
invalid_grant: A garantia de autorização está inválida, expirou ou foi revogada, não é equivalente ao link de redirecionamento usado na solicitação de autorização ou foi emitido por outro cliente.
|
||||
invalid_redirect_uri: O link de redirecionamento não é válido.
|
||||
invalid_request: A solicitação não possui um parâmetro obrigatório, inclui um valor não suportado ou está mal formatado.
|
||||
invalid_resource_owner: As credenciais do proprietário informadas não são válidas ou o proprietário não pôde ser encontrado
|
||||
invalid_scope: A autorização requirida é inválida, desconhecida ou está mal formatada.
|
||||
invalid_token:
|
||||
expired: O token de acesso expirou
|
||||
revoked: O token de acesso foi revogado
|
||||
unknown: O token de acesso é inválido
|
||||
resource_owner_authenticator_not_configured: Procura pelo proprietário falhou porque Doorkeeper.configure.resource_owner_authenticator não foi configurado.
|
||||
expired: O código de acesso expirou
|
||||
revoked: O código de acesso foi revogado
|
||||
unknown: O código de acesso é inválido
|
||||
resource_owner_authenticator_not_configured: A procura pelo Proprietário do Recurso falhou porque Doorkeeper.configure.resource_owner_authenticator não foi configurado.
|
||||
server_error: O servidor de autorização encontrou uma condição inesperada que preveniu a solicitação de ser respondida.
|
||||
temporarily_unavailable: O servidor de autorização é incapaz de lidar com a solicitação no momento por causa d múltiplas requisições ou manutenção programada.
|
||||
unauthorized_client: O cliente não possui autorização para performar esta solicitação usando este método.
|
||||
unsupported_grant_type: O tipo de garantia de autorização não é suportada pelo servidor de autorização.
|
||||
temporarily_unavailable: O servidor de autorização é incapaz de lidar com a solicitação no momento devido à múltiplas requisições ou manutenção programada.
|
||||
unauthorized_client: O cliente não possui autorização para executar esta solicitação usando este método.
|
||||
unsupported_grant_type: O tipo de garantia de autorização não é suportado pelo servidor de autorização.
|
||||
unsupported_response_type: O servidor de autorização não suporta este tipo de resposta.
|
||||
flash:
|
||||
applications:
|
||||
create:
|
||||
notice: Aplicativo criado.
|
||||
destroy:
|
||||
notice: Aplicativo deletado.
|
||||
notice: Aplicativo excluído.
|
||||
update:
|
||||
notice: Aplicativo atualizado.
|
||||
authorized_applications:
|
||||
@ -109,34 +110,42 @@ pt-BR:
|
||||
layouts:
|
||||
admin:
|
||||
nav:
|
||||
applications: Aplicativo
|
||||
applications: Aplicativos
|
||||
oauth2_provider: Provedor de OAuth2
|
||||
application:
|
||||
title: Autorização OAuth obrigatória
|
||||
scopes:
|
||||
follow: modificar as relações com outras contas
|
||||
push: receber suas notificações push
|
||||
admin:read: ler todos os dados no servidor
|
||||
admin:read:accounts: ler informações sensíveis de todas as contas
|
||||
admin:read:reports: ler informações sensíveis de todas as denúncias e contas denunciadas
|
||||
admin:write: alterar todos os dados no servidor
|
||||
admin:write:accounts: executar ações de moderação em contas
|
||||
admin:write:reports: executar ações de moderação em denúncias
|
||||
follow: alterar o relacionamento das contas
|
||||
push: receber notificações push
|
||||
read: ler todos os dados da sua conta
|
||||
read:accounts: ver as informações da conta
|
||||
read:accounts: ver informações das contas
|
||||
read:blocks: ver seus bloqueios
|
||||
read:bookmarks: ver seus salvos
|
||||
read:favourites: ver seus favoritos
|
||||
read:filters: ver seus filtros
|
||||
read:follows: ver quem você segue
|
||||
read:lists: ver suas listas
|
||||
read:mutes: ver seus usuários silenciados
|
||||
read:mutes: ver seus silenciamentos
|
||||
read:notifications: ver suas notificações
|
||||
read:reports: ver suas denúncias
|
||||
read:search: buscar em seu nome
|
||||
read:statuses: ver todos os status
|
||||
write: modificar todos os dados da sua conta
|
||||
write:accounts: modificar seu perfil
|
||||
read:search: pesquisar em seu nome
|
||||
read:statuses: ver todos os toots
|
||||
write: alterar todos os dados da sua conta
|
||||
write:accounts: alterar seu perfil
|
||||
write:blocks: bloquear contas e domínios
|
||||
write:favourites: status favoritos
|
||||
write:bookmarks: salvar toots
|
||||
write:favourites: favoritar toots
|
||||
write:filters: criar filtros
|
||||
write:follows: seguir pessoas
|
||||
write:lists: criar listas
|
||||
write:media: enviar arquivos de mídia
|
||||
write:mutes: silenciar pessoas e conversas
|
||||
write:notifications: limpar suas notificações
|
||||
write:reports: reportar outras pessoas
|
||||
write:statuses: publicar status
|
||||
write:notifications: limpar notificações
|
||||
write:reports: denunciar outras pessoas
|
||||
write:statuses: postar toots
|
||||
|
@ -38,6 +38,7 @@ pt-PT:
|
||||
application: Aplicações
|
||||
callback_url: URL de retorno
|
||||
delete: Eliminar
|
||||
empty: Não tem aplicações.
|
||||
name: Nome
|
||||
new: Nova Aplicação
|
||||
scopes: Autorizações
|
||||
@ -72,6 +73,7 @@ pt-PT:
|
||||
index:
|
||||
application: Aplicação
|
||||
created_at: Criada em
|
||||
date_format: "%d-%m-%Y %H:%M:%S"
|
||||
scopes: Autorizações
|
||||
title: As tuas aplicações autorizadas
|
||||
errors:
|
||||
@ -113,6 +115,37 @@ pt-PT:
|
||||
application:
|
||||
title: Autorização OAuth necessária
|
||||
scopes:
|
||||
admin:read: ler todos os dados no servidor
|
||||
admin:read:accounts: ler informações sensíveis de todas as contas
|
||||
admin:read:reports: ler informações sensíveis de todos os relatórios e contas reportadas
|
||||
admin:write: modificar todos os dados no servidor
|
||||
admin:write:accounts: executar ações de moderação em contas
|
||||
admin:write:reports: executar ações de moderação em relatórios
|
||||
follow: siga, bloqueie, desbloqueie, e deixa de seguir contas
|
||||
push: receber as suas notificações push
|
||||
read: tenha acesso aos dados da tua conta
|
||||
read:accounts: ver as informações da conta
|
||||
read:blocks: ver os seus bloqueios
|
||||
read:bookmarks: ver os seus favoritos
|
||||
read:favourites: ver os seus favoritos
|
||||
read:filters: ver os seus filtros
|
||||
read:follows: ver quem você segue
|
||||
read:lists: ver as suas listas
|
||||
read:mutes: ver os utilizadores que silenciou
|
||||
read:notifications: ver as suas notificações
|
||||
read:reports: ver as suas denúncias
|
||||
read:search: pesquisar em seu nome
|
||||
read:statuses: ver todos os estados
|
||||
write: publique por ti
|
||||
write:accounts: modificar o seu perfil
|
||||
write:blocks: bloquear contas e domínios
|
||||
write:bookmarks: estado dos favoritos
|
||||
write:favourites: estado dos favoritos
|
||||
write:filters: criar filtros
|
||||
write:follows: seguir pessoas
|
||||
write:lists: criar listas
|
||||
write:media: carregar arquivos de média
|
||||
write:mutes: silenciar pessoas e conversas
|
||||
write:notifications: limpar as suas notificações
|
||||
write:reports: reportar outras pessoas
|
||||
write:statuses: publicar estado
|
||||
|
@ -5,7 +5,7 @@ ru:
|
||||
doorkeeper/application:
|
||||
name: Название
|
||||
redirect_uri: URI перенаправления
|
||||
scopes: Права
|
||||
scopes: Разрешения
|
||||
website: Веб-сайт приложения
|
||||
errors:
|
||||
models:
|
||||
@ -38,13 +38,14 @@ ru:
|
||||
application: Приложение
|
||||
callback_url: Callback URL
|
||||
delete: Удалить
|
||||
empty: У вас нет созданных приложений.
|
||||
name: Название
|
||||
new: Новое приложение
|
||||
scopes: Права
|
||||
scopes: Разрешения
|
||||
show: Показывать
|
||||
title: Ваши приложения
|
||||
new:
|
||||
title: Новое Приложение
|
||||
title: Создание приложения
|
||||
show:
|
||||
actions: Действия
|
||||
application_id: Id приложения
|
||||
@ -122,27 +123,29 @@ ru:
|
||||
admin:write:reports: производить модерацию жалоб
|
||||
follow: управлять подписками и списком блокировок
|
||||
push: получать push-уведомления
|
||||
read: читать данные Вашей учётной записи
|
||||
read: просматривать данные вашей учётной записи
|
||||
read:accounts: видеть информацию об учётных записях
|
||||
read:blocks: видеть ваших заблокированных
|
||||
read:blocks: видеть ваши блокировки
|
||||
read:bookmarks: видеть ваши закладки
|
||||
read:favourites: видеть ваше избранное
|
||||
read:filters: видеть ваши фильтры
|
||||
read:follows: видеть, на кого вы подписаны
|
||||
read:follows: видеть ваши подписки
|
||||
read:lists: видеть ваши списки
|
||||
read:mutes: видеть список заглушенных
|
||||
read:notifications: видеть ваши уведомления
|
||||
read:mutes: видеть список игнорируемых
|
||||
read:notifications: получать уведомления
|
||||
read:reports: видеть ваши жалобы
|
||||
read:search: использовать поиск
|
||||
read:statuses: видеть все статусы
|
||||
read:statuses: видеть все ваши посты
|
||||
write: изменять все данные вашей учётной записи
|
||||
write:accounts: редактировать ваш профиль
|
||||
write:blocks: блокировать учётные записи и домены
|
||||
write:favourites: отмечать статусы как избранные
|
||||
write:bookmarks: добавлять посты в закладки
|
||||
write:favourites: отмечать посты как избранные
|
||||
write:filters: создавать фильтры
|
||||
write:follows: подписываться на людей
|
||||
write:lists: создавать списки
|
||||
write:media: выкладывать медиаконтент
|
||||
write:mutes: заглушать людей и обсуждения
|
||||
write:media: загружать файлы
|
||||
write:mutes: добавлять в игнорируемое людей и обсуждения
|
||||
write:notifications: очищать список уведомлений
|
||||
write:reports: отправлять жалобы на других
|
||||
write:statuses: публиковать статусы
|
||||
write:statuses: публиковать посты
|
||||
|
@ -124,6 +124,7 @@ sk:
|
||||
read: prezri si všetky dáta ohľadom svojho účetu
|
||||
read:accounts: prezri si informácie o účte
|
||||
read:blocks: prezri svoje bloky
|
||||
read:bookmarks: pozri svoje záložky
|
||||
read:favourites: prezri svoje obľúbené
|
||||
read:filters: prezri svoje filtrovanie
|
||||
read:follows: prezri si svoje sledovania
|
||||
@ -136,6 +137,7 @@ sk:
|
||||
write: upraviť všetky dáta tvojho účtu
|
||||
write:accounts: uprav svoj profil
|
||||
write:blocks: blokuj účty a domény
|
||||
write:bookmarks: pridaj si príspevky k záložkám
|
||||
write:favourites: obľúbené príspevky
|
||||
write:filters: vytvor roztriedenie
|
||||
write:follows: následuj ľudí
|
||||
|
@ -25,7 +25,7 @@ sv:
|
||||
edit: Redigera
|
||||
submit: Skicka
|
||||
confirmations:
|
||||
destroy: Äre du säker?
|
||||
destroy: Är du säker?
|
||||
edit:
|
||||
title: Redigera applikation
|
||||
form:
|
||||
@ -38,6 +38,7 @@ sv:
|
||||
application: Applikation
|
||||
callback_url: Återkalls URL
|
||||
delete: Ta bort
|
||||
empty: Du har inga program.
|
||||
name: Namn
|
||||
new: Ny applikation
|
||||
scopes: Omfattning
|
||||
@ -120,16 +121,16 @@ sv:
|
||||
admin:write:accounts: utför alla aktiviteter för moderering på konton
|
||||
admin:write:reports: utför alla aktiviteter för moderering i rapporter
|
||||
follow: följa, blockera, ta bort blockerade och sluta följa konton
|
||||
push: ta emot push aviseringar för ditt konto
|
||||
push: ta emot push-aviseringar för ditt konto
|
||||
read: läsa dina kontodata
|
||||
read:accounts: se kontoinformation
|
||||
read:blocks: se dina block
|
||||
read:blocks: se dina blockeringar
|
||||
read:favourites: se dina favoriter
|
||||
read:filters: se dina filter
|
||||
read:follows: se vem du följer
|
||||
read:lists: se dina listor
|
||||
read:mutes: se dina tystningar
|
||||
read:notifications: se dina notifieringar
|
||||
read:notifications: se dina aviseringar
|
||||
read:reports: se dina rapporter
|
||||
read:search: sök å dina vägnar
|
||||
read:statuses: se alla statusar
|
||||
@ -142,6 +143,6 @@ sv:
|
||||
write:lists: skapa listor
|
||||
write:media: ladda upp mediafiler
|
||||
write:mutes: tysta människor och konversationer
|
||||
write:notifications: rensa dina notifieringar
|
||||
write:notifications: rensa dina aviseringar
|
||||
write:reports: rapportera andra människor
|
||||
write:statuses: publicera statusar
|
||||
|
@ -16,6 +16,7 @@ ta:
|
||||
error: அய்யோ! உள்ளீடுகளில் உள்ள தவறுகளைச் சரி செய்யுங்கள்
|
||||
index:
|
||||
application: பயன்பாடு
|
||||
empty: செயலிகள் எதுவும் இல்லை.
|
||||
title: உங்களது பயன்பாடுகள்
|
||||
new:
|
||||
title: புதிய பயன்பாடு
|
||||
|
@ -36,6 +36,7 @@ th:
|
||||
application: แอปพลิเคชัน
|
||||
callback_url: URL เรียกกลับ
|
||||
delete: ลบ
|
||||
empty: คุณไม่มีแอปพลิเคชัน
|
||||
name: ชื่อ
|
||||
new: แอปพลิเคชันใหม่
|
||||
scopes: ขอบเขต
|
||||
@ -77,6 +78,8 @@ th:
|
||||
messages:
|
||||
access_denied: เจ้าของทรัพยากรหรือเซิร์ฟเวอร์การอนุญาตปฏิเสธคำขอ
|
||||
invalid_token:
|
||||
expired: โทเคนการเข้าถึงหมดอายุแล้ว
|
||||
revoked: เพิกถอนโทเคนการเข้าถึงแล้ว
|
||||
unknown: โทเคนการเข้าถึงไม่ถูกต้อง
|
||||
flash:
|
||||
applications:
|
||||
@ -98,12 +101,15 @@ th:
|
||||
title: ต้องมีการอนุญาต OAuth
|
||||
scopes:
|
||||
admin:read: อ่านข้อมูลทั้งหมดในเซิร์ฟเวอร์
|
||||
admin:write: แก้ไขข้อมูลทั้งหมดในเซิร์ฟเวอร์
|
||||
admin:read:accounts: อ่านข้อมูลที่ละเอียดอ่อนของบัญชีทั้งหมด
|
||||
admin:read:reports: อ่านข้อมูลที่ละเอียดอ่อนของรายงานและบัญชีที่ได้รับการรายงานทั้งหมด
|
||||
admin:write: ปรับเปลี่ยนข้อมูลทั้งหมดในเซิร์ฟเวอร์
|
||||
follow: ปรับเปลี่ยนความสัมพันธ์ของบัญชี
|
||||
push: รับการแจ้งเตือนแบบผลักของคุณ
|
||||
read: อ่านข้อมูลบัญชีทั้งหมดของคุณ
|
||||
read:accounts: ดูข้อมูลบัญชี
|
||||
read:blocks: ดูการปิดกั้นของคุณ
|
||||
read:bookmarks: ดูที่คั่นหน้าของคุณ
|
||||
read:favourites: ดูรายการโปรดของคุณ
|
||||
read:filters: ดูตัวกรองของคุณ
|
||||
read:follows: ดูการติดตามของคุณ
|
||||
@ -116,6 +122,7 @@ th:
|
||||
write: ปรับเปลี่ยนข้อมูลบัญชีทั้งหมดของคุณ
|
||||
write:accounts: ปรับเปลี่ยนโปรไฟล์ของคุณ
|
||||
write:blocks: ปิดกั้นบัญชีและโดเมน
|
||||
write:bookmarks: เพิ่มที่คั่นหน้าสถานะ
|
||||
write:favourites: ชื่นชอบสถานะ
|
||||
write:filters: สร้างตัวกรอง
|
||||
write:follows: ติดตามผู้คน
|
||||
|
@ -38,6 +38,7 @@ tr:
|
||||
application: Uygulama
|
||||
callback_url: Geri Dönüş URL
|
||||
delete: Sil
|
||||
empty: Hiç uygulamanız yok.
|
||||
name: İsim
|
||||
new: Yeni uygulama
|
||||
scopes: Kapsam
|
||||
@ -125,6 +126,7 @@ tr:
|
||||
read: hesabınızın tüm verilerini okuyun
|
||||
read:accounts: hesap bilgilerini gör
|
||||
read:blocks: engellemelerinizi görün
|
||||
read:bookmarks: yer imlerinizi görün
|
||||
read:favourites: favorilerini gör
|
||||
read:filters: filtrelerinizi görün
|
||||
read:follows: izlerini gör
|
||||
@ -137,6 +139,7 @@ tr:
|
||||
write: hesabınızın tüm verilerini değiştirin
|
||||
write:accounts: profilini değiştir
|
||||
write:blocks: hesapları ve alan adlarını engelleyin
|
||||
write:bookmarks: durumları yer imlerine ekle
|
||||
write:favourites: favori durumlar
|
||||
write:filters: filtre oluştur
|
||||
write:follows: insanları takip et
|
||||
|
150
config/locales/doorkeeper.vi.yml
Normal file
150
config/locales/doorkeeper.vi.yml
Normal file
@ -0,0 +1,150 @@
|
||||
---
|
||||
vi:
|
||||
activerecord:
|
||||
attributes:
|
||||
doorkeeper/application:
|
||||
name: Tên ứng dụng
|
||||
redirect_uri: Chuyển hướng URI
|
||||
scopes: Phạm vi
|
||||
website: Trang web ứng dụng
|
||||
errors:
|
||||
models:
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
redirect_uri:
|
||||
fragment_present: không thể chứa một mảnh.
|
||||
invalid_uri: phải là một URI hợp lệ.
|
||||
relative_uri: phải là một URI tuyệt đối.
|
||||
secured_uri: phải là URI HTTPS / SSL.
|
||||
doorkeeper:
|
||||
applications:
|
||||
buttons:
|
||||
authorize: Ủy quyền
|
||||
cancel: Hủy bỏ
|
||||
destroy: Xoá bỏ
|
||||
edit: Sửa
|
||||
submit: Gửi đi
|
||||
confirmations:
|
||||
destroy: Bạn có chắc không?
|
||||
edit:
|
||||
title: Chỉnh sửa ứng dụng
|
||||
form:
|
||||
error: Rất tiếc! Hãy kiểm tra thông tin của bạn vì có thể nó có lỗi
|
||||
help:
|
||||
native_redirect_uri: Sử dụng %{native_redirect_uri} khi kiểm thử ở máy nội bộ
|
||||
redirect_uri: Sử dụng một dòng trên mỗi URI
|
||||
scopes: Phạm vi riêng biệt với không gian. Để trống để sử dụng phạm vi mặc định.
|
||||
index:
|
||||
application: Ứng dụng
|
||||
callback_url: gọi lại URL
|
||||
delete: Xóa bỏ
|
||||
name: Tên
|
||||
new: Ứng dụng mới
|
||||
scopes: Phạm vi
|
||||
show: Xem
|
||||
title: Ứng dụng của bạn
|
||||
new:
|
||||
title: Ứng dụng mới
|
||||
show:
|
||||
actions: Hành động
|
||||
application_id: Khóa khách
|
||||
callback_urls: URL gọi lại
|
||||
scopes: Phạm vi
|
||||
secret: Bí mật khách hàng
|
||||
title: 'Ứng dụng: %{name}'
|
||||
authorizations:
|
||||
buttons:
|
||||
authorize: Ủy quyền
|
||||
deny: Từ chối
|
||||
error:
|
||||
title: một lỗi đã xảy ra
|
||||
new:
|
||||
able_to: Nó sẽ có thể
|
||||
prompt: Ứng dụng %{client_name} yêu cầu quyền truy cập vào tài khoản của bạn
|
||||
title: Cần được ủy quyền
|
||||
show:
|
||||
title: Sao chép mã ủy quyền này và dán nó vào ứng dụng.
|
||||
authorized_applications:
|
||||
buttons:
|
||||
revoke: Thu hồi
|
||||
confirmations:
|
||||
revoke: Bạn có chắc không?
|
||||
index:
|
||||
application: Ứng dụng
|
||||
created_at: Được ủy quyền
|
||||
date_format: "% Y-% m-%d% H:% M:% S"
|
||||
scopes: Phạm vi
|
||||
title: Các ứng dụng đã được cấp phép
|
||||
errors:
|
||||
messages:
|
||||
access_denied: Chủ sở hữu tài nguyên hoặc máy chủ ủy quyền từ chối yêu cầu.
|
||||
credential_flow_not_configured: Resource Owner Password Credentials không thành công do Doorkeeper.configure.resource_owner_from_credentials không được định cấu hình.
|
||||
invalid_client: Xác thực ứng dụng khách không thành công do máy khách không xác định, không bao gồm xác thực ứng dụng khách hoặc phương thức xác thực không được hỗ trợ.
|
||||
invalid_grant: Cấp quyền được cung cấp không hợp lệ, hết hạn, bị thu hồi, không khớp với URI chuyển hướng được sử dụng trong yêu cầu ủy quyền hoặc được cấp cho một khách hàng khác.
|
||||
invalid_redirect_uri: Uri chuyển hướng bao gồm không hợp lệ.
|
||||
invalid_request: Yêu cầu thiếu tham số bắt buộc, bao gồm giá trị tham số không được hỗ trợ hoặc không đúng định dạng.
|
||||
invalid_resource_owner: Thông tin xác thực chủ sở hữu tài nguyên được cung cấp không hợp lệ hoặc không thể tìm thấy chủ sở hữu tài nguyên
|
||||
invalid_scope: Phạm vi yêu cầu không hợp lệ, không xác định hoặc không đúng định dạng.
|
||||
invalid_token:
|
||||
expired: Mã thông báo truy cập đã hết hạn
|
||||
revoked: Mã thông báo truy cập đã bị thu hồi
|
||||
unknown: Mã thông báo truy cập không hợp lệ
|
||||
resource_owner_authenticator_not_configured: Chủ sở hữu tài nguyên tìm thấy thất bại do Doorkeeper.configure.resource_owner_authenticator không được định cấu hình.
|
||||
server_error: Máy chủ ủy quyền đã gặp phải một điều kiện không mong muốn khiến nó không thể thực hiện yêu cầu.
|
||||
temporarily_unavailable: Máy chủ ủy quyền hiện không thể xử lý yêu cầu do quá tải tạm thời hoặc bảo trì máy chủ.
|
||||
unauthorized_client: Khách hàng không được phép thực hiện yêu cầu này bằng phương pháp này.
|
||||
unsupported_grant_type: Loại cấp quyền không được hỗ trợ bởi máy chủ ủy quyền.
|
||||
unsupported_response_type: Máy chủ ủy quyền không hỗ trợ loại phản hồi này.
|
||||
flash:
|
||||
applications:
|
||||
create:
|
||||
notice: Ứng dụng được tạo.
|
||||
destroy:
|
||||
notice: Ứng dụng đã bị xóa.
|
||||
update:
|
||||
notice: Ứng dụng cập nhật.
|
||||
authorized_applications:
|
||||
destroy:
|
||||
notice: Ứng dụng bị thu hồi.
|
||||
layouts:
|
||||
admin:
|
||||
nav:
|
||||
applications: Các ứng dụng
|
||||
oauth2_provider: Nhà cung cấp OAuth2
|
||||
application:
|
||||
title: Yêu cầu ủy quyền OAuth
|
||||
scopes:
|
||||
admin:read: đọc tất cả dữ liệu trên máy chủ
|
||||
admin:read:accounts: đọc thông tin nhạy cảm của tất cả các tài khoản
|
||||
admin:read:reports: đọc thông tin nhạy cảm của tất cả các báo cáo và tài khoản báo cáo
|
||||
admin:write: sửa đổi tất cả dữ liệu trên máy chủ
|
||||
admin:write:accounts: thực hiện các hành động kiểm duyệt trên tài khoản
|
||||
admin:write:reports: thực hiện các hành động kiểm duyệt trên các báo cáo
|
||||
follow: sửa đổi các mối quan hệ tài khoản
|
||||
push: nhận thông báo đẩy của bạn
|
||||
read: đọc tất cả dữ liệu tài khoản của bạn
|
||||
read:accounts: xem thông tin tài khoản
|
||||
read:blocks: xem khối của bạn
|
||||
read:bookmarks: xem các mục đã lưu
|
||||
read:favourites: xem yêu thích của bạn
|
||||
read:filters: xem bộ lọc của bạn
|
||||
read:follows: xem sau của bạn
|
||||
read:lists: xem danh sách của bạn
|
||||
read:mutes: xem những người bạn của bạn
|
||||
read:notifications: xem thông báo của bạn
|
||||
read:reports: xem báo cáo của bạn
|
||||
read:search: thay mặt bạn tìm kiếm
|
||||
read:statuses: xem tất cả các trạng thái
|
||||
write: sửa đổi tất cả dữ liệu tài khoản của bạn
|
||||
write:accounts: sửa đổi hồ sơ của bạn
|
||||
write:blocks: chặn tài khoản và tên miền
|
||||
write:bookmarks: những trạng thái đã lưu
|
||||
write:favourites: trạng thái yêu thích
|
||||
write:filters: tạo bộ lọc
|
||||
write:follows: theo dõi mọi người
|
||||
write:lists: tạo danh sách
|
||||
write:media: tải lên tập tin phương tiện truyền thông
|
||||
write:mutes: người câm và nói chuyện
|
||||
write:notifications: xóa thông báo của bạn
|
||||
write:reports: báo cáo người khác
|
||||
write:statuses: xuất bản trạng thái
|
@ -4,7 +4,7 @@ zh-CN:
|
||||
attributes:
|
||||
doorkeeper/application:
|
||||
name: 应用名称
|
||||
redirect_uri: 重定向 URI
|
||||
redirect_uri: 跳转 URI
|
||||
scopes: 权限范围
|
||||
website: 应用网站
|
||||
errors:
|
||||
@ -115,16 +115,17 @@ zh-CN:
|
||||
title: 需要 OAuth 认证
|
||||
scopes:
|
||||
admin:read: 读取服务器上的所有数据
|
||||
admin:read:accounts: 读取所有账户的敏感信息
|
||||
admin:read:reports: 读取所有举报和被举报账户的敏感信息
|
||||
admin:read:accounts: 读取所有帐号的敏感信息
|
||||
admin:read:reports: 读取所有举报和被举报帐号的敏感信息
|
||||
admin:write: 修改服务器上的所有数据
|
||||
admin:write:accounts: 对账户执行管理操作
|
||||
admin:write:accounts: 对帐号执行管理操作
|
||||
admin:write:reports: 对举报执行管理操作
|
||||
follow: 关注或屏蔽用户
|
||||
push: 接收你的帐户的推送通知
|
||||
read: 读取你的帐户数据
|
||||
read:accounts: 查看账户信息
|
||||
read:accounts: 查看账号信息
|
||||
read:blocks: 查看你的屏蔽列表
|
||||
read:bookmarks: 查看您的书签
|
||||
read:favourites: 查看喜欢的嘟文
|
||||
read:filters: 查看你的过滤器
|
||||
read:follows: 查看你的关注
|
||||
@ -134,9 +135,10 @@ zh-CN:
|
||||
read:reports: 查看你的举报
|
||||
read:search: 以你的身份搜索
|
||||
read:statuses: 查看所有嘟文
|
||||
write: 修改你的账户数据
|
||||
write: 修改你的账号数据
|
||||
write:accounts: 修改你的个人资料
|
||||
write:blocks: 屏蔽账户和域名
|
||||
write:blocks: 屏蔽账号和域名
|
||||
write:bookmarks: 为嘟文添加书签
|
||||
write:favourites: 喜欢的嘟文
|
||||
write:filters: 创建过滤器
|
||||
write:follows: 关注其他人
|
||||
|
@ -72,6 +72,7 @@ zh-HK:
|
||||
index:
|
||||
application: 應用程式
|
||||
created_at: 授權日期
|
||||
date_format: "%Y-%m-%d %H:%M:%S"
|
||||
scopes: 權限範圍
|
||||
title: 已獲你授權的程用程式
|
||||
errors:
|
||||
@ -113,7 +114,37 @@ zh-HK:
|
||||
application:
|
||||
title: 需要 OAuth 授權
|
||||
scopes:
|
||||
admin:read: 讀取伺服器的所有資料
|
||||
admin:read:accounts: 讀取所有帳戶的敏感資訊
|
||||
admin:read:reports: 讀取所有回報 / 被回報之帳戶的敏感資訊
|
||||
admin:write: 修改伺服器的所有資料
|
||||
admin:write:accounts: 對帳戶進行仲裁管理動作
|
||||
admin:write:reports: 對報告進行仲裁管理動作
|
||||
follow: 關注、封鎖、解除封鎖及取消關注用戶
|
||||
push: 接收你的帳號的推送通知
|
||||
read: 閱讀你的用戶資料
|
||||
read:accounts: 檢視帳戶資訊
|
||||
read:blocks: 檢視您的封鎖名單
|
||||
read:bookmarks: 檢視您的書籤
|
||||
read:favourites: 檢視您的收藏項目
|
||||
read:filters: 檢視您的過濾條件
|
||||
read:follows: 檢視您關注的人
|
||||
read:lists: 檢視您的名單
|
||||
read:mutes: 檢視您靜音的人
|
||||
read:notifications: 檢視您的通知
|
||||
read:reports: 檢視您的檢舉
|
||||
read:search: 以你的身份搜尋
|
||||
read:statuses: 檢視所有嘟文
|
||||
write: 以你的名義發佈文章
|
||||
write:accounts: 修改您的個人檔案
|
||||
write:blocks: 封鎖帳戶及站台
|
||||
write:bookmarks: 書籤狀態
|
||||
write:favourites: 收藏嘟文
|
||||
write:filters: 建立過濾條件
|
||||
write:follows: 關注其他人
|
||||
write:lists: 建立名單
|
||||
write:media: 上傳媒體檔案
|
||||
write:mutes: 靜音使用者及對話
|
||||
write:notifications: 清除您的通知
|
||||
write:reports: 檢舉其他人
|
||||
write:statuses: 發布嘟文
|
||||
|
@ -125,6 +125,7 @@ zh-TW:
|
||||
read: 讀取您所有的帳號資料
|
||||
read:accounts: 檢視帳戶資訊
|
||||
read:blocks: 檢視您的封鎖名單
|
||||
read:bookmarks: 檢視您的書籤
|
||||
read:favourites: 檢視您的收藏項目
|
||||
read:filters: 檢視您的過濾條件
|
||||
read:follows: 檢視您關注的人
|
||||
@ -137,6 +138,7 @@ zh-TW:
|
||||
write: 修改您帳號的所有資料
|
||||
write:accounts: 修改您的個人檔案
|
||||
write:blocks: 封鎖帳戶及站台
|
||||
write:bookmarks: 書籤狀態
|
||||
write:favourites: 收藏嘟文
|
||||
write:filters: 建立過濾條件
|
||||
write:follows: 關注其他人
|
||||
|
@ -2,7 +2,7 @@
|
||||
el:
|
||||
about:
|
||||
about_hashtag_html: Αυτά είναι κάποια από τα δημόσια τουτ σημειωμένα με <strong>#%{hashtag}</strong>. Μπορείς να αλληλεπιδράσεις με αυτά αν έχεις λογαριασμό οπουδήποτε στο fediverse.
|
||||
about_mastodon_html: Το Mastodon είναι ένα κοινωνικό δίκτυο που βασίζεται σε ανοιχτά δικτυακά πρωτόκολλα και ελεύθερο λογισμικό ανοιχτού κώδικα. Είναι αποκεντρωμένο όπως το e-mail.
|
||||
about_mastodon_html: 'Το κοινωνικό δίκτυο του μέλλοντος: Χωρίς διαφημίσεις, χωρίς εταιρίες να σε κατασκοπεύουν, ηθικά σχεδιασμένο και αποκεντρωμένο! Με το Mastodon τα δεδομένα σου είναι πραγματικά δικά σου!'
|
||||
about_this: Σχετικά
|
||||
active_count_after: ενεργοί
|
||||
active_footnote: Μηνιαίοι Ενεργοί Χρήστες (ΜΕΧ)
|
||||
@ -15,14 +15,14 @@ el:
|
||||
browse_public_posts: Ξεφύλλισε τη ζωντανή ροή του Mastodon
|
||||
contact: Επικοινωνία
|
||||
contact_missing: Δεν έχει οριστεί
|
||||
contact_unavailable: Μ/Δ
|
||||
contact_unavailable: Μη διαθέσιμο
|
||||
discover_users: Ανακάλυψε χρήστες
|
||||
documentation: Τεκμηρίωση
|
||||
federation_hint_html: Με ένα λογαριασμό στο %{instance} θα μπορείς να ακολουθείς ανθρώπους σε οποιοδήποτε κόμβο στο Mastodon αλλά και αλλού.
|
||||
federation_hint_html: Με ένα λογαριασμό στο %{instance} θα μπορείς να ακολουθείς ανθρώπους σε οποιοδήποτε κόμβο Mastodon αλλά και παραπέρα.
|
||||
get_apps: Δοκίμασε μια εφαρμογή κινητού
|
||||
hosted_on: Το Mastodon φιλοξενείται στο %{domain}
|
||||
instance_actor_flash: |
|
||||
Αυτός ο λογαριασμός είναι εικονικός και απεικονίζει τον κόμβο, όχι κάποιο συγκεκριμένο χρήστη.
|
||||
Αυτός ο λογαριασμός είναι εικονικός και απεικονίζει ολόκληρο τον κόμβο, όχι κάποιο συγκεκριμένο χρήστη.
|
||||
Χρησιμεύει στη λειτουργία της ομοσπονδίας και δε θα πρέπει να αποκλειστεί, εκτός κι αν είναι επιθυμητός ο αποκλεισμός ολόκληρου του κόμβου. Σε αυτή την περίπτωση θα πρέπει να χρησιμοποιηθεί η λειτουργία αποκλεισμού τομέα.
|
||||
learn_more: Μάθε περισσότερα
|
||||
privacy_policy: Πολιτική απορρήτου
|
||||
@ -78,6 +78,7 @@ el:
|
||||
roles:
|
||||
admin: Διαχειριστής
|
||||
bot: Μποτ (αυτόματος λογαριασμός)
|
||||
group: Ομάδα
|
||||
moderator: Μεσολαβητής
|
||||
unavailable: Το προφίλ δεν είναι διαθέσιμο
|
||||
unfollow: Διακοπή παρακολούθησης
|
||||
@ -393,10 +394,18 @@ el:
|
||||
created_msg: Επιτυχής δημιουργία σημείωσης καταγγελίας!
|
||||
destroyed_msg: Επιτυχής διαγραφή σημείωσης καταγγελίας!
|
||||
reports:
|
||||
account:
|
||||
notes:
|
||||
one: "%{count} σημείωση"
|
||||
other: "%{count} σημειώσεις"
|
||||
reports:
|
||||
one: "%{count} αναφορά"
|
||||
other: "%{count} αναφορές"
|
||||
action_taken_by: Ενέργεια από τον/την
|
||||
are_you_sure: Σίγουρα;
|
||||
assign_to_self: Ανάθεση σε μένα
|
||||
assigned: Αρμόδιος συντονιστής
|
||||
by_target_domain: Κόμβος του λογαριασμού υπό καταγγελία
|
||||
comment:
|
||||
none: Κανένα
|
||||
created_at: Καταγγέλθηκε
|
||||
@ -442,6 +451,8 @@ el:
|
||||
users: Προς συνδεδεμένους τοπικούς χρήστες
|
||||
domain_blocks_rationale:
|
||||
title: Εμφάνιση σκεπτικού
|
||||
enable_bootstrap_timeline_accounts:
|
||||
title: Προεπιλογή παρακολούθησης για τους νέους χρήστες
|
||||
hero:
|
||||
desc_html: Εμφανίζεται στην μπροστινή σελίδα. Συνίσταται τουλάχιστον 600x100px. Όταν λείπει, χρησιμοποιείται η μικρογραφία του κόμβου
|
||||
title: Εικόνα ήρωα
|
||||
@ -570,6 +581,10 @@ el:
|
||||
animations_and_accessibility: Κίνηση και προσβασιμότητα
|
||||
confirmation_dialogs: Ερωτήσεις επιβεβαίωσης
|
||||
discovery: Εξερεύνηση
|
||||
localization:
|
||||
body: Το Mastodon μεταφράζεται από εθελοντές.
|
||||
guide_link: https://crowdin.com/project/mastodon
|
||||
guide_link_text: Μπορεί να συνεισφέρει ο οποιοσδήποτε.
|
||||
sensitive_content: Ευαίσθητο περιεχόμενο
|
||||
toot_layout: Διαρρύθμιση τουτ
|
||||
application_mailer:
|
||||
@ -592,7 +607,7 @@ el:
|
||||
change_password: Συνθηματικό
|
||||
checkbox_agreement_html: Συμφωνώ με τους <a href="%{rules_path}" target="_blank">κανονισμούς του κόμβου</a> και <a href="%{terms_path}" target="_blank">τους όρους χρήσης</a>
|
||||
checkbox_agreement_without_rules_html: Συμφωνώ με τους <a href="%{terms_path}" target="_blank">όρους χρήσης</a>
|
||||
delete_account: Διαγραφή email
|
||||
delete_account: Διαγραφή λογαριασμού
|
||||
delete_account_html: Αν θέλεις να διαγράψεις το λογαριασμό σου, μπορείς <a href="%{path}">να συνεχίσεις εδώ</a>. Θα σου ζητηθεί επιβεβαίωση.
|
||||
description:
|
||||
prefix_invited_by_user: Ο/Η @%{name} σε προσκαλεί να συνδεθείς με αυτό τον διακομιστή του Mastodon!
|
||||
@ -603,7 +618,7 @@ el:
|
||||
invalid_reset_password_token: Το διακριτικό επαναφοράς συνθηματικού είναι άκυρο ή ληγμένο. Παρακαλώ αιτήσου νέο.
|
||||
login: Σύνδεση
|
||||
logout: Αποσύνδεση
|
||||
migrate_account: Μετακόμισε σε διαφορετικό λογαριασμό
|
||||
migrate_account: Μετακόμιση σε διαφορετικό λογαριασμό
|
||||
migrate_account_html: Αν θέλεις να ανακατευθύνεις αυτό τον λογαριασμό σε έναν διαφορετικό, μπορείς να το <a href="%{path}">διαμορφώσεις εδώ</a>.
|
||||
or_log_in_with: Ή συνδέσου με
|
||||
providers:
|
||||
@ -701,14 +716,13 @@ el:
|
||||
archive_takeout:
|
||||
date: Ημερομηνία
|
||||
download: Κατέβασε το αρχείο σου
|
||||
hint_html: Μπορείς να αιτηθείς ένα αρχείο των <strong>τουτ και των ανεβασμένων πολυμέσων</strong> σου. Τα δεδομένα θα είναι σε μορφή ActivityPub, προσιτά από οποιοδήποτε συμβατό πρόγραμμα. Μπορείς να αιτηθείς αρχείο κάθε 7 μέρες.
|
||||
hint_html: Μπορείς να αιτηθείς ένα αρχείο των <strong>τουτ και των ανεβασμένων πολυμέσων</strong> σου. Τα δεδομένα θα είναι σε μορφή ActivityPub, προσπελάσιμα από οποιοδήποτε συμβατό πρόγραμμα. Μπορείς να αιτηθείς αρχείο κάθε 7 μέρες.
|
||||
in_progress: Συγκεντρώνουμε το αρχείο σου...
|
||||
request: Αιτήσου το αρχείο σου
|
||||
size: Μέγεθος
|
||||
blocks: Μπλοκάρεις
|
||||
csv: CSV
|
||||
domain_blocks: Μπλοκαρίσματα κόμβων
|
||||
follows: Ακολουθείς
|
||||
lists: Λίστες
|
||||
mutes: Αποσιωπήσεις
|
||||
storage: Αποθήκευση πολυμέσων
|
||||
@ -730,6 +744,7 @@ el:
|
||||
invalid_irreversible: Τα μη αντιστρέψιμα φίλτρα δουλεύουν μόνο στα πλαίσια της αρχικής ροής και των ειδοποιήσεων
|
||||
index:
|
||||
delete: Διαγραφή
|
||||
empty: Δεν έχεις φίλτρα.
|
||||
title: Φίλτρα
|
||||
new:
|
||||
title: Πρόσθεσε νέο φίλτρο
|
||||
@ -878,6 +893,10 @@ el:
|
||||
body: 'Η κατάστασή σου προωθήθηκε από τον/την %{name}:'
|
||||
subject: Ο/Η %{name} προώθησε την κατάστασή σου
|
||||
title: Νέα προώθηση
|
||||
notifications:
|
||||
email_events: Συμβάντα για ειδοποιήσεις μέσω email
|
||||
email_events_hint: 'Επέλεξε συμβάντα για τα οποία θέλεις να λαμβάνεις ειδοποιήσεις μέσω email:'
|
||||
other_settings: Άλλες ρυθμίσεις ειδοποιήσεων
|
||||
number:
|
||||
human:
|
||||
decimal_units:
|
||||
@ -910,11 +929,13 @@ el:
|
||||
public_timelines: Δημόσιες ροές
|
||||
relationships:
|
||||
activity: Δραστηριότητα λογαριασμού
|
||||
dormant: Αδρανής
|
||||
dormant: Αδρανείς
|
||||
followers: Σε ακολουθούν
|
||||
following: Ακολουθείς
|
||||
last_active: Τελευταία δραστηριότητα
|
||||
most_recent: Πιο πρόσφατα
|
||||
moved: Μετακόμισε
|
||||
mutual: Αμοιβαίος
|
||||
mutual: Αμοιβαίοι
|
||||
primary: Βασικός
|
||||
relationship: Σχέση
|
||||
remove_selected_domains: Αφαίρεση ακόλουθων που βρίσκονται στους επιλεγμένους κόμβους
|
||||
@ -1002,7 +1023,7 @@ el:
|
||||
notifications: Ειδοποιήσεις
|
||||
preferences: Προτιμήσεις
|
||||
profile: Προφίλ
|
||||
relationships: Ακολουθεί και ακολουθείται
|
||||
relationships: Ακολουθείς και σε ακολουθούν
|
||||
two_factor_authentication: Πιστοποίηση 2 παραγόντων (2FA)
|
||||
spam_check:
|
||||
spam_detected: Αυτή είναι μια αυτόματη αναφορά. Εντοπίστηκε ανεπιθύμητο υλικό (spam).
|
||||
@ -1025,7 +1046,7 @@ el:
|
||||
over_character_limit: υπέρβαση μέγιστου ορίου %{max} χαρακτήρων
|
||||
pin_errors:
|
||||
limit: Έχεις ήδη καρφιτσώσει το μέγιστο αριθμό επιτρεπτών τουτ
|
||||
ownership: Δεν μπορείς να καρφιτσώσεις μη δικό σου τουτ
|
||||
ownership: Δεν μπορείς να καρφιτσώσεις τουτ κάποιου άλλου
|
||||
private: Τα μη δημόσια τουτ δεν καρφιτσώνονται
|
||||
reblog: Οι προωθήσεις δεν καρφιτσώνονται
|
||||
poll:
|
||||
@ -1037,7 +1058,7 @@ el:
|
||||
other: "%{count} ψήφοι"
|
||||
vote: Ψήφισε
|
||||
show_more: Δείξε περισσότερα
|
||||
sign_in_to_participate: Εγγράφου για να συμμετάσχεις στη συζήτηση
|
||||
sign_in_to_participate: Συνδέσου για να συμμετάσχεις στη συζήτηση
|
||||
title: '%{name}: "%{quote}"'
|
||||
visibilities:
|
||||
private: Μόνο ακόλουθοι
|
||||
@ -1161,7 +1182,7 @@ el:
|
||||
wrong_code: Ο κωδικός που έβαλες ήταν άκυρος! Τα ρολόγια στον διακομιστή και τη συσκευή είναι σωστά;
|
||||
user_mailer:
|
||||
backup_ready:
|
||||
explanation: Ζήτησες ένα εφεδρικό αντίγραφο του λογαριασμού σου στο Mastodon. Είναι έτοιμο για κατέβασμα!
|
||||
explanation: Είχες ζητήσει εφεδρικό αντίγραφο του λογαριασμού σου στο Mastodon. Είναι έτοιμο για κατέβασμα!
|
||||
subject: Το εφεδρικό αντίγραφό σου είναι έτοιμο για κατέβασμα
|
||||
title: Λήψη εφεδρικού αρχείου
|
||||
warning:
|
||||
@ -1181,7 +1202,7 @@ el:
|
||||
disable: Παγωμένος λογαριασμός
|
||||
none: Προειδοποίηση
|
||||
silence: Περιορισμένος λογαριασμός
|
||||
suspend: Ανασταλμένος λογαριασμός
|
||||
suspend: Λογαριασμός σε αναστολή
|
||||
welcome:
|
||||
edit_profile_action: Στήσιμο προφίλ
|
||||
edit_profile_step: Μπορείς να προσαρμόσεις το προφίλ σου ανεβάζοντας μια εικόνα εμφάνισης & επικεφαλίδας, αλλάζοντας το εμφανιζόμενο όνομά σου και άλλα. Αν θες να ελέγχεις τους νέου σου ακόλουθους πριν αυτοί σε ακολουθήσουν, μπορείς να κλειδώσεις το λογαριασμό σου.
|
||||
|
@ -340,6 +340,7 @@ en:
|
||||
delete: Delete
|
||||
destroyed_msg: Successfully deleted e-mail domain from blacklist
|
||||
domain: Domain
|
||||
empty: No e-mail domains currently blacklisted.
|
||||
new:
|
||||
create: Add domain
|
||||
title: New e-mail blacklist entry
|
||||
@ -935,6 +936,7 @@ en:
|
||||
duration_too_long: is too far into the future
|
||||
duration_too_short: is too soon
|
||||
expired: The poll has already ended
|
||||
invalid_choice: The chosen vote option does not exist
|
||||
over_character_limit: cannot be longer than %{max} characters each
|
||||
too_few_options: must have more than one item
|
||||
too_many_options: can't contain more than %{max} items
|
||||
|
@ -343,6 +343,9 @@ en_GB:
|
||||
created_msg: Report note successfully created!
|
||||
destroyed_msg: Report note successfully deleted!
|
||||
reports:
|
||||
account:
|
||||
note: note
|
||||
report: report
|
||||
action_taken_by: Action taken by
|
||||
are_you_sure: Are you sure?
|
||||
assign_to_self: Assign to me
|
||||
|
@ -71,6 +71,7 @@ eo:
|
||||
roles:
|
||||
admin: Administranto
|
||||
bot: Roboto
|
||||
group: Grupo
|
||||
moderator: Kontrolanto
|
||||
unavailable: Profilo ne disponebla
|
||||
unfollow: Ne plu sekvi
|
||||
@ -164,6 +165,7 @@ eo:
|
||||
staff: Teamo
|
||||
user: Uzanto
|
||||
search: Serĉi
|
||||
search_same_ip: Aliaj uzantoj kun la sama IP
|
||||
shared_inbox_url: URL de kunhavigita leterkesto
|
||||
show:
|
||||
created_reports: Kreitaj signaloj
|
||||
@ -190,12 +192,14 @@ eo:
|
||||
confirm_user: "%{name} konfirmis retadreson de uzanto %{target}"
|
||||
create_account_warning: "%{name} sendis averton al %{target}"
|
||||
create_custom_emoji: "%{name} alŝutis novan emoĝion %{target}"
|
||||
create_domain_allow: "%{name} aldonis domajnon %{target} al la blanka listo"
|
||||
create_domain_block: "%{name} blokis domajnon %{target}"
|
||||
create_email_domain_block: "%{name} metis en nigran liston domajnon %{target}"
|
||||
demote_user: "%{name} degradis uzanton %{target}"
|
||||
destroy_custom_emoji: "%{name} neniigis la emoĝion %{target}"
|
||||
destroy_domain_allow: "%{name} forigis domajnon %{target} el la blanka listo"
|
||||
destroy_domain_block: "%{name} malblokis domajnon %{target}"
|
||||
destroy_email_domain_block: "%{name} metis en blankan liston domajnon %{target}"
|
||||
destroy_email_domain_block: "%{name} aldonis retadresan domajnon %{target} al la blanka listo"
|
||||
destroy_status: "%{name} forigis mesaĝojn de %{target}"
|
||||
disable_2fa_user: "%{name} malebligis dufaktoran aŭtentigon por uzanto %{target}"
|
||||
disable_custom_emoji: "%{name} malebligis emoĝion %{target}"
|
||||
@ -218,10 +222,12 @@ eo:
|
||||
deleted_status: "(forigita mesaĝo)"
|
||||
title: Kontrola protokolo
|
||||
custom_emojis:
|
||||
assign_category: Atribui kategorion
|
||||
by_domain: Domajno
|
||||
copied_msg: Loka kopio de la emoĝio sukcese kreita
|
||||
copy: Kopii
|
||||
copy_failed_msg: Fari lokan kopion de ĉi tiu emoĝio ne eblis
|
||||
create_new_category: Krei novan kategorion
|
||||
created_msg: Emoĝio sukcese kreita!
|
||||
delete: Forigi
|
||||
destroyed_msg: Emoĝio sukcese forigita!
|
||||
@ -241,6 +247,7 @@ eo:
|
||||
shortcode: Mallonga kodo
|
||||
shortcode_hint: Almenaŭ 2 signoj, nur literoj, ciferoj kaj substrekoj
|
||||
title: Propraj emoĝioj
|
||||
uncategorized: Nekategoriigita
|
||||
unlist: Nelistigi
|
||||
unlisted: Nelistigita
|
||||
update_failed_msg: Ĝisdatigi tiun emoĝion ne eblis
|
||||
@ -259,7 +266,8 @@ eo:
|
||||
feature_timeline_preview: Templinio antaŭvidi
|
||||
features: Funkcioj
|
||||
hidden_service: Federacio kun kaŝitaj servoj
|
||||
open_reports: nefermitaj raportoj
|
||||
open_reports: nesolvitaj signaloj
|
||||
pending_users: uzantoj atendantaj revizion
|
||||
recent_users: Lastatempaj uzantoj
|
||||
search: Tutteksta serĉado
|
||||
single_user_mode: Unuuzanta reĝimo
|
||||
@ -273,10 +281,10 @@ eo:
|
||||
week_users_new: uzantoj tiusemajne
|
||||
whitelist_mode: En la blanka listo
|
||||
domain_allows:
|
||||
add_new: En la blanka listo domajno
|
||||
created_msg: Domajno sukcese blanklistigita
|
||||
destroyed_msg: Domajno estis forigita de la blanklisto
|
||||
undo: Forigi de la blanklisto
|
||||
add_new: Aldoni domajnon al la blanka listo
|
||||
created_msg: Domajno estis sukcese aldonita al la blanka listo
|
||||
destroyed_msg: Domajno estis forigita el la blanka listo
|
||||
undo: Forigi el la blanka listo
|
||||
domain_blocks:
|
||||
add_new: Aldoni novan
|
||||
created_msg: Domajna blokado en traktado
|
||||
@ -296,11 +304,11 @@ eo:
|
||||
private_comment: Privata komento
|
||||
public_comment: Publika komento
|
||||
reject_media: Malakcepti aŭdovidajn dosierojn
|
||||
reject_media_hint: Forigas aŭdovidaĵojn loke konservitajn kaj rifuzas alŝuti ajnan estonte. Senzorge pri haltigoj
|
||||
reject_reports: Malakcepti raportojn
|
||||
reject_reports_hint: Ignori ĉiujn raportojn el tiu domajno. Nur gravas por silentigoj
|
||||
reject_media_hint: Forigas aŭdovidaĵojn loke konservitajn kaj rifuzas alŝuti ajnan estonte. Ne koncernas haltigojn
|
||||
reject_reports: Malakcepti signalojn
|
||||
reject_reports_hint: Ignori ĉiujn signalojn el tiu domajno. Ne koncernas haltigojn
|
||||
rejecting_media: aŭdovidaj dosieroj malakceptiĝas
|
||||
rejecting_reports: raportoj malakceptiĝas
|
||||
rejecting_reports: malakceptas signalojn
|
||||
severity:
|
||||
silence: silentigita
|
||||
suspend: haltigita
|
||||
@ -344,7 +352,7 @@ eo:
|
||||
total_blocked_by_us: Blokitaj de ni
|
||||
total_followed_by_them: Sekvataj de ili
|
||||
total_followed_by_us: Sekvataj de ni
|
||||
total_reported: Raportoj pri ili
|
||||
total_reported: Signaloj pri ili
|
||||
total_storage: Aŭdovidaj kunsendaĵoj
|
||||
invites:
|
||||
deactivate_all: Malaktivigi ĉion
|
||||
@ -375,10 +383,18 @@ eo:
|
||||
created_msg: Signala noto sukcese kreita!
|
||||
destroyed_msg: Signala noto sukcese forigita!
|
||||
reports:
|
||||
account:
|
||||
notes:
|
||||
one: "%{count} noto"
|
||||
other: "%{count} notoj"
|
||||
reports:
|
||||
one: "%{count} signalo"
|
||||
other: "%{count} signaloj"
|
||||
action_taken_by: Ago farita de
|
||||
are_you_sure: Ĉu vi certas?
|
||||
assign_to_self: Asigni al mi
|
||||
assigned: Asignita kontrolanto
|
||||
by_target_domain: Domajno de la signalita konto
|
||||
comment:
|
||||
none: Nenio
|
||||
created_at: Signalita
|
||||
@ -419,6 +435,10 @@ eo:
|
||||
disabled: Al neniu
|
||||
title: Vidi domajna blokado
|
||||
users: Al ensalutintaj lokaj uzantoj
|
||||
domain_blocks_rationale:
|
||||
title: Montri la kialon
|
||||
enable_bootstrap_timeline_accounts:
|
||||
title: Ebligi dekomencajn sekvantojn por novaj uzantoj
|
||||
hero:
|
||||
desc_html: Montrata en la ĉefpaĝo. Almenaŭ 600x100px rekomendita. Kiam ne agordita, la bildeto de la servilo estos uzata
|
||||
title: Kapbildo
|
||||
@ -496,6 +516,8 @@ eo:
|
||||
title: Mesaĝoj de la konto
|
||||
with_media: Kun aŭdovidaĵoj
|
||||
tags:
|
||||
accounts_today: Unikaj uzoj hodiaŭ
|
||||
accounts_week: Unikaj uzoj je ĉi tiu semajno
|
||||
context: Kunteksto
|
||||
directory: En la adresaro
|
||||
in_directory: "%{count} en adresaro"
|
||||
@ -539,6 +561,10 @@ eo:
|
||||
animations_and_accessibility: Animacioj kaj alirebleco
|
||||
confirmation_dialogs: Konfirmaj fenestroj
|
||||
discovery: Eltrovo
|
||||
localization:
|
||||
body: Mastodon estas tradukita per volontuloj.
|
||||
guide_link: https://crowdin.com/project/mastodon
|
||||
guide_link_text: Ĉiu povas kontribui.
|
||||
sensitive_content: Tikla enhavo
|
||||
toot_layout: Mesaĝo aranĝo
|
||||
application_mailer:
|
||||
@ -619,10 +645,15 @@ eo:
|
||||
x_months: "%{count}mo"
|
||||
x_seconds: "%{count}s"
|
||||
deletes:
|
||||
challenge_not_passed: La informaĵo ke vi enigis estis malĝusta
|
||||
confirm_password: Enmetu vian nunan pasvorton por konfirmi vian identecon
|
||||
confirm_username: Enigi vian uzantnomon por konfirmi la procedo
|
||||
proceed: Forigi konton
|
||||
success_msg: Via konto estis sukcese forigita
|
||||
warning:
|
||||
email_change_html: Vi povas <a href="%{path}">ŝanĝi vian retadreson</a> sen forigi vian konton
|
||||
username_available: Via uzantnomo iĝos denove disponebla
|
||||
username_unavailable: Via uzantnomo restos nedisponebla
|
||||
directories:
|
||||
directory: Profilujo
|
||||
explanation: Malkovru uzantojn per iliaj interesoj
|
||||
@ -660,7 +691,6 @@ eo:
|
||||
blocks: Vi blokas
|
||||
csv: CSV
|
||||
domain_blocks: Blokoj de domajnoj
|
||||
follows: Vi sekvas
|
||||
lists: Listoj
|
||||
mutes: Vi silentigas
|
||||
storage: Aŭdovidaĵa konservado
|
||||
@ -682,6 +712,7 @@ eo:
|
||||
invalid_irreversible: Nemalfarebla filtrado funkcias nur por hejma aŭ sciiga kuntekstoj
|
||||
index:
|
||||
delete: Forigi
|
||||
empty: Vi ne havas filtriloj.
|
||||
title: Filtriloj
|
||||
new:
|
||||
title: Aldoni novan filtrilon
|
||||
@ -766,15 +797,21 @@ eo:
|
||||
migrations:
|
||||
acct: uzantnomo@domajno de la nova konto
|
||||
cancel: Nuligi alidirekton
|
||||
cancelled_msg: Sukcese forigis la alidirekton.
|
||||
errors:
|
||||
already_moved: estas la saman konton vi jam translokiĝis al
|
||||
move_to_self: ne povas esti nuna konto
|
||||
not_found: ne povis trovi
|
||||
on_cooldown: Vi estas ĉe malvarmiĝi
|
||||
followers_count: Sekvantoj en la momento de moviĝo
|
||||
incoming_migrations: Movi el alian konton
|
||||
incoming_migrations: Moviĝi el alia konto
|
||||
incoming_migrations_html: Por moviĝi el alia konto al ĉi tiu, vi unue devas <a href="%{path}">krei kromnomo de konto</a>.
|
||||
past_migrations: Pasintaj translokaj
|
||||
proceed_with_move: Translokigi sekvantoj
|
||||
redirecting_to: Via konto alidirektas al %{acct}.
|
||||
set_redirect: Agordi alidirekton
|
||||
warning:
|
||||
only_redirect_html: Alie, vi povas <a href="%{path}">nur aldoni alidirekton en via profilo</a>.
|
||||
moderation:
|
||||
title: Kontrolado
|
||||
notification_mailer:
|
||||
@ -811,6 +848,9 @@ eo:
|
||||
body: "%{name} diskonigis vian mesaĝon:"
|
||||
subject: "%{name} diskonigis vian mesaĝon"
|
||||
title: Nova diskonigo
|
||||
notifications:
|
||||
email_events: Eventoj por retpoŝtaj sciigoj
|
||||
other_settings: Aliaj agordoj de sciigoj
|
||||
number:
|
||||
human:
|
||||
decimal_units:
|
||||
@ -844,6 +884,8 @@ eo:
|
||||
relationships:
|
||||
activity: Konta aktiveco
|
||||
dormant: Dormanta
|
||||
followers: Sekvantoj
|
||||
following: Sekvatoj
|
||||
last_active: Laste aktiva
|
||||
most_recent: Plej lasta
|
||||
moved: Moviĝita
|
||||
|
@ -78,6 +78,7 @@ es-AR:
|
||||
roles:
|
||||
admin: Administrador
|
||||
bot: Bot
|
||||
group: Grupo
|
||||
moderator: Moderador
|
||||
unavailable: Perfil no disponible
|
||||
unfollow: Dejar de seguir
|
||||
@ -181,6 +182,7 @@ es-AR:
|
||||
statuses: Estados
|
||||
subscribe: Suscribirse
|
||||
suspended: Suspendidas
|
||||
time_in_queue: Esperando en cola %{time}
|
||||
title: Cuentas
|
||||
unconfirmed_email: Correo electrónico sin confirmar
|
||||
undo_silenced: Deshacer silenciado
|
||||
@ -212,6 +214,7 @@ es-AR:
|
||||
enable_custom_emoji: "%{name} habilitó el emoji %{target}"
|
||||
enable_user: "%{name} habilitó el inicio de sesión para el usuario %{target}"
|
||||
memorialize_account: "%{name} convirtió la cuenta de %{target} en una página de recordatorio"
|
||||
promote_user: "%{name} promovió al usuario %{target}"
|
||||
remove_avatar_user: "%{name} quitó el avatar de %{target}"
|
||||
reopen_report: "%{name} reabrió la denuncia %{target}"
|
||||
reset_password_user: "%{name} cambió la contraseña del usuario %{target}"
|
||||
@ -336,6 +339,7 @@ es-AR:
|
||||
delete: Eliminar
|
||||
destroyed_msg: Se aprobó dominio de correo electrónico exitosamente
|
||||
domain: Dominio
|
||||
empty: Actualmente no hay dominios de correo electrónico desaprobados.
|
||||
new:
|
||||
create: Agregar dominio
|
||||
title: Nueva desaprobación de correo electrónico
|
||||
@ -391,10 +395,18 @@ es-AR:
|
||||
created_msg: "¡La nota de denuncia fue creada exitosamente!"
|
||||
destroyed_msg: "¡La nota de denuncia fue eliminada exitosamente!"
|
||||
reports:
|
||||
account:
|
||||
notes:
|
||||
one: "%{count} nota"
|
||||
other: "%{count} notas"
|
||||
reports:
|
||||
one: "%{count} denuncia"
|
||||
other: "%{count} denuncias"
|
||||
action_taken_by: Acción tomada por
|
||||
are_you_sure: "¿Estás seguro?"
|
||||
assign_to_self: Asignármela a mí
|
||||
assigned: Moderador asignado
|
||||
by_target_domain: Dominio de la cuenta denunciada
|
||||
comment:
|
||||
none: Ninguno
|
||||
created_at: Denunciado
|
||||
@ -438,6 +450,10 @@ es-AR:
|
||||
disabled: A nadie
|
||||
title: Mostrar dominios bloqueados
|
||||
users: A usuarios locales con sesiones abiertas
|
||||
domain_blocks_rationale:
|
||||
title: Mostrar razonamiento
|
||||
enable_bootstrap_timeline_accounts:
|
||||
title: Habilitar seguimientos predeterminados para nuevas cuentas
|
||||
hero:
|
||||
desc_html: Mostrado en la página principal. Se recomienda un tamaño mínimo de 600x100 píxeles. Predeterminadamente se establece a la miniatura del servidor.
|
||||
title: Imagen de portada
|
||||
@ -566,6 +582,10 @@ es-AR:
|
||||
animations_and_accessibility: Animaciones y accesibilidad
|
||||
confirmation_dialogs: Diálogos de confirmación
|
||||
discovery: Descubrimiento
|
||||
localization:
|
||||
body: Mastodon es localizado por voluntarios.
|
||||
guide_link: https://es.crowdin.com/project/mastodon
|
||||
guide_link_text: Todos pueden contribuir.
|
||||
sensitive_content: Contenido sensible
|
||||
toot_layout: Diseño del toot
|
||||
application_mailer:
|
||||
@ -704,7 +724,6 @@ es-AR:
|
||||
blocks: Tus bloqueos
|
||||
csv: CSV
|
||||
domain_blocks: Dominios bloqueados
|
||||
follows: Quienes seguís
|
||||
lists: Listas
|
||||
mutes: Quienes silenciaste
|
||||
storage: Almacenamiento de medios
|
||||
@ -726,6 +745,7 @@ es-AR:
|
||||
invalid_irreversible: El filtrado irreversible sólo funciona con los contextos de "Principal" o de notificaciones
|
||||
index:
|
||||
delete: Eliminar
|
||||
empty: No tenés filtros.
|
||||
title: Filtros
|
||||
new:
|
||||
title: Agregar nuevo filtro
|
||||
@ -874,6 +894,10 @@ es-AR:
|
||||
body: "%{name} retooteó tu estado:"
|
||||
subject: "%{name} retooteó tu estado"
|
||||
title: Nuevo retoot
|
||||
notifications:
|
||||
email_events: Eventos para notificaciones por correo electrónico
|
||||
email_events_hint: 'Seleccioná los eventos para los que querés recibir notificaciones:'
|
||||
other_settings: Configuración de otras notificaciones
|
||||
number:
|
||||
human:
|
||||
decimal_units:
|
||||
@ -907,6 +931,8 @@ es-AR:
|
||||
relationships:
|
||||
activity: Actividad de la cuenta
|
||||
dormant: Inactivas
|
||||
followers: Seguidores
|
||||
following: Siguiendo
|
||||
last_active: Última actividad
|
||||
most_recent: Más reciente
|
||||
moved: Mudada
|
||||
@ -1189,7 +1215,9 @@ es-AR:
|
||||
review_preferences_action: Cambiar configuración
|
||||
review_preferences_step: Asegurate de establecer tu configuración, como qué tipo de correos electrónicos te gustaría recibir, o qué nivel de privacidad te gustaría que sea el predeterminado para tus toots. Si no tenés mareos, podrías elegir habilitar la reproducción automática de GIFs.
|
||||
subject: Bienvenido a Mastodon
|
||||
tip_federated_timeline: La línea temporal federada es una línea contínua global de la red de Mastodon. Pero sólo incluye gente que tus vecinos están siguiendo, así que no es completa.
|
||||
tip_following: Predeterminadamente seguís al / a los administrador/es de tu servidor. Para encontrar más gente interesante, revisá las lineas temporales local y federada.
|
||||
tip_local_timeline: La línea temporal local es una línea contínua global de cuentas en %{instance}. ¡Estos son tus vecinos inmediatos!
|
||||
tip_mobile_webapp: Si tu navegador web móvil te ofrece agregar Mastodon a tu página de inicio, podés recibir notificaciones PuSH. ¡Actúa como una aplicación nativa de muchas maneras!
|
||||
tips: Consejos
|
||||
title: "¡Bienvenido a bordo, %{name}!"
|
||||
|
@ -1,32 +1,32 @@
|
||||
---
|
||||
es:
|
||||
about:
|
||||
about_hashtag_html: Estos son toots públicos etiquetados con <strong>#%{hashtag}</strong>. Puedes interactuar con ellos si tienes una cuenta en el fediverso.
|
||||
about_mastodon_html: Mastodon es una red social basada en protocolos web abiertos y software libre y de código abierto. Está descentralizado como correo electrónico.
|
||||
about_hashtag_html: Estos son barritadas públicas etiquetadas con <strong>#%{hashtag}</strong>. Puedes interactuar con ellas si tienes una cuenta en el fediverso.
|
||||
about_mastodon_html: Mastodonte es una red social basada en protocolos web abiertos y Programas Libres y de Código Abierto - Plica/Foss -. Está descentralizado como el correo electrónico!
|
||||
about_this: Información
|
||||
active_count_after: activo
|
||||
active_footnote: Usuarios Activos Mensuales (UAM)
|
||||
administered_by: 'Administrado por:'
|
||||
api: API
|
||||
apps: Aplicaciones móviles
|
||||
apps_platforms: Utiliza Mastodon desde iOS, Android y otras plataformas
|
||||
apps_platforms: Utiliza Mastodonte desde iOS, Android y otras plataformas
|
||||
browse_directory: Navega por el directorio de perfiles y filtra por intereses
|
||||
browse_local_posts: Explora en vivo los posts públicos de este servidor
|
||||
browse_public_posts: Navega por un transmisión en vivo de publicaciones públicas en Mastodon
|
||||
contact: Contacto
|
||||
contact_missing: No especificado
|
||||
contact_unavailable: N/A
|
||||
contact_unavailable: No disponible
|
||||
discover_users: Descubrir usuarios
|
||||
documentation: Documentación
|
||||
federation_hint_html: Con una cuenta en %{instance} usted podrá seguir a las personas en cualquier servidor de Mastodon y más allá.
|
||||
federation_hint_html: Con una cuenta en %{instance} usted podrá seguir a las personas en cualquier servidor de Mastodonte y más allá.
|
||||
get_apps: Probar una aplicación móvil
|
||||
hosted_on: Mastodon hosteado en %{domain}
|
||||
hosted_on: Mastodonte huesped en %{domain}
|
||||
instance_actor_flash: |
|
||||
Esta cuenta es un actor virtual usado para representar al servidor y no a ningún usuario individual.
|
||||
Se usa para fines federativos y no debe ser bloqueado a menos que usted quiera bloquear toda la instancia, en cuyo caso se debe utilizar un bloque de dominio.
|
||||
learn_more: Aprende más
|
||||
learn_more: Aprenda más
|
||||
privacy_policy: Política de privacidad
|
||||
see_whats_happening: Ver lo que está pasando
|
||||
see_whats_happening: Vea lo que está pasando
|
||||
server_stats: 'Datos del servidor:'
|
||||
source_code: Código fuente
|
||||
status_count_after:
|
||||
@ -42,16 +42,16 @@ es:
|
||||
rejecting_media: Los archivos multimedia de este servidor no serán procesados y no se mostrarán miniaturas, lo que requiere un clic manual en el otro servidor.
|
||||
silenced: Las publicaciones de este servidor no se mostrarán en ningún lugar salvo en el Inicio si sigues al autor.
|
||||
suspended: No podrás seguir a nadie de este servidor, y ningún dato de este será procesado o almacenado, y no se intercambiarán datos.
|
||||
unavailable_content_html: Mastodon generalmente le permite ver contenido e interactuar con usuarios de cualquier otro servidor en el fediverso. Estas son las excepciones que se han hecho en este servidor en particular.
|
||||
unavailable_content_html: Mastodonte generalmente le permite ver contenido e interactuar con usuarios de cualquier otro servidor en el fediverso. Estas son las excepciones que se han hecho en este servidor en particular.
|
||||
user_count_after:
|
||||
one: usuario
|
||||
other: usuarios
|
||||
user_count_before: Tenemos
|
||||
what_is_mastodon: "¿Qué es Mastodon?"
|
||||
user_count_before: Inicio de
|
||||
what_is_mastodon: "¿Qué es Mastodonte?"
|
||||
accounts:
|
||||
choices_html: 'Elecciones de %{name}:'
|
||||
endorsements_hint: Puedes recomendar a gente que sigues desde la interfaz web, y aparecerán allí.
|
||||
featured_tags_hint: Puede presentar hashtags específicos que se mostrarán aquí.
|
||||
featured_tags_hint: Puede presentar etiquetas específicas que se mostrarán aquí.
|
||||
follow: Seguir
|
||||
followers:
|
||||
one: Seguidor
|
||||
@ -70,14 +70,15 @@ es:
|
||||
pin_errors:
|
||||
following: Debes estar siguiendo a la persona a la que quieres aprobar
|
||||
posts:
|
||||
one: Toot
|
||||
one: Barritar
|
||||
other: Toots
|
||||
posts_tab_heading: Toots
|
||||
posts_with_replies: Toots con respuestas
|
||||
posts_tab_heading: Bramidos
|
||||
posts_with_replies: Bramidos con respuestas
|
||||
reserved_username: El nombre de usuario está reservado
|
||||
roles:
|
||||
admin: Administrador
|
||||
bot: Bot
|
||||
group: Grupo
|
||||
moderator: Moderador
|
||||
unavailable: Perfil no disponible
|
||||
unfollow: Dejar de seguir
|
||||
@ -180,7 +181,7 @@ es:
|
||||
silenced: Silenciado
|
||||
statuses: Estados
|
||||
subscribe: Suscribir
|
||||
suspended: Susependido
|
||||
suspended: Suspendido
|
||||
time_in_queue: Esperando en cola %{time}
|
||||
title: Cuentas
|
||||
unconfirmed_email: Correo electrónico sin confirmar
|
||||
@ -269,11 +270,11 @@ es:
|
||||
feature_registrations: Registros
|
||||
feature_relay: Relés de federación
|
||||
feature_spam_check: Contra-spam
|
||||
feature_timeline_preview: Vista previa de la línea de tiempo
|
||||
feature_timeline_preview: Vista previa de la cronología
|
||||
features: Características
|
||||
hidden_service: Federación con servicios ocultos
|
||||
open_reports: informes abiertos
|
||||
pending_tags: hashtags esperando revisión
|
||||
pending_tags: etiquetas esperando revisión
|
||||
pending_users: usuarios esperando por revisión
|
||||
recent_users: Usuarios recientes
|
||||
search: Búsqueda por texto completo
|
||||
@ -320,7 +321,7 @@ es:
|
||||
rejecting_reports: rechazando informes
|
||||
severity:
|
||||
silence: silenciado
|
||||
suspend: susependido
|
||||
suspend: suspendido
|
||||
show:
|
||||
affected_accounts:
|
||||
one: Una cuenta en la base de datos afectada
|
||||
@ -338,6 +339,7 @@ es:
|
||||
delete: Borrar
|
||||
destroyed_msg: Dominio de correo borrado de la lista negra con éxito
|
||||
domain: Dominio
|
||||
empty: Actualmente no hay dominios de correo electrónico en la lista negra.
|
||||
new:
|
||||
create: Añadir dominio
|
||||
title: Nueva entrada en la lista negra de correo
|
||||
@ -380,7 +382,7 @@ es:
|
||||
disable: Deshabilitar
|
||||
disabled: Deshabilitado
|
||||
enable: Hablitar
|
||||
enable_hint: Una vez conectado, tu servidor se suscribirá a todos los toots públicos de este relés, y comenzará a enviar los toots públicos de este servidor hacia él.
|
||||
enable_hint: Una vez conectado, tu servidor se suscribirá a todos los bramidos públicos de este relés, y comenzará a enviar los bramidos públicos de este servidor hacia él.
|
||||
enabled: Habilitado
|
||||
inbox_url: URL del relés
|
||||
pending: Esperando la aprobación del relés
|
||||
@ -393,10 +395,18 @@ es:
|
||||
created_msg: "¡El registro de la denuncia se ha creado correctamente!"
|
||||
destroyed_msg: "¡El registro de la denuncia se ha borrado correctamente!"
|
||||
reports:
|
||||
account:
|
||||
notes:
|
||||
one: "%{count} nota"
|
||||
other: "%{count} notas"
|
||||
reports:
|
||||
one: "%{count} informe"
|
||||
other: "%{count} informes"
|
||||
action_taken_by: Acción tomada por
|
||||
are_you_sure: "¿Estás seguro?"
|
||||
assign_to_self: Asignármela a mí
|
||||
assigned: Moderador asignado
|
||||
by_target_domain: Dominio de la cuenta reportada
|
||||
comment:
|
||||
none: Ninguno
|
||||
created_at: Denunciado
|
||||
@ -424,8 +434,8 @@ es:
|
||||
desc_html: Conteo de estados publicados localmente, usuarios activos, y nuevos registros en periodos semanales
|
||||
title: Publicar estadísticas locales acerca de actividad de usuario
|
||||
bootstrap_timeline_accounts:
|
||||
desc_html: Separa con comas los nombres de usuario. Solo funcionará para cuentas locales desbloqueadas. Si se deja vacío, se tomará como valor por defecto a todos los administradores locales.
|
||||
title: Seguimientos predeterminados para usuarios nuevos
|
||||
desc_html: Separa con comas los nombres de usuaria. Solo funcionará para cuentas locales desbloqueadas. Si se deja vacia, se tomará como valor por defecto a todas las administradoras locales.
|
||||
title: Seguimientos predeterminados para usuarias nuevas
|
||||
contact_information:
|
||||
email: Correo de trabajo
|
||||
username: Nombre de usuario
|
||||
@ -442,6 +452,8 @@ es:
|
||||
users: Para los usuarios locales que han iniciado sesión
|
||||
domain_blocks_rationale:
|
||||
title: Mostrar la razón de ser
|
||||
enable_bootstrap_timeline_accounts:
|
||||
title: Habilitar seguimientos predeterminados para nuevas usuarias
|
||||
hero:
|
||||
desc_html: Mostrado en la página principal. Recomendable al menos 600x100px. Por defecto se establece a la miniatura de la instancia
|
||||
title: Imagen de portada
|
||||
@ -474,8 +486,8 @@ es:
|
||||
open: Cualquiera puede registrarse
|
||||
title: Modo de registros
|
||||
show_known_fediverse_at_about_page:
|
||||
desc_html: Cuando esté activado, se mostrarán toots de todo el fediverso conocido en la vista previa. En otro caso, se mostrarán solamente toots locales.
|
||||
title: Mostrar fediverso conocido en la vista previa de la historia
|
||||
desc_html: Cuando esté desactivado, mostrará solamente la cronología local, y no la federada
|
||||
title: Mostrar fediverso conocido en la vista previa de la cronología
|
||||
show_staff_badge:
|
||||
desc_html: Mostrar un parche de staff en la página de un usuario
|
||||
title: Mostrar parche de staff
|
||||
@ -486,28 +498,28 @@ es:
|
||||
desc_html: Un buen lugar para tu código de conducta, reglas, guías y otras cosas que estén impuestas aparte en tu instancia. Puedes usar tags HTML
|
||||
title: Información extendida personalizada
|
||||
site_short_description:
|
||||
desc_html: Mostrado en la barra lateral y las etiquetas de metadatos. Describe lo que es Mastodon y qué hace especial a este servidor en un solo párrafo. si está vacío, pone por defecto la descripción de la instancia.
|
||||
desc_html: Mostrado en la barra lateral y las etiquetas de metadatos. Describe lo que es Mastodonte y qué hace especial a este servidor en un solo párrafo. si está vacío, pone por defecto la descripción de la instancia.
|
||||
title: Descripción corta de la instancia
|
||||
site_terms:
|
||||
desc_html: Puedes escribir tus propias políticas de privacidad, términos de servicio u otras legalidades. Puedes usar tags HTML
|
||||
title: Términos de servicio personalizados
|
||||
site_title: Nombre de instancia
|
||||
spam_check_enabled:
|
||||
desc_html: Mastodon puede silenciar y reportar cuentas automáticamente usando medidas como detectar cuentas que envían mensajes no solicitados repetidos. Puede que haya falsos positivos.
|
||||
desc_html: Mastodonte puede silenciar y reportar cuentas automáticamente usando medidas como detectar cuentas que envían mensajes no solicitados repetidos. Puede que haya falsos positivos.
|
||||
title: Contra-spam
|
||||
thumbnail:
|
||||
desc_html: Se usa para muestras con OpenGraph y APIs. Se recomienda 1200x630px
|
||||
title: Portada de instancia
|
||||
timeline_preview:
|
||||
desc_html: Mostrar línea de tiempo pública en la portada
|
||||
title: Previsualización
|
||||
desc_html: Mostrar cronología pública en la portada
|
||||
title: Permita acceso no autentificado a la cronología pública
|
||||
title: Ajustes del sitio
|
||||
trendable_by_default:
|
||||
desc_html: Afecta a etiquetas que no han sido previamente rechazadas
|
||||
title: Permitir que las etiquetas sean tendencia sin revisión previa
|
||||
trends:
|
||||
desc_html: Mostrar públicamente hashtags previamente revisados que son tendencia
|
||||
title: Hashtags de tendencia
|
||||
desc_html: Mostrar públicamente etiquetas previamente revisadas que son tendencia
|
||||
title: Etiquetas que son tendencia
|
||||
statuses:
|
||||
back_to_account: Volver a la cuenta
|
||||
batch:
|
||||
@ -532,14 +544,14 @@ es:
|
||||
last_active: Última actividad
|
||||
most_popular: Más popular
|
||||
most_recent: Más reciente
|
||||
name: Hashtag
|
||||
name: Etiqueta
|
||||
review: Estado de revisión
|
||||
reviewed: Revisado
|
||||
title: Etiquetas
|
||||
trending_right_now: En tendencia ahora mismo
|
||||
unique_uses_today: "%{count} publicando hoy"
|
||||
unreviewed: No revisado
|
||||
updated_msg: Hashtags actualizados exitosamente
|
||||
updated_msg: Etiquetas actualizadas con éxito
|
||||
title: Administración
|
||||
warning_presets:
|
||||
add_new: Añadir nuevo
|
||||
@ -556,7 +568,7 @@ es:
|
||||
body_remote: Alguien de %{domain} a reportado a %{target}
|
||||
subject: Nuevo reporte para la %{instance} (#%{id})
|
||||
new_trending_tag:
|
||||
body: 'El hashtag #%{name} está en tendencia hoy, pero no ha sido revisado previamente. No se mostrará públicamente a menos que lo permita, o simplemente guarde el formulario como para no volver a ver esto.'
|
||||
body: 'La etiqueta #%{name} es tendencia hoy, pero no ha sido revisada previamente. No se mostrará públicamente a menos que lo permita, o simplemente guarde el formulario evitando volver a ver este mensaje.'
|
||||
subject: Nuevo hashtag para revisión en %{instance} (#%{name})
|
||||
aliases:
|
||||
add_new: Crear alias
|
||||
@ -566,12 +578,16 @@ es:
|
||||
remove: Desvincular alias
|
||||
appearance:
|
||||
advanced_web_interface: Interfaz web avanzada
|
||||
advanced_web_interface_hint: 'Si desea utilizar todo el ancho de pantalla, la interfaz web avanzada le permite configurar varias columnas diferentes para ver tanta información al mismo tiempo como quiera: Inicio, notificaciones, línea de tiempo federada, cualquier número de listas y etiquetas.'
|
||||
advanced_web_interface_hint: 'Si desea utilizar todo el ancho de pantalla, la interfaz web avanzada le permite configurar varias columnas diferentes para ver tanta información al mismo tiempo como quiera: Inicio, notificaciones, cronología federada, cualquier número de listas y etiquetas.'
|
||||
animations_and_accessibility: Animaciones y accesibilidad
|
||||
confirmation_dialogs: Diálogos de confirmación
|
||||
discovery: Descubrir
|
||||
localization:
|
||||
body: Mastodon es traducido con la ayuda de voluntarios.
|
||||
guide_link: https://es.crowdin.com/project/mastodon
|
||||
guide_link_text: Todos pueden contribuir.
|
||||
sensitive_content: Contenido sensible
|
||||
toot_layout: Diseño de los toots
|
||||
toot_layout: Diseño para barritar
|
||||
application_mailer:
|
||||
notification_preferences: Cambiar preferencias de correo electrónico
|
||||
salutation: "%{name},"
|
||||
@ -595,9 +611,9 @@ es:
|
||||
delete_account: Borrar cuenta
|
||||
delete_account_html: Si desea eliminar su cuenta, puede <a href="%{path}">proceder aquí</a>. Será pedido de una confirmación.
|
||||
description:
|
||||
prefix_invited_by_user: "¡@%{name} te invita a unirte a este servidor de Mastodon!"
|
||||
prefix_sign_up: "¡Únete a Mastodon hoy!"
|
||||
suffix: "¡Con una cuenta podrás seguir a gente, publicar novedades e intercambiar mensajes con usuarios de cualquier servidor de Mastodon y más!"
|
||||
prefix_invited_by_user: "¡@%{name} te invita a unirte a este servidor de Mastodonte!"
|
||||
prefix_sign_up: "¡Únete a Mastodonte hoy!"
|
||||
suffix: "¡Con una cuenta podrás seguir a gente, publicar novedades e intercambiar mensajes con usuarios de cualquier servidor de Mastodonte y más!"
|
||||
didnt_get_confirmation: "¿No recibió el correo de confirmación?"
|
||||
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.
|
||||
@ -693,7 +709,7 @@ es:
|
||||
content: Lo sentimos, algo ha funcionado mal por nuestra parte.
|
||||
title: Esta página no es correcta
|
||||
'503': La página no se ha podido cargar debido a un fallo temporal del servidor.
|
||||
noscript_html: Para usar la aplicación web de Mastodon, por favor activa Javascript. Alternativamente, prueba alguna de las <a href="%{apps_path}">aplicaciones nativas</a> para Mastodon para tu plataforma.
|
||||
noscript_html: Para usar la aplicación web de Mastodonte, por favor activa Javascript. Alternativamente, prueba alguna de las <a href="%{apps_path}">aplicaciones nativas</a> para Mastodonte para tu plataforma.
|
||||
existing_username_validator:
|
||||
not_found: no pudo encontrar un usuario local con ese nombre de usuario
|
||||
not_found_multiple: no pudo encontrar %{usernames}
|
||||
@ -701,27 +717,26 @@ es:
|
||||
archive_takeout:
|
||||
date: Fecha
|
||||
download: Descargar tu archivo
|
||||
hint_html: Puedes solicitar un archivo de tus <strong>toots y materiales subidos</strong>. Los datos exportados estarán en formato ActivityPub, legibles por cualquier software compatible.
|
||||
hint_html: Puedes solicitar un archivo de tus <strong>bramidos y materiales subidos</strong>. Los datos exportados estarán en formato ActivityPub, legibles por cualquier programa compatible.
|
||||
in_progress: Recopilando tu archivo...
|
||||
request: Solicitar tu archivo
|
||||
size: Tamaño
|
||||
blocks: Personas que has bloqueado
|
||||
csv: CSV
|
||||
domain_blocks: Bloqueos de dominios
|
||||
follows: Personas que sigues
|
||||
lists: Listas
|
||||
mutes: Tienes en silencio
|
||||
storage: Almacenamiento
|
||||
featured_tags:
|
||||
add_new: Añadir nuevo
|
||||
errors:
|
||||
limit: Ya has alcanzado la cantidad máxima de hashtags
|
||||
hint_html: "<strong>¿Qué son las etiquetas destacadas?</strong> 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."
|
||||
limit: Alcanzaste el máximo de etiquetados
|
||||
hint_html: "<strong>¿Qué son las etiquetas destacadas?</strong> Se muestran de forma prominente en tu perfil público y permiten a las personas usuarias navegar por tus publicaciones públicas específicamente bajo esas etiquetas. Son una gran herramienta para hacer un seguimiento de obras creativas o proyectos a largo plazo."
|
||||
filters:
|
||||
contexts:
|
||||
home: Timeline propio
|
||||
home: Cronología propia
|
||||
notifications: Notificaciones
|
||||
public: Timeline público
|
||||
public: Cronología pública
|
||||
thread: Conversaciones
|
||||
edit:
|
||||
title: Editar filtro
|
||||
@ -730,6 +745,7 @@ es:
|
||||
invalid_irreversible: El filtrado irreversible solo funciona con los contextos propios o de notificaciones
|
||||
index:
|
||||
delete: Borrar
|
||||
empty: No tienes filtros.
|
||||
title: Filtros
|
||||
new:
|
||||
title: Añadir un nuevo filtro
|
||||
@ -739,7 +755,7 @@ es:
|
||||
resources: Recursos
|
||||
trending_now: Tendencia ahora
|
||||
generic:
|
||||
all: Todos
|
||||
all: Todas
|
||||
changes_saved_msg: "¡Cambios guardados con éxito!"
|
||||
copy: Copiar
|
||||
no_batch_actions_available: No hay acciones por lotes disponibles en esta página
|
||||
@ -764,7 +780,7 @@ es:
|
||||
i_am_html: Soy %{username} en %{service}.
|
||||
identity: Identidad
|
||||
inactive: Inactivo
|
||||
publicize_checkbox: 'Y tootee esto:'
|
||||
publicize_checkbox: 'Y barrite esto:'
|
||||
publicize_toot: "¡Comprobado! Soy %{username} en %{service}: %{url}"
|
||||
status: Estado de la verificación
|
||||
view_proof: Ver prueba
|
||||
@ -875,9 +891,13 @@ es:
|
||||
subject: Fuiste mencionado por %{name}
|
||||
title: Nueva mención
|
||||
reblog:
|
||||
body: "%{name} ha retooteado tu estado:"
|
||||
subject: "%{name} ha retooteado tu estado"
|
||||
body: "%{name} ha rebarritado tu estado:"
|
||||
subject: "%{name} ha rebarritado tu estado"
|
||||
title: Nueva difusión
|
||||
notifications:
|
||||
email_events: Eventos para notificaciones por correo electrónico
|
||||
email_events_hint: 'Selecciona los eventos para los que deseas recibir notificaciones:'
|
||||
other_settings: Otros ajustes de notificaciones
|
||||
number:
|
||||
human:
|
||||
decimal_units:
|
||||
@ -901,16 +921,19 @@ es:
|
||||
duration_too_long: está demasiado lejos en el futuro
|
||||
duration_too_short: es demasiado pronto
|
||||
expired: La encuesta ya ha terminado
|
||||
invalid_choice: La opción de voto seleccionada no existe
|
||||
over_character_limit: no puede exceder %{max} caracteres cada uno
|
||||
too_few_options: debe tener más de un elemento
|
||||
too_many_options: no puede contener más de %{max} elementos
|
||||
preferences:
|
||||
other: Otros
|
||||
posting_defaults: Configuración por defecto de publicaciones
|
||||
public_timelines: Líneas de tiempo públicas
|
||||
public_timelines: Cronologías públicas
|
||||
relationships:
|
||||
activity: Actividad de la cuenta
|
||||
dormant: Inactivo
|
||||
followers: Seguidores
|
||||
following: Siguiendo
|
||||
last_active: Última actividad
|
||||
most_recent: Más reciente
|
||||
moved: Movido
|
||||
@ -931,16 +954,16 @@ es:
|
||||
remote_interaction:
|
||||
favourite:
|
||||
proceed: Proceder a marcar como favorito
|
||||
prompt: 'Quieres marcar como favorito este toot:'
|
||||
prompt: 'Quieres marcar como favorito este bramido:'
|
||||
reblog:
|
||||
proceed: Proceder a retootear
|
||||
prompt: 'Quieres retootear este toot:'
|
||||
proceed: Proceder a rebarritar
|
||||
prompt: 'Quieres rebarritar este bramido:'
|
||||
reply:
|
||||
proceed: Proceder a responder
|
||||
prompt: 'Quieres responder a este toot:'
|
||||
prompt: 'Quieres responder a este bramido:'
|
||||
scheduled_statuses:
|
||||
over_daily_limit: Ha superado el límite de %{limit} toots programados para ese día
|
||||
over_total_limit: Ha superado el límite de %{limit} toots programados
|
||||
over_daily_limit: Ha superado el límite de %{limit} bramidos programados para ese día
|
||||
over_total_limit: Ha superado el límite de %{limit} bramidos programados
|
||||
too_soon: La fecha programada debe estar en el futuro
|
||||
sessions:
|
||||
activity: Última actividad
|
||||
@ -965,7 +988,7 @@ es:
|
||||
weibo: Weibo
|
||||
current_session: Sesión actual
|
||||
description: "%{browser} en %{platform}"
|
||||
explanation: Estos son los navegadores web conectados actualmente en tu cuenta de Mastodon.
|
||||
explanation: Estos son los navegadores web conectados actualmente en tu cuenta de Mastodonte.
|
||||
ip: IP
|
||||
platforms:
|
||||
adobe_air: Adobe Air
|
||||
@ -994,7 +1017,7 @@ es:
|
||||
development: Desarrollo
|
||||
edit_profile: Editar perfil
|
||||
export: Exportar información
|
||||
featured_tags: Hashtags destacados
|
||||
featured_tags: Etiquetas destacadas
|
||||
identity_proofs: Pruebas de identidad
|
||||
import: Importar
|
||||
import_and_export: Importar y exportar
|
||||
@ -1018,15 +1041,15 @@ es:
|
||||
boosted_from_html: Impulsado desde %{acct_link}
|
||||
content_warning: 'Alerta de contenido: %{warning}'
|
||||
disallowed_hashtags:
|
||||
one: 'contenía un hashtag no permitido: %{tags}'
|
||||
other: 'contenía los hashtags no permitidos: %{tags}'
|
||||
one: 'contenía una etiqueta no permitida: %{tags}'
|
||||
other: 'contenía las etiquetas no permitidas: %{tags}'
|
||||
language_detection: Detección automática de idioma
|
||||
open_in_web: Abrir en web
|
||||
over_character_limit: Límite de caracteres de %{max} superado
|
||||
pin_errors:
|
||||
limit: Ya has fijado el número máximo de publicaciones
|
||||
ownership: El toot de alguien más no puede fijarse
|
||||
private: Los toots no-públicos no pueden fijarse
|
||||
limit: Ya has fijado el número máximo de bramidos
|
||||
ownership: El bramido de alguien más no puede fijarse
|
||||
private: Los bramidos no-públicos no pueden fijarse
|
||||
reblog: Un boost no puede fijarse
|
||||
poll:
|
||||
total_people:
|
||||
@ -1045,10 +1068,10 @@ es:
|
||||
public: Público
|
||||
public_long: Todos pueden ver
|
||||
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
|
||||
unlisted_long: Todos pueden ver, pero no está listado en las cronologías públicas
|
||||
stream_entries:
|
||||
pinned: Toot fijado
|
||||
reblogged: retooteado
|
||||
pinned: Bramido fijado
|
||||
reblogged: rebramido
|
||||
sensitive_content: Contenido sensible
|
||||
tags:
|
||||
does_not_match_previous_name: no coincide con el nombre anterior
|
||||
@ -1058,9 +1081,9 @@ es:
|
||||
<h3 id="collect">¿Qué información recogemos?</h3>
|
||||
|
||||
<ul>
|
||||
<li><em>Información básica sobre su cuenta</em>: Si se registra en este servidor, se le requerirá un nombre de usuario, una dirección de correo electrónico y una contraseña. Además puede incluir información adicional en el perfil como un nombre de perfil y una biografía, y subir una foto de perfil y una imagen de cabecera. El nombre de usuario, nombre de perfil, biografía, foto de perfil e imagen de cabecera siempre son visibles públicamente</li>
|
||||
<li><em>Publicaciones, seguimiento y otra información pública</em>: La lista de gente a la que sigue es mostrada públicamente, al igual que sus seguidores. Cuando publica un mensaje, la fecha y hora es almacenada, así como la aplicación desde la cual publicó el mensaje. Los mensajes pueden contener archivos adjuntos multimedia, como imágenes y vídeos. Las publicaciones públicas y no listadas están disponibles públicamente. Cuando destaca una entrada en su perfil, también es información disponible públicamente. Sus publicaciones son entregadas a sus seguidores, en algunos casos significa que son entregadas a diferentes servidores y las copias son almacenadas allí. Cuando elimina publicaciones, esto también se transfiere a sus seguidores. La acción de rebloguear o marcar como favorito otra publicación es siempre pública.</li>
|
||||
<li><em>Publicaciones directas y sólo para seguidores</em>: Todos los mensajes se almacenan y procesan en el servidor. Los mensajes sólo para seguidores se entregan a los seguidores y usuarios que se mencionan en ellos, y los mensajes directos se entregan sólo a los usuarios que se mencionan en ellos. En algunos casos significa que se entregan a diferentes servidores y que las copias se almacenan allí. Hacemos un esfuerzo de buena fe para limitar el acceso a esas publicaciones sólo a las personas autorizadas, pero otros servidores pueden no hacerlo. Por lo tanto, es importante revisar los servidores a los que pertenecen sus seguidores. Puede cambiar una opción para aprobar y rechazar nuevos seguidores manualmente en la configuración <em>Por favor, tenga en cuenta que los operadores del servidor y de cualquier servidor receptor pueden ver dichos mensajes</em>, y que los destinatarios pueden capturarlos, copiarlos o volver a compartirlos de alguna otra manera. <em>No comparta ninguna información peligrosa en Mastodon.</em></li>
|
||||
<li><em>Información básica sobre su cuenta</em>: Si se registra en este servidor, se le requerirá un nombre de persona usuaria, una dirección de correo electrónico y una contraseña. Además puede incluir información adicional en el perfil como un nombre de perfil y una biografía, y subir una foto de perfil y una imagen de cabecera. El nombre de usuaria, nombre de perfil, biografía, foto de perfil e imagen de cabecera siempre son visibles públicamente</li>
|
||||
<li><em>Publicaciones, seguimiento y otra información pública</em>: La lista de gente a la que sigue es mostrada públicamente, al igual que sus seguidores. Cuando publica un mensaje, la fecha y hora es almacenada, así como la aplicación desde la cual publicó el mensaje. Los mensajes pueden contener archivos adjuntos multimedia, como imágenes y vídeos. Las publicaciones públicas y no listadas están disponibles públicamente. Cuando destaca una entrada en su perfil, también es información disponible públicamente. Sus publicaciones son entregadas a sus seguidores, en algunos casos significa que son entregadas a diferentes servidores y las copias son almacenadas allí. Cuando elimina publicaciones, esto también se transfiere a sus seguidores. La acción de reenviar o marcar como favorito otra publicación es siempre pública.</li>
|
||||
<li><em>Publicaciones directas y sólo para seguidoras</em>: Todos los mensajes se almacenan y procesan en el servidor. Las publicaciones sólo para seguidoras se entregan a las seguidoras y usuarias que se mencionan en ellas, y los mensajes directos se entregan sólo a las usuarias que se mencionan en ellos. En algunos casos significa que se entregan a diferentes servidores y que las copias se almacenan allí. Hacemos un esfuerzo de buena fe para limitar el acceso a esas publicaciones sólo a las personas autorizadas, pero otros servidores pueden no hacerlo. Por lo tanto, es importante revisar los servidores a los que pertenecen sus seguidoras. Puede cambiar una opción para aprobar y rechazar nuevas seguidoras manualmente en la configuración <em>Por favor, tenga en cuenta que las operadoras del servidor y de cualquier servidor receptor pueden ver dichos mensajes</em>, y que las destinatarias pueden capturarlos, copiarlos o volver a compartirlos de alguna otra manera. <em>No comparta ninguna información peligrosa en Mastodonte.</em></li>
|
||||
<li><em>Direcciones IP y otros metadatos</em>: Al iniciar sesión, registramos la dirección IP desde la que se ha iniciado sesión, así como el nombre de la aplicación de su navegador. Todas las sesiones iniciadas están disponibles para su revisión y revocación en los ajustes. La última dirección IP utilizada se almacena hasta 12 meses. También podemos conservar los registros del servidor que incluyen la dirección IP de cada solicitud a nuestro servidor.</li>
|
||||
</ul>
|
||||
|
||||
@ -1071,7 +1094,7 @@ es:
|
||||
<p>Toda la información que obtenemos de usted puede ser utilizada de las siguientes maneras:</p>
|
||||
|
||||
<ul>
|
||||
<li>Para proporcionar la funcionalidad principal de Mastodon. Sólo puedes interactuar con el contenido de otras personas y publicar tu propio contenido cuando estés conectado. Por ejemplo, puedes seguir a otras personas para ver sus mensajes combinados en tu propia línea de tiempo personalizada.</li>
|
||||
<li>Para proporcionar la funcionalidad principal de Mastodonte. Sólo puedes interactuar con el contenido de otras personas y publicar tu propio contenido cuando estés conectado. Por ejemplo, puedes seguir a otras personas para ver sus mensajes combinados en tu propia línea de tiempo personalizada.</li>
|
||||
<li>Para ayudar a la moderación de la comunidad, por ejemplo, comparando su dirección IP con otras conocidas para determinar la evasión de prohibiciones u otras violaciones.</li>
|
||||
<li>La dirección de correo electrónico que nos proporcione podrá utilizarse para enviarle información, notificaciones sobre otras personas que interactúen con su contenido o para enviarle mensajes, así como para responder a consultas y/u otras solicitudes o preguntas.</li>
|
||||
</ul>
|
||||
@ -1111,9 +1134,9 @@ es:
|
||||
|
||||
<p>No vendemos, comerciamos ni transferimos a terceros su información personal identificable. Esto no incluye a los terceros de confianza que nos asisten en la operación de nuestro sitio, en la realización de nuestros negocios o en la prestación de servicios, siempre y cuando dichas partes acuerden mantener la confidencialidad de esta información. También podemos divulgar su información cuando creamos que es apropiado para cumplir con la ley, hacer cumplir las políticas de nuestro sitio, o proteger nuestros u otros derechos, propiedad o seguridad.</p>
|
||||
|
||||
<p>Su contenido público puede ser descargado por otros servidores de la red. Tus mensajes públicos y sólo para seguidores se envían a los servidores donde residen tus seguidores, y los mensajes directos se envían a los servidores de los destinatarios, en la medida en que dichos seguidores o destinatarios residan en un servidor diferente.</p>
|
||||
<p>Su contenido público puede ser descargado por otros servidores de la red. Tus mensajes públicos y sólo para seguidoras se envían a los servidores donde residen tus seguidoras, y los mensajes directos se envían a los servidores de las destinatarias, en la medida en que dichas seguidoras o destinatarias residan en un servidor diferente.</p>
|
||||
|
||||
<p>Cuando usted autoriza a una aplicación a usar su cuenta, dependiendo del alcance de los permisos que usted apruebe, puede acceder a la información de su perfil público, su lista de seguimiento, sus seguidores, sus listas, todos sus mensajes y sus favoritos. Las aplicaciones nunca podrán acceder a su dirección de correo electrónico o contraseña.</p>
|
||||
<p>Cuando usted autoriza a una aplicación a usar su cuenta, dependiendo del alcance de los permisos que usted apruebe, puede acceder a la información de su perfil público, su lista de seguimiento, sus seguidoras, sus listas, todos sus mensajes y sus favoritas. Las aplicaciones nunca podrán acceder a su dirección de correo electrónico o contraseña.</p>
|
||||
|
||||
<hr class="spacer" />
|
||||
|
||||
@ -1136,9 +1159,9 @@ es:
|
||||
<p>Adaptado originalmente desde <a href="https://github.com/discourse/discourse">la política de privacidad de Discourse</a>.</p>
|
||||
title: Términos del Servicio y Políticas de Privacidad de %{instance}
|
||||
themes:
|
||||
contrast: Alto contraste
|
||||
default: Mastodon
|
||||
mastodon-light: Mastodon (claro)
|
||||
contrast: Mastodonte (Alto contraste)
|
||||
default: Mastodonte (Oscuro)
|
||||
mastodon-light: Mastodonte (claro)
|
||||
time:
|
||||
formats:
|
||||
default: "%d de %b del %Y, %H:%M"
|
||||
@ -1161,14 +1184,14 @@ es:
|
||||
wrong_code: "¡El código ingresado es inválido! ¿El dispositivo y tiempo del servidor están correctos?"
|
||||
user_mailer:
|
||||
backup_ready:
|
||||
explanation: Has solicitado una copia completa de tu cuenta de Mastodon. ¡Ya está preparada para descargar!
|
||||
explanation: Has solicitado una copia completa de tu cuenta de Mastodonte. ¡Ya está preparada para descargar!
|
||||
subject: Tu archivo está preparado para descargar
|
||||
title: Descargar archivo
|
||||
warning:
|
||||
explanation:
|
||||
disable: Mientras su cuenta esté congelada, la información de su cuenta permanecerá intacta, pero no puede realizar ninguna acción hasta que se desbloquee.
|
||||
silence: Mientras su cuenta está limitada, sólo las personas que ya le están siguiendo verán sus toots en este servidor, y puede que se le excluya de varios listados públicos. Sin embargo, otros pueden seguirle manualmente.
|
||||
suspend: Su cuenta ha sido suspendida, y todos tus toots y tus archivos multimedia subidos han sido irreversiblemente eliminados de este servidor, y de los servidores donde tenías seguidores.
|
||||
silence: Mientras su cuenta está limitada, sólo las personas que ya le están siguiendo verán sus bramidos en este servidor, y puede que se le excluya de varios listados públicos. Sin embargo, otros pueden seguirle manualmente.
|
||||
suspend: Su cuenta ha sido suspendida, y todos tus bramidos y tus archivos multimedia subidos han sido irreversiblemente eliminados de este servidor, y de los servidores donde tenías seguidores.
|
||||
get_in_touch: Puede responder a esta dirección de correo electrónico para ponerse en contacto con el personal de %{instance}.
|
||||
review_server_policies: Revisar las políticas del servidor
|
||||
statuses: 'Específicamente, para:'
|
||||
@ -1187,15 +1210,15 @@ es:
|
||||
edit_profile_step: Puedes personalizar tu perfil subiendo un avatar, una cabecera, cambiando tu nombre de usuario y más cosas. Si quieres revisar a tus nuevos seguidores antes de que se les permita seguirte, puedes bloquear tu cuenta.
|
||||
explanation: Aquí hay algunos consejos para empezar
|
||||
final_action: Empezar a publicar
|
||||
final_step: '¡Empieza a publicar! Incluso sin seguidores, tus mensajes públicos pueden ser vistos por otros, por ejemplo en la linea de tiempo local y con "hashtags". Podrías querer introducirte con el "hashtag" #introductions.'
|
||||
final_step: '¡Empieza a publicar! Incluso sin seguidores, tus mensajes públicos pueden ser vistos por otros, por ejemplo en la ristra teporal local y con "etiquetas". Podrías querer presentarte con la "etiqueta" #presentaciones o #nuevascuentas.'
|
||||
full_handle: Su sobrenombre completo
|
||||
full_handle_hint: Esto es lo que le dirías a tus amigos para que ellos puedan enviarte mensajes o seguirte desde otra instancia.
|
||||
review_preferences_action: Cambiar preferencias
|
||||
review_preferences_step: Asegúrate de poner tus preferencias, como que correos te gustaría recibir, o que nivel de privacidad te gustaría que tus publicaciones tengan por defecto. Si no tienes mareos, podrías elegir habilitar la reproducción automática de "GIFs".
|
||||
subject: Bienvenido a Mastodon
|
||||
tip_federated_timeline: La línea de tiempo federada es una vista de la red de Mastodon. Pero solo incluye gente que tus vecinos están siguiendo, así que no está completa.
|
||||
tip_following: Sigues a tus administradores de servidor por defecto. Para encontrar más gente interesante, revisa las lineas de tiempo local y federada.
|
||||
tip_local_timeline: La linea de tiempo local is una vista de la gente en %{instance}. Estos son tus vecinos inmediatos!
|
||||
subject: Bienvenido a Mastodonte
|
||||
tip_federated_timeline: La cronología federada es una vista de la red de Mastodonte. Pero solo incluye gente que tus vecinos están siguiendo, así que no está completa.
|
||||
tip_following: Sigues a tus administradores de servidor por defecto. Para encontrar más gente interesante, revisa las cronologías local y federada.
|
||||
tip_local_timeline: La cronología local is una vista de la gente en %{instance}. Estos son tus vecinos inmediatos!
|
||||
tip_mobile_webapp: Si el navegador de tu dispositivo móvil ofrece agregar Mastodon a tu página de inicio, puedes recibir notificaciones. Actúa como una aplicación nativa en muchas formas!
|
||||
tips: Consejos
|
||||
title: Te damos la bienvenida a bordo, %{name}!
|
||||
@ -1207,5 +1230,5 @@ es:
|
||||
seamless_external_login: Has iniciado sesión desde un servicio externo, así que los ajustes de contraseña y correo no están disponibles.
|
||||
signed_in_as: 'Sesión iniciada como:'
|
||||
verification:
|
||||
explanation_html: 'Puedes <strong> verificarte a ti mismo como el dueño de los links en los metadatos de tu perfil </strong>. Para eso, el sitio vinculado debe contener un vínculo a tu perfil de Mastodon. El vínculo en tu sitio <strong> debe </strong> tener un atributo <code> rel="me"</code>. El texto del vínculo no importa. Aquí un ejemplo:'
|
||||
explanation_html: 'Puedes <strong> verificarte a ti mismo como el dueño de los links en los metadatos de tu perfil </strong>. Para eso, el sitio vinculado debe contener un vínculo a tu perfil de Mastodonte. El vínculo en tu sitio <strong> debe </strong> tener un atributo <code> rel="me"</code>. El texto del vínculo no importa. Aquí un ejemplo:'
|
||||
verification: Verificación
|
||||
|
@ -78,6 +78,7 @@ et:
|
||||
roles:
|
||||
admin: Administraator
|
||||
bot: Robot
|
||||
group: Grupp
|
||||
moderator: Moderaator
|
||||
unavailable: Profiil pole saadaval
|
||||
unfollow: Lõpeta jälgimine
|
||||
@ -341,6 +342,7 @@ et:
|
||||
delete: Kustuta
|
||||
destroyed_msg: E-posti aadressi keelunimekirjast kustutamine õnnestus
|
||||
domain: Domeen
|
||||
empty: Ühtegi e-postidomeeni pole blokeeritud.
|
||||
new:
|
||||
create: Lisa domeen
|
||||
title: Uus e-posti keelunimekirja sisend
|
||||
@ -383,7 +385,7 @@ et:
|
||||
disable: Keela
|
||||
disabled: Keelatud
|
||||
enable: Luba
|
||||
enable_hint: Kui lubatud, siis sinu server tellib kõik avalikud tuututused sellelt releelt, ning hakkab ka enda avalikke tuututusi sellele saatma.
|
||||
enable_hint: Kui lubatud, siis Teie server tellib kõik avalikud tuututused sellelt releelt ning hakkab ka enda avalikke tuututusi sellele saatma.
|
||||
enabled: Lubatud
|
||||
inbox_url: Relee URL
|
||||
pending: Ootab relee nõusolekut
|
||||
@ -396,10 +398,18 @@ et:
|
||||
created_msg: Teade edukalt koostatud!
|
||||
destroyed_msg: Teade edukalt kustutatud!
|
||||
reports:
|
||||
account:
|
||||
notes:
|
||||
one: "%{count} märkus"
|
||||
other: "%{count} märkust"
|
||||
reports:
|
||||
one: "%{count} teavitus"
|
||||
other: "%{count} teavitust"
|
||||
action_taken_by: Meetmeid kasutanud
|
||||
are_you_sure: Olete kindel?
|
||||
assign_to_self: Määra mulle
|
||||
assigned: Määratud moderaator
|
||||
by_target_domain: Teavitatud konto domeen
|
||||
comment:
|
||||
none: Pole
|
||||
created_at: Teavitatud
|
||||
@ -445,6 +455,8 @@ et:
|
||||
users: Sisseloginud kohalikele kasutajatele
|
||||
domain_blocks_rationale:
|
||||
title: Näita põhjendust
|
||||
enable_bootstrap_timeline_accounts:
|
||||
title: Luba vaikimisi jälgimisi uutele kasutajatele
|
||||
hero:
|
||||
desc_html: Kuvatud kodulehel. Vähemalt 600x100px soovitatud. Kui pole seadistatud, kuvatakse serveri pisililt
|
||||
title: Maskotipilt
|
||||
@ -573,6 +585,10 @@ et:
|
||||
animations_and_accessibility: Animatsioonid ja ligipääs
|
||||
confirmation_dialogs: Kinnitusdialoogid
|
||||
discovery: Avastus
|
||||
localization:
|
||||
body: Mastodon on tõlgitud vabatahtlike poolt.
|
||||
guide_link: https://crowdin.com/project/mastodon
|
||||
guide_link_text: Igaüks võib panustada.
|
||||
sensitive_content: Tundlik sisu
|
||||
toot_layout: Tuututuse kujundus
|
||||
application_mailer:
|
||||
@ -589,7 +605,7 @@ et:
|
||||
regenerate_token: Loo uus access token
|
||||
token_regenerated: Access tokeni loomine õnnestus
|
||||
warning: Olge nende andmetega ettevaatlikud. Ärge jagage neid kellegagi!
|
||||
your_token: Sinu access token
|
||||
your_token: Teie access token
|
||||
auth:
|
||||
apply_for_account: Taotle kutse
|
||||
change_password: Salasõna
|
||||
@ -711,7 +727,6 @@ et:
|
||||
blocks: Teie blokeerite
|
||||
csv: CSV
|
||||
domain_blocks: Domeeni blokeeringud
|
||||
follows: Teie jälgite
|
||||
lists: Nimistud
|
||||
mutes: Teie vaigistate
|
||||
storage: Meedia hoidla
|
||||
@ -733,6 +748,7 @@ et:
|
||||
invalid_irreversible: Taastamatu filter töötab ainult kodu või teavituste kontekstis
|
||||
index:
|
||||
delete: Kustuta
|
||||
empty: Teil pole filtreid.
|
||||
title: Filterid
|
||||
new:
|
||||
title: Lisa uus filter
|
||||
@ -851,7 +867,7 @@ et:
|
||||
digest:
|
||||
action: Vaata kõiki teateid
|
||||
body: Siin on kiire ülevaade sellest, mis sõnumeid Te ei näinud pärast Teie viimast külastust %{since}
|
||||
mention: "%{name} mainis sind postituses:"
|
||||
mention: "%{name} mainis Teid postituses:"
|
||||
new_followers_summary:
|
||||
one: Ja veel, Te saite ühe uue jälgija kui Te olite eemal! Jee!
|
||||
other: Ja veel, Te saite %{count} uut jälgijat kui Te olite eemal! Hämmastav!
|
||||
@ -881,6 +897,10 @@ et:
|
||||
body: "%{name} upitas Teie staatust:"
|
||||
subject: "%{name} upitas su staatust"
|
||||
title: Uus upitus
|
||||
notifications:
|
||||
email_events: E-posti teadete sündmused
|
||||
email_events_hint: 'Valige sündmused, millest soovite teavitusi:'
|
||||
other_settings: Muud teadete sätted
|
||||
number:
|
||||
human:
|
||||
decimal_units:
|
||||
@ -914,6 +934,8 @@ et:
|
||||
relationships:
|
||||
activity: Konto tegevus
|
||||
dormant: Seisev
|
||||
followers: Jälgijad
|
||||
following: Jälgib
|
||||
last_active: Viimati aktiivne
|
||||
most_recent: Viimased
|
||||
moved: Kolinud
|
||||
@ -970,7 +992,7 @@ et:
|
||||
weibo: Weibo
|
||||
current_session: Praegune seanss
|
||||
description: "%{browser} platvormil %{platform}"
|
||||
explanation: Need on praegused veebilehitsejad, mis on sisse logitud sinu Mastodoni kontosse.
|
||||
explanation: Need on praegused veebilehitsejad, mis on sisse logitud Teie Mastodoni kontosse.
|
||||
ip: IP
|
||||
platforms:
|
||||
adobe_air: Adobe Air
|
||||
@ -1112,7 +1134,7 @@ et:
|
||||
explanation: Siin on mõned nõuanded, mis aitavad sul alustada
|
||||
final_action: Alusa postitamist
|
||||
final_step: 'Alusta postitamist! Isegi ilma jälgijateta näevad teised Teie avalikke postitusi, näiteks kohalikul ajajoonel ning siltidest. Te võite ennast tutvustada kasutades silti #introductions.'
|
||||
full_handle: Sinu täisnimi
|
||||
full_handle: Teie täisnimi
|
||||
full_handle_hint: See on mida oma sõpradega jagada, et nad saaksid Teile sõnumeid saata ning Teid jälgida teiselt serverilt.
|
||||
review_preferences_action: Muuda eelistusi
|
||||
review_preferences_step: Kindlasti seadistage oma sätted Teie maitse järgi, näiteks e-kirju, mida soovite saada, või millist privaatsustaset Te soovite vaikimisi. Kui Teil pole merehaigust, võite Te näiteks lubada GIFide automaatse mängimise.
|
||||
|
@ -78,6 +78,7 @@ eu:
|
||||
roles:
|
||||
admin: Administratzailea
|
||||
bot: Bot-a
|
||||
group: Taldea
|
||||
moderator: Moderatzailea
|
||||
unavailable: Profila ez dago eskuragarri
|
||||
unfollow: Utzi jarraitzeari
|
||||
@ -338,6 +339,7 @@ eu:
|
||||
delete: Ezabatu
|
||||
destroyed_msg: Ongi ezabatu da e-mail domeinua zerrenda beltzetik
|
||||
domain: Domeinua
|
||||
empty: Ez dago e-mail domeinurik zerrenda beltzean.
|
||||
new:
|
||||
create: Gehitu domeinua
|
||||
title: Sarrera berria e-mail zerrenda beltzean
|
||||
@ -393,10 +395,18 @@ eu:
|
||||
created_msg: Salaketa oharra ongi sortu da!
|
||||
destroyed_msg: Salaketa oharra ongi ezabatu da!
|
||||
reports:
|
||||
account:
|
||||
notes:
|
||||
one: Ohar %{count}
|
||||
other: "%{count} ohar"
|
||||
reports:
|
||||
one: Txosten %{count}
|
||||
other: "%{count} txosten"
|
||||
action_taken_by: Neurrien hartzailea
|
||||
are_you_sure: Ziur zaude?
|
||||
assign_to_self: Esleitu niri
|
||||
assigned: Esleitutako moderatzailea
|
||||
by_target_domain: Jakinarazitako kontuaren domeinua
|
||||
comment:
|
||||
none: Bat ere ez
|
||||
created_at: Salatua
|
||||
@ -442,6 +452,8 @@ eu:
|
||||
users: Saioa hasita duten erabiltzaile lokalei
|
||||
domain_blocks_rationale:
|
||||
title: Erakutsi arrazoia
|
||||
enable_bootstrap_timeline_accounts:
|
||||
title: Gaitu lehenetsitako jarraipena erabiltzaile berrientzat
|
||||
hero:
|
||||
desc_html: Azaleko orrian bistaratua. Gutxienez 600x100px aholkatzen da. Ezartzen ez bada, zerbitzariaren irudia hartuko du
|
||||
title: Azaleko irudia
|
||||
@ -570,6 +582,10 @@ eu:
|
||||
animations_and_accessibility: Animazioak eta irisgarritasuna
|
||||
confirmation_dialogs: Berrespen dialogoak
|
||||
discovery: Aurkitzea
|
||||
localization:
|
||||
body: Mastodon boluntarioek itzultzen dute.
|
||||
guide_link: https://crowdin.com/project/mastodon
|
||||
guide_link_text: Edonork lagundu dezake.
|
||||
sensitive_content: Eduki hunkigarria
|
||||
toot_layout: Toot disposizioa
|
||||
application_mailer:
|
||||
@ -644,7 +660,7 @@ eu:
|
||||
prompt: Berretsi pasahitza jarraitzeko
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours: "%{count}o"
|
||||
about_x_hours: "%{count}h"
|
||||
about_x_months: "%{count} hilabete"
|
||||
about_x_years: "%{count} urte"
|
||||
almost_x_years: "%{count} urte"
|
||||
@ -708,7 +724,6 @@ eu:
|
||||
blocks: Zuk blokeatutakoak
|
||||
csv: CSV
|
||||
domain_blocks: Domeinuen blokeoak
|
||||
follows: Zuk jarraitutakoak
|
||||
lists: Zerrendak
|
||||
mutes: Zuk mututukoak
|
||||
storage: Multimedia biltegiratzea
|
||||
@ -730,6 +745,7 @@ eu:
|
||||
invalid_irreversible: Behin betiko iragazketa hasiera edo jakinarazpenen testuinguruan besterik ez dabil
|
||||
index:
|
||||
delete: Ezabatu
|
||||
empty: Ez duzu iragazkirik.
|
||||
title: Iragazkiak
|
||||
new:
|
||||
title: Gehitu iragazki berria
|
||||
@ -878,6 +894,10 @@ eu:
|
||||
body: "%{name}(e)k bultzada eman dio zure mezuari:"
|
||||
subject: "%{name}(e)k bultzada eman dio zure mezuari"
|
||||
title: Bultzada berria
|
||||
notifications:
|
||||
email_events: Gertaerak helbide elektronikoko jakinarazpenentzat
|
||||
email_events_hint: 'Hautatu jaso nahi dituzun gertaeren jakinarazpenak:'
|
||||
other_settings: Bezte jakinarazpen konfigurazioak
|
||||
number:
|
||||
human:
|
||||
decimal_units:
|
||||
@ -911,6 +931,8 @@ eu:
|
||||
relationships:
|
||||
activity: Kontuaren aktibitatea
|
||||
dormant: Ez aktiboa
|
||||
followers: Jarraitzaileak
|
||||
following: Jarraitzen
|
||||
last_active: Azkenekoz aktiboa
|
||||
most_recent: Azkenak
|
||||
moved: Lekuz aldatua
|
||||
|
@ -2,46 +2,48 @@
|
||||
fa:
|
||||
about:
|
||||
about_hashtag_html: اینها نوشتههای عمومی هستند که برچسب (هشتگ) <strong>#%{hashtag}</strong> را دارند. اگر شما روی هر سروری حساب داشته باشید میتوانید به این نوشتهها واکنش نشان دهید.
|
||||
about_mastodon_html: 'شبکهٔ اجتماعی آینده: بدون تبلیغات، بدون شنود از طرف شرکتها، طراحی اخلاقمدار، و معماری غیرمتمرکز! با ماستدون صاحب دادههای خودتان باشید!'
|
||||
about_mastodon_html: 'شبکهٔ اجتماعی آینده: بدون تبلیغات، بدون شنود از طرف شرکتها، طراحی اخلاقمدار، و معماری غیرمتمرکز! با ماستودون صاحب دادههای خودتان باشید!'
|
||||
about_this: درباره
|
||||
active_count_after: فعال
|
||||
active_count_after: فعّال
|
||||
active_footnote: کاربران فعال در ماه گذشته
|
||||
administered_by: 'با مدیریت:'
|
||||
api: رابط برنامهنویسی کاربردی
|
||||
apps: اپهای موبایل
|
||||
apps: کارههای همراه
|
||||
apps_platforms: ماستدون را در iOS، اندروید، و سایر سیستمها داشته باشید
|
||||
browse_directory: کاربران این سرور را بر اساس علاقهمندیهایشان پیدا کنید
|
||||
browse_local_posts: فهرست لحظهای نوشتههای عمومی در ماستدون را ببینید
|
||||
browse_public_posts: فهرست لحظهای نوشتههای عمومی در ماستدون را ببینید
|
||||
contact: تماس
|
||||
contact_missing: تعیین نشده
|
||||
contact_missing: تنظیم نشده
|
||||
contact_unavailable: موجود نیست
|
||||
discover_users: یافتن کاربران
|
||||
documentation: مستندات
|
||||
federation_hint_html: با داشتن حساب روی %{instance} میتوانید کاربران همهٔ سرورهای دیگر ماستدون (و سایر شبکههای سازگار با آن) را پی بگیرید.
|
||||
get_apps: یک اپ موبایل را امتحان کنید
|
||||
hosted_on: ماستدون، میزبانیشده روی %{domain}
|
||||
federation_hint_html: با حسابی روی %{instance} میتوانید افراد روی هر کارساز ماستودون و بیش از آن را پی بگیرید.
|
||||
get_apps: یک کاارهٔ همراه را بیازمایید
|
||||
hosted_on: ماستودون، میزبانیشده روی %{domain}
|
||||
instance_actor_flash: |
|
||||
این حساب یک بازیگر مجازی برای نمایندگی از این سرور است و متعلق به هیچ کاربری نیست.
|
||||
این حساب برای ارتباط میانسروری به کار میرود و نباید مسدود شود، مگر این که شما بخواهید کل سرور را مسدود کنید، که در آن صورت باید از راه مسدودسازی دامین پیش بروید.
|
||||
learn_more: بیشتر بدانید
|
||||
privacy_policy: سیاست رازداری
|
||||
privacy_policy: سیاست محرمانگی
|
||||
see_whats_happening: ببینید چه خبر است
|
||||
server_stats: 'آمار سرور:'
|
||||
server_stats: 'آمار کارساز:'
|
||||
source_code: کدهای منبع
|
||||
status_count_after:
|
||||
one: چیز نوشتهاند
|
||||
other: چیز نوشتهاند
|
||||
status_count_before: که در کنار هم
|
||||
tagline: با دوستان خود در ارتباط باشید و دوستان تازه پیدا کنید
|
||||
terms: شرایط کاربری
|
||||
tagline: پیگیری و یافتن دوستان جدید
|
||||
terms: شرایط خدمت
|
||||
unavailable_content: محتوای ناموجود
|
||||
unavailable_content_description:
|
||||
domain: سرور
|
||||
reason: 'دلیل:'
|
||||
rejecting_media: تصاویر فرستاده شده از سمت این سرور پردازش نخواهد شد و هیچ تصویر کوچکی از آنها در اینجا نمایش نخواهد یافت، و آنها را باید مستقیماً در آن سرور ببینید.
|
||||
silenced: هیچ کدام از نوشتهها از طرف این سرور اینجا نمایش نخواهند یافت مگر در فهرست پیگیریها شما، اگر نویسندهاش را پی بگیرید.
|
||||
suspended: شما نمیتوانید هیچ کدام از کاربرهای این سرور را پی بگیرید، و هیچ دادهای از طرف این سرور پردازش یا ذخیره یا مبادله نخواهد شد.
|
||||
domain: کارساز
|
||||
reason: دلیل
|
||||
rejecting_media: 'پروندههای رسانه از این کارسازها پردازش یا ذخیره نخواهند شد و هیچ بندانگشتیای نمایش نخواهد یافت. نیازمند کلیک دستی برای رسیدن به پروندهٔ اصلی:'
|
||||
silenced: |-
|
||||
هیچ کدام از نوشتهها از طرف این سرور اینجا نمایش نخواهند یافت مگر در فهرست پیگیریها شما، اگر نویسندهاش را پی بگیرید.
|
||||
فرستهها از این کارسازها در گفتوگوها و خط زمانی عمومی نهفته خواهند بود و تا وقتی پیگیرشان نشوید، هیچ آگاهیای از برهمکنشهای کاربرانشان تولید نخواهد شد:
|
||||
suspended: 'هیچ دادهای از این کارسازها پردازش، ذخیره یا مبادله نخواهد شد که هرگونه برهمکنش یا ارتباط با کاربران این کارسازها را غیرممکن خواهد کرد:'
|
||||
unavailable_content_html: ماستدون در حالت کلی اجازه میدهد که شما همهٔ مطالب و کاربران در سرورهای دیگر را نیز ببینید و با آنها برهمکنش داشته باشید. فهرست زیر ولی استثناهای این ارتباط است که به طور خاص روی این سرور اعمال شدهاند.
|
||||
user_count_after:
|
||||
one: کاربر
|
||||
@ -78,6 +80,7 @@ fa:
|
||||
roles:
|
||||
admin: مدیر
|
||||
bot: ربات
|
||||
group: گروه
|
||||
moderator: ناظم
|
||||
unavailable: نمایهٔ ناموجود
|
||||
unfollow: پایان پیگیری
|
||||
@ -97,38 +100,38 @@ fa:
|
||||
avatar: تصویر نمایه
|
||||
by_domain: دامین
|
||||
change_email:
|
||||
changed_msg: نشانی ایمیل این حساب با موفقیت تغییر کرد!
|
||||
current_email: ایمیل کنونی
|
||||
label: تغییر نشانی ایمیل
|
||||
new_email: ایمیل تازه
|
||||
submit: تغییر ایمیل
|
||||
title: تغییر ایمیل برای %{username}
|
||||
changed_msg: رایانامهٔ حساب با موفقیت تغییر کرد!
|
||||
current_email: رایانامهٔ کنونی
|
||||
label: تغییر رایانامه
|
||||
new_email: رایانامهٔ جدید
|
||||
submit: تغییر رایانامه
|
||||
title: تغییر رایانامه برای %{username}
|
||||
confirm: تأیید
|
||||
confirmed: تأیید شد
|
||||
confirming: تأیید
|
||||
deleted: پاکشده
|
||||
deleted: حذف شده
|
||||
demote: تنزلدادن
|
||||
disable: غیرفعال
|
||||
disable_two_factor_authentication: غیرفعالسازی ورود دومرحلهای
|
||||
disabled: غیرفعال
|
||||
display_name: نمایش به نام
|
||||
domain: دامین
|
||||
disable: از کار انداختن
|
||||
disable_two_factor_authentication: از کار انداختن 2FA
|
||||
disabled: از کار افتاده
|
||||
display_name: نام نمایشی
|
||||
domain: دامنه
|
||||
edit: ویرایش
|
||||
email: ایمیل
|
||||
email_status: وضعیت ایمیل
|
||||
enable: فعال
|
||||
enabled: فعال
|
||||
email: رایانامه
|
||||
email_status: وضعیت رایانامه
|
||||
enable: به کار انداختن
|
||||
enabled: به کار افتاده
|
||||
followers: پیگیران
|
||||
follows: پی میگیرد
|
||||
header: زمینه
|
||||
header: سرآیند
|
||||
inbox_url: نشانی صندوق ورودی
|
||||
invited_by: دعوتشده از طرف
|
||||
ip: IP
|
||||
joined: عضویت از
|
||||
joined: پیوسته در
|
||||
location:
|
||||
all: همه
|
||||
local: محلی
|
||||
remote: غیرمستقیم
|
||||
local: محلّی
|
||||
remote: دوردست
|
||||
title: مکان
|
||||
login_status: وضعیت ورود
|
||||
media_attachments: ضمیمههای تصویری
|
||||
@ -198,10 +201,12 @@ fa:
|
||||
confirm_user: "%{name} نشانی ایمیل کاربر %{target} را تأیید کرد"
|
||||
create_account_warning: "%{name} هشداری برای %{target} فرستاد"
|
||||
create_custom_emoji: "%{name} شکلک تازهٔ %{target} را بارگذاشت"
|
||||
create_domain_allow: "%{name} دامنهٔ %{target} را مجاز کرد"
|
||||
create_domain_block: "%{name} دامین %{target} را مسدود کرد"
|
||||
create_email_domain_block: "%{name} دامین ایمیل %{target} را مسدود کرد"
|
||||
demote_user: "%{name} مقام کاربر %{target} را تنزل داد"
|
||||
destroy_custom_emoji: "%{name} شکلک %{target} را حذف کرد"
|
||||
destroy_domain_allow: "%{name} دامنهٔ %{target} را فهرست مجاز برداشت"
|
||||
destroy_domain_block: "%{name} دامین %{target} را باز کرد"
|
||||
destroy_email_domain_block: "%{name} دامین ایمیل %{target} را باز کرد"
|
||||
destroy_status: "%{name} نوشتهای از %{target} را پاک کرد"
|
||||
@ -336,6 +341,7 @@ fa:
|
||||
delete: پاککردن
|
||||
destroyed_msg: مسدودسازی دامین ایمیل با موفقیت پاک شد
|
||||
domain: دامین
|
||||
empty: هیچ دامنه ایمیلی در حال حاضر در لیستسیاه قرار نگرفته است.
|
||||
new:
|
||||
create: ساختن مسدودسازی
|
||||
title: مسدودسازی دامین ایمیل تازه
|
||||
@ -391,10 +397,18 @@ fa:
|
||||
created_msg: یادداشت گزارش با موفقیت ساخته شد!
|
||||
destroyed_msg: یادداشت گزارش با موفقیت حذف شد!
|
||||
reports:
|
||||
account:
|
||||
notes:
|
||||
one: "%{count} یادداشت"
|
||||
other: "%{count} یادداشت"
|
||||
reports:
|
||||
one: "%{count} گزارش"
|
||||
other: "%{count} گزارش"
|
||||
action_taken_by: انجامدهنده
|
||||
are_you_sure: آیا مطمئن هستید؟
|
||||
assign_to_self: به عهدهٔ من بگذار
|
||||
assigned: مدیر عهدهدار
|
||||
by_target_domain: دامنهٔ حساب گزارششده
|
||||
comment:
|
||||
none: خالی
|
||||
created_at: گزارششده
|
||||
@ -440,6 +454,8 @@ fa:
|
||||
users: برای کاربران محلی واردشده
|
||||
domain_blocks_rationale:
|
||||
title: دیدن دلیل
|
||||
enable_bootstrap_timeline_accounts:
|
||||
title: به کار انداختن پیگیریهای پیشگزیده برای کاربران تازه
|
||||
hero:
|
||||
desc_html: در صفحهٔ آغازین نمایش مییابد. دستکم ۶۰۰×۱۰۰ پیکسل توصیه میشود. اگر تعیین نشود، با تصویر بندانگشتی سرور جایگزین خواهد شد
|
||||
title: تصویر سربرگ
|
||||
@ -568,6 +584,10 @@ fa:
|
||||
animations_and_accessibility: پویانماییهای و دسترسیپذیری
|
||||
confirmation_dialogs: پیغامهای تأیید
|
||||
discovery: کاوش
|
||||
localization:
|
||||
body: ماستودون توسط داوطلبان ترجمه شده است.
|
||||
guide_link: https://crowdin.com/project/mastodon
|
||||
guide_link_text: همه میتوانند کمک کنند.
|
||||
sensitive_content: محتوای حساس
|
||||
toot_layout: آرایش بوق
|
||||
application_mailer:
|
||||
@ -706,7 +726,6 @@ fa:
|
||||
blocks: حسابهای مسدودشده
|
||||
csv: CSV
|
||||
domain_blocks: دامینهای مسدودشده
|
||||
follows: حسابهای پیگرفته
|
||||
lists: فهرستها
|
||||
mutes: حسابهای بیصداشده
|
||||
storage: تصویرهای ذخیرهشده
|
||||
@ -728,6 +747,7 @@ fa:
|
||||
invalid_irreversible: فیلترهای برگشتناپذیر تنها در زمینهٔ پیگیریها یا اعلانها کار میکنند
|
||||
index:
|
||||
delete: پاککردن
|
||||
empty: شما هیچ فیلتری ندارید.
|
||||
title: فیلترها
|
||||
new:
|
||||
title: افزودن فیلتر تازه
|
||||
@ -876,6 +896,10 @@ fa:
|
||||
body: "%{name} نوشتهٔ شما را بازبوقید:"
|
||||
subject: "%{name} نوشتهٔ شما را بازبوقید"
|
||||
title: بازبوق تازه
|
||||
notifications:
|
||||
email_events: رویدادها برای آگاهیهای رایانامهای
|
||||
email_events_hint: 'گزینش رویدادهایی که میخواهید برایشان آگاهی بگیرید:'
|
||||
other_settings: تنظیمات دیگر آگاهیها
|
||||
number:
|
||||
human:
|
||||
decimal_units:
|
||||
@ -909,6 +933,8 @@ fa:
|
||||
relationships:
|
||||
activity: فعالیت حساب
|
||||
dormant: غیرفعال
|
||||
followers: پیگیران
|
||||
following: پیگیریشدگان
|
||||
last_active: آخرین فعالیت
|
||||
most_recent: تازهترین
|
||||
moved: منتقلشده
|
||||
|
@ -299,6 +299,8 @@ fi:
|
||||
contact_information:
|
||||
email: Työsähköposti
|
||||
username: Yhteyshenkilön käyttäjänimi
|
||||
enable_bootstrap_timeline_accounts:
|
||||
title: Uudet käyttäjät seuraavat oletuksena tilejä
|
||||
hero:
|
||||
desc_html: Näytetään etusivulla. Suosituskoko vähintään 600x100 pikseliä. Jos kuvaa ei aseteta, käytetään instanssin pikkukuvaa
|
||||
title: Sankarin kuva
|
||||
@ -438,7 +440,6 @@ fi:
|
||||
request: Pyydä arkisto
|
||||
size: Koko
|
||||
blocks: Estot
|
||||
follows: Seurattavat
|
||||
mutes: Mykistetyt
|
||||
storage: Media-arkisto
|
||||
generic:
|
||||
|
@ -10,7 +10,7 @@ fr:
|
||||
api: API
|
||||
apps: Applications mobiles
|
||||
apps_platforms: Utilisez Mastodon depuis iOS, Android et d’autres plates-formes
|
||||
browse_directory: Parcourir l’annuaire des profils et filtrer par centres d’intérêt
|
||||
browse_directory: Parcourir l’annuaire des profils et filtrer par centres d’intérêts
|
||||
browse_local_posts: Parcourir un flux en direct de messages publics depuis ce serveur
|
||||
browse_public_posts: Parcourir un flux en direct de messages publics sur Mastodon
|
||||
contact: Contact
|
||||
@ -78,6 +78,7 @@ fr:
|
||||
roles:
|
||||
admin: Admin
|
||||
bot: Robot
|
||||
group: Groupe
|
||||
moderator: Modérateur·trice
|
||||
unavailable: Profil non disponible
|
||||
unfollow: Ne plus suivre
|
||||
@ -393,10 +394,18 @@ fr:
|
||||
created_msg: Note de signalement créée avec succès !
|
||||
destroyed_msg: Note de signalement effacée avec succès !
|
||||
reports:
|
||||
account:
|
||||
notes:
|
||||
one: "%{count} note"
|
||||
other: "%{count} notes"
|
||||
reports:
|
||||
one: "%{count} signalement"
|
||||
other: "%{count} signalements"
|
||||
action_taken_by: Intervention de
|
||||
are_you_sure: Êtes vous certain⋅e ?
|
||||
assign_to_self: Me l’assigner
|
||||
assigned: Modérateur assigné
|
||||
by_target_domain: Domaine du compte signalé
|
||||
comment:
|
||||
none: Aucun
|
||||
created_at: Signalé
|
||||
@ -442,6 +451,8 @@ fr:
|
||||
users: Pour les utilisateurs locaux connectés
|
||||
domain_blocks_rationale:
|
||||
title: Montrer la raison
|
||||
enable_bootstrap_timeline_accounts:
|
||||
title: Activer le suivi par défaut pour les nouveaux·elles utilisateur·ice·s
|
||||
hero:
|
||||
desc_html: Affichée sur la page d’accueil. Au moins 600x100px recommandé. Lorsqu’elle n’est pas définie, se rabat sur la vignette du serveur
|
||||
title: Image d’en-tête
|
||||
@ -570,6 +581,10 @@ fr:
|
||||
animations_and_accessibility: Animations et accessibilité
|
||||
confirmation_dialogs: Dialogues de confirmation
|
||||
discovery: Découverte
|
||||
localization:
|
||||
body: Mastodon est traduit par des volontaires.
|
||||
guide_link: https://fr.crowdin.com/project/mastodon
|
||||
guide_link_text: Tout le monde peut y contribuer.
|
||||
sensitive_content: Contenu sensible
|
||||
toot_layout: Agencement du pouet
|
||||
application_mailer:
|
||||
@ -708,7 +723,6 @@ fr:
|
||||
blocks: Vous bloquez
|
||||
csv: CSV
|
||||
domain_blocks: Bloqueurs de domaine
|
||||
follows: Vous suivez
|
||||
lists: Listes
|
||||
mutes: Vous masquez
|
||||
storage: Médias stockés
|
||||
@ -730,6 +744,7 @@ fr:
|
||||
invalid_irreversible: Le filtrage irréversible ne fonctionne que pour l’accueil et les notifications
|
||||
index:
|
||||
delete: Effacer
|
||||
empty: Vous n'avez aucun filtre.
|
||||
title: Filtres
|
||||
new:
|
||||
title: Ajouter un nouveau filtre
|
||||
@ -834,7 +849,7 @@ fr:
|
||||
redirecting_to: Votre compte est redirigé vers %{acct}.
|
||||
set_redirect: Définir la redirection
|
||||
warning:
|
||||
backreference_required: Le nouveau compte doit d'abord être configuré pour faire référence à celui-ci
|
||||
backreference_required: Le nouveau compte doit d'abord être configuré pour faire référence à celui-ci en définissant un alias
|
||||
before: 'Avant de procéder, veuillez lire attentivement ces notes :'
|
||||
cooldown: Après le déménagement, il y a une période de gel pendant laquelle vous ne pourrez plus re-déménager
|
||||
disabled_account: Votre compte actuel ne sera pas entièrement utilisable par la suite. Cependant, vous aurez accès à l'exportation de données et à la ré-activation.
|
||||
@ -878,6 +893,10 @@ fr:
|
||||
body: "%{name} a partagé votre statut :"
|
||||
subject: "%{name} a partagé votre statut"
|
||||
title: Nouveau partage
|
||||
notifications:
|
||||
email_events: Événements pour les notifications par courriel
|
||||
email_events_hint: 'Sélectionnez les événements pour lesquels vous souhaitez recevoir des notifications :'
|
||||
other_settings: Autres paramètres de notifications
|
||||
number:
|
||||
human:
|
||||
decimal_units:
|
||||
@ -901,6 +920,7 @@ fr:
|
||||
duration_too_long: est trop loin dans le futur
|
||||
duration_too_short: est trop tôt
|
||||
expired: Ce sondage est déjà terminé
|
||||
invalid_choice: L'option de vote choisie n'existe pas
|
||||
over_character_limit: ne peuvent être plus long que %{max} caractères chacun
|
||||
too_few_options: doit avoir plus qu’une proposition
|
||||
too_many_options: ne peut contenir plus de %{max} propositions
|
||||
@ -911,6 +931,8 @@ fr:
|
||||
relationships:
|
||||
activity: Activité du compte
|
||||
dormant: Dormant
|
||||
followers: Abonné·e·s
|
||||
following: Abonnements
|
||||
last_active: Dernière activité
|
||||
most_recent: Plus récent
|
||||
moved: Déménagé
|
||||
@ -933,8 +955,8 @@ fr:
|
||||
proceed: Confirmer l’ajout aux favoris
|
||||
prompt: 'Vous souhaitez mettre ce pouet en favori :'
|
||||
reblog:
|
||||
proceed: Confirmer le repartage
|
||||
prompt: 'Vous souhaitez repartager ce pouet :'
|
||||
proceed: Confirmer le partage
|
||||
prompt: 'Vous souhaitez partager ce pouet :'
|
||||
reply:
|
||||
proceed: Confirmer la réponse
|
||||
prompt: 'Vous souhaitez répondre à ce pouet :'
|
||||
@ -1015,7 +1037,7 @@ fr:
|
||||
video:
|
||||
one: "%{count} vidéo"
|
||||
other: "%{count} vidéos"
|
||||
boosted_from_html: Repartagé depuis %{acct_link}
|
||||
boosted_from_html: Partagé depuis %{acct_link}
|
||||
content_warning: 'Avertissement sur le contenu : %{warning}'
|
||||
disallowed_hashtags:
|
||||
one: 'contient un hashtag désactivé : %{tags}'
|
||||
@ -1207,5 +1229,5 @@ fr:
|
||||
seamless_external_login: Vous êtes connecté via un service externe, donc les paramètres concernant le mot de passe et le courriel ne sont pas disponibles.
|
||||
signed_in_as: 'Connecté·e en tant que :'
|
||||
verification:
|
||||
explanation_html: 'Vous pouvez <strong>vérifier vous-même que vous êtes le propriétaire des liens dans les métadonnées de votre profil</strong>. Pour cela, le site Web lié doit contenir un lien vers votre profil Mastodon. Le lien de retour <strong>doit</strong>avoir un attribut <code>rel="me"</code>. Le contenu textuel du lien n’a pas d’importance. En voici un exemple :'
|
||||
explanation_html: 'Vous pouvez <strong>vous vérifier en tant que propriétaire des liens dans les métadonnées de votre profil</strong>. Pour cela, le site web lié doit contenir un lien vers votre profil Mastodon. Le lien de retour <strong>doit</strong> avoir un attribut <code>rel="me"</code> . Le texte du lien n’a pas d’importance. Voici un exemple :'
|
||||
verification: Vérification
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user