Merge branch 'main' into glitch-soc/merge-upstream

master
Claire 2022-03-12 11:51:25 +01:00
commit bb9a6fb5c2
308 changed files with 4127 additions and 2772 deletions

View File

@ -29,6 +29,9 @@ Layout/EmptyLineAfterMagicComment:
Layout/EmptyLineAfterGuardClause: Layout/EmptyLineAfterGuardClause:
Enabled: false Enabled: false
Layout/EmptyLineBetweenDefs:
AllowAdjacentOneLineDefs: true
Layout/EmptyLinesAroundAttributeAccessor: Layout/EmptyLinesAroundAttributeAccessor:
Enabled: true Enabled: true

View File

@ -68,7 +68,7 @@ gem 'parslet'
gem 'posix-spawn' gem 'posix-spawn'
gem 'pundit', '~> 2.2' gem 'pundit', '~> 2.2'
gem 'premailer-rails' gem 'premailer-rails'
gem 'rack-attack', '~> 6.5' gem 'rack-attack', '~> 6.6'
gem 'rack-cors', '~> 1.1', require: 'rack/cors' gem 'rack-cors', '~> 1.1', require: 'rack/cors'
gem 'rails-i18n', '~> 6.0' gem 'rails-i18n', '~> 6.0'
gem 'rails-settings-cached', '~> 0.6' gem 'rails-settings-cached', '~> 0.6'

View File

@ -468,7 +468,7 @@ GEM
raabro (1.4.0) raabro (1.4.0)
racc (1.6.0) racc (1.6.0)
rack (2.2.3) rack (2.2.3)
rack-attack (6.5.0) rack-attack (6.6.0)
rack (>= 1.0, < 3) rack (>= 1.0, < 3)
rack-cors (1.1.1) rack-cors (1.1.1)
rack (>= 2.0.0) rack (>= 2.0.0)
@ -804,7 +804,7 @@ DEPENDENCIES
puma (~> 5.6) puma (~> 5.6)
pundit (~> 2.2) pundit (~> 2.2)
rack (~> 2.2.3) rack (~> 2.2.3)
rack-attack (~> 6.5) rack-attack (~> 6.6)
rack-cors (~> 1.1) rack-cors (~> 1.1)
rails (~> 6.1.4) rails (~> 6.1.4)
rails-controller-testing (~> 1.0) rails-controller-testing (~> 1.0)

View File

@ -1,7 +1,7 @@
# frozen_string_literal: true # frozen_string_literal: true
class Api::V1::Emails::ConfirmationsController < Api::BaseController class Api::V1::Emails::ConfirmationsController < Api::BaseController
before_action :doorkeeper_authorize! before_action -> { doorkeeper_authorize! :write, :'write:accounts' }
before_action :require_user_owned_by_application! before_action :require_user_owned_by_application!
before_action :require_user_not_confirmed! before_action :require_user_not_confirmed!
@ -19,6 +19,6 @@ class Api::V1::Emails::ConfirmationsController < Api::BaseController
end end
def require_user_not_confirmed! def require_user_not_confirmed!
render json: { error: 'This method is only available while the e-mail is awaiting confirmation' }, status: :forbidden if current_user.confirmed? || current_user.unconfirmed_email.blank? render json: { error: 'This method is only available while the e-mail is awaiting confirmation' }, status: :forbidden unless !current_user.confirmed? || current_user.unconfirmed_email.present?
end end
end end

View File

@ -15,6 +15,14 @@ module JsonLdHelper
value.is_a?(Array) ? value.first : value value.is_a?(Array) ? value.first : value
end end
def uri_from_bearcap(str)
if str&.start_with?('bear:')
Addressable::URI.parse(str).query_values['u']
else
str
end
end
# The url attribute can be a string, an array of strings, or an array of objects. # The url attribute can be a string, an array of strings, or an array of objects.
# The objects could include a mimeType. Not-included mimeType means it's text/html. # The objects could include a mimeType. Not-included mimeType means it's text/html.
def url_to_href(value, preferred_type = nil) def url_to_href(value, preferred_type = nil)
@ -54,7 +62,7 @@ module JsonLdHelper
end end
def unsupported_uri_scheme?(uri) def unsupported_uri_scheme?(uri)
!uri.start_with?('http://', 'https://') uri.nil? || !uri.start_with?('http://', 'https://')
end end
def invalid_origin?(url) def invalid_origin?(url)

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -187,12 +187,12 @@
"error.unexpected_crash.next_steps_addons": "حاول تعطيلهم وإنعاش الصفحة. إن لم ينجح ذلك، يمكنك دائمًا استخدام ماستدون عبر متصفح آخر أو تطبيق أصلي.", "error.unexpected_crash.next_steps_addons": "حاول تعطيلهم وإنعاش الصفحة. إن لم ينجح ذلك، يمكنك دائمًا استخدام ماستدون عبر متصفح آخر أو تطبيق أصلي.",
"errors.unexpected_crash.copy_stacktrace": "انسخ تتبع الارتباطات إلى الحافظة", "errors.unexpected_crash.copy_stacktrace": "انسخ تتبع الارتباطات إلى الحافظة",
"errors.unexpected_crash.report_issue": "الإبلاغ عن خلل", "errors.unexpected_crash.report_issue": "الإبلاغ عن خلل",
"explore.search_results": "Search results", "explore.search_results": "نتائج البحث",
"explore.suggested_follows": "For you", "explore.suggested_follows": "لك",
"explore.title": "Explore", "explore.title": "استكشف",
"explore.trending_links": "News", "explore.trending_links": "الأخبار",
"explore.trending_statuses": "Posts", "explore.trending_statuses": "المنشورات",
"explore.trending_tags": "Hashtags", "explore.trending_tags": "الوسوم",
"follow_recommendations.done": "تم", "follow_recommendations.done": "تم",
"follow_recommendations.heading": "تابع الأشخاص الذين ترغب في رؤية منشوراتهم! إليك بعض الاقتراحات.", "follow_recommendations.heading": "تابع الأشخاص الذين ترغب في رؤية منشوراتهم! إليك بعض الاقتراحات.",
"follow_recommendations.lead": "ستظهر منشورات الأشخاص الذين تُتابعتهم بترتيب تسلسلي زمني على صفحتك الرئيسية. لا تخف إذا ارتكبت أي أخطاء، تستطيع إلغاء متابعة أي شخص في أي وقت تريد!", "follow_recommendations.lead": "ستظهر منشورات الأشخاص الذين تُتابعتهم بترتيب تسلسلي زمني على صفحتك الرئيسية. لا تخف إذا ارتكبت أي أخطاء، تستطيع إلغاء متابعة أي شخص في أي وقت تريد!",
@ -320,7 +320,7 @@
"notification.update": "{name} edited a post", "notification.update": "{name} edited a post",
"notifications.clear": "امسح الإخطارات", "notifications.clear": "امسح الإخطارات",
"notifications.clear_confirmation": "أمتأكد من أنك تود مسح جل الإخطارات الخاصة بك و المتلقاة إلى حد الآن ؟", "notifications.clear_confirmation": "أمتأكد من أنك تود مسح جل الإخطارات الخاصة بك و المتلقاة إلى حد الآن ؟",
"notifications.column_settings.admin.sign_up": "New sign-ups:", "notifications.column_settings.admin.sign_up": "التسجيلات الجديدة:",
"notifications.column_settings.alert": "إشعارات سطح المكتب", "notifications.column_settings.alert": "إشعارات سطح المكتب",
"notifications.column_settings.favourite": "المُفَضَّلة:", "notifications.column_settings.favourite": "المُفَضَّلة:",
"notifications.column_settings.filter_bar.advanced": "اعرض كافة الفئات", "notifications.column_settings.filter_bar.advanced": "اعرض كافة الفئات",
@ -337,7 +337,7 @@
"notifications.column_settings.status": "منشورات جديدة:", "notifications.column_settings.status": "منشورات جديدة:",
"notifications.column_settings.unread_notifications.category": "إشعارات غير مقروءة", "notifications.column_settings.unread_notifications.category": "إشعارات غير مقروءة",
"notifications.column_settings.unread_notifications.highlight": "علّم الإشعارات غير المقرؤة", "notifications.column_settings.unread_notifications.highlight": "علّم الإشعارات غير المقرؤة",
"notifications.column_settings.update": "Edits:", "notifications.column_settings.update": "التعديلات:",
"notifications.filter.all": "الكل", "notifications.filter.all": "الكل",
"notifications.filter.boosts": "الترقيات", "notifications.filter.boosts": "الترقيات",
"notifications.filter.favourites": "المفضلة", "notifications.filter.favourites": "المفضلة",
@ -388,43 +388,43 @@
"relative_time.seconds": "{number}ثا", "relative_time.seconds": "{number}ثا",
"relative_time.today": "اليوم", "relative_time.today": "اليوم",
"reply_indicator.cancel": "إلغاء", "reply_indicator.cancel": "إلغاء",
"report.block": "Block", "report.block": "حظر",
"report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.", "report.block_explanation": "لن ترى مشاركاتهم ولن يمكنهم متابعتك أو رؤية مشاركاتك، سيكون بديهيا لهم أنهم مكتمون.",
"report.categories.other": "أخرى", "report.categories.other": "أخرى",
"report.categories.spam": "مزعج", "report.categories.spam": "مزعج",
"report.categories.violation": "المحتوى ينتهك شرطا أو عدة شروط استخدام للخادم", "report.categories.violation": "المحتوى ينتهك شرطا أو عدة شروط استخدام للخادم",
"report.category.subtitle": "Choose the best match", "report.category.subtitle": "Choose the best match",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "Tell us what's going on with this {type}",
"report.category.title_account": "profile", "report.category.title_account": "ملف تعريفي",
"report.category.title_status": "post", "report.category.title_status": "منشور",
"report.close": "Done", "report.close": "تم",
"report.comment.title": "Is there anything else you think we should know?", "report.comment.title": "هل لديك شيء آخر لتخبرنا به؟",
"report.forward": "التحويل إلى {target}", "report.forward": "التحويل إلى {target}",
"report.forward_hint": "هذا الحساب ينتمي إلى خادوم آخَر. هل تودّ إرسال نسخة مجهولة مِن التقرير إلى هنالك أيضًا؟", "report.forward_hint": "هذا الحساب ينتمي إلى خادوم آخَر. هل تودّ إرسال نسخة مجهولة مِن التقرير إلى هنالك أيضًا؟",
"report.mute": "Mute", "report.mute": "كتم",
"report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.", "report.mute_explanation": "لن ترى مشاركاتهم. لكن سيبقى بإمكانهم متابعتك ورؤية مشاركاتك دون أن يعرفوا أنهم مكتمون.",
"report.next": "Next", "report.next": "التالي",
"report.placeholder": "تعليقات إضافية", "report.placeholder": "تعليقات إضافية",
"report.reasons.dislike": "I don't like it", "report.reasons.dislike": "لايعجبني",
"report.reasons.dislike_description": "It is not something you want to see", "report.reasons.dislike_description": "ألا ترغب برؤيته",
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "ينتهك قواعد الخادم",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",
"report.rules.title": "Which rules are being violated?", "report.rules.title": "ما هي القواعد المنتهكة؟",
"report.statuses.subtitle": "Select all that apply", "report.statuses.subtitle": "Select all that apply",
"report.statuses.title": "Are there any posts that back up this report?", "report.statuses.title": "هل توجد مشاركات تدعم صحة هذا البلاغ؟",
"report.submit": "إرسال", "report.submit": "إرسال",
"report.target": "ابلغ عن {target}", "report.target": "ابلغ عن {target}",
"report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:", "report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:",
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:", "report.thanks.take_action_actionable": "في أثناء مراجعتنا للبلاغ، يمكنك اتخاذ إجراء ضد @{name}:",
"report.thanks.title": "Don't want to see this?", "report.thanks.title": "هل ترغب في مشاهدة هذا؟",
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.", "report.thanks.title_actionable": "شُكرًا لَكَ على الإبلاغ، سَوفَ نَنظُرُ فِي هَذَا الأمر.",
"report.unfollow": "Unfollow @{name}", "report.unfollow": "إلغاء متابعة @{name}",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.", "report.unfollow_explanation": "أنت تتابع هذا الحساب، لإزالة مَنشوراته من تغذيَتِكَ الرئيسة ألغ متابعته.",
"search.placeholder": "ابحث", "search.placeholder": "ابحث",
"search_popout.search_format": "نمط البحث المتقدم", "search_popout.search_format": "نمط البحث المتقدم",
"search_popout.tips.full_text": "النص البسيط يقوم بعرض المنشورات التي كتبتها أو قمت بإرسالها أو ترقيتها أو تمت الإشارة إليك فيها من طرف آخرين ، بالإضافة إلى مطابقة أسماء المستخدمين وأسماء العرض وعلامات التصنيف.", "search_popout.tips.full_text": "النص البسيط يقوم بعرض المنشورات التي كتبتها أو قمت بإرسالها أو ترقيتها أو تمت الإشارة إليك فيها من طرف آخرين ، بالإضافة إلى مطابقة أسماء المستخدمين وأسماء العرض وعلامات التصنيف.",
@ -433,9 +433,9 @@
"search_popout.tips.text": "جملة قصيرة تُمكّنُك من عرض أسماء و حسابات و كلمات رمزية", "search_popout.tips.text": "جملة قصيرة تُمكّنُك من عرض أسماء و حسابات و كلمات رمزية",
"search_popout.tips.user": "مستخدِم", "search_popout.tips.user": "مستخدِم",
"search_results.accounts": "أشخاص", "search_results.accounts": "أشخاص",
"search_results.all": "All", "search_results.all": "الكل",
"search_results.hashtags": "الوُسوم", "search_results.hashtags": "الوُسوم",
"search_results.nothing_found": "Could not find anything for these search terms", "search_results.nothing_found": "تعذر العثور على نتائج تتضمن هذه المصطلحات",
"search_results.statuses": "المنشورات", "search_results.statuses": "المنشورات",
"search_results.statuses_fts_disabled": "البحث عن المنشورات عن طريق المحتوى ليس مفعل في خادم ماستدون هذا.", "search_results.statuses_fts_disabled": "البحث عن المنشورات عن طريق المحتوى ليس مفعل في خادم ماستدون هذا.",
"search_results.total": "{count, number} {count, plural, zero {} one {نتيجة} two {نتيجتين} few {نتائج} many {نتائج} other {نتائج}}", "search_results.total": "{count, number} {count, plural, zero {} one {نتيجة} two {نتيجتين} few {نتائج} many {نتائج} other {نتائج}}",

View File

@ -38,7 +38,7 @@
"account.requested": "Esperando pola aprobación. Calca pa encaboxar la solicitú de siguimientu", "account.requested": "Esperando pola aprobación. Calca pa encaboxar la solicitú de siguimientu",
"account.share": "Share @{name}'s profile", "account.share": "Share @{name}'s profile",
"account.show_reblogs": "Amosar les comparticiones de @{name}", "account.show_reblogs": "Amosar les comparticiones de @{name}",
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} artículu} other {{counter} artículos}}",
"account.unblock": "Desbloquiar a @{name}", "account.unblock": "Desbloquiar a @{name}",
"account.unblock_domain": "Amosar {domain}", "account.unblock_domain": "Amosar {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Unblock",
@ -156,14 +156,14 @@
"emoji_button.objects": "Oxetos", "emoji_button.objects": "Oxetos",
"emoji_button.people": "Persones", "emoji_button.people": "Persones",
"emoji_button.recent": "Úsase davezu", "emoji_button.recent": "Úsase davezu",
"emoji_button.search": "Guetar…", "emoji_button.search": "Buscar…",
"emoji_button.search_results": "Search results", "emoji_button.search_results": "Search results",
"emoji_button.symbols": "Símbolos", "emoji_button.symbols": "Símbolos",
"emoji_button.travel": "Viaxes y llugares", "emoji_button.travel": "Viaxes y llugares",
"empty_column.account_suspended": "Account suspended", "empty_column.account_suspended": "Account suspended",
"empty_column.account_timeline": "¡Equí nun hai barritos!", "empty_column.account_timeline": "¡Equí nun hai barritos!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "Entá nun bloquiesti a nunengún usuariu.", "empty_column.blocks": "Entá nun bloquiesti a nengún usuariu.",
"empty_column.bookmarked_statuses": "Entá nun tienes nengún barritu en Marcadores. Cuando amiestes unu, va amosase equí.", "empty_column.bookmarked_statuses": "Entá nun tienes nengún barritu en Marcadores. Cuando amiestes unu, va amosase equí.",
"empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!",
"empty_column.direct": "Entá nun tienes nuengún mensaxe direutu. Cuando unvies o recibas dalgún, va apaecer equí.", "empty_column.direct": "Entá nun tienes nuengún mensaxe direutu. Cuando unvies o recibas dalgún, va apaecer equí.",
@ -182,17 +182,17 @@
"empty_column.notifications": "Entá nun tienes nunengún avisu. Interactúa con otros p'aniciar la conversación.", "empty_column.notifications": "Entá nun tienes nunengún avisu. Interactúa con otros p'aniciar la conversación.",
"empty_column.public": "¡Equí nun hai nada! Escribi daqué público o sigui a usuarios d'otros sirvidores pa rellenar esto", "empty_column.public": "¡Equí nun hai nada! Escribi daqué público o sigui a usuarios d'otros sirvidores pa rellenar esto",
"error.unexpected_crash.explanation": "Pola mor d'un fallu nel códigu o un problema de compatibilidá del restolador, esta páxina nun se pudo amosar correutamente.", "error.unexpected_crash.explanation": "Pola mor d'un fallu nel códigu o un problema de compatibilidá del restolador, esta páxina nun se pudo amosar correutamente.",
"error.unexpected_crash.explanation_addons": "This page could not be displayed correctly. This error is likely caused by a browser add-on or automatic translation tools.", "error.unexpected_crash.explanation_addons": "Esta páxina nun se pudo amosar correutamente. Ye probable que dalgún complementu del restolador o dalguna ferramienta de traducción automática produxere esti fallu.",
"error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.", "error.unexpected_crash.next_steps": "Try refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
"error.unexpected_crash.next_steps_addons": "Try disabling them and refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.", "error.unexpected_crash.next_steps_addons": "Try disabling them and refreshing the page. If that does not help, you may still be able to use Mastodon through a different browser or native app.",
"errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard", "errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
"errors.unexpected_crash.report_issue": "Report issue", "errors.unexpected_crash.report_issue": "Report issue",
"explore.search_results": "Search results", "explore.search_results": "Search results",
"explore.suggested_follows": "For you", "explore.suggested_follows": "Pa ti",
"explore.title": "Explore", "explore.title": "Explore",
"explore.trending_links": "News", "explore.trending_links": "Noticies",
"explore.trending_statuses": "Posts", "explore.trending_statuses": "Posts",
"explore.trending_tags": "Hashtags", "explore.trending_tags": "Etiquetes",
"follow_recommendations.done": "Done", "follow_recommendations.done": "Done",
"follow_recommendations.heading": "Follow people you'd like to see posts from! Here are some suggestions.", "follow_recommendations.heading": "Follow people you'd like to see posts from! Here are some suggestions.",
"follow_recommendations.lead": "Posts from people you follow will show up in chronological order on your home feed. Don't be afraid to make mistakes, you can unfollow people just as easily any time!", "follow_recommendations.lead": "Posts from people you follow will show up in chronological order on your home feed. Don't be afraid to make mistakes, you can unfollow people just as easily any time!",
@ -218,7 +218,7 @@
"hashtag.column_settings.tag_mode.none": "Nenguna d'estes", "hashtag.column_settings.tag_mode.none": "Nenguna d'estes",
"hashtag.column_settings.tag_toggle": "Incluyir les etiquetes adicionales d'esta columna", "hashtag.column_settings.tag_toggle": "Incluyir les etiquetes adicionales d'esta columna",
"home.column_settings.basic": "Basic", "home.column_settings.basic": "Basic",
"home.column_settings.show_reblogs": "Amosar toots compartíos", "home.column_settings.show_reblogs": "Show boosts",
"home.column_settings.show_replies": "Amosar rempuestes", "home.column_settings.show_replies": "Amosar rempuestes",
"home.hide_announcements": "Hide announcements", "home.hide_announcements": "Hide announcements",
"home.show_announcements": "Show announcements", "home.show_announcements": "Show announcements",
@ -226,38 +226,38 @@
"intervals.full.hours": "{number, plural, one {# hora} other {# hores}}", "intervals.full.hours": "{number, plural, one {# hora} other {# hores}}",
"intervals.full.minutes": "{number, plural, one {# minutu} other {# minutos}}", "intervals.full.minutes": "{number, plural, one {# minutu} other {# minutos}}",
"keyboard_shortcuts.back": "pa dir p'atrás", "keyboard_shortcuts.back": "pa dir p'atrás",
"keyboard_shortcuts.blocked": "p'abrir la llista d'usuarios bloquiaos", "keyboard_shortcuts.blocked": "Abrir la llista d'usuarios bloquiaos",
"keyboard_shortcuts.boost": "pa compartir un toot", "keyboard_shortcuts.boost": "pa compartir un toot",
"keyboard_shortcuts.column": "to focus a status in one of the columns", "keyboard_shortcuts.column": "to focus a status in one of the columns",
"keyboard_shortcuts.compose": "pa enfocar l'área de composición", "keyboard_shortcuts.compose": "Enfocar l'área de composición",
"keyboard_shortcuts.description": "Descripción", "keyboard_shortcuts.description": "Descripción",
"keyboard_shortcuts.direct": "p'abrir la columna de los mensaxes direutos", "keyboard_shortcuts.direct": "Abrir la columna de los mensaxes direutos",
"keyboard_shortcuts.down": "pa baxar na llista", "keyboard_shortcuts.down": "pa baxar na llista",
"keyboard_shortcuts.enter": "p'abrir estaos", "keyboard_shortcuts.enter": "p'abrir estaos",
"keyboard_shortcuts.favourite": "p'amestar a Favoritos", "keyboard_shortcuts.favourite": "p'amestar a Favoritos",
"keyboard_shortcuts.favourites": "p'abrir la llista de favoritos", "keyboard_shortcuts.favourites": "Abrir la llista de favoritos",
"keyboard_shortcuts.federated": "p'abrir la llinia temporal federada", "keyboard_shortcuts.federated": "Abrir la llinia temporal federada",
"keyboard_shortcuts.heading": "Atayos del tecláu", "keyboard_shortcuts.heading": "Atayos del tecláu",
"keyboard_shortcuts.home": "p'abrir la llinia temporal d'aniciu", "keyboard_shortcuts.home": "p'abrir la llinia temporal d'aniciu",
"keyboard_shortcuts.hotkey": "Atayu", "keyboard_shortcuts.hotkey": "Atayu",
"keyboard_shortcuts.legend": "p'amosar esta lleenda", "keyboard_shortcuts.legend": "p'amosar esta lleenda",
"keyboard_shortcuts.local": "p'abrir la llinia temporal llocal", "keyboard_shortcuts.local": "p'abrir la llinia temporal llocal",
"keyboard_shortcuts.mention": "pa mentar al autor", "keyboard_shortcuts.mention": "pa mentar al autor",
"keyboard_shortcuts.muted": "p'abrir la llista d'usuarios silenciaos", "keyboard_shortcuts.muted": "Abrir la llista d'usuarios colos avisos desactivaos",
"keyboard_shortcuts.my_profile": "p'abrir el to perfil", "keyboard_shortcuts.my_profile": "p'abrir el to perfil",
"keyboard_shortcuts.notifications": "p'abrir la columna d'avisos", "keyboard_shortcuts.notifications": "Abrir la columna d'avisos",
"keyboard_shortcuts.open_media": "to open media", "keyboard_shortcuts.open_media": "to open media",
"keyboard_shortcuts.pinned": "p'abrir la llista de barritos fixaos", "keyboard_shortcuts.pinned": "Abrir la llista d'artículos fixaos",
"keyboard_shortcuts.profile": "p'abrir el perfil del autor", "keyboard_shortcuts.profile": "Abrir el perfil del autor/a",
"keyboard_shortcuts.reply": "pa responder", "keyboard_shortcuts.reply": "pa responder",
"keyboard_shortcuts.requests": "p'abrir la llista de solicitúes de siguimientu", "keyboard_shortcuts.requests": "Abrir la llista de solicitúes de siguimientu",
"keyboard_shortcuts.search": "pa enfocar la gueta", "keyboard_shortcuts.search": "Enfocar la barra de busca",
"keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.spoilers": "to show/hide CW field",
"keyboard_shortcuts.start": "p'abrir la columna «entamar»", "keyboard_shortcuts.start": "Abrir la columna «Entamar»",
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
"keyboard_shortcuts.toot": "p'apenzar un barritu nuevu", "keyboard_shortcuts.toot": "p'apenzar un barritu nuevu",
"keyboard_shortcuts.unfocus": "pa desenfocar l'área de composición/gueta", "keyboard_shortcuts.unfocus": "Desenfocar l'área de composición/busca",
"keyboard_shortcuts.up": "pa xubir na llista", "keyboard_shortcuts.up": "pa xubir na llista",
"lightbox.close": "Close", "lightbox.close": "Close",
"lightbox.compress": "Compress image view box", "lightbox.compress": "Compress image view box",
@ -275,14 +275,14 @@
"lists.replies_policy.list": "Members of the list", "lists.replies_policy.list": "Members of the list",
"lists.replies_policy.none": "No one", "lists.replies_policy.none": "No one",
"lists.replies_policy.title": "Show replies to:", "lists.replies_policy.title": "Show replies to:",
"lists.search": "Guetar ente la xente que sigues", "lists.search": "Buscar ente la xente que sigues",
"lists.subheading": "Les tos llistes", "lists.subheading": "Les tos llistes",
"load_pending": "{count, plural, one {# elementu nuevu} other {# elementos nuevos}}", "load_pending": "{count, plural, one {# elementu nuevu} other {# elementos nuevos}}",
"loading_indicator.label": "Cargando…", "loading_indicator.label": "Cargando…",
"media_gallery.toggle_visible": "Alternar la visibilidá", "media_gallery.toggle_visible": "Alternar la visibilidá",
"missing_indicator.label": "Nun s'alcontró", "missing_indicator.label": "Nun s'atopó",
"missing_indicator.sublabel": "Esti recursu nun pudo alcontrase", "missing_indicator.sublabel": "Nun se pudo atopar esti recursu",
"mute_modal.duration": "Duration", "mute_modal.duration": "Duración",
"mute_modal.hide_notifications": "¿Anubrir los avisos d'esti usuariu?", "mute_modal.hide_notifications": "¿Anubrir los avisos d'esti usuariu?",
"mute_modal.indefinite": "Indefinite", "mute_modal.indefinite": "Indefinite",
"navigation_bar.apps": "Aplicaciones pa móviles", "navigation_bar.apps": "Aplicaciones pa móviles",
@ -316,8 +316,8 @@
"notification.own_poll": "Your poll has ended", "notification.own_poll": "Your poll has ended",
"notification.poll": "Finó una encuesta na que votesti", "notification.poll": "Finó una encuesta na que votesti",
"notification.reblog": "{name} compartió'l to estáu", "notification.reblog": "{name} compartió'l to estáu",
"notification.status": "{name} just posted", "notification.status": "{name} ta acabante d'espublizar",
"notification.update": "{name} edited a post", "notification.update": "{name} editó l'artículu",
"notifications.clear": "Llimpiar avisos", "notifications.clear": "Llimpiar avisos",
"notifications.clear_confirmation": "¿De xuru que quies llimpiar dafechu tolos avisos?", "notifications.clear_confirmation": "¿De xuru que quies llimpiar dafechu tolos avisos?",
"notifications.column_settings.admin.sign_up": "New sign-ups:", "notifications.column_settings.admin.sign_up": "New sign-ups:",
@ -350,7 +350,7 @@
"notifications.mark_as_read": "Mark every notification as read", "notifications.mark_as_read": "Mark every notification as read",
"notifications.permission_denied": "Desktop notifications are unavailable due to previously denied browser permissions request", "notifications.permission_denied": "Desktop notifications are unavailable due to previously denied browser permissions request",
"notifications.permission_denied_alert": "Desktop notifications can't be enabled, as browser permission has been denied before", "notifications.permission_denied_alert": "Desktop notifications can't be enabled, as browser permission has been denied before",
"notifications.permission_required": "Desktop notifications are unavailable because the required permission has not been granted.", "notifications.permission_required": "Los avisos d'escritoriu nun tán disponibles porque nun se concedió'l permisu riquíu.",
"notifications_permission_banner.enable": "Activar los avisos d'escritoriu", "notifications_permission_banner.enable": "Activar los avisos d'escritoriu",
"notifications_permission_banner.how_to_control": "Pa recibir avisos cuando Mastodon nun tea abiertu, activa los avisos del escritoriu. Pues controlar al milímetru qué tipu d'interaiciones xeneren avisos namás que s'activen, pente'l botón {icon} d'arriba.", "notifications_permission_banner.how_to_control": "Pa recibir avisos cuando Mastodon nun tea abiertu, activa los avisos del escritoriu. Pues controlar al milímetru qué tipu d'interaiciones xeneren avisos namás que s'activen, pente'l botón {icon} d'arriba.",
"notifications_permission_banner.title": "Never miss a thing", "notifications_permission_banner.title": "Never miss a thing",
@ -369,7 +369,7 @@
"privacy.direct.short": "Direct", "privacy.direct.short": "Direct",
"privacy.private.long": "Post to followers only", "privacy.private.long": "Post to followers only",
"privacy.private.short": "Namái siguidores", "privacy.private.short": "Namái siguidores",
"privacy.public.long": "Post to public timelines", "privacy.public.long": "Visible for all, shown in public timelines",
"privacy.public.short": "Public", "privacy.public.short": "Public",
"privacy.unlisted.long": "Nun apaez nes llinies temporales públiques", "privacy.unlisted.long": "Nun apaez nes llinies temporales públiques",
"privacy.unlisted.short": "Nun llistar", "privacy.unlisted.short": "Nun llistar",
@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",
@ -425,7 +425,7 @@
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.", "report.thanks.title_actionable": "Thanks for reporting, we'll look into this.",
"report.unfollow": "Unfollow @{name}", "report.unfollow": "Unfollow @{name}",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.", "report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.",
"search.placeholder": "Guetar", "search.placeholder": "Buscar",
"search_popout.search_format": "Formatu de gueta avanzada", "search_popout.search_format": "Formatu de gueta avanzada",
"search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.",
"search_popout.tips.hashtag": "etiqueta", "search_popout.tips.hashtag": "etiqueta",
@ -435,7 +435,7 @@
"search_results.accounts": "Xente", "search_results.accounts": "Xente",
"search_results.all": "All", "search_results.all": "All",
"search_results.hashtags": "Etiquetes", "search_results.hashtags": "Etiquetes",
"search_results.nothing_found": "Could not find anything for these search terms", "search_results.nothing_found": "Nun se pudo atopar nada con esos términos de busca",
"search_results.statuses": "Barritos", "search_results.statuses": "Barritos",
"search_results.statuses_fts_disabled": "Esti sirvidor de Mastodon tien activada la gueta de barritos pol so conteníu.", "search_results.statuses_fts_disabled": "Esti sirvidor de Mastodon tien activada la gueta de barritos pol so conteníu.",
"search_results.total": "{count, number} {count, plural, one {resultáu} other {resultaos}}", "search_results.total": "{count, number} {count, plural, one {resultáu} other {resultaos}}",
@ -444,7 +444,7 @@
"status.block": "Bloquiar a @{name}", "status.block": "Bloquiar a @{name}",
"status.bookmark": "Amestar a Marcadores", "status.bookmark": "Amestar a Marcadores",
"status.cancel_reblog_private": "Dexar de compartir", "status.cancel_reblog_private": "Dexar de compartir",
"status.cannot_reblog": "Esti artículu nun pue compartise", "status.cannot_reblog": "Esti artículu nun se pue compartir",
"status.copy": "Copiar l'enllaz al estáu", "status.copy": "Copiar l'enllaz al estáu",
"status.delete": "Desaniciar", "status.delete": "Desaniciar",
"status.detailed_status": "Detailed conversation view", "status.detailed_status": "Detailed conversation view",
@ -494,10 +494,10 @@
"tabs_bar.notifications": "Avisos", "tabs_bar.notifications": "Avisos",
"tabs_bar.search": "Search", "tabs_bar.search": "Search",
"time_remaining.days": "{number, plural, one {Queda # día} other {Queden # díes}}", "time_remaining.days": "{number, plural, one {Queda # día} other {Queden # díes}}",
"time_remaining.hours": "{number, plural, one {# hora restante} other {# hores restantes}}", "time_remaining.hours": "{number, plural, one {Queda # hora} other {Queden # hores}}",
"time_remaining.minutes": "{number, plural, one {Queda # minutu} other {Queden # minutos}}", "time_remaining.minutes": "{number, plural, one {Queda # minutu} other {Queden # minutos}}",
"time_remaining.moments": "Moments remaining", "time_remaining.moments": "Moments remaining",
"time_remaining.seconds": "{number, plural, one {# segundu restante} other {# segundos restantes}}", "time_remaining.seconds": "{number, plural, one {Queda # segundu} other {Queden # segundos}}",
"timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.",
"timeline_hint.resources.followers": "Followers", "timeline_hint.resources.followers": "Followers",
"timeline_hint.resources.follows": "Follows", "timeline_hint.resources.follows": "Follows",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -18,7 +18,7 @@
"account.followers": "Seguidors", "account.followers": "Seguidors",
"account.followers.empty": "Encara ningú no segueix aquest usuari.", "account.followers.empty": "Encara ningú no segueix aquest usuari.",
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidors}}", "account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidors}}",
"account.following": "Following", "account.following": "Seguint",
"account.following_counter": "{count, plural, other {{counter} Seguint}}", "account.following_counter": "{count, plural, other {{counter} Seguint}}",
"account.follows.empty": "Aquest usuari encara no segueix a ningú.", "account.follows.empty": "Aquest usuari encara no segueix a ningú.",
"account.follows_you": "Et segueix", "account.follows_you": "Et segueix",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Tut} other {{counter} Tuts}}", "account.statuses_counter": "{count, plural, one {{counter} Tut} other {{counter} Tuts}}",
"account.unblock": "Desbloqueja @{name}", "account.unblock": "Desbloqueja @{name}",
"account.unblock_domain": "Mostra {domain}", "account.unblock_domain": "Mostra {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Desbloqueja",
"account.unendorse": "No recomanar en el perfil", "account.unendorse": "No recomanar en el perfil",
"account.unfollow": "Deixa de seguir", "account.unfollow": "Deixa de seguir",
"account.unmute": "Treure silenci de @{name}", "account.unmute": "Treure silenci de @{name}",
"account.unmute_notifications": "Activar notificacions de @{name}", "account.unmute_notifications": "Activar notificacions de @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Deixa de silenciar",
"account_note.placeholder": "Fes clic per afegir una nota", "account_note.placeholder": "Fes clic per afegir una nota",
"admin.dashboard.daily_retention": "Ràtio de retenció per dia després del registre", "admin.dashboard.daily_retention": "Ràtio de retenció per dia després del registre",
"admin.dashboard.monthly_retention": "Ràtio de retenció per mes després del registre", "admin.dashboard.monthly_retention": "Ràtio de retenció per mes després del registre",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -1,28 +1,28 @@
{ {
"account.account_note_header": "Note", "account.account_note_header": "Notat",
"account.add_or_remove_from_list": "Tilføj eller fjern fra lister", "account.add_or_remove_from_list": "Tilføj eller fjern fra lister",
"account.badges.bot": "Bot", "account.badges.bot": "Bot",
"account.badges.group": "Gruppe", "account.badges.group": "Gruppe",
"account.block": "Blokér @{name}", "account.block": "Blokér @{name}",
"account.block_domain": "Blokér domænet {domain}", "account.block_domain": "Blokér domænet {domain}",
"account.blocked": "Blokeret", "account.blocked": "Blokeret",
"account.browse_more_on_origin_server": "Se mere på den oprindelige profil", "account.browse_more_on_origin_server": "Tjek mere ud på den oprindelige profil",
"account.cancel_follow_request": "Annullér følgeanmodning", "account.cancel_follow_request": "Annullér følgeanmodning",
"account.direct": "Direkte besked til @{name}", "account.direct": "Direkte besked til @{name}",
"account.disable_notifications": "Advisér mig ikke længere, når @{name} poster", "account.disable_notifications": "Advisér mig ikke længere, når @{name} poster",
"account.domain_blocked": "Domæne blokeret", "account.domain_blocked": "Domæne blokeret",
"account.edit_profile": "Redigér profil", "account.edit_profile": "Redigér profil",
"account.enable_notifications": "Giv besked når @{name} udgiver nyt", "account.enable_notifications": "Advisér mig, når @{name} poster",
"account.endorse": "Fremhæv på profil", "account.endorse": "Fremhæv på profil",
"account.follow": "Følg", "account.follow": "Følg",
"account.followers": "Følgere", "account.followers": "Følgere",
"account.followers.empty": "Ingen følger brugeren endnu.", "account.followers.empty": "Ingen følger denne bruger endnu.",
"account.followers_counter": "{count, plural, one {{counter} Følger} other {{counter} Følgere}}", "account.followers_counter": "{count, plural, one {{counter} Følger} other {{counter} Følgere}}",
"account.following": "Following", "account.following": "Følger",
"account.following_counter": "{count, plural, one {{counter} Følges} other {{counter} Følges}}", "account.following_counter": "{count, plural, one {{counter} Følges} other {{counter} Følges}}",
"account.follows.empty": "Denne bruger følger ikke nogen endnu.", "account.follows.empty": "Denne bruger følger ikke nogen endnu.",
"account.follows_you": "Følger dig", "account.follows_you": "Følger dig",
"account.hide_reblogs": "Skjul fremhævelser fra @{name}", "account.hide_reblogs": "Skjul boosts fra @{name}",
"account.joined": "Tilmeldt {date}", "account.joined": "Tilmeldt {date}",
"account.link_verified_on": "Ejerskab af dette link blev tjekket {date}", "account.link_verified_on": "Ejerskab af dette link blev tjekket {date}",
"account.locked_info": "Denne kontos fortrolighedsstatus er sat til låst. Ejeren bedømmer manuelt, hvem der kan følge vedkommende.", "account.locked_info": "Denne kontos fortrolighedsstatus er sat til låst. Ejeren bedømmer manuelt, hvem der kan følge vedkommende.",
@ -39,42 +39,42 @@
"account.share": "Del @{name}s profil", "account.share": "Del @{name}s profil",
"account.show_reblogs": "Vis fremhævelser fra @{name}", "account.show_reblogs": "Vis fremhævelser fra @{name}",
"account.statuses_counter": "{count, plural, one {{counter} Indlæg} other {{counter} Indlæg}}", "account.statuses_counter": "{count, plural, one {{counter} Indlæg} other {{counter} Indlæg}}",
"account.unblock": "Fjern blokeringen af @{name}", "account.unblock": "Afblokér @{name}",
"account.unblock_domain": "Afblokér domænet {domain}", "account.unblock_domain": "Afblokér domænet {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Afblokér",
"account.unendorse": "Fjern visning på din profil", "account.unendorse": "Fjern visning på din profil",
"account.unfollow": "Følg ikke længere", "account.unfollow": "Følg ikke længere",
"account.unmute": "Fjern tavsgjort for @{name}", "account.unmute": "Fjern tavsgørelsen af @{name}",
"account.unmute_notifications": "Slå notifikationer om @{name} til igen", "account.unmute_notifications": "Fjern tavsgørelsen af notifikationer fra @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Fjern tavsgørelse",
"account_note.placeholder": "Klik for at tilføje notat", "account_note.placeholder": "Klik for at tilføje notat",
"admin.dashboard.daily_retention": "Brugerfastholdelsesrate efter dag efter tilmelding", "admin.dashboard.daily_retention": "Brugerfastholdelsesrate efter dag efter tilmelding",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "Brugerfastholdelsesrate efter måned efter tilmelding",
"admin.dashboard.retention.average": "Gennemsnitlig", "admin.dashboard.retention.average": "Gennemsnitlig",
"admin.dashboard.retention.cohort": "Tilmeldingsmåned", "admin.dashboard.retention.cohort": "Tilmeldingsmåned",
"admin.dashboard.retention.cohort_size": "Nye brugere", "admin.dashboard.retention.cohort_size": "Nye brugere",
"alert.rate_limited.message": "Forsøg igen efter {retry_time, time, medium}.", "alert.rate_limited.message": "Forsøg igen efter {retry_time, time, medium}.",
"alert.rate_limited.title": "Hastighedsbegrænset", "alert.rate_limited.title": "Hastighedsbegrænset",
"alert.unexpected.message": "Der skete en uventet fejl.", "alert.unexpected.message": "En uventet fejl opstod.",
"alert.unexpected.title": "Ups!", "alert.unexpected.title": "Ups!",
"announcement.announcement": "Bekendtgørelse", "announcement.announcement": "Bekendtgørelse",
"attachments_list.unprocessed": "(ubearbejdet)", "attachments_list.unprocessed": "(ubehandlet)",
"autosuggest_hashtag.per_week": "{count} pr. uge", "autosuggest_hashtag.per_week": "{count} pr. uge",
"boost_modal.combo": "Du kan trykke på {combo} for at springe over næste gang", "boost_modal.combo": "Du kan trykke på {combo} for at overspringe dette næste gang",
"bundle_column_error.body": "Noget gik galt under indlæsningen af denne komponent.", "bundle_column_error.body": "Noget gik galt under indlæsningen af denne komponent.",
"bundle_column_error.retry": "Prøv igen", "bundle_column_error.retry": "Forsøg igen",
"bundle_column_error.title": "Netværksfejl", "bundle_column_error.title": "Netværksfejl",
"bundle_modal_error.close": "Luk", "bundle_modal_error.close": "Luk",
"bundle_modal_error.message": "Noget gik galt under indlæsningen af denne komponent.", "bundle_modal_error.message": "Noget gik galt under indlæsningen af denne komponent.",
"bundle_modal_error.retry": "Prøv igen", "bundle_modal_error.retry": "Forsøg igen",
"column.blocks": "Blokerede brugere", "column.blocks": "Blokerede brugere",
"column.bookmarks": "Bogmærker", "column.bookmarks": "Bogmærker",
"column.community": "Lokal tidslinje", "column.community": "Lokal tidslinje",
"column.direct": "Direkte beskeder", "column.direct": "Direkte beskeder",
"column.directory": "Se profiler", "column.directory": "Tjek profiler",
"column.domain_blocks": "Blokerede domæner", "column.domain_blocks": "Blokerede domæner",
"column.favourites": "Favoritter", "column.favourites": "Favoritter",
"column.follow_requests": "Følg-anmodninger", "column.follow_requests": "Følgeanmodninger",
"column.home": "Hjem", "column.home": "Hjem",
"column.lists": "Lister", "column.lists": "Lister",
"column.mutes": "Tavsgjorte brugere", "column.mutes": "Tavsgjorte brugere",
@ -92,16 +92,16 @@
"community.column_settings.local_only": "Kun lokalt", "community.column_settings.local_only": "Kun lokalt",
"community.column_settings.media_only": "Kun medier", "community.column_settings.media_only": "Kun medier",
"community.column_settings.remote_only": "Kun udefra", "community.column_settings.remote_only": "Kun udefra",
"compose_form.direct_message_warning": "Indlægget bliver kun sendt til de nævnte brugere.", "compose_form.direct_message_warning": "Indlægget sendes kun til de nævnte brugere.",
"compose_form.direct_message_warning_learn_more": "Få mere at vide", "compose_form.direct_message_warning_learn_more": "Få mere at vide",
"compose_form.hashtag_warning": "Dette trut vises ikke under noget hashtag, da det ikke er listet. Kun offentlige trut kan søges via hashtags.", "compose_form.hashtag_warning": "Da indlægget ikke er offentligt, vises det ikke under noget hashtag, idet kun offentlige indlæg kan søges via hashtags.",
"compose_form.lock_disclaimer": "Din konto er ikke {locked}. Alle kan følge dig, så de også kan se de indlæg, der kun er til følgere.", "compose_form.lock_disclaimer": "Din konto er ikke {locked}. Enhver kan følge dig og se indlæg kun beregnet for følgere.",
"compose_form.lock_disclaimer.lock": "låst", "compose_form.lock_disclaimer.lock": "låst",
"compose_form.placeholder": "Hvad vil du gerne fortælle om?", "compose_form.placeholder": "Hvad tænker du på?",
"compose_form.poll.add_option": "Tilføj valgmulighed", "compose_form.poll.add_option": "Tilføj valgmulighed",
"compose_form.poll.duration": "Afstemningens varighed", "compose_form.poll.duration": "Afstemningens varighed",
"compose_form.poll.option_placeholder": "Valgmulighed {number}", "compose_form.poll.option_placeholder": "Valgmulighed {number}",
"compose_form.poll.remove_option": "Fjern valgmulighed", "compose_form.poll.remove_option": "Fjern denne valgmulighed",
"compose_form.poll.switch_to_multiple": "Ændr afstemning til flervalgstype", "compose_form.poll.switch_to_multiple": "Ændr afstemning til flervalgstype",
"compose_form.poll.switch_to_single": "Ændr afstemning til enkeltvalgstype", "compose_form.poll.switch_to_single": "Ændr afstemning til enkeltvalgstype",
"compose_form.publish": "Udgiv", "compose_form.publish": "Udgiv",
@ -110,41 +110,41 @@
"compose_form.sensitive.hide": "{count, plural, one {Markér medie som følsomt} other {Markér medier som følsomme}}", "compose_form.sensitive.hide": "{count, plural, one {Markér medie som følsomt} other {Markér medier som følsomme}}",
"compose_form.sensitive.marked": "{count, plural, one {Medie er markeret som sensitivt} other {Medier er markerede som sensitive}}", "compose_form.sensitive.marked": "{count, plural, one {Medie er markeret som sensitivt} other {Medier er markerede som sensitive}}",
"compose_form.sensitive.unmarked": "{count, plural, one {Medie er ikke market som sensitivt} other {Medier er ikke markerede som sensitive}}", "compose_form.sensitive.unmarked": "{count, plural, one {Medie er ikke market som sensitivt} other {Medier er ikke markerede som sensitive}}",
"compose_form.spoiler.marked": "Fjern advarsel", "compose_form.spoiler.marked": "Fjern indholdsadvarsel",
"compose_form.spoiler.unmarked": "Skjul bag advarsel", "compose_form.spoiler.unmarked": "Tilføj indholdsadvarsel",
"compose_form.spoiler_placeholder": "Skriv din advarsel hér", "compose_form.spoiler_placeholder": "Skriv din advarsel hér",
"confirmation_modal.cancel": "Afbryd", "confirmation_modal.cancel": "Afbryd",
"confirmations.block.block_and_report": "Blokér og Anmeld", "confirmations.block.block_and_report": "Blokér og Anmeld",
"confirmations.block.confirm": "Blokér", "confirmations.block.confirm": "Blokér",
"confirmations.block.message": "Er du sikker på, du vil blokere {name}?", "confirmations.block.message": "Sikker på, at du vil blokere {name}?",
"confirmations.delete.confirm": "Slet", "confirmations.delete.confirm": "Slet",
"confirmations.delete.message": "Er du sikker på, at du vil slette indlægget?", "confirmations.delete.message": "Sikker på, at du vil slette dette indlæg?",
"confirmations.delete_list.confirm": "Slet", "confirmations.delete_list.confirm": "Slet",
"confirmations.delete_list.message": "Sikker på, at du vil slette denne liste permanent?", "confirmations.delete_list.message": "Sikker på, at du vil slette denne liste permanent?",
"confirmations.discard_edit_media.confirm": "Kassér", "confirmations.discard_edit_media.confirm": "Kassér",
"confirmations.discard_edit_media.message": "Der er ugemte ændringer i mediebeskrivelsen eller forhåndsvisningen, kassér dem alligevel?", "confirmations.discard_edit_media.message": "Der er ugemte ændringer i mediebeskrivelsen eller forhåndsvisningen, kassér dem alligevel?",
"confirmations.domain_block.confirm": "Blokér hele domænet", "confirmations.domain_block.confirm": "Blokér hele domænet",
"confirmations.domain_block.message": "Er du helt sikker på, at du vil blokere hele {domain}-domænet? Oftest vil det være at foretrække istedet målrettet at blokere eller skjule nogle få brugere. Hvis du blokerer domænet, vil du ikke se indhold fra domænet på offentlige tidslinjer eller i dine notifikationer. Dine følgere fra domænet fjernes.", "confirmations.domain_block.message": "Fuldstændig sikker på, at du vil blokere hele {domain}-domænet? Oftest vil nogle få målrettede blokeringer eller tavsgørelser være tilstrækkelige og at foretrække. Du vil ikke se indhold fra dette domæne i nogle offentlige tidslinjer eller i dine notifikationer, og dine følgere herfra fjernes ligeledes.",
"confirmations.logout.confirm": "Log ud", "confirmations.logout.confirm": "Log ud",
"confirmations.logout.message": "Log ud, sikker?", "confirmations.logout.message": "Log ud, sikker?",
"confirmations.mute.confirm": "Skjul", "confirmations.mute.confirm": "Tavsgør",
"confirmations.mute.explanation": "Dette skjuler indlæg fra (og om) dem, men de kan stadig se dine indlæg og følge dig.", "confirmations.mute.explanation": "Dette skjuler indlæg fra (og om) dem, men lader dem fortsat se dine indlæg og følge dig.",
"confirmations.mute.message": "Er du sikker på, du vil skjule {name}?", "confirmations.mute.message": "Er du sikker på, du vil skjule {name}?",
"confirmations.redraft.confirm": "Slet og omskriv", "confirmations.redraft.confirm": "Slet og omformulér",
"confirmations.redraft.message": "Er du sikker på, at du vil slette og omskrive indlægget? Favoritter og fremhævelser går tabt og svar til det oprindelige indlæg afassocieres.", "confirmations.redraft.message": "Sikker på, at du vil slette dette indlæg for at omskrive det? Favoritter og boosts går tabt, og svar til det oprindelige indlæg afassocieres.",
"confirmations.reply.confirm": "Svar", "confirmations.reply.confirm": "Svar",
"confirmations.reply.message": "At svare nu vil overskrive den besked, du er ved at skrive. Fortsæt alligevel?", "confirmations.reply.message": "At svare nu vil overskrive den besked, du er ved at skrive. Fortsæt alligevel?",
"confirmations.unfollow.confirm": "Følg ikke længere", "confirmations.unfollow.confirm": "Følg ikke længere",
"confirmations.unfollow.message": "Er du sikker på, at du ikke vil følge {name}?", "confirmations.unfollow.message": "Sikker på, at du ikke længere vil følge {name}?",
"conversation.delete": "Slet samtale", "conversation.delete": "Slet samtale",
"conversation.mark_as_read": "Markér som læst", "conversation.mark_as_read": "Markér som læst",
"conversation.open": "Vis samtale", "conversation.open": "Vis konversation",
"conversation.with": "Med {names}", "conversation.with": "Med {names}",
"directory.federated": "Fra kendt Fællesvers", "directory.federated": "Fra kendt fedivers",
"directory.local": "Kun fra {domain}", "directory.local": "Kun fra {domain}",
"directory.new_arrivals": "Nye ankomster", "directory.new_arrivals": "Nye ankomster",
"directory.recently_active": "Aktive for nyligt", "directory.recently_active": "Nyligt aktive",
"embed.instructions": "Indlejr indlægget på din side ved at kopiere koden nedenfor.", "embed.instructions": "Indlejr dette indlæg på dit websted ved at kopiere nedenstående kode.",
"embed.preview": "Sådan kommer det til at se ud:", "embed.preview": "Sådan kommer det til at se ud:",
"emoji_button.activity": "Aktivitet", "emoji_button.activity": "Aktivitet",
"emoji_button.custom": "Tilpasset", "emoji_button.custom": "Tilpasset",
@ -152,38 +152,38 @@
"emoji_button.food": "Mad og drikke", "emoji_button.food": "Mad og drikke",
"emoji_button.label": "Indsæt emoji", "emoji_button.label": "Indsæt emoji",
"emoji_button.nature": "Natur", "emoji_button.nature": "Natur",
"emoji_button.not_found": "Kunne ikke finde tilsvarende emojis", "emoji_button.not_found": "Ingen matchende emojis fundet",
"emoji_button.objects": "Objekter", "emoji_button.objects": "Objekter",
"emoji_button.people": "Personer", "emoji_button.people": "Personer",
"emoji_button.recent": "De sædvanlige", "emoji_button.recent": "Oftest brugt",
"emoji_button.search": "Søg...", "emoji_button.search": "Søg...",
"emoji_button.search_results": "Søgeresultater", "emoji_button.search_results": "Søgeresultater",
"emoji_button.symbols": "Symboler", "emoji_button.symbols": "Symboler",
"emoji_button.travel": "Rejser og steder", "emoji_button.travel": "Rejser og steder",
"empty_column.account_suspended": "Konto suspenderet", "empty_column.account_suspended": "Konto suspenderet",
"empty_column.account_timeline": "Ingen trut her!", "empty_column.account_timeline": "Ingen indlæg hér!",
"empty_column.account_unavailable": "Profil utilgængelig", "empty_column.account_unavailable": "Profil utilgængelig",
"empty_column.blocks": "Du har ikke blokeret nogen endnu.", "empty_column.blocks": "Ingen brugere blokeret endnu.",
"empty_column.bookmarked_statuses": "Du har ingen indlæg med bogmærke endnu. Når du sætter et bogmærke, vil det dukke op hér.", "empty_column.bookmarked_statuses": "Du har ingen bogmærkede indlæg endnu. Når du bogmærker ét, vil det dukke op hér.",
"empty_column.community": "Den lokale tidslinje er tom. Skriv noget offentligt for at sætte tingene i gang!", "empty_column.community": "Den lokale tidslinje er tom. Skriv noget offentligt for at sætte tingene i gang!",
"empty_column.direct": "Du har ingen direkte beskeder endnu. Hvis du sender eller modtager en, bliver den vist hér.", "empty_column.direct": "Du har endnu ingen direkte beskeder. Når du sender eller modtager én, vil den dukke op hér.",
"empty_column.domain_blocks": "Der er ingen skjulte domæner endnu.", "empty_column.domain_blocks": "Ingen blokerede domæner endnu.",
"empty_column.explore_statuses": "Intet nye tendensen pt. Tjek igen senere!", "empty_column.explore_statuses": "Ingen nye tendensen pt. Tjek igen senere!",
"empty_column.favourited_statuses": "Du har ikke markeret nogle indlæg som favorit. Når du markerer ét, bliver det vist hér.", "empty_column.favourited_statuses": "Du har endnu ingen favoritindlæg. Når du favoriserer ét, vil det dukke op hér.",
"empty_column.favourites": "Ingen har markeret indlægget som favorit endnu. Hvis der er nogen der gør, bliver det vist hér.", "empty_column.favourites": "Ingen har endnu favoriseret dette indlæg. Når nogen gør dét, vil det dukke op hér.",
"empty_column.follow_recommendations": "Det ser ud til, at der ikke kunne blive lavet forslag til dig. Du kan prøve med Søg for at finde personer, du kender, eller udforske hashtags.", "empty_column.follow_recommendations": "Ser ud til, at der ikke kunne genereres forslag til dig. Du kan prøve med Søg for at lede efter personer, du måske kender, eller udforske hashtags.",
"empty_column.follow_requests": "Du har ingen følgeanmodninger endnu. Hvis du modtager en, bliver den vist her.", "empty_column.follow_requests": "Du har endnu ingen følgeanmodninger. Når du modtager én, vil den dukke op hér.",
"empty_column.hashtag": "Der er ingen indlæg med hashtagget endnu.", "empty_column.hashtag": "Der er intet med dette hashtag endnu.",
"empty_column.home": "Din hjemmetidslinje er tom! Besøg {public} eller brug søgningen for at komme igang og møde andre brugere.", "empty_column.home": "Din hjemmetidslinje er tom! Følg nogle personer, for at udfylde den. {suggestions}",
"empty_column.home.suggestions": "Se nogle foreslag", "empty_column.home.suggestions": "Se nogle forslag",
"empty_column.list": "Der er ikke noget på denne liste endnu. Når medlemmer af listen udgiver nye indlæg vil de fremgå hér.", "empty_column.list": "Der er ikke noget på denne liste endnu. Når medlemmer af listen udgiver nye indlæg vil de fremgå hér.",
"empty_column.lists": "Du har endnu ingen lister. Når du opretter én, vil den fremgå hér.", "empty_column.lists": "Du har endnu ingen lister. Når du opretter én, vil den fremgå hér.",
"empty_column.mutes": "Du har endnu ikke tystnet nogle brugere.", "empty_column.mutes": "Du har endnu ikke tystnet nogle brugere.",
"empty_column.notifications": "Du har ingen notifikationer. Hvis andre interagerer med dig, bliver det vist her.", "empty_column.notifications": "Du har endnu ingen notifikationer. Når andre interagerer med dig, vil det fremgå hér.",
"empty_column.public": "Der er intet hér! Skriv noget offentligt eller følg manuelt brugere fra andre servere for at se indhold", "empty_column.public": "Der er intet hér! Skriv noget offentligt eller følg manuelt brugere fra andre servere for at se indhold",
"error.unexpected_crash.explanation": "Grundet en fejl i vores kode, eller en browser-kompatibilitetsfejl, kunne siden ikke vises korrekt.", "error.unexpected_crash.explanation": "Grundet en fejl i vores kode, eller en browser-kompatibilitetsfejl, kunne siden ikke vises korrekt.",
"error.unexpected_crash.explanation_addons": "Denne side kunne ikke vises korrekt. Fejlen skyldes sandsynligvis en browsertilføjelse eller automatiske oversættelsesværktøjer.", "error.unexpected_crash.explanation_addons": "Denne side kunne ikke vises korrekt. Fejlen skyldes sandsynligvis en browsertilføjelse eller automatiske oversættelsesværktøjer.",
"error.unexpected_crash.next_steps": "Prøv at genindlæs siden. Hvis dette ikke hjælper, så forsøg venligst, at tilgå Mastodon via en anden browser eller app.", "error.unexpected_crash.next_steps": "Prøv at opfriske siden. Hjælper dette ikke, kan Mastodon muligvis stadig bruges via en anden browser eller app.",
"error.unexpected_crash.next_steps_addons": "Prøv at deaktivere dem og genindlæse siden. Hvis det ikke hjælper, kan Mastodon muligvis stadig bruges via en anden browser eller app.", "error.unexpected_crash.next_steps_addons": "Prøv at deaktivere dem og genindlæse siden. Hvis det ikke hjælper, kan Mastodon muligvis stadig bruges via en anden browser eller app.",
"errors.unexpected_crash.copy_stacktrace": "Kopiér stacktrace til udklipsholderen", "errors.unexpected_crash.copy_stacktrace": "Kopiér stacktrace til udklipsholderen",
"errors.unexpected_crash.report_issue": "Anmeld problem", "errors.unexpected_crash.report_issue": "Anmeld problem",
@ -195,13 +195,13 @@
"explore.trending_tags": "Hashtags", "explore.trending_tags": "Hashtags",
"follow_recommendations.done": "Udført", "follow_recommendations.done": "Udført",
"follow_recommendations.heading": "Følg personer du gerne vil se indlæg fra! Her er nogle forslag.", "follow_recommendations.heading": "Følg personer du gerne vil se indlæg fra! Her er nogle forslag.",
"follow_recommendations.lead": "Indlæg, fra personer du følger, vises i kronologisk rækkefølge i hjemmetidslinjen. Bare prøv dig frem med hvem du følger her. Du kan altid vælge om igen!", "follow_recommendations.lead": "Indlæg, fra personer du følger, vil fremgå kronologisk ordnet i dit hjemmefeed. Vær ikke bange for at begå fejl, da du altid og meget nemt kan ændre dit valg!",
"follow_request.authorize": "Godkend", "follow_request.authorize": "Godkend",
"follow_request.reject": "Afvis", "follow_request.reject": "Afvis",
"follow_requests.unlocked_explanation": "Selvom din konto ikke er låst, antog {domain}-personalet, at du måske vil gennemgå dine anmodninger manuelt.", "follow_requests.unlocked_explanation": "Selvom din konto ikke er låst, antog {domain}-personalet, at du måske vil gennemgå dine anmodninger manuelt.",
"generic.saved": "Gemt", "generic.saved": "Gemt",
"getting_started.developers": "Udviklere", "getting_started.developers": "Udviklere",
"getting_started.directory": "Profilliste", "getting_started.directory": "Profilmappe",
"getting_started.documentation": "Dokumentation", "getting_started.documentation": "Dokumentation",
"getting_started.heading": "Startmenu", "getting_started.heading": "Startmenu",
"getting_started.invite": "Invitér folk", "getting_started.invite": "Invitér folk",
@ -213,52 +213,52 @@
"hashtag.column_header.tag_mode.none": "uden {additional}", "hashtag.column_header.tag_mode.none": "uden {additional}",
"hashtag.column_settings.select.no_options_message": "Ingen forslag fundet", "hashtag.column_settings.select.no_options_message": "Ingen forslag fundet",
"hashtag.column_settings.select.placeholder": "Angiv hashtags…", "hashtag.column_settings.select.placeholder": "Angiv hashtags…",
"hashtag.column_settings.tag_mode.all": "Allesammen", "hashtag.column_settings.tag_mode.all": "Alle disse",
"hashtag.column_settings.tag_mode.any": "Nogle af disse", "hashtag.column_settings.tag_mode.any": "Nogle af disse",
"hashtag.column_settings.tag_mode.none": "Ingen af disse", "hashtag.column_settings.tag_mode.none": "Ingen af disse",
"hashtag.column_settings.tag_toggle": "Inkludér ekstra tags for denne kolonne", "hashtag.column_settings.tag_toggle": "Inkludér ekstra tags for denne kolonne",
"home.column_settings.basic": "Grundlæggende", "home.column_settings.basic": "Grundlæggende",
"home.column_settings.show_reblogs": "Vis fremhævelser", "home.column_settings.show_reblogs": "Vis boosts",
"home.column_settings.show_replies": "Vis svar", "home.column_settings.show_replies": "Vis svar",
"home.hide_announcements": "Skjul bekendtgørelser", "home.hide_announcements": "Skjul bekendtgørelser",
"home.show_announcements": "Vis bekendtgørelser", "home.show_announcements": "Vis bekendtgørelser",
"intervals.full.days": "{number, plural, one {# dag} other {# dage}}", "intervals.full.days": "{number, plural, one {# dag} other {# dage}}",
"intervals.full.hours": "{number, plural, one {# time} other {# timer}}", "intervals.full.hours": "{number, plural, one {# time} other {# timer}}",
"intervals.full.minutes": "{number, plural, one {# minut} other {# minutter}}", "intervals.full.minutes": "{number, plural, one {# minut} other {# minutter}}",
"keyboard_shortcuts.back": "for at navigere tilbage", "keyboard_shortcuts.back": " tilbage",
"keyboard_shortcuts.blocked": "Vis listen over blokerede brugere", "keyboard_shortcuts.blocked": "Åbn Blokerede brugere-listen",
"keyboard_shortcuts.boost": "Fremhæv indlæg", "keyboard_shortcuts.boost": "Boost indlæg",
"keyboard_shortcuts.column": "for at fokusere et trut i en af kolonnerne", "keyboard_shortcuts.column": "Fokusér kolonne",
"keyboard_shortcuts.compose": "for at fokusere på skriveområdet", "keyboard_shortcuts.compose": "Fokusér skriveområdet",
"keyboard_shortcuts.description": "Beskrivelse", "keyboard_shortcuts.description": "Beskrivelse",
"keyboard_shortcuts.direct": "Åben kolonnen med direkte beskeder", "keyboard_shortcuts.direct": "Åbn Direkte beskeder-kolonnen",
"keyboard_shortcuts.down": "for at rykke nedad på listen", "keyboard_shortcuts.down": "Flyt nedad på listen",
"keyboard_shortcuts.enter": "Åben indlæg", "keyboard_shortcuts.enter": "Åbn indlæg",
"keyboard_shortcuts.favourite": "Markér som favorit", "keyboard_shortcuts.favourite": "Favorisér indlæg",
"keyboard_shortcuts.favourites": "for at åbne favoritlisten", "keyboard_shortcuts.favourites": "Åbn favoritlisten",
"keyboard_shortcuts.federated": "Åben den fælles tidslinje", "keyboard_shortcuts.federated": "Åbn fælles tidslinje",
"keyboard_shortcuts.heading": "Tastaturgenveje", "keyboard_shortcuts.heading": "Tastaturgenveje",
"keyboard_shortcuts.home": "for at åbne hjemmetidslinjen", "keyboard_shortcuts.home": "Åbn hjemmetidslinje",
"keyboard_shortcuts.hotkey": "Hurtigtast", "keyboard_shortcuts.hotkey": "Hurtigtast",
"keyboard_shortcuts.legend": "for at vise dette symbol", "keyboard_shortcuts.legend": "Vis dette symbol",
"keyboard_shortcuts.local": "for at åbne den lokale tidslinje", "keyboard_shortcuts.local": "Åbn lokal tidslinje",
"keyboard_shortcuts.mention": "for at nævne forfatteren", "keyboard_shortcuts.mention": "Nævn forfatter",
"keyboard_shortcuts.muted": "for at åbne listen over tavsgjorte brugere", "keyboard_shortcuts.muted": "Åbn listen over tavsgjorte brugere",
"keyboard_shortcuts.my_profile": "for at åbne din profil", "keyboard_shortcuts.my_profile": "Åbn din profil",
"keyboard_shortcuts.notifications": "for at åbne notifikationskolonnen", "keyboard_shortcuts.notifications": "for at åbne notifikationskolonnen",
"keyboard_shortcuts.open_media": "for at åbne medier", "keyboard_shortcuts.open_media": "Åbn medier",
"keyboard_shortcuts.pinned": "Åben listen over fastgjorte indlæg", "keyboard_shortcuts.pinned": "Åbn liste over fastgjorte indlæg",
"keyboard_shortcuts.profile": "for at åbne forfatterens profil", "keyboard_shortcuts.profile": "Åbn forfatters profil",
"keyboard_shortcuts.reply": "for at besvare", "keyboard_shortcuts.reply": "Besvar indlægget",
"keyboard_shortcuts.requests": "Åben listen over følgeanmodninger", "keyboard_shortcuts.requests": "Åbn liste over følgeanmodninger",
"keyboard_shortcuts.search": "for at fokusere søgningen", "keyboard_shortcuts.search": "Fokusér søgebjælke",
"keyboard_shortcuts.spoilers": "for at vise/skjule CW-felt", "keyboard_shortcuts.spoilers": "Vis/skjul CW-felt",
"keyboard_shortcuts.start": "for at åbne \"komme i gang\"-kolonnen", "keyboard_shortcuts.start": "Åbn \"komme i gang\"-kolonne",
"keyboard_shortcuts.toggle_hidden": "for at vise/skjule tekst bag CW", "keyboard_shortcuts.toggle_hidden": "Vis/skjul tekst bag CW",
"keyboard_shortcuts.toggle_sensitivity": "for at vise/skjule medier", "keyboard_shortcuts.toggle_sensitivity": "Vis/skjul medier",
"keyboard_shortcuts.toot": "for at påbegynde et helt nyt indlæg", "keyboard_shortcuts.toot": "Påbegynd nyt indlæg",
"keyboard_shortcuts.unfocus": "for at fjerne fokus fra skriveområde/søgning", "keyboard_shortcuts.unfocus": "Fjern fokus fra teksskrivningsområde/søgning",
"keyboard_shortcuts.up": "for at bevæge sig opad på listen", "keyboard_shortcuts.up": "Flyt opad på listen",
"lightbox.close": "Luk", "lightbox.close": "Luk",
"lightbox.compress": "Komprimér billedvisningsfelt", "lightbox.compress": "Komprimér billedvisningsfelt",
"lightbox.expand": "Udvid billedevisningsfelt", "lightbox.expand": "Udvid billedevisningsfelt",
@ -271,21 +271,21 @@
"lists.edit.submit": "Skift titel", "lists.edit.submit": "Skift titel",
"lists.new.create": "Tilføj liste", "lists.new.create": "Tilføj liste",
"lists.new.title_placeholder": "Ny listetitel", "lists.new.title_placeholder": "Ny listetitel",
"lists.replies_policy.followed": "Enhver fulgt bruger", "lists.replies_policy.followed": "Enhver bruger, der følges",
"lists.replies_policy.list": "Medlemmer af listen", "lists.replies_policy.list": "Listemedlemmer",
"lists.replies_policy.none": "Ingen", "lists.replies_policy.none": "Ingen",
"lists.replies_policy.title": "Vis svar til:", "lists.replies_policy.title": "Vis svar til:",
"lists.search": "Søg blandt personer, du følger", "lists.search": "Søg blandt personer, som følges",
"lists.subheading": "Dine lister", "lists.subheading": "Dine lister",
"load_pending": "{count, plural, one {# nyt punkt} other {# nye punkter}}", "load_pending": "{count, plural, one {# nyt emne} other {# nye emner}}",
"loading_indicator.label": "Indlæser...", "loading_indicator.label": "Indlæser...",
"media_gallery.toggle_visible": "Skjul {number, plural, one {billede} other {billeder}}", "media_gallery.toggle_visible": "{number, plural, one {Skjul billede} other {Skjul billeder}}",
"missing_indicator.label": "Ikke fundet", "missing_indicator.label": "Ikke fundet",
"missing_indicator.sublabel": "Denne ressource kunne ikke findes", "missing_indicator.sublabel": "Denne ressource kunne ikke findes",
"mute_modal.duration": "Varighed", "mute_modal.duration": "Varighed",
"mute_modal.hide_notifications": "Skjul notifikationer fra brugeren?", "mute_modal.hide_notifications": "Skjul notifikationer fra denne bruger?",
"mute_modal.indefinite": "Tidsubegrænset", "mute_modal.indefinite": "Tidsubegrænset",
"navigation_bar.apps": "Apps til mobilen", "navigation_bar.apps": "Mobil-apps",
"navigation_bar.blocks": "Blokerede brugere", "navigation_bar.blocks": "Blokerede brugere",
"navigation_bar.bookmarks": "Bogmærker", "navigation_bar.bookmarks": "Bogmærker",
"navigation_bar.community_timeline": "Lokal tidslinje", "navigation_bar.community_timeline": "Lokal tidslinje",
@ -295,33 +295,33 @@
"navigation_bar.domain_blocks": "Blokerede domæner", "navigation_bar.domain_blocks": "Blokerede domæner",
"navigation_bar.edit_profile": "Redigér profil", "navigation_bar.edit_profile": "Redigér profil",
"navigation_bar.favourites": "Favoritter", "navigation_bar.favourites": "Favoritter",
"navigation_bar.filters": "Tystnede ord", "navigation_bar.filters": "Tavsgjorte ord",
"navigation_bar.follow_requests": "Følgeanmodninger", "navigation_bar.follow_requests": "Følgeanmodninger",
"navigation_bar.follows_and_followers": "Følges og følgere", "navigation_bar.follows_and_followers": "Følges og følgere",
"navigation_bar.info": "Om denne server", "navigation_bar.info": "Om denne server",
"navigation_bar.keyboard_shortcuts": "Hurtigtaster", "navigation_bar.keyboard_shortcuts": "Genvejstaster",
"navigation_bar.lists": "Lister", "navigation_bar.lists": "Lister",
"navigation_bar.logout": "Log af", "navigation_bar.logout": "Log af",
"navigation_bar.mutes": "Tystnede brugere", "navigation_bar.mutes": "Tavsgjorte brugere",
"navigation_bar.personal": "Personlig", "navigation_bar.personal": "Personlig",
"navigation_bar.pins": "Fastgjorte indlæg", "navigation_bar.pins": "Fastgjorte indlæg",
"navigation_bar.preferences": "Præferencer", "navigation_bar.preferences": "Præferencer",
"navigation_bar.public_timeline": "Fælles tidslinje", "navigation_bar.public_timeline": "Fælles tidslinje",
"navigation_bar.security": "Sikkerhed", "navigation_bar.security": "Sikkerhed",
"notification.admin.sign_up": "{name} tilmeldte sig", "notification.admin.sign_up": "{name} tilmeldte sig",
"notification.favourite": "{name} favoriserede dit trut", "notification.favourite": "{name} favoriserede dit indlæg",
"notification.follow": "{name} fulgte dig", "notification.follow": "{name} begyndte at følge dig",
"notification.follow_request": "{name} har anmodet om at følge dig", "notification.follow_request": "{name} har anmodet om at følge dig",
"notification.mention": "{name} nævnte dig", "notification.mention": "{name} nævnte dig",
"notification.own_poll": "Din afstemning er afsluttet", "notification.own_poll": "Din afstemning er afsluttet",
"notification.poll": "En afstemning, du deltog i, er færdig", "notification.poll": "En afstemning, hvori du stemte, er slut",
"notification.reblog": "{name} fremhævede dit indlæg", "notification.reblog": "{name} boostede dit indlæg",
"notification.status": "{name} har netop udgivet", "notification.status": "{name} har netop postet",
"notification.update": "{name} redigerede et indlæg", "notification.update": "{name} redigerede et indlæg",
"notifications.clear": "Ryd notifikationer", "notifications.clear": "Ryd notifikationer",
"notifications.clear_confirmation": "Er du sikker på, du vil rydde alle dine notifikationer permanent?", "notifications.clear_confirmation": "Sikker på, at du vil rydde alle dine notifikationer permanent?",
"notifications.column_settings.admin.sign_up": "Nye tilmeldinger:", "notifications.column_settings.admin.sign_up": "Nye tilmeldinger:",
"notifications.column_settings.alert": "Skrivebordsnotifikationer", "notifications.column_settings.alert": "Computernotifikationer",
"notifications.column_settings.favourite": "Favoritter:", "notifications.column_settings.favourite": "Favoritter:",
"notifications.column_settings.filter_bar.advanced": "Vis alle kategorier", "notifications.column_settings.filter_bar.advanced": "Vis alle kategorier",
"notifications.column_settings.filter_bar.category": "Hurtigfilterbjælke", "notifications.column_settings.filter_bar.category": "Hurtigfilterbjælke",
@ -330,8 +330,8 @@
"notifications.column_settings.follow_request": "Nye følgeanmodninger:", "notifications.column_settings.follow_request": "Nye følgeanmodninger:",
"notifications.column_settings.mention": "Omtaler:", "notifications.column_settings.mention": "Omtaler:",
"notifications.column_settings.poll": "Afstemningsresultater:", "notifications.column_settings.poll": "Afstemningsresultater:",
"notifications.column_settings.push": "Pushnotifikationer", "notifications.column_settings.push": "Push-notifikationer",
"notifications.column_settings.reblog": "Fremhævelser:", "notifications.column_settings.reblog": "Boosts:",
"notifications.column_settings.show": "Vis i kolonne", "notifications.column_settings.show": "Vis i kolonne",
"notifications.column_settings.sound": "Afspil lyd", "notifications.column_settings.sound": "Afspil lyd",
"notifications.column_settings.status": "Nye indlæg:", "notifications.column_settings.status": "Nye indlæg:",
@ -339,7 +339,7 @@
"notifications.column_settings.unread_notifications.highlight": "Fremhæv ulæste notifikationer", "notifications.column_settings.unread_notifications.highlight": "Fremhæv ulæste notifikationer",
"notifications.column_settings.update": "Redigeringer:", "notifications.column_settings.update": "Redigeringer:",
"notifications.filter.all": "Alle", "notifications.filter.all": "Alle",
"notifications.filter.boosts": "Fremhævelser", "notifications.filter.boosts": "Boosts",
"notifications.filter.favourites": "Favoritter", "notifications.filter.favourites": "Favoritter",
"notifications.filter.follows": "Følger", "notifications.filter.follows": "Følger",
"notifications.filter.mentions": "Omtaler", "notifications.filter.mentions": "Omtaler",
@ -348,13 +348,13 @@
"notifications.grant_permission": "Tildel tilladelse.", "notifications.grant_permission": "Tildel tilladelse.",
"notifications.group": "{count} notifikationer", "notifications.group": "{count} notifikationer",
"notifications.mark_as_read": "Markér alle notifikationer som læst", "notifications.mark_as_read": "Markér alle notifikationer som læst",
"notifications.permission_denied": "Skrivebordsnotifikationer er utilgængelige grundet tidligere afvist browsertilladelsesanmodning", "notifications.permission_denied": "Computernotifikationer er utilgængelige grundet tidligere afvist browsertilladelsesanmodning",
"notifications.permission_denied_alert": "Skrivebordsnotifikationer kan ikke aktiveres, da browsertilladelse er blevet nægtet før", "notifications.permission_denied_alert": "Computernotifikationer kan ikke aktiveres, da browsertilladelse tidligere blev nægtet",
"notifications.permission_required": "Skrivebordsnotifikationer er utilgængelige, da den krævede tilladelse ikke er tildelt.", "notifications.permission_required": "Computernotifikationer er utilgængelige, da den krævede tilladelse ikke er tildelt.",
"notifications_permission_banner.enable": "Aktivér skrivebordsnotifikationer", "notifications_permission_banner.enable": "Aktivér computernotifikationer",
"notifications_permission_banner.how_to_control": "Aktivér skrivebordsnotifikationer for at modtage notifikationer, når Mastodon ikke er åben. Du kan styre, præcist hvilke typer af interaktioner, som genererer skrivebordsnotifikationer via knappen {icon} ovenfor, når de er aktiveret.", "notifications_permission_banner.how_to_control": "Aktivér computernotifikationer for at få besked, når Mastodon ikke er åben. Når de er aktiveret, kan man via knappen {icon} ovenfor præcist styre, hvilke typer af interaktioner, som genererer computernotifikationer.",
"notifications_permission_banner.title": "Gå aldrig glip af noget", "notifications_permission_banner.title": "Gå aldrig glip af noget",
"picture_in_picture.restore": "Sæt det tilbage", "picture_in_picture.restore": "Indsæt det igen",
"poll.closed": "Lukket", "poll.closed": "Lukket",
"poll.refresh": "Opdatér", "poll.refresh": "Opdatér",
"poll.total_people": "{count, plural, one {# person} other {# personer}}", "poll.total_people": "{count, plural, one {# person} other {# personer}}",
@ -364,14 +364,14 @@
"poll.votes": "{votes, plural, one {# stemme} other {# stemmer}}", "poll.votes": "{votes, plural, one {# stemme} other {# stemmer}}",
"poll_button.add_poll": "Tilføj en afstemning", "poll_button.add_poll": "Tilføj en afstemning",
"poll_button.remove_poll": "Fjern afstemning", "poll_button.remove_poll": "Fjern afstemning",
"privacy.change": "Justér fortrolighed", "privacy.change": "Justér indlægsfortrolighed",
"privacy.direct.long": "Kun synlig for nævnte brugere", "privacy.direct.long": "Kun synlig for nævnte brugere",
"privacy.direct.short": "Direkte", "privacy.direct.short": "Direkte",
"privacy.private.long": "Kun synlig for følgere", "privacy.private.long": "Kun synlig for følgere",
"privacy.private.short": "Kun for følgere", "privacy.private.short": "Kun for følgere",
"privacy.public.long": "Synlig for alle og vises på offentlige tidslinjer", "privacy.public.long": "Synlig for alle, fremgår på offentlige tidslinjer",
"privacy.public.short": "Offentlig", "privacy.public.short": "Offentlig",
"privacy.unlisted.long": "Synlig for alle, men vises ikke på offentlige tidslinjer", "privacy.unlisted.long": "Synlig for alle, fremgår ikke på offentlige tidslinjer",
"privacy.unlisted.short": "Diskret", "privacy.unlisted.short": "Diskret",
"refresh": "Genindlæs", "refresh": "Genindlæs",
"regeneration_indicator.label": "Indlæser…", "regeneration_indicator.label": "Indlæser…",
@ -398,11 +398,11 @@
"report.category.title_account": "profil", "report.category.title_account": "profil",
"report.category.title_status": "indlæg", "report.category.title_status": "indlæg",
"report.close": "Udført", "report.close": "Udført",
"report.comment.title": "Findes der noget andet, som vi burde vide?", "report.comment.title": "Er der andet, som vi bør vide?",
"report.forward": "Videresend til {target}", "report.forward": "Videresend til {target}",
"report.forward_hint": "Kontoen er fra en anden server. Send en anonymiseret kopi af anmeldelsen dertil også?", "report.forward_hint": "Kontoen er fra en anden server. Send også en anonymiseret anmeldelseskopi dertil?",
"report.mute": "Tavsgør", "report.mute": "Tavsgør",
"report.mute_explanation": "Du vil ikke se vedkommendes indlæg, men vedkommende kan stadig se dine/følge dig. Vedkommende vil ikke være bekendt med tavsgørelsen.", "report.mute_explanation": "Du vil ikke se vedkommendes indlæg, men vedkommende kan stadig se dine og følge dig. Vedkommende vil ikke være bekendt med tavsgørelsen.",
"report.next": "Næste", "report.next": "Næste",
"report.placeholder": "Yderligere kommentarer", "report.placeholder": "Yderligere kommentarer",
"report.reasons.dislike": "Synes ikke om den/dem", "report.reasons.dislike": "Synes ikke om den/dem",
@ -414,20 +414,20 @@
"report.reasons.violation": "Overtræder serverregler", "report.reasons.violation": "Overtræder serverregler",
"report.reasons.violation_description": "Det står klart, at det bryder bestemte regler", "report.reasons.violation_description": "Det står klart, at det bryder bestemte regler",
"report.rules.subtitle": "Vælg alle relevante", "report.rules.subtitle": "Vælg alle relevante",
"report.rules.title": "Hvilke regler brydes?", "report.rules.title": "Hvilke regler overtrædes?",
"report.statuses.subtitle": "Vælg alle relevante", "report.statuses.subtitle": "Vælg alle relevante",
"report.statuses.title": "Er der indlæg, som kan bekræfte denne anmeldelse?", "report.statuses.title": "Er der indlæg, som kan bekræfte denne anmeldelse?",
"report.submit": "Indsend", "report.submit": "Indsend",
"report.target": "Anmelder {target}", "report.target": "Anmelder {target}",
"report.thanks.take_action": "Her er mulighederne styring af, hvad man ses på Mastodon:", "report.thanks.take_action": "Dette er mulighederne for styring af, hvad man ses på Mastodon:",
"report.thanks.take_action_actionable": "Mens dette gennemgås, kan der skrides til handling mod @{name}:", "report.thanks.take_action_actionable": "Mens dette gennemgås, kan der skrides til handling mod @{name}:",
"report.thanks.title": "Ønsker ikke at se dette?", "report.thanks.title": "Ønsker ikke at se dette?",
"report.thanks.title_actionable": "Tak for anmeldelsen, der vil set nærmere på dette.", "report.thanks.title_actionable": "Tak for anmeldelsen, der vil blive set nærmere på dette.",
"report.unfollow": "Følg ikke længere @{name}", "report.unfollow": "Følg ikke længere @{name}",
"report.unfollow_explanation": "Denne konto følges. For at ophøre medat se vedkommendes indlæg i hjemmefeedet, vælg Følg ikke længere.", "report.unfollow_explanation": "Denne konto følges. For at ophøre med at se vedkommendes indlæg på hjemmetidslinjen, vælg Følg ikke længere.",
"search.placeholder": "Søg", "search.placeholder": "Søg",
"search_popout.search_format": "Avanceret søgeformat", "search_popout.search_format": "Avanceret søgeformat",
"search_popout.tips.full_text": "Simpel tekst returnerer trut, du har skrevet, favoriseret, fremhævede eller som er nævnt i/matcher bruger- og profilnavne samt hashtags.", "search_popout.tips.full_text": "Simpel tekst returnerer indlæg, du har skrevet, favoriseret, boostet eller som er nævnt i/matcher bruger- og profilnavne samt hashtags.",
"search_popout.tips.hashtag": "hashtag", "search_popout.tips.hashtag": "hashtag",
"search_popout.tips.status": "indlæg", "search_popout.tips.status": "indlæg",
"search_popout.tips.text": "Simpel tekst returnerer matchende visnings- og brugernavne samt hashtags", "search_popout.tips.text": "Simpel tekst returnerer matchende visnings- og brugernavne samt hashtags",
@ -437,15 +437,15 @@
"search_results.hashtags": "Hashtags", "search_results.hashtags": "Hashtags",
"search_results.nothing_found": "Ingen resultater for disse søgeord", "search_results.nothing_found": "Ingen resultater for disse søgeord",
"search_results.statuses": "Indlæg", "search_results.statuses": "Indlæg",
"search_results.statuses_fts_disabled": "På denne Mastodon-server er trutsøgning efter deres indhold ikke aktiveret.", "search_results.statuses_fts_disabled": "Søgning på indlæg efter deres indhold ikke aktiveret på denne Mastodon-server.",
"search_results.total": "{count, number} {count, plural, one {resultat} other {resultater}}", "search_results.total": "{count, number} {count, plural, one {resultat} other {resultater}}",
"status.admin_account": "Åbn modereringsbrugerflade for @{name}", "status.admin_account": "Åbn modereringsbrugerflade for @{name}",
"status.admin_status": "Åbn dette trut i modereringsbrugerflade", "status.admin_status": "Åbn dette indlæg i modereringsbrugerfladen",
"status.block": "Blokér @{name}", "status.block": "Blokér @{name}",
"status.bookmark": "Tilføj bogmærke", "status.bookmark": "Bogmærk",
"status.cancel_reblog_private": "Fjern fremhævning", "status.cancel_reblog_private": "Fjern fremhævning",
"status.cannot_reblog": "Indlægget kan ikke fremhæves", "status.cannot_reblog": "Dette indlæg kan ikke boostes",
"status.copy": "Kopiér link til trut", "status.copy": "Kopiér link til indlæg",
"status.delete": "Slet", "status.delete": "Slet",
"status.detailed_status": "Detaljeret samtalevisning", "status.detailed_status": "Detaljeret samtalevisning",
"status.direct": "Direkte besked til @{name}", "status.direct": "Direkte besked til @{name}",
@ -461,20 +461,20 @@
"status.media_hidden": "Medie skjult", "status.media_hidden": "Medie skjult",
"status.mention": "Nævn @{name}", "status.mention": "Nævn @{name}",
"status.more": "Mere", "status.more": "Mere",
"status.mute": "Skjul @{name}", "status.mute": "Tystn @{name}",
"status.mute_conversation": "Skjul samtale", "status.mute_conversation": "Tystn samtale",
"status.open": "Udvid indlægget", "status.open": "Udvid dette indlæg",
"status.pin": "Fastgør til profil", "status.pin": "Fastgør til profil",
"status.pinned": "Fastgjort trut", "status.pinned": "Fastgjort indlæg",
"status.read_more": "Læs mere", "status.read_more": "Læs mere",
"status.reblog": "Fremhæv", "status.reblog": "Fremhæv",
"status.reblog_private": "Fremhæv med oprindelig synlighed", "status.reblog_private": "Boost med oprindelig synlighed",
"status.reblogged_by": "{name} fremhævet", "status.reblogged_by": "{name} boostede",
"status.reblogs.empty": "Ingen har fremhævet indlægget endnu. Når nogen gør, vil det fremgå hér.", "status.reblogs.empty": "Ingen har endnu boostet dette indlæg. Når nogen gør, vil det fremgå hér.",
"status.redraft": "Slet og omskriv", "status.redraft": "Slet og omformulér",
"status.remove_bookmark": "Fjern bogmærke", "status.remove_bookmark": "Fjern bogmærke",
"status.reply": "Besvar", "status.reply": "Besvar",
"status.replyAll": "Svar på tråd", "status.replyAll": "Besvar alle",
"status.report": "Anmeld @{name}", "status.report": "Anmeld @{name}",
"status.sensitive_warning": "Følsomt indhold", "status.sensitive_warning": "Følsomt indhold",
"status.share": "Del", "status.share": "Del",
@ -496,7 +496,7 @@
"time_remaining.days": "{number, plural, one {# dag} other {# dage}} tilbage", "time_remaining.days": "{number, plural, one {# dag} other {# dage}} tilbage",
"time_remaining.hours": "{number, plural, one {# time} other {# timer}} tilbage", "time_remaining.hours": "{number, plural, one {# time} other {# timer}} tilbage",
"time_remaining.minutes": "{number, plural, one {# minut} other {# minutter}} tilbage", "time_remaining.minutes": "{number, plural, one {# minut} other {# minutter}} tilbage",
"time_remaining.moments": "Et øjeblik tilbage", "time_remaining.moments": "Få øjeblikke tilbage",
"time_remaining.seconds": "{number, plural, one {# sekund} other {# sekunder}} tilbage", "time_remaining.seconds": "{number, plural, one {# sekund} other {# sekunder}} tilbage",
"timeline_hint.remote_resource_not_displayed": "{resource} fra andre servere vises ikke.", "timeline_hint.remote_resource_not_displayed": "{resource} fra andre servere vises ikke.",
"timeline_hint.resources.followers": "Følgere", "timeline_hint.resources.followers": "Følgere",
@ -505,24 +505,24 @@
"trends.counter_by_accounts": "{count, plural, one {{counter} person} other {{counter} personer}} taler", "trends.counter_by_accounts": "{count, plural, one {{counter} person} other {{counter} personer}} taler",
"trends.trending_now": "Hot lige nu", "trends.trending_now": "Hot lige nu",
"ui.beforeunload": "Dit udkast går tabt, hvis du lukker Mastodon.", "ui.beforeunload": "Dit udkast går tabt, hvis du lukker Mastodon.",
"units.short.billion": "{count}G", "units.short.billion": "{count} MIA",
"units.short.million": "{count}M", "units.short.million": "{count} M",
"units.short.thousand": "{count}k", "units.short.thousand": "{count} K",
"upload_area.title": "Træk og slip for at uploade", "upload_area.title": "Træk og slip for at uploade",
"upload_button.label": "Tilføj billeder, en video- eller lydfil", "upload_button.label": "Tilføj billed-, video- eller lydfil(er)",
"upload_error.limit": "Grænse for filupload nået.", "upload_error.limit": "Grænse for filupload nået.",
"upload_error.poll": "Filupload ikke tilladt for afstemninger.", "upload_error.poll": "Filupload ikke tilladt for afstemninger.",
"upload_form.audio_description": "Beskrivelse til hørehæmmede", "upload_form.audio_description": "Beskrivelse til hørehæmmede",
"upload_form.description": "Beskrivelse til svagtseende", "upload_form.description": "Beskrivelse til svagtseende",
"upload_form.edit": "Redigér", "upload_form.edit": "Redigér",
"upload_form.thumbnail": "Skift miniaturer", "upload_form.thumbnail": "Skift miniature",
"upload_form.undo": "Slet", "upload_form.undo": "Slet",
"upload_form.video_description": "Beskrivelse for hørehæmmede eller synshandicappede personer", "upload_form.video_description": "Beskrivelse for hørehæmmede eller synshandicappede personer",
"upload_modal.analyzing_picture": "Analyserer billede…", "upload_modal.analyzing_picture": "Analyserer billede…",
"upload_modal.apply": "Anvend", "upload_modal.apply": "Anvend",
"upload_modal.applying": "Effektuerer…", "upload_modal.applying": "Effektuerer…",
"upload_modal.choose_image": "Vælg billede", "upload_modal.choose_image": "Vælg billede",
"upload_modal.description_placeholder": "Høj bly gom vandt fræk sexquiz på wc", "upload_modal.description_placeholder": "En hurtig brun ræv hopper over den dovne hund",
"upload_modal.detect_text": "Detektér tekst i billede", "upload_modal.detect_text": "Detektér tekst i billede",
"upload_modal.edit_media": "Redigér medie", "upload_modal.edit_media": "Redigér medie",
"upload_modal.hint": "Klik eller træk cirklen i forhåndsvisningen for at vælge det fokuspunkt, der altid vil være synligt på alle miniaturer.", "upload_modal.hint": "Klik eller træk cirklen i forhåndsvisningen for at vælge det fokuspunkt, der altid vil være synligt på alle miniaturer.",
@ -535,8 +535,8 @@
"video.expand": "Udvid video", "video.expand": "Udvid video",
"video.fullscreen": "Fuldskærm", "video.fullscreen": "Fuldskærm",
"video.hide": "Skjul video", "video.hide": "Skjul video",
"video.mute": "Sluk lyden", "video.mute": "Tavsgør lyd",
"video.pause": "Sæt på pause", "video.pause": "Pausér",
"video.play": "Afspil", "video.play": "Afspil",
"video.unmute": "Tænd for lyden" "video.unmute": "Fjern lydtavsgørelse"
} }

View File

@ -18,7 +18,7 @@
"account.followers": "Follower", "account.followers": "Follower",
"account.followers.empty": "Diesem Profil folgt noch niemand.", "account.followers.empty": "Diesem Profil folgt noch niemand.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Follower}}", "account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Follower}}",
"account.following": "Following", "account.following": "Folgt",
"account.following_counter": "{count, plural, one {{counter} Folgender} other {{counter} Folgende}}", "account.following_counter": "{count, plural, one {{counter} Folgender} other {{counter} Folgende}}",
"account.follows.empty": "Dieses Profil folgt noch niemandem.", "account.follows.empty": "Dieses Profil folgt noch niemandem.",
"account.follows_you": "Folgt dir", "account.follows_you": "Folgt dir",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Beitrag} other {{counter} Beiträge}}", "account.statuses_counter": "{count, plural, one {{counter} Beitrag} other {{counter} Beiträge}}",
"account.unblock": "@{name} entblocken", "account.unblock": "@{name} entblocken",
"account.unblock_domain": "{domain} wieder anzeigen", "account.unblock_domain": "{domain} wieder anzeigen",
"account.unblock_short": "Unblock", "account.unblock_short": "Blockierung aufheben",
"account.unendorse": "Nicht auf Profil hervorheben", "account.unendorse": "Nicht auf Profil hervorheben",
"account.unfollow": "Entfolgen", "account.unfollow": "Entfolgen",
"account.unmute": "@{name} nicht mehr stummschalten", "account.unmute": "@{name} nicht mehr stummschalten",
"account.unmute_notifications": "Benachrichtigungen von @{name} einschalten", "account.unmute_notifications": "Benachrichtigungen von @{name} einschalten",
"account.unmute_short": "Unmute", "account.unmute_short": "Nicht mehr stummschalten",
"account_note.placeholder": "Notiz durch Klicken hinzufügen", "account_note.placeholder": "Notiz durch Klicken hinzufügen",
"admin.dashboard.daily_retention": "Benutzerverbleibrate nach Tag nach Anmeldung", "admin.dashboard.daily_retention": "Benutzerverbleibrate nach Tag nach Anmeldung",
"admin.dashboard.monthly_retention": "Benutzerverbleibrate nach Monat nach Anmeldung", "admin.dashboard.monthly_retention": "Benutzerverbleibrate nach Monat nach Anmeldung",

View File

@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Τουτ} other {{counter} Τουτ}}", "account.statuses_counter": "{count, plural, one {{counter} Τουτ} other {{counter} Τουτ}}",
"account.unblock": "Ξεμπλόκαρε @{name}", "account.unblock": "Ξεμπλόκαρε @{name}",
"account.unblock_domain": "Αποκάλυψε το {domain}", "account.unblock_domain": "Αποκάλυψε το {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Ξεμπλοκάρισμα",
"account.unendorse": "Άνευ προβολής στο προφίλ", "account.unendorse": "Άνευ προβολής στο προφίλ",
"account.unfollow": "Διακοπή παρακολούθησης", "account.unfollow": "Διακοπή παρακολούθησης",
"account.unmute": "Διακοπή αποσιώπησης @{name}", "account.unmute": "Διακοπή αποσιώπησης @{name}",
"account.unmute_notifications": "Διακοπή αποσιώπησης ειδοποιήσεων του/της @{name}", "account.unmute_notifications": "Διακοπή αποσιώπησης ειδοποιήσεων του/της @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Κατάργηση σίγασης",
"account_note.placeholder": "Κλικ για να βάλεις σημείωση", "account_note.placeholder": "Κλικ για να βάλεις σημείωση",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -26,7 +26,7 @@
"account.joined": "Kuniĝis {date}", "account.joined": "Kuniĝis {date}",
"account.link_verified_on": "La posedanto de tiu ligilo estis kontrolita je {date}", "account.link_verified_on": "La posedanto de tiu ligilo estis kontrolita je {date}",
"account.locked_info": "La privateco de tiu konto estas elektita kiel fermita. La posedanto povas mane akcepti tiun, kiu povas sekvi rin.", "account.locked_info": "La privateco de tiu konto estas elektita kiel fermita. La posedanto povas mane akcepti tiun, kiu povas sekvi rin.",
"account.media": "Amaskomunikiloj", "account.media": "Aŭdovidaĵoj",
"account.mention": "Mencii @{name}", "account.mention": "Mencii @{name}",
"account.moved_to": "{name} moviĝis al:", "account.moved_to": "{name} moviĝis al:",
"account.mute": "Silentigi @{name}", "account.mute": "Silentigi @{name}",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Mesaĝo} other {{counter} Mesaĝoj}}", "account.statuses_counter": "{count, plural, one {{counter} Mesaĝo} other {{counter} Mesaĝoj}}",
"account.unblock": "Malbloki @{name}", "account.unblock": "Malbloki @{name}",
"account.unblock_domain": "Malbloki {domain}", "account.unblock_domain": "Malbloki {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Malbloki",
"account.unendorse": "Ne montri en profilo", "account.unendorse": "Ne montri en profilo",
"account.unfollow": "Ne plu sekvi", "account.unfollow": "Ne plu sekvi",
"account.unmute": "Malsilentigi @{name}", "account.unmute": "Malsilentigi @{name}",
"account.unmute_notifications": "Malsilentigi sciigojn de @{name}", "account.unmute_notifications": "Malsilentigi sciigojn de @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Malsilentigi",
"account_note.placeholder": "Alklaku por aldoni noton", "account_note.placeholder": "Alklaku por aldoni noton",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
@ -106,7 +106,7 @@
"compose_form.poll.switch_to_single": "Ŝanĝi la balotenketon por permesi unu solan elekton", "compose_form.poll.switch_to_single": "Ŝanĝi la balotenketon por permesi unu solan elekton",
"compose_form.publish": "Hup", "compose_form.publish": "Hup",
"compose_form.publish_loud": "{publish}!", "compose_form.publish_loud": "{publish}!",
"compose_form.save_changes": "Save changes", "compose_form.save_changes": "Konservi ŝanĝojn",
"compose_form.sensitive.hide": "Marki la aŭdovidaĵojn kiel tiklaj", "compose_form.sensitive.hide": "Marki la aŭdovidaĵojn kiel tiklaj",
"compose_form.sensitive.marked": "Aŭdovidaĵo markita tikla", "compose_form.sensitive.marked": "Aŭdovidaĵo markita tikla",
"compose_form.sensitive.unmarked": "Aŭdovidaĵo ne markita tikla", "compose_form.sensitive.unmarked": "Aŭdovidaĵo ne markita tikla",
@ -125,8 +125,8 @@
"confirmations.discard_edit_media.message": "You have unsaved changes to the media description or preview, discard them anyway?", "confirmations.discard_edit_media.message": "You have unsaved changes to the media description or preview, discard them anyway?",
"confirmations.domain_block.confirm": "Bloki la tutan domajnon", "confirmations.domain_block.confirm": "Bloki la tutan domajnon",
"confirmations.domain_block.message": "Ĉu vi vere, vere certas, ke vi volas tute bloki {domain}? Plej ofte, trafa blokado kaj silentigado sufiĉas kaj preferindas. Vi ne vidos enhavon de tiu domajno en publika templinio aŭ en viaj sciigoj. Viaj sekvantoj de tiu domajno estos forigitaj.", "confirmations.domain_block.message": "Ĉu vi vere, vere certas, ke vi volas tute bloki {domain}? Plej ofte, trafa blokado kaj silentigado sufiĉas kaj preferindas. Vi ne vidos enhavon de tiu domajno en publika templinio aŭ en viaj sciigoj. Viaj sekvantoj de tiu domajno estos forigitaj.",
"confirmations.logout.confirm": "Elsaluti", "confirmations.logout.confirm": "Adiaŭi",
"confirmations.logout.message": "Ĉu vi certas ke vi volas elsaluti?", "confirmations.logout.message": "Ĉu vi certas ke vi volas adiaŭi?",
"confirmations.mute.confirm": "Silentigi", "confirmations.mute.confirm": "Silentigi",
"confirmations.mute.explanation": "Ĉi-tio kaŝos mesaĝojn el ili kaj mesaĝojn kiuj mencias ilin, sed ili ankoraŭ rajtos vidi viajn mesaĝojn kaj sekvi vin.", "confirmations.mute.explanation": "Ĉi-tio kaŝos mesaĝojn el ili kaj mesaĝojn kiuj mencias ilin, sed ili ankoraŭ rajtos vidi viajn mesaĝojn kaj sekvi vin.",
"confirmations.mute.message": "Ĉu vi certas, ke vi volas silentigi {name}?", "confirmations.mute.message": "Ĉu vi certas, ke vi volas silentigi {name}?",
@ -187,12 +187,12 @@
"error.unexpected_crash.next_steps_addons": "Provu malaktivigi ilin kaj tiam refreŝigi la paĝon. Se tio ne helpas, vi ankoraŭ povus uzi Mastodon per malsama retumilo aŭ operaciuma aplikajo.", "error.unexpected_crash.next_steps_addons": "Provu malaktivigi ilin kaj tiam refreŝigi la paĝon. Se tio ne helpas, vi ankoraŭ povus uzi Mastodon per malsama retumilo aŭ operaciuma aplikajo.",
"errors.unexpected_crash.copy_stacktrace": "Kopii stakspuron en tondujo", "errors.unexpected_crash.copy_stacktrace": "Kopii stakspuron en tondujo",
"errors.unexpected_crash.report_issue": "Raporti problemon", "errors.unexpected_crash.report_issue": "Raporti problemon",
"explore.search_results": "Search results", "explore.search_results": "Serĉaj rezultoj",
"explore.suggested_follows": "For you", "explore.suggested_follows": "Por vi",
"explore.title": "Explore", "explore.title": "Esplori",
"explore.trending_links": "News", "explore.trending_links": "Novaĵoj",
"explore.trending_statuses": "Posts", "explore.trending_statuses": "Afiŝoj",
"explore.trending_tags": "Hashtags", "explore.trending_tags": "Kradvortoj",
"follow_recommendations.done": "Farita", "follow_recommendations.done": "Farita",
"follow_recommendations.heading": "Follow people you'd like to see posts from! Here are some suggestions.", "follow_recommendations.heading": "Follow people you'd like to see posts from! Here are some suggestions.",
"follow_recommendations.lead": "Posts from people you follow will show up in chronological order on your home feed. Don't be afraid to make mistakes, you can unfollow people just as easily any time!", "follow_recommendations.lead": "Posts from people you follow will show up in chronological order on your home feed. Don't be afraid to make mistakes, you can unfollow people just as easily any time!",
@ -301,14 +301,14 @@
"navigation_bar.info": "Pri ĉi tiu servilo", "navigation_bar.info": "Pri ĉi tiu servilo",
"navigation_bar.keyboard_shortcuts": "Rapidklavoj", "navigation_bar.keyboard_shortcuts": "Rapidklavoj",
"navigation_bar.lists": "Listoj", "navigation_bar.lists": "Listoj",
"navigation_bar.logout": "Elsaluti", "navigation_bar.logout": "Adiaŭi",
"navigation_bar.mutes": "Silentigitaj uzantoj", "navigation_bar.mutes": "Silentigitaj uzantoj",
"navigation_bar.personal": "Persone", "navigation_bar.personal": "Persone",
"navigation_bar.pins": "Alpinglitaj mesaĝoj", "navigation_bar.pins": "Alpinglitaj mesaĝoj",
"navigation_bar.preferences": "Preferoj", "navigation_bar.preferences": "Preferoj",
"navigation_bar.public_timeline": "Fratara templinio", "navigation_bar.public_timeline": "Fratara templinio",
"navigation_bar.security": "Sekureco", "navigation_bar.security": "Sekureco",
"notification.admin.sign_up": "{name} signed up", "notification.admin.sign_up": "{name} registris",
"notification.favourite": "{name} stelumis vian mesaĝon", "notification.favourite": "{name} stelumis vian mesaĝon",
"notification.follow": "{name} eksekvis vin", "notification.follow": "{name} eksekvis vin",
"notification.follow_request": "{name} petis sekvi vin", "notification.follow_request": "{name} petis sekvi vin",
@ -317,7 +317,7 @@
"notification.poll": "Partoprenita balotenketo finiĝis", "notification.poll": "Partoprenita balotenketo finiĝis",
"notification.reblog": "{name} diskonigis vian mesaĝon", "notification.reblog": "{name} diskonigis vian mesaĝon",
"notification.status": "{name} ĵus afiŝita", "notification.status": "{name} ĵus afiŝita",
"notification.update": "{name} edited a post", "notification.update": "{name} redaktis afiŝon",
"notifications.clear": "Forviŝi sciigojn", "notifications.clear": "Forviŝi sciigojn",
"notifications.clear_confirmation": "Ĉu vi certas, ke vi volas porĉiame forviŝi ĉiujn viajn sciigojn?", "notifications.clear_confirmation": "Ĉu vi certas, ke vi volas porĉiame forviŝi ĉiujn viajn sciigojn?",
"notifications.column_settings.admin.sign_up": "New sign-ups:", "notifications.column_settings.admin.sign_up": "New sign-ups:",
@ -337,7 +337,7 @@
"notifications.column_settings.status": "Novaj mesaĝoj:", "notifications.column_settings.status": "Novaj mesaĝoj:",
"notifications.column_settings.unread_notifications.category": "Nelegitaj sciigoj", "notifications.column_settings.unread_notifications.category": "Nelegitaj sciigoj",
"notifications.column_settings.unread_notifications.highlight": "Highlight unread notifications", "notifications.column_settings.unread_notifications.highlight": "Highlight unread notifications",
"notifications.column_settings.update": "Edits:", "notifications.column_settings.update": "Redaktoj:",
"notifications.filter.all": "Ĉiuj", "notifications.filter.all": "Ĉiuj",
"notifications.filter.boosts": "Diskonigoj", "notifications.filter.boosts": "Diskonigoj",
"notifications.filter.favourites": "Stelumoj", "notifications.filter.favourites": "Stelumoj",
@ -379,7 +379,7 @@
"relative_time.days": "{number}t", "relative_time.days": "{number}t",
"relative_time.full.days": "{number, plural, one {# day} other {# days}} ago", "relative_time.full.days": "{number, plural, one {# day} other {# days}} ago",
"relative_time.full.hours": "{number, plural, one {# hour} other {# hours}} ago", "relative_time.full.hours": "{number, plural, one {# hour} other {# hours}} ago",
"relative_time.full.just_now": "just now", "relative_time.full.just_now": "ĵus nun",
"relative_time.full.minutes": "{number, plural, one {# minute} other {# minutes}} ago", "relative_time.full.minutes": "{number, plural, one {# minute} other {# minutes}} ago",
"relative_time.full.seconds": "{number, plural, one {# second} other {# seconds}} ago", "relative_time.full.seconds": "{number, plural, one {# second} other {# seconds}} ago",
"relative_time.hours": "{number}h", "relative_time.hours": "{number}h",
@ -388,30 +388,30 @@
"relative_time.seconds": "{number}s", "relative_time.seconds": "{number}s",
"relative_time.today": "hodiaŭ", "relative_time.today": "hodiaŭ",
"reply_indicator.cancel": "Nuligi", "reply_indicator.cancel": "Nuligi",
"report.block": "Block", "report.block": "Bloki",
"report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.", "report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.",
"report.categories.other": "Other", "report.categories.other": "Aliaj",
"report.categories.spam": "Spam", "report.categories.spam": "Spamo",
"report.categories.violation": "Content violates one or more server rules", "report.categories.violation": "Content violates one or more server rules",
"report.category.subtitle": "Choose the best match", "report.category.subtitle": "Choose the best match",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "Tell us what's going on with this {type}",
"report.category.title_account": "profile", "report.category.title_account": "profilo",
"report.category.title_status": "post", "report.category.title_status": "afiŝo",
"report.close": "Done", "report.close": "Farita",
"report.comment.title": "Is there anything else you think we should know?", "report.comment.title": "Is there anything else you think we should know?",
"report.forward": "Plusendi al {target}", "report.forward": "Plusendi al {target}",
"report.forward_hint": "La konto estas en alia servilo. Ĉu sendi sennomigitan kopion de la signalo ankaŭ tien?", "report.forward_hint": "La konto estas en alia servilo. Ĉu sendi sennomigitan kopion de la signalo ankaŭ tien?",
"report.mute": "Mute", "report.mute": "Silentigi",
"report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.", "report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.",
"report.next": "Next", "report.next": "Sekva",
"report.placeholder": "Pliaj komentoj", "report.placeholder": "Pliaj komentoj",
"report.reasons.dislike": "I don't like it", "report.reasons.dislike": "Mi ne ŝatas ĝin",
"report.reasons.dislike_description": "It is not something you want to see", "report.reasons.dislike_description": "It is not something you want to see",
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "Ĝi malrespektas servilajn regulojn",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",
"report.rules.title": "Which rules are being violated?", "report.rules.title": "Which rules are being violated?",
@ -423,7 +423,7 @@
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:", "report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:",
"report.thanks.title": "Don't want to see this?", "report.thanks.title": "Don't want to see this?",
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.", "report.thanks.title_actionable": "Thanks for reporting, we'll look into this.",
"report.unfollow": "Unfollow @{name}", "report.unfollow": "Malsekvi @{name}",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.", "report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.",
"search.placeholder": "Serĉi", "search.placeholder": "Serĉi",
"search_popout.search_format": "Detala serĉo", "search_popout.search_format": "Detala serĉo",
@ -433,7 +433,7 @@
"search_popout.tips.text": "Simpla teksto montras la kongruajn afiŝitajn nomojn, uzantnomojn kaj kradvortojn", "search_popout.tips.text": "Simpla teksto montras la kongruajn afiŝitajn nomojn, uzantnomojn kaj kradvortojn",
"search_popout.tips.user": "uzanto", "search_popout.tips.user": "uzanto",
"search_results.accounts": "Homoj", "search_results.accounts": "Homoj",
"search_results.all": "All", "search_results.all": "Ĉiuj",
"search_results.hashtags": "Kradvortoj", "search_results.hashtags": "Kradvortoj",
"search_results.nothing_found": "Could not find anything for these search terms", "search_results.nothing_found": "Could not find anything for these search terms",
"search_results.statuses": "Mesaĝoj", "search_results.statuses": "Mesaĝoj",
@ -449,14 +449,14 @@
"status.delete": "Forigi", "status.delete": "Forigi",
"status.detailed_status": "Detala konversacia vido", "status.detailed_status": "Detala konversacia vido",
"status.direct": "Rekte mesaĝi @{name}", "status.direct": "Rekte mesaĝi @{name}",
"status.edit": "Edit", "status.edit": "Redakti",
"status.edited": "Edited {date}", "status.edited": "Redaktita {date}",
"status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", "status.edited_x_times": "Redactita {count, plural, one {{count} fojon} other {{count} fojojn}}",
"status.embed": "Enkorpigi", "status.embed": "Enkorpigi",
"status.favourite": "Stelumi", "status.favourite": "Stelumi",
"status.filtered": "Filtrita", "status.filtered": "Filtrita",
"status.history.created": "{name} created {date}", "status.history.created": "{name} kreis {date}",
"status.history.edited": "{name} edited {date}", "status.history.edited": "{name} redaktis {date}",
"status.load_more": "Ŝargi pli", "status.load_more": "Ŝargi pli",
"status.media_hidden": "Aŭdovidaĵo kaŝita", "status.media_hidden": "Aŭdovidaĵo kaŝita",
"status.mention": "Mencii @{name}", "status.mention": "Mencii @{name}",

View File

@ -18,7 +18,7 @@
"account.followers": "Seguidores", "account.followers": "Seguidores",
"account.followers.empty": "Todavía nadie sigue a este usuario.", "account.followers.empty": "Todavía nadie sigue a este usuario.",
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}", "account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}",
"account.following": "Following", "account.following": "Siguiendo",
"account.following_counter": "{count, plural, other {{counter} Siguiendo}}", "account.following_counter": "{count, plural, other {{counter} Siguiendo}}",
"account.follows.empty": "Todavía este usuario no sigue a nadie.", "account.follows.empty": "Todavía este usuario no sigue a nadie.",
"account.follows_you": "Te sigue", "account.follows_you": "Te sigue",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Mensaje} other {{counter} Mensajes}}", "account.statuses_counter": "{count, plural, one {{counter} Mensaje} other {{counter} Mensajes}}",
"account.unblock": "Desbloquear a @{name}", "account.unblock": "Desbloquear a @{name}",
"account.unblock_domain": "Desbloquear dominio {domain}", "account.unblock_domain": "Desbloquear dominio {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Desbloquear",
"account.unendorse": "No destacar en el perfil", "account.unendorse": "No destacar en el perfil",
"account.unfollow": "Dejar de seguir", "account.unfollow": "Dejar de seguir",
"account.unmute": "Dejar de silenciar a @{name}", "account.unmute": "Dejar de silenciar a @{name}",
"account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}", "account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Dejar de silenciar",
"account_note.placeholder": "Hacé clic par agregar una nota", "account_note.placeholder": "Hacé clic par agregar una nota",
"admin.dashboard.daily_retention": "Tasa de retención de usuarios por día, después del registro", "admin.dashboard.daily_retention": "Tasa de retención de usuarios por día, después del registro",
"admin.dashboard.monthly_retention": "Tasa de retención de usuarios por mes, después del registro", "admin.dashboard.monthly_retention": "Tasa de retención de usuarios por mes, después del registro",
@ -168,7 +168,7 @@
"empty_column.community": "La línea temporal local está vacía. ¡Escribí algo en modo público para que se empiece a correr la bola!", "empty_column.community": "La línea temporal local está vacía. ¡Escribí algo en modo público para que se empiece a correr la bola!",
"empty_column.direct": "Todavía no tenés ningún mensaje directo. Cuando enviés o recibás uno, se mostrará acá.", "empty_column.direct": "Todavía no tenés ningún mensaje directo. Cuando enviés o recibás uno, se mostrará acá.",
"empty_column.domain_blocks": "Todavía no hay dominios bloqueados.", "empty_column.domain_blocks": "Todavía no hay dominios bloqueados.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "No hay nada en tendencia ahora mismo. ¡Volvé a revisar más tarde!",
"empty_column.favourited_statuses": "Todavía no tenés mensajes favoritos. Cuando marqués uno como favorito, se mostrará acá.", "empty_column.favourited_statuses": "Todavía no tenés mensajes favoritos. Cuando marqués uno como favorito, se mostrará acá.",
"empty_column.favourites": "Todavía nadie marcó este mensaje como favorito. Cuando alguien lo haga, se mostrará acá.", "empty_column.favourites": "Todavía nadie marcó este mensaje como favorito. Cuando alguien lo haga, se mostrará acá.",
"empty_column.follow_recommendations": "Parece que no se pudieron generar sugerencias para vos. Podés intentar buscar gente que conozcas o explorar las tendencias de las etiquetas.", "empty_column.follow_recommendations": "Parece que no se pudieron generar sugerencias para vos. Podés intentar buscar gente que conozcas o explorar las tendencias de las etiquetas.",
@ -187,12 +187,12 @@
"error.unexpected_crash.next_steps_addons": "Intentá deshabilitarlos y recargá la página. Si eso no ayuda, podés usar Mastodon a través de un navegador web diferente o aplicación nativa.", "error.unexpected_crash.next_steps_addons": "Intentá deshabilitarlos y recargá la página. Si eso no ayuda, podés usar Mastodon a través de un navegador web diferente o aplicación nativa.",
"errors.unexpected_crash.copy_stacktrace": "Copiar stacktrace al portapapeles", "errors.unexpected_crash.copy_stacktrace": "Copiar stacktrace al portapapeles",
"errors.unexpected_crash.report_issue": "Informar problema", "errors.unexpected_crash.report_issue": "Informar problema",
"explore.search_results": "Search results", "explore.search_results": "Resultados de búsqueda",
"explore.suggested_follows": "For you", "explore.suggested_follows": "Para vos",
"explore.title": "Explore", "explore.title": "Explorá",
"explore.trending_links": "News", "explore.trending_links": "Noticias",
"explore.trending_statuses": "Posts", "explore.trending_statuses": "Mensajes",
"explore.trending_tags": "Hashtags", "explore.trending_tags": "Etiquetas",
"follow_recommendations.done": "Listo", "follow_recommendations.done": "Listo",
"follow_recommendations.heading": "¡Seguí cuentas cuyos mensajes te gustaría ver! Acá tenés algunas sugerencias.", "follow_recommendations.heading": "¡Seguí cuentas cuyos mensajes te gustaría ver! Acá tenés algunas sugerencias.",
"follow_recommendations.lead": "Los mensajes de las cuentas que seguís aparecerán en orden cronológico en la columna \"Inicio\". No tengás miedo de meter la pata, ¡podés dejar de seguir cuentas fácilmente en cualquier momento!", "follow_recommendations.lead": "Los mensajes de las cuentas que seguís aparecerán en orden cronológico en la columna \"Inicio\". No tengás miedo de meter la pata, ¡podés dejar de seguir cuentas fácilmente en cualquier momento!",
@ -308,7 +308,7 @@
"navigation_bar.preferences": "Configuración", "navigation_bar.preferences": "Configuración",
"navigation_bar.public_timeline": "Línea temporal federada", "navigation_bar.public_timeline": "Línea temporal federada",
"navigation_bar.security": "Seguridad", "navigation_bar.security": "Seguridad",
"notification.admin.sign_up": "{name} signed up", "notification.admin.sign_up": "Se registró {name}",
"notification.favourite": "{name} marcó tu mensaje como favorito", "notification.favourite": "{name} marcó tu mensaje como favorito",
"notification.follow": "{name} te empezó a seguir", "notification.follow": "{name} te empezó a seguir",
"notification.follow_request": "{name} solicitó seguirte", "notification.follow_request": "{name} solicitó seguirte",
@ -320,7 +320,7 @@
"notification.update": "{name} editó un mensaje", "notification.update": "{name} editó un mensaje",
"notifications.clear": "Limpiar notificaciones", "notifications.clear": "Limpiar notificaciones",
"notifications.clear_confirmation": "¿Estás seguro que querés limpiar todas tus notificaciones permanentemente?", "notifications.clear_confirmation": "¿Estás seguro que querés limpiar todas tus notificaciones permanentemente?",
"notifications.column_settings.admin.sign_up": "New sign-ups:", "notifications.column_settings.admin.sign_up": "Nuevos registros:",
"notifications.column_settings.alert": "Notificaciones de escritorio", "notifications.column_settings.alert": "Notificaciones de escritorio",
"notifications.column_settings.favourite": "Favoritos:", "notifications.column_settings.favourite": "Favoritos:",
"notifications.column_settings.filter_bar.advanced": "Mostrar todas las categorías", "notifications.column_settings.filter_bar.advanced": "Mostrar todas las categorías",
@ -388,43 +388,43 @@
"relative_time.seconds": "{number}s", "relative_time.seconds": "{number}s",
"relative_time.today": "hoy", "relative_time.today": "hoy",
"reply_indicator.cancel": "Cancelar", "reply_indicator.cancel": "Cancelar",
"report.block": "Block", "report.block": "Bloquear",
"report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.", "report.block_explanation": "No verás sus mensajes. No podrán ver tus mensajes ni seguirte. Se van a dar cuentra de que están bloqueados.",
"report.categories.other": "Otra", "report.categories.other": "Otra",
"report.categories.spam": "Spam", "report.categories.spam": "Spam",
"report.categories.violation": "El contenido viola una o más reglas del servidor", "report.categories.violation": "El contenido viola una o más reglas del servidor",
"report.category.subtitle": "Choose the best match", "report.category.subtitle": "Elegí la mejor coincidencia",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "Contanos lo que pasa con este {type}",
"report.category.title_account": "profile", "report.category.title_account": "perfil",
"report.category.title_status": "post", "report.category.title_status": "mensaje",
"report.close": "Done", "report.close": "Listo",
"report.comment.title": "Is there anything else you think we should know?", "report.comment.title": "¿Hay algo más que creés que deberíamos saber?",
"report.forward": "Reenviar a {target}", "report.forward": "Reenviar a {target}",
"report.forward_hint": "La cuenta es de otro servidor. ¿Querés enviar una copia anonimizada del informe también ahí?", "report.forward_hint": "La cuenta es de otro servidor. ¿Querés enviar una copia anonimizada del informe también ahí?",
"report.mute": "Mute", "report.mute": "Silenciar",
"report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.", "report.mute_explanation": "No verás sus mensajes. Todavía pueden seguirte y ver tus mensajes y no sabrán que están silenciados.",
"report.next": "Next", "report.next": "Siguiente",
"report.placeholder": "Comentarios adicionales", "report.placeholder": "Comentarios adicionales",
"report.reasons.dislike": "I don't like it", "report.reasons.dislike": "No me gusta",
"report.reasons.dislike_description": "It is not something you want to see", "report.reasons.dislike_description": "No es algo que querés ver",
"report.reasons.other": "It's something else", "report.reasons.other": "Es otra cosa",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "El problema no aplica en otras categorías",
"report.reasons.spam": "It's spam", "report.reasons.spam": "Es spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Enlaces maliciosos, interacciones falsas o respuestas repetitivas",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "Viola las reglas del servidor",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "Sos consciente de que infringe normas específicas",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Seleccioná todo lo que corresponda",
"report.rules.title": "Which rules are being violated?", "report.rules.title": "¿Qué reglas se están violando?",
"report.statuses.subtitle": "Select all that apply", "report.statuses.subtitle": "Seleccioná todo lo que corresponda",
"report.statuses.title": "Are there any posts that back up this report?", "report.statuses.title": "¿Hay algún mensaje que respalde esta denuncia?",
"report.submit": "Enviar", "report.submit": "Enviar",
"report.target": "Denunciando a {target}", "report.target": "Denunciando a {target}",
"report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:", "report.thanks.take_action": "Acá están tus opciones para controlar lo que ves en Mastodon:",
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:", "report.thanks.take_action_actionable": "Mientras revisamos esto, podés tomar medidas contra @{name}:",
"report.thanks.title": "Don't want to see this?", "report.thanks.title": "¿No querés ver esto?",
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.", "report.thanks.title_actionable": "Gracias por tu denuncia, vamos a revisarla.",
"report.unfollow": "Unfollow @{name}", "report.unfollow": "Dejar de seguir a @{name}",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.", "report.unfollow_explanation": "Estás siguiendo a esta cuenta. Para no ver sus mensajes en tu línea temporal principal, dejá de seguirla.",
"search.placeholder": "Buscar", "search.placeholder": "Buscar",
"search_popout.search_format": "Formato de búsqueda avanzada", "search_popout.search_format": "Formato de búsqueda avanzada",
"search_popout.tips.full_text": "Las búsquedas de texto simple devuelven los mensajes que escribiste, los marcados como favoritos, los adheridos o en los que te mencionaron, así como nombres de usuarios, nombres mostrados y etiquetas.", "search_popout.tips.full_text": "Las búsquedas de texto simple devuelven los mensajes que escribiste, los marcados como favoritos, los adheridos o en los que te mencionaron, así como nombres de usuarios, nombres mostrados y etiquetas.",
@ -433,9 +433,9 @@
"search_popout.tips.text": "Las búsquedas de texto simple devuelven nombres de usuarios, nombres mostrados y etiquetas que coincidan", "search_popout.tips.text": "Las búsquedas de texto simple devuelven nombres de usuarios, nombres mostrados y etiquetas que coincidan",
"search_popout.tips.user": "usuario", "search_popout.tips.user": "usuario",
"search_results.accounts": "Gente", "search_results.accounts": "Gente",
"search_results.all": "All", "search_results.all": "Todos",
"search_results.hashtags": "Etiquetas", "search_results.hashtags": "Etiquetas",
"search_results.nothing_found": "Could not find anything for these search terms", "search_results.nothing_found": "No se pudo encontrar nada para estos términos de búsqueda",
"search_results.statuses": "Mensajes", "search_results.statuses": "Mensajes",
"search_results.statuses_fts_disabled": "No se pueden buscar mensajes por contenido en este servidor de Mastodon.", "search_results.statuses_fts_disabled": "No se pueden buscar mensajes por contenido en este servidor de Mastodon.",
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}", "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",

View File

@ -4,7 +4,7 @@
"account.badges.bot": "Bot", "account.badges.bot": "Bot",
"account.badges.group": "Grupo", "account.badges.group": "Grupo",
"account.block": "Bloquear a @{name}", "account.block": "Bloquear a @{name}",
"account.block_domain": "Ocultar todo de {domain}", "account.block_domain": "Bloquear dominio {domain}",
"account.blocked": "Bloqueado", "account.blocked": "Bloqueado",
"account.browse_more_on_origin_server": "Ver más en el perfil original", "account.browse_more_on_origin_server": "Ver más en el perfil original",
"account.cancel_follow_request": "Cancelar la solicitud de seguimiento", "account.cancel_follow_request": "Cancelar la solicitud de seguimiento",
@ -13,12 +13,12 @@
"account.domain_blocked": "Dominio oculto", "account.domain_blocked": "Dominio oculto",
"account.edit_profile": "Editar perfil", "account.edit_profile": "Editar perfil",
"account.enable_notifications": "Notificarme cuando @{name} publique algo", "account.enable_notifications": "Notificarme cuando @{name} publique algo",
"account.endorse": "Mostrar en perfil", "account.endorse": "Destacar en mi perfil",
"account.follow": "Seguir", "account.follow": "Seguir",
"account.followers": "Seguidores", "account.followers": "Seguidores",
"account.followers.empty": "Todavía nadie sigue a este usuario.", "account.followers.empty": "Todavía nadie sigue a este usuario.",
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}", "account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}",
"account.following": "Following", "account.following": "Siguiendo",
"account.following_counter": "{count, plural, other {{counter} Siguiendo}}", "account.following_counter": "{count, plural, other {{counter} Siguiendo}}",
"account.follows.empty": "Este usuario todavía no sigue a nadie.", "account.follows.empty": "Este usuario todavía no sigue a nadie.",
"account.follows_you": "Te sigue", "account.follows_you": "Te sigue",
@ -27,29 +27,29 @@
"account.link_verified_on": "El proprietario de este link fue comprobado el {date}", "account.link_verified_on": "El proprietario de este link fue comprobado el {date}",
"account.locked_info": "El estado de privacidad de esta cuenta està configurado como bloqueado. El proprietario debe revisar manualmente quien puede seguirle.", "account.locked_info": "El estado de privacidad de esta cuenta està configurado como bloqueado. El proprietario debe revisar manualmente quien puede seguirle.",
"account.media": "Multimedia", "account.media": "Multimedia",
"account.mention": "Mencionar a @{name}", "account.mention": "Mencionar @{name}",
"account.moved_to": "{name} se ha mudado a:", "account.moved_to": "{name} se ha mudado a:",
"account.mute": "Silenciar a @{name}", "account.mute": "Silenciar a @{name}",
"account.mute_notifications": "Silenciar notificaciones de @{name}", "account.mute_notifications": "Silenciar notificaciones de @{name}",
"account.muted": "Silenciado", "account.muted": "Silenciado",
"account.posts": "Toots", "account.posts": "Publicaciones",
"account.posts_with_replies": "Toots con respuestas", "account.posts_with_replies": "Publicaciones y respuestas",
"account.report": "Reportar a @{name}", "account.report": "Reportar a @{name}",
"account.requested": "Esperando aprobación", "account.requested": "Esperando aprobación. Haga clic para cancelar la solicitud de seguimiento",
"account.share": "Compartir el perfil de @{name}", "account.share": "Compartir el perfil de @{name}",
"account.show_reblogs": "Mostrar retoots de @{name}", "account.show_reblogs": "Mostrar retoots de @{name}",
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Desbloquear a @{name}", "account.unblock": "Desbloquear a @{name}",
"account.unblock_domain": "Mostrar a {domain}", "account.unblock_domain": "Mostrar a {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Desbloquear",
"account.unendorse": "No mostrar en el perfil", "account.unendorse": "No mostrar en el perfil",
"account.unfollow": "Dejar de seguir", "account.unfollow": "Dejar de seguir",
"account.unmute": "Dejar de silenciar a @{name}", "account.unmute": "Dejar de silenciar a @{name}",
"account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}", "account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Desmutear",
"account_note.placeholder": "Clic para añadir nota", "account_note.placeholder": "Clic para añadir nota",
"admin.dashboard.daily_retention": "Tasa de retención de usuarios por día después del registro", "admin.dashboard.daily_retention": "Tasa de retención de usuarios por día después de unirse",
"admin.dashboard.monthly_retention": "Tasa de retención de usuarios por mes después del registro", "admin.dashboard.monthly_retention": "Tasa de retención de usuarios por mes después de unirse",
"admin.dashboard.retention.average": "Promedio", "admin.dashboard.retention.average": "Promedio",
"admin.dashboard.retention.cohort": "Mes de registro", "admin.dashboard.retention.cohort": "Mes de registro",
"admin.dashboard.retention.cohort_size": "Nuevos usuarios", "admin.dashboard.retention.cohort_size": "Nuevos usuarios",
@ -168,7 +168,7 @@
"empty_column.community": "La línea de tiempo local está vacía. ¡Escribe algo para empezar la fiesta!", "empty_column.community": "La línea de tiempo local está vacía. ¡Escribe algo para empezar la fiesta!",
"empty_column.direct": "Aún no tienes ningún mensaje directo. Cuando envíes o recibas uno, se mostrará aquí.", "empty_column.direct": "Aún no tienes ningún mensaje directo. Cuando envíes o recibas uno, se mostrará aquí.",
"empty_column.domain_blocks": "Todavía no hay dominios ocultos.", "empty_column.domain_blocks": "Todavía no hay dominios ocultos.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nada es tendencia en este momento. ¡Revisa más tarde!",
"empty_column.favourited_statuses": "Aún no tienes toots preferidos. Cuando marques uno como favorito, aparecerá aquí.", "empty_column.favourited_statuses": "Aún no tienes toots preferidos. Cuando marques uno como favorito, aparecerá aquí.",
"empty_column.favourites": "Nadie ha marcado este toot como preferido. Cuando alguien lo haga, aparecerá aquí.", "empty_column.favourites": "Nadie ha marcado este toot como preferido. Cuando alguien lo haga, aparecerá aquí.",
"empty_column.follow_recommendations": "Parece que no se ha podido generar ninguna sugerencia para ti. Puedes probar a buscar a gente que quizá conozcas o explorar los hashtags que están en tendencia.", "empty_column.follow_recommendations": "Parece que no se ha podido generar ninguna sugerencia para ti. Puedes probar a buscar a gente que quizá conozcas o explorar los hashtags que están en tendencia.",
@ -187,11 +187,11 @@
"error.unexpected_crash.next_steps_addons": "Intenta deshabilitarlos y recarga la página. Si eso no ayuda, podrías usar Mastodon a través de un navegador web diferente o aplicación nativa.", "error.unexpected_crash.next_steps_addons": "Intenta deshabilitarlos y recarga la página. Si eso no ayuda, podrías usar Mastodon a través de un navegador web diferente o aplicación nativa.",
"errors.unexpected_crash.copy_stacktrace": "Copiar el seguimiento de pila en el portapapeles", "errors.unexpected_crash.copy_stacktrace": "Copiar el seguimiento de pila en el portapapeles",
"errors.unexpected_crash.report_issue": "Informar de un problema/error", "errors.unexpected_crash.report_issue": "Informar de un problema/error",
"explore.search_results": "Search results", "explore.search_results": "Resultados de búsqueda",
"explore.suggested_follows": "For you", "explore.suggested_follows": "Para ti",
"explore.title": "Explore", "explore.title": "Descubrir",
"explore.trending_links": "News", "explore.trending_links": "Noticias",
"explore.trending_statuses": "Posts", "explore.trending_statuses": "Publicaciones",
"explore.trending_tags": "Hashtags", "explore.trending_tags": "Hashtags",
"follow_recommendations.done": "Hecho", "follow_recommendations.done": "Hecho",
"follow_recommendations.heading": "¡Sigue a gente que publique cosas que te gusten! Aquí tienes algunas sugerencias.", "follow_recommendations.heading": "¡Sigue a gente que publique cosas que te gusten! Aquí tienes algunas sugerencias.",
@ -308,7 +308,7 @@
"navigation_bar.preferences": "Preferencias", "navigation_bar.preferences": "Preferencias",
"navigation_bar.public_timeline": "Historia federada", "navigation_bar.public_timeline": "Historia federada",
"navigation_bar.security": "Seguridad", "navigation_bar.security": "Seguridad",
"notification.admin.sign_up": "{name} signed up", "notification.admin.sign_up": "{name} se unio",
"notification.favourite": "{name} marcó tu estado como favorito", "notification.favourite": "{name} marcó tu estado como favorito",
"notification.follow": "{name} te empezó a seguir", "notification.follow": "{name} te empezó a seguir",
"notification.follow_request": "{name} ha solicitado seguirte", "notification.follow_request": "{name} ha solicitado seguirte",
@ -320,7 +320,7 @@
"notification.update": "{name} editó una publicación", "notification.update": "{name} editó una publicación",
"notifications.clear": "Limpiar notificaciones", "notifications.clear": "Limpiar notificaciones",
"notifications.clear_confirmation": "¿Seguro que quieres limpiar permanentemente todas tus notificaciones?", "notifications.clear_confirmation": "¿Seguro que quieres limpiar permanentemente todas tus notificaciones?",
"notifications.column_settings.admin.sign_up": "New sign-ups:", "notifications.column_settings.admin.sign_up": "Registros nuevos:",
"notifications.column_settings.alert": "Notificaciones de escritorio", "notifications.column_settings.alert": "Notificaciones de escritorio",
"notifications.column_settings.favourite": "Favoritos:", "notifications.column_settings.favourite": "Favoritos:",
"notifications.column_settings.filter_bar.advanced": "Mostrar todas las categorías", "notifications.column_settings.filter_bar.advanced": "Mostrar todas las categorías",
@ -361,7 +361,7 @@
"poll.total_votes": "{count, plural, one {# voto} other {# votos}}", "poll.total_votes": "{count, plural, one {# voto} other {# votos}}",
"poll.vote": "Votar", "poll.vote": "Votar",
"poll.voted": "Has votado a favor de esta respuesta", "poll.voted": "Has votado a favor de esta respuesta",
"poll.votes": "{votes, plural, one {# voto} other {# votos}}", "poll.votes": "{votes, plural, one {# voto} other {# votes}}",
"poll_button.add_poll": "Añadir una encuesta", "poll_button.add_poll": "Añadir una encuesta",
"poll_button.remove_poll": "Eliminar encuesta", "poll_button.remove_poll": "Eliminar encuesta",
"privacy.change": "Ajustar privacidad", "privacy.change": "Ajustar privacidad",
@ -377,54 +377,54 @@
"regeneration_indicator.label": "Cargando…", "regeneration_indicator.label": "Cargando…",
"regeneration_indicator.sublabel": "¡Tu historia de inicio se está preparando!", "regeneration_indicator.sublabel": "¡Tu historia de inicio se está preparando!",
"relative_time.days": "{number} d", "relative_time.days": "{number} d",
"relative_time.full.days": "hace {number, plural, one {# día} other {# días}}", "relative_time.full.days": "{number, plural, one {# día} other {# días hace}}",
"relative_time.full.hours": "hace {number, plural, one {# hora} other {# horas}}", "relative_time.full.hours": "{number, plural, one {# hora} other {# horas}} hace",
"relative_time.full.just_now": "justo ahora", "relative_time.full.just_now": "justo ahora",
"relative_time.full.minutes": "hace {number, plural, one {# minuto} other {# minutos}}", "relative_time.full.minutes": "Hace {number, plural, one {# minute} other {# minutos}}",
"relative_time.full.seconds": "hace {number, plural, one {# segundo} other {# segundos}}", "relative_time.full.seconds": "Hace {number, plural, one {# second} other {# segundos}}",
"relative_time.hours": "{number} h", "relative_time.hours": "{number} h",
"relative_time.just_now": "ahora", "relative_time.just_now": "ahora",
"relative_time.minutes": "{number} m", "relative_time.minutes": "{number} m",
"relative_time.seconds": "{number} s", "relative_time.seconds": "{number} s",
"relative_time.today": "hoy", "relative_time.today": "hoy",
"reply_indicator.cancel": "Cancelar", "reply_indicator.cancel": "Cancelar",
"report.block": "Block", "report.block": "Bloquear",
"report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.", "report.block_explanation": "No veras sus publicaciones. No podrán ver tus publicaciones ni seguirte. Podrán saber que están bloqueados.",
"report.categories.other": "Otros", "report.categories.other": "Otro",
"report.categories.spam": "Spam", "report.categories.spam": "Spam",
"report.categories.violation": "El contenido viola una o más reglas del servidor", "report.categories.violation": "El contenido viola una o más reglas del servidor",
"report.category.subtitle": "Choose the best match", "report.category.subtitle": "Selecciona la mejor coincidencia",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "Cuéntanos lo que sucede con este {type}",
"report.category.title_account": "profile", "report.category.title_account": "perfil",
"report.category.title_status": "post", "report.category.title_status": "publicación",
"report.close": "Done", "report.close": "Realizado",
"report.comment.title": "Is there anything else you think we should know?", "report.comment.title": "¿Hay algo más que usted cree que debamos saber?",
"report.forward": "Reenviar a {target}", "report.forward": "Reenviar a {target}",
"report.forward_hint": "Esta cuenta es de otro servidor. ¿Enviar una copia anonimizada del informe allí también?", "report.forward_hint": "Esta cuenta es de otro servidor. ¿Enviar una copia anonimizada del informe allí también?",
"report.mute": "Mute", "report.mute": "Silenciar",
"report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.", "report.mute_explanation": "No veras sus publiaciones. Todavía pueden seguirte y ver tus publicaciones y no sabrán que están silenciados.",
"report.next": "Next", "report.next": "Siguiente",
"report.placeholder": "Comentarios adicionales", "report.placeholder": "Comentarios adicionales",
"report.reasons.dislike": "I don't like it", "report.reasons.dislike": "No me gusta",
"report.reasons.dislike_description": "It is not something you want to see", "report.reasons.dislike_description": "No es algo que desee ver",
"report.reasons.other": "It's something else", "report.reasons.other": "Es algo más",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "El problema no encaja en otras categorías",
"report.reasons.spam": "It's spam", "report.reasons.spam": "Es spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Enlaces maliciosos, Interacciones falsas, o respuestas repetitivas",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "Viola las reglas del servidor",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "Es consciente de que infringe normas específicas",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Selecciona todos los que apliquen",
"report.rules.title": "Which rules are being violated?", "report.rules.title": "¿Qué reglas se están violando?",
"report.statuses.subtitle": "Select all that apply", "report.statuses.subtitle": "Seleccione todos lo que aplican",
"report.statuses.title": "Are there any posts that back up this report?", "report.statuses.title": "¿Hay alguna publicación que respalde este informe?",
"report.submit": "Publicar", "report.submit": "Publicar",
"report.target": "Reportando", "report.target": "Reportando",
"report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:", "report.thanks.take_action": "Aqui hay algunas opciones para controlar lo que ves en Mastodon:",
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:", "report.thanks.take_action_actionable": "Mientras revisamos esto, puedes tomar medidas contra @{name}:",
"report.thanks.title": "Don't want to see this?", "report.thanks.title": "¿No quieres ver esto?",
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.", "report.thanks.title_actionable": "Gracias por informar, estudiaremos esto.",
"report.unfollow": "Unfollow @{name}", "report.unfollow": "Dejar de seguir @{name}",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.", "report.unfollow_explanation": "Estás siguiendo esta cuenta. Para no ver sus publicaciones en tu sección de noticias, deja de seguirlo.",
"search.placeholder": "Buscar", "search.placeholder": "Buscar",
"search_popout.search_format": "Formato de búsqueda avanzada", "search_popout.search_format": "Formato de búsqueda avanzada",
"search_popout.tips.full_text": "Búsquedas de texto recuperan posts que has escrito, marcado como favoritos, retooteado o en los que has sido mencionado, así como usuarios, nombres y hashtags.", "search_popout.tips.full_text": "Búsquedas de texto recuperan posts que has escrito, marcado como favoritos, retooteado o en los que has sido mencionado, así como usuarios, nombres y hashtags.",
@ -433,9 +433,9 @@
"search_popout.tips.text": "El texto simple devuelve correspondencias de nombre, usuario y hashtag", "search_popout.tips.text": "El texto simple devuelve correspondencias de nombre, usuario y hashtag",
"search_popout.tips.user": "usuario", "search_popout.tips.user": "usuario",
"search_results.accounts": "Gente", "search_results.accounts": "Gente",
"search_results.all": "All", "search_results.all": "Todos",
"search_results.hashtags": "Etiquetas", "search_results.hashtags": "Etiquetas",
"search_results.nothing_found": "Could not find anything for these search terms", "search_results.nothing_found": "No se pudo encontrar nada para estos términos de busqueda",
"search_results.statuses": "Toots", "search_results.statuses": "Toots",
"search_results.statuses_fts_disabled": "Buscar toots por su contenido no está disponible en este servidor de Mastodon.", "search_results.statuses_fts_disabled": "Buscar toots por su contenido no está disponible en este servidor de Mastodon.",
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}", "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
@ -451,12 +451,12 @@
"status.direct": "Mensaje directo a @{name}", "status.direct": "Mensaje directo a @{name}",
"status.edit": "Editar", "status.edit": "Editar",
"status.edited": "Editado {date}", "status.edited": "Editado {date}",
"status.edited_x_times": "Editado {count, plural, one {{count} vez} other {{count} veces}}", "status.edited_x_times": "Editado {count, plural, one {{count} time} other {{count} veces}}",
"status.embed": "Incrustado", "status.embed": "Incrustado",
"status.favourite": "Favorito", "status.favourite": "Favorito",
"status.filtered": "Filtrado", "status.filtered": "Filtrado",
"status.history.created": "{name} creó {date}", "status.history.created": "{name} creó {date}",
"status.history.edited": "{name} editó {date}", "status.history.edited": "{name} editado {date}",
"status.load_more": "Cargar más", "status.load_more": "Cargar más",
"status.media_hidden": "Contenido multimedia oculto", "status.media_hidden": "Contenido multimedia oculto",
"status.mention": "Mencionar", "status.mention": "Mencionar",

View File

@ -18,7 +18,7 @@
"account.followers": "Seguidores", "account.followers": "Seguidores",
"account.followers.empty": "Todavía nadie sigue a este usuario.", "account.followers.empty": "Todavía nadie sigue a este usuario.",
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}", "account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}",
"account.following": "Following", "account.following": "Siguiendo",
"account.following_counter": "{count, plural, other {{counter} Siguiendo}}", "account.following_counter": "{count, plural, other {{counter} Siguiendo}}",
"account.follows.empty": "Este usuario todavía no sigue a nadie.", "account.follows.empty": "Este usuario todavía no sigue a nadie.",
"account.follows_you": "Te sigue", "account.follows_you": "Te sigue",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Publicación} other {{counter} Publicaciones}}", "account.statuses_counter": "{count, plural, one {{counter} Publicación} other {{counter} Publicaciones}}",
"account.unblock": "Desbloquear a @{name}", "account.unblock": "Desbloquear a @{name}",
"account.unblock_domain": "Mostrar a {domain}", "account.unblock_domain": "Mostrar a {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Desbloquear",
"account.unendorse": "No mostrar en el perfil", "account.unendorse": "No mostrar en el perfil",
"account.unfollow": "Dejar de seguir", "account.unfollow": "Dejar de seguir",
"account.unmute": "Dejar de silenciar a @{name}", "account.unmute": "Dejar de silenciar a @{name}",
"account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}", "account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Dejar de silenciar",
"account_note.placeholder": "Clic para añadir nota", "account_note.placeholder": "Clic para añadir nota",
"admin.dashboard.daily_retention": "Tasa de retención de usuarios por día después del registro", "admin.dashboard.daily_retention": "Tasa de retención de usuarios por día después del registro",
"admin.dashboard.monthly_retention": "Tasa de retención de usuarios por mes después del registro", "admin.dashboard.monthly_retention": "Tasa de retención de usuarios por mes después del registro",
@ -320,7 +320,7 @@
"notification.update": "{name} editó una publicación", "notification.update": "{name} editó una publicación",
"notifications.clear": "Limpiar notificaciones", "notifications.clear": "Limpiar notificaciones",
"notifications.clear_confirmation": "¿Seguro que quieres limpiar permanentemente todas tus notificaciones?", "notifications.clear_confirmation": "¿Seguro que quieres limpiar permanentemente todas tus notificaciones?",
"notifications.column_settings.admin.sign_up": "Nuevas inscripciones:", "notifications.column_settings.admin.sign_up": "Nuevos registros:",
"notifications.column_settings.alert": "Notificaciones de escritorio", "notifications.column_settings.alert": "Notificaciones de escritorio",
"notifications.column_settings.favourite": "Favoritos:", "notifications.column_settings.favourite": "Favoritos:",
"notifications.column_settings.filter_bar.advanced": "Mostrar todas las categorías", "notifications.column_settings.filter_bar.advanced": "Mostrar todas las categorías",
@ -389,7 +389,7 @@
"relative_time.today": "hoy", "relative_time.today": "hoy",
"reply_indicator.cancel": "Cancelar", "reply_indicator.cancel": "Cancelar",
"report.block": "Bloquear", "report.block": "Bloquear",
"report.block_explanation": "No verás sus publicaciones. No podrán ver tus publicaciones ni seguirte. Podrán decir que están bloqueados.", "report.block_explanation": "No verás sus publicaciones. No podrán ver tus publicaciones ni seguirte. Podrán saber que están bloqueados.",
"report.categories.other": "Otros", "report.categories.other": "Otros",
"report.categories.spam": "Spam", "report.categories.spam": "Spam",
"report.categories.violation": "El contenido viola una o más reglas del servidor", "report.categories.violation": "El contenido viola una o más reglas del servidor",
@ -410,21 +410,21 @@
"report.reasons.other": "Es otra cosa", "report.reasons.other": "Es otra cosa",
"report.reasons.other_description": "El problema no encaja en otras categorías", "report.reasons.other_description": "El problema no encaja en otras categorías",
"report.reasons.spam": "Es spam", "report.reasons.spam": "Es spam",
"report.reasons.spam_description": "Enlaces maliciosos, compromisos falsos o respuestas repetitivas", "report.reasons.spam_description": "Enlaces maliciosos, interacciones falsas o respuestas repetitivas",
"report.reasons.violation": "Viola las reglas del servidor", "report.reasons.violation": "Viola las reglas del servidor",
"report.reasons.violation_description": "Usted es consciente de que infringe las normas específicas", "report.reasons.violation_description": "Eres consciente de que infringe las normas específicas",
"report.rules.subtitle": "Selecciona todos los que aplica", "report.rules.subtitle": "Selecciona todos los que correspondan",
"report.rules.title": "¿Qué normas se están violando?", "report.rules.title": "¿Qué normas se están violando?",
"report.statuses.subtitle": "Selecciona todos los que aplican", "report.statuses.subtitle": "Selecciona todos los que correspondan",
"report.statuses.title": "¿Hay alguna publicación que respalde este informe?", "report.statuses.title": "¿Hay alguna publicación que respalde este informe?",
"report.submit": "Publicar", "report.submit": "Publicar",
"report.target": "Reportando", "report.target": "Reportando",
"report.thanks.take_action": "Aquí están tus opciones para controlar lo que ves en Mastodon:", "report.thanks.take_action": "Aquí están tus opciones para controlar lo que ves en Mastodon:",
"report.thanks.take_action_actionable": "Mientras revisamos esto, puedes tomar medidas contra @{name}:", "report.thanks.take_action_actionable": "Mientras revisamos esto, puedes tomar medidas contra @{name}:",
"report.thanks.title": "¿No quieres esto?", "report.thanks.title": "¿No quieres esto?",
"report.thanks.title_actionable": "Gracias por reportar, estudiaremos esto.", "report.thanks.title_actionable": "Gracias por informar, estudiaremos esto.",
"report.unfollow": "Dejar de seguir a @{name}", "report.unfollow": "Dejar de seguir a @{name}",
"report.unfollow_explanation": "Estás siguiendo esta cuenta. Para no ver sus publicaciones en tu muro de inicio, deja de seguirlas.", "report.unfollow_explanation": "Estás siguiendo esta cuenta. Para no ver sus publicaciones en tu muro de inicio, deja de seguirla.",
"search.placeholder": "Buscar", "search.placeholder": "Buscar",
"search_popout.search_format": "Formato de búsqueda avanzada", "search_popout.search_format": "Formato de búsqueda avanzada",
"search_popout.tips.full_text": "Las búsquedas de texto recuperan publicaciones que has escrito, marcado como favoritas, retooteado o en los que has sido mencionado, así como usuarios, nombres y hashtags.", "search_popout.tips.full_text": "Las búsquedas de texto recuperan publicaciones que has escrito, marcado como favoritas, retooteado o en los que has sido mencionado, así como usuarios, nombres y hashtags.",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Message} other {{counter} Messages}}", "account.statuses_counter": "{count, plural, one {{counter} Message} other {{counter} Messages}}",
"account.unblock": "Débloquer @{name}", "account.unblock": "Débloquer @{name}",
"account.unblock_domain": "Débloquer le domaine {domain}", "account.unblock_domain": "Débloquer le domaine {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Débloquer",
"account.unendorse": "Ne plus recommander sur le profil", "account.unendorse": "Ne plus recommander sur le profil",
"account.unfollow": "Ne plus suivre", "account.unfollow": "Ne plus suivre",
"account.unmute": "Ne plus masquer @{name}", "account.unmute": "Ne plus masquer @{name}",
"account.unmute_notifications": "Ne plus masquer les notifications de @{name}", "account.unmute_notifications": "Ne plus masquer les notifications de @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Ne plus masquer",
"account_note.placeholder": "Cliquez pour ajouter une note", "account_note.placeholder": "Cliquez pour ajouter une note",
"admin.dashboard.daily_retention": "Taux de maintien des utilisateur·rice·s par jour après inscription", "admin.dashboard.daily_retention": "Taux de maintien des utilisateur·rice·s par jour après inscription",
"admin.dashboard.monthly_retention": "Brugerfastholdelsesrate efter måned efter tilmelding", "admin.dashboard.monthly_retention": "Brugerfastholdelsesrate efter måned efter tilmelding",
@ -410,7 +410,7 @@
"report.reasons.other": "Pour une autre raison", "report.reasons.other": "Pour une autre raison",
"report.reasons.other_description": "Le problème ne correspond pas aux autres catégories", "report.reasons.other_description": "Le problème ne correspond pas aux autres catégories",
"report.reasons.spam": "C'est du spam", "report.reasons.spam": "C'est du spam",
"report.reasons.spam_description": "Liens malveillants, engagement mensonger ou réponses répétitives", "report.reasons.spam_description": "Liens malveillants, faux engagement ou réponses répétitives",
"report.reasons.violation": "Infraction des règles du serveur", "report.reasons.violation": "Infraction des règles du serveur",
"report.reasons.violation_description": "Vous savez que des règles précises sont enfreintes", "report.reasons.violation_description": "Vous savez que des règles précises sont enfreintes",
"report.rules.subtitle": "Sélectionnez toutes les réponses appropriées", "report.rules.subtitle": "Sélectionnez toutes les réponses appropriées",

View File

@ -168,7 +168,7 @@
"empty_column.community": "A cronoloxía local está baleira. Escribe algo de xeito público para espallalo!", "empty_column.community": "A cronoloxía local está baleira. Escribe algo de xeito público para espallalo!",
"empty_column.direct": "Aínda non tes mensaxes directas. Cando envíes ou recibas unha, amosarase aquí.", "empty_column.direct": "Aínda non tes mensaxes directas. Cando envíes ou recibas unha, amosarase aquí.",
"empty_column.domain_blocks": "Aínda non hai dominios agochados.", "empty_column.domain_blocks": "Aínda non hai dominios agochados.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Non hai temas en voga. Volve máis tarde!",
"empty_column.favourited_statuses": "Aínda non tes publicacións favoritas. Cando che guste algunha, aparecerá aquí.", "empty_column.favourited_statuses": "Aínda non tes publicacións favoritas. Cando che guste algunha, aparecerá aquí.",
"empty_column.favourites": "A ninguén lle gustou esta publicación polo momento. Cando a alguén lle guste, aparecerá aquí.", "empty_column.favourites": "A ninguén lle gustou esta publicación polo momento. Cando a alguén lle guste, aparecerá aquí.",
"empty_column.follow_recommendations": "Semella que non temos suxestións para ti. Podes utilizar a busca para atopar persoas que coñezas ou explorar os cancelos en voga.", "empty_column.follow_recommendations": "Semella que non temos suxestións para ti. Podes utilizar a busca para atopar persoas que coñezas ou explorar os cancelos en voga.",
@ -187,12 +187,12 @@
"error.unexpected_crash.next_steps_addons": "Intenta desactivalas e actualiza a páxina. Se isto non funciona, podes seguir usando Mastodon nun navegador diferente ou aplicación nativa.", "error.unexpected_crash.next_steps_addons": "Intenta desactivalas e actualiza a páxina. Se isto non funciona, podes seguir usando Mastodon nun navegador diferente ou aplicación nativa.",
"errors.unexpected_crash.copy_stacktrace": "Copiar trazas (stacktrace) ó portapapeis", "errors.unexpected_crash.copy_stacktrace": "Copiar trazas (stacktrace) ó portapapeis",
"errors.unexpected_crash.report_issue": "Informar sobre un problema", "errors.unexpected_crash.report_issue": "Informar sobre un problema",
"explore.search_results": "Search results", "explore.search_results": "Resultados da busca",
"explore.suggested_follows": "For you", "explore.suggested_follows": "Para ti",
"explore.title": "Explore", "explore.title": "Descubrir",
"explore.trending_links": "News", "explore.trending_links": "Novas",
"explore.trending_statuses": "Posts", "explore.trending_statuses": "Publicacións",
"explore.trending_tags": "Hashtags", "explore.trending_tags": "Cancelos",
"follow_recommendations.done": "Feito", "follow_recommendations.done": "Feito",
"follow_recommendations.heading": "Segue a persoas das que queiras ler publicacións! Aqui tes unhas suxestións.", "follow_recommendations.heading": "Segue a persoas das que queiras ler publicacións! Aqui tes unhas suxestións.",
"follow_recommendations.lead": "As publicacións das persoas que segues aparecerán na túa cronoloxía de inicio ordenadas temporalmente. Non teñas medo a equivocarte, podes deixar de seguirlas igual de fácil en calquera momento!", "follow_recommendations.lead": "As publicacións das persoas que segues aparecerán na túa cronoloxía de inicio ordenadas temporalmente. Non teñas medo a equivocarte, podes deixar de seguirlas igual de fácil en calquera momento!",
@ -308,7 +308,7 @@
"navigation_bar.preferences": "Preferencias", "navigation_bar.preferences": "Preferencias",
"navigation_bar.public_timeline": "Cronoloxía federada", "navigation_bar.public_timeline": "Cronoloxía federada",
"navigation_bar.security": "Seguranza", "navigation_bar.security": "Seguranza",
"notification.admin.sign_up": "{name} signed up", "notification.admin.sign_up": "{name} rexistrouse",
"notification.favourite": "{name} marcou a túa publicación como favorita", "notification.favourite": "{name} marcou a túa publicación como favorita",
"notification.follow": "{name} comezou a seguirte", "notification.follow": "{name} comezou a seguirte",
"notification.follow_request": "{name} solicitou seguirte", "notification.follow_request": "{name} solicitou seguirte",
@ -320,7 +320,7 @@
"notification.update": "{name} editou unha publicación", "notification.update": "{name} editou unha publicación",
"notifications.clear": "Limpar notificacións", "notifications.clear": "Limpar notificacións",
"notifications.clear_confirmation": "Tes a certeza de querer limpar de xeito permanente todas as túas notificacións?", "notifications.clear_confirmation": "Tes a certeza de querer limpar de xeito permanente todas as túas notificacións?",
"notifications.column_settings.admin.sign_up": "New sign-ups:", "notifications.column_settings.admin.sign_up": "Novas usuarias:",
"notifications.column_settings.alert": "Notificacións de escritorio", "notifications.column_settings.alert": "Notificacións de escritorio",
"notifications.column_settings.favourite": "Favoritos:", "notifications.column_settings.favourite": "Favoritos:",
"notifications.column_settings.filter_bar.advanced": "Amosar todas as categorías", "notifications.column_settings.filter_bar.advanced": "Amosar todas as categorías",
@ -388,43 +388,43 @@
"relative_time.seconds": "{number}s", "relative_time.seconds": "{number}s",
"relative_time.today": "hoxe", "relative_time.today": "hoxe",
"reply_indicator.cancel": "Desbotar", "reply_indicator.cancel": "Desbotar",
"report.block": "Block", "report.block": "Bloquear",
"report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.", "report.block_explanation": "Non vas ver as súas publicacións. Nin verán as túas publicacións nin poderán seguirte. Poderán comprobar que as bloqueaches.",
"report.categories.other": "Outro", "report.categories.other": "Outro",
"report.categories.spam": "Spam", "report.categories.spam": "Spam",
"report.categories.violation": "O contido viola unha ou máis regras do servidor", "report.categories.violation": "O contido viola unha ou máis regras do servidor",
"report.category.subtitle": "Choose the best match", "report.category.subtitle": "Elixe a mellor coincidencia",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "Dinos o que está a pasar con {type}",
"report.category.title_account": "profile", "report.category.title_account": "perfil",
"report.category.title_status": "post", "report.category.title_status": "publicación",
"report.close": "Done", "report.close": "Feito",
"report.comment.title": "Is there anything else you think we should know?", "report.comment.title": "Hai algo máis que creas debamos saber?",
"report.forward": "Reenviar a {target}", "report.forward": "Reenviar a {target}",
"report.forward_hint": "A conta é doutro servidor. Enviar unha copia anónima da denuncia aló tamén?", "report.forward_hint": "A conta é doutro servidor. Enviar unha copia anónima da denuncia aló tamén?",
"report.mute": "Mute", "report.mute": "Acalar",
"report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.", "report.mute_explanation": "Non verás as súas publicacións. Poderán seguirte e ver as túas publicacións e non saberán que as acalaches.",
"report.next": "Next", "report.next": "Seguinte",
"report.placeholder": "Comentarios adicionais", "report.placeholder": "Comentarios adicionais",
"report.reasons.dislike": "I don't like it", "report.reasons.dislike": "Non me gusta",
"report.reasons.dislike_description": "It is not something you want to see", "report.reasons.dislike_description": "Non é algo que queiras ver",
"report.reasons.other": "It's something else", "report.reasons.other": "É outra cousa",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "O asunto non cae dentro de outras categorías",
"report.reasons.spam": "It's spam", "report.reasons.spam": "É spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Ligazóns perigosas, relacións falsas, ou respostas repetitivas",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "Viola as regras do servidor",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "Daste conta de que quebra unhas normas en concreto",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Elixe todo o que sexa de aplicación",
"report.rules.title": "Which rules are being violated?", "report.rules.title": "Que regras foron incumpridas?",
"report.statuses.subtitle": "Select all that apply", "report.statuses.subtitle": "Elixe todo o que corresponda",
"report.statuses.title": "Are there any posts that back up this report?", "report.statuses.title": "Hai algunha publicación que apoie esta denuncia?",
"report.submit": "Enviar", "report.submit": "Enviar",
"report.target": "Denunciar a {target}", "report.target": "Denunciar a {target}",
"report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:", "report.thanks.take_action": "Aquí tes unhas opcións para controlar o que ves en Mastodon:",
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:", "report.thanks.take_action_actionable": "Mentras revisamos esto, podes tomar accións contra @{name}:",
"report.thanks.title": "Don't want to see this?", "report.thanks.title": "Non queres ver esto?",
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.", "report.thanks.title_actionable": "Grazas pola denuncia, investigarémola.",
"report.unfollow": "Unfollow @{name}", "report.unfollow": "Non seguir a @{name}",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.", "report.unfollow_explanation": "Estás a seguir esta conta. Deixar de ver as súas publicacións na túa cronoloxía, non seguila.",
"search.placeholder": "Procurar", "search.placeholder": "Procurar",
"search_popout.search_format": "Formato de procura avanzada", "search_popout.search_format": "Formato de procura avanzada",
"search_popout.tips.full_text": "Texto simple devolve toots que ti escribiches, promoviches, marcaches favoritos, ou foches mencionada, así como nomes de usuaria coincidentes, nomes públicos e cancelos.", "search_popout.tips.full_text": "Texto simple devolve toots que ti escribiches, promoviches, marcaches favoritos, ou foches mencionada, así como nomes de usuaria coincidentes, nomes públicos e cancelos.",
@ -433,9 +433,9 @@
"search_popout.tips.text": "Texto simple devolve coincidencias con nomes públicos, nomes de usuaria e cancelos", "search_popout.tips.text": "Texto simple devolve coincidencias con nomes públicos, nomes de usuaria e cancelos",
"search_popout.tips.user": "usuaria", "search_popout.tips.user": "usuaria",
"search_results.accounts": "Persoas", "search_results.accounts": "Persoas",
"search_results.all": "All", "search_results.all": "Todo",
"search_results.hashtags": "Cancelos", "search_results.hashtags": "Cancelos",
"search_results.nothing_found": "Could not find anything for these search terms", "search_results.nothing_found": "Non atopamos nada con estos termos de busca",
"search_results.statuses": "Publicacións", "search_results.statuses": "Publicacións",
"search_results.statuses_fts_disabled": "Procurar publicacións polo seu contido non está activado neste servidor do Mastodon.", "search_results.statuses_fts_disabled": "Procurar publicacións polo seu contido non está activado neste servidor do Mastodon.",
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}", "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -18,7 +18,7 @@
"account.followers": "Követő", "account.followers": "Követő",
"account.followers.empty": "Ezt a felhasználót még senki sem követi.", "account.followers.empty": "Ezt a felhasználót még senki sem követi.",
"account.followers_counter": "{count, plural, one {{counter} Követő} other {{counter} Követő}}", "account.followers_counter": "{count, plural, one {{counter} Követő} other {{counter} Követő}}",
"account.following": "Following", "account.following": "Követve",
"account.following_counter": "{count, plural, other {{counter} Követett}}", "account.following_counter": "{count, plural, other {{counter} Követett}}",
"account.follows.empty": "Ez a felhasználó még senkit sem követ.", "account.follows.empty": "Ez a felhasználó még senkit sem követ.",
"account.follows_you": "Követ téged", "account.follows_you": "Követ téged",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Bejegyzés} other {{counter} Bejegyzés}}", "account.statuses_counter": "{count, plural, one {{counter} Bejegyzés} other {{counter} Bejegyzés}}",
"account.unblock": "@{name} letiltásának feloldása", "account.unblock": "@{name} letiltásának feloldása",
"account.unblock_domain": "{domain} elrejtésének feloldása", "account.unblock_domain": "{domain} elrejtésének feloldása",
"account.unblock_short": "Unblock", "account.unblock_short": "Tiltás feloldása",
"account.unendorse": "Ne jelenjen meg a profilodon", "account.unendorse": "Ne jelenjen meg a profilodon",
"account.unfollow": "Követés megszüntetése", "account.unfollow": "Követés megszüntetése",
"account.unmute": "@{name} némítás feloldása", "account.unmute": "@{name} némítás feloldása",
"account.unmute_notifications": "@{name} némított értesítéseinek feloldása", "account.unmute_notifications": "@{name} némított értesítéseinek feloldása",
"account.unmute_short": "Unmute", "account.unmute_short": "Némitás feloldása",
"account_note.placeholder": "Klikk a feljegyzéshez", "account_note.placeholder": "Klikk a feljegyzéshez",
"admin.dashboard.daily_retention": "Napi regisztráció utáni felhasználómegtartási arány", "admin.dashboard.daily_retention": "Napi regisztráció utáni felhasználómegtartási arány",
"admin.dashboard.monthly_retention": "Havi regisztráció utáni felhasználómegtartási arány", "admin.dashboard.monthly_retention": "Havi regisztráció utáni felhasználómegtartási arány",
@ -389,7 +389,7 @@
"relative_time.today": "ma", "relative_time.today": "ma",
"reply_indicator.cancel": "Mégsem", "reply_indicator.cancel": "Mégsem",
"report.block": "Letiltás", "report.block": "Letiltás",
"report.block_explanation": "Nem fogod látni a bejegyzéseit. Nem fogja tudni megnézni a bejegyzéseidet és nem követni sem fog tudni. Azt is meg fogja tudni mondani, hogy letiltottad.", "report.block_explanation": "Nem fogod látni a bejegyzéseit. Nem fogja tudni megnézni a bejegyzéseidet és nem fog tudni követni sem. Azt is meg fogja tudni mondani, hogy letiltottad.",
"report.categories.other": "Egyéb", "report.categories.other": "Egyéb",
"report.categories.spam": "Kéretlen üzenet", "report.categories.spam": "Kéretlen üzenet",
"report.categories.violation": "A tartalom a kiszolgáló egy vagy több szabályát sérti", "report.categories.violation": "A tartalom a kiszolgáló egy vagy több szabályát sérti",
@ -420,7 +420,7 @@
"report.submit": "Küldés", "report.submit": "Küldés",
"report.target": "{target} jelentése", "report.target": "{target} jelentése",
"report.thanks.take_action": "Itt vannak a beállítások, melyek szabályozzák, hogy mit látsz a Mastodonon:", "report.thanks.take_action": "Itt vannak a beállítások, melyek szabályozzák, hogy mit látsz a Mastodonon:",
"report.thanks.take_action_actionable": "Míg átnézzük, a következőket tehet @{name} ellen:", "report.thanks.take_action_actionable": "Míg átnézzük, a következőket teheted @{name} ellen:",
"report.thanks.title": "Nem akarod ezt látni?", "report.thanks.title": "Nem akarod ezt látni?",
"report.thanks.title_actionable": "Köszönjük, hogy jelentetted, megnézzük.", "report.thanks.title_actionable": "Köszönjük, hogy jelentetted, megnézzük.",
"report.unfollow": "@{name} követésének leállítása", "report.unfollow": "@{name} követésének leállítása",
@ -435,7 +435,7 @@
"search_results.accounts": "Emberek", "search_results.accounts": "Emberek",
"search_results.all": "Összes", "search_results.all": "Összes",
"search_results.hashtags": "Hashtagek", "search_results.hashtags": "Hashtagek",
"search_results.nothing_found": "Nincs találat erre a keresési kifejezésekre", "search_results.nothing_found": "Nincs találat ezekre a keresési kifejezésekre",
"search_results.statuses": "Bejegyzések", "search_results.statuses": "Bejegyzések",
"search_results.statuses_fts_disabled": "Ezen a Mastodon szerveren nem engedélyezett a bejegyzések tartalom szerinti keresése.", "search_results.statuses_fts_disabled": "Ezen a Mastodon szerveren nem engedélyezett a bejegyzések tartalom szerinti keresése.",
"search_results.total": "{count, number} {count, plural, one {találat} other {találat}}", "search_results.total": "{count, number} {count, plural, one {találat} other {találat}}",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -18,7 +18,7 @@
"account.followers": "Pengikut", "account.followers": "Pengikut",
"account.followers.empty": "Pengguna ini belum ada pengikut.", "account.followers.empty": "Pengguna ini belum ada pengikut.",
"account.followers_counter": "{count, plural, other {{counter} Pengikut}}", "account.followers_counter": "{count, plural, other {{counter} Pengikut}}",
"account.following": "Following", "account.following": "Mengikuti",
"account.following_counter": "{count, plural, other {{counter} Mengikuti}}", "account.following_counter": "{count, plural, other {{counter} Mengikuti}}",
"account.follows.empty": "Pengguna ini belum mengikuti siapapun.", "account.follows.empty": "Pengguna ini belum mengikuti siapapun.",
"account.follows_you": "Mengikuti anda", "account.follows_you": "Mengikuti anda",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, other {{counter} Toot}}", "account.statuses_counter": "{count, plural, other {{counter} Toot}}",
"account.unblock": "Hapus blokir @{name}", "account.unblock": "Hapus blokir @{name}",
"account.unblock_domain": "Buka blokir domain {domain}", "account.unblock_domain": "Buka blokir domain {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Buka blokir",
"account.unendorse": "Jangan tampilkan di profil", "account.unendorse": "Jangan tampilkan di profil",
"account.unfollow": "Berhenti mengikuti", "account.unfollow": "Berhenti mengikuti",
"account.unmute": "Berhenti membisukan @{name}", "account.unmute": "Berhenti membisukan @{name}",
"account.unmute_notifications": "Berhenti bisukan pemberitahuan dari @{name}", "account.unmute_notifications": "Berhenti bisukan pemberitahuan dari @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Bunyikan",
"account_note.placeholder": "Klik untuk menambah catatan", "account_note.placeholder": "Klik untuk menambah catatan",
"admin.dashboard.daily_retention": "Tingkat retensi pengguna perhari setelah mendaftar", "admin.dashboard.daily_retention": "Tingkat retensi pengguna perhari setelah mendaftar",
"admin.dashboard.monthly_retention": "Tingkat retensi pengguna perbulan setelah mendaftar", "admin.dashboard.monthly_retention": "Tingkat retensi pengguna perbulan setelah mendaftar",
@ -168,7 +168,7 @@
"empty_column.community": "Linimasa lokal masih kosong. Tulis sesuatu secara publik dan buat roda berputar!", "empty_column.community": "Linimasa lokal masih kosong. Tulis sesuatu secara publik dan buat roda berputar!",
"empty_column.direct": "Anda belum memiliki pesan langsung. Ketika Anda mengirim atau menerimanya, maka akan muncul di sini.", "empty_column.direct": "Anda belum memiliki pesan langsung. Ketika Anda mengirim atau menerimanya, maka akan muncul di sini.",
"empty_column.domain_blocks": "Tidak ada topik tersembunyi.", "empty_column.domain_blocks": "Tidak ada topik tersembunyi.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Tidak ada yang sedang tren pada saat ini. Silakan mengecek lagi nanti!",
"empty_column.favourited_statuses": "Anda belum memiliki toot favorit. Ketika Anda mengirim atau menerimanya, maka akan muncul di sini.", "empty_column.favourited_statuses": "Anda belum memiliki toot favorit. Ketika Anda mengirim atau menerimanya, maka akan muncul di sini.",
"empty_column.favourites": "Belum ada yang memfavoritkan toot ini. Ketika seseorang melakukannya, akan muncul disini.", "empty_column.favourites": "Belum ada yang memfavoritkan toot ini. Ketika seseorang melakukannya, akan muncul disini.",
"empty_column.follow_recommendations": "Sepertinya tak ada saran yang dibuat untuk Anda. Anda dapat mencoba menggunakan pencarian untuk menemukan orang yang Anda ketahui atau menjelajahi tagar yang sedang tren.", "empty_column.follow_recommendations": "Sepertinya tak ada saran yang dibuat untuk Anda. Anda dapat mencoba menggunakan pencarian untuk menemukan orang yang Anda ketahui atau menjelajahi tagar yang sedang tren.",
@ -187,12 +187,12 @@
"error.unexpected_crash.next_steps_addons": "Coba nonaktifkan mereka lalu segarkan halaman. Jika tak membantu, Anda masih bisa memakai Mastodon dengan peramban berbeda atau aplikasi murni.", "error.unexpected_crash.next_steps_addons": "Coba nonaktifkan mereka lalu segarkan halaman. Jika tak membantu, Anda masih bisa memakai Mastodon dengan peramban berbeda atau aplikasi murni.",
"errors.unexpected_crash.copy_stacktrace": "Salin stacktrace ke papan klip", "errors.unexpected_crash.copy_stacktrace": "Salin stacktrace ke papan klip",
"errors.unexpected_crash.report_issue": "Laporkan masalah", "errors.unexpected_crash.report_issue": "Laporkan masalah",
"explore.search_results": "Search results", "explore.search_results": "Hasil pencarian",
"explore.suggested_follows": "For you", "explore.suggested_follows": "Untuk Anda",
"explore.title": "Explore", "explore.title": "Jelajahi",
"explore.trending_links": "News", "explore.trending_links": "Berita",
"explore.trending_statuses": "Posts", "explore.trending_statuses": "Postingan",
"explore.trending_tags": "Hashtags", "explore.trending_tags": "Tagar",
"follow_recommendations.done": "Selesai", "follow_recommendations.done": "Selesai",
"follow_recommendations.heading": "Ikuti orang yang ingin Anda lihat kirimannya! Ini ada beberapa saran.", "follow_recommendations.heading": "Ikuti orang yang ingin Anda lihat kirimannya! Ini ada beberapa saran.",
"follow_recommendations.lead": "Kiriman dari orang yang Anda ikuti akan tampil berdasar waktu di beranda Anda. Jangan takut membuat kesalahan, Anda dapat berhenti mengikuti mereka dengan mudah kapan saja!", "follow_recommendations.lead": "Kiriman dari orang yang Anda ikuti akan tampil berdasar waktu di beranda Anda. Jangan takut membuat kesalahan, Anda dapat berhenti mengikuti mereka dengan mudah kapan saja!",
@ -308,7 +308,7 @@
"navigation_bar.preferences": "Pengaturan", "navigation_bar.preferences": "Pengaturan",
"navigation_bar.public_timeline": "Linimasa gabungan", "navigation_bar.public_timeline": "Linimasa gabungan",
"navigation_bar.security": "Keamanan", "navigation_bar.security": "Keamanan",
"notification.admin.sign_up": "{name} signed up", "notification.admin.sign_up": "{name} mendaftar",
"notification.favourite": "{name} menyukai status anda", "notification.favourite": "{name} menyukai status anda",
"notification.follow": "{name} mengikuti anda", "notification.follow": "{name} mengikuti anda",
"notification.follow_request": "{name} ingin mengikuti Anda", "notification.follow_request": "{name} ingin mengikuti Anda",
@ -320,7 +320,7 @@
"notification.update": "{name} mengedit kiriman", "notification.update": "{name} mengedit kiriman",
"notifications.clear": "Hapus notifikasi", "notifications.clear": "Hapus notifikasi",
"notifications.clear_confirmation": "Apa anda yakin hendak menghapus semua notifikasi anda?", "notifications.clear_confirmation": "Apa anda yakin hendak menghapus semua notifikasi anda?",
"notifications.column_settings.admin.sign_up": "New sign-ups:", "notifications.column_settings.admin.sign_up": "Pendaftaran baru:",
"notifications.column_settings.alert": "Notifikasi desktop", "notifications.column_settings.alert": "Notifikasi desktop",
"notifications.column_settings.favourite": "Favorit:", "notifications.column_settings.favourite": "Favorit:",
"notifications.column_settings.filter_bar.advanced": "Tampilkan semua kategori", "notifications.column_settings.filter_bar.advanced": "Tampilkan semua kategori",
@ -388,43 +388,43 @@
"relative_time.seconds": "{number}d", "relative_time.seconds": "{number}d",
"relative_time.today": "hari ini", "relative_time.today": "hari ini",
"reply_indicator.cancel": "Batal", "reply_indicator.cancel": "Batal",
"report.block": "Block", "report.block": "Blokir",
"report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.", "report.block_explanation": "Anda tidak akan melihat postingan mereka. Mereka tidak akan bisa melihat postingan Anda atau mengikuti Anda. Mereka akan mampu menduga bahwa mereka diblokir.",
"report.categories.other": "Lainnya", "report.categories.other": "Lainnya",
"report.categories.spam": "Spam", "report.categories.spam": "Spam",
"report.categories.violation": "Konten melanggar satu atau lebih peraturan server", "report.categories.violation": "Konten melanggar satu atau lebih peraturan server",
"report.category.subtitle": "Choose the best match", "report.category.subtitle": "Pilih pasangan terbaik",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "Beritahu kami apa yang terjadi dengan {type} ini",
"report.category.title_account": "profile", "report.category.title_account": "profil",
"report.category.title_status": "post", "report.category.title_status": "postingan",
"report.close": "Done", "report.close": "Selesai",
"report.comment.title": "Is there anything else you think we should know?", "report.comment.title": "Adakah hal lain yang perlu kami ketahui?",
"report.forward": "Teruskan ke {target}", "report.forward": "Teruskan ke {target}",
"report.forward_hint": "Akun dari server lain. Kirim salinan laporan scr anonim ke sana?", "report.forward_hint": "Akun dari server lain. Kirim salinan laporan scr anonim ke sana?",
"report.mute": "Mute", "report.mute": "Bisukan",
"report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.", "report.mute_explanation": "Anda tidak akan melihat postingan mereka. Mereka masih dapat mengikuti Anda dan melihat postingan Anda dan tidak akan mengetahui bahwa mereka dibisukan.",
"report.next": "Next", "report.next": "Selanjutnya",
"report.placeholder": "Komentar tambahan", "report.placeholder": "Komentar tambahan",
"report.reasons.dislike": "I don't like it", "report.reasons.dislike": "Saya tidak menyukainya",
"report.reasons.dislike_description": "It is not something you want to see", "report.reasons.dislike_description": "Ini bukan hal yang ingin Anda lihat",
"report.reasons.other": "It's something else", "report.reasons.other": "Itu sesuatu yang lain",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "Permasalahan ini tidak sesuai pada kategori lain",
"report.reasons.spam": "It's spam", "report.reasons.spam": "Ini spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Tautan berbahaya, interaksi palsu, atau balasan berulang",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "Melanggar ketentuan server",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "Anda menyadari bahwa ia melanggar ketentuan tertentu",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Pilih semua yang berlaku",
"report.rules.title": "Which rules are being violated?", "report.rules.title": "Ketentuan manakah yang dilanggar?",
"report.statuses.subtitle": "Select all that apply", "report.statuses.subtitle": "Pilih semua yang berlaku",
"report.statuses.title": "Are there any posts that back up this report?", "report.statuses.title": "Adakah postingan yang mendukung pelaporan ini?",
"report.submit": "Kirim", "report.submit": "Kirim",
"report.target": "Melaporkan", "report.target": "Melaporkan",
"report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:", "report.thanks.take_action": "Berikut adalah pilihan Anda untuk mengatur apa yang Anda lihat di Mastodon:",
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:", "report.thanks.take_action_actionable": "Ketika kami meninjau ini, Anda dapat mengambil tindakan terhadap @{name}:",
"report.thanks.title": "Don't want to see this?", "report.thanks.title": "Tidak ingin melihat ini?",
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.", "report.thanks.title_actionable": "Terima kasih atas pelaporan Anda, kami akan memeriksa ini lebih lanjut.",
"report.unfollow": "Unfollow @{name}", "report.unfollow": "Berhenti mengikuti @{name}",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.", "report.unfollow_explanation": "Anda mengikuti akun ini. Untuk tidak melihat postingan mereka di Beranda Anda, berhenti mengikuti mereka.",
"search.placeholder": "Pencarian", "search.placeholder": "Pencarian",
"search_popout.search_format": "Format pencarian mahir", "search_popout.search_format": "Format pencarian mahir",
"search_popout.tips.full_text": "Teks simpel menampilkan status yang Anda tulis, favoritkan, boost-kan, atau status yang menyebut Anda, serta nama pengguna, nama yang ditampilkan, dan tagar yang cocok.", "search_popout.tips.full_text": "Teks simpel menampilkan status yang Anda tulis, favoritkan, boost-kan, atau status yang menyebut Anda, serta nama pengguna, nama yang ditampilkan, dan tagar yang cocok.",
@ -433,9 +433,9 @@
"search_popout.tips.text": "Teks sederhana menampilkan nama yang ditampilkan, nama pengguna, dan tagar yang cocok", "search_popout.tips.text": "Teks sederhana menampilkan nama yang ditampilkan, nama pengguna, dan tagar yang cocok",
"search_popout.tips.user": "pengguna", "search_popout.tips.user": "pengguna",
"search_results.accounts": "Orang", "search_results.accounts": "Orang",
"search_results.all": "All", "search_results.all": "Semua",
"search_results.hashtags": "Tagar", "search_results.hashtags": "Tagar",
"search_results.nothing_found": "Could not find anything for these search terms", "search_results.nothing_found": "Tidak dapat menemukan apapun untuk istilah-istilah pencarian ini",
"search_results.statuses": "Toot", "search_results.statuses": "Toot",
"search_results.statuses_fts_disabled": "Pencarian toot berdasarkan konten tidak diaktifkan di server Mastadon ini.", "search_results.statuses_fts_disabled": "Pencarian toot berdasarkan konten tidak diaktifkan di server Mastadon ini.",
"search_results.total": "{count, number} {count, plural, one {hasil} other {hasil}}", "search_results.total": "{count, number} {count, plural, one {hasil} other {hasil}}",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -18,7 +18,7 @@
"account.followers": "Fylgjendur", "account.followers": "Fylgjendur",
"account.followers.empty": "Ennþá fylgist enginn með þessum notanda.", "account.followers.empty": "Ennþá fylgist enginn með þessum notanda.",
"account.followers_counter": "{count, plural, one {{counter} fylgjandi} other {{counter} fylgjendur}}", "account.followers_counter": "{count, plural, one {{counter} fylgjandi} other {{counter} fylgjendur}}",
"account.following": "Following", "account.following": "Fylgist með",
"account.following_counter": "{count, plural, one {{counter} fylgist með} other {{counter} fylgjast með}}", "account.following_counter": "{count, plural, one {{counter} fylgist með} other {{counter} fylgjast með}}",
"account.follows.empty": "Þessi notandi fylgist ennþá ekki með neinum.", "account.follows.empty": "Þessi notandi fylgist ennþá ekki með neinum.",
"account.follows_you": "Fylgir þér", "account.follows_you": "Fylgir þér",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} færsla} other {{counter} færslur}}", "account.statuses_counter": "{count, plural, one {{counter} færsla} other {{counter} færslur}}",
"account.unblock": "Aflétta útilokun af @{name}", "account.unblock": "Aflétta útilokun af @{name}",
"account.unblock_domain": "Aflétta útilokun lénsins {domain}", "account.unblock_domain": "Aflétta útilokun lénsins {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Hætta að loka á",
"account.unendorse": "Ekki birta á notandasniði", "account.unendorse": "Ekki birta á notandasniði",
"account.unfollow": "Hætta að fylgja", "account.unfollow": "Hætta að fylgja",
"account.unmute": "Hætta að þagga niður í @{name}", "account.unmute": "Hætta að þagga niður í @{name}",
"account.unmute_notifications": "Hætta að þagga tilkynningar frá @{name}", "account.unmute_notifications": "Hætta að þagga tilkynningar frá @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Hætta að þagga niður",
"account_note.placeholder": "Smelltu til að bæta við minnispunkti", "account_note.placeholder": "Smelltu til að bæta við minnispunkti",
"admin.dashboard.daily_retention": "Hlutfall virkra notenda eftir nýskráningu eftir dögum", "admin.dashboard.daily_retention": "Hlutfall virkra notenda eftir nýskráningu eftir dögum",
"admin.dashboard.monthly_retention": "Hlutfall virkra notenda eftir nýskráningu eftir mánuðum", "admin.dashboard.monthly_retention": "Hlutfall virkra notenda eftir nýskráningu eftir mánuðum",

View File

@ -18,7 +18,7 @@
"account.followers": "Follower", "account.followers": "Follower",
"account.followers.empty": "Nessuno segue ancora questo utente.", "account.followers.empty": "Nessuno segue ancora questo utente.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Follower}}", "account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Follower}}",
"account.following": "Following", "account.following": "Seguiti",
"account.following_counter": "{count, plural, other {{counter} Seguiti}}", "account.following_counter": "{count, plural, other {{counter} Seguiti}}",
"account.follows.empty": "Questo utente non segue nessuno ancora.", "account.follows.empty": "Questo utente non segue nessuno ancora.",
"account.follows_you": "Ti segue", "account.follows_you": "Ti segue",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Post} other {{counter} Post}}", "account.statuses_counter": "{count, plural, one {{counter} Post} other {{counter} Post}}",
"account.unblock": "Sblocca @{name}", "account.unblock": "Sblocca @{name}",
"account.unblock_domain": "Sblocca il dominio {domain}", "account.unblock_domain": "Sblocca il dominio {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Sblocca",
"account.unendorse": "Non mostrare sul profilo", "account.unendorse": "Non mostrare sul profilo",
"account.unfollow": "Smetti di seguire", "account.unfollow": "Smetti di seguire",
"account.unmute": "Riattiva @{name}", "account.unmute": "Riattiva @{name}",
"account.unmute_notifications": "Riattiva le notifiche da @{name}", "account.unmute_notifications": "Riattiva le notifiche da @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Riattiva l'audio",
"account_note.placeholder": "Clicca per aggiungere una nota", "account_note.placeholder": "Clicca per aggiungere una nota",
"admin.dashboard.daily_retention": "Tasso di ritenzione utente per giorno dopo la registrazione", "admin.dashboard.daily_retention": "Tasso di ritenzione utente per giorno dopo la registrazione",
"admin.dashboard.monthly_retention": "Tasso di ritenzione utente per mese dopo la registrazione", "admin.dashboard.monthly_retention": "Tasso di ritenzione utente per mese dopo la registrazione",

View File

@ -191,12 +191,12 @@
"error.unexpected_crash.next_steps_addons": "それらを無効化してからリロードをお試しください。それでも解決しない場合、他のブラウザやアプリで Mastodon をお試しください。", "error.unexpected_crash.next_steps_addons": "それらを無効化してからリロードをお試しください。それでも解決しない場合、他のブラウザやアプリで Mastodon をお試しください。",
"errors.unexpected_crash.copy_stacktrace": "スタックトレースをクリップボードにコピー", "errors.unexpected_crash.copy_stacktrace": "スタックトレースをクリップボードにコピー",
"errors.unexpected_crash.report_issue": "問題を報告", "errors.unexpected_crash.report_issue": "問題を報告",
"explore.search_results": "Search results", "explore.search_results": "検索結果",
"explore.suggested_follows": "For you", "explore.suggested_follows": "For you",
"explore.title": "Explore", "explore.title": "エクスプローラー",
"explore.trending_links": "News", "explore.trending_links": "ニュース",
"explore.trending_statuses": "Posts", "explore.trending_statuses": "投稿",
"explore.trending_tags": "Hashtags", "explore.trending_tags": "ハッシュタグ",
"follow_recommendations.done": "完了", "follow_recommendations.done": "完了",
"follow_recommendations.heading": "投稿を見たい人をフォローしてください!ここにおすすめがあります。", "follow_recommendations.heading": "投稿を見たい人をフォローしてください!ここにおすすめがあります。",
"follow_recommendations.lead": "あなたがフォローしている人の投稿は、ホームフィードに時系列で表示されます。いつでも簡単に解除できるので、気軽にフォローしてみてください!", "follow_recommendations.lead": "あなたがフォローしている人の投稿は、ホームフィードに時系列で表示されます。いつでも簡単に解除できるので、気軽にフォローしてみてください!",
@ -313,7 +313,7 @@
"navigation_bar.public_timeline": "連合タイムライン", "navigation_bar.public_timeline": "連合タイムライン",
"navigation_bar.misc": "その他", "navigation_bar.misc": "その他",
"navigation_bar.security": "セキュリティ", "navigation_bar.security": "セキュリティ",
"notification.admin.sign_up": "{name} signed up", "notification.admin.sign_up": "{name} がサインアップしました",
"notification.favourite": "{name}さんがあなたの投稿をお気に入りに登録しました", "notification.favourite": "{name}さんがあなたの投稿をお気に入りに登録しました",
"notification.follow": "{name}さんにフォローされました", "notification.follow": "{name}さんにフォローされました",
"notification.follow_request": "{name} さんがあなたにフォローリクエストしました", "notification.follow_request": "{name} さんがあなたにフォローリクエストしました",
@ -393,34 +393,34 @@
"relative_time.seconds": "{number}秒前", "relative_time.seconds": "{number}秒前",
"relative_time.today": "今日", "relative_time.today": "今日",
"reply_indicator.cancel": "キャンセル", "reply_indicator.cancel": "キャンセル",
"report.block": "Block", "report.block": "ブロック",
"report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.", "report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.",
"report.categories.other": "その他", "report.categories.other": "その他",
"report.categories.spam": "スパム", "report.categories.spam": "スパム",
"report.categories.violation": "サーバーのルールに違反", "report.categories.violation": "サーバーのルールに違反",
"report.category.subtitle": "Choose the best match", "report.category.subtitle": "Choose the best match",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "Tell us what's going on with this {type}",
"report.category.title_account": "profile", "report.category.title_account": "プロフィール",
"report.category.title_status": "post", "report.category.title_status": "投稿",
"report.close": "Done", "report.close": "完了",
"report.comment.title": "Is there anything else you think we should know?", "report.comment.title": "Is there anything else you think we should know?",
"report.forward": "{target} に転送する", "report.forward": "{target} に転送する",
"report.forward_hint": "このアカウントは別のサーバーに所属しています。通報内容を匿名で転送しますか?", "report.forward_hint": "このアカウントは別のサーバーに所属しています。通報内容を匿名で転送しますか?",
"report.mute": "Mute", "report.mute": "ミュート",
"report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.", "report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.",
"report.next": "Next", "report.next": "次へ",
"report.placeholder": "追加コメント", "report.placeholder": "追加コメント",
"report.reasons.dislike": "I don't like it", "report.reasons.dislike": "I don't like it",
"report.reasons.dislike_description": "It is not something you want to see", "report.reasons.dislike_description": "It is not something you want to see",
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "サーバーのルールに違反しています",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "当てはまるものをすべて選んでください:",
"report.rules.title": "Which rules are being violated?", "report.rules.title": "どのルールに違反していますか?",
"report.statuses.subtitle": "Select all that apply", "report.statuses.subtitle": "当てはまるものをすべて選んでください:",
"report.statuses.title": "Are there any posts that back up this report?", "report.statuses.title": "Are there any posts that back up this report?",
"report.submit": "通報する", "report.submit": "通報する",
"report.target": "{target}さんを通報する", "report.target": "{target}さんを通報する",
@ -428,8 +428,8 @@
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:", "report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:",
"report.thanks.title": "Don't want to see this?", "report.thanks.title": "Don't want to see this?",
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.", "report.thanks.title_actionable": "Thanks for reporting, we'll look into this.",
"report.unfollow": "Unfollow @{name}", "report.unfollow": "@{name}のフォローを解除",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.", "report.unfollow_explanation": "このアカウントをフォローしています。ホームフィードに彼らの投稿を表示しないようにするには、彼らのフォローを外してください。",
"search.placeholder": "検索", "search.placeholder": "検索",
"search_popout.search_format": "高度な検索フォーマット", "search_popout.search_format": "高度な検索フォーマット",
"search_popout.tips.full_text": "表示名やユーザー名、ハッシュタグのほか、あなたの投稿やお気に入り、ブーストした投稿、返信に一致する単純なテキスト。", "search_popout.tips.full_text": "表示名やユーザー名、ハッシュタグのほか、あなたの投稿やお気に入り、ブーストした投稿、返信に一致する単純なテキスト。",
@ -438,7 +438,7 @@
"search_popout.tips.text": "表示名やユーザー名、ハッシュタグに一致する単純なテキスト", "search_popout.tips.text": "表示名やユーザー名、ハッシュタグに一致する単純なテキスト",
"search_popout.tips.user": "ユーザー", "search_popout.tips.user": "ユーザー",
"search_results.accounts": "人々", "search_results.accounts": "人々",
"search_results.all": "All", "search_results.all": "すべて",
"search_results.hashtags": "ハッシュタグ", "search_results.hashtags": "ハッシュタグ",
"search_results.nothing_found": "Could not find anything for these search terms", "search_results.nothing_found": "Could not find anything for these search terms",
"search_results.statuses": "投稿", "search_results.statuses": "投稿",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -188,11 +188,11 @@
"errors.unexpected_crash.copy_stacktrace": "Nɣel stacktrace ɣef wafus", "errors.unexpected_crash.copy_stacktrace": "Nɣel stacktrace ɣef wafus",
"errors.unexpected_crash.report_issue": "Mmel ugur", "errors.unexpected_crash.report_issue": "Mmel ugur",
"explore.search_results": "Search results", "explore.search_results": "Search results",
"explore.suggested_follows": "For you", "explore.suggested_follows": "I kečč·kem",
"explore.title": "Explore", "explore.title": "Explore",
"explore.trending_links": "News", "explore.trending_links": "News",
"explore.trending_statuses": "Posts", "explore.trending_statuses": "Tisuffaɣ",
"explore.trending_tags": "Hashtags", "explore.trending_tags": "Ihacṭagen",
"follow_recommendations.done": "Immed", "follow_recommendations.done": "Immed",
"follow_recommendations.heading": "Follow people you'd like to see posts from! Here are some suggestions.", "follow_recommendations.heading": "Follow people you'd like to see posts from! Here are some suggestions.",
"follow_recommendations.lead": "Posts from people you follow will show up in chronological order on your home feed. Don't be afraid to make mistakes, you can unfollow people just as easily any time!", "follow_recommendations.lead": "Posts from people you follow will show up in chronological order on your home feed. Don't be afraid to make mistakes, you can unfollow people just as easily any time!",
@ -395,13 +395,13 @@
"report.categories.violation": "Content violates one or more server rules", "report.categories.violation": "Content violates one or more server rules",
"report.category.subtitle": "Choose the best match", "report.category.subtitle": "Choose the best match",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "Tell us what's going on with this {type}",
"report.category.title_account": "profile", "report.category.title_account": "ameγnu",
"report.category.title_status": "post", "report.category.title_status": "tasuffeɣt",
"report.close": "Done", "report.close": "Immed",
"report.comment.title": "Is there anything else you think we should know?", "report.comment.title": "Is there anything else you think we should know?",
"report.forward": "Bren-it ɣeṛ {target}", "report.forward": "Bren-it ɣeṛ {target}",
"report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?", "report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?",
"report.mute": "Mute", "report.mute": "Sgugem",
"report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.", "report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.",
"report.next": "Next", "report.next": "Next",
"report.placeholder": "Iwenniten-nniḍen", "report.placeholder": "Iwenniten-nniḍen",
@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -18,7 +18,7 @@
"account.followers": "Şopîner", "account.followers": "Şopîner",
"account.followers.empty": "Kesekî hin ev bikarhêner neşopandiye.", "account.followers.empty": "Kesekî hin ev bikarhêner neşopandiye.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
"account.following": "Following", "account.following": "Dişopîne",
"account.following_counter": "{count, plural, one {{counter} Dişopîne} other {{counter} Dişopîne}}", "account.following_counter": "{count, plural, one {{counter} Dişopîne} other {{counter} Dişopîne}}",
"account.follows.empty": "Ev bikarhêner hin kesekî heya niha neşopandiye.", "account.follows.empty": "Ev bikarhêner hin kesekî heya niha neşopandiye.",
"account.follows_you": "Te dişopîne", "account.follows_you": "Te dişopîne",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural,one {{counter} şandî}other {{counter} şandî}}", "account.statuses_counter": "{count, plural,one {{counter} şandî}other {{counter} şandî}}",
"account.unblock": "Astengê li ser @{name} rake", "account.unblock": "Astengê li ser @{name} rake",
"account.unblock_domain": "Astengê li ser navperê {domain} rake", "account.unblock_domain": "Astengê li ser navperê {domain} rake",
"account.unblock_short": "Unblock", "account.unblock_short": "Astengiyê rake",
"account.unendorse": "Li ser profîl nîşan neke", "account.unendorse": "Li ser profîl nîşan neke",
"account.unfollow": "Neşopîne", "account.unfollow": "Neşopîne",
"account.unmute": "@{name} Bêdeng bike", "account.unmute": "@{name} Bêdeng bike",
"account.unmute_notifications": "Agahdariyan ji @{name} bêdeng bike", "account.unmute_notifications": "Agahdariyan ji @{name} bêdeng bike",
"account.unmute_short": "Unmute", "account.unmute_short": "Bêdeng neke",
"account_note.placeholder": "Bitikîne bo nîşeyekê tevlî bikî", "account_note.placeholder": "Bitikîne bo nîşeyekê tevlî bikî",
"admin.dashboard.daily_retention": "Rêjeya ragirtina bikarhêner bi roj piştî tomarkirinê", "admin.dashboard.daily_retention": "Rêjeya ragirtina bikarhêner bi roj piştî tomarkirinê",
"admin.dashboard.monthly_retention": "Rêjeya ragirtina bikarhêner bi meh piştî tomarkirinê", "admin.dashboard.monthly_retention": "Rêjeya ragirtina bikarhêner bi meh piştî tomarkirinê",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -18,7 +18,7 @@
"account.followers": "팔로워", "account.followers": "팔로워",
"account.followers.empty": "아직 아무도 이 유저를 팔로우하고 있지 않습니다.", "account.followers.empty": "아직 아무도 이 유저를 팔로우하고 있지 않습니다.",
"account.followers_counter": "{counter} 팔로워", "account.followers_counter": "{counter} 팔로워",
"account.following": "Following", "account.following": "팔로잉",
"account.following_counter": "{counter} 팔로잉", "account.following_counter": "{counter} 팔로잉",
"account.follows.empty": "이 유저는 아직 아무도 팔로우하고 있지 않습니다.", "account.follows.empty": "이 유저는 아직 아무도 팔로우하고 있지 않습니다.",
"account.follows_you": "날 팔로우합니다", "account.follows_you": "날 팔로우합니다",
@ -41,12 +41,12 @@
"account.statuses_counter": "{counter} 게시물", "account.statuses_counter": "{counter} 게시물",
"account.unblock": "차단 해제", "account.unblock": "차단 해제",
"account.unblock_domain": "도메인 {domain} 차단 해제", "account.unblock_domain": "도메인 {domain} 차단 해제",
"account.unblock_short": "Unblock", "account.unblock_short": "차단 해제",
"account.unendorse": "프로필에 추천하지 않기", "account.unendorse": "프로필에 추천하지 않기",
"account.unfollow": "팔로우 해제", "account.unfollow": "팔로우 해제",
"account.unmute": "@{name} 뮤트 해제", "account.unmute": "@{name} 뮤트 해제",
"account.unmute_notifications": "@{name}의 알림 뮤트 해제", "account.unmute_notifications": "@{name}의 알림 뮤트 해제",
"account.unmute_short": "Unmute", "account.unmute_short": "뮤트 해제",
"account_note.placeholder": "클릭해서 노트 추가", "account_note.placeholder": "클릭해서 노트 추가",
"admin.dashboard.daily_retention": "가입 후 일별 사용자 유지율", "admin.dashboard.daily_retention": "가입 후 일별 사용자 유지율",
"admin.dashboard.monthly_retention": "가입 후 월별 사용자 유지율", "admin.dashboard.monthly_retention": "가입 후 월별 사용자 유지율",
@ -134,8 +134,8 @@
"confirmations.redraft.message": "정말로 이 게시물을 삭제하고 다시 쓰시겠습니까? 해당 포스트에 대한 부스트와 즐겨찾기를 잃게 되고 원본에 대한 답장은 연결 되지 않습니다.", "confirmations.redraft.message": "정말로 이 게시물을 삭제하고 다시 쓰시겠습니까? 해당 포스트에 대한 부스트와 즐겨찾기를 잃게 되고 원본에 대한 답장은 연결 되지 않습니다.",
"confirmations.reply.confirm": "답글", "confirmations.reply.confirm": "답글",
"confirmations.reply.message": "답글을 달기 위해 현재 작성 중인 메시지가 덮어 씌워집니다. 진행하시겠습니까?", "confirmations.reply.message": "답글을 달기 위해 현재 작성 중인 메시지가 덮어 씌워집니다. 진행하시겠습니까?",
"confirmations.unfollow.confirm": "팔로우", "confirmations.unfollow.confirm": "팔로우 해제",
"confirmations.unfollow.message": "정말로 {name}를 언팔로우하시겠습니까?", "confirmations.unfollow.message": "정말로 {name} 님을 팔로우 해제하시겠습니까?",
"conversation.delete": "대화 삭제", "conversation.delete": "대화 삭제",
"conversation.mark_as_read": "읽은 상태로 표시", "conversation.mark_as_read": "읽은 상태로 표시",
"conversation.open": "대화 보기", "conversation.open": "대화 보기",
@ -168,7 +168,7 @@
"empty_column.community": "로컬 타임라인에 아무 것도 없습니다. 아무거나 적어 보세요!", "empty_column.community": "로컬 타임라인에 아무 것도 없습니다. 아무거나 적어 보세요!",
"empty_column.direct": "아직 다이렉트 메시지가 없습니다. 다이렉트 메시지를 보내거나 받은 경우, 여기에 표시 됩니다.", "empty_column.direct": "아직 다이렉트 메시지가 없습니다. 다이렉트 메시지를 보내거나 받은 경우, 여기에 표시 됩니다.",
"empty_column.domain_blocks": "아직 차단한 도메인이 없습니다.", "empty_column.domain_blocks": "아직 차단한 도메인이 없습니다.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "아직 유행하는 것이 없습니다. 나중에 다시 확인하세요!",
"empty_column.favourited_statuses": "아직 즐겨찾기 한 게시물이 없습니다. 게시물을 즐겨찾기 하면 여기에 나타납니다.", "empty_column.favourited_statuses": "아직 즐겨찾기 한 게시물이 없습니다. 게시물을 즐겨찾기 하면 여기에 나타납니다.",
"empty_column.favourites": "아직 아무도 이 게시물을 즐겨찾기 하지 않았습니다. 누군가 즐겨찾기를 하면 여기에 나타납니다.", "empty_column.favourites": "아직 아무도 이 게시물을 즐겨찾기 하지 않았습니다. 누군가 즐겨찾기를 하면 여기에 나타납니다.",
"empty_column.follow_recommendations": "당신을 위한 제안이 생성될 수 없는 것 같습니다. 알 수도 있는 사람을 검색하거나 유행하는 해시태그를 둘러볼 수 있습니다.", "empty_column.follow_recommendations": "당신을 위한 제안이 생성될 수 없는 것 같습니다. 알 수도 있는 사람을 검색하거나 유행하는 해시태그를 둘러볼 수 있습니다.",
@ -187,12 +187,12 @@
"error.unexpected_crash.next_steps_addons": "그것들을 끄고 페이지를 새로고침 해보세요. 그래도 해결되지 않는 경우, 다른 브라우저나 네이티브 앱으로도 마스토돈을 이용하실 수 있습니다.", "error.unexpected_crash.next_steps_addons": "그것들을 끄고 페이지를 새로고침 해보세요. 그래도 해결되지 않는 경우, 다른 브라우저나 네이티브 앱으로도 마스토돈을 이용하실 수 있습니다.",
"errors.unexpected_crash.copy_stacktrace": "에러 내용을 클립보드에 복사", "errors.unexpected_crash.copy_stacktrace": "에러 내용을 클립보드에 복사",
"errors.unexpected_crash.report_issue": "문제 신고", "errors.unexpected_crash.report_issue": "문제 신고",
"explore.search_results": "Search results", "explore.search_results": "검색 결과",
"explore.suggested_follows": "For you", "explore.suggested_follows": "당신을 위한 추천",
"explore.title": "Explore", "explore.title": "둘러보기",
"explore.trending_links": "News", "explore.trending_links": "소식",
"explore.trending_statuses": "Posts", "explore.trending_statuses": "게시물",
"explore.trending_tags": "Hashtags", "explore.trending_tags": "해시태그",
"follow_recommendations.done": "완료", "follow_recommendations.done": "완료",
"follow_recommendations.heading": "게시물을 받아 볼 사람들을 팔로우 하세요! 여기 몇몇의 추천이 있습니다.", "follow_recommendations.heading": "게시물을 받아 볼 사람들을 팔로우 하세요! 여기 몇몇의 추천이 있습니다.",
"follow_recommendations.lead": "당신이 팔로우 하는 사람들의 게시물이 시간순으로 정렬되어 당신의 홈 피드에 표시될 것입니다. 실수를 두려워 하지 마세요, 언제든지 쉽게 팔로우 취소를 할 수 있습니다!", "follow_recommendations.lead": "당신이 팔로우 하는 사람들의 게시물이 시간순으로 정렬되어 당신의 홈 피드에 표시될 것입니다. 실수를 두려워 하지 마세요, 언제든지 쉽게 팔로우 취소를 할 수 있습니다!",
@ -308,7 +308,7 @@
"navigation_bar.preferences": "사용자 설정", "navigation_bar.preferences": "사용자 설정",
"navigation_bar.public_timeline": "연합 타임라인", "navigation_bar.public_timeline": "연합 타임라인",
"navigation_bar.security": "보안", "navigation_bar.security": "보안",
"notification.admin.sign_up": "{name} signed up", "notification.admin.sign_up": "{name} 님이 가입했습니다",
"notification.favourite": "{name} 님이 즐겨찾기 했습니다", "notification.favourite": "{name} 님이 즐겨찾기 했습니다",
"notification.follow": "{name} 님이 나를 팔로우 했습니다", "notification.follow": "{name} 님이 나를 팔로우 했습니다",
"notification.follow_request": "{name} 님이 팔로우 요청을 보냈습니다", "notification.follow_request": "{name} 님이 팔로우 요청을 보냈습니다",
@ -320,7 +320,7 @@
"notification.update": "{name} 님이 게시물을 수정했습니다", "notification.update": "{name} 님이 게시물을 수정했습니다",
"notifications.clear": "알림 지우기", "notifications.clear": "알림 지우기",
"notifications.clear_confirmation": "정말로 알림을 삭제하시겠습니까?", "notifications.clear_confirmation": "정말로 알림을 삭제하시겠습니까?",
"notifications.column_settings.admin.sign_up": "New sign-ups:", "notifications.column_settings.admin.sign_up": "새로운 가입:",
"notifications.column_settings.alert": "데스크탑 알림", "notifications.column_settings.alert": "데스크탑 알림",
"notifications.column_settings.favourite": "즐겨찾기:", "notifications.column_settings.favourite": "즐겨찾기:",
"notifications.column_settings.filter_bar.advanced": "카테고리의 모든 종류를 표시", "notifications.column_settings.filter_bar.advanced": "카테고리의 모든 종류를 표시",
@ -388,43 +388,43 @@
"relative_time.seconds": "{number}초 전", "relative_time.seconds": "{number}초 전",
"relative_time.today": "오늘", "relative_time.today": "오늘",
"reply_indicator.cancel": "취소", "reply_indicator.cancel": "취소",
"report.block": "Block", "report.block": "차단",
"report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.", "report.block_explanation": "당신은 그의 게시물을 보지 않게 됩니다. 그는 당신의 게시물을 보거나 팔로우 할 수 없습니다. 그가 차단되었다는 사실을 알 수 있습니다.",
"report.categories.other": "기타", "report.categories.other": "기타",
"report.categories.spam": "스팸", "report.categories.spam": "스팸",
"report.categories.violation": "컨텐츠가 한 개 이상의 서버 규칙을 위반합니다", "report.categories.violation": "컨텐츠가 한 개 이상의 서버 규칙을 위반합니다",
"report.category.subtitle": "Choose the best match", "report.category.subtitle": "가장 알맞은 것을 선택하세요",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "이 {type}에 무슨 문제가 있는지 알려주세요",
"report.category.title_account": "profile", "report.category.title_account": "프로필",
"report.category.title_status": "post", "report.category.title_status": "게시물",
"report.close": "Done", "report.close": "완료",
"report.comment.title": "Is there anything else you think we should know?", "report.comment.title": "우리가 더 알아야 할 내용이 있나요?",
"report.forward": "{target}에 포워드 됨", "report.forward": "{target}에 포워드 됨",
"report.forward_hint": "이 계정은 다른 서버에 있습니다. 익명화 된 사본을 해당 서버에도 전송할까요?", "report.forward_hint": "이 계정은 다른 서버에 있습니다. 익명화 된 사본을 해당 서버에도 전송할까요?",
"report.mute": "Mute", "report.mute": "침묵",
"report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.", "report.mute_explanation": "당신은 그의 게시물을 보지 않게 됩니다. 그는 여전히 당신을 팔로우 하거나 당신의 게시물을 볼 수 있으며 뮤트 되었는지 알지 못합니다.",
"report.next": "Next", "report.next": "다음",
"report.placeholder": "코멘트", "report.placeholder": "코멘트",
"report.reasons.dislike": "I don't like it", "report.reasons.dislike": "마음에 안듭니다",
"report.reasons.dislike_description": "It is not something you want to see", "report.reasons.dislike_description": "내가 보기 싫은 종류에 속합니다",
"report.reasons.other": "It's something else", "report.reasons.other": "기타",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "이슈가 다른 분류에 속하지 않습니다",
"report.reasons.spam": "It's spam", "report.reasons.spam": "스팸입니다",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "악성 링크, 반응 스팸, 또는 반복적인 답글",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "서버 규칙을 위반합니다",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "특정 규칙을 위반합니다",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "해당하는 사항을 모두 선택하세요",
"report.rules.title": "Which rules are being violated?", "report.rules.title": "어떤 규칙을 위반했나요?",
"report.statuses.subtitle": "Select all that apply", "report.statuses.subtitle": "해당하는 사항을 모두 선택하세요",
"report.statuses.title": "Are there any posts that back up this report?", "report.statuses.title": "이 신고에 대해서 더 참고해야 할 게시물이 있나요?",
"report.submit": "신고하기", "report.submit": "신고하기",
"report.target": "{target} 신고하기", "report.target": "{target} 신고하기",
"report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:", "report.thanks.take_action": "마스토돈에서 나에게 보이는 것을 조절하기 위한 몇 가지 선택사항들이 존재합니다:",
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:", "report.thanks.take_action_actionable": "서버의 중재자들이 이것을 심사하는 동안, 당신은 @{name}에 대한 행동을 취할 수 있습니다:",
"report.thanks.title": "Don't want to see this?", "report.thanks.title": "이런 것을 보지 않길 원하나요?",
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.", "report.thanks.title_actionable": "신고해주셔서 감사합니다, 중재자분들이 확인할 예정입니다.",
"report.unfollow": "Unfollow @{name}", "report.unfollow": "@{name}을 팔로우 해제",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.", "report.unfollow_explanation": "당신을 이 계정을 팔로우 하고 있습니다. 홈 피드에서 게시물을 보지 않으려면, 팔로우를 해제하세요.",
"search.placeholder": "검색", "search.placeholder": "검색",
"search_popout.search_format": "고급 검색 방법", "search_popout.search_format": "고급 검색 방법",
"search_popout.tips.full_text": "단순한 텍스트 검색은 당신이 작성했거나, 관심글로 지정했거나, 부스트했거나, 멘션을 받은 게시글, 그리고 유저네임, 디스플레이네임, 해시태그를 반환합니다.", "search_popout.tips.full_text": "단순한 텍스트 검색은 당신이 작성했거나, 관심글로 지정했거나, 부스트했거나, 멘션을 받은 게시글, 그리고 유저네임, 디스플레이네임, 해시태그를 반환합니다.",
@ -433,9 +433,9 @@
"search_popout.tips.text": "단순한 텍스트 검색은 관계된 프로필 이름, 유저 이름 그리고 해시태그를 표시합니다", "search_popout.tips.text": "단순한 텍스트 검색은 관계된 프로필 이름, 유저 이름 그리고 해시태그를 표시합니다",
"search_popout.tips.user": "유저", "search_popout.tips.user": "유저",
"search_results.accounts": "사람", "search_results.accounts": "사람",
"search_results.all": "All", "search_results.all": "전부",
"search_results.hashtags": "해시태그", "search_results.hashtags": "해시태그",
"search_results.nothing_found": "Could not find anything for these search terms", "search_results.nothing_found": "검색어에 대한 결과를 찾을 수 없습니다",
"search_results.statuses": "게시물", "search_results.statuses": "게시물",
"search_results.statuses_fts_disabled": "이 마스토돈 서버에선 게시물의 내용을 통한 검색이 활성화 되어 있지 않습니다.", "search_results.statuses_fts_disabled": "이 마스토돈 서버에선 게시물의 내용을 통한 검색이 활성화 되어 있지 않습니다.",
"search_results.total": "{count, number}건의 결과", "search_results.total": "{count, number}건의 결과",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -18,7 +18,7 @@
"account.followers": "Sekotāji", "account.followers": "Sekotāji",
"account.followers.empty": "Šim lietotājam patreiz nav sekotāju.", "account.followers.empty": "Šim lietotājam patreiz nav sekotāju.",
"account.followers_counter": "{count, plural, one {{counter} Sekotājs} other {{counter} Sekotāji}}", "account.followers_counter": "{count, plural, one {{counter} Sekotājs} other {{counter} Sekotāji}}",
"account.following": "Following", "account.following": "Seko",
"account.following_counter": "{count, plural, one {{counter} Sekojošs} other {{counter} Sekojoši}}", "account.following_counter": "{count, plural, one {{counter} Sekojošs} other {{counter} Sekojoši}}",
"account.follows.empty": "Šis lietotājs pagaidām nevienam neseko.", "account.follows.empty": "Šis lietotājs pagaidām nevienam neseko.",
"account.follows_you": "Seko tev", "account.follows_you": "Seko tev",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} ziņa} other {{counter} ziņas}}", "account.statuses_counter": "{count, plural, one {{counter} ziņa} other {{counter} ziņas}}",
"account.unblock": "Atbloķēt lietotāju @{name}", "account.unblock": "Atbloķēt lietotāju @{name}",
"account.unblock_domain": "Atbloķēt domēnu {domain}", "account.unblock_domain": "Atbloķēt domēnu {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Atbloķēt",
"account.unendorse": "Neattēlot profilā", "account.unendorse": "Neattēlot profilā",
"account.unfollow": "Pārstāt sekot", "account.unfollow": "Pārstāt sekot",
"account.unmute": "Noņemt apklusinājumu @{name}", "account.unmute": "Noņemt apklusinājumu @{name}",
"account.unmute_notifications": "Rādīt paziņojumus no lietotāja @{name}", "account.unmute_notifications": "Rādīt paziņojumus no lietotāja @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Ieslēgt skaņu",
"account_note.placeholder": "Noklikšķiniet, lai pievienotu piezīmi", "account_note.placeholder": "Noklikšķiniet, lai pievienotu piezīmi",
"admin.dashboard.daily_retention": "Lietotāju saglabāšanas rādītājs dienā pēc reģistrēšanās", "admin.dashboard.daily_retention": "Lietotāju saglabāšanas rādītājs dienā pēc reģistrēšanās",
"admin.dashboard.monthly_retention": "Lietotāju saglabāšanas rādītājs mēnesī pēc reģistrēšanās", "admin.dashboard.monthly_retention": "Lietotāju saglabāšanas rādītājs mēnesī pēc reģistrēšanās",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -18,7 +18,7 @@
"account.followers": "Śledzący", "account.followers": "Śledzący",
"account.followers.empty": "Nikt jeszcze nie śledzi tego użytkownika.", "account.followers.empty": "Nikt jeszcze nie śledzi tego użytkownika.",
"account.followers_counter": "{count, plural, one {{counter} śledzący} few {{counter} śledzących} many {{counter} śledzących} other {{counter} śledzących}}", "account.followers_counter": "{count, plural, one {{counter} śledzący} few {{counter} śledzących} many {{counter} śledzących} other {{counter} śledzących}}",
"account.following": "Following", "account.following": "Śledzenie",
"account.following_counter": "{count, plural, one {{counter} śledzony} few {{counter} śledzonych} many {{counter} śledzonych} other {{counter} śledzonych}}", "account.following_counter": "{count, plural, one {{counter} śledzony} few {{counter} śledzonych} many {{counter} śledzonych} other {{counter} śledzonych}}",
"account.follows.empty": "Ten użytkownik nie śledzi jeszcze nikogo.", "account.follows.empty": "Ten użytkownik nie śledzi jeszcze nikogo.",
"account.follows_you": "Śledzi Cię", "account.follows_you": "Śledzi Cię",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} wpis} few {{counter} wpisy} many {{counter} wpisów} other {{counter} wpisów}}", "account.statuses_counter": "{count, plural, one {{counter} wpis} few {{counter} wpisy} many {{counter} wpisów} other {{counter} wpisów}}",
"account.unblock": "Odblokuj @{name}", "account.unblock": "Odblokuj @{name}",
"account.unblock_domain": "Odblokuj domenę {domain}", "account.unblock_domain": "Odblokuj domenę {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Odblokuj",
"account.unendorse": "Przestań polecać", "account.unendorse": "Przestań polecać",
"account.unfollow": "Przestań śledzić", "account.unfollow": "Przestań śledzić",
"account.unmute": "Cofnij wyciszenie @{name}", "account.unmute": "Cofnij wyciszenie @{name}",
"account.unmute_notifications": "Cofnij wyciszenie powiadomień od @{name}", "account.unmute_notifications": "Cofnij wyciszenie powiadomień od @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Włącz dźwięki",
"account_note.placeholder": "Naciśnij aby dodać notatkę", "account_note.placeholder": "Naciśnij aby dodać notatkę",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
@ -415,7 +415,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Niebezpieczne linki, fałszywe zaangażowanie lub powtarzające się odpowiedzi",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -187,10 +187,10 @@
"error.unexpected_crash.next_steps_addons": "Tente desativá-los e atualizar a página. Se isso não ajudar, você ainda poderá usar o Mastodon por meio de um navegador diferente ou de um aplicativo nativo.", "error.unexpected_crash.next_steps_addons": "Tente desativá-los e atualizar a página. Se isso não ajudar, você ainda poderá usar o Mastodon por meio de um navegador diferente ou de um aplicativo nativo.",
"errors.unexpected_crash.copy_stacktrace": "Copiar dados do erro para área de transferência", "errors.unexpected_crash.copy_stacktrace": "Copiar dados do erro para área de transferência",
"errors.unexpected_crash.report_issue": "Reportar problema", "errors.unexpected_crash.report_issue": "Reportar problema",
"explore.search_results": "Search results", "explore.search_results": "Resultado da pesquisa",
"explore.suggested_follows": "For you", "explore.suggested_follows": "Para você",
"explore.title": "Explore", "explore.title": "Explorar",
"explore.trending_links": "News", "explore.trending_links": "Novidades",
"explore.trending_statuses": "Posts", "explore.trending_statuses": "Posts",
"explore.trending_tags": "Hashtags", "explore.trending_tags": "Hashtags",
"follow_recommendations.done": "Salvar", "follow_recommendations.done": "Salvar",
@ -308,7 +308,7 @@
"navigation_bar.preferences": "Preferências", "navigation_bar.preferences": "Preferências",
"navigation_bar.public_timeline": "Linha global", "navigation_bar.public_timeline": "Linha global",
"navigation_bar.security": "Segurança", "navigation_bar.security": "Segurança",
"notification.admin.sign_up": "{name} signed up", "notification.admin.sign_up": "{name} se inscreveu",
"notification.favourite": "{name} favoritou teu toot", "notification.favourite": "{name} favoritou teu toot",
"notification.follow": "{name} te seguiu", "notification.follow": "{name} te seguiu",
"notification.follow_request": "{name} quer te seguir", "notification.follow_request": "{name} quer te seguir",
@ -320,7 +320,7 @@
"notification.update": "{name} editou uma publicação", "notification.update": "{name} editou uma publicação",
"notifications.clear": "Limpar notificações", "notifications.clear": "Limpar notificações",
"notifications.clear_confirmation": "Você tem certeza de que deseja limpar todas as suas notificações?", "notifications.clear_confirmation": "Você tem certeza de que deseja limpar todas as suas notificações?",
"notifications.column_settings.admin.sign_up": "New sign-ups:", "notifications.column_settings.admin.sign_up": "Novas inscrições:",
"notifications.column_settings.alert": "Notificações no computador", "notifications.column_settings.alert": "Notificações no computador",
"notifications.column_settings.favourite": "Favoritos:", "notifications.column_settings.favourite": "Favoritos:",
"notifications.column_settings.filter_bar.advanced": "Mostrar todas as categorias", "notifications.column_settings.filter_bar.advanced": "Mostrar todas as categorias",
@ -388,41 +388,41 @@
"relative_time.seconds": "{number}s", "relative_time.seconds": "{number}s",
"relative_time.today": "hoje", "relative_time.today": "hoje",
"reply_indicator.cancel": "Cancelar", "reply_indicator.cancel": "Cancelar",
"report.block": "Block", "report.block": "Bloquear",
"report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.", "report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.",
"report.categories.other": "Outro", "report.categories.other": "Outro",
"report.categories.spam": "Spam", "report.categories.spam": "Spam",
"report.categories.violation": "O conteúdo viola uma ou mais regras do servidor", "report.categories.violation": "O conteúdo viola uma ou mais regras do servidor",
"report.category.subtitle": "Choose the best match", "report.category.subtitle": "Choose the best match",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "Tell us what's going on with this {type}",
"report.category.title_account": "profile", "report.category.title_account": "perfil",
"report.category.title_status": "post", "report.category.title_status": "publicação",
"report.close": "Done", "report.close": "Concluído",
"report.comment.title": "Is there anything else you think we should know?", "report.comment.title": "Is there anything else you think we should know?",
"report.forward": "Encaminhar para {target}", "report.forward": "Encaminhar para {target}",
"report.forward_hint": "A conta está em outra instância. Enviar uma cópia anônima da denúncia para lá?", "report.forward_hint": "A conta está em outra instância. Enviar uma cópia anônima da denúncia para lá?",
"report.mute": "Mute", "report.mute": "Silenciar",
"report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.", "report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.",
"report.next": "Next", "report.next": "Próximo",
"report.placeholder": "Comentários adicionais aqui", "report.placeholder": "Comentários adicionais aqui",
"report.reasons.dislike": "I don't like it", "report.reasons.dislike": "Eu não gosto disso",
"report.reasons.dislike_description": "It is not something you want to see", "report.reasons.dislike_description": "It is not something you want to see",
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "O problema não se encaixa em outras categorias",
"report.reasons.spam": "It's spam", "report.reasons.spam": "É spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "Você está ciente de que isso quebra regras específicas",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Selecione tudo que se aplica",
"report.rules.title": "Which rules are being violated?", "report.rules.title": "Which rules are being violated?",
"report.statuses.subtitle": "Select all that apply", "report.statuses.subtitle": "Selecione tudo que se aplica",
"report.statuses.title": "Are there any posts that back up this report?", "report.statuses.title": "Are there any posts that back up this report?",
"report.submit": "Enviar", "report.submit": "Enviar",
"report.target": "Denunciando {target}", "report.target": "Denunciando {target}",
"report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:", "report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:",
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:", "report.thanks.take_action_actionable": "Enquanto revisamos isso, você pode tomar medidas contra @{name}:",
"report.thanks.title": "Don't want to see this?", "report.thanks.title": "Não quer ver isto?",
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.", "report.thanks.title_actionable": "Obrigado por reportar. Vamos analisar.",
"report.unfollow": "Unfollow @{name}", "report.unfollow": "Unfollow @{name}",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.", "report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.",
"search.placeholder": "Pesquisar", "search.placeholder": "Pesquisar",
@ -433,9 +433,9 @@
"search_popout.tips.text": "Texto simples retorna nomes de exibição e de usuário, e hashtags correspondentes", "search_popout.tips.text": "Texto simples retorna nomes de exibição e de usuário, e hashtags correspondentes",
"search_popout.tips.user": "usuário", "search_popout.tips.user": "usuário",
"search_results.accounts": "Pessoas", "search_results.accounts": "Pessoas",
"search_results.all": "All", "search_results.all": "Tudo",
"search_results.hashtags": "Hashtags", "search_results.hashtags": "Hashtags",
"search_results.nothing_found": "Could not find anything for these search terms", "search_results.nothing_found": "Não foi possível encontrar nada para estes termos de busca",
"search_results.statuses": "Toots", "search_results.statuses": "Toots",
"search_results.statuses_fts_disabled": "Pesquisar toots por seu conteúdo não está ativado nesta instância Mastodon.", "search_results.statuses_fts_disabled": "Pesquisar toots por seu conteúdo não está ativado nesta instância Mastodon.",
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}", "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",

View File

@ -18,7 +18,7 @@
"account.followers": "Seguidores", "account.followers": "Seguidores",
"account.followers.empty": "Ainda ninguém segue este utilizador.", "account.followers.empty": "Ainda ninguém segue este utilizador.",
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}", "account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}",
"account.following": "Following", "account.following": "A seguir",
"account.following_counter": "{count, plural, other {A seguir {counter}}}", "account.following_counter": "{count, plural, other {A seguir {counter}}}",
"account.follows.empty": "Este utilizador ainda não segue ninguém.", "account.follows.empty": "Este utilizador ainda não segue ninguém.",
"account.follows_you": "Segue-te", "account.follows_you": "Segue-te",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Desbloquear @{name}", "account.unblock": "Desbloquear @{name}",
"account.unblock_domain": "Mostrar {domain}", "account.unblock_domain": "Mostrar {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Desbloquear",
"account.unendorse": "Não mostrar no perfil", "account.unendorse": "Não mostrar no perfil",
"account.unfollow": "Deixar de seguir", "account.unfollow": "Deixar de seguir",
"account.unmute": "Não silenciar @{name}", "account.unmute": "Não silenciar @{name}",
"account.unmute_notifications": "Deixar de silenciar @{name}", "account.unmute_notifications": "Deixar de silenciar @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Deixar de silenciar",
"account_note.placeholder": "Clique para adicionar nota", "account_note.placeholder": "Clique para adicionar nota",
"admin.dashboard.daily_retention": "Taxa de retenção de utilizadores por dia após a inscrição", "admin.dashboard.daily_retention": "Taxa de retenção de utilizadores por dia após a inscrição",
"admin.dashboard.monthly_retention": "Taxa de retenção de utilizadores por mês após a inscrição", "admin.dashboard.monthly_retention": "Taxa de retenção de utilizadores por mês após a inscrição",
@ -168,7 +168,7 @@
"empty_column.community": "A timeline local está vazia. Escreve algo publicamente para começar!", "empty_column.community": "A timeline local está vazia. Escreve algo publicamente para começar!",
"empty_column.direct": "Ainda não tem qualquer mensagem direta. Quando enviar ou receber alguma, ela irá aparecer aqui.", "empty_column.direct": "Ainda não tem qualquer mensagem direta. Quando enviar ou receber alguma, ela irá aparecer aqui.",
"empty_column.domain_blocks": "Ainda não há qualquer domínio escondido.", "empty_column.domain_blocks": "Ainda não há qualquer domínio escondido.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nada em destaque por agora. Volte mais tarde!",
"empty_column.favourited_statuses": "Ainda não tens quaisquer toots favoritos. Quando tiveres algum, ele irá aparecer aqui.", "empty_column.favourited_statuses": "Ainda não tens quaisquer toots favoritos. Quando tiveres algum, ele irá aparecer aqui.",
"empty_column.favourites": "Ainda ninguém marcou este toot como favorito. Quando alguém o fizer, ele irá aparecer aqui.", "empty_column.favourites": "Ainda ninguém marcou este toot como favorito. Quando alguém o fizer, ele irá aparecer aqui.",
"empty_column.follow_recommendations": "Parece que não foi possível gerar nenhuma sugestão para si. Pode tentar utilizar a pesquisa para procurar pessoas que conheça ou explorar as hashtags em destaque.", "empty_column.follow_recommendations": "Parece que não foi possível gerar nenhuma sugestão para si. Pode tentar utilizar a pesquisa para procurar pessoas que conheça ou explorar as hashtags em destaque.",
@ -187,11 +187,11 @@
"error.unexpected_crash.next_steps_addons": "Tente desabilitá-los e atualizar a página. Se isso não ajudar, você ainda poderá usar o Mastodon por meio de um navegador diferente ou de um aplicativo nativo.", "error.unexpected_crash.next_steps_addons": "Tente desabilitá-los e atualizar a página. Se isso não ajudar, você ainda poderá usar o Mastodon por meio de um navegador diferente ou de um aplicativo nativo.",
"errors.unexpected_crash.copy_stacktrace": "Copiar a stacktrace para o clipboard", "errors.unexpected_crash.copy_stacktrace": "Copiar a stacktrace para o clipboard",
"errors.unexpected_crash.report_issue": "Reportar problema", "errors.unexpected_crash.report_issue": "Reportar problema",
"explore.search_results": "Search results", "explore.search_results": "Resultados da pesquisa",
"explore.suggested_follows": "For you", "explore.suggested_follows": "Para si",
"explore.title": "Explore", "explore.title": "Explorar",
"explore.trending_links": "News", "explore.trending_links": "Notícias",
"explore.trending_statuses": "Posts", "explore.trending_statuses": "Publicações",
"explore.trending_tags": "Hashtags", "explore.trending_tags": "Hashtags",
"follow_recommendations.done": "Concluído", "follow_recommendations.done": "Concluído",
"follow_recommendations.heading": "Siga pessoas das quais gostaria de ver publicações! Aqui estão algumas sugestões.", "follow_recommendations.heading": "Siga pessoas das quais gostaria de ver publicações! Aqui estão algumas sugestões.",
@ -308,7 +308,7 @@
"navigation_bar.preferences": "Preferências", "navigation_bar.preferences": "Preferências",
"navigation_bar.public_timeline": "Cronologia federada", "navigation_bar.public_timeline": "Cronologia federada",
"navigation_bar.security": "Segurança", "navigation_bar.security": "Segurança",
"notification.admin.sign_up": "{name} signed up", "notification.admin.sign_up": "{name} inscreveu-se",
"notification.favourite": "{name} adicionou a tua publicação aos favoritos", "notification.favourite": "{name} adicionou a tua publicação aos favoritos",
"notification.follow": "{name} começou a seguir-te", "notification.follow": "{name} começou a seguir-te",
"notification.follow_request": "{name} pediu para segui-lo", "notification.follow_request": "{name} pediu para segui-lo",
@ -320,7 +320,7 @@
"notification.update": "{name} editou uma publicação", "notification.update": "{name} editou uma publicação",
"notifications.clear": "Limpar notificações", "notifications.clear": "Limpar notificações",
"notifications.clear_confirmation": "Queres mesmo limpar todas as notificações?", "notifications.clear_confirmation": "Queres mesmo limpar todas as notificações?",
"notifications.column_settings.admin.sign_up": "New sign-ups:", "notifications.column_settings.admin.sign_up": "Novas inscrições:",
"notifications.column_settings.alert": "Notificações no ambiente de trabalho", "notifications.column_settings.alert": "Notificações no ambiente de trabalho",
"notifications.column_settings.favourite": "Favoritos:", "notifications.column_settings.favourite": "Favoritos:",
"notifications.column_settings.filter_bar.advanced": "Mostrar todas as categorias", "notifications.column_settings.filter_bar.advanced": "Mostrar todas as categorias",
@ -388,43 +388,43 @@
"relative_time.seconds": "{number}s", "relative_time.seconds": "{number}s",
"relative_time.today": "hoje", "relative_time.today": "hoje",
"reply_indicator.cancel": "Cancelar", "reply_indicator.cancel": "Cancelar",
"report.block": "Block", "report.block": "Bloquear",
"report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.", "report.block_explanation": "Não verá as publicações deles. Eles não serão capazes de ver suas publicações ou de o seguir. Eles vão conseguir saber que estão bloqueados.",
"report.categories.other": "Outro", "report.categories.other": "Outro",
"report.categories.spam": "Spam", "report.categories.spam": "Spam",
"report.categories.violation": "O conteúdo viola uma ou mais regras do servidor", "report.categories.violation": "O conteúdo viola uma ou mais regras do servidor",
"report.category.subtitle": "Choose the best match", "report.category.subtitle": "Escolha a melhor correspondência",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "Diga-nos o que se passa com esse {type}",
"report.category.title_account": "profile", "report.category.title_account": "perfil",
"report.category.title_status": "post", "report.category.title_status": "publicação",
"report.close": "Done", "report.close": "Concluído",
"report.comment.title": "Is there anything else you think we should know?", "report.comment.title": "Há algo mais que pensa que devemos saber?",
"report.forward": "Reenviar para {target}", "report.forward": "Reenviar para {target}",
"report.forward_hint": "A conta é de outro servidor. Enviar uma cópia anónima da denúncia para lá também?", "report.forward_hint": "A conta é de outro servidor. Enviar uma cópia anónima da denúncia para lá também?",
"report.mute": "Mute", "report.mute": "Silenciar",
"report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.", "report.mute_explanation": "Não verá as publicações deles. Eles ainda poderão segui-lo e ver as suas publicações e não saberão que estão silenciados.",
"report.next": "Next", "report.next": "Seguinte",
"report.placeholder": "Comentários adicionais", "report.placeholder": "Comentários adicionais",
"report.reasons.dislike": "I don't like it", "report.reasons.dislike": "Não gosto disso",
"report.reasons.dislike_description": "It is not something you want to see", "report.reasons.dislike_description": "Não é algo que deseje ver",
"report.reasons.other": "It's something else", "report.reasons.other": "É outra coisa",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "O problema não se encaixa nas outras categorias",
"report.reasons.spam": "It's spam", "report.reasons.spam": "É spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Links maliciosos, contactos falsos, ou respostas repetitivas",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "Viola as regras do servidor",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "Está ciente de que infringe regras específicas",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Selecione tudo o que se aplicar",
"report.rules.title": "Which rules are being violated?", "report.rules.title": "Que regras estão a ser violadas?",
"report.statuses.subtitle": "Select all that apply", "report.statuses.subtitle": "Selecione tudo o que se aplicar",
"report.statuses.title": "Are there any posts that back up this report?", "report.statuses.title": "Existe alguma publicação que suporte esta denúncia?",
"report.submit": "Enviar", "report.submit": "Enviar",
"report.target": "A denunciar {target}", "report.target": "A denunciar {target}",
"report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:", "report.thanks.take_action": "Aqui estão as suas opções para controlar o que vê no Mastodon:",
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:", "report.thanks.take_action_actionable": "Enquanto revemos a sua denúncia, pode tomar medidas contra @{name}:",
"report.thanks.title": "Don't want to see this?", "report.thanks.title": "Não quer ver isto?",
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.", "report.thanks.title_actionable": "Obrigado por reportar, vamos analisar.",
"report.unfollow": "Unfollow @{name}", "report.unfollow": "Deixar de seguir @{name}",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.", "report.unfollow_explanation": "Está a seguir esta conta. Para não ver mais as publicações desta conta na sua página inicial, deixe de segui-la.",
"search.placeholder": "Pesquisar", "search.placeholder": "Pesquisar",
"search_popout.search_format": "Formato avançado de pesquisa", "search_popout.search_format": "Formato avançado de pesquisa",
"search_popout.tips.full_text": "Texto simples devolve publicações que escreveu, marcou como favorita, partilhou ou em que foi mencionado, tal como nomes de utilizador, alcunhas e hashtags.", "search_popout.tips.full_text": "Texto simples devolve publicações que escreveu, marcou como favorita, partilhou ou em que foi mencionado, tal como nomes de utilizador, alcunhas e hashtags.",
@ -433,9 +433,9 @@
"search_popout.tips.text": "O texto simples retorna a correspondência de nomes, utilizadores e hashtags", "search_popout.tips.text": "O texto simples retorna a correspondência de nomes, utilizadores e hashtags",
"search_popout.tips.user": "utilizador", "search_popout.tips.user": "utilizador",
"search_results.accounts": "Pessoas", "search_results.accounts": "Pessoas",
"search_results.all": "All", "search_results.all": "Tudo",
"search_results.hashtags": "Hashtags", "search_results.hashtags": "Hashtags",
"search_results.nothing_found": "Could not find anything for these search terms", "search_results.nothing_found": "Não foi possível encontrar resultados para as expressões pesquisadas",
"search_results.statuses": "Toots", "search_results.statuses": "Toots",
"search_results.statuses_fts_disabled": "A pesquisa de toots pelo seu conteúdo não está disponível nesta instância Mastodon.", "search_results.statuses_fts_disabled": "A pesquisa de toots pelo seu conteúdo não está disponível nesta instância Mastodon.",
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}", "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} пост} many {{counter} постов} other {{counter} поста}}", "account.statuses_counter": "{count, plural, one {{counter} пост} many {{counter} постов} other {{counter} поста}}",
"account.unblock": "Разблокировать @{name}", "account.unblock": "Разблокировать @{name}",
"account.unblock_domain": "Разблокировать {domain}", "account.unblock_domain": "Разблокировать {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Разблокировать",
"account.unendorse": "Не рекомендовать в профиле", "account.unendorse": "Не рекомендовать в профиле",
"account.unfollow": "Отписаться", "account.unfollow": "Отписаться",
"account.unmute": "Убрать {name} из игнорируемых", "account.unmute": "Убрать {name} из игнорируемых",
"account.unmute_notifications": "Показывать уведомления от @{name}", "account.unmute_notifications": "Показывать уведомления от @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Не игнорировать",
"account_note.placeholder": "Текст заметки", "account_note.placeholder": "Текст заметки",
"admin.dashboard.daily_retention": "Уровень удержания пользователей после регистрации, в днях", "admin.dashboard.daily_retention": "Уровень удержания пользователей после регистрации, в днях",
"admin.dashboard.monthly_retention": "Уровень удержания пользователей после регистрации, в месяцах", "admin.dashboard.monthly_retention": "Уровень удержания пользователей после регистрации, в месяцах",
@ -54,7 +54,7 @@
"admin.dashboard.retention.cohort": "Месяц регистрации", "admin.dashboard.retention.cohort": "Месяц регистрации",
"admin.dashboard.retention.cohort_size": "Новые пользователи", "admin.dashboard.retention.cohort_size": "Новые пользователи",
"alert.rate_limited.message": "Пожалуйста, повторите после {retry_time, time, medium}.", "alert.rate_limited.message": "Пожалуйста, повторите после {retry_time, time, medium}.",
"alert.rate_limited.title": "Вы выполняете действие слишком часто", "alert.rate_limited.title": "Ограничение количества запросов",
"alert.unexpected.message": "Произошла непредвиденная ошибка.", "alert.unexpected.message": "Произошла непредвиденная ошибка.",
"alert.unexpected.title": "Упс!", "alert.unexpected.title": "Упс!",
"announcement.announcement": "Объявление", "announcement.announcement": "Объявление",
@ -168,7 +168,7 @@
"empty_column.community": "Локальная лента пуста. Напишите что-нибудь, чтобы разогреть народ!", "empty_column.community": "Локальная лента пуста. Напишите что-нибудь, чтобы разогреть народ!",
"empty_column.direct": "У вас пока нет личных сообщений. Как только вы отправите или получите одно, оно появится здесь.", "empty_column.direct": "У вас пока нет личных сообщений. Как только вы отправите или получите одно, оно появится здесь.",
"empty_column.domain_blocks": "Скрытых доменов пока нет.", "empty_column.domain_blocks": "Скрытых доменов пока нет.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Нет актуального. Проверьте позже!",
"empty_column.favourited_statuses": "Вы не добавили ни один пост в «Избранное». Как только вы это сделаете, он появится здесь.", "empty_column.favourited_statuses": "Вы не добавили ни один пост в «Избранное». Как только вы это сделаете, он появится здесь.",
"empty_column.favourites": "Никто ещё не добавил этот пост в «Избранное». Как только кто-то это сделает, это отобразится здесь.", "empty_column.favourites": "Никто ещё не добавил этот пост в «Избранное». Как только кто-то это сделает, это отобразится здесь.",
"empty_column.follow_recommendations": "Похоже, у нас нет предложений для вас. Вы можете попробовать поискать людей, которых уже знаете, или изучить актуальные хэштеги.", "empty_column.follow_recommendations": "Похоже, у нас нет предложений для вас. Вы можете попробовать поискать людей, которых уже знаете, или изучить актуальные хэштеги.",
@ -187,7 +187,7 @@
"error.unexpected_crash.next_steps_addons": "Попробуйте их отключить и перезагрузить страницу. Если это не поможет, вы по-прежнему сможете войти в Mastodon через другой браузер или приложение.", "error.unexpected_crash.next_steps_addons": "Попробуйте их отключить и перезагрузить страницу. Если это не поможет, вы по-прежнему сможете войти в Mastodon через другой браузер или приложение.",
"errors.unexpected_crash.copy_stacktrace": "Скопировать диагностическую информацию", "errors.unexpected_crash.copy_stacktrace": "Скопировать диагностическую информацию",
"errors.unexpected_crash.report_issue": "Сообщить о проблеме", "errors.unexpected_crash.report_issue": "Сообщить о проблеме",
"explore.search_results": "Search results", "explore.search_results": "Результаты поиска",
"explore.suggested_follows": "Для вас", "explore.suggested_follows": "Для вас",
"explore.title": "Обзор", "explore.title": "Обзор",
"explore.trending_links": "Новости", "explore.trending_links": "Новости",
@ -308,7 +308,7 @@
"navigation_bar.preferences": "Настройки", "navigation_bar.preferences": "Настройки",
"navigation_bar.public_timeline": "Глобальная лента", "navigation_bar.public_timeline": "Глобальная лента",
"navigation_bar.security": "Безопасность", "navigation_bar.security": "Безопасность",
"notification.admin.sign_up": "{name} signed up", "notification.admin.sign_up": "{name} зарегистрирован",
"notification.favourite": "{name} добавил(а) ваш пост в избранное", "notification.favourite": "{name} добавил(а) ваш пост в избранное",
"notification.follow": "{name} подписался (-лась) на вас", "notification.follow": "{name} подписался (-лась) на вас",
"notification.follow_request": "{name} отправил запрос на подписку", "notification.follow_request": "{name} отправил запрос на подписку",
@ -320,7 +320,7 @@
"notification.update": "{name} изменил(а) пост", "notification.update": "{name} изменил(а) пост",
"notifications.clear": "Очистить уведомления", "notifications.clear": "Очистить уведомления",
"notifications.clear_confirmation": "Вы уверены, что хотите очистить все уведомления?", "notifications.clear_confirmation": "Вы уверены, что хотите очистить все уведомления?",
"notifications.column_settings.admin.sign_up": "New sign-ups:", "notifications.column_settings.admin.sign_up": "Новые регистрации:",
"notifications.column_settings.alert": "Уведомления на рабочем столе", "notifications.column_settings.alert": "Уведомления на рабочем столе",
"notifications.column_settings.favourite": "Ваш пост добавили в «избранное»:", "notifications.column_settings.favourite": "Ваш пост добавили в «избранное»:",
"notifications.column_settings.filter_bar.advanced": "Отображать все категории", "notifications.column_settings.filter_bar.advanced": "Отображать все категории",
@ -337,7 +337,7 @@
"notifications.column_settings.status": "Новые посты:", "notifications.column_settings.status": "Новые посты:",
"notifications.column_settings.unread_notifications.category": "Непрочитанные уведомления", "notifications.column_settings.unread_notifications.category": "Непрочитанные уведомления",
"notifications.column_settings.unread_notifications.highlight": "Выделять непрочитанные уведомления", "notifications.column_settings.unread_notifications.highlight": "Выделять непрочитанные уведомления",
"notifications.column_settings.update": "Изменения:", "notifications.column_settings.update": "Правки:",
"notifications.filter.all": "Все", "notifications.filter.all": "Все",
"notifications.filter.boosts": "Продвижения", "notifications.filter.boosts": "Продвижения",
"notifications.filter.favourites": "Отметки «избранного»", "notifications.filter.favourites": "Отметки «избранного»",
@ -394,23 +394,23 @@
"report.categories.spam": "Спам", "report.categories.spam": "Спам",
"report.categories.violation": "Содержимое нарушает одно или несколько правил узла", "report.categories.violation": "Содержимое нарушает одно или несколько правил узла",
"report.category.subtitle": "Choose the best match", "report.category.subtitle": "Choose the best match",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "Расскажите нам, что происходит с {type}",
"report.category.title_account": "profile", "report.category.title_account": "профиль",
"report.category.title_status": "post", "report.category.title_status": "пост",
"report.close": "Done", "report.close": "Готово",
"report.comment.title": "Is there anything else you think we should know?", "report.comment.title": "Есть что-нибудь еще, что мы должны знать?",
"report.forward": "Переслать в {target}", "report.forward": "Переслать в {target}",
"report.forward_hint": "Эта учётная запись расположена на другом узле. Отправить туда анонимную копию вашей жалобы?", "report.forward_hint": "Эта учётная запись расположена на другом узле. Отправить туда анонимную копию вашей жалобы?",
"report.mute": "Mute", "report.mute": "Mute",
"report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.", "report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.",
"report.next": "Next", "report.next": "Далее",
"report.placeholder": "Комментарий", "report.placeholder": "Комментарий",
"report.reasons.dislike": "I don't like it", "report.reasons.dislike": "Мне не нравится",
"report.reasons.dislike_description": "It is not something you want to see", "report.reasons.dislike_description": "It is not something you want to see",
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "Проблема не подпадает под другие категории",
"report.reasons.spam": "It's spam", "report.reasons.spam": "Это спам",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Вредоносные ссылки, поддельные действия или повторяющиеся ответы",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",
@ -421,9 +421,9 @@
"report.target": "Жалоба на {target}", "report.target": "Жалоба на {target}",
"report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:", "report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:",
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:", "report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:",
"report.thanks.title": "Don't want to see this?", "report.thanks.title": "Не хотите видеть это?",
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.", "report.thanks.title_actionable": "Спасибо за обращение, мы его рассмотрим.",
"report.unfollow": "Unfollow @{name}", "report.unfollow": "Отписаться от @{name}",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.", "report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.",
"search.placeholder": "Поиск", "search.placeholder": "Поиск",
"search_popout.search_format": "Продвинутый формат поиска", "search_popout.search_format": "Продвинутый формат поиска",
@ -433,7 +433,7 @@
"search_popout.tips.text": "Простой ввод текста покажет совпадающие имена пользователей, отображаемые имена и хэштеги", "search_popout.tips.text": "Простой ввод текста покажет совпадающие имена пользователей, отображаемые имена и хэштеги",
"search_popout.tips.user": "пользователь", "search_popout.tips.user": "пользователь",
"search_results.accounts": "Люди", "search_results.accounts": "Люди",
"search_results.all": "All", "search_results.all": "Все",
"search_results.hashtags": "Хэштеги", "search_results.hashtags": "Хэштеги",
"search_results.nothing_found": "Could not find anything for these search terms", "search_results.nothing_found": "Could not find anything for these search terms",
"search_results.statuses": "Посты", "search_results.statuses": "Посты",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -52,7 +52,7 @@
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
"admin.dashboard.retention.average": "Average", "admin.dashboard.retention.average": "Average",
"admin.dashboard.retention.cohort": "Sign-up month", "admin.dashboard.retention.cohort": "Sign-up month",
"admin.dashboard.retention.cohort_size": "New users", "admin.dashboard.retention.cohort_size": "නව පරිශීලකයින්",
"alert.rate_limited.message": "කරුණාකර {retry_time, time, medium} ට පසු නැවත උත්සාහ කරන්න.", "alert.rate_limited.message": "කරුණාකර {retry_time, time, medium} ට පසු නැවත උත්සාහ කරන්න.",
"alert.rate_limited.title": "Rate limited", "alert.rate_limited.title": "Rate limited",
"alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.message": "An unexpected error occurred.",
@ -121,7 +121,7 @@
"confirmations.delete.message": "Are you sure you want to delete this status?", "confirmations.delete.message": "Are you sure you want to delete this status?",
"confirmations.delete_list.confirm": "Delete", "confirmations.delete_list.confirm": "Delete",
"confirmations.delete_list.message": "Are you sure you want to permanently delete this list?", "confirmations.delete_list.message": "Are you sure you want to permanently delete this list?",
"confirmations.discard_edit_media.confirm": "Discard", "confirmations.discard_edit_media.confirm": "ඉවත ලන්න",
"confirmations.discard_edit_media.message": "You have unsaved changes to the media description or preview, discard them anyway?", "confirmations.discard_edit_media.message": "You have unsaved changes to the media description or preview, discard them anyway?",
"confirmations.domain_block.confirm": "සම්පූර්ණ වසම අවහිර කරන්න", "confirmations.domain_block.confirm": "සම්පූර්ණ වසම අවහිර කරන්න",
"confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain in any public timelines or your notifications. Your followers from that domain will be removed.", "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain in any public timelines or your notifications. Your followers from that domain will be removed.",
@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -18,7 +18,7 @@
"account.followers": "Sledujúci", "account.followers": "Sledujúci",
"account.followers.empty": "Tohto používateľa ešte nikto nenásleduje.", "account.followers.empty": "Tohto používateľa ešte nikto nenásleduje.",
"account.followers_counter": "{count, plural, one {{counter} Sledujúci} few {{counter} Sledujúci} many {{counter} Sledujúci} other {{counter} Sledujúci}}", "account.followers_counter": "{count, plural, one {{counter} Sledujúci} few {{counter} Sledujúci} many {{counter} Sledujúci} other {{counter} Sledujúci}}",
"account.following": "Following", "account.following": "Nasledujem",
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}", "account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "Tento používateľ ešte nikoho nenasleduje.", "account.follows.empty": "Tento používateľ ešte nikoho nenasleduje.",
"account.follows_you": "Nasleduje ťa", "account.follows_you": "Nasleduje ťa",
@ -31,7 +31,7 @@
"account.moved_to": "{name} sa presunul/a na:", "account.moved_to": "{name} sa presunul/a na:",
"account.mute": "Nevšímaj si @{name}", "account.mute": "Nevšímaj si @{name}",
"account.mute_notifications": "Stĺm oboznámenia od @{name}", "account.mute_notifications": "Stĺm oboznámenia od @{name}",
"account.muted": "Utíšený/á", "account.muted": "Nevšímaný/á",
"account.posts": "Príspevky", "account.posts": "Príspevky",
"account.posts_with_replies": "Príspevky, aj s odpoveďami", "account.posts_with_replies": "Príspevky, aj s odpoveďami",
"account.report": "Nahlás @{name}", "account.report": "Nahlás @{name}",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Odblokuj @{name}", "account.unblock": "Odblokuj @{name}",
"account.unblock_domain": "Prestaň skrývať {domain}", "account.unblock_domain": "Prestaň skrývať {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Odblokuj",
"account.unendorse": "Nezobrazuj na profile", "account.unendorse": "Nezobrazuj na profile",
"account.unfollow": "Prestaň následovať", "account.unfollow": "Prestaň následovať",
"account.unmute": "Prestaň ignorovať @{name}", "account.unmute": "Prestaň ignorovať @{name}",
"account.unmute_notifications": "Zruš stĺmenie oboznámení od @{name}", "account.unmute_notifications": "Zruš nevšímanie si oznámení od @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Zruš nevšímanie",
"account_note.placeholder": "Klikni pre vloženie poznámky", "account_note.placeholder": "Klikni pre vloženie poznámky",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
@ -77,7 +77,7 @@
"column.follow_requests": "Žiadosti o sledovanie", "column.follow_requests": "Žiadosti o sledovanie",
"column.home": "Domov", "column.home": "Domov",
"column.lists": "Zoznamy", "column.lists": "Zoznamy",
"column.mutes": "Ignorovaní užívatelia", "column.mutes": "Nevšímaní užívatelia",
"column.notifications": "Oboznámenia", "column.notifications": "Oboznámenia",
"column.pins": "Pripnuté príspevky", "column.pins": "Pripnuté príspevky",
"column.public": "Federovaná časová os", "column.public": "Federovaná časová os",
@ -106,7 +106,7 @@
"compose_form.poll.switch_to_single": "Zmeň anketu na takú s jedinou voľbou", "compose_form.poll.switch_to_single": "Zmeň anketu na takú s jedinou voľbou",
"compose_form.publish": "Pošli", "compose_form.publish": "Pošli",
"compose_form.publish_loud": "{publish}!", "compose_form.publish_loud": "{publish}!",
"compose_form.save_changes": "Save changes", "compose_form.save_changes": "Ulož zmeny",
"compose_form.sensitive.hide": "Označ médiá ako chúlostivé", "compose_form.sensitive.hide": "Označ médiá ako chúlostivé",
"compose_form.sensitive.marked": "Médiálny obsah je označený ako chúlostivý", "compose_form.sensitive.marked": "Médiálny obsah je označený ako chúlostivý",
"compose_form.sensitive.unmarked": "Médiálny obsah nieje označený ako chúlostivý", "compose_form.sensitive.unmarked": "Médiálny obsah nieje označený ako chúlostivý",
@ -127,9 +127,9 @@
"confirmations.domain_block.message": "Si si naozaj istý/á, že chceš blokovať celú doménu {domain}? Vo väčšine prípadov stačí blokovať alebo ignorovať pár konkrétnych užívateľov, čo sa doporučuje. Neuvidíš obsah z tejto domény v žiadnej verejnej časovej osi, ani v oznámeniach. Tvoji následovníci pochádzajúci z tejto domény budú odstránení.", "confirmations.domain_block.message": "Si si naozaj istý/á, že chceš blokovať celú doménu {domain}? Vo väčšine prípadov stačí blokovať alebo ignorovať pár konkrétnych užívateľov, čo sa doporučuje. Neuvidíš obsah z tejto domény v žiadnej verejnej časovej osi, ani v oznámeniach. Tvoji následovníci pochádzajúci z tejto domény budú odstránení.",
"confirmations.logout.confirm": "Odhlás sa", "confirmations.logout.confirm": "Odhlás sa",
"confirmations.logout.message": "Si si istý/á, že sa chceš odhlásiť?", "confirmations.logout.message": "Si si istý/á, že sa chceš odhlásiť?",
"confirmations.mute.confirm": "Ignoruj", "confirmations.mute.confirm": "Nevšímaj si",
"confirmations.mute.explanation": "Toto nastavenie pred tebou skryje ich príspevky, alebo príspevky od iných v ktorých sú spomenutí, ale umožní im vidieť tvoje príspevky, aj ťa následovať.", "confirmations.mute.explanation": "Toto nastavenie pred tebou skryje ich príspevky, alebo príspevky od iných v ktorých sú spomenutí, ale umožní im vidieť tvoje príspevky, aj ťa následovať.",
"confirmations.mute.message": "Naozaj chceš ignorovať {name}?", "confirmations.mute.message": "Naozaj si chceš nevšímať {name}?",
"confirmations.redraft.confirm": "Vyčisti a prepíš", "confirmations.redraft.confirm": "Vyčisti a prepíš",
"confirmations.redraft.message": "Si si istý/á, že chceš premazať a prepísať tento príspevok? Jeho nadobudnuté vyzdvihnutia a obľúbenia, ale i odpovede na pôvodný príspevok budú odlúčené.", "confirmations.redraft.message": "Si si istý/á, že chceš premazať a prepísať tento príspevok? Jeho nadobudnuté vyzdvihnutia a obľúbenia, ale i odpovede na pôvodný príspevok budú odlúčené.",
"confirmations.reply.confirm": "Odpovedz", "confirmations.reply.confirm": "Odpovedz",
@ -187,12 +187,12 @@
"error.unexpected_crash.next_steps_addons": "Skús ich vypnúť, a obnoviť túto stránku. Ak to nepomôže, pravdepodobne budeš stále môcť Mastodon používať cez iný prehliadač, alebo natívnu aplikáciu.", "error.unexpected_crash.next_steps_addons": "Skús ich vypnúť, a obnoviť túto stránku. Ak to nepomôže, pravdepodobne budeš stále môcť Mastodon používať cez iný prehliadač, alebo natívnu aplikáciu.",
"errors.unexpected_crash.copy_stacktrace": "Skopíruj stacktrace do schránky", "errors.unexpected_crash.copy_stacktrace": "Skopíruj stacktrace do schránky",
"errors.unexpected_crash.report_issue": "Nahlás problém", "errors.unexpected_crash.report_issue": "Nahlás problém",
"explore.search_results": "Search results", "explore.search_results": "Výsledky hľadania",
"explore.suggested_follows": "For you", "explore.suggested_follows": "Pre teba",
"explore.title": "Explore", "explore.title": "Explore",
"explore.trending_links": "News", "explore.trending_links": "News",
"explore.trending_statuses": "Posts", "explore.trending_statuses": "Príspevky",
"explore.trending_tags": "Hashtags", "explore.trending_tags": "Haštagy",
"follow_recommendations.done": "Hotovo", "follow_recommendations.done": "Hotovo",
"follow_recommendations.heading": "Následuj ľudí od ktorých by si chcel/a vidieť príspevky! Tu sú nejaké návrhy.", "follow_recommendations.heading": "Následuj ľudí od ktorých by si chcel/a vidieť príspevky! Tu sú nejaké návrhy.",
"follow_recommendations.lead": "Príspevky od ľudi ktorých sledujete sa zobrazia v chronologickom poradí na Vašej nástenke. Nebojte sa spraviť chyby, vždy môžete zrušiť sledovanie konkrétnych ľudí!", "follow_recommendations.lead": "Príspevky od ľudi ktorých sledujete sa zobrazia v chronologickom poradí na Vašej nástenke. Nebojte sa spraviť chyby, vždy môžete zrušiť sledovanie konkrétnych ľudí!",
@ -302,7 +302,7 @@
"navigation_bar.keyboard_shortcuts": "Klávesové skratky", "navigation_bar.keyboard_shortcuts": "Klávesové skratky",
"navigation_bar.lists": "Zoznamy", "navigation_bar.lists": "Zoznamy",
"navigation_bar.logout": "Odhlás sa", "navigation_bar.logout": "Odhlás sa",
"navigation_bar.mutes": "Ignorovaní užívatelia", "navigation_bar.mutes": "Stíšení užívatelia",
"navigation_bar.personal": "Osobné", "navigation_bar.personal": "Osobné",
"navigation_bar.pins": "Pripnuté príspevky", "navigation_bar.pins": "Pripnuté príspevky",
"navigation_bar.preferences": "Nastavenia", "navigation_bar.preferences": "Nastavenia",
@ -337,7 +337,7 @@
"notifications.column_settings.status": "Nové príspevky:", "notifications.column_settings.status": "Nové príspevky:",
"notifications.column_settings.unread_notifications.category": "Neprečítané oboznámenia", "notifications.column_settings.unread_notifications.category": "Neprečítané oboznámenia",
"notifications.column_settings.unread_notifications.highlight": "Zdôrazni neprečítané oboznámenia", "notifications.column_settings.unread_notifications.highlight": "Zdôrazni neprečítané oboznámenia",
"notifications.column_settings.update": "Edits:", "notifications.column_settings.update": "Úpravy:",
"notifications.filter.all": "Všetky", "notifications.filter.all": "Všetky",
"notifications.filter.boosts": "Vyzdvihnutia", "notifications.filter.boosts": "Vyzdvihnutia",
"notifications.filter.favourites": "Obľúbené", "notifications.filter.favourites": "Obľúbené",
@ -379,7 +379,7 @@
"relative_time.days": "{number}dní", "relative_time.days": "{number}dní",
"relative_time.full.days": "{number, plural, one {# day} other {# days}} ago", "relative_time.full.days": "{number, plural, one {# day} other {# days}} ago",
"relative_time.full.hours": "{number, plural, one {# hour} other {# hours}} ago", "relative_time.full.hours": "{number, plural, one {# hour} other {# hours}} ago",
"relative_time.full.just_now": "just now", "relative_time.full.just_now": "práve teraz",
"relative_time.full.minutes": "{number, plural, one {# minute} other {# minutes}} ago", "relative_time.full.minutes": "{number, plural, one {# minute} other {# minutes}} ago",
"relative_time.full.seconds": "{number, plural, one {# second} other {# seconds}} ago", "relative_time.full.seconds": "{number, plural, one {# second} other {# seconds}} ago",
"relative_time.hours": "{number}hod", "relative_time.hours": "{number}hod",
@ -395,23 +395,23 @@
"report.categories.violation": "Content violates one or more server rules", "report.categories.violation": "Content violates one or more server rules",
"report.category.subtitle": "Choose the best match", "report.category.subtitle": "Choose the best match",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "Tell us what's going on with this {type}",
"report.category.title_account": "profile", "report.category.title_account": "profilom",
"report.category.title_status": "post", "report.category.title_status": "príspevkom",
"report.close": "Done", "report.close": "Hotovo",
"report.comment.title": "Is there anything else you think we should know?", "report.comment.title": "Is there anything else you think we should know?",
"report.forward": "Posuň ku {target}", "report.forward": "Posuň ku {target}",
"report.forward_hint": "Tento účet je z iného serveru. Chceš poslať anonymnú kópiu hlásenia aj tam?", "report.forward_hint": "Tento účet je z iného serveru. Chceš poslať anonymnú kópiu hlásenia aj tam?",
"report.mute": "Mute", "report.mute": "Nevšímaj si",
"report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.", "report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.",
"report.next": "Next", "report.next": "Ďalej",
"report.placeholder": "Ďalšie komentáre", "report.placeholder": "Ďalšie komentáre",
"report.reasons.dislike": "I don't like it", "report.reasons.dislike": "Nepáči sa mi",
"report.reasons.dislike_description": "It is not something you want to see", "report.reasons.dislike_description": "Nieje to niečo, čo chceš vidieť",
"report.reasons.other": "It's something else", "report.reasons.other": "Je to niečo iné",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "Je to spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "Porušuje pravidlá servera",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",
"report.rules.title": "Which rules are being violated?", "report.rules.title": "Which rules are being violated?",
@ -421,7 +421,7 @@
"report.target": "Nahlás {target}", "report.target": "Nahlás {target}",
"report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:", "report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:",
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:", "report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:",
"report.thanks.title": "Don't want to see this?", "report.thanks.title": "Nechceš to vidieť?",
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.", "report.thanks.title_actionable": "Thanks for reporting, we'll look into this.",
"report.unfollow": "Unfollow @{name}", "report.unfollow": "Unfollow @{name}",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.", "report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.",
@ -449,7 +449,7 @@
"status.delete": "Zmazať", "status.delete": "Zmazať",
"status.detailed_status": "Podrobný náhľad celej konverzácie", "status.detailed_status": "Podrobný náhľad celej konverzácie",
"status.direct": "Priama správa pre @{name}", "status.direct": "Priama správa pre @{name}",
"status.edit": "Edit", "status.edit": "Uprav",
"status.edited": "Edited {date}", "status.edited": "Edited {date}",
"status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", "status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}",
"status.embed": "Vložiť", "status.embed": "Vložiť",
@ -461,8 +461,8 @@
"status.media_hidden": "Skryté médiá", "status.media_hidden": "Skryté médiá",
"status.mention": "Spomeň @{name}", "status.mention": "Spomeň @{name}",
"status.more": "Viac", "status.more": "Viac",
"status.mute": "Utíš @{name}", "status.mute": "Nevšímaj si @{name}",
"status.mute_conversation": "Ignoruj konverzáciu", "status.mute_conversation": "Nevšímaj si konverzáciu",
"status.open": "Otvor tento príspevok", "status.open": "Otvor tento príspevok",
"status.pin": "Pripni na profil", "status.pin": "Pripni na profil",
"status.pinned": "Pripnutý príspevok", "status.pinned": "Pripnutý príspevok",
@ -484,7 +484,7 @@
"status.show_more_all": "Všetkým ukáž viac", "status.show_more_all": "Všetkým ukáž viac",
"status.show_thread": "Ukáž diskusné vlákno", "status.show_thread": "Ukáž diskusné vlákno",
"status.uncached_media_warning": "Nedostupný/é", "status.uncached_media_warning": "Nedostupný/é",
"status.unmute_conversation": "Prestaň ignorovať konverzáciu", "status.unmute_conversation": "Prestaň si nevšímať konverzáciu",
"status.unpin": "Odopni z profilu", "status.unpin": "Odopni z profilu",
"suggestions.dismiss": "Zavrhni návrh", "suggestions.dismiss": "Zavrhni návrh",
"suggestions.header": "Mohlo by ťa zaujímať…", "suggestions.header": "Mohlo by ťa zaujímať…",
@ -535,7 +535,7 @@
"video.expand": "Zväčši video", "video.expand": "Zväčši video",
"video.fullscreen": "Zobraz na celú obrazovku", "video.fullscreen": "Zobraz na celú obrazovku",
"video.hide": "Skry video", "video.hide": "Skry video",
"video.mute": "Vypni zvuk", "video.mute": "Stlm zvuk",
"video.pause": "Pauza", "video.pause": "Pauza",
"video.play": "Prehraj", "video.play": "Prehraj",
"video.unmute": "Zapni zvuk" "video.unmute": "Zapni zvuk"

View File

@ -41,7 +41,7 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Odblokiraj @{name}", "account.unblock": "Odblokiraj @{name}",
"account.unblock_domain": "Razkrij {domain}", "account.unblock_domain": "Razkrij {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Odblokiraj",
"account.unendorse": "Ne vključi v profil", "account.unendorse": "Ne vključi v profil",
"account.unfollow": "Prenehaj slediti", "account.unfollow": "Prenehaj slediti",
"account.unmute": "Odtišaj @{name}", "account.unmute": "Odtišaj @{name}",
@ -168,7 +168,7 @@
"empty_column.community": "Lokalna časovnica je prazna. Napišite nekaj javnega, da se bo žoga zakotalila!", "empty_column.community": "Lokalna časovnica je prazna. Napišite nekaj javnega, da se bo žoga zakotalila!",
"empty_column.direct": "Nimate še nobenih neposrednih sporočil. Ko ga boste poslali ali prejeli, se bo prikazal tukaj.", "empty_column.direct": "Nimate še nobenih neposrednih sporočil. Ko ga boste poslali ali prejeli, se bo prikazal tukaj.",
"empty_column.domain_blocks": "Še vedno ni skritih domen.", "empty_column.domain_blocks": "Še vedno ni skritih domen.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Trenutno ni nič v trendu. Preverite znova kasneje!",
"empty_column.favourited_statuses": "Nimate priljubljenih tutov. Ko boste vzljubili kakšnega, se bo prikazal tukaj.", "empty_column.favourited_statuses": "Nimate priljubljenih tutov. Ko boste vzljubili kakšnega, se bo prikazal tukaj.",
"empty_column.favourites": "Nihče še ni vzljubil tega tuta. Ko ga bo nekdo, se bo pojavil tukaj.", "empty_column.favourites": "Nihče še ni vzljubil tega tuta. Ko ga bo nekdo, se bo pojavil tukaj.",
"empty_column.follow_recommendations": "Kaže, da za vas ni mogoče pripraviti nobenih predlogov. Poskusite uporabiti iskanje, da poiščete osebe, ki jih poznate, ali raziščete ključnike, ki so v trendu.", "empty_column.follow_recommendations": "Kaže, da za vas ni mogoče pripraviti nobenih predlogov. Poskusite uporabiti iskanje, da poiščete osebe, ki jih poznate, ali raziščete ključnike, ki so v trendu.",
@ -187,12 +187,12 @@
"error.unexpected_crash.next_steps_addons": "Poskusite jih onemogočiti in osvežiti stran. Če to ne pomaga, boste morda še vedno lahko uporabljali Mastodon prek drugega brskalnika ali z domorodno aplikacijo.", "error.unexpected_crash.next_steps_addons": "Poskusite jih onemogočiti in osvežiti stran. Če to ne pomaga, boste morda še vedno lahko uporabljali Mastodon prek drugega brskalnika ali z domorodno aplikacijo.",
"errors.unexpected_crash.copy_stacktrace": "Kopiraj sledenje sklada na odložišče", "errors.unexpected_crash.copy_stacktrace": "Kopiraj sledenje sklada na odložišče",
"errors.unexpected_crash.report_issue": "Prijavi težavo", "errors.unexpected_crash.report_issue": "Prijavi težavo",
"explore.search_results": "Search results", "explore.search_results": "Rezultati iskanja",
"explore.suggested_follows": "For you", "explore.suggested_follows": "Za vas",
"explore.title": "Explore", "explore.title": "Razišči",
"explore.trending_links": "News", "explore.trending_links": "Novice",
"explore.trending_statuses": "Posts", "explore.trending_statuses": "Objave",
"explore.trending_tags": "Hashtags", "explore.trending_tags": "Ključniki",
"follow_recommendations.done": "Opravljeno", "follow_recommendations.done": "Opravljeno",
"follow_recommendations.heading": "Sledite osebam, katerih objave želite videti! Tukaj je nekaj predlogov.", "follow_recommendations.heading": "Sledite osebam, katerih objave želite videti! Tukaj je nekaj predlogov.",
"follow_recommendations.lead": "Objave oseb, ki jim sledite, se bodo prikazale v kronološkem zaporedju v vašem domačem viru. Ne bojte se storiti napake, osebam enako enostavno nehate slediti kadar koli!", "follow_recommendations.lead": "Objave oseb, ki jim sledite, se bodo prikazale v kronološkem zaporedju v vašem domačem viru. Ne bojte se storiti napake, osebam enako enostavno nehate slediti kadar koli!",
@ -308,7 +308,7 @@
"navigation_bar.preferences": "Nastavitve", "navigation_bar.preferences": "Nastavitve",
"navigation_bar.public_timeline": "Združena časovnica", "navigation_bar.public_timeline": "Združena časovnica",
"navigation_bar.security": "Varnost", "navigation_bar.security": "Varnost",
"notification.admin.sign_up": "{name} signed up", "notification.admin.sign_up": "{name} se je vpisal/a",
"notification.favourite": "{name} je vzljubil/a vaš status", "notification.favourite": "{name} je vzljubil/a vaš status",
"notification.follow": "{name} vam sledi", "notification.follow": "{name} vam sledi",
"notification.follow_request": "{name} vam želi slediti", "notification.follow_request": "{name} vam želi slediti",
@ -320,7 +320,7 @@
"notification.update": "{name} je uredil(a) objavo", "notification.update": "{name} je uredil(a) objavo",
"notifications.clear": "Počisti obvestila", "notifications.clear": "Počisti obvestila",
"notifications.clear_confirmation": "Ali ste prepričani, da želite trajno izbrisati vsa vaša obvestila?", "notifications.clear_confirmation": "Ali ste prepričani, da želite trajno izbrisati vsa vaša obvestila?",
"notifications.column_settings.admin.sign_up": "New sign-ups:", "notifications.column_settings.admin.sign_up": "Novi vpisi:",
"notifications.column_settings.alert": "Namizna obvestila", "notifications.column_settings.alert": "Namizna obvestila",
"notifications.column_settings.favourite": "Priljubljeni:", "notifications.column_settings.favourite": "Priljubljeni:",
"notifications.column_settings.filter_bar.advanced": "Prikaži vse kategorije", "notifications.column_settings.filter_bar.advanced": "Prikaži vse kategorije",
@ -388,43 +388,43 @@
"relative_time.seconds": "{number}s", "relative_time.seconds": "{number}s",
"relative_time.today": "danes", "relative_time.today": "danes",
"reply_indicator.cancel": "Prekliči", "reply_indicator.cancel": "Prekliči",
"report.block": "Block", "report.block": "Blokiraj",
"report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.", "report.block_explanation": "Njihovih objav ne boste videli. Oni ne bodo videli vaših objav, niti vam ne morejo slediti. Lahko bodo ugotovili, da so blokirani.",
"report.categories.other": "Drugo", "report.categories.other": "Drugo",
"report.categories.spam": "Neželeno", "report.categories.spam": "Neželeno",
"report.categories.violation": "Vsebina krši eno ali več pravil strežnika", "report.categories.violation": "Vsebina krši eno ali več pravil strežnika",
"report.category.subtitle": "Choose the best match", "report.category.subtitle": "Izberite najboljši zadetek",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "Povejte nam, kaj se dogaja s to/tem {type}",
"report.category.title_account": "profile", "report.category.title_account": "profil",
"report.category.title_status": "post", "report.category.title_status": "objava",
"report.close": "Done", "report.close": "Opravljeno",
"report.comment.title": "Is there anything else you think we should know?", "report.comment.title": "Je še kaj, za kar menite, da bi morali vedeti?",
"report.forward": "Posreduj do {target}", "report.forward": "Posreduj do {target}",
"report.forward_hint": "Račun je iz drugega strežnika. Pošljem anonimno kopijo poročila tudi na drugi strežnik?", "report.forward_hint": "Račun je iz drugega strežnika. Pošljem anonimno kopijo poročila tudi na drugi strežnik?",
"report.mute": "Mute", "report.mute": "Utišaj",
"report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.", "report.mute_explanation": "Njihovih objav ne boste videli. Še vedno vam lahko sledijo in vidijo vaše objave, ne bodo vedeli, da so utišani.",
"report.next": "Next", "report.next": "Naprej",
"report.placeholder": "Dodatni komentarji", "report.placeholder": "Dodatni komentarji",
"report.reasons.dislike": "I don't like it", "report.reasons.dislike": "Ni mi všeč",
"report.reasons.dislike_description": "It is not something you want to see", "report.reasons.dislike_description": "To ni tisto, kar želim videti",
"report.reasons.other": "It's something else", "report.reasons.other": "Gre za nekaj drugega",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "Težava ne sodi v druge kategorije",
"report.reasons.spam": "It's spam", "report.reasons.spam": "To je neželena vsebina",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Škodljive povezave, lažno prizadevanje ali ponavljajoči se odgovori",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "Krši strežniška pravila",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "Zavedate se, da krši določena pravila",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Izberite vse, kar ustreza",
"report.rules.title": "Which rules are being violated?", "report.rules.title": "Katera pravila so kršena?",
"report.statuses.subtitle": "Select all that apply", "report.statuses.subtitle": "Izberite vse, kar ustreza",
"report.statuses.title": "Are there any posts that back up this report?", "report.statuses.title": "Ali so kakšne objave, ki dokazujejo trditve iz tega poročila?",
"report.submit": "Pošlji", "report.submit": "Pošlji",
"report.target": "Prijavi {target}", "report.target": "Prijavi {target}",
"report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:", "report.thanks.take_action": "Tukaj so vaše možnosti za nadzor tistega, kar vidite na Mastodonu:",
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:", "report.thanks.take_action_actionable": "Medtem, ko to pregledujemo, lahko proti @{name} ukrepate:",
"report.thanks.title": "Don't want to see this?", "report.thanks.title": "Ali si želite to pogledati?",
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.", "report.thanks.title_actionable": "Hvala za poročilo, bomo preverili.",
"report.unfollow": "Unfollow @{name}", "report.unfollow": "Ne sledi več @{name}",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.", "report.unfollow_explanation": "Temu računu sledite. Da ne boste več videli njegovih objav v svojem domačem viru, mu prenehajte slediti.",
"search.placeholder": "Iskanje", "search.placeholder": "Iskanje",
"search_popout.search_format": "Napredna oblika iskanja", "search_popout.search_format": "Napredna oblika iskanja",
"search_popout.tips.full_text": "Enostavno besedilo vrne statuse, ki ste jih napisali, vzljubili, spodbudili ali ste bili v njih omenjeni, kot tudi ujemajoča se uporabniška imena, prikazna imena in ključnike.", "search_popout.tips.full_text": "Enostavno besedilo vrne statuse, ki ste jih napisali, vzljubili, spodbudili ali ste bili v njih omenjeni, kot tudi ujemajoča se uporabniška imena, prikazna imena in ključnike.",
@ -433,9 +433,9 @@
"search_popout.tips.text": "Enostavno besedilo vrne ujemajoča se prikazna imena, uporabniška imena in ključnike", "search_popout.tips.text": "Enostavno besedilo vrne ujemajoča se prikazna imena, uporabniška imena in ključnike",
"search_popout.tips.user": "uporabnik", "search_popout.tips.user": "uporabnik",
"search_results.accounts": "Ljudje", "search_results.accounts": "Ljudje",
"search_results.all": "All", "search_results.all": "Vse",
"search_results.hashtags": "Ključniki", "search_results.hashtags": "Ključniki",
"search_results.nothing_found": "Could not find anything for these search terms", "search_results.nothing_found": "Za ta iskalni niz ni zadetkov",
"search_results.statuses": "Tuti", "search_results.statuses": "Tuti",
"search_results.statuses_fts_disabled": "Iskanje tutov po njihovi vsebini ni omogočeno na tem strežniku Mastodon.", "search_results.statuses_fts_disabled": "Iskanje tutov po njihovi vsebini ni omogočeno na tem strežniku Mastodon.",
"search_results.total": "{count, number} {count, plural, one {rezultat} other {rezultatov}}", "search_results.total": "{count, number} {count, plural, one {rezultat} other {rezultatov}}",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -18,7 +18,7 @@
"account.followers": "Följare", "account.followers": "Följare",
"account.followers.empty": "Ingen följer denna användare än.", "account.followers.empty": "Ingen följer denna användare än.",
"account.followers_counter": "{count, plural, one {{counter} Följare} other {{counter} Följare}}", "account.followers_counter": "{count, plural, one {{counter} Följare} other {{counter} Följare}}",
"account.following": "Following", "account.following": "Följer",
"account.following_counter": "{count, plural, one {{counter} Följer} other {{counter} Följer}}", "account.following_counter": "{count, plural, one {{counter} Följer} other {{counter} Följer}}",
"account.follows.empty": "Denna användare följer inte någon än.", "account.follows.empty": "Denna användare följer inte någon än.",
"account.follows_you": "Följer dig", "account.follows_you": "Följer dig",
@ -41,7 +41,7 @@
"account.statuses_counter": "{count, plural,one {{counter} Tuta} other {{counter} Tutor}}", "account.statuses_counter": "{count, plural,one {{counter} Tuta} other {{counter} Tutor}}",
"account.unblock": "Avblockera @{name}", "account.unblock": "Avblockera @{name}",
"account.unblock_domain": "Sluta dölja {domain}", "account.unblock_domain": "Sluta dölja {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Avblockera",
"account.unendorse": "Visa inte på profil", "account.unendorse": "Visa inte på profil",
"account.unfollow": "Sluta följ", "account.unfollow": "Sluta följ",
"account.unmute": "Sluta tysta @{name}", "account.unmute": "Sluta tysta @{name}",
@ -192,7 +192,7 @@
"explore.title": "Utforska", "explore.title": "Utforska",
"explore.trending_links": "Nyheter", "explore.trending_links": "Nyheter",
"explore.trending_statuses": "Inlägg", "explore.trending_statuses": "Inlägg",
"explore.trending_tags": "Hashtags", "explore.trending_tags": "Hashtaggar",
"follow_recommendations.done": "Klar", "follow_recommendations.done": "Klar",
"follow_recommendations.heading": "Följ personer som du skulle vilja se inlägg från! Här finns det några förslag.", "follow_recommendations.heading": "Följ personer som du skulle vilja se inlägg från! Här finns det några förslag.",
"follow_recommendations.lead": "Inlägg från personer du följer kommer att dyka upp i kronologisk ordning i ditt hem-flöde. Var inte rädd för att göra misstag, du kan sluta följa människor lika enkelt när som helst!", "follow_recommendations.lead": "Inlägg från personer du följer kommer att dyka upp i kronologisk ordning i ditt hem-flöde. Var inte rädd för att göra misstag, du kan sluta följa människor lika enkelt när som helst!",
@ -337,7 +337,7 @@
"notifications.column_settings.status": "Nya tutor:", "notifications.column_settings.status": "Nya tutor:",
"notifications.column_settings.unread_notifications.category": "O-lästa aviseringar", "notifications.column_settings.unread_notifications.category": "O-lästa aviseringar",
"notifications.column_settings.unread_notifications.highlight": "Markera o-lästa aviseringar", "notifications.column_settings.unread_notifications.highlight": "Markera o-lästa aviseringar",
"notifications.column_settings.update": "Edits:", "notifications.column_settings.update": "Redigeringar:",
"notifications.filter.all": "Alla", "notifications.filter.all": "Alla",
"notifications.filter.boosts": "Knuffar", "notifications.filter.boosts": "Knuffar",
"notifications.filter.favourites": "Favoriter", "notifications.filter.favourites": "Favoriter",
@ -393,11 +393,11 @@
"report.categories.other": "Övrigt", "report.categories.other": "Övrigt",
"report.categories.spam": "Skräppost", "report.categories.spam": "Skräppost",
"report.categories.violation": "Innehåll bryter mot en eller flera serverregler", "report.categories.violation": "Innehåll bryter mot en eller flera serverregler",
"report.category.subtitle": "Choose the best match", "report.category.subtitle": "Välj den bästa träffen",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "Berätta för oss vad som händer med den här {type}",
"report.category.title_account": "profil", "report.category.title_account": "profil",
"report.category.title_status": "inlägg", "report.category.title_status": "inlägg",
"report.close": "Done", "report.close": "Färdig",
"report.comment.title": "Is there anything else you think we should know?", "report.comment.title": "Is there anything else you think we should know?",
"report.forward": "Vidarebefordra till {target}", "report.forward": "Vidarebefordra till {target}",
"report.forward_hint": "Kontot är från en annan server. Skicka även en anonymiserad kopia av anmälan dit?", "report.forward_hint": "Kontot är från en annan server. Skicka även en anonymiserad kopia av anmälan dit?",
@ -405,14 +405,14 @@
"report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.", "report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.",
"report.next": "Nästa", "report.next": "Nästa",
"report.placeholder": "Ytterligare kommentarer", "report.placeholder": "Ytterligare kommentarer",
"report.reasons.dislike": "I don't like it", "report.reasons.dislike": "Jag tycker inte om det",
"report.reasons.dislike_description": "It is not something you want to see", "report.reasons.dislike_description": "Det är inget som du vill se",
"report.reasons.other": "It's something else", "report.reasons.other": "Det är något annat",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "Det är skräppost",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Skadliga länkar, bedrägligt beteende eller repetitiva svar",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "Det bryter mot serverns regler",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "Du är medveten om att det bryter mot specifika regler",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",
"report.rules.title": "Which rules are being violated?", "report.rules.title": "Which rules are being violated?",
"report.statuses.subtitle": "Select all that apply", "report.statuses.subtitle": "Select all that apply",
@ -421,7 +421,7 @@
"report.target": "Rapporterar {target}", "report.target": "Rapporterar {target}",
"report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:", "report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:",
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:", "report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:",
"report.thanks.title": "Don't want to see this?", "report.thanks.title": "Vill du inte se det här?",
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.", "report.thanks.title_actionable": "Thanks for reporting, we'll look into this.",
"report.unfollow": "Sluta följ @{username}", "report.unfollow": "Sluta följ @{username}",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.", "report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -353,7 +353,7 @@
"notifications.permission_required": "Desktop notifications are unavailable because the required permission has not been granted.", "notifications.permission_required": "Desktop notifications are unavailable because the required permission has not been granted.",
"notifications_permission_banner.enable": "เปิดใช้งานการแจ้งเตือนบนเดสก์ท็อป", "notifications_permission_banner.enable": "เปิดใช้งานการแจ้งเตือนบนเดสก์ท็อป",
"notifications_permission_banner.how_to_control": "To receive notifications when Mastodon isn't open, enable desktop notifications. You can control precisely which types of interactions generate desktop notifications through the {icon} button above once they're enabled.", "notifications_permission_banner.how_to_control": "To receive notifications when Mastodon isn't open, enable desktop notifications. You can control precisely which types of interactions generate desktop notifications through the {icon} button above once they're enabled.",
"notifications_permission_banner.title": "ไม่พลาดสิ่งต่าง ๆ", "notifications_permission_banner.title": "ไม่พลาดสิ่งใด",
"picture_in_picture.restore": "นำกลับมา", "picture_in_picture.restore": "นำกลับมา",
"poll.closed": "ปิดแล้ว", "poll.closed": "ปิดแล้ว",
"poll.refresh": "รีเฟรช", "poll.refresh": "รีเฟรช",
@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -18,7 +18,7 @@
"account.followers": "Takipçi", "account.followers": "Takipçi",
"account.followers.empty": "Henüz kimse bu kullanıcıyı takip etmiyor.", "account.followers.empty": "Henüz kimse bu kullanıcıyı takip etmiyor.",
"account.followers_counter": "{count, plural, one {{counter} Takipçi} other {{counter} Takipçi}}", "account.followers_counter": "{count, plural, one {{counter} Takipçi} other {{counter} Takipçi}}",
"account.following": "Following", "account.following": "Takip Ediliyor",
"account.following_counter": "{count, plural, one {{counter} Takip Edilen} other {{counter} Takip Edilen}}", "account.following_counter": "{count, plural, one {{counter} Takip Edilen} other {{counter} Takip Edilen}}",
"account.follows.empty": "Bu kullanıcı henüz kimseyi takip etmiyor.", "account.follows.empty": "Bu kullanıcı henüz kimseyi takip etmiyor.",
"account.follows_you": "Seni takip ediyor", "account.follows_you": "Seni takip ediyor",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Gönderi} other {{counter} Gönderi}}", "account.statuses_counter": "{count, plural, one {{counter} Gönderi} other {{counter} Gönderi}}",
"account.unblock": "@{name} adlı kişinin engelini kaldır", "account.unblock": "@{name} adlı kişinin engelini kaldır",
"account.unblock_domain": "{domain} alan adının engelini kaldır", "account.unblock_domain": "{domain} alan adının engelini kaldır",
"account.unblock_short": "Unblock", "account.unblock_short": "Engeli kaldır",
"account.unendorse": "Profilde gösterme", "account.unendorse": "Profilde gösterme",
"account.unfollow": "Takibi bırak", "account.unfollow": "Takibi bırak",
"account.unmute": "@{name} adlı kişinin sesini aç", "account.unmute": "@{name} adlı kişinin sesini aç",
"account.unmute_notifications": "@{name} adlı kişinin bildirimlerini aç", "account.unmute_notifications": "@{name} adlı kişinin bildirimlerini aç",
"account.unmute_short": "Unmute", "account.unmute_short": "Susturmayı kaldır",
"account_note.placeholder": "Not eklemek için tıklayın", "account_note.placeholder": "Not eklemek için tıklayın",
"admin.dashboard.daily_retention": "Kayıttan sonra günlük kullanıcı saklama oranı", "admin.dashboard.daily_retention": "Kayıttan sonra günlük kullanıcı saklama oranı",
"admin.dashboard.monthly_retention": "Kayıttan sonra aylık kullanıcı saklama oranı", "admin.dashboard.monthly_retention": "Kayıttan sonra aylık kullanıcı saklama oranı",
@ -122,7 +122,7 @@
"confirmations.delete_list.confirm": "Sil", "confirmations.delete_list.confirm": "Sil",
"confirmations.delete_list.message": "Bu listeyi kalıcı olarak silmek istediğinden emin misin?", "confirmations.delete_list.message": "Bu listeyi kalıcı olarak silmek istediğinden emin misin?",
"confirmations.discard_edit_media.confirm": "Vazgeç", "confirmations.discard_edit_media.confirm": "Vazgeç",
"confirmations.discard_edit_media.message": "Ortamıklaması veya ön izlemede kaydedilmemiş değişiklikleriniz var, yine de vazgeçmek istiyor musunuz?", "confirmations.discard_edit_media.message": "Medyaıklaması veya ön izlemede kaydedilmemiş değişiklikleriniz var, yine de vazgeçmek istiyor musunuz?",
"confirmations.domain_block.confirm": "Alanın tamamını engelle", "confirmations.domain_block.confirm": "Alanın tamamını engelle",
"confirmations.domain_block.message": "{domain} alanının tamamını engellemek istediğinden gerçekten emin misin? Genellikle hedeflenen birkaç engelleme veya sessize alma yeterlidir ve tercih edilir. Bu alan adından gelen içeriği herhangi bir genel zaman çizelgesinde veya bildirimlerinde görmezsin. Bu alan adındaki takipçilerin kaldırılır.", "confirmations.domain_block.message": "{domain} alanının tamamını engellemek istediğinden gerçekten emin misin? Genellikle hedeflenen birkaç engelleme veya sessize alma yeterlidir ve tercih edilir. Bu alan adından gelen içeriği herhangi bir genel zaman çizelgesinde veya bildirimlerinde görmezsin. Bu alan adındaki takipçilerin kaldırılır.",
"confirmations.logout.confirm": "Oturumu kapat", "confirmations.logout.confirm": "Oturumu kapat",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -18,7 +18,7 @@
"account.followers": "Người theo dõi", "account.followers": "Người theo dõi",
"account.followers.empty": "Chưa có người theo dõi nào.", "account.followers.empty": "Chưa có người theo dõi nào.",
"account.followers_counter": "{count, plural, one {{counter} Người theo dõi} other {{counter} Người theo dõi}}", "account.followers_counter": "{count, plural, one {{counter} Người theo dõi} other {{counter} Người theo dõi}}",
"account.following": "Following", "account.following": "Đang theo dõi",
"account.following_counter": "{count, plural, one {{counter} Theo dõi} other {{counter} Theo dõi}}", "account.following_counter": "{count, plural, one {{counter} Theo dõi} other {{counter} Theo dõi}}",
"account.follows.empty": "Người này chưa theo dõi ai.", "account.follows.empty": "Người này chưa theo dõi ai.",
"account.follows_you": "Đang theo dõi bạn", "account.follows_you": "Đang theo dõi bạn",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Tút} other {{counter} Tút}}", "account.statuses_counter": "{count, plural, one {{counter} Tút} other {{counter} Tút}}",
"account.unblock": "Bỏ chặn @{name}", "account.unblock": "Bỏ chặn @{name}",
"account.unblock_domain": "Bỏ ẩn {domain}", "account.unblock_domain": "Bỏ ẩn {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "Bỏ chặn",
"account.unendorse": "Ngưng tôn vinh người này", "account.unendorse": "Ngưng tôn vinh người này",
"account.unfollow": "Ngưng theo dõi", "account.unfollow": "Ngưng theo dõi",
"account.unmute": "Bỏ ẩn @{name}", "account.unmute": "Bỏ ẩn @{name}",
"account.unmute_notifications": "Mở lại thông báo từ @{name}", "account.unmute_notifications": "Mở lại thông báo từ @{name}",
"account.unmute_short": "Unmute", "account.unmute_short": "Bỏ ẩn",
"account_note.placeholder": "Nhấn để thêm", "account_note.placeholder": "Nhấn để thêm",
"admin.dashboard.daily_retention": "Tỉ lệ người dùng sau đăng ký ở lại theo ngày", "admin.dashboard.daily_retention": "Tỉ lệ người dùng sau đăng ký ở lại theo ngày",
"admin.dashboard.monthly_retention": "Tỉ lệ người dùng sau đăng ký ở lại theo tháng", "admin.dashboard.monthly_retention": "Tỉ lệ người dùng sau đăng ký ở lại theo tháng",
@ -168,7 +168,7 @@
"empty_column.community": "Máy chủ của bạn chưa có tút nào công khai. Bạn hãy thử viết gì đó đi!", "empty_column.community": "Máy chủ của bạn chưa có tút nào công khai. Bạn hãy thử viết gì đó đi!",
"empty_column.direct": "Bạn chưa có tin nhắn nào. Khi bạn gửi hoặc nhận tin nhắn, nó sẽ hiển thị ở đây.", "empty_column.direct": "Bạn chưa có tin nhắn nào. Khi bạn gửi hoặc nhận tin nhắn, nó sẽ hiển thị ở đây.",
"empty_column.domain_blocks": "Chưa ẩn bất kỳ máy chủ nào.", "empty_column.domain_blocks": "Chưa ẩn bất kỳ máy chủ nào.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Chưa có xu hướng nào. Kiểm tra lại sau!",
"empty_column.favourited_statuses": "Bạn chưa thích tút nào. Hãy thử đi, nó sẽ xuất hiện ở đây.", "empty_column.favourited_statuses": "Bạn chưa thích tút nào. Hãy thử đi, nó sẽ xuất hiện ở đây.",
"empty_column.favourites": "Chưa có ai thích tút này.", "empty_column.favourites": "Chưa có ai thích tút này.",
"empty_column.follow_recommendations": "Bạn chưa có gợi ý theo dõi nào. Hãy thử tìm kiếm những người thú vị hoặc khám phá những hashtag xu hướng.", "empty_column.follow_recommendations": "Bạn chưa có gợi ý theo dõi nào. Hãy thử tìm kiếm những người thú vị hoặc khám phá những hashtag xu hướng.",
@ -187,12 +187,12 @@
"error.unexpected_crash.next_steps_addons": "Hãy tắt add-on và làm tươi trang. Nếu vẫn không được, bạn nên thử đăng nhập Mastodon trên trình duyệt khác hoặc app khác.", "error.unexpected_crash.next_steps_addons": "Hãy tắt add-on và làm tươi trang. Nếu vẫn không được, bạn nên thử đăng nhập Mastodon trên trình duyệt khác hoặc app khác.",
"errors.unexpected_crash.copy_stacktrace": "Sao chép stacktrace vào clipboard", "errors.unexpected_crash.copy_stacktrace": "Sao chép stacktrace vào clipboard",
"errors.unexpected_crash.report_issue": "Báo cáo lỗi", "errors.unexpected_crash.report_issue": "Báo cáo lỗi",
"explore.search_results": "Search results", "explore.search_results": "Kết quả tìm kiếm",
"explore.suggested_follows": "For you", "explore.suggested_follows": "Đề xuất cho bạn",
"explore.title": "Explore", "explore.title": "Khám phá",
"explore.trending_links": "News", "explore.trending_links": "Tin tức",
"explore.trending_statuses": "Posts", "explore.trending_statuses": "Tút",
"explore.trending_tags": "Hashtags", "explore.trending_tags": "Hashtag",
"follow_recommendations.done": "Xong", "follow_recommendations.done": "Xong",
"follow_recommendations.heading": "Theo dõi những người bạn muốn đọc tút của họ! Dưới đây là vài gợi ý.", "follow_recommendations.heading": "Theo dõi những người bạn muốn đọc tút của họ! Dưới đây là vài gợi ý.",
"follow_recommendations.lead": "Tút từ những người bạn theo dõi sẽ hiện theo thứ tự thời gian trên bảng tin. Đừng ngại, bạn có thể dễ dàng ngưng theo dõi họ bất cứ lúc nào!", "follow_recommendations.lead": "Tút từ những người bạn theo dõi sẽ hiện theo thứ tự thời gian trên bảng tin. Đừng ngại, bạn có thể dễ dàng ngưng theo dõi họ bất cứ lúc nào!",
@ -308,7 +308,7 @@
"navigation_bar.preferences": "Cài đặt", "navigation_bar.preferences": "Cài đặt",
"navigation_bar.public_timeline": "Thế giới", "navigation_bar.public_timeline": "Thế giới",
"navigation_bar.security": "Bảo mật", "navigation_bar.security": "Bảo mật",
"notification.admin.sign_up": "{name} signed up", "notification.admin.sign_up": "{name} vừa đăng ký",
"notification.favourite": "{name} thích tút của bạn", "notification.favourite": "{name} thích tút của bạn",
"notification.follow": "{name} theo dõi bạn", "notification.follow": "{name} theo dõi bạn",
"notification.follow_request": "{name} yêu cầu theo dõi bạn", "notification.follow_request": "{name} yêu cầu theo dõi bạn",
@ -320,7 +320,7 @@
"notification.update": "{name} đã viết lại một tút", "notification.update": "{name} đã viết lại một tút",
"notifications.clear": "Xóa hết thông báo", "notifications.clear": "Xóa hết thông báo",
"notifications.clear_confirmation": "Bạn thật sự muốn xóa vĩnh viễn tất cả thông báo của mình?", "notifications.clear_confirmation": "Bạn thật sự muốn xóa vĩnh viễn tất cả thông báo của mình?",
"notifications.column_settings.admin.sign_up": "New sign-ups:", "notifications.column_settings.admin.sign_up": "Lượt đăng ký mới:",
"notifications.column_settings.alert": "Thông báo trên máy tính", "notifications.column_settings.alert": "Thông báo trên máy tính",
"notifications.column_settings.favourite": "Lượt thích:", "notifications.column_settings.favourite": "Lượt thích:",
"notifications.column_settings.filter_bar.advanced": "Toàn bộ", "notifications.column_settings.filter_bar.advanced": "Toàn bộ",
@ -388,43 +388,43 @@
"relative_time.seconds": "{number}s", "relative_time.seconds": "{number}s",
"relative_time.today": "hôm nay", "relative_time.today": "hôm nay",
"reply_indicator.cancel": "Hủy bỏ", "reply_indicator.cancel": "Hủy bỏ",
"report.block": "Block", "report.block": "Chặn",
"report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.", "report.block_explanation": "Bạn sẽ không thấy tút của họ nữa. Họ cũng không thể theo dõi hoặc thấy tút của bạn. Họ sẽ biết là họ đã bị chặn.",
"report.categories.other": "Khác", "report.categories.other": "Khác",
"report.categories.spam": "Spam", "report.categories.spam": "Spam",
"report.categories.violation": "Vi phạm quy tắc máy chủ", "report.categories.violation": "Vi phạm quy tắc máy chủ",
"report.category.subtitle": "Choose the best match", "report.category.subtitle": "Chọn mục gần khớp nhất",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "Nói với họ chuyện gì xảy ra với {type}",
"report.category.title_account": "profile", "report.category.title_account": "người dùng",
"report.category.title_status": "post", "report.category.title_status": "t",
"report.close": "Done", "report.close": "Xong",
"report.comment.title": "Is there anything else you think we should know?", "report.comment.title": "Bạn nghĩ chúng tôi nên biết thêm điều gì?",
"report.forward": "Chuyển đến {target}", "report.forward": "Chuyển đến {target}",
"report.forward_hint": "Người này thuộc máy chủ khác. Gửi một báo cáo ẩn danh tới máy chủ đó?", "report.forward_hint": "Người này thuộc máy chủ khác. Gửi một báo cáo ẩn danh tới máy chủ đó?",
"report.mute": "Mute", "report.mute": "Ẩn",
"report.mute_explanation": "You will not see their posts. They can still follow you and see your posts and will not know that they are muted.", "report.mute_explanation": "Bạn sẽ không thấy tút của họ nữa. Họ cũng không thể theo dõi hoặc thấy tút của bạn. Họ sẽ không biết là họ đã bị bạn ẩn.",
"report.next": "Next", "report.next": "Tiếp theo",
"report.placeholder": "Bổ sung thêm", "report.placeholder": "Bổ sung thêm",
"report.reasons.dislike": "I don't like it", "report.reasons.dislike": "Tôi không thích nó",
"report.reasons.dislike_description": "It is not something you want to see", "report.reasons.dislike_description": "Đó không phải là thứ gì mà bạn muốn thấy",
"report.reasons.other": "It's something else", "report.reasons.other": "Một lý do khác",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "Vấn đề không nằm trong những mục trên",
"report.reasons.spam": "It's spam", "report.reasons.spam": "Đây là spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Liên kết độc hại, tạo tương tác giả hoặc trả lời lặp đi lặp lại",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "Vi phạm quy tắc máy chủ",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "Bạn nhận thấy nó vi phạm quy tắc máy chủ",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Chọn tất cả những áp dụng",
"report.rules.title": "Which rules are being violated?", "report.rules.title": "Vi phạm quy tắc nào?",
"report.statuses.subtitle": "Select all that apply", "report.statuses.subtitle": "Chọn tất cả những áp dụng",
"report.statuses.title": "Are there any posts that back up this report?", "report.statuses.title": "Bạn muốn gửi tút nào kèm báo cáo này?",
"report.submit": "Gửi đi", "report.submit": "Gửi đi",
"report.target": "Báo cáo {target}", "report.target": "Báo cáo {target}",
"report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:", "report.thanks.take_action": "Đây là một số cách để kiểm soát thứ bạn nhìn thấy trên Mastodon:",
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:", "report.thanks.take_action_actionable": "Trong lúc chờ chúng tôi xem xét, bạn có thể áp dụng hành động với @{name}:",
"report.thanks.title": "Don't want to see this?", "report.thanks.title": "Không muốn xem thứ này?",
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.", "report.thanks.title_actionable": "Cảm ơn đã báo cáo, chúng tôi sẽ xem xét kỹ.",
"report.unfollow": "Unfollow @{name}", "report.unfollow": "Ngưng theo dõi @{name}",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.", "report.unfollow_explanation": "Bạn đang theo dõi người này. Để không thấy tút của họ trong bảng tin nữa, hãy ngưng theo dõi.",
"search.placeholder": "Tìm kiếm", "search.placeholder": "Tìm kiếm",
"search_popout.search_format": "Gợi ý", "search_popout.search_format": "Gợi ý",
"search_popout.tips.full_text": "Nội dung trả về bao gồm những tút mà bạn đã viết, thích, chia sẻ hoặc những tút có nhắc đến bạn. Bạn cũng có thể tìm địa chỉ người dùng, tên hiển thị và hashtag.", "search_popout.tips.full_text": "Nội dung trả về bao gồm những tút mà bạn đã viết, thích, chia sẻ hoặc những tút có nhắc đến bạn. Bạn cũng có thể tìm địa chỉ người dùng, tên hiển thị và hashtag.",
@ -433,9 +433,9 @@
"search_popout.tips.text": "Nội dung trả về là tên người dùng, tên hiển thị và hashtag", "search_popout.tips.text": "Nội dung trả về là tên người dùng, tên hiển thị và hashtag",
"search_popout.tips.user": "người dùng", "search_popout.tips.user": "người dùng",
"search_results.accounts": "Người dùng", "search_results.accounts": "Người dùng",
"search_results.all": "All", "search_results.all": "Toàn bộ",
"search_results.hashtags": "Hashtags", "search_results.hashtags": "Hashtags",
"search_results.nothing_found": "Could not find anything for these search terms", "search_results.nothing_found": "Không tìm thấy kết quả trùng khớp",
"search_results.statuses": "Tút", "search_results.statuses": "Tút",
"search_results.statuses_fts_disabled": "Máy chủ của bạn không bật tính năng tìm kiếm tút.", "search_results.statuses_fts_disabled": "Máy chủ của bạn không bật tính năng tìm kiếm tút.",
"search_results.total": "{count, number} {count, plural, one {kết quả} other {kết quả}}", "search_results.total": "{count, number} {count, plural, one {kết quả} other {kết quả}}",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -403,14 +403,14 @@
"report.forward_hint": "这名用户来自另一个服务器。是否要向那个服务器发送一条匿名的举报?", "report.forward_hint": "这名用户来自另一个服务器。是否要向那个服务器发送一条匿名的举报?",
"report.mute": "静音", "report.mute": "静音",
"report.mute_explanation": "你将不会看到他们的嘟文。他们仍然可以关注你并看到你的嘟文,但他们不会知道他们被静音了。", "report.mute_explanation": "你将不会看到他们的嘟文。他们仍然可以关注你并看到你的嘟文,但他们不会知道他们被静音了。",
"report.next": "Next", "report.next": "下一步",
"report.placeholder": "备注", "report.placeholder": "备注",
"report.reasons.dislike": "我不喜欢它", "report.reasons.dislike": "我不喜欢它",
"report.reasons.dislike_description": "这不是你想看到的东西", "report.reasons.dislike_description": "这不是你想看到的东西",
"report.reasons.other": "其他原因", "report.reasons.other": "其他原因",
"report.reasons.other_description": "该问题不符合其他类别", "report.reasons.other_description": "该问题不符合其他类别",
"report.reasons.spam": "它是垃圾信息", "report.reasons.spam": "它是垃圾信息",
"report.reasons.spam_description": "恶意链接、虚假参与或重复性回复", "report.reasons.spam_description": "恶意链接,虚假互动和重复回复",
"report.reasons.violation": "它违反了服务器规则", "report.reasons.violation": "它违反了服务器规则",
"report.reasons.violation_description": "你清楚它违反了特定的规则", "report.reasons.violation_description": "你清楚它违反了特定的规则",
"report.rules.subtitle": "选择所有适用选项", "report.rules.subtitle": "选择所有适用选项",

View File

@ -410,7 +410,7 @@
"report.reasons.other": "It's something else", "report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam", "report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetetive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules", "report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules", "report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply", "report.rules.subtitle": "Select all that apply",

View File

@ -18,7 +18,7 @@
"account.followers": "跟隨者", "account.followers": "跟隨者",
"account.followers.empty": "尚未有人跟隨這位使用者。", "account.followers.empty": "尚未有人跟隨這位使用者。",
"account.followers_counter": "被 {count, plural,one {{counter} 人}other {{counter} 人}} 跟隨", "account.followers_counter": "被 {count, plural,one {{counter} 人}other {{counter} 人}} 跟隨",
"account.following": "Following", "account.following": "跟隨中",
"account.following_counter": "正在跟隨 {count, plural,one {{counter}}other {{counter} 人}}", "account.following_counter": "正在跟隨 {count, plural,one {{counter}}other {{counter} 人}}",
"account.follows.empty": "這位使用者尚未跟隨任何人。", "account.follows.empty": "這位使用者尚未跟隨任何人。",
"account.follows_you": "跟隨了您", "account.follows_you": "跟隨了您",
@ -41,12 +41,12 @@
"account.statuses_counter": "{count, plural,one {{counter} 則}other {{counter} 則}}嘟文", "account.statuses_counter": "{count, plural,one {{counter} 則}other {{counter} 則}}嘟文",
"account.unblock": "取消封鎖 @{name}", "account.unblock": "取消封鎖 @{name}",
"account.unblock_domain": "取消封鎖域名 {domain}", "account.unblock_domain": "取消封鎖域名 {domain}",
"account.unblock_short": "Unblock", "account.unblock_short": "解除封鎖",
"account.unendorse": "不再於個人資料頁面推薦對方", "account.unendorse": "不再於個人資料頁面推薦對方",
"account.unfollow": "取消跟隨", "account.unfollow": "取消跟隨",
"account.unmute": "取消靜音 @{name}", "account.unmute": "取消靜音 @{name}",
"account.unmute_notifications": "重新接收來自 @{name} 的通知", "account.unmute_notifications": "重新接收來自 @{name} 的通知",
"account.unmute_short": "Unmute", "account.unmute_short": "解除靜音",
"account_note.placeholder": "按此添加備注", "account_note.placeholder": "按此添加備注",
"admin.dashboard.daily_retention": "註冊後使用者存留率(日)", "admin.dashboard.daily_retention": "註冊後使用者存留率(日)",
"admin.dashboard.monthly_retention": "註冊後使用者存留率(月)", "admin.dashboard.monthly_retention": "註冊後使用者存留率(月)",
@ -272,7 +272,7 @@
"lists.new.create": "新增名單", "lists.new.create": "新增名單",
"lists.new.title_placeholder": "新名單標題", "lists.new.title_placeholder": "新名單標題",
"lists.replies_policy.followed": "任何跟隨的使用者", "lists.replies_policy.followed": "任何跟隨的使用者",
"lists.replies_policy.list": "列表成員", "lists.replies_policy.list": "名單成員",
"lists.replies_policy.none": "沒有人", "lists.replies_policy.none": "沒有人",
"lists.replies_policy.title": "顯示回覆:", "lists.replies_policy.title": "顯示回覆:",
"lists.search": "搜尋您跟隨的使用者", "lists.search": "搜尋您跟隨的使用者",
@ -294,7 +294,7 @@
"navigation_bar.discover": "探索", "navigation_bar.discover": "探索",
"navigation_bar.domain_blocks": "隱藏的網域", "navigation_bar.domain_blocks": "隱藏的網域",
"navigation_bar.edit_profile": "編輯個人資料", "navigation_bar.edit_profile": "編輯個人資料",
"navigation_bar.favourites": "收藏", "navigation_bar.favourites": "最愛",
"navigation_bar.filters": "靜音詞彙", "navigation_bar.filters": "靜音詞彙",
"navigation_bar.follow_requests": "跟隨請求", "navigation_bar.follow_requests": "跟隨請求",
"navigation_bar.follows_and_followers": "跟隨中與跟隨者", "navigation_bar.follows_and_followers": "跟隨中與跟隨者",
@ -410,7 +410,7 @@
"report.reasons.other": "其他原因", "report.reasons.other": "其他原因",
"report.reasons.other_description": "這個問題不屬於其他分類", "report.reasons.other_description": "這個問題不屬於其他分類",
"report.reasons.spam": "垃圾訊息", "report.reasons.spam": "垃圾訊息",
"report.reasons.spam_description": "有害連結假造的互動,或是重複性回覆", "report.reasons.spam_description": "有害連結假造的互動,或是重複性回覆",
"report.reasons.violation": "違反伺服器規則", "report.reasons.violation": "違反伺服器規則",
"report.reasons.violation_description": "您知道它違反特定規則", "report.reasons.violation_description": "您知道它違反特定規則",
"report.rules.subtitle": "請選擇所有適用的選項", "report.rules.subtitle": "請選擇所有適用的選項",

View File

@ -304,7 +304,8 @@ html {
} }
&__item { &__item {
a { a,
button {
background: $white; background: $white;
color: $darker-text-color; color: $darker-text-color;
} }
@ -336,10 +337,18 @@ html {
color: $white; color: $white;
} }
.dropdown-menu__separator { .dropdown-menu__separator,
.dropdown-menu__item.edited-timestamp__history__item,
.dropdown-menu__container__header,
.compare-history-modal .report-modal__target,
.report-dialog-modal .poll__option.dialog-option {
border-bottom-color: lighten($ui-base-color, 4%); border-bottom-color: lighten($ui-base-color, 4%);
} }
.report-dialog-modal__container {
border-top-color: lighten($ui-base-color, 4%);
}
// Change the background colors of modals // Change the background colors of modals
.actions-modal, .actions-modal,
.boost-modal, .boost-modal,
@ -351,6 +360,7 @@ html {
.embed-modal, .embed-modal,
.error-modal, .error-modal,
.onboarding-modal, .onboarding-modal,
.compare-history-modal,
.report-modal__comment .setting-text__wrapper, .report-modal__comment .setting-text__wrapper,
.report-modal__comment .setting-text, .report-modal__comment .setting-text,
.announcements, .announcements,

View File

@ -71,15 +71,7 @@ class ActivityPub::Activity
end end
def object_uri def object_uri
@object_uri ||= begin @object_uri ||= uri_from_bearcap(value_or_id(@object))
str = value_or_id(@object)
if str&.start_with?('bear:')
Addressable::URI.parse(str).query_values['u']
else
str
end
end
end end
def unsupported_object_type? def unsupported_object_type?

View File

@ -20,7 +20,7 @@ class ActivityPub::Activity::Update < ActivityPub::Activity
end end
def update_status def update_status
return reject_payload! if invalid_origin?(@object['id']) return reject_payload! if invalid_origin?(object_uri)
@status = Status.find_by(uri: object_uri, account_id: @account.id) @status = Status.find_by(uri: object_uri, account_id: @account.id)

View File

@ -68,6 +68,8 @@ class Admin::StatusBatchAction
end end
def handle_mark_as_sensitive! def handle_mark_as_sensitive!
representative_account = Account.representative
# Can't use a transaction here because UpdateStatusService queues # Can't use a transaction here because UpdateStatusService queues
# Sidekiq jobs # Sidekiq jobs
statuses.includes(:media_attachments, :preview_cards).find_each do |status| statuses.includes(:media_attachments, :preview_cards).find_each do |status|
@ -76,7 +78,7 @@ class Admin::StatusBatchAction
authorize(status, :update?) authorize(status, :update?)
if target_account.local? if target_account.local?
UpdateStatusService.new.call(status, current_account.id, sensitive: true) UpdateStatusService.new.call(status, representative_account.id, sensitive: true)
else else
status.update(sensitive: true) status.update(sensitive: true)
end end

View File

@ -15,7 +15,8 @@ module AccountMerging
Status, StatusPin, MediaAttachment, Poll, Report, Tombstone, Favourite, Status, StatusPin, MediaAttachment, Poll, Report, Tombstone, Favourite,
Follow, FollowRequest, Block, Mute, Follow, FollowRequest, Block, Mute,
AccountModerationNote, AccountPin, AccountStat, ListAccount, AccountModerationNote, AccountPin, AccountStat, ListAccount,
PollVote, Mention, AccountDeletionRequest, AccountNote, FollowRecommendationSuppression PollVote, Mention, AccountDeletionRequest, AccountNote, FollowRecommendationSuppression,
Appeal
] ]
owned_classes.each do |klass| owned_classes.each do |klass|
@ -47,6 +48,10 @@ module AccountMerging
record.update_attribute(:reference_account_id, id) record.update_attribute(:reference_account_id, id)
end end
Appeal.where(account_warning_id: other_account.id).find_each do |record|
record.update_attribute(:account_warning_id, id)
end
# Some follow relationships have moved, so the cache is stale # Some follow relationships have moved, so the cache is stale
Rails.cache.delete_matched("followers_hash:#{id}:*") Rails.cache.delete_matched("followers_hash:#{id}:*")
Rails.cache.delete_matched("relationships:#{id}:*") Rails.cache.delete_matched("relationships:#{id}:*")

View File

@ -33,7 +33,7 @@ class Instance < ApplicationRecord
end end
def unavailable? def unavailable?
unavailable_domain.present? unavailable_domain.present? || domain_block&.suspend?
end end
def failing? def failing?

View File

@ -15,24 +15,30 @@ class ActivityPub::FetchRemoteStatusService < BaseService
return unless supported_context? return unless supported_context?
actor_id = nil actor_uri = nil
activity_json = nil activity_json = nil
object_uri = nil
if expected_object_type? if expected_object_type?
actor_id = value_or_id(first_of_value(@json['attributedTo'])) actor_uri = value_or_id(first_of_value(@json['attributedTo']))
activity_json = { 'type' => 'Create', 'actor' => actor_id, 'object' => @json } activity_json = { 'type' => 'Create', 'actor' => actor_uri, 'object' => @json }
object_uri = uri_from_bearcap(@json['id'])
elsif expected_activity_type? elsif expected_activity_type?
actor_id = value_or_id(first_of_value(@json['actor'])) actor_uri = value_or_id(first_of_value(@json['actor']))
activity_json = @json activity_json = @json
object_uri = uri_from_bearcap(value_or_id(@json['object']))
end end
return if activity_json.nil? || !trustworthy_attribution?(@json['id'], actor_id) return if activity_json.nil? || object_uri.nil? || !trustworthy_attribution?(@json['id'], actor_uri)
actor = ActivityPub::TagManager.instance.uri_to_resource(actor_id, Account) actor = account_from_uri(actor_uri)
actor = ActivityPub::FetchRemoteAccountService.new.call(actor_id, id: true) if actor.nil? || needs_update?(actor)
return if actor.nil? || actor.suspended? return if actor.nil? || actor.suspended?
# If we fetched a status that already exists, then we need to treat the
# activity as an update rather than create
activity_json['type'] = 'Update' if equals_or_includes_any?(activity_json['type'], %w(Create)) && Status.where(uri: object_uri, account_id: actor.id).exists?
ActivityPub::Activity.factory(activity_json, actor).perform ActivityPub::Activity.factory(activity_json, actor).perform
end end
@ -43,6 +49,12 @@ class ActivityPub::FetchRemoteStatusService < BaseService
Addressable::URI.parse(uri).normalized_host.casecmp(Addressable::URI.parse(attributed_to).normalized_host).zero? Addressable::URI.parse(uri).normalized_host.casecmp(Addressable::URI.parse(attributed_to).normalized_host).zero?
end end
def account_from_uri(uri)
actor = ActivityPub::TagManager.instance.uri_to_resource(uri, Account)
actor = ActivityPub::FetchRemoteAccountService.new.call(uri, id: true) if actor.nil? || actor.possibly_stale?
actor
end
def supported_context? def supported_context?
super(@json) super(@json)
end end
@ -54,8 +66,4 @@ class ActivityPub::FetchRemoteStatusService < BaseService
def expected_object_type? def expected_object_type?
equals_or_includes_any?(@json['type'], ActivityPub::Activity::Create::SUPPORTED_TYPES + ActivityPub::Activity::Create::CONVERTED_TYPES) equals_or_includes_any?(@json['type'], ActivityPub::Activity::Create::SUPPORTED_TYPES + ActivityPub::Activity::Create::CONVERTED_TYPES)
end end
def needs_update?(actor)
actor.possibly_stale?
end
end end

View File

@ -15,6 +15,8 @@ class ActivityPub::ProcessStatusUpdateService < BaseService
# Only native types can be updated at the moment # Only native types can be updated at the moment
return if !expected_type? || already_updated_more_recently? return if !expected_type? || already_updated_more_recently?
last_edit_date = status.edited_at.presence || status.created_at
# Only allow processing one create/update per status at a time # Only allow processing one create/update per status at a time
RedisLock.acquire(lock_options) do |lock| RedisLock.acquire(lock_options) do |lock|
if lock.acquired? if lock.acquired?
@ -37,6 +39,8 @@ class ActivityPub::ProcessStatusUpdateService < BaseService
raise Mastodon::RaceConditionError raise Mastodon::RaceConditionError
end end
end end
forward_activity! if significant_changes? && @status_parser.edited_at.present? && @status_parser.edited_at > last_edit_date
end end
private private
@ -263,4 +267,12 @@ class ActivityPub::ProcessStatusUpdateService < BaseService
PollExpirationNotifyWorker.remove_from_scheduled(poll.id) if @previous_expires_at.present? && @previous_expires_at > poll.expires_at PollExpirationNotifyWorker.remove_from_scheduled(poll.id) if @previous_expires_at.present? && @previous_expires_at > poll.expires_at
PollExpirationNotifyWorker.perform_at(poll.expires_at + 5.minutes, poll.id) PollExpirationNotifyWorker.perform_at(poll.expires_at + 5.minutes, poll.id)
end end
def forward_activity!
forwarder.forward! if forwarder.forwardable?
end
def forwarder
@forwarder ||= ActivityPub::Forwarder.new(@account, @json, @status)
end
end end

View File

@ -118,9 +118,9 @@ class Rack::Attack
req.session[:attempt_user_id] || req.params.dig('user', 'email').presence if req.post? && req.path == '/auth/sign_in' req.session[:attempt_user_id] || req.params.dig('user', 'email').presence if req.post? && req.path == '/auth/sign_in'
end end
self.throttled_response = lambda do |env| self.throttled_responder = lambda do |request|
now = Time.now.utc now = Time.now.utc
match_data = env['rack.attack.match_data'] match_data = request.env['rack.attack.match_data']
headers = { headers = {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',

View File

@ -24,7 +24,7 @@ fr:
status: status:
attributes: attributes:
reblog: reblog:
taken: du statut existe déjà taken: du message existe déjà
user: user:
attributes: attributes:
email: email:

View File

@ -7,6 +7,7 @@ nn:
options: Val options: Val
user: user:
email: E-mail address email: E-mail address
locale: Område
password: Passord password: Passord
user/account: user/account:
username: Brukernavn username: Brukernavn

View File

@ -16,6 +16,7 @@ ar:
contact: للتواصل معنا contact: للتواصل معنا
contact_missing: لم يتم تعيينه contact_missing: لم يتم تعيينه
contact_unavailable: غير متوفر contact_unavailable: غير متوفر
continue_to_web: المتابعة إلى تطبيق الويب
discover_users: اكتشف مستخدِمين discover_users: اكتشف مستخدِمين
documentation: الدليل documentation: الدليل
federation_hint_html: بواسطة حساب في %{instance} ستتمكن من تتبع أناس في أي خادم ماستدون وأكثر. federation_hint_html: بواسطة حساب في %{instance} ستتمكن من تتبع أناس في أي خادم ماستدون وأكثر.
@ -81,7 +82,6 @@ ar:
media: الوسائط media: الوسائط
moved_html: "%{name} إنتقلَ إلى %{new_profile_link}:" moved_html: "%{name} إنتقلَ إلى %{new_profile_link}:"
network_hidden: إنّ المعطيات غير متوفرة network_hidden: إنّ المعطيات غير متوفرة
never_active: أبدا
nothing_here: لا يوجد أي شيء هنا! nothing_here: لا يوجد أي شيء هنا!
people_followed_by: الأشخاص الذين يتبعهم %{name} people_followed_by: الأشخاص الذين يتبعهم %{name}
people_who_follow: الأشخاص الذين يتبعون %{name} people_who_follow: الأشخاص الذين يتبعون %{name}
@ -242,6 +242,7 @@ ar:
whitelisted: في القائمة البيضاء whitelisted: في القائمة البيضاء
action_logs: action_logs:
action_types: action_types:
approve_appeal: الموافقة على الطعن
approve_user: الموافقة على المستخدم approve_user: الموافقة على المستخدم
assigned_to_self_report: أسند التقرير assigned_to_self_report: أسند التقرير
change_email_user: تغيير عنوان البريد الإلكتروني الخاص بالمستخدم change_email_user: تغيير عنوان البريد الإلكتروني الخاص بالمستخدم
@ -273,6 +274,7 @@ ar:
enable_user: تفعيل المستخدم enable_user: تفعيل المستخدم
memorialize_account: جعل الحساب تذكاريا memorialize_account: جعل الحساب تذكاريا
promote_user: ترقية المستخدم promote_user: ترقية المستخدم
reject_appeal: رفض الطعن
reject_user: ارفض المستخدم reject_user: ارفض المستخدم
remove_avatar_user: احذف الصورة الرمزية remove_avatar_user: احذف الصورة الرمزية
reopen_report: إعادة فتح التقرير reopen_report: إعادة فتح التقرير
@ -404,6 +406,10 @@ ar:
top_languages: اللغات الأكثر نشاطا top_languages: اللغات الأكثر نشاطا
top_servers: الخوادم الأكثر نشاطا top_servers: الخوادم الأكثر نشاطا
website: موقع الويب website: موقع الويب
disputes:
appeals:
empty: ليست هناك أية طعون.
title: الطعون
domain_allows: domain_allows:
add_new: إضافة النطاق إلى القائمة البيضاء add_new: إضافة النطاق إلى القائمة البيضاء
created_msg: تمت إضافة النطاق إلى القائمة البيضاء بنجاح created_msg: تمت إضافة النطاق إلى القائمة البيضاء بنجاح
@ -435,17 +441,6 @@ ar:
reject_media_hint: يزيل ملفات الوسائط المخزنة محليًا ويرفض تنزيل أي ملفات في المستقبل. غير ذي صلة للتعليق reject_media_hint: يزيل ملفات الوسائط المخزنة محليًا ويرفض تنزيل أي ملفات في المستقبل. غير ذي صلة للتعليق
reject_reports: رفض التقارير reject_reports: رفض التقارير
reject_reports_hint: تجاهل جميع تقارير الإبلاغ القادمة من هذا النطاق. هذا يستثي التعليقات reject_reports_hint: تجاهل جميع تقارير الإبلاغ القادمة من هذا النطاق. هذا يستثي التعليقات
rejecting_media: جار رفض ملفات الوسائط
rejecting_reports: جار رفض التقارير
severity:
silence: تم كتمه
suspend: تم تعليقه
show:
retroactive:
silence: إلغاء الكتم عن كافة الحسابات المتواجدة على هذا النطاق
suspend: إلغاء التعليق المفروض على كافة حسابات هذا النطاق
title: رفع حظر النطاق عن %{domain}
undo: إلغاء
undo: إلغاء حجب النطاق undo: إلغاء حجب النطاق
view: عرض كتلة النطاق view: عرض كتلة النطاق
email_domain_blocks: email_domain_blocks:
@ -475,21 +470,14 @@ ar:
clear: مسح أخطاء التسليم clear: مسح أخطاء التسليم
restart: إعادة تشغيل التوصيل restart: إعادة تشغيل التوصيل
stop: إيقاف التوصيل stop: إيقاف التوصيل
title: التوصيل
unavailable: غير متوفر unavailable: غير متوفر
unavailable_message: التوصيل غير متوفر
warning: تحذير
warning_message:
few: فشل التوصيل لـ%{count} أيام
many: فشل التوصيل لـ%{count} يوم
one: فشل التوصيل لـ%{count} يوم
other: فشل التوصيل لـ%{count} يوم
two: فشل التوصيل لـ%{count} يوم
zero: فشل التوصيل لـ%{count} يوم
delivery_available: التسليم متوفر delivery_available: التسليم متوفر
delivery_error_days: أيام أخطاء التوصيل delivery_error_days: أيام أخطاء التوصيل
delivery_error_hint: إذا كان التوصيل غير ممكناً لـ%{count} يوم، فستوضع عليها علامة {غير قابلة للتسليم} تلقائياً. delivery_error_hint: إذا كان التوصيل غير ممكناً لـ%{count} يوم، فستوضع عليها علامة {غير قابلة للتسليم} تلقائياً.
empty: لم يتم العثور على نطاقات. empty: لم يتم العثور على نطاقات.
known_accounts:
one: "%{count} حساب معروف"
other: "%{count} حسابات معروفة"
moderation: moderation:
all: كافتها all: كافتها
limited: محدود limited: محدود
@ -700,12 +688,16 @@ ar:
back_to_report: العودة إلى صفحة التقرير back_to_report: العودة إلى صفحة التقرير
batch: batch:
remove_from_report: إزالة من التقرير remove_from_report: إزالة من التقرير
report: إبلاغ
deleted: محذوف deleted: محذوف
media: media:
title: الوسائط title: الوسائط
no_status_selected: لم يطرأ أي تغيير على أي منشور بما أنه لم يتم اختيار أي واحد no_status_selected: لم يطرأ أي تغيير على أي منشور بما أنه لم يتم اختيار أي واحد
title: منشورات الحساب title: منشورات الحساب
with_media: تحتوي على وسائط with_media: تحتوي على وسائط
strikes:
appeal_approved: طُعِن فيه
appeal_pending: طعن قيد المراجعة
system_checks: system_checks:
database_schema_check: database_schema_check:
message_html: هناك عمليات هجرة معلقة لقواعد البيانات. يرجى تشغيلها لضمان تصرف التطبيق كما هو متوقع message_html: هناك عمليات هجرة معلقة لقواعد البيانات. يرجى تشغيلها لضمان تصرف التطبيق كما هو متوقع
@ -759,6 +751,15 @@ ar:
empty: لم تحدد أي إعدادات تحذير مسبقة بعد. empty: لم تحدد أي إعدادات تحذير مسبقة بعد.
title: إدارة نماذج التحذير title: إدارة نماذج التحذير
admin_mailer: admin_mailer:
new_appeal:
actions:
delete_statuses: لحذف منشوراتهم
disable: لتجميد حسابهم
mark_statuses_as_sensitive: لوضع علامة حساس على منشوراتهم
none: لتحذيرهم
sensitive: لجعل حسابهم كحساس
silence: للحد من حسابهم
suspend: لتعليق حسابهم
new_pending_account: new_pending_account:
body: تفاصيل الحساب الجديد أدناه. يمكنك الموافقة على هذا الطلب أو رفضه. body: تفاصيل الحساب الجديد أدناه. يمكنك الموافقة على هذا الطلب أو رفضه.
subject: حساب جديد في انتظار مراجعة على %{instance} (%{username}) subject: حساب جديد في انتظار مراجعة على %{instance} (%{username})
@ -766,6 +767,11 @@ ar:
body: قام %{reporter} بالإبلاغ عن %{target} body: قام %{reporter} بالإبلاغ عن %{target}
body_remote: أبلغ شخص ما من %{domain} عن %{target} body_remote: أبلغ شخص ما من %{domain} عن %{target}
subject: تقرير جديد ل%{instance} (#%{id}) subject: تقرير جديد ل%{instance} (#%{id})
new_trends:
new_trending_statuses:
title: المنشورات الشائعة
new_trending_tags:
title: الوسوم المتداولة
aliases: aliases:
add_new: أنشئ كُنية add_new: أنشئ كُنية
created_msg: تم إنشاء الكُنية الجديدة بنجاح. يمكنكم الآن الشروع في الإنتقال مِن حسابكم القديم. created_msg: تم إنشاء الكُنية الجديدة بنجاح. يمكنكم الآن الشروع في الإنتقال مِن حسابكم القديم.
@ -904,6 +910,27 @@ ar:
directory: سِجلّ الصفحات التعريفية directory: سِجلّ الصفحات التعريفية
explanation: استكشف مستخدِمين آخرين حسب المواضيع التي تهمهم explanation: استكشف مستخدِمين آخرين حسب المواضيع التي تهمهم
explore_mastodon: استكشف %{title} explore_mastodon: استكشف %{title}
disputes:
strikes:
action_taken: الإجراء المتخذ
appeal: طعن
appeal_rejected: رُفِض الطعن
appeal_submitted_at: طعن أرسِل في
appealed_msg: تم تقديم طعنك. إذا تمت الموافقة عليه، سيتم إبلاغك.
appeals:
submit: تقديم طعن
associated_report: التقرير المتربط
created_at: بتاريخ
recipient: موجّه إلى
status: 'المنشور #%{id}'
title_actions:
delete_statuses: إزالة منشور
disable: تجميد للحساب
none: تحذير
suspend: تعليق للحساب
your_appeal_approved: تمت الموافقة على طعنك
your_appeal_pending: لقد قمت بتقديم طعن
your_appeal_rejected: تم رفض طعنك
domain_validator: domain_validator:
invalid_domain: ليس بإسم نطاق صالح invalid_domain: ليس بإسم نطاق صالح
errors: errors:
@ -1382,6 +1409,7 @@ ar:
'2629746': شهر واحد '2629746': شهر واحد
'31556952': سنة واحدة '31556952': سنة واحدة
'5259492': شهران '5259492': شهران
'604800': أسبوع
'63113904': أسبوعان '63113904': أسبوعان
'7889238': 3 أشهر '7889238': 3 أشهر
min_age_label: عتبة العمر min_age_label: عتبة العمر
@ -1504,6 +1532,13 @@ ar:
recovery_instructions_html: إن فقدت الوصول إلى هاتفك، يمكنك استخدام أحد رموز الاسترداد أدناه لاستعادة الوصول إلى حسابك. <strong>حافظ على رموز الاسترداد بأمان</strong>. يمكنك ، على سبيل المثال ، طباعتها وتخزينها مع مستندات أخرى هامة. recovery_instructions_html: إن فقدت الوصول إلى هاتفك، يمكنك استخدام أحد رموز الاسترداد أدناه لاستعادة الوصول إلى حسابك. <strong>حافظ على رموز الاسترداد بأمان</strong>. يمكنك ، على سبيل المثال ، طباعتها وتخزينها مع مستندات أخرى هامة.
webauthn: مفاتيح الأمان webauthn: مفاتيح الأمان
user_mailer: user_mailer:
appeal_approved:
action: انتقل إلى حسابك
subject: تم قبول طعنك الذي قدمته بتاريخ %{date}
title: تم قبول طعنك
appeal_rejected:
subject: تم رفض طعنك الذي قدمته بتاريخ %{date}
title: رُفض الاستئناف
backup_ready: backup_ready:
explanation: لقد قمت بطلب نسخة كاملة لحسابك على ماستدون. إنها متوفرة الآن للتنزيل! explanation: لقد قمت بطلب نسخة كاملة لحسابك على ماستدون. إنها متوفرة الآن للتنزيل!
subject: نسخة بيانات حسابك جاهزة للتنزيل subject: نسخة بيانات حسابك جاهزة للتنزيل
@ -1515,13 +1550,14 @@ ar:
subject: الرجاء تأكيد محاولة الولوج subject: الرجاء تأكيد محاولة الولوج
title: محاولة الولوج title: محاولة الولوج
warning: warning:
appeal: تقديم طعن
appeal_description: إذا كنت تعتقد أن هذا خطأ، يمكنك تقديم طعن إلى فريق %{instance}.
categories: categories:
spam: مزعج spam: مزعج
violation: ينتهك المحتوى المبادئ التوجيهية التالية للمجتمع violation: ينتهك المحتوى المبادئ التوجيهية التالية للمجتمع
explanation: explanation:
sensitive: من الآن فصاعدا، سيتم وضع علامة على جميع ملفات الوسائط التي يتم تحميلها على أنها حساسة وستكون مخفية خلف تحذير يُنقر. sensitive: من الآن فصاعدا، سيتم وضع علامة على جميع ملفات الوسائط التي يتم تحميلها على أنها حساسة وستكون مخفية خلف تحذير يُنقر.
silence: لا يزال بإمكانك استخدام حسابك ولكن فقط الأشخاص الذين يتابعونك فقط يمكنهم رؤية منشوراتك على هذا الخادم، وقد يتم استبعادك من ميزات الاكتشاف المختلفة. قد يتبعك آخرون على كل حال يدوياً. silence: لا يزال بإمكانك استخدام حسابك ولكن فقط الأشخاص الذين يتابعونك فقط يمكنهم رؤية منشوراتك على هذا الخادم، وقد يتم استبعادك من ميزات الاكتشاف المختلفة. قد يتبعك آخرون على كل حال يدوياً.
get_in_touch: إذا كنت تعتقد أن هذا خطأ، يمكنك الرد على هذا البريد الإلكتروني للتواصل مع فريق %{instance}.
reason: 'السبب:' reason: 'السبب:'
subject: subject:
disable: تم تجميد حسابك %{acct} disable: تم تجميد حسابك %{acct}
@ -1532,7 +1568,6 @@ ar:
delete_statuses: منشورات محذوفة delete_statuses: منشورات محذوفة
disable: الحساب مُجمَّد disable: الحساب مُجمَّد
none: تحذير none: تحذير
sensitive: الوسائط المخفية
silence: الحساب محدود silence: الحساب محدود
suspend: الحساب مُعلَّق suspend: الحساب مُعلَّق
welcome: welcome:

View File

@ -42,7 +42,6 @@ ast:
joined: Xunióse en %{date} joined: Xunióse en %{date}
moved_html: "%{name} mudóse a %{new_profile_link}:" moved_html: "%{name} mudóse a %{new_profile_link}:"
network_hidden: Esta información nun ta disponible network_hidden: Esta información nun ta disponible
never_active: Enxamás
nothing_here: "¡Equí nun hai nada!" nothing_here: "¡Equí nun hai nada!"
people_followed_by: Persones a les que sigue %{name} people_followed_by: Persones a les que sigue %{name}
people_who_follow: Persones que siguen a %{name} people_who_follow: Persones que siguen a %{name}
@ -56,10 +55,12 @@ ast:
admin: admin:
accounts: accounts:
are_you_sure: "¿De xuru?" are_you_sure: "¿De xuru?"
avatar: Avatar
by_domain: Dominiu by_domain: Dominiu
domain: Dominiu domain: Dominiu
email: Corréu email: Corréu
followers: Siguidores followers: Siguidores
ip: IP
location: location:
local: Llocal local: Llocal
title: Allugamientu title: Allugamientu
@ -82,17 +83,31 @@ ast:
title: Anunciu nuevu title: Anunciu nuevu
published_msg: "¡L'anunciu espublizóse coreutamente!" published_msg: "¡L'anunciu espublizóse coreutamente!"
title: Anuncios title: Anuncios
updated_msg: "¡L'anunciu anovóse correutamente!"
custom_emojis: custom_emojis:
by_domain: Dominiu by_domain: Dominiu
copy_failed_msg: Nun pudo facese una copia llocal d'esi fustaxe copy_failed_msg: Nun pudo facese una copia llocal d'esi fustaxe
emoji: Fustaxe emoji: Fustaxe
not_permitted: Nun tienes permisu pa facer esta aición
update_failed_msg: Nun pudo anovase esi fustaxe update_failed_msg: Nun pudo anovase esi fustaxe
dashboard:
media_storage: Almacenamientu multimedia
software: Software
website: Sitiu web
domain_blocks: domain_blocks:
domain: Dominiu domain: Dominiu
private_comment: Comentariu priváu
public_comment: Comentariu públicu
email_domain_blocks: email_domain_blocks:
domain: Dominiu domain: Dominiu
instances: instances:
availability:
title: Disponibilidá
by_domain: Dominiu by_domain: Dominiu
content_policies:
comment: Nota interna
policy: Política
reason: Motivu públicu
private_comment: Comentariu priváu private_comment: Comentariu priváu
public_comment: Comentariu públicu public_comment: Comentariu públicu
title: Federación title: Federación
@ -161,9 +176,12 @@ ast:
login: Aniciar sesión login: Aniciar sesión
migrate_account: Mudase a otra cuenta 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 register: Rexistrase
security: Seguranza security: Seguranza
trouble_logging_in: "¿Problemes col aniciu de sesión?" trouble_logging_in: "¿Tienes problemes col aniciu de sesión?"
authorize_follow: authorize_follow:
already_following: Yá tas siguiendo a esta cuenta already_following: Yá tas siguiendo a esta cuenta
already_requested: Yá unviesti una solicitú de siguimientu a esa cuenta already_requested: Yá unviesti una solicitú de siguimientu a esa cuenta
@ -175,8 +193,16 @@ ast:
web: Dir a la web web: Dir a la web
datetime: datetime:
distance_in_words: distance_in_words:
about_x_hours: "%{count} h"
about_x_years: "%{count} a"
almost_x_years: "%{count} a"
half_a_minute: Puramente agora half_a_minute: Puramente agora
less_than_x_minutes: "%{count} m"
less_than_x_seconds: Puramente agora less_than_x_seconds: Puramente agora
over_x_years: "%{count} a"
x_days: "%{count} d"
x_minutes: "%{count} m"
x_seconds: "%{count} s"
deletes: deletes:
challenge_not_passed: La información qu'introduxesti nun yera correuta challenge_not_passed: La información qu'introduxesti nun yera correuta
confirm_password: Introduz la contraseña pa verificar la to identidá confirm_password: Introduz la contraseña pa verificar la to identidá
@ -193,7 +219,7 @@ ast:
errors: errors:
'400': The request you submitted was invalid or malformed. '400': The request you submitted was invalid or malformed.
'403': Nun tienes permisu pa ver esta páxina. '403': Nun tienes permisu pa ver esta páxina.
'404': La páxina que tabes guetando nun ta equí. '404': La páxina que busques nun ta equí.
'406': Esta páxina nun ta disponible nel formatu solicitáu. '406': Esta páxina nun ta disponible nel formatu solicitáu.
'410': La páxina que tabes guetando yá nun esiste. '410': La páxina que tabes guetando yá nun esiste.
'422': '422':
@ -201,7 +227,7 @@ ast:
title: Falló la verificación de seguranza title: Falló la verificación de seguranza
'429': Ficiéronse milenta solicitúes '429': Ficiéronse milenta solicitúes
'500': '500':
'503': The page could not be served due to a temporary server failure. '503': Nun se pudo sirvir la páxina pola mor d'un fallu temporal del sirvidor.
exports: exports:
archive_takeout: archive_takeout:
date: Data date: Data
@ -213,6 +239,7 @@ ast:
blocks: Xente que bloquiesti blocks: Xente que bloquiesti
lists: Llistes lists: Llistes
mutes: Xente que silenciesti mutes: Xente que silenciesti
storage: Almacenamientu multimedia
featured_tags: featured_tags:
add_new: Amestar add_new: Amestar
filters: filters:
@ -275,8 +302,8 @@ ast:
limit: Algamesti la cantidá máxima de llistes limit: Algamesti la cantidá máxima de llistes
media_attachments: media_attachments:
validations: validations:
images_and_video: Nun pue axuntase un videu a un estáu que yá contién imáxenes images_and_video: Nun se pue axuntar nengún videu a un artículu que yá contién imáxenes
too_many: Nun puen axuntase más de 4 ficheros too_many: Nun se puen axuntar más de 4 ficheros
migrations: migrations:
acct: nome_usuariu@dominiu de la cuenta nueva acct: nome_usuariu@dominiu de la cuenta nueva
incoming_migrations: Mudase dende otra cuenta incoming_migrations: Mudase dende otra cuenta
@ -349,6 +376,11 @@ ast:
generic: Restolador desconocíu generic: Restolador desconocíu
ie: Internet Explorer ie: Internet Explorer
micro_messenger: MicroMessenger micro_messenger: MicroMessenger
opera: Opera
otter: Otter
phantom_js: PhantomJS
uc_browser: UCBrowser
weibo: Weibo
current_session: Sesión actual current_session: Sesión actual
description: "%{browser} en %{platform}" description: "%{browser} en %{platform}"
ip: IP ip: IP
@ -399,7 +431,7 @@ ast:
boosted_from_html: Compartióse'l barritu dende %{acct_link} boosted_from_html: Compartióse'l barritu dende %{acct_link}
pin_errors: pin_errors:
limit: Yá fixesti'l númberu máximu de barritos limit: Yá fixesti'l númberu máximu de barritos
ownership: Nun pue fixase'l barritu d'otra persona ownership: Nun se pue fixar l'artículu d'otru perfil
reblog: Nun pue fixase un barritu compartíu reblog: Nun pue fixase un barritu compartíu
poll: poll:
total_people: total_people:
@ -423,6 +455,7 @@ ast:
'2629746': 1 mes '2629746': 1 mes
'31556952': 1 añu '31556952': 1 añu
'5259492': 2 meses '5259492': 2 meses
'604800': 1 selmana
'63113904': 2 años '63113904': 2 años
'7889238': 3 meses '7889238': 3 meses
stream_entries: stream_entries:
@ -446,6 +479,7 @@ ast:
webauthn: Claves d'autenticación webauthn: Claves d'autenticación
user_mailer: user_mailer:
warning: warning:
reason: 'Motivu:'
subject: subject:
suspend: Suspendióse la cuenta %{acct} suspend: Suspendióse la cuenta %{acct}
title: title:
@ -456,6 +490,7 @@ ast:
subject: Afáyate en Mastodon subject: Afáyate en Mastodon
tips: Conseyos tips: Conseyos
users: users:
follow_limit_reached: Nun pues siguir a más de %{limit} persones
invalid_otp_token: El códigu nun ye válidu invalid_otp_token: El códigu nun ye válidu
otp_lost_help_html: Si pierdes l'accesu, contauta con %{email} 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. 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.

View File

@ -61,7 +61,6 @@ bg:
media: Мултимедия media: Мултимедия
moved_html: "%{name} се премести в %{new_profile_link}:" moved_html: "%{name} се премести в %{new_profile_link}:"
network_hidden: Тази информация не е налична network_hidden: Тази информация не е налична
never_active: Никога
nothing_here: Тук няма никого! nothing_here: Тук няма никого!
people_followed_by: Хора, които %{name} следва people_followed_by: Хора, които %{name} следва
people_who_follow: Хора, които следват %{name} people_who_follow: Хора, които следват %{name}

View File

@ -64,7 +64,6 @@ bn:
media: ছবি বা ভিডিও media: ছবি বা ভিডিও
moved_html: "%{name} চলে গেছে %{new_profile_link} তে:" moved_html: "%{name} চলে গেছে %{new_profile_link} তে:"
network_hidden: এই তথ্যটি নেই network_hidden: এই তথ্যটি নেই
never_active: কখনও না
nothing_here: এখানে কিছুই নেই! nothing_here: এখানে কিছুই নেই!
people_followed_by: "%{name} যাদেরকে অনুসরণ করে" people_followed_by: "%{name} যাদেরকে অনুসরণ করে"
people_who_follow: যারা %{name} কে অনুসরণ করে people_who_follow: যারা %{name} কে অনুসরণ করে

View File

@ -36,7 +36,6 @@ br:
other: Heulier·ez other: Heulier·ez
two: Heulier·ez two: Heulier·ez
following: O heuliañ following: O heuliañ
never_active: Birviken
posts: posts:
few: Toud few: Toud
many: Toud many: Toud
@ -117,11 +116,6 @@ br:
noop: Hini ebet noop: Hini ebet
silence: Mudañ silence: Mudañ
suspend: Astalañ suspend: Astalañ
severity:
silence: mudet
suspend: astalet
show:
undo: Dizober
email_domain_blocks: email_domain_blocks:
add_new: Ouzhpenniñ unan nevez add_new: Ouzhpenniñ unan nevez
delete: Dilemel delete: Dilemel

Some files were not shown because too many files have changed in this diff Show More