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

This commit is contained in:
Claire 2022-05-08 21:00:49 +02:00
commit 22080786df
138 changed files with 4394 additions and 1134 deletions

View File

@ -79,13 +79,13 @@ gem 'ruby-progressbar', '~> 1.11'
gem 'sanitize', '~> 6.0' gem 'sanitize', '~> 6.0'
gem 'scenic', '~> 1.6' gem 'scenic', '~> 1.6'
gem 'sidekiq', '~> 6.4' gem 'sidekiq', '~> 6.4'
gem 'sidekiq-scheduler', '~> 3.2' gem 'sidekiq-scheduler', '~> 4.0'
gem 'sidekiq-unique-jobs', '~> 7.1' gem 'sidekiq-unique-jobs', '~> 7.1'
gem 'sidekiq-bulk', '~>0.2.0' gem 'sidekiq-bulk', '~>0.2.0'
gem 'simple-navigation', '~> 4.3' gem 'simple-navigation', '~> 4.3'
gem 'simple_form', '~> 5.1' gem 'simple_form', '~> 5.1'
gem 'sprockets-rails', '~> 3.4', require: 'sprockets/railtie' gem 'sprockets-rails', '~> 3.4', require: 'sprockets/railtie'
gem 'stoplight', '~> 2.2.1' gem 'stoplight', '~> 3.0.0'
gem 'strong_migrations', '~> 0.7' gem 'strong_migrations', '~> 0.7'
gem 'tty-prompt', '~> 0.23', require: false gem 'tty-prompt', '~> 0.23', require: false
gem 'twitter-text', '~> 3.1.0' gem 'twitter-text', '~> 3.1.0'

View File

@ -203,7 +203,6 @@ GEM
dotenv-rails (2.7.6) dotenv-rails (2.7.6)
dotenv (= 2.7.6) dotenv (= 2.7.6)
railties (>= 3.2) railties (>= 3.2)
e2mmap (0.1.0)
ed25519 (1.3.0) ed25519 (1.3.0)
elasticsearch (7.13.3) elasticsearch (7.13.3)
elasticsearch-api (= 7.13.3) elasticsearch-api (= 7.13.3)
@ -610,12 +609,10 @@ GEM
redis (>= 4.2.0) redis (>= 4.2.0)
sidekiq-bulk (0.2.0) sidekiq-bulk (0.2.0)
sidekiq sidekiq
sidekiq-scheduler (3.2.0) sidekiq-scheduler (4.0.0)
e2mmap redis (>= 4.2.0)
redis (>= 3, < 5)
rufus-scheduler (~> 3.2) rufus-scheduler (~> 3.2)
sidekiq (>= 3) sidekiq (>= 4)
thwait
tilt (>= 1.4.0) tilt (>= 1.4.0)
sidekiq-unique-jobs (7.1.21) sidekiq-unique-jobs (7.1.21)
brpoplpush-redis_script (> 0.1.1, <= 2.0.0) brpoplpush-redis_script (> 0.1.1, <= 2.0.0)
@ -646,7 +643,7 @@ GEM
net-ssh (>= 2.8.0) net-ssh (>= 2.8.0)
stackprof (0.2.19) stackprof (0.2.19)
statsd-ruby (1.5.0) statsd-ruby (1.5.0)
stoplight (2.2.1) stoplight (3.0.0)
strong_migrations (0.7.9) strong_migrations (0.7.9)
activerecord (>= 5) activerecord (>= 5)
swd (1.3.0) swd (1.3.0)
@ -659,8 +656,6 @@ GEM
terrapin (0.6.0) terrapin (0.6.0)
climate_control (>= 0.0.3, < 1.0) climate_control (>= 0.0.3, < 1.0)
thor (1.2.1) thor (1.2.1)
thwait (0.2.0)
e2mmap
tilt (2.0.10) tilt (2.0.10)
tpm-key_attestation (0.9.0) tpm-key_attestation (0.9.0)
bindata (~> 2.4) bindata (~> 2.4)
@ -837,7 +832,7 @@ DEPENDENCIES
scenic (~> 1.6) scenic (~> 1.6)
sidekiq (~> 6.4) sidekiq (~> 6.4)
sidekiq-bulk (~> 0.2.0) sidekiq-bulk (~> 0.2.0)
sidekiq-scheduler (~> 3.2) sidekiq-scheduler (~> 4.0)
sidekiq-unique-jobs (~> 7.1) sidekiq-unique-jobs (~> 7.1)
simple-navigation (~> 4.3) simple-navigation (~> 4.3)
simple_form (~> 5.1) simple_form (~> 5.1)
@ -845,7 +840,7 @@ DEPENDENCIES
sprockets (~> 3.7.2) sprockets (~> 3.7.2)
sprockets-rails (~> 3.4) sprockets-rails (~> 3.4)
stackprof stackprof
stoplight (~> 2.2.1) stoplight (~> 3.0.0)
strong_migrations (~> 0.7) strong_migrations (~> 0.7)
thor (~> 1.2) thor (~> 1.2)
tty-prompt (~> 0.23) tty-prompt (~> 0.23)

View File

@ -132,7 +132,7 @@ module ApplicationHelper
elsif status.private_visibility? || status.limited_visibility? elsif status.private_visibility? || status.limited_visibility?
fa_icon('lock', title: I18n.t('statuses.visibilities.private')) fa_icon('lock', title: I18n.t('statuses.visibilities.private'))
elsif status.direct_visibility? elsif status.direct_visibility?
fa_icon('envelope', title: I18n.t('statuses.visibilities.direct')) fa_icon('at', title: I18n.t('statuses.visibilities.direct'))
end end
end end

View File

@ -101,7 +101,7 @@ module StatusesHelper
when 'private' when 'private'
fa_icon 'lock fw' fa_icon 'lock fw'
when 'direct' when 'direct'
fa_icon 'envelope fw' fa_icon 'at fw'
end end
end end

View File

@ -58,7 +58,8 @@ export const loadPending = () => ({
export function updateNotifications(notification, intlMessages, intlLocale) { export function updateNotifications(notification, intlMessages, intlLocale) {
return (dispatch, getState) => { return (dispatch, getState) => {
const showInColumn = getState().getIn(['settings', 'notifications', 'shows', notification.type], true); const activeFilter = getState().getIn(['settings', 'notifications', 'quickFilter', 'active']);
const showInColumn = activeFilter === 'all' ? getState().getIn(['settings', 'notifications', 'shows', notification.type], true) : activeFilter === notification.type;
const showAlert = getState().getIn(['settings', 'notifications', 'alerts', notification.type], true); const showAlert = getState().getIn(['settings', 'notifications', 'alerts', notification.type], true);
const playSound = getState().getIn(['settings', 'notifications', 'sounds', notification.type], true); const playSound = getState().getIn(['settings', 'notifications', 'sounds', notification.type], true);
const filters = getFiltersRegex(getState(), { contextType: 'notifications' }); const filters = getFiltersRegex(getState(), { contextType: 'notifications' });

View File

@ -468,7 +468,7 @@ class Status extends ImmutablePureComponent {
'public': { icon: 'globe', text: intl.formatMessage(messages.public_short) }, 'public': { icon: 'globe', text: intl.formatMessage(messages.public_short) },
'unlisted': { icon: 'unlock', text: intl.formatMessage(messages.unlisted_short) }, 'unlisted': { icon: 'unlock', text: intl.formatMessage(messages.unlisted_short) },
'private': { icon: 'lock', text: intl.formatMessage(messages.private_short) }, 'private': { icon: 'lock', text: intl.formatMessage(messages.private_short) },
'direct': { icon: 'envelope', text: intl.formatMessage(messages.direct_short) }, 'direct': { icon: 'at', text: intl.formatMessage(messages.direct_short) },
}; };
const visibilityIcon = visibilityIconInfo[status.get('visibility')]; const visibilityIcon = visibilityIconInfo[status.get('visibility')];

View File

@ -185,7 +185,7 @@ class DetailedStatus extends ImmutablePureComponent {
'public': { icon: 'globe', text: intl.formatMessage(messages.public_short) }, 'public': { icon: 'globe', text: intl.formatMessage(messages.public_short) },
'unlisted': { icon: 'unlock', text: intl.formatMessage(messages.unlisted_short) }, 'unlisted': { icon: 'unlock', text: intl.formatMessage(messages.unlisted_short) },
'private': { icon: 'lock', text: intl.formatMessage(messages.private_short) }, 'private': { icon: 'lock', text: intl.formatMessage(messages.private_short) },
'direct': { icon: 'envelope', text: intl.formatMessage(messages.direct_short) }, 'direct': { icon: 'at', text: intl.formatMessage(messages.direct_short) },
}; };
const visibilityIcon = visibilityIconInfo[status.get('visibility')]; const visibilityIcon = visibilityIconInfo[status.get('visibility')];

View File

@ -88,7 +88,7 @@ class BoostModal extends ImmutablePureComponent {
'public': { icon: 'globe', text: intl.formatMessage(messages.public_short) }, 'public': { icon: 'globe', text: intl.formatMessage(messages.public_short) },
'unlisted': { icon: 'unlock', text: intl.formatMessage(messages.unlisted_short) }, 'unlisted': { icon: 'unlock', text: intl.formatMessage(messages.unlisted_short) },
'private': { icon: 'lock', text: intl.formatMessage(messages.private_short) }, 'private': { icon: 'lock', text: intl.formatMessage(messages.private_short) },
'direct': { icon: 'envelope', text: intl.formatMessage(messages.direct_short) }, 'direct': { icon: 'at', text: intl.formatMessage(messages.direct_short) },
}; };
const visibilityIcon = visibilityIconInfo[status.get('visibility')]; const visibilityIcon = visibilityIconInfo[status.get('visibility')];

View File

@ -234,7 +234,7 @@ class ColumnsArea extends ImmutablePureComponent {
</div> </div>
</div> </div>
<div className='columns-area__panels__main'> <div className={`columns-area__panels__main ${floatingActionButton && 'with-fab'}`}>
<TabsBar key='tabs' /> <TabsBar key='tabs' />
{content} {content}
</div> </div>

View File

@ -57,12 +57,12 @@
"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.",
"alert.unexpected.title": "Oops!", "alert.unexpected.title": "Oops!",
"announcement.announcement": "Announcement", "announcement.announcement": "Aankondiging",
"attachments_list.unprocessed": "(unprocessed)", "attachments_list.unprocessed": "(unprocessed)",
"autosuggest_hashtag.per_week": "{count} per week", "autosuggest_hashtag.per_week": "{count} per week",
"boost_modal.combo": "You can press {combo} to skip this next time", "boost_modal.combo": "You can press {combo} to skip this next time",
"bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.body": "Something went wrong while loading this component.",
"bundle_column_error.retry": "Try again", "bundle_column_error.retry": "Probeer weer",
"bundle_column_error.title": "Network error", "bundle_column_error.title": "Network error",
"bundle_modal_error.close": "Close", "bundle_modal_error.close": "Close",
"bundle_modal_error.message": "Something went wrong while loading this component.", "bundle_modal_error.message": "Something went wrong while loading this component.",
@ -70,26 +70,26 @@
"column.blocks": "Blocked users", "column.blocks": "Blocked users",
"column.bookmarks": "Bookmarks", "column.bookmarks": "Bookmarks",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.conversations": "Conversations", "column.direct": "Direkte boodskappe",
"column.directory": "Browse profiles", "column.directory": "Browse profiles",
"column.domain_blocks": "Blocked domains", "column.domain_blocks": "Blocked domains",
"column.favourites": "Favourites", "column.favourites": "Favourites",
"column.follow_requests": "Follow requests", "column.follow_requests": "Follow requests",
"column.home": "Home", "column.home": "Tuis",
"column.lists": "Lists", "column.lists": "Lyste",
"column.mutes": "Muted users", "column.mutes": "Gedempte gebruikers",
"column.notifications": "Notifications", "column.notifications": "Kennisgewings",
"column.pins": "Pinned toot", "column.pins": "Pinned toot",
"column.public": "Federated timeline", "column.public": "Federated timeline",
"column_back_button.label": "Back", "column_back_button.label": "Terug",
"column_header.hide_settings": "Hide settings", "column_header.hide_settings": "Versteek instellings",
"column_header.moveLeft_settings": "Move column to the left", "column_header.moveLeft_settings": "Skuif kolom na links",
"column_header.moveRight_settings": "Move column to the right", "column_header.moveRight_settings": "Skuif kolom na regs",
"column_header.pin": "Pin", "column_header.pin": "Pin",
"column_header.show_settings": "Show settings", "column_header.show_settings": "Wys instellings",
"column_header.unpin": "Unpin", "column_header.unpin": "Unpin",
"column_subheading.settings": "Settings", "column_subheading.settings": "Instellings",
"community.column_settings.local_only": "Local only", "community.column_settings.local_only": "Slegs plaaslik",
"community.column_settings.media_only": "Media only", "community.column_settings.media_only": "Media only",
"community.column_settings.remote_only": "Remote only", "community.column_settings.remote_only": "Remote only",
"compose_form.direct_message_warning_learn_more": "Learn more", "compose_form.direct_message_warning_learn_more": "Learn more",
@ -166,7 +166,7 @@
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"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.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "Jy het nog nie direkte boodskappe nie. Wanneer jy een stuur of ontvang, sal dit hier verskyn.",
"empty_column.domain_blocks": "There are no blocked domains yet.", "empty_column.domain_blocks": "There are no blocked domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "om direkte boodskappe kolom oop te maak",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direkte boodskappe",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "Edit profile", "navigation_bar.edit_profile": "Edit profile",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Remove poll", "poll_button.remove_poll": "Remove poll",
"privacy.change": "Adjust status privacy", "privacy.change": "Adjust status privacy",
"privacy.direct.long": "Visible for mentioned users only", "privacy.direct.long": "Visible for mentioned users only",
"privacy.direct.short": "Direct", "privacy.direct.short": "Slegs genoemde persone",
"privacy.private.long": "Visible for followers only", "privacy.private.long": "Visible for followers only",
"privacy.private.short": "Followers-only", "privacy.private.short": "Followers-only",
"privacy.public.long": "Visible for all", "privacy.public.long": "Visible for all",

View File

@ -70,7 +70,7 @@
"column.blocks": "المُستَخدِمون المَحظورون", "column.blocks": "المُستَخدِمون المَحظورون",
"column.bookmarks": "الفواصل المرجعية", "column.bookmarks": "الفواصل المرجعية",
"column.community": "الخيط الزمني المحلي", "column.community": "الخيط الزمني المحلي",
"column.conversations": "المحادثات", "column.direct": "الرسائل المباشِرة",
"column.directory": "تَصَفُّحُ المَلفات الشخصية", "column.directory": "تَصَفُّحُ المَلفات الشخصية",
"column.domain_blocks": "النِّطاقَاتُ المَحظُورَة", "column.domain_blocks": "النِّطاقَاتُ المَحظُورَة",
"column.favourites": "المُفَضَّلَة", "column.favourites": "المُفَضَّلَة",
@ -166,7 +166,7 @@
"empty_column.blocks": "لم تقم بحظر أي مستخدِم بعد.", "empty_column.blocks": "لم تقم بحظر أي مستخدِم بعد.",
"empty_column.bookmarked_statuses": "ليس لديك أية منشورات في الفواصل المرجعية بعد. عندما ستقوم بإضافة البعض منها، ستظهر هنا.", "empty_column.bookmarked_statuses": "ليس لديك أية منشورات في الفواصل المرجعية بعد. عندما ستقوم بإضافة البعض منها، ستظهر هنا.",
"empty_column.community": "الخط العام المحلي فارغ. أكتب شيئا ما للعامة كبداية!", "empty_column.community": "الخط العام المحلي فارغ. أكتب شيئا ما للعامة كبداية!",
"empty_column.conversations": "عندما ترسل أو تستلم منشورًا محصورٌا على الأشخاص المشار إليهم فيه، سيظهر هنا.", "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": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "ليس لديك أية منشورات مفضلة بعد. عندما ستقوم بالإعجاب بواحدة، ستظهر هنا.", "empty_column.favourited_statuses": "ليس لديك أية منشورات مفضلة بعد. عندما ستقوم بالإعجاب بواحدة، ستظهر هنا.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "للترقية", "keyboard_shortcuts.boost": "للترقية",
"keyboard_shortcuts.column": "للتركيز على منشور على أحد الأعمدة", "keyboard_shortcuts.column": "للتركيز على منشور على أحد الأعمدة",
"keyboard_shortcuts.compose": "للتركيز على نافذة تحرير النصوص", "keyboard_shortcuts.compose": "للتركيز على نافذة تحرير النصوص",
"keyboard_shortcuts.conversations": "لفتح عمود المحادثات",
"keyboard_shortcuts.description": "الوصف", "keyboard_shortcuts.description": "الوصف",
"keyboard_shortcuts.direct": "لفتح عمود الرسائل المباشرة",
"keyboard_shortcuts.down": "للانتقال إلى أسفل القائمة", "keyboard_shortcuts.down": "للانتقال إلى أسفل القائمة",
"keyboard_shortcuts.enter": "لفتح المنشور", "keyboard_shortcuts.enter": "لفتح المنشور",
"keyboard_shortcuts.favourite": "للإضافة إلى المفضلة", "keyboard_shortcuts.favourite": "للإضافة إلى المفضلة",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "الفواصل المرجعية", "navigation_bar.bookmarks": "الفواصل المرجعية",
"navigation_bar.community_timeline": "الخيط العام المحلي", "navigation_bar.community_timeline": "الخيط العام المحلي",
"navigation_bar.compose": "لتحرير منشور جديد", "navigation_bar.compose": "لتحرير منشور جديد",
"navigation_bar.direct": "الرسائل المباشِرة",
"navigation_bar.discover": "اكتشف", "navigation_bar.discover": "اكتشف",
"navigation_bar.domain_blocks": "النطاقات المخفية", "navigation_bar.domain_blocks": "النطاقات المخفية",
"navigation_bar.edit_profile": "عدّل الملف التعريفي", "navigation_bar.edit_profile": "عدّل الملف التعريفي",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "إزالة استطلاع الرأي", "poll_button.remove_poll": "إزالة استطلاع الرأي",
"privacy.change": "اضبط خصوصية المنشور", "privacy.change": "اضبط خصوصية المنشور",
"privacy.direct.long": "أنشر إلى المستخدمين المشار إليهم فقط", "privacy.direct.long": "أنشر إلى المستخدمين المشار إليهم فقط",
"privacy.direct.short": "للمشار إليهم فقط", "privacy.direct.short": "الأشخاص المشار إليهم فقط",
"privacy.private.long": "أنشر لمتابعيك فقط", "privacy.private.long": "أنشر لمتابعيك فقط",
"privacy.private.short": "للمتابِعين فقط", "privacy.private.short": "للمتابِعين فقط",
"privacy.public.long": "مرئي للكل", "privacy.public.long": "مرئي للكل",
@ -393,7 +394,7 @@
"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": "Tell us what's going on with this {type}",
"report.category.title_account": "ملف تعريفي", "report.category.title_account": "ملف تعريفي",
"report.category.title_status": "منشور", "report.category.title_status": "منشور",
@ -413,13 +414,13 @@
"report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies", "report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "ينتهك قواعد الخادم", "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": "ما هي القواعد المنتهكة؟", "report.rules.title": "ما هي القواعد المنتهكة؟",
"report.statuses.subtitle": "Select all that apply", "report.statuses.subtitle": "اختر كل ما ينطبق",
"report.statuses.title": "هل توجد مشاركات تدعم صحة هذا البلاغ؟", "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": "في أثناء مراجعتنا للبلاغ، يمكنك اتخاذ إجراء ضد @{name}:", "report.thanks.take_action_actionable": "في أثناء مراجعتنا للبلاغ، يمكنك اتخاذ إجراء ضد @{name}:",
"report.thanks.title": "هل ترغب في مشاهدة هذا؟", "report.thanks.title": "هل ترغب في مشاهدة هذا؟",
"report.thanks.title_actionable": "شُكرًا لَكَ على الإبلاغ، سَوفَ نَنظُرُ فِي هَذَا الأمر.", "report.thanks.title_actionable": "شُكرًا لَكَ على الإبلاغ، سَوفَ نَنظُرُ فِي هَذَا الأمر.",

View File

@ -70,7 +70,7 @@
"column.blocks": "Usuarios bloquiaos", "column.blocks": "Usuarios bloquiaos",
"column.bookmarks": "Marcadores", "column.bookmarks": "Marcadores",
"column.community": "Llinia temporal llocal", "column.community": "Llinia temporal llocal",
"column.conversations": "Conversations", "column.direct": "Mensaxes direutos",
"column.directory": "Browse profiles", "column.directory": "Browse profiles",
"column.domain_blocks": "Dominios anubríos", "column.domain_blocks": "Dominios anubríos",
"column.favourites": "Favoritos", "column.favourites": "Favoritos",
@ -166,7 +166,7 @@
"empty_column.blocks": "Entá nun bloquiesti a nengú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.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "Entá nun tienes nengún mensaxe direutu. Cuando unvies o recibas dalgún, apaez equí.",
"empty_column.domain_blocks": "Entá nun hai dominios anubríos.", "empty_column.domain_blocks": "Entá nun hai dominios anubríos.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Entá nun tienes nengún barritu en Favoritos. Cuando amiestes unu, va amosase equí.", "empty_column.favourited_statuses": "Entá nun tienes nengún barritu en Favoritos. Cuando amiestes unu, va amosase equí.",
@ -230,8 +230,8 @@
"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": "Enfocar l'área de composición", "keyboard_shortcuts.compose": "Enfocar l'área de composición",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Descripción", "keyboard_shortcuts.description": "Descripción",
"keyboard_shortcuts.direct": "to open direct messages column",
"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",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Marcadores", "navigation_bar.bookmarks": "Marcadores",
"navigation_bar.community_timeline": "Llinia temporal llocal", "navigation_bar.community_timeline": "Llinia temporal llocal",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Mensaxes direutos",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Dominios anubríos", "navigation_bar.domain_blocks": "Dominios anubríos",
"navigation_bar.edit_profile": "Editar el perfil", "navigation_bar.edit_profile": "Editar el perfil",

View File

@ -70,7 +70,7 @@
"column.blocks": "Блокирани потребители", "column.blocks": "Блокирани потребители",
"column.bookmarks": "Отметки", "column.bookmarks": "Отметки",
"column.community": "Локална емисия", "column.community": "Локална емисия",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Преглед на профили", "column.directory": "Преглед на профили",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.favourites": "Любими", "column.favourites": "Любими",
@ -166,7 +166,7 @@
"empty_column.blocks": "Не сте блокирали потребители все още.", "empty_column.blocks": "Не сте блокирали потребители все още.",
"empty_column.bookmarked_statuses": "Все още нямате отметнати публикации. Когато отметнете някоя, тя ще се покаже тук.", "empty_column.bookmarked_statuses": "Все още нямате отметнати публикации. Когато отметнете някоя, тя ще се покаже тук.",
"empty_column.community": "Локалната емисия е празна. Напишете нещо публично, за да започнете!", "empty_column.community": "Локалната емисия е празна. Напишете нещо публично, за да започнете!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "There are no hidden domains yet.", "empty_column.domain_blocks": "There are no hidden domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Все още нямате любими публикации. Когато поставите някоя в любими, тя ще се покаже тук.", "empty_column.favourited_statuses": "Все още нямате любими публикации. Когато поставите някоя в любими, тя ще се покаже тук.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "за споделяне", "keyboard_shortcuts.boost": "за споделяне",
"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": "за фокусиране на текстовото пространство за композиране", "keyboard_shortcuts.compose": "за фокусиране на текстовото пространство за композиране",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Описание", "keyboard_shortcuts.description": "Описание",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "за придвижване надолу в списъка", "keyboard_shortcuts.down": "за придвижване надолу в списъка",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "за поставяне в любими", "keyboard_shortcuts.favourite": "за поставяне в любими",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Отметки", "navigation_bar.bookmarks": "Отметки",
"navigation_bar.community_timeline": "Локална емисия", "navigation_bar.community_timeline": "Локална емисия",
"navigation_bar.compose": "Композиране на нова публикация", "navigation_bar.compose": "Композиране на нова публикация",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Откриване", "navigation_bar.discover": "Откриване",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "Редактирай профил", "navigation_bar.edit_profile": "Редактирай профил",

View File

@ -70,7 +70,7 @@
"column.blocks": "যাদের ব্লক করা হয়েছে", "column.blocks": "যাদের ব্লক করা হয়েছে",
"column.bookmarks": "বুকমার্ক", "column.bookmarks": "বুকমার্ক",
"column.community": "স্থানীয় সময়সারি", "column.community": "স্থানীয় সময়সারি",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "প্রোফাইল ব্রাউজ করুন", "column.directory": "প্রোফাইল ব্রাউজ করুন",
"column.domain_blocks": "লুকোনো ডোমেনগুলি", "column.domain_blocks": "লুকোনো ডোমেনগুলি",
"column.favourites": "পছন্দের গুলো", "column.favourites": "পছন্দের গুলো",
@ -166,7 +166,7 @@
"empty_column.blocks": "আপনি কোনো ব্যবহারকারীদের ব্লক করেন নি।", "empty_column.blocks": "আপনি কোনো ব্যবহারকারীদের ব্লক করেন নি।",
"empty_column.bookmarked_statuses": "আপনার কাছে এখনও কোনও বুকমার্কড টুট নেই। আপনি যখন একটি বুকমার্ক করেন, এটি এখানে প্রদর্শিত হবে।", "empty_column.bookmarked_statuses": "আপনার কাছে এখনও কোনও বুকমার্কড টুট নেই। আপনি যখন একটি বুকমার্ক করেন, এটি এখানে প্রদর্শিত হবে।",
"empty_column.community": "স্থানীয় সময়রেখাতে কিছু নেই। প্রকাশ্যভাবে কিছু লিখে লেখালেখির উদ্বোধন করে ফেলুন!", "empty_column.community": "স্থানীয় সময়রেখাতে কিছু নেই। প্রকাশ্যভাবে কিছু লিখে লেখালেখির উদ্বোধন করে ফেলুন!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "এখনও কোনও লুকানো ডোমেন নেই।", "empty_column.domain_blocks": "এখনও কোনও লুকানো ডোমেন নেই।",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "আপনার পছন্দের কোনো টুট এখনো নেই। আপনি কোনো লেখা পছন্দের হিসেবে চিহ্নিত করলে এখানে পাওয়া যাবে।", "empty_column.favourited_statuses": "আপনার পছন্দের কোনো টুট এখনো নেই। আপনি কোনো লেখা পছন্দের হিসেবে চিহ্নিত করলে এখানে পাওয়া যাবে।",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "সমর্থন করতে", "keyboard_shortcuts.boost": "সমর্থন করতে",
"keyboard_shortcuts.column": "কোনো কলামএ কোনো লেখা ফোকাস করতে", "keyboard_shortcuts.column": "কোনো কলামএ কোনো লেখা ফোকাস করতে",
"keyboard_shortcuts.compose": "লেখা সম্পদনার জায়গায় ফোকাস করতে", "keyboard_shortcuts.compose": "লেখা সম্পদনার জায়গায় ফোকাস করতে",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "বিবরণ", "keyboard_shortcuts.description": "বিবরণ",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "তালিকার ভেতরে নিচে যেতে", "keyboard_shortcuts.down": "তালিকার ভেতরে নিচে যেতে",
"keyboard_shortcuts.enter": "অবস্থা দেখতে", "keyboard_shortcuts.enter": "অবস্থা দেখতে",
"keyboard_shortcuts.favourite": "পছন্দের দেখতে", "keyboard_shortcuts.favourite": "পছন্দের দেখতে",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "বুকমার্ক", "navigation_bar.bookmarks": "বুকমার্ক",
"navigation_bar.community_timeline": "স্থানীয় সময়রেখা", "navigation_bar.community_timeline": "স্থানীয় সময়রেখা",
"navigation_bar.compose": "নতুন টুট লিখুন", "navigation_bar.compose": "নতুন টুট লিখুন",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "ঘুরে দেখুন", "navigation_bar.discover": "ঘুরে দেখুন",
"navigation_bar.domain_blocks": "লুকানো ডোমেনগুলি", "navigation_bar.domain_blocks": "লুকানো ডোমেনগুলি",
"navigation_bar.edit_profile": "নিজের পাতা সম্পাদনা করতে", "navigation_bar.edit_profile": "নিজের পাতা সম্পাদনা করতে",

View File

@ -70,7 +70,7 @@
"column.blocks": "Implijer·ezed·ien berzet", "column.blocks": "Implijer·ezed·ien berzet",
"column.bookmarks": "Sinedoù", "column.bookmarks": "Sinedoù",
"column.community": "Red-amzer lec'hel", "column.community": "Red-amzer lec'hel",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Mont a-dreuz ar profiloù", "column.directory": "Mont a-dreuz ar profiloù",
"column.domain_blocks": "Domani berzet", "column.domain_blocks": "Domani berzet",
"column.favourites": "Muiañ-karet", "column.favourites": "Muiañ-karet",
@ -166,7 +166,7 @@
"empty_column.blocks": "N'eus ket bet berzet implijer·ez ganeoc'h c'hoazh.", "empty_column.blocks": "N'eus ket bet berzet implijer·ez ganeoc'h c'hoazh.",
"empty_column.bookmarked_statuses": "N'ho peus toud ebet enrollet en ho sinedoù c'hoazh. Pa vo ouzhpennet unan ganeoc'h e teuio war wel amañ.", "empty_column.bookmarked_statuses": "N'ho peus toud ebet enrollet en ho sinedoù c'hoazh. Pa vo ouzhpennet unan ganeoc'h e teuio war wel amañ.",
"empty_column.community": "Goulo eo ar red-amzer lec'hel. Skrivit'ta un dra evit lakaat tan dezhi !", "empty_column.community": "Goulo eo ar red-amzer lec'hel. Skrivit'ta un dra evit lakaat tan dezhi !",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "N'eus domani kuzh ebet c'hoazh.", "empty_column.domain_blocks": "N'eus domani kuzh ebet c'hoazh.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "N'ho peus toud muiañ-karet ebet c'hoazh. Pa vo lakaet unan ganeoc'h e vo diskouezet amañ.", "empty_column.favourited_statuses": "N'ho peus toud muiañ-karet ebet c'hoazh. Pa vo lakaet unan ganeoc'h e vo diskouezet amañ.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "da skignañ", "keyboard_shortcuts.boost": "da skignañ",
"keyboard_shortcuts.column": "Fokus ar bann", "keyboard_shortcuts.column": "Fokus ar bann",
"keyboard_shortcuts.compose": "Fokus an takad testenn", "keyboard_shortcuts.compose": "Fokus an takad testenn",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Deskrivadur", "keyboard_shortcuts.description": "Deskrivadur",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "Diskennañ er roll", "keyboard_shortcuts.down": "Diskennañ er roll",
"keyboard_shortcuts.enter": "evit digeriñ un toud", "keyboard_shortcuts.enter": "evit digeriñ un toud",
"keyboard_shortcuts.favourite": "Lakaat an toud evel muiañ-karet", "keyboard_shortcuts.favourite": "Lakaat an toud evel muiañ-karet",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Sinedoù", "navigation_bar.bookmarks": "Sinedoù",
"navigation_bar.community_timeline": "Red-amzer lec'hel", "navigation_bar.community_timeline": "Red-amzer lec'hel",
"navigation_bar.compose": "Skrivañ un toud nevez", "navigation_bar.compose": "Skrivañ un toud nevez",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Dizoleiñ", "navigation_bar.discover": "Dizoleiñ",
"navigation_bar.domain_blocks": "Domanioù kuzhet", "navigation_bar.domain_blocks": "Domanioù kuzhet",
"navigation_bar.edit_profile": "Aozañ ar profil", "navigation_bar.edit_profile": "Aozañ ar profil",

View File

@ -1,24 +1,24 @@
{ {
"account.account_note_header": "Nota", "account.account_note_header": "Nota",
"account.add_or_remove_from_list": "Afegeix o treu de les llistes", "account.add_or_remove_from_list": "Afegeix o elimina de les llistes",
"account.badges.bot": "Bot", "account.badges.bot": "Bot",
"account.badges.group": "Grup", "account.badges.group": "Grup",
"account.block": "Bloqueja @{name}", "account.block": "Bloqueja @{name}",
"account.block_domain": "Amaga-ho tot de {domain}", "account.block_domain": "Bloqueja el domini {domain}",
"account.blocked": "Bloquejat", "account.blocked": "Bloquejat",
"account.browse_more_on_origin_server": "Navega més en el perfil original", "account.browse_more_on_origin_server": "Navega més en el perfil original",
"account.cancel_follow_request": "Anul·la la sol·licitud de seguiment", "account.cancel_follow_request": "Anul·la la sol·licitud de seguiment",
"account.direct": "Envia missatge directe a @{name}", "account.direct": "Envia missatge directe a @{name}",
"account.disable_notifications": "Deixa de notificar-me les publicacions de @{name}", "account.disable_notifications": "No em notifiquis les publicacions de @{name}",
"account.domain_blocked": "Domini bloquejat", "account.domain_blocked": "Domini bloquejat",
"account.edit_profile": "Edita el perfil", "account.edit_profile": "Edita el perfil",
"account.enable_notifications": "Notificam les publicacions de @{name}", "account.enable_notifications": "Notificam les publicacions de @{name}",
"account.endorse": "Recomana en el teu perfil", "account.endorse": "Recomana en el teu perfil",
"account.follow": "Segueix", "account.follow": "Segueix",
"account.followers": "Seguidors", "account.followers": "Seguidors",
"account.followers.empty": "Encara ningú no segueix aquest usuari.", "account.followers.empty": "Ningú segueix aquest usuari encara.",
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidors}}", "account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidors}}",
"account.following": "Seguits", "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 ningú.", "account.follows.empty": "Aquest usuari encara no segueix ningú.",
"account.follows_you": "Et segueix", "account.follows_you": "Et segueix",
@ -26,8 +26,8 @@
"account.joined": "Membre des de {date}", "account.joined": "Membre des de {date}",
"account.link_verified_on": "La propietat d'aquest enllaç es va verificar el dia {date}", "account.link_verified_on": "La propietat d'aquest enllaç es va verificar el dia {date}",
"account.locked_info": "Aquest estat de privadesa del compte està definit com a bloquejat. El propietari revisa manualment qui pot seguir-lo.", "account.locked_info": "Aquest estat de privadesa del compte està definit com a bloquejat. El propietari revisa manualment qui pot seguir-lo.",
"account.media": "Mèdia", "account.media": "Multimèdia",
"account.mention": "Esmenta @{name}", "account.mention": "Menciona @{name}",
"account.moved_to": "{name} s'ha traslladat a:", "account.moved_to": "{name} s'ha traslladat a:",
"account.mute": "Silencia @{name}", "account.mute": "Silencia @{name}",
"account.mute_notifications": "Silencia les notificacions de @{name}", "account.mute_notifications": "Silencia les notificacions de @{name}",
@ -41,10 +41,10 @@
"account.statuses_counter": "{count, plural, one {{counter} Publicació} other {{counter} Publicacions}}", "account.statuses_counter": "{count, plural, one {{counter} Publicació} other {{counter} Publicacions}}",
"account.unblock": "Desbloqueja @{name}", "account.unblock": "Desbloqueja @{name}",
"account.unblock_domain": "Desbloqueja el domini {domain}", "account.unblock_domain": "Desbloqueja el domini {domain}",
"account.unblock_short": "Desbloqueja", "account.unblock_short": "Desbloquejar",
"account.unendorse": "No recomanis en el perfil", "account.unendorse": "No recomanar en el perfil",
"account.unfollow": "Deixa de seguir", "account.unfollow": "Deixar de seguir",
"account.unmute": "Deixa de silenciar @{name}", "account.unmute": "Deixar de silenciar @{name}",
"account.unmute_notifications": "Activar notificacions de @{name}", "account.unmute_notifications": "Activar notificacions de @{name}",
"account.unmute_short": "Deixa de silenciar", "account.unmute_short": "Deixa de silenciar",
"account_note.placeholder": "Fes clic per afegir una nota", "account_note.placeholder": "Fes clic per afegir una nota",
@ -62,16 +62,16 @@
"autosuggest_hashtag.per_week": "{count} per setmana", "autosuggest_hashtag.per_week": "{count} per setmana",
"boost_modal.combo": "Pots prémer {combo} per evitar-ho el pròxim cop", "boost_modal.combo": "Pots prémer {combo} per evitar-ho el pròxim cop",
"bundle_column_error.body": "S'ha produït un error en carregar aquest component.", "bundle_column_error.body": "S'ha produït un error en carregar aquest component.",
"bundle_column_error.retry": "Torna-ho a provar", "bundle_column_error.retry": "Tornar-ho a provar",
"bundle_column_error.title": "Error de connexió", "bundle_column_error.title": "Error de connexió",
"bundle_modal_error.close": "Tanca", "bundle_modal_error.close": "Tanca",
"bundle_modal_error.message": "S'ha produït un error en carregar aquest component.", "bundle_modal_error.message": "S'ha produït un error en carregar aquest component.",
"bundle_modal_error.retry": "Torna-ho a provar", "bundle_modal_error.retry": "Tornar-ho a provar",
"column.blocks": "Usuaris bloquejats", "column.blocks": "Usuaris bloquejats",
"column.bookmarks": "Marcadors", "column.bookmarks": "Marcadors",
"column.community": "Línia de temps local", "column.community": "Línia de temps local",
"column.conversations": "Converses", "column.direct": "Missatges directes",
"column.directory": "Navega pels perfils", "column.directory": "Navegar pels perfils",
"column.domain_blocks": "Dominis bloquejats", "column.domain_blocks": "Dominis bloquejats",
"column.favourites": "Favorits", "column.favourites": "Favorits",
"column.follow_requests": "Peticions per a seguir-te", "column.follow_requests": "Peticions per a seguir-te",
@ -95,16 +95,16 @@
"compose_form.direct_message_warning_learn_more": "Més informació", "compose_form.direct_message_warning_learn_more": "Més informació",
"compose_form.encryption_warning": "Les publicacions a Mastodon no estant xifrades punt a punt. No comparteixis informació perillosa mitjançant Mastodon.", "compose_form.encryption_warning": "Les publicacions a Mastodon no estant xifrades punt a punt. No comparteixis informació perillosa mitjançant Mastodon.",
"compose_form.hashtag_warning": "Aquesta publicació no es mostrarà en cap etiqueta, ja que no està llistada. Només les publicacions públiques es poden cercar per etiqueta.", "compose_form.hashtag_warning": "Aquesta publicació no es mostrarà en cap etiqueta, ja que no està llistada. Només les publicacions públiques es poden cercar per etiqueta.",
"compose_form.lock_disclaimer": "El teu compte no està bloquejat {locked}. Tothom pot seguir-te i veure els teus missatges només per a seguidors.", "compose_form.lock_disclaimer": "El teu compte no està {locked}. Tothom pot seguir-te i veure les publicacions de només per a seguidors.",
"compose_form.lock_disclaimer.lock": "bloquejat", "compose_form.lock_disclaimer.lock": "bloquejat",
"compose_form.placeholder": "Què et passa pel cap?", "compose_form.placeholder": "Què et passa pel cap?",
"compose_form.poll.add_option": "Afegeix una opció", "compose_form.poll.add_option": "Afegir una opció",
"compose_form.poll.duration": "Durada de l'enquesta", "compose_form.poll.duration": "Durada de l'enquesta",
"compose_form.poll.option_placeholder": "Opció {number}", "compose_form.poll.option_placeholder": "Opció {number}",
"compose_form.poll.remove_option": "Elimina aquesta opció", "compose_form.poll.remove_option": "Elimina aquesta opció",
"compose_form.poll.switch_to_multiple": "Canvia lenquesta per a permetre diverses opcions", "compose_form.poll.switch_to_multiple": "Canvia lenquesta per a permetre diverses opcions",
"compose_form.poll.switch_to_single": "Canvia lenquesta per permetre una única opció", "compose_form.poll.switch_to_single": "Canvia lenquesta per permetre una única opció",
"compose_form.publish": "Publica", "compose_form.publish": "Publicar",
"compose_form.publish_loud": "{publish}!", "compose_form.publish_loud": "{publish}!",
"compose_form.save_changes": "Desa els canvis", "compose_form.save_changes": "Desa els canvis",
"compose_form.sensitive.hide": "{count, plural, one {Marca contingut com a sensible} other {Marca contingut com a sensible}}", "compose_form.sensitive.hide": "{count, plural, one {Marca contingut com a sensible} other {Marca contingut com a sensible}}",
@ -118,7 +118,7 @@
"confirmations.block.confirm": "Bloqueja", "confirmations.block.confirm": "Bloqueja",
"confirmations.block.message": "Segur que vols bloquejar a {name}?", "confirmations.block.message": "Segur que vols bloquejar a {name}?",
"confirmations.delete.confirm": "Suprimeix", "confirmations.delete.confirm": "Suprimeix",
"confirmations.delete.message": "Segur que vols suprimir aquesta publicació?", "confirmations.delete.message": "Segur que vols eliminar la publicació?",
"confirmations.delete_list.confirm": "Suprimeix", "confirmations.delete_list.confirm": "Suprimeix",
"confirmations.delete_list.message": "Segur que vols suprimir permanentment aquesta llista?", "confirmations.delete_list.message": "Segur que vols suprimir permanentment aquesta llista?",
"confirmations.discard_edit_media.confirm": "Descarta", "confirmations.discard_edit_media.confirm": "Descarta",
@ -161,12 +161,12 @@
"emoji_button.symbols": "Símbols", "emoji_button.symbols": "Símbols",
"emoji_button.travel": "Viatges i llocs", "emoji_button.travel": "Viatges i llocs",
"empty_column.account_suspended": "Compte suspès", "empty_column.account_suspended": "Compte suspès",
"empty_column.account_timeline": "Aquí no hi ha publicacions!", "empty_column.account_timeline": "No hi ha publicacions aquí!",
"empty_column.account_unavailable": "Perfil no disponible", "empty_column.account_unavailable": "Perfil no disponible",
"empty_column.blocks": "Encara no has bloquejat cap usuari.", "empty_column.blocks": "Encara no has bloquejat cap usuari.",
"empty_column.bookmarked_statuses": "Encara no has marcat com publicació com a preferida. Quan en marquis una apareixerà aquí.", "empty_column.bookmarked_statuses": "Encara no has marcat com publicació com a preferida. Quan en marquis una apareixerà aquí.",
"empty_column.community": "La línia de temps local és buida. Escriu alguna cosa públicament per posar-ho tot en marxa!", "empty_column.community": "La línia de temps local és buida. Escriu alguna cosa públicament per posar-ho tot en marxa!",
"empty_column.conversations": "Cada vegada que envies o reps una publicació que és només visible per la gent que hi has mencionat en ella, serà mostrada aquí.", "empty_column.direct": "Encara no tens missatges directes. Quan n'enviïs o en rebis, es mostraran aquí.",
"empty_column.domain_blocks": "Encara no hi ha dominis bloquejats.", "empty_column.domain_blocks": "Encara no hi ha dominis bloquejats.",
"empty_column.explore_statuses": "No hi ha res en tendència ara mateix. Revisa-ho més tard!", "empty_column.explore_statuses": "No hi ha res en tendència ara mateix. Revisa-ho més tard!",
"empty_column.favourited_statuses": "Encara no has marcat cap publicació com a preferida. Quan les marquis, apareixeran aquí.", "empty_column.favourited_statuses": "Encara no has marcat cap publicació com a preferida. Quan les marquis, apareixeran aquí.",
@ -227,14 +227,14 @@
"intervals.full.minutes": "{number, plural, one {# minut} other {# minuts}}", "intervals.full.minutes": "{number, plural, one {# minut} other {# minuts}}",
"keyboard_shortcuts.back": "Anar enrere", "keyboard_shortcuts.back": "Anar enrere",
"keyboard_shortcuts.blocked": "Obre la llista d'usuaris bloquejats", "keyboard_shortcuts.blocked": "Obre la llista d'usuaris bloquejats",
"keyboard_shortcuts.boost": "Impulsa publicació", "keyboard_shortcuts.boost": "Impulsa la publicació",
"keyboard_shortcuts.column": "Centra la columna", "keyboard_shortcuts.column": "Centra la columna",
"keyboard_shortcuts.compose": "Centra l'àrea de composició del text", "keyboard_shortcuts.compose": "Centra l'àrea de composició del text",
"keyboard_shortcuts.conversations": "per a obrir la columna de converses",
"keyboard_shortcuts.description": "Descripció", "keyboard_shortcuts.description": "Descripció",
"keyboard_shortcuts.direct": "per obrir la columna de missatges directes",
"keyboard_shortcuts.down": "Mou-lo avall en la llista", "keyboard_shortcuts.down": "Mou-lo avall en la llista",
"keyboard_shortcuts.enter": "Obre publicació", "keyboard_shortcuts.enter": "Obrir publicació",
"keyboard_shortcuts.favourite": "Afavorir publicació", "keyboard_shortcuts.favourite": "Afavoreix la publicació",
"keyboard_shortcuts.favourites": "Obre la llista de preferits", "keyboard_shortcuts.favourites": "Obre la llista de preferits",
"keyboard_shortcuts.federated": "Obre la línia de temps federada", "keyboard_shortcuts.federated": "Obre la línia de temps federada",
"keyboard_shortcuts.heading": "Dreceres de teclat", "keyboard_shortcuts.heading": "Dreceres de teclat",
@ -242,7 +242,7 @@
"keyboard_shortcuts.hotkey": "Tecla d'accés directe", "keyboard_shortcuts.hotkey": "Tecla d'accés directe",
"keyboard_shortcuts.legend": "Mostra aquesta llegenda", "keyboard_shortcuts.legend": "Mostra aquesta llegenda",
"keyboard_shortcuts.local": "Obre la línia de temps local", "keyboard_shortcuts.local": "Obre la línia de temps local",
"keyboard_shortcuts.mention": "Esmenta l'autor", "keyboard_shortcuts.mention": "Mencionar l'autor",
"keyboard_shortcuts.muted": "Obre la llista d'usuaris silenciats", "keyboard_shortcuts.muted": "Obre la llista d'usuaris silenciats",
"keyboard_shortcuts.my_profile": "Obre el teu perfil", "keyboard_shortcuts.my_profile": "Obre el teu perfil",
"keyboard_shortcuts.notifications": "Obre la columna de notificacions", "keyboard_shortcuts.notifications": "Obre la columna de notificacions",
@ -256,7 +256,7 @@
"keyboard_shortcuts.start": "Obre la columna \"Primers passos\"", "keyboard_shortcuts.start": "Obre la columna \"Primers passos\"",
"keyboard_shortcuts.toggle_hidden": "Mostra/oculta el text marcat com a sensible", "keyboard_shortcuts.toggle_hidden": "Mostra/oculta el text marcat com a sensible",
"keyboard_shortcuts.toggle_sensitivity": "Mostra/amaga contingut multimèdia", "keyboard_shortcuts.toggle_sensitivity": "Mostra/amaga contingut multimèdia",
"keyboard_shortcuts.toot": "Inicia una nova publicació", "keyboard_shortcuts.toot": "Iniciar una publicació nova",
"keyboard_shortcuts.unfocus": "Descentra l'àrea de composició de text/cerca", "keyboard_shortcuts.unfocus": "Descentra l'àrea de composició de text/cerca",
"keyboard_shortcuts.up": "Moure amunt en la llista", "keyboard_shortcuts.up": "Moure amunt en la llista",
"lightbox.close": "Tanca", "lightbox.close": "Tanca",
@ -289,7 +289,8 @@
"navigation_bar.blocks": "Usuaris bloquejats", "navigation_bar.blocks": "Usuaris bloquejats",
"navigation_bar.bookmarks": "Marcadors", "navigation_bar.bookmarks": "Marcadors",
"navigation_bar.community_timeline": "Línia de temps local", "navigation_bar.community_timeline": "Línia de temps local",
"navigation_bar.compose": "Redacta una nova publicació", "navigation_bar.compose": "Redactar una nova publicació",
"navigation_bar.direct": "Missatges directes",
"navigation_bar.discover": "Descobrir", "navigation_bar.discover": "Descobrir",
"navigation_bar.domain_blocks": "Dominis bloquejats", "navigation_bar.domain_blocks": "Dominis bloquejats",
"navigation_bar.edit_profile": "Edita el perfil", "navigation_bar.edit_profile": "Edita el perfil",
@ -301,7 +302,7 @@
"navigation_bar.info": "Sobre aquest servidor", "navigation_bar.info": "Sobre aquest servidor",
"navigation_bar.keyboard_shortcuts": "Dreceres de teclat", "navigation_bar.keyboard_shortcuts": "Dreceres de teclat",
"navigation_bar.lists": "Llistes", "navigation_bar.lists": "Llistes",
"navigation_bar.logout": "Tanca la sessió", "navigation_bar.logout": "Tancar sessió",
"navigation_bar.mutes": "Usuaris silenciats", "navigation_bar.mutes": "Usuaris silenciats",
"navigation_bar.personal": "Personal", "navigation_bar.personal": "Personal",
"navigation_bar.pins": "Publicacions fixades", "navigation_bar.pins": "Publicacions fixades",
@ -312,11 +313,11 @@
"notification.favourite": "{name} ha afavorit la teva publicació", "notification.favourite": "{name} ha afavorit la teva publicació",
"notification.follow": "{name} et segueix", "notification.follow": "{name} et segueix",
"notification.follow_request": "{name} ha sol·licitat seguir-te", "notification.follow_request": "{name} ha sol·licitat seguir-te",
"notification.mention": "{name} t'ha esmentat", "notification.mention": "{name} t'ha mencionat",
"notification.own_poll": "La teva enquesta ha finalitzat", "notification.own_poll": "La teva enquesta ha finalitzat",
"notification.poll": "Ha finalitzat una enquesta en què has votat", "notification.poll": "Ha finalitzat una enquesta en què has votat",
"notification.reblog": "{name} ha impulsat el teu estat", "notification.reblog": "{name} ha impulsat la teva publicació",
"notification.status": "ha publicat {name}", "notification.status": "{name} acaba de publicar",
"notification.update": "{name} ha editat una publicació", "notification.update": "{name} ha editat una publicació",
"notifications.clear": "Esborra les notificacions", "notifications.clear": "Esborra les notificacions",
"notifications.clear_confirmation": "Segur que vols esborrar permanentment totes les teves notificacions?", "notifications.clear_confirmation": "Segur que vols esborrar permanentment totes les teves notificacions?",
@ -362,11 +363,11 @@
"poll.vote": "Vota", "poll.vote": "Vota",
"poll.voted": "Vas votar per aquesta resposta", "poll.voted": "Vas votar per aquesta resposta",
"poll.votes": "{votes, plural, one {# vot} other {# vots}}", "poll.votes": "{votes, plural, one {# vot} other {# vots}}",
"poll_button.add_poll": "Afegeix una enquesta", "poll_button.add_poll": "Afegir una enquesta",
"poll_button.remove_poll": "Elimina l'enquesta", "poll_button.remove_poll": "Elimina l'enquesta",
"privacy.change": "Ajusta la privacitat de la publicació", "privacy.change": "Canvia la privacitat de la publicació",
"privacy.direct.long": "Visible només per als usuaris esmentats", "privacy.direct.long": "Visible només per als usuaris esmentats",
"privacy.direct.short": "Només la gent que menciono", "privacy.direct.short": "Només gent mencionada",
"privacy.private.long": "Visible només per als seguidors", "privacy.private.long": "Visible només per als seguidors",
"privacy.private.short": "Només seguidors", "privacy.private.short": "Només seguidors",
"privacy.public.long": "Visible per tothom", "privacy.public.long": "Visible per tothom",
@ -440,12 +441,12 @@
"search_results.statuses_fts_disabled": "La cerca de publicacions pel seu contingut no està habilitada en aquest servidor Mastodon.", "search_results.statuses_fts_disabled": "La cerca de publicacions pel seu contingut no està habilitada en aquest servidor Mastodon.",
"search_results.total": "{count, number} {count, plural, one {resultat} other {resultats}}", "search_results.total": "{count, number} {count, plural, one {resultat} other {resultats}}",
"status.admin_account": "Obre l'interfície de moderació per a @{name}", "status.admin_account": "Obre l'interfície de moderació per a @{name}",
"status.admin_status": "Obre aquesta publicació a la interfície de moderació", "status.admin_status": "Obrir aquesta publicació a la interfície de moderació",
"status.block": "Bloqueja @{name}", "status.block": "Bloqueja @{name}",
"status.bookmark": "Afavoreix", "status.bookmark": "Afavoreix",
"status.cancel_reblog_private": "Desfés l'impuls", "status.cancel_reblog_private": "Desfés l'impuls",
"status.cannot_reblog": "Aquesta publicació no es pot impulsar", "status.cannot_reblog": "Aquesta publicació no es pot impulsar",
"status.copy": "Copia l'enllaç a l'estat", "status.copy": "Copia l'enllaç a la publicació",
"status.delete": "Esborra", "status.delete": "Esborra",
"status.detailed_status": "Visualització detallada de la conversa", "status.detailed_status": "Visualització detallada de la conversa",
"status.direct": "Envia missatge directe a @{name}", "status.direct": "Envia missatge directe a @{name}",

View File

@ -70,7 +70,7 @@
"column.blocks": "بەکارهێنەرە بلۆککراوەکان", "column.blocks": "بەکارهێنەرە بلۆککراوەکان",
"column.bookmarks": "نیشانەکان", "column.bookmarks": "نیشانەکان",
"column.community": "هێڵی کاتی ناوخۆیی", "column.community": "هێڵی کاتی ناوخۆیی",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "گەڕان لە پرۆفایلەکان", "column.directory": "گەڕان لە پرۆفایلەکان",
"column.domain_blocks": "دۆمەینە داخراوەکان", "column.domain_blocks": "دۆمەینە داخراوەکان",
"column.favourites": "دڵخوازترینەکان", "column.favourites": "دڵخوازترینەکان",
@ -166,7 +166,7 @@
"empty_column.blocks": "تۆ هێشتا هیچ بەکارهێنەرێکت بلۆک نەکردووە.", "empty_column.blocks": "تۆ هێشتا هیچ بەکارهێنەرێکت بلۆک نەکردووە.",
"empty_column.bookmarked_statuses": "تۆ هێشتا هیچ توتێکی دیاریکراوت نیە کاتێک نیشانەیەک نیشان دەکەیت، لێرە دەرئەکەویت.", "empty_column.bookmarked_statuses": "تۆ هێشتا هیچ توتێکی دیاریکراوت نیە کاتێک نیشانەیەک نیشان دەکەیت، لێرە دەرئەکەویت.",
"empty_column.community": "هێڵی کاتی ناوخۆیی بەتاڵە. شتێک بە ئاشکرا بنووسە بۆ ئەوەی تۆپەکە بسووڕێت!", "empty_column.community": "هێڵی کاتی ناوخۆیی بەتاڵە. شتێک بە ئاشکرا بنووسە بۆ ئەوەی تۆپەکە بسووڕێت!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "هێشتا هیچ دۆمەینێکی بلۆک کراو نییە.", "empty_column.domain_blocks": "هێشتا هیچ دۆمەینێکی بلۆک کراو نییە.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "تۆ هێشتا هیچ توتێکی دڵخوازت نییە، کاتێک حەزت لە دانەیەکی باشە، لێرە دەرئەکەویت.", "empty_column.favourited_statuses": "تۆ هێشتا هیچ توتێکی دڵخوازت نییە، کاتێک حەزت لە دانەیەکی باشە، لێرە دەرئەکەویت.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "بۆ بەهێزکردن", "keyboard_shortcuts.boost": "بۆ بەهێزکردن",
"keyboard_shortcuts.column": "بۆ ئەوەی تیشک بخاتە سەر توتێک لە یەکێک لە ستوونەکان", "keyboard_shortcuts.column": "بۆ ئەوەی تیشک بخاتە سەر توتێک لە یەکێک لە ستوونەکان",
"keyboard_shortcuts.compose": "بۆ سەرنجدان بە نووسینی ناوچەی دەق", "keyboard_shortcuts.compose": "بۆ سەرنجدان بە نووسینی ناوچەی دەق",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "وه‌سف", "keyboard_shortcuts.description": "وه‌سف",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "بۆ چوونە خوارەوە لە لیستەکەدا", "keyboard_shortcuts.down": "بۆ چوونە خوارەوە لە لیستەکەدا",
"keyboard_shortcuts.enter": "بۆ کردنەوەی توت", "keyboard_shortcuts.enter": "بۆ کردنەوەی توت",
"keyboard_shortcuts.favourite": "بۆ دڵخواز", "keyboard_shortcuts.favourite": "بۆ دڵخواز",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "نیشانکراوەکان", "navigation_bar.bookmarks": "نیشانکراوەکان",
"navigation_bar.community_timeline": "دەمنامەی ناوخۆیی", "navigation_bar.community_timeline": "دەمنامەی ناوخۆیی",
"navigation_bar.compose": "نووسینی توتی نوێ", "navigation_bar.compose": "نووسینی توتی نوێ",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "دۆزینەوە", "navigation_bar.discover": "دۆزینەوە",
"navigation_bar.domain_blocks": "دۆمەینە بلۆک کراوەکان", "navigation_bar.domain_blocks": "دۆمەینە بلۆک کراوەکان",
"navigation_bar.edit_profile": "دەستکاری پرۆفایل بکە", "navigation_bar.edit_profile": "دەستکاری پرۆفایل بکە",

View File

@ -70,7 +70,7 @@
"column.blocks": "Utilizatori bluccati", "column.blocks": "Utilizatori bluccati",
"column.bookmarks": "Segnalibri", "column.bookmarks": "Segnalibri",
"column.community": "Linea pubblica lucale", "column.community": "Linea pubblica lucale",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Percorre i prufili", "column.directory": "Percorre i prufili",
"column.domain_blocks": "Duminii piattati", "column.domain_blocks": "Duminii piattati",
"column.favourites": "Favuriti", "column.favourites": "Favuriti",
@ -166,7 +166,7 @@
"empty_column.blocks": "Per avà ùn avete bluccatu manc'un utilizatore.", "empty_column.blocks": "Per avà ùn avete bluccatu manc'un utilizatore.",
"empty_column.bookmarked_statuses": "Ùn avete manc'un segnalibru. Quandu aghjunghjerate unu, sarà mustratu quì.", "empty_column.bookmarked_statuses": "Ùn avete manc'un segnalibru. Quandu aghjunghjerate unu, sarà mustratu quì.",
"empty_column.community": "Ùn c'hè nunda indè a linea lucale. Scrivete puru qualcosa!", "empty_column.community": "Ùn c'hè nunda indè a linea lucale. Scrivete puru qualcosa!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Ùn c'hè manc'un duminiu bluccatu avà.", "empty_column.domain_blocks": "Ùn c'hè manc'un duminiu bluccatu avà.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Ùn avete manc'unu statutu favuritu. Quandu aghjunghjerate unu à i vostri favuriti, sarà mustratu quì.", "empty_column.favourited_statuses": "Ùn avete manc'unu statutu favuritu. Quandu aghjunghjerate unu à i vostri favuriti, sarà mustratu quì.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "sparte", "keyboard_shortcuts.boost": "sparte",
"keyboard_shortcuts.column": "fucalizà un statutu indè una colonna", "keyboard_shortcuts.column": "fucalizà un statutu indè una colonna",
"keyboard_shortcuts.compose": "fucalizà nant'à l'area di ridazzione", "keyboard_shortcuts.compose": "fucalizà nant'à l'area di ridazzione",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Descrizzione", "keyboard_shortcuts.description": "Descrizzione",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "falà indè a lista", "keyboard_shortcuts.down": "falà indè a lista",
"keyboard_shortcuts.enter": "apre u statutu", "keyboard_shortcuts.enter": "apre u statutu",
"keyboard_shortcuts.favourite": "aghjunghje à i favuriti", "keyboard_shortcuts.favourite": "aghjunghje à i favuriti",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Segnalibri", "navigation_bar.bookmarks": "Segnalibri",
"navigation_bar.community_timeline": "Linea pubblica lucale", "navigation_bar.community_timeline": "Linea pubblica lucale",
"navigation_bar.compose": "Scrive un novu statutu", "navigation_bar.compose": "Scrive un novu statutu",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Scopre", "navigation_bar.discover": "Scopre",
"navigation_bar.domain_blocks": "Duminii piattati", "navigation_bar.domain_blocks": "Duminii piattati",
"navigation_bar.edit_profile": "Mudificà u prufile", "navigation_bar.edit_profile": "Mudificà u prufile",

View File

@ -70,7 +70,7 @@
"column.blocks": "Blokovaní uživatelé", "column.blocks": "Blokovaní uživatelé",
"column.bookmarks": "Záložky", "column.bookmarks": "Záložky",
"column.community": "Místní časová osa", "column.community": "Místní časová osa",
"column.conversations": "Konverzace", "column.direct": "Přímé zprávy",
"column.directory": "Prozkoumat profily", "column.directory": "Prozkoumat profily",
"column.domain_blocks": "Blokované domény", "column.domain_blocks": "Blokované domény",
"column.favourites": "Oblíbené", "column.favourites": "Oblíbené",
@ -166,7 +166,7 @@
"empty_column.blocks": "Ještě jste nezablokovali žádného uživatele.", "empty_column.blocks": "Ještě jste nezablokovali žádného uživatele.",
"empty_column.bookmarked_statuses": "Ještě nemáte v záložkách žádné příspěvky. Pokud si do nich nějaký přidáte, zobrazí se zde.", "empty_column.bookmarked_statuses": "Ještě nemáte v záložkách žádné příspěvky. Pokud si do nich nějaký přidáte, zobrazí se zde.",
"empty_column.community": "Místní časová osa je prázdná. Napište něco veřejně a rozhýbejte to tu!", "empty_column.community": "Místní časová osa je prázdná. Napište něco veřejně a rozhýbejte to tu!",
"empty_column.conversations": "Jakmile pošlete nebo obdržíte příspěvek, který je viditelný pouze lidem v něm zmíněným, objeví se tady.", "empty_column.direct": "Ještě nemáte žádné přímé zprávy. Pokud nějakou pošlete nebo dostanete, zobrazí se zde.",
"empty_column.domain_blocks": "Ještě nemáte žádné blokované domény.", "empty_column.domain_blocks": "Ještě nemáte žádné blokované domény.",
"empty_column.explore_statuses": "Momentálně není nic populární. Vraťte se později!", "empty_column.explore_statuses": "Momentálně není nic populární. Vraťte se později!",
"empty_column.favourited_statuses": "Ještě nemáte žádné oblíbené příspěvky. Pokud si nějaký oblíbíte, zobrazí se zde.", "empty_column.favourited_statuses": "Ještě nemáte žádné oblíbené příspěvky. Pokud si nějaký oblíbíte, zobrazí se zde.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Boostnout příspěvek", "keyboard_shortcuts.boost": "Boostnout příspěvek",
"keyboard_shortcuts.column": "Focus na sloupec", "keyboard_shortcuts.column": "Focus na sloupec",
"keyboard_shortcuts.compose": "Focus na textové pole nového příspěvku", "keyboard_shortcuts.compose": "Focus na textové pole nového příspěvku",
"keyboard_shortcuts.conversations": "Otevřít sloupec konverzací",
"keyboard_shortcuts.description": "Popis", "keyboard_shortcuts.description": "Popis",
"keyboard_shortcuts.direct": "Otevřít sloupec přímých zpráv",
"keyboard_shortcuts.down": "Posunout dolů v seznamu", "keyboard_shortcuts.down": "Posunout dolů v seznamu",
"keyboard_shortcuts.enter": "Otevřít příspěvek", "keyboard_shortcuts.enter": "Otevřít příspěvek",
"keyboard_shortcuts.favourite": "Oblíbit příspěvek", "keyboard_shortcuts.favourite": "Oblíbit příspěvek",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Záložky", "navigation_bar.bookmarks": "Záložky",
"navigation_bar.community_timeline": "Místní časová osa", "navigation_bar.community_timeline": "Místní časová osa",
"navigation_bar.compose": "Vytvořit nový příspěvek", "navigation_bar.compose": "Vytvořit nový příspěvek",
"navigation_bar.direct": "Přímé zprávy",
"navigation_bar.discover": "Objevujte", "navigation_bar.discover": "Objevujte",
"navigation_bar.domain_blocks": "Blokované domény", "navigation_bar.domain_blocks": "Blokované domény",
"navigation_bar.edit_profile": "Upravit profil", "navigation_bar.edit_profile": "Upravit profil",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Odstranit anketu", "poll_button.remove_poll": "Odstranit anketu",
"privacy.change": "Změnit soukromí příspěvku", "privacy.change": "Změnit soukromí příspěvku",
"privacy.direct.long": "Viditelný pouze pro zmíněné uživatele", "privacy.direct.long": "Viditelný pouze pro zmíněné uživatele",
"privacy.direct.short": "Pouze lidé, které zmíním", "privacy.direct.short": "Jen zmínění lidé",
"privacy.private.long": "Viditelný pouze pro sledující", "privacy.private.long": "Viditelný pouze pro sledující",
"privacy.private.short": "Pouze sledující", "privacy.private.short": "Pouze sledující",
"privacy.public.long": "Viditelný pro všechny", "privacy.public.long": "Viditelný pro všechny",

View File

@ -70,7 +70,7 @@
"column.blocks": "Defnyddwyr a flociwyd", "column.blocks": "Defnyddwyr a flociwyd",
"column.bookmarks": "Tudalnodau", "column.bookmarks": "Tudalnodau",
"column.community": "Ffrwd lleol", "column.community": "Ffrwd lleol",
"column.conversations": "Sgyrsiau", "column.direct": "Negeseuon preifat",
"column.directory": "Pori proffiliau", "column.directory": "Pori proffiliau",
"column.domain_blocks": "Parthau cuddiedig", "column.domain_blocks": "Parthau cuddiedig",
"column.favourites": "Ffefrynnau", "column.favourites": "Ffefrynnau",
@ -166,10 +166,10 @@
"empty_column.blocks": "Nid ydych wedi blocio unrhyw ddefnyddwyr eto.", "empty_column.blocks": "Nid ydych wedi blocio unrhyw ddefnyddwyr eto.",
"empty_column.bookmarked_statuses": "Nid oes gennych unrhyw dwtiau tudalnodiedig eto. Pan y byddwch yn tudalnodi un, mi fydd yn ymddangos yma.", "empty_column.bookmarked_statuses": "Nid oes gennych unrhyw dwtiau tudalnodiedig eto. Pan y byddwch yn tudalnodi un, mi fydd yn ymddangos yma.",
"empty_column.community": "Mae'r ffrwd lleol yn wag. Ysgrifenwch rhywbeth yn gyhoeddus i gael dechrau arni!", "empty_column.community": "Mae'r ffrwd lleol yn wag. Ysgrifenwch rhywbeth yn gyhoeddus i gael dechrau arni!",
"empty_column.conversations": "Unwaith y byddwch chi'n anfon neu'n derbyn post sydd ond yn weladwy i'r bobl a grybwyllir ynddo, bydd yn ymddangos yma.", "empty_column.direct": "Does gennych unrhyw negeseuon preifat eto. Pan byddwch yn anfon neu derbyn un, bydd yn ymddangos yma.",
"empty_column.domain_blocks": "Nid oes yna unrhyw barthau cuddiedig eto.", "empty_column.domain_blocks": "Nid oes yna unrhyw barthau cuddiedig eto.",
"empty_column.explore_statuses": "Does dim byd yn trendio ar hyn o bryd. Gwiriwch yn ôl yn nes ymlaen!", "empty_column.explore_statuses": "Does dim byd yn trendio ar hyn o bryd. Gwiriwch yn ôl yn nes ymlaen!",
"empty_column.favourited_statuses": "Nid oes gennych unrhyw hoff dwtiau eto. Pan y byddwch yn hoffi un, mi fydd yn ymddangos yma.", "empty_column.favourited_statuses": "Nid oes gennych unrhyw hoff bostiadau eto. Pan y byddwch yn hoffi un, mi fydd yn ymddangos yma.",
"empty_column.favourites": "Does neb wedi hoffi'r post hwn eto. Pan bydd rhywun yn ei hoffi, byddent yn ymddangos yma.", "empty_column.favourites": "Does neb wedi hoffi'r post hwn eto. Pan bydd rhywun yn ei hoffi, byddent yn ymddangos yma.",
"empty_column.follow_recommendations": "Does dim awgrymiadau yma i chi. Gallwch geisio chwilio am bobl yr ydych yn eu hadnabod neu archwilio hashnodau sy'n trendio.", "empty_column.follow_recommendations": "Does dim awgrymiadau yma i chi. Gallwch geisio chwilio am bobl yr ydych yn eu hadnabod neu archwilio hashnodau sy'n trendio.",
"empty_column.follow_requests": "Nid oes gennych unrhyw geisiadau dilyn eto. Pan dderbyniwch chi un, byddent yn ymddangos yma.", "empty_column.follow_requests": "Nid oes gennych unrhyw geisiadau dilyn eto. Pan dderbyniwch chi un, byddent yn ymddangos yma.",
@ -191,8 +191,8 @@
"explore.suggested_follows": "I chi", "explore.suggested_follows": "I chi",
"explore.title": "Archwilio", "explore.title": "Archwilio",
"explore.trending_links": "Newyddion", "explore.trending_links": "Newyddion",
"explore.trending_statuses": "Postiau", "explore.trending_statuses": "Postiadau",
"explore.trending_tags": "Hanshnodau", "explore.trending_tags": "Hashnodau",
"follow_recommendations.done": "Wedi gorffen", "follow_recommendations.done": "Wedi gorffen",
"follow_recommendations.heading": "Dilynwch y bobl yr hoffech chi weld eu postiadau! Dyma ambell i awgrymiad.", "follow_recommendations.heading": "Dilynwch y bobl yr hoffech chi weld eu postiadau! Dyma ambell i awgrymiad.",
"follow_recommendations.lead": "Bydd postiadau gan bobl rydych chi'n eu dilyn yn ymddangos mewn trefn amser ar eich ffrwd cartref. Peidiwch â bod ofn gwneud camgymeriadau, gallwch chi ddad-ddilyn pobl yr un mor hawdd unrhyw bryd!", "follow_recommendations.lead": "Bydd postiadau gan bobl rydych chi'n eu dilyn yn ymddangos mewn trefn amser ar eich ffrwd cartref. Peidiwch â bod ofn gwneud camgymeriadau, gallwch chi ddad-ddilyn pobl yr un mor hawdd unrhyw bryd!",
@ -222,7 +222,7 @@
"home.column_settings.show_replies": "Dangos ymatebion", "home.column_settings.show_replies": "Dangos ymatebion",
"home.hide_announcements": "Cuddio cyhoeddiadau", "home.hide_announcements": "Cuddio cyhoeddiadau",
"home.show_announcements": "Dangos cyhoeddiadau", "home.show_announcements": "Dangos cyhoeddiadau",
"intervals.full.days": "{number, plural, one {# ddydd} other {# o ddyddiau}}", "intervals.full.days": "{number, plural, one {# dydd} two {# ddydd} other {# o ddyddiau}}",
"intervals.full.hours": "{number, plural, one {# awr} other {# o oriau}}", "intervals.full.hours": "{number, plural, one {# awr} other {# o oriau}}",
"intervals.full.minutes": "{number, plural, one {# funud} other {# o funudau}}", "intervals.full.minutes": "{number, plural, one {# funud} other {# o funudau}}",
"keyboard_shortcuts.back": "i lywio nôl", "keyboard_shortcuts.back": "i lywio nôl",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "i fŵstio", "keyboard_shortcuts.boost": "i fŵstio",
"keyboard_shortcuts.column": "Ffocysu colofn", "keyboard_shortcuts.column": "Ffocysu colofn",
"keyboard_shortcuts.compose": "i ffocysu yr ardal cyfansoddi testun", "keyboard_shortcuts.compose": "i ffocysu yr ardal cyfansoddi testun",
"keyboard_shortcuts.conversations": "i agor colofn sgyrsiau",
"keyboard_shortcuts.description": "Disgrifiad", "keyboard_shortcuts.description": "Disgrifiad",
"keyboard_shortcuts.direct": "i agor colofn negeseuon preifat",
"keyboard_shortcuts.down": "i symud lawr yn y rhestr", "keyboard_shortcuts.down": "i symud lawr yn y rhestr",
"keyboard_shortcuts.enter": "Agor post", "keyboard_shortcuts.enter": "Agor post",
"keyboard_shortcuts.favourite": "i hoffi", "keyboard_shortcuts.favourite": "i hoffi",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Tudalnodau", "navigation_bar.bookmarks": "Tudalnodau",
"navigation_bar.community_timeline": "Ffrwd leol", "navigation_bar.community_timeline": "Ffrwd leol",
"navigation_bar.compose": "Cyfansoddi post newydd", "navigation_bar.compose": "Cyfansoddi post newydd",
"navigation_bar.direct": "Negeseuon preifat",
"navigation_bar.discover": "Darganfod", "navigation_bar.discover": "Darganfod",
"navigation_bar.domain_blocks": "Parthau cuddiedig", "navigation_bar.domain_blocks": "Parthau cuddiedig",
"navigation_bar.edit_profile": "Golygu proffil", "navigation_bar.edit_profile": "Golygu proffil",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Tynnu pleidlais", "poll_button.remove_poll": "Tynnu pleidlais",
"privacy.change": "Addasu preifatrwdd y post", "privacy.change": "Addasu preifatrwdd y post",
"privacy.direct.long": "Cyhoeddi i'r defnyddwyr sy'n cael eu crybwyll yn unig", "privacy.direct.long": "Cyhoeddi i'r defnyddwyr sy'n cael eu crybwyll yn unig",
"privacy.direct.short": "Dim ond pobl rwy'n eu crybwyll", "privacy.direct.short": "Pobl sy wedi'u crybwyll yn unig",
"privacy.private.long": "Cyhoeddi i ddilynwyr yn unig", "privacy.private.long": "Cyhoeddi i ddilynwyr yn unig",
"privacy.private.short": "Dilynwyr yn unig", "privacy.private.short": "Dilynwyr yn unig",
"privacy.public.long": "Gweladwy i bawb", "privacy.public.long": "Gweladwy i bawb",
@ -376,7 +377,7 @@
"refresh": "Adnewyddu", "refresh": "Adnewyddu",
"regeneration_indicator.label": "Llwytho…", "regeneration_indicator.label": "Llwytho…",
"regeneration_indicator.sublabel": "Mae eich ffrwd cartref yn cael ei baratoi!", "regeneration_indicator.sublabel": "Mae eich ffrwd cartref yn cael ei baratoi!",
"relative_time.days": "{number}dydd", "relative_time.days": "{number} dydd",
"relative_time.full.days": "{number, plural, one {# dydd} other {# o ddyddiau}} yn ôl", "relative_time.full.days": "{number, plural, one {# dydd} other {# o ddyddiau}} yn ôl",
"relative_time.full.hours": "{number, plural, one {# awr} other {# o oriau}} yn ôl", "relative_time.full.hours": "{number, plural, one {# awr} other {# o oriau}} yn ôl",
"relative_time.full.just_now": "jyst nawr", "relative_time.full.just_now": "jyst nawr",
@ -385,7 +386,7 @@
"relative_time.hours": "{number} awr", "relative_time.hours": "{number} awr",
"relative_time.just_now": "nawr", "relative_time.just_now": "nawr",
"relative_time.minutes": "{number} munud", "relative_time.minutes": "{number} munud",
"relative_time.seconds": "{number}eiliad", "relative_time.seconds": "{number} eiliad",
"relative_time.today": "heddiw", "relative_time.today": "heddiw",
"reply_indicator.cancel": "Canslo", "reply_indicator.cancel": "Canslo",
"report.block": "Blocio", "report.block": "Blocio",
@ -434,7 +435,7 @@
"search_popout.tips.user": "defnyddiwr", "search_popout.tips.user": "defnyddiwr",
"search_results.accounts": "Pobl", "search_results.accounts": "Pobl",
"search_results.all": "Popeth", "search_results.all": "Popeth",
"search_results.hashtags": "Hanshnodau", "search_results.hashtags": "Hashnodau",
"search_results.nothing_found": "Methu dod o hyd i unrhyw beth ar gyfer y termau chwilio hyn", "search_results.nothing_found": "Methu dod o hyd i unrhyw beth ar gyfer y termau chwilio hyn",
"search_results.statuses": "Postiadau", "search_results.statuses": "Postiadau",
"search_results.statuses_fts_disabled": "Nid yw chwilio postiadau yn ôl eu cynnwys wedi'i alluogi ar y gweinydd Mastodon hwn.", "search_results.statuses_fts_disabled": "Nid yw chwilio postiadau yn ôl eu cynnwys wedi'i alluogi ar y gweinydd Mastodon hwn.",
@ -465,11 +466,11 @@
"status.mute_conversation": "Tawelu sgwrs", "status.mute_conversation": "Tawelu sgwrs",
"status.open": "Ehangu'r post hwn", "status.open": "Ehangu'r post hwn",
"status.pin": "Pinio ar y proffil", "status.pin": "Pinio ar y proffil",
"status.pinned": "Pinio post", "status.pinned": "Post wedi'i binio",
"status.read_more": "Darllen mwy", "status.read_more": "Darllen mwy",
"status.reblog": "Hybu", "status.reblog": "Hybu",
"status.reblog_private": "Hybu i'r gynulleidfa wreiddiol", "status.reblog_private": "Hybu i'r gynulleidfa wreiddiol",
"status.reblogged_by": "Hybio {name}", "status.reblogged_by": "Hybodd {name}",
"status.reblogs.empty": "Does neb wedi hybio'r post yma eto. Pan y bydd rhywun yn gwneud, byddent yn ymddangos yma.", "status.reblogs.empty": "Does neb wedi hybio'r post yma eto. Pan y bydd rhywun yn gwneud, byddent yn ymddangos yma.",
"status.redraft": "Dileu & ailddrafftio", "status.redraft": "Dileu & ailddrafftio",
"status.remove_bookmark": "Tynnu'r tudalnod", "status.remove_bookmark": "Tynnu'r tudalnod",

View File

@ -70,7 +70,7 @@
"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.conversations": "Konversationer", "column.direct": "Direkte beskeder",
"column.directory": "Tjek profiler", "column.directory": "Tjek profiler",
"column.domain_blocks": "Blokerede domæner", "column.domain_blocks": "Blokerede domæner",
"column.favourites": "Favoritter", "column.favourites": "Favoritter",
@ -166,7 +166,7 @@
"empty_column.blocks": "Ingen brugere blokeret endnu.", "empty_column.blocks": "Ingen brugere blokeret endnu.",
"empty_column.bookmarked_statuses": "Du har ingen bogmærkede indlæg endnu. Når du bogmærker ét, vil det dukke op hér.", "empty_column.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.conversations": "Når der sendes eller modtages indlæg, som kun er synligt for personer nævnt heri, vil de dukke op her.", "empty_column.direct": "Der er endnu ingen direkte beskeder. Når en sendes eller modtages, dukker den op hér.",
"empty_column.domain_blocks": "Ingen blokerede domæner endnu.", "empty_column.domain_blocks": "Ingen blokerede domæner endnu.",
"empty_column.explore_statuses": "Ingen nye tendensen pt. Tjek igen senere!", "empty_column.explore_statuses": "Ingen nye tendensen pt. Tjek igen senere!",
"empty_column.favourited_statuses": "Du har endnu ingen favoritindlæg. Når du favoritmarkerer ét, vil det dukke op hér.", "empty_column.favourited_statuses": "Du har endnu ingen favoritindlæg. Når du favoritmarkerer ét, vil det dukke op hér.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Boost indlæg", "keyboard_shortcuts.boost": "Boost indlæg",
"keyboard_shortcuts.column": "Fokusér kolonne", "keyboard_shortcuts.column": "Fokusér kolonne",
"keyboard_shortcuts.compose": "Fokusér skriveområdet", "keyboard_shortcuts.compose": "Fokusér skriveområdet",
"keyboard_shortcuts.conversations": "for at åbne konversationskolonnen",
"keyboard_shortcuts.description": "Beskrivelse", "keyboard_shortcuts.description": "Beskrivelse",
"keyboard_shortcuts.direct": "for at åbne direkte beskeder-kolonnen",
"keyboard_shortcuts.down": "Flyt nedad på listen", "keyboard_shortcuts.down": "Flyt nedad på listen",
"keyboard_shortcuts.enter": "Åbn indlæg", "keyboard_shortcuts.enter": "Åbn indlæg",
"keyboard_shortcuts.favourite": "Favoritmarkér indlæg", "keyboard_shortcuts.favourite": "Favoritmarkér indlæg",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bogmærker", "navigation_bar.bookmarks": "Bogmærker",
"navigation_bar.community_timeline": "Lokal tidslinje", "navigation_bar.community_timeline": "Lokal tidslinje",
"navigation_bar.compose": "Skriv nyt indlæg", "navigation_bar.compose": "Skriv nyt indlæg",
"navigation_bar.direct": "Direkte beskeder",
"navigation_bar.discover": "Opdag", "navigation_bar.discover": "Opdag",
"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",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Fjern afstemning", "poll_button.remove_poll": "Fjern afstemning",
"privacy.change": "Justér indlægsfortrolighed", "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": "Kun personer, jeg nævner", "privacy.direct.short": "Kun nævnte personer",
"privacy.private.long": "Kun synlig for følgere", "privacy.private.long": "Kun synlig for følgere",
"privacy.private.short": "Kun følgere", "privacy.private.short": "Kun følgere",
"privacy.public.long": "Synlig for alle", "privacy.public.long": "Synlig for alle",

View File

@ -13,10 +13,10 @@
"account.domain_blocked": "Domain versteckt", "account.domain_blocked": "Domain versteckt",
"account.edit_profile": "Profil bearbeiten", "account.edit_profile": "Profil bearbeiten",
"account.enable_notifications": "Benachrichtige mich wenn @{name} etwas postet", "account.enable_notifications": "Benachrichtige mich wenn @{name} etwas postet",
"account.endorse": "Im Profil anzeigen", "account.endorse": "Auf Profil hervorheben",
"account.follow": "Folgen", "account.follow": "Folgen",
"account.followers": "Follower", "account.followers": "Follower",
"account.followers.empty": "Diesem Profil folgt bislang 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": "Folgt", "account.following": "Folgt",
"account.following_counter": "{count, plural, one {{counter} Folgt} other {{counter} Folgt}}", "account.following_counter": "{count, plural, one {{counter} Folgt} other {{counter} Folgt}}",
@ -70,7 +70,7 @@
"column.blocks": "Blockierte Profile", "column.blocks": "Blockierte Profile",
"column.bookmarks": "Lesezeichen", "column.bookmarks": "Lesezeichen",
"column.community": "Lokale Zeitleiste", "column.community": "Lokale Zeitleiste",
"column.conversations": "Konversationen", "column.direct": "Mensaxes directas",
"column.directory": "Profile durchsuchen", "column.directory": "Profile durchsuchen",
"column.domain_blocks": "Blockierte Domains", "column.domain_blocks": "Blockierte Domains",
"column.favourites": "Favoriten", "column.favourites": "Favoriten",
@ -166,7 +166,7 @@
"empty_column.blocks": "Du hast keine Profile blockiert.", "empty_column.blocks": "Du hast keine Profile blockiert.",
"empty_column.bookmarked_statuses": "Du hast bis jetzt keine Beiträge als Lesezeichen gespeichert. Wenn du einen Beitrag als Lesezeichen speicherst wird er hier erscheinen.", "empty_column.bookmarked_statuses": "Du hast bis jetzt keine Beiträge als Lesezeichen gespeichert. Wenn du einen Beitrag als Lesezeichen speicherst wird er hier erscheinen.",
"empty_column.community": "Die lokale Zeitleiste ist leer. Schreibe einen öffentlichen Beitrag, um den Ball ins Rollen zu bringen!", "empty_column.community": "Die lokale Zeitleiste ist leer. Schreibe einen öffentlichen Beitrag, um den Ball ins Rollen zu bringen!",
"empty_column.conversations": "Sobald du einen Beitrag sendest oder empfängst, der nur für die in ihm erwähnten Personen sichtbar ist, wird er hier angezeigt.", "empty_column.direct": "Du hast noch keine Direktnachrichten. Sobald du eine sendest oder empfängst, wird sie hier zu sehen sein.",
"empty_column.domain_blocks": "Es sind noch keine Domains versteckt.", "empty_column.domain_blocks": "Es sind noch keine Domains versteckt.",
"empty_column.explore_statuses": "Momentan ist nichts im Trend. Schau später wieder!", "empty_column.explore_statuses": "Momentan ist nichts im Trend. Schau später wieder!",
"empty_column.favourited_statuses": "Du hast noch keine favorisierten Tröts. Wenn du einen favorisierst, wird er hier erscheinen.", "empty_column.favourited_statuses": "Du hast noch keine favorisierten Tröts. Wenn du einen favorisierst, wird er hier erscheinen.",
@ -174,7 +174,7 @@
"empty_column.follow_recommendations": "Es sieht so aus, als könnten keine Vorschläge für dich generiert werden. Du kannst versuchen nach Leuten zu suchen, die du vielleicht kennst oder du kannst angesagte Hashtags erkunden.", "empty_column.follow_recommendations": "Es sieht so aus, als könnten keine Vorschläge für dich generiert werden. Du kannst versuchen nach Leuten zu suchen, die du vielleicht kennst oder du kannst angesagte Hashtags erkunden.",
"empty_column.follow_requests": "Du hast noch keine Folge-Anfragen. Sobald du eine erhältst, wird sie hier angezeigt.", "empty_column.follow_requests": "Du hast noch keine Folge-Anfragen. Sobald du eine erhältst, wird sie hier angezeigt.",
"empty_column.hashtag": "Unter diesem Hashtag gibt es noch nichts.", "empty_column.hashtag": "Unter diesem Hashtag gibt es noch nichts.",
"empty_column.home": "Deine Startseite ist leer! Besuche {public} oder nutze die Suche, um loszulegen und andere Leute zu finden.", "empty_column.home": "Deine Startseite ist leer! Folge mehr Leuten, um sie zu füllen. {suggestions}",
"empty_column.home.suggestions": "Ein paar Vorschläge ansehen", "empty_column.home.suggestions": "Ein paar Vorschläge ansehen",
"empty_column.list": "Diese Liste ist derzeit leer. Wenn Konten auf dieser Liste neue Beiträge veröffentlichen werden sie hier erscheinen.", "empty_column.list": "Diese Liste ist derzeit leer. Wenn Konten auf dieser Liste neue Beiträge veröffentlichen werden sie hier erscheinen.",
"empty_column.lists": "Du hast noch keine Listen. Wenn du eine anlegst, wird sie hier angezeigt.", "empty_column.lists": "Du hast noch keine Listen. Wenn du eine anlegst, wird sie hier angezeigt.",
@ -198,7 +198,7 @@
"follow_recommendations.lead": "Beiträge von Personen, denen du folgst, werden in chronologischer Reihenfolge auf deiner Startseite angezeigt. Hab keine Angst, Fehler zu machen, du kannst den Leuten jederzeit wieder entfolgen!", "follow_recommendations.lead": "Beiträge von Personen, denen du folgst, werden in chronologischer Reihenfolge auf deiner Startseite angezeigt. Hab keine Angst, Fehler zu machen, du kannst den Leuten jederzeit wieder entfolgen!",
"follow_request.authorize": "Erlauben", "follow_request.authorize": "Erlauben",
"follow_request.reject": "Ablehnen", "follow_request.reject": "Ablehnen",
"follow_requests.unlocked_explanation": "Auch wenn dein Konto nicht gesperrt ist, haben die Mitarbeiter von {domain} gedacht, dass es besser wäre den Follow manuell zu bestätigen.", "follow_requests.unlocked_explanation": "Auch wenn dein Konto nicht gesperrt ist, haben die Moderator_innen von {domain} gedacht, dass du diesen Follower lieber manuell bestätigen solltest.",
"generic.saved": "Gespeichert", "generic.saved": "Gespeichert",
"getting_started.developers": "Entwickler", "getting_started.developers": "Entwickler",
"getting_started.directory": "Profilverzeichnis", "getting_started.directory": "Profilverzeichnis",
@ -225,13 +225,13 @@
"intervals.full.days": "{number, plural, one {# Tag} other {# Tage}}", "intervals.full.days": "{number, plural, one {# Tag} other {# Tage}}",
"intervals.full.hours": "{number, plural, one {# Stunde} other {# Stunden}}", "intervals.full.hours": "{number, plural, one {# Stunde} other {# Stunden}}",
"intervals.full.minutes": "{number, plural, one {# Minute} other {# Minuten}}", "intervals.full.minutes": "{number, plural, one {# Minute} other {# Minuten}}",
"keyboard_shortcuts.back": "zurück navigieren", "keyboard_shortcuts.back": "Zurück navigieren",
"keyboard_shortcuts.blocked": "Liste blockierter Profile öffnen", "keyboard_shortcuts.blocked": "Liste blockierter Profile öffnen",
"keyboard_shortcuts.boost": "teilen", "keyboard_shortcuts.boost": "teilen",
"keyboard_shortcuts.column": "einen Beitrag in einer der Spalten fokussieren", "keyboard_shortcuts.column": "einen Beitrag in einer der Spalten fokussieren",
"keyboard_shortcuts.compose": "fokussiere das Eingabefeld", "keyboard_shortcuts.compose": "fokussiere das Eingabefeld",
"keyboard_shortcuts.conversations": "um die Konversationsspalte zu öffnen",
"keyboard_shortcuts.description": "Beschreibung", "keyboard_shortcuts.description": "Beschreibung",
"keyboard_shortcuts.direct": "um Direktnachrichtenspalte zu öffnen",
"keyboard_shortcuts.down": "sich in der Liste hinunter bewegen", "keyboard_shortcuts.down": "sich in der Liste hinunter bewegen",
"keyboard_shortcuts.enter": "Beitrag öffnen", "keyboard_shortcuts.enter": "Beitrag öffnen",
"keyboard_shortcuts.favourite": "um zu favorisieren", "keyboard_shortcuts.favourite": "um zu favorisieren",
@ -279,7 +279,7 @@
"lists.subheading": "Deine Listen", "lists.subheading": "Deine Listen",
"load_pending": "{count, plural, one {# neuer Beitrag} other {# neue Beiträge}}", "load_pending": "{count, plural, one {# neuer Beitrag} other {# neue Beiträge}}",
"loading_indicator.label": "Wird geladen …", "loading_indicator.label": "Wird geladen …",
"media_gallery.toggle_visible": "Sichtbarkeit umschalten", "media_gallery.toggle_visible": "{number, plural, one {Bild verbergen} other {Bilder verbergen}}",
"missing_indicator.label": "Nicht gefunden", "missing_indicator.label": "Nicht gefunden",
"missing_indicator.sublabel": "Die Ressource konnte nicht gefunden werden", "missing_indicator.sublabel": "Die Ressource konnte nicht gefunden werden",
"mute_modal.duration": "Dauer", "mute_modal.duration": "Dauer",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Lesezeichen", "navigation_bar.bookmarks": "Lesezeichen",
"navigation_bar.community_timeline": "Lokale Zeitleiste", "navigation_bar.community_timeline": "Lokale Zeitleiste",
"navigation_bar.compose": "Neuen Beitrag verfassen", "navigation_bar.compose": "Neuen Beitrag verfassen",
"navigation_bar.direct": "Direktnachrichten",
"navigation_bar.discover": "Entdecken", "navigation_bar.discover": "Entdecken",
"navigation_bar.domain_blocks": "Versteckte Domains", "navigation_bar.domain_blocks": "Versteckte Domains",
"navigation_bar.edit_profile": "Profil bearbeiten", "navigation_bar.edit_profile": "Profil bearbeiten",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Umfrage entfernen", "poll_button.remove_poll": "Umfrage entfernen",
"privacy.change": "Sichtbarkeit des Beitrags anpassen", "privacy.change": "Sichtbarkeit des Beitrags anpassen",
"privacy.direct.long": "Wird an erwähnte Profile gesendet", "privacy.direct.long": "Wird an erwähnte Profile gesendet",
"privacy.direct.short": "Nur Leute, die ich erwähne", "privacy.direct.short": "Nur erwähnte Personen",
"privacy.private.long": "Nur für Folgende sichtbar", "privacy.private.long": "Nur für Folgende sichtbar",
"privacy.private.short": "Nur Follower", "privacy.private.short": "Nur Follower",
"privacy.public.long": "Für alle sichtbar", "privacy.public.long": "Für alle sichtbar",
@ -392,23 +393,23 @@
"report.block_explanation": "Du wirst die Beiträge von diesem Konto nicht sehen. Das Konto wird nicht in der Lage sein, deine Beiträge zu sehen oder dir zu folgen. Die Person hinter dem Konto wird wissen, dass du das Konto blockiert hast.", "report.block_explanation": "Du wirst die Beiträge von diesem Konto nicht sehen. Das Konto wird nicht in der Lage sein, deine Beiträge zu sehen oder dir zu folgen. Die Person hinter dem Konto wird wissen, dass du das Konto blockiert hast.",
"report.categories.other": "Andere", "report.categories.other": "Andere",
"report.categories.spam": "Spam", "report.categories.spam": "Spam",
"report.categories.violation": "Inhalt verletzt ein oder mehrere Server-Regeln", "report.categories.violation": "Der Inhalt verletzt eine oder mehrere Server-Regeln",
"report.category.subtitle": "Wähle die beste Zugehörigkeit", "report.category.subtitle": "Wähle die passendste Kategorie",
"report.category.title": "Sag uns, was mit diesem {type} vor sich geht", "report.category.title": "Sag uns, was das Problem mit diesem {type} ist",
"report.category.title_account": "Profil", "report.category.title_account": "Profil",
"report.category.title_status": "Beitrag", "report.category.title_status": "Beitrag",
"report.close": "Fertig", "report.close": "Fertig",
"report.comment.title": "Gibt es etwas anderes, was wir wissen sollten?", "report.comment.title": "Gibt es etwas anderes, was wir wissen sollten?",
"report.forward": "An {target} weiterleiten", "report.forward": "An {target} weiterleiten",
"report.forward_hint": "Dieses Konto ist von einem anderen Server. Soll eine anonymisierte Kopie des Berichts auch dorthin geschickt werden?", "report.forward_hint": "Dieses Konto gehört zu einem anderen Server. Soll eine anonymisierte Kopie der Meldung auch dorthin geschickt werden?",
"report.mute": "Stummschalten", "report.mute": "Stummschalten",
"report.mute_explanation": "Du wirst die Beiträge vom Konto nicht mehr sehen. Das Konto kann dir immernoch folgen und die Person hinter dem Konto wird deine Beiträge sehen können und nicht wissen, dass du sie stumm geschaltet hast.", "report.mute_explanation": "Du wirst die Beiträge vom Konto nicht mehr sehen. Das Konto kann dir immernoch folgen und die Person hinter dem Konto wird deine Beiträge sehen können und nicht wissen, dass du sie stumm geschaltet hast.",
"report.next": "Weiter", "report.next": "Weiter",
"report.placeholder": "Zusätzliche Kommentare", "report.placeholder": "Zusätzliche Kommentare",
"report.reasons.dislike": "Das gefällt mir nicht", "report.reasons.dislike": "Das gefällt mir nicht",
"report.reasons.dislike_description": "Das ist nicht etwas, was ihr nicht sehen wollt", "report.reasons.dislike_description": "Es ist etwas, das du nicht sehen willst",
"report.reasons.other": "Da ist was anderes", "report.reasons.other": "Da ist was anderes",
"report.reasons.other_description": "Das Problem passt nicht in eine der Kategorien", "report.reasons.other_description": "Das Problem passt nicht in die Kategorien",
"report.reasons.spam": "Das ist Spam", "report.reasons.spam": "Das ist Spam",
"report.reasons.spam_description": "Bösartige Links, gefälschtes Engagement oder wiederholte Antworten", "report.reasons.spam_description": "Bösartige Links, gefälschtes Engagement oder wiederholte Antworten",
"report.reasons.violation": "Es verstößt gegen Serverregeln", "report.reasons.violation": "Es verstößt gegen Serverregeln",
@ -419,10 +420,10 @@
"report.statuses.title": "Gibt es Beiträge, die diesen Bericht unterstützen?", "report.statuses.title": "Gibt es Beiträge, die diesen Bericht unterstützen?",
"report.submit": "Absenden", "report.submit": "Absenden",
"report.target": "{target} melden", "report.target": "{target} melden",
"report.thanks.take_action": "Hier sind deine Optionen, die es dir erlauben zu kontrollieren, was du auf Mastodon sehen möchtest:", "report.thanks.take_action": "Das sind deine Möglichkeiten, zu bestimmen, was du auf Mastodon sehen möchtest:",
"report.thanks.take_action_actionable": "Während wir dies überprüfen, kannst du gegen @{name} vorgehen:", "report.thanks.take_action_actionable": "Während wir dies überprüfen, kannst du gegen @{name} vorgehen:",
"report.thanks.title": "Möchtest du das nicht sehen?", "report.thanks.title": "Möchtest du das nicht sehen?",
"report.thanks.title_actionable": "Vielen Dank für die Berichterstattung, wir werden uns damit befassen.", "report.thanks.title_actionable": "Vielen Dank für die Meldung, wir werden uns das ansehen.",
"report.unfollow": "@{name} entfolgen", "report.unfollow": "@{name} entfolgen",
"report.unfollow_explanation": "Du folgst diesem Konto. Um die Beiträge nicht mehr auf deiner Startseite zu sehen, entfolge dem Konto.", "report.unfollow_explanation": "Du folgst diesem Konto. Um die Beiträge nicht mehr auf deiner Startseite zu sehen, entfolge dem Konto.",
"search.placeholder": "Suche", "search.placeholder": "Suche",

View File

@ -70,7 +70,7 @@
"column.blocks": "Αποκλεισμένοι χρήστες", "column.blocks": "Αποκλεισμένοι χρήστες",
"column.bookmarks": "Σελιδοδείκτες", "column.bookmarks": "Σελιδοδείκτες",
"column.community": "Τοπική ροή", "column.community": "Τοπική ροή",
"column.conversations": "Συνομιλίες", "column.direct": "Προσωπικά μηνύματα",
"column.directory": "Δες προφίλ", "column.directory": "Δες προφίλ",
"column.domain_blocks": "Κρυμμένοι τομείς", "column.domain_blocks": "Κρυμμένοι τομείς",
"column.favourites": "Αγαπημένα", "column.favourites": "Αγαπημένα",
@ -166,7 +166,7 @@
"empty_column.blocks": "Δεν έχεις αποκλείσει κανέναν χρήστη ακόμα.", "empty_column.blocks": "Δεν έχεις αποκλείσει κανέναν χρήστη ακόμα.",
"empty_column.bookmarked_statuses": "Δεν έχεις κανένα αποθηκευμένο τουτ ακόμα. Μόλις αποθηκεύσεις κάποιο, θα εμφανιστεί εδώ.", "empty_column.bookmarked_statuses": "Δεν έχεις κανένα αποθηκευμένο τουτ ακόμα. Μόλις αποθηκεύσεις κάποιο, θα εμφανιστεί εδώ.",
"empty_column.community": "Η τοπική ροή είναι κενή. Γράψε κάτι δημόσιο παραμύθι ν' αρχινίσει!", "empty_column.community": "Η τοπική ροή είναι κενή. Γράψε κάτι δημόσιο παραμύθι ν' αρχινίσει!",
"empty_column.conversations": "Μόλις στείλετε ή λάβετε μια δημοσίευση που είναι ορατή μόνο σε άτομα που αναφέρονται σε αυτή, θα εμφανιστεί εδώ.", "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": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Δεν έχεις κανένα αγαπημένο τουτ ακόμα. Μόλις αγαπήσεις κάποιο, θα εμφανιστεί εδώ.", "empty_column.favourited_statuses": "Δεν έχεις κανένα αγαπημένο τουτ ακόμα. Μόλις αγαπήσεις κάποιο, θα εμφανιστεί εδώ.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "προώθηση", "keyboard_shortcuts.boost": "προώθηση",
"keyboard_shortcuts.column": "εμφάνιση της κατάστασης σε μια από τις στήλες", "keyboard_shortcuts.column": "εμφάνιση της κατάστασης σε μια από τις στήλες",
"keyboard_shortcuts.compose": "εστίαση στην περιοχή συγγραφής", "keyboard_shortcuts.compose": "εστίαση στην περιοχή συγγραφής",
"keyboard_shortcuts.conversations": "για να ανοίξετε στήλη συνομιλιών",
"keyboard_shortcuts.description": "Περιγραφή", "keyboard_shortcuts.description": "Περιγραφή",
"keyboard_shortcuts.direct": "άνοιγμα στήλης προσωπικών μηνυμάτων",
"keyboard_shortcuts.down": "κίνηση προς τα κάτω στη λίστα", "keyboard_shortcuts.down": "κίνηση προς τα κάτω στη λίστα",
"keyboard_shortcuts.enter": "εμφάνιση κατάστασης", "keyboard_shortcuts.enter": "εμφάνιση κατάστασης",
"keyboard_shortcuts.favourite": "σημείωση ως αγαπημένο", "keyboard_shortcuts.favourite": "σημείωση ως αγαπημένο",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Σελιδοδείκτες", "navigation_bar.bookmarks": "Σελιδοδείκτες",
"navigation_bar.community_timeline": "Τοπική ροή", "navigation_bar.community_timeline": "Τοπική ροή",
"navigation_bar.compose": "Γράψε νέο τουτ", "navigation_bar.compose": "Γράψε νέο τουτ",
"navigation_bar.direct": "Προσωπικά μηνύματα",
"navigation_bar.discover": "Ανακάλυψη", "navigation_bar.discover": "Ανακάλυψη",
"navigation_bar.domain_blocks": "Κρυμμένοι τομείς", "navigation_bar.domain_blocks": "Κρυμμένοι τομείς",
"navigation_bar.edit_profile": "Επεξεργασία προφίλ", "navigation_bar.edit_profile": "Επεξεργασία προφίλ",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Αφαίρεση δημοσκόπησης", "poll_button.remove_poll": "Αφαίρεση δημοσκόπησης",
"privacy.change": "Προσαρμογή ιδιωτικότητας δημοσίευσης", "privacy.change": "Προσαρμογή ιδιωτικότητας δημοσίευσης",
"privacy.direct.long": "Δημοσίευση μόνο σε όσους και όσες αναφέρονται", "privacy.direct.long": "Δημοσίευση μόνο σε όσους και όσες αναφέρονται",
"privacy.direct.short": "Μόνο άτομα που αναφέρω", "privacy.direct.short": "Αναφερόμενα άτομα μόνο",
"privacy.private.long": "Δημοσίευση μόνο στους ακόλουθους", "privacy.private.long": "Δημοσίευση μόνο στους ακόλουθους",
"privacy.private.short": "Μόνο ακόλουθοι", "privacy.private.short": "Μόνο ακόλουθοι",
"privacy.public.long": "Ορατό σε όλους", "privacy.public.long": "Ορατό σε όλους",

View File

@ -0,0 +1,544 @@
{
"account.account_note_header": "Note",
"account.add_or_remove_from_list": "Add or Remove from lists",
"account.badges.bot": "Bot",
"account.badges.group": "Group",
"account.block": "Block @{name}",
"account.block_domain": "Block domain {domain}",
"account.blocked": "Blocked",
"account.browse_more_on_origin_server": "Browse more on the original profile",
"account.cancel_follow_request": "Cancel follow request",
"account.direct": "Direct message @{name}",
"account.disable_notifications": "Stop notifying me when @{name} posts",
"account.domain_blocked": "Domain blocked",
"account.edit_profile": "Edit profile",
"account.enable_notifications": "Notify me when @{name} posts",
"account.endorse": "Feature on profile",
"account.follow": "Follow",
"account.followers": "Followers",
"account.followers.empty": "No one follows this user yet.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
"account.following": "Following",
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "Follows you",
"account.hide_reblogs": "Hide boosts from @{name}",
"account.joined": "Joined {date}",
"account.link_verified_on": "Ownership of this link was checked on {date}",
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "Media",
"account.mention": "Mention @{name}",
"account.moved_to": "{name} has moved to:",
"account.mute": "Mute @{name}",
"account.mute_notifications": "Mute notifications from @{name}",
"account.muted": "Muted",
"account.posts": "Posts",
"account.posts_with_replies": "Posts and replies",
"account.report": "Report @{name}",
"account.requested": "Awaiting approval. Click to cancel follow request",
"account.share": "Share @{name}'s profile",
"account.show_reblogs": "Show boosts from @{name}",
"account.statuses_counter": "{count, plural, one {{counter} Post} other {{counter} Posts}}",
"account.unblock": "Unblock @{name}",
"account.unblock_domain": "Unblock domain {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Don't feature on profile",
"account.unfollow": "Unfollow",
"account.unmute": "Unmute @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note",
"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.retention.average": "Average",
"admin.dashboard.retention.cohort": "Sign-up month",
"admin.dashboard.retention.cohort_size": "New users",
"alert.rate_limited.message": "Please retry after {retry_time, time, medium}.",
"alert.rate_limited.title": "Rate limited",
"alert.unexpected.message": "An unexpected error occurred.",
"alert.unexpected.title": "Oops!",
"announcement.announcement": "Announcement",
"attachments_list.unprocessed": "(unprocessed)",
"autosuggest_hashtag.per_week": "{count} per week",
"boost_modal.combo": "You can press {combo} to skip this next time",
"bundle_column_error.body": "Something went wrong while loading this component.",
"bundle_column_error.retry": "Try again",
"bundle_column_error.title": "Network error",
"bundle_modal_error.close": "Close",
"bundle_modal_error.message": "Something went wrong while loading this component.",
"bundle_modal_error.retry": "Try again",
"column.blocks": "Blocked users",
"column.bookmarks": "Bookmarks",
"column.community": "Local timeline",
"column.direct": "Direct messages",
"column.directory": "Browse profiles",
"column.domain_blocks": "Blocked domains",
"column.favourites": "Favourites",
"column.follow_requests": "Follow requests",
"column.home": "Home",
"column.lists": "Lists",
"column.mutes": "Muted users",
"column.notifications": "Notifications",
"column.pins": "Pinned post",
"column.public": "Federated timeline",
"column_back_button.label": "Back",
"column_header.hide_settings": "Hide settings",
"column_header.moveLeft_settings": "Move column to the left",
"column_header.moveRight_settings": "Move column to the right",
"column_header.pin": "Pin",
"column_header.show_settings": "Show settings",
"column_header.unpin": "Unpin",
"column_subheading.settings": "Settings",
"community.column_settings.local_only": "Local only",
"community.column_settings.media_only": "Media only",
"community.column_settings.remote_only": "Remote only",
"compose_form.direct_message_warning_learn_more": "Learn more",
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.",
"compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.",
"compose_form.lock_disclaimer": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
"compose_form.lock_disclaimer.lock": "locked",
"compose_form.placeholder": "What is on your mind?",
"compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration",
"compose_form.poll.option_placeholder": "Choice {number}",
"compose_form.poll.remove_option": "Remove this choice",
"compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices",
"compose_form.poll.switch_to_single": "Change poll to allow for a single choice",
"compose_form.publish": "Toot",
"compose_form.publish_loud": "{publish}!",
"compose_form.save_changes": "Save changes",
"compose_form.sensitive.hide": "{count, plural, one {Mark media as sensitive} other {Mark media as sensitive}}",
"compose_form.sensitive.marked": "{count, plural, one {Media is marked as sensitive} other {Media is marked as sensitive}}",
"compose_form.sensitive.unmarked": "{count, plural, one {Media is not marked as sensitive} other {Media is not marked as sensitive}}",
"compose_form.spoiler.marked": "Text is hidden behind warning",
"compose_form.spoiler.unmarked": "Text is not hidden",
"compose_form.spoiler_placeholder": "Write your warning here",
"confirmation_modal.cancel": "Cancel",
"confirmations.block.block_and_report": "Block & Report",
"confirmations.block.confirm": "Block",
"confirmations.block.message": "Are you sure you want to block {name}?",
"confirmations.delete.confirm": "Delete",
"confirmations.delete.message": "Are you sure you want to delete this status?",
"confirmations.delete_list.confirm": "Delete",
"confirmations.delete_list.message": "Are you sure you want to permanently delete this list?",
"confirmations.discard_edit_media.confirm": "Discard",
"confirmations.discard_edit_media.message": "You have unsaved changes to the media description or preview, discard them anyway?",
"confirmations.domain_block.confirm": "Hide entire domain",
"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.logout.confirm": "Log out",
"confirmations.logout.message": "Are you sure you want to log out?",
"confirmations.mute.confirm": "Mute",
"confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
"confirmations.mute.message": "Are you sure you want to mute {name}?",
"confirmations.redraft.confirm": "Delete & redraft",
"confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? Favourites and boosts will be lost, and replies to the original post will be orphaned.",
"confirmations.reply.confirm": "Reply",
"confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"conversation.delete": "Delete conversation",
"conversation.mark_as_read": "Mark as read",
"conversation.open": "View conversation",
"conversation.with": "With {names}",
"directory.federated": "From known fediverse",
"directory.local": "From {domain} only",
"directory.new_arrivals": "New arrivals",
"directory.recently_active": "Recently active",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activity",
"emoji_button.custom": "Custom",
"emoji_button.flags": "Flags",
"emoji_button.food": "Food & Drink",
"emoji_button.label": "Insert emoji",
"emoji_button.nature": "Nature",
"emoji_button.not_found": "No matching emojis found",
"emoji_button.objects": "Objects",
"emoji_button.people": "People",
"emoji_button.recent": "Frequently used",
"emoji_button.search": "Search...",
"emoji_button.search_results": "Search results",
"emoji_button.symbols": "Symbols",
"emoji_button.travel": "Travel & Places",
"empty_column.account_suspended": "Account suspended",
"empty_column.account_timeline": "No posts found",
"empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked posts yet. When you bookmark one, it will show up here.",
"empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!",
"empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "There are no blocked domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite posts yet. When you favourite one, it will show up here.",
"empty_column.favourites": "No one has favourited this post yet. When someone does, they will show up here.",
"empty_column.follow_recommendations": "Looks like no suggestions could be generated for you. You can try using search to look for people you might know or explore trending hashtags.",
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
"empty_column.hashtag": "There is nothing in this hashtag yet.",
"empty_column.home": "Your home timeline is empty! Follow more people to fill it up. {suggestions}",
"empty_column.home.suggestions": "See some suggestions",
"empty_column.list": "There is nothing in this list yet. When members of this list post new statuses, they will appear here.",
"empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
"empty_column.mutes": "You haven't muted any users yet.",
"empty_column.notifications": "You don't have any notifications yet. When other people interact with you, you will see it here.",
"empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other servers to fill it up",
"error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.",
"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.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.",
"errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard",
"errors.unexpected_crash.report_issue": "Report issue",
"explore.search_results": "Search results",
"explore.suggested_follows": "For you",
"explore.title": "Explore",
"explore.trending_links": "News",
"explore.trending_statuses": "Posts",
"explore.trending_tags": "Hashtags",
"follow_recommendations.done": "Done",
"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_request.authorize": "Authorize",
"follow_request.reject": "Reject",
"follow_requests.unlocked_explanation": "Even though your account is not locked, the {domain} staff thought you might want to review follow requests from these accounts manually.",
"generic.saved": "Saved",
"getting_started.developers": "Developers",
"getting_started.directory": "Profile directory",
"getting_started.documentation": "Documentation",
"getting_started.heading": "Getting started",
"getting_started.invite": "Invite people",
"getting_started.open_source_notice": "Mastodon is open source software. You can contribute or report issues on GitHub at {github}.",
"getting_started.security": "Security",
"getting_started.terms": "Terms of service",
"hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}",
"hashtag.column_settings.select.no_options_message": "No suggestions found",
"hashtag.column_settings.select.placeholder": "Enter hashtags…",
"hashtag.column_settings.tag_mode.all": "All of these",
"hashtag.column_settings.tag_mode.any": "Any of these",
"hashtag.column_settings.tag_mode.none": "None of these",
"hashtag.column_settings.tag_toggle": "Include additional tags in this column",
"home.column_settings.basic": "Basic",
"home.column_settings.show_reblogs": "Show boosts",
"home.column_settings.show_replies": "Show replies",
"home.hide_announcements": "Hide announcements",
"home.show_announcements": "Show announcements",
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
"keyboard_shortcuts.back": "to navigate back",
"keyboard_shortcuts.blocked": "to open blocked users list",
"keyboard_shortcuts.boost": "to boost",
"keyboard_shortcuts.column": "to focus a status in one of the columns",
"keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite",
"keyboard_shortcuts.favourites": "to open favourites list",
"keyboard_shortcuts.federated": "to open federated timeline",
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
"keyboard_shortcuts.home": "to open home timeline",
"keyboard_shortcuts.hotkey": "Hotkey",
"keyboard_shortcuts.legend": "to display this legend",
"keyboard_shortcuts.local": "to open local timeline",
"keyboard_shortcuts.mention": "to mention author",
"keyboard_shortcuts.muted": "to open muted users list",
"keyboard_shortcuts.my_profile": "to open your profile",
"keyboard_shortcuts.notifications": "to open notifications column",
"keyboard_shortcuts.open_media": "to open media",
"keyboard_shortcuts.pinned": "to open pinned posts list",
"keyboard_shortcuts.profile": "to open author's profile",
"keyboard_shortcuts.reply": "to reply",
"keyboard_shortcuts.requests": "to open follow requests list",
"keyboard_shortcuts.search": "to focus search",
"keyboard_shortcuts.spoilers": "to show/hide CW field",
"keyboard_shortcuts.start": "to open \"get started\" column",
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
"keyboard_shortcuts.toot": "to start a brand new post",
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
"keyboard_shortcuts.up": "to move up in the list",
"lightbox.close": "Close",
"lightbox.compress": "Compress image view box",
"lightbox.expand": "Expand image view box",
"lightbox.next": "Next",
"lightbox.previous": "Previous",
"lists.account.add": "Add to list",
"lists.account.remove": "Remove from list",
"lists.delete": "Delete list",
"lists.edit": "Edit list",
"lists.edit.submit": "Change title",
"lists.new.create": "Add list",
"lists.new.title_placeholder": "New list title",
"lists.replies_policy.followed": "Any followed user",
"lists.replies_policy.list": "Members of the list",
"lists.replies_policy.none": "No one",
"lists.replies_policy.title": "Show replies to:",
"lists.search": "Search among people you follow",
"lists.subheading": "Your lists",
"load_pending": "{count, plural, one {# new item} other {# new items}}",
"loading_indicator.label": "Loading...",
"media_gallery.toggle_visible": "{number, plural, one {Hide image} other {Hide images}}",
"missing_indicator.label": "Not found",
"missing_indicator.sublabel": "This resource could not be found",
"mute_modal.duration": "Duration",
"mute_modal.hide_notifications": "Hide notifications from this user?",
"mute_modal.indefinite": "Indefinite",
"navigation_bar.apps": "Mobile apps",
"navigation_bar.blocks": "Blocked users",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "Edit profile",
"navigation_bar.explore": "Explore",
"navigation_bar.favourites": "Favourites",
"navigation_bar.filters": "Muted words",
"navigation_bar.follow_requests": "Follow requests",
"navigation_bar.follows_and_followers": "Follows and followers",
"navigation_bar.info": "About this server",
"navigation_bar.keyboard_shortcuts": "Hotkeys",
"navigation_bar.lists": "Lists",
"navigation_bar.logout": "Logout",
"navigation_bar.mutes": "Muted users",
"navigation_bar.personal": "Personal",
"navigation_bar.pins": "Pinned posts",
"navigation_bar.preferences": "Preferences",
"navigation_bar.public_timeline": "Federated timeline",
"navigation_bar.security": "Security",
"notification.admin.sign_up": "{name} signed up",
"notification.favourite": "{name} favourited your status",
"notification.follow": "{name} followed you",
"notification.follow_request": "{name} has requested to follow you",
"notification.mention": "{name} mentioned you",
"notification.own_poll": "Your poll has ended",
"notification.poll": "A poll you have voted in has ended",
"notification.reblog": "{name} boosted your status",
"notification.status": "{name} just posted",
"notification.update": "{name} edited a post",
"notifications.clear": "Clear notifications",
"notifications.clear_confirmation": "Are you sure you want to permanently clear all your notifications?",
"notifications.column_settings.admin.sign_up": "New sign-ups:",
"notifications.column_settings.alert": "Desktop notifications",
"notifications.column_settings.favourite": "Favourites:",
"notifications.column_settings.filter_bar.advanced": "Display all categories",
"notifications.column_settings.filter_bar.category": "Quick filter bar",
"notifications.column_settings.filter_bar.show_bar": "Show filter bar",
"notifications.column_settings.follow": "New followers:",
"notifications.column_settings.follow_request": "New follow requests:",
"notifications.column_settings.mention": "Mentions:",
"notifications.column_settings.poll": "Poll results:",
"notifications.column_settings.push": "Push notifications",
"notifications.column_settings.reblog": "Boosts:",
"notifications.column_settings.show": "Show in column",
"notifications.column_settings.sound": "Play sound",
"notifications.column_settings.status": "New posts:",
"notifications.column_settings.unread_notifications.category": "Unread notifications",
"notifications.column_settings.unread_notifications.highlight": "Highlight unread notifications",
"notifications.column_settings.update": "Edits:",
"notifications.filter.all": "All",
"notifications.filter.boosts": "Boosts",
"notifications.filter.favourites": "Favourites",
"notifications.filter.follows": "Follows",
"notifications.filter.mentions": "Mentions",
"notifications.filter.polls": "Poll results",
"notifications.filter.statuses": "Updates from people you follow",
"notifications.grant_permission": "Grant permission.",
"notifications.group": "{count} notifications",
"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_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_banner.enable": "Enable desktop notifications",
"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": "Never miss a thing",
"picture_in_picture.restore": "Put it back",
"poll.closed": "Closed",
"poll.refresh": "Refresh",
"poll.total_people": "{count, plural, one {# person} other {# people}}",
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
"poll.vote": "Vote",
"poll.voted": "You voted for this answer",
"poll.votes": "{votes, plural, one {# vote} other {# votes}}",
"poll_button.add_poll": "Add a poll",
"poll_button.remove_poll": "Remove poll",
"privacy.change": "Adjust status privacy",
"privacy.direct.long": "Visible for mentioned users only",
"privacy.direct.short": "Direct",
"privacy.private.long": "Visible for followers only",
"privacy.private.short": "Followers-only",
"privacy.public.long": "Visible for all",
"privacy.public.short": "Public",
"privacy.unlisted.long": "Visible for all, but opted-out of discovery features",
"privacy.unlisted.short": "Unlisted",
"refresh": "Refresh",
"regeneration_indicator.label": "Loading…",
"regeneration_indicator.sublabel": "Your home feed is being prepared!",
"relative_time.days": "{number}d",
"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.just_now": "just now",
"relative_time.full.minutes": "{number, plural, one {# minute} other {# minutes}} ago",
"relative_time.full.seconds": "{number, plural, one {# second} other {# seconds}} ago",
"relative_time.hours": "{number}h",
"relative_time.just_now": "now",
"relative_time.minutes": "{number}m",
"relative_time.seconds": "{number}s",
"relative_time.today": "today",
"reply_indicator.cancel": "Cancel",
"report.block": "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.categories.other": "Other",
"report.categories.spam": "Spam",
"report.categories.violation": "Content violates one or more server rules",
"report.category.subtitle": "Choose the best match",
"report.category.title": "Tell us what's going on with this {type}",
"report.category.title_account": "profile",
"report.category.title_status": "post",
"report.close": "Done",
"report.comment.title": "Is there anything else you think we should know?",
"report.forward": "Forward to {target}",
"report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?",
"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.next": "Next",
"report.placeholder": "Type or paste additional comments",
"report.reasons.dislike": "I don't like it",
"report.reasons.dislike_description": "It is not something you want to see",
"report.reasons.other": "It's something else",
"report.reasons.other_description": "The issue does not fit into other categories",
"report.reasons.spam": "It's spam",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies",
"report.reasons.violation": "It violates server rules",
"report.reasons.violation_description": "You are aware that it breaks specific rules",
"report.rules.subtitle": "Select all that apply",
"report.rules.title": "Which rules are being violated?",
"report.statuses.subtitle": "Select all that apply",
"report.statuses.title": "Are there any posts that back up this report?",
"report.submit": "Submit report",
"report.target": "Report {target}",
"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.title": "Don't want to see this?",
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.",
"report.unfollow": "Unfollow @{name}",
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.",
"search.placeholder": "Search",
"search_popout.search_format": "Advanced search format",
"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": "hashtag",
"search_popout.tips.status": "status",
"search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags",
"search_popout.tips.user": "user",
"search_results.accounts": "People",
"search_results.all": "All",
"search_results.hashtags": "Hashtags",
"search_results.nothing_found": "Could not find anything for these search terms",
"search_results.statuses": "Posts",
"search_results.statuses_fts_disabled": "Searching posts by their content is not enabled on this Mastodon server.",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this status in the moderation interface",
"status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Unboost",
"status.cannot_reblog": "This post cannot be boosted",
"status.copy": "Copy link to status",
"status.delete": "Delete",
"status.detailed_status": "Detailed conversation view",
"status.direct": "Direct message @{name}",
"status.edit": "Edit",
"status.edited": "Edited {date}",
"status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}",
"status.embed": "Embed",
"status.favourite": "Favourite",
"status.filtered": "Filtered",
"status.history.created": "{name} created {date}",
"status.history.edited": "{name} edited {date}",
"status.load_more": "Load more",
"status.media_hidden": "Media hidden",
"status.mention": "Mention @{name}",
"status.more": "More",
"status.mute": "Mute @{name}",
"status.mute_conversation": "Mute conversation",
"status.open": "Expand this status",
"status.pin": "Pin on profile",
"status.pinned": "Pinned post",
"status.read_more": "Read more",
"status.reblog": "Boost",
"status.reblog_private": "Boost with original visibility",
"status.reblogged_by": "{name} boosted",
"status.reblogs.empty": "No one has boosted this post yet. When someone does, they will show up here.",
"status.redraft": "Delete & re-draft",
"status.remove_bookmark": "Remove bookmark",
"status.reply": "Reply",
"status.replyAll": "Reply to thread",
"status.report": "Report @{name}",
"status.sensitive_warning": "Sensitive content",
"status.share": "Share",
"status.show_less": "Show less",
"status.show_less_all": "Show less for all",
"status.show_more": "Show more",
"status.show_more_all": "Show more for all",
"status.show_thread": "Show thread",
"status.uncached_media_warning": "Not available",
"status.unmute_conversation": "Unmute conversation",
"status.unpin": "Unpin from profile",
"suggestions.dismiss": "Dismiss suggestion",
"suggestions.header": "You might be interested in…",
"tabs_bar.federated_timeline": "Federated",
"tabs_bar.home": "Home",
"tabs_bar.local_timeline": "Local",
"tabs_bar.notifications": "Notifications",
"tabs_bar.search": "Search",
"time_remaining.days": "{number, plural, one {# day} other {# days}} left",
"time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left",
"time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left",
"time_remaining.moments": "Moments remaining",
"time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left",
"timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.",
"timeline_hint.resources.followers": "Followers",
"timeline_hint.resources.follows": "Follows",
"timeline_hint.resources.statuses": "Older posts",
"trends.counter_by_accounts": "{count, plural, one {{counter} person} other {{counter} people}} talking",
"trends.trending_now": "Trending now",
"ui.beforeunload": "Your draft will be lost if you leave Mastodon.",
"units.short.billion": "{count}B",
"units.short.million": "{count}M",
"units.short.thousand": "{count}K",
"upload_area.title": "Drag & drop to upload",
"upload_button.label": "Add images, a video or an audio file",
"upload_error.limit": "File upload limit exceeded.",
"upload_error.poll": "File upload not allowed with polls.",
"upload_form.audio_description": "Describe for people with hearing loss",
"upload_form.description": "Describe for the visually impaired",
"upload_form.description_missing": "No description added",
"upload_form.edit": "Edit",
"upload_form.thumbnail": "Change thumbnail",
"upload_form.undo": "Delete",
"upload_form.video_description": "Describe for people with hearing loss or visual impairment",
"upload_modal.analyzing_picture": "Analyzing picture…",
"upload_modal.apply": "Apply",
"upload_modal.applying": "Applying…",
"upload_modal.choose_image": "Choose image",
"upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
"upload_modal.detect_text": "Detect text from picture",
"upload_modal.edit_media": "Edit media",
"upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.",
"upload_modal.preparing_ocr": "Preparing OCR…",
"upload_modal.preview_label": "Preview ({ratio})",
"upload_progress.label": "Uploading…",
"video.close": "Close video",
"video.download": "Download file",
"video.exit_fullscreen": "Exit full screen",
"video.expand": "Expand video",
"video.fullscreen": "Full screen",
"video.hide": "Hide video",
"video.mute": "Mute sound",
"video.pause": "Pause",
"video.play": "Play",
"video.unmute": "Unmute sound"
}

View File

@ -70,7 +70,7 @@
"column.blocks": "Blokitaj uzantoj", "column.blocks": "Blokitaj uzantoj",
"column.bookmarks": "Legosignoj", "column.bookmarks": "Legosignoj",
"column.community": "Loka templinio", "column.community": "Loka templinio",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Trarigardi profilojn", "column.directory": "Trarigardi profilojn",
"column.domain_blocks": "Blokitaj domajnoj", "column.domain_blocks": "Blokitaj domajnoj",
"column.favourites": "Stelumoj", "column.favourites": "Stelumoj",
@ -166,7 +166,7 @@
"empty_column.blocks": "Vi ankoraŭ ne blokis uzanton.", "empty_column.blocks": "Vi ankoraŭ ne blokis uzanton.",
"empty_column.bookmarked_statuses": "Vi ankoraŭ ne aldonis mesaĝon al viaj legosignoj. Kiam vi aldonos iun, tiu aperos ĉi tie.", "empty_column.bookmarked_statuses": "Vi ankoraŭ ne aldonis mesaĝon al viaj legosignoj. Kiam vi aldonos iun, tiu aperos ĉi tie.",
"empty_column.community": "La loka templinio estas malplena. Skribu ion por plenigi ĝin!", "empty_column.community": "La loka templinio estas malplena. Skribu ion por plenigi ĝin!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Ankoraŭ neniu domajno estas blokita.", "empty_column.domain_blocks": "Ankoraŭ neniu domajno estas blokita.",
"empty_column.explore_statuses": "Nenio tendencas nun. Rekontrolu poste!", "empty_column.explore_statuses": "Nenio tendencas nun. Rekontrolu poste!",
"empty_column.favourited_statuses": "Vi ankoraŭ ne stelumis mesaĝon. Kiam vi stelumos iun, tiu aperos ĉi tie.", "empty_column.favourited_statuses": "Vi ankoraŭ ne stelumis mesaĝon. Kiam vi stelumos iun, tiu aperos ĉi tie.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "diskonigi", "keyboard_shortcuts.boost": "diskonigi",
"keyboard_shortcuts.column": "fokusi mesaĝon en unu el la kolumnoj", "keyboard_shortcuts.column": "fokusi mesaĝon en unu el la kolumnoj",
"keyboard_shortcuts.compose": "enfokusigi la tekstujon", "keyboard_shortcuts.compose": "enfokusigi la tekstujon",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Priskribo", "keyboard_shortcuts.description": "Priskribo",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "iri suben en la listo", "keyboard_shortcuts.down": "iri suben en la listo",
"keyboard_shortcuts.enter": "malfermi mesaĝon", "keyboard_shortcuts.enter": "malfermi mesaĝon",
"keyboard_shortcuts.favourite": "stelumi", "keyboard_shortcuts.favourite": "stelumi",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Legosignoj", "navigation_bar.bookmarks": "Legosignoj",
"navigation_bar.community_timeline": "Loka templinio", "navigation_bar.community_timeline": "Loka templinio",
"navigation_bar.compose": "Skribi novan mesaĝon", "navigation_bar.compose": "Skribi novan mesaĝon",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Esplori", "navigation_bar.discover": "Esplori",
"navigation_bar.domain_blocks": "Blokitaj domajnoj", "navigation_bar.domain_blocks": "Blokitaj domajnoj",
"navigation_bar.edit_profile": "Redakti profilon", "navigation_bar.edit_profile": "Redakti profilon",

View File

@ -70,7 +70,7 @@
"column.blocks": "Usuarios bloqueados", "column.blocks": "Usuarios bloqueados",
"column.bookmarks": "Marcadores", "column.bookmarks": "Marcadores",
"column.community": "Línea temporal local", "column.community": "Línea temporal local",
"column.conversations": "Conversaciones", "column.direct": "Mensajes directos",
"column.directory": "Explorar perfiles", "column.directory": "Explorar perfiles",
"column.domain_blocks": "Dominios bloqueados", "column.domain_blocks": "Dominios bloqueados",
"column.favourites": "Favoritos", "column.favourites": "Favoritos",
@ -166,7 +166,7 @@
"empty_column.blocks": "Todavía no bloqueaste a ningún usuario.", "empty_column.blocks": "Todavía no bloqueaste a ningún usuario.",
"empty_column.bookmarked_statuses": "Todavía no tenés mensajes guardados en \"Marcadores\". Cuando guardés uno en \"Marcadores\", se mostrará acá.", "empty_column.bookmarked_statuses": "Todavía no tenés mensajes guardados en \"Marcadores\". Cuando guardés uno en \"Marcadores\", se mostrará acá.",
"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.conversations": "Una vez que enviés o recibás un mensaje que sólo sea visible para la gente mencionada en él, aparecerá aquí.", "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": "No hay nada en tendencia ahora mismo. ¡Volvé a revisar más tarde!", "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á.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Adherir al mensaje", "keyboard_shortcuts.boost": "Adherir al mensaje",
"keyboard_shortcuts.column": "Enfocar columna", "keyboard_shortcuts.column": "Enfocar columna",
"keyboard_shortcuts.compose": "Enfocar el área de texto de redacción", "keyboard_shortcuts.compose": "Enfocar el área de texto de redacción",
"keyboard_shortcuts.conversations": "para abrir la columna de conversaciones",
"keyboard_shortcuts.description": "Descripción", "keyboard_shortcuts.description": "Descripción",
"keyboard_shortcuts.direct": "para abrir columna de mensajes directos",
"keyboard_shortcuts.down": "Bajar en la lista", "keyboard_shortcuts.down": "Bajar en la lista",
"keyboard_shortcuts.enter": "Abrir mensaje", "keyboard_shortcuts.enter": "Abrir mensaje",
"keyboard_shortcuts.favourite": "Marcar mensaje como favorito", "keyboard_shortcuts.favourite": "Marcar mensaje como favorito",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Marcadores", "navigation_bar.bookmarks": "Marcadores",
"navigation_bar.community_timeline": "Línea temporal local", "navigation_bar.community_timeline": "Línea temporal local",
"navigation_bar.compose": "Redactar un nuevo mensaje", "navigation_bar.compose": "Redactar un nuevo mensaje",
"navigation_bar.direct": "Mensajes directos",
"navigation_bar.discover": "Descubrir", "navigation_bar.discover": "Descubrir",
"navigation_bar.domain_blocks": "Dominios bloqueados", "navigation_bar.domain_blocks": "Dominios bloqueados",
"navigation_bar.edit_profile": "Editar perfil", "navigation_bar.edit_profile": "Editar perfil",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Quitar encuesta", "poll_button.remove_poll": "Quitar encuesta",
"privacy.change": "Configurar privacidad del mensaje", "privacy.change": "Configurar privacidad del mensaje",
"privacy.direct.long": "Visible sólo para los usuarios mencionados", "privacy.direct.long": "Visible sólo para los usuarios mencionados",
"privacy.direct.short": "Sólo a las cuentas que menciono", "privacy.direct.short": "Sólo cuentas mencionadas",
"privacy.private.long": "Visible sólo para los seguidores", "privacy.private.long": "Visible sólo para los seguidores",
"privacy.private.short": "Sólo para seguidores", "privacy.private.short": "Sólo para seguidores",
"privacy.public.long": "Visible para todos", "privacy.public.long": "Visible para todos",

View File

@ -70,7 +70,7 @@
"column.blocks": "Usuarios bloqueados", "column.blocks": "Usuarios bloqueados",
"column.bookmarks": "Marcadores", "column.bookmarks": "Marcadores",
"column.community": "Línea de tiempo local", "column.community": "Línea de tiempo local",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Buscar perfiles", "column.directory": "Buscar perfiles",
"column.domain_blocks": "Dominios ocultados", "column.domain_blocks": "Dominios ocultados",
"column.favourites": "Favoritos", "column.favourites": "Favoritos",
@ -93,7 +93,7 @@
"community.column_settings.media_only": "Solo media", "community.column_settings.media_only": "Solo media",
"community.column_settings.remote_only": "Solo remoto", "community.column_settings.remote_only": "Solo remoto",
"compose_form.direct_message_warning_learn_more": "Aprender mas", "compose_form.direct_message_warning_learn_more": "Aprender mas",
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.", "compose_form.encryption_warning": "Los mensajes en Mastodon no están cifrados de extremo a extremo. No comparta ninguna información confidencial en Mastodon.",
"compose_form.hashtag_warning": "Este toot no se mostrará bajo hashtags porque no es público. Sólo los toots públicos se pueden buscar por hashtag.", "compose_form.hashtag_warning": "Este toot no se mostrará bajo hashtags porque no es público. Sólo los toots públicos se pueden buscar por hashtag.",
"compose_form.lock_disclaimer": "Tu cuenta no está bloqueada. Todos pueden seguirte para ver tus toots solo para seguidores.", "compose_form.lock_disclaimer": "Tu cuenta no está bloqueada. Todos pueden seguirte para ver tus toots solo para seguidores.",
"compose_form.lock_disclaimer.lock": "bloqueado", "compose_form.lock_disclaimer.lock": "bloqueado",
@ -166,7 +166,7 @@
"empty_column.blocks": "Aún no has bloqueado a ningún usuario.", "empty_column.blocks": "Aún no has bloqueado a ningún usuario.",
"empty_column.bookmarked_statuses": "Aún no tienes ningún toot guardado como marcador. Cuando guardes uno, se mostrará aquí.", "empty_column.bookmarked_statuses": "Aún no tienes ningún toot guardado como marcador. Cuando guardes uno, se mostrará aquí.",
"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.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Todavía no hay dominios ocultos.", "empty_column.domain_blocks": "Todavía no hay dominios ocultos.",
"empty_column.explore_statuses": "Nada es tendencia en este momento. ¡Revisa más tarde!", "empty_column.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í.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "retootear", "keyboard_shortcuts.boost": "retootear",
"keyboard_shortcuts.column": "enfocar un estado en una de las columnas", "keyboard_shortcuts.column": "enfocar un estado en una de las columnas",
"keyboard_shortcuts.compose": "enfocar el área de texto de redacción", "keyboard_shortcuts.compose": "enfocar el área de texto de redacción",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Descripción", "keyboard_shortcuts.description": "Descripción",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "mover hacia abajo en la lista", "keyboard_shortcuts.down": "mover hacia abajo en la lista",
"keyboard_shortcuts.enter": "abrir estado", "keyboard_shortcuts.enter": "abrir estado",
"keyboard_shortcuts.favourite": "añadir a favoritos", "keyboard_shortcuts.favourite": "añadir a favoritos",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Marcadores", "navigation_bar.bookmarks": "Marcadores",
"navigation_bar.community_timeline": "Historia local", "navigation_bar.community_timeline": "Historia local",
"navigation_bar.compose": "Escribir un nuevo toot", "navigation_bar.compose": "Escribir un nuevo toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Descubrir", "navigation_bar.discover": "Descubrir",
"navigation_bar.domain_blocks": "Dominios ocultos", "navigation_bar.domain_blocks": "Dominios ocultos",
"navigation_bar.edit_profile": "Editar perfil", "navigation_bar.edit_profile": "Editar perfil",
@ -368,10 +369,10 @@
"privacy.direct.long": "Sólo mostrar a los usuarios mencionados", "privacy.direct.long": "Sólo mostrar a los usuarios mencionados",
"privacy.direct.short": "Direct", "privacy.direct.short": "Direct",
"privacy.private.long": "Sólo mostrar a seguidores", "privacy.private.long": "Sólo mostrar a seguidores",
"privacy.private.short": "Followers-only", "privacy.private.short": "Solo seguidores",
"privacy.public.long": "Visible for all", "privacy.public.long": "Visible para todos",
"privacy.public.short": "Público", "privacy.public.short": "Público",
"privacy.unlisted.long": "Visible for all, but opted-out of discovery features", "privacy.unlisted.long": "Visible para todos, pero excluido de las funciones de descubrimiento",
"privacy.unlisted.short": "No listado", "privacy.unlisted.short": "No listado",
"refresh": "Actualizar", "refresh": "Actualizar",
"regeneration_indicator.label": "Cargando…", "regeneration_indicator.label": "Cargando…",

View File

@ -70,7 +70,7 @@
"column.blocks": "Usuarios bloqueados", "column.blocks": "Usuarios bloqueados",
"column.bookmarks": "Marcadores", "column.bookmarks": "Marcadores",
"column.community": "Línea de tiempo local", "column.community": "Línea de tiempo local",
"column.conversations": "Conversaciones", "column.direct": "Mensajes directos",
"column.directory": "Buscar perfiles", "column.directory": "Buscar perfiles",
"column.domain_blocks": "Dominios ocultados", "column.domain_blocks": "Dominios ocultados",
"column.favourites": "Favoritos", "column.favourites": "Favoritos",
@ -166,7 +166,7 @@
"empty_column.blocks": "Aún no has bloqueado a ningún usuario.", "empty_column.blocks": "Aún no has bloqueado a ningún usuario.",
"empty_column.bookmarked_statuses": "Aún no tienes ninguna publicación guardada como marcador. Cuando guardes una, se mostrará aquí.", "empty_column.bookmarked_statuses": "Aún no tienes ninguna publicación guardada como marcador. Cuando guardes una, se mostrará aquí.",
"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.conversations": "Una vez que envíe o reciba un mensaje que solo sea visible para la gente mencionada en él, aparecerá 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": "Nada está en tendencia en este momento. ¡Revisa más tarde!", "empty_column.explore_statuses": "Nada está en tendencia en este momento. ¡Revisa más tarde!",
"empty_column.favourited_statuses": "Aún no tienes publicaciones favoritas. Cuando marques una como favorita, aparecerá aquí.", "empty_column.favourited_statuses": "Aún no tienes publicaciones favoritas. Cuando marques una como favorita, aparecerá aquí.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Retootear", "keyboard_shortcuts.boost": "Retootear",
"keyboard_shortcuts.column": "enfocar un estado en una de las columnas", "keyboard_shortcuts.column": "enfocar un estado en una de las columnas",
"keyboard_shortcuts.compose": "enfocar el área de texto de redacción", "keyboard_shortcuts.compose": "enfocar el área de texto de redacción",
"keyboard_shortcuts.conversations": "para abrir la columna de conversaciones",
"keyboard_shortcuts.description": "Descripción", "keyboard_shortcuts.description": "Descripción",
"keyboard_shortcuts.direct": "para abrir la columna de mensajes directos",
"keyboard_shortcuts.down": "mover hacia abajo en la lista", "keyboard_shortcuts.down": "mover hacia abajo en la lista",
"keyboard_shortcuts.enter": "abrir estado", "keyboard_shortcuts.enter": "abrir estado",
"keyboard_shortcuts.favourite": "añadir a favoritos", "keyboard_shortcuts.favourite": "añadir a favoritos",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Marcadores", "navigation_bar.bookmarks": "Marcadores",
"navigation_bar.community_timeline": "Línea de tiempo local", "navigation_bar.community_timeline": "Línea de tiempo local",
"navigation_bar.compose": "Escribir nueva publicación", "navigation_bar.compose": "Escribir nueva publicación",
"navigation_bar.direct": "Mensajes directos",
"navigation_bar.discover": "Descubrir", "navigation_bar.discover": "Descubrir",
"navigation_bar.domain_blocks": "Dominios ocultos", "navigation_bar.domain_blocks": "Dominios ocultos",
"navigation_bar.edit_profile": "Editar perfil", "navigation_bar.edit_profile": "Editar perfil",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Eliminar encuesta", "poll_button.remove_poll": "Eliminar encuesta",
"privacy.change": "Ajustar privacidad", "privacy.change": "Ajustar privacidad",
"privacy.direct.long": "Sólo mostrar a los usuarios mencionados", "privacy.direct.long": "Sólo mostrar a los usuarios mencionados",
"privacy.direct.short": "Solo la gente que yo menciono", "privacy.direct.short": "Sólo cuentas mencionadas",
"privacy.private.long": "Sólo mostrar a seguidores", "privacy.private.long": "Sólo mostrar a seguidores",
"privacy.private.short": "Solo seguidores", "privacy.private.short": "Solo seguidores",
"privacy.public.long": "Visible para todos", "privacy.public.long": "Visible para todos",

View File

@ -70,7 +70,7 @@
"column.blocks": "Blokeeritud kasutajad", "column.blocks": "Blokeeritud kasutajad",
"column.bookmarks": "Järjehoidjad", "column.bookmarks": "Järjehoidjad",
"column.community": "Kohalik ajajoon", "column.community": "Kohalik ajajoon",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Sirvi profiile", "column.directory": "Sirvi profiile",
"column.domain_blocks": "Peidetud domeenid", "column.domain_blocks": "Peidetud domeenid",
"column.favourites": "Lemmikud", "column.favourites": "Lemmikud",
@ -166,7 +166,7 @@
"empty_column.blocks": "Sa ei ole veel ühtegi kasutajat blokeerinud.", "empty_column.blocks": "Sa ei ole veel ühtegi kasutajat blokeerinud.",
"empty_column.bookmarked_statuses": "Teil pole veel järjehoidjatesse lisatud tuututusi. Kui lisate mõne, näete neid siin.", "empty_column.bookmarked_statuses": "Teil pole veel järjehoidjatesse lisatud tuututusi. Kui lisate mõne, näete neid siin.",
"empty_column.community": "Kohalik ajajoon on tühi. Kirjutage midagi avalikult, et pall veerema ajada!", "empty_column.community": "Kohalik ajajoon on tühi. Kirjutage midagi avalikult, et pall veerema ajada!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Siin ei ole veel peidetud domeene.", "empty_column.domain_blocks": "Siin ei ole veel peidetud domeene.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Teil pole veel lemmikuid tuute. Kui märgite mõne, näete neid siin.", "empty_column.favourited_statuses": "Teil pole veel lemmikuid tuute. Kui märgite mõne, näete neid siin.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "upitamiseks", "keyboard_shortcuts.boost": "upitamiseks",
"keyboard_shortcuts.column": "fokuseerimaks staatust ühele tulpadest", "keyboard_shortcuts.column": "fokuseerimaks staatust ühele tulpadest",
"keyboard_shortcuts.compose": "fokuseerimaks tekstikoostamise alale", "keyboard_shortcuts.compose": "fokuseerimaks tekstikoostamise alale",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Kirjeldus", "keyboard_shortcuts.description": "Kirjeldus",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "liikumaks nimstus alla", "keyboard_shortcuts.down": "liikumaks nimstus alla",
"keyboard_shortcuts.enter": "staatuse avamiseks", "keyboard_shortcuts.enter": "staatuse avamiseks",
"keyboard_shortcuts.favourite": "lemmikuks märkimiseks", "keyboard_shortcuts.favourite": "lemmikuks märkimiseks",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Järjehoidjad", "navigation_bar.bookmarks": "Järjehoidjad",
"navigation_bar.community_timeline": "Kohalik ajajoon", "navigation_bar.community_timeline": "Kohalik ajajoon",
"navigation_bar.compose": "Koosta uus tuut", "navigation_bar.compose": "Koosta uus tuut",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Avasta", "navigation_bar.discover": "Avasta",
"navigation_bar.domain_blocks": "Peidetud domeenid", "navigation_bar.domain_blocks": "Peidetud domeenid",
"navigation_bar.edit_profile": "Muuda profiili", "navigation_bar.edit_profile": "Muuda profiili",

View File

@ -70,7 +70,7 @@
"column.blocks": "Blokeatutako erabiltzaileak", "column.blocks": "Blokeatutako erabiltzaileak",
"column.bookmarks": "Laster-markak", "column.bookmarks": "Laster-markak",
"column.community": "Denbora-lerro lokala", "column.community": "Denbora-lerro lokala",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Arakatu profilak", "column.directory": "Arakatu profilak",
"column.domain_blocks": "Ezkutatutako domeinuak", "column.domain_blocks": "Ezkutatutako domeinuak",
"column.favourites": "Gogokoak", "column.favourites": "Gogokoak",
@ -166,7 +166,7 @@
"empty_column.blocks": "Ez duzu erabiltzailerik blokeatu oraindik.", "empty_column.blocks": "Ez duzu erabiltzailerik blokeatu oraindik.",
"empty_column.bookmarked_statuses": "Oraindik ez dituzu bidalketa laster-markatutarik. Bat laster-markatzerakoan, hemen agertuko da.", "empty_column.bookmarked_statuses": "Oraindik ez dituzu bidalketa laster-markatutarik. Bat laster-markatzerakoan, hemen agertuko da.",
"empty_column.community": "Denbora-lerro lokala hutsik dago. Idatzi zerbait publikoki pilota biraka jartzeko!", "empty_column.community": "Denbora-lerro lokala hutsik dago. Idatzi zerbait publikoki pilota biraka jartzeko!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Ez dago ezkutatutako domeinurik oraindik.", "empty_column.domain_blocks": "Ez dago ezkutatutako domeinurik oraindik.",
"empty_column.explore_statuses": "Ez dago joerarik une honetan. Begiratu beranduago!", "empty_column.explore_statuses": "Ez dago joerarik une honetan. Begiratu beranduago!",
"empty_column.favourited_statuses": "Ez duzu gogokorik oraindik. Gogokoren bat duzunean hemen agertuko da.", "empty_column.favourited_statuses": "Ez duzu gogokorik oraindik. Gogokoren bat duzunean hemen agertuko da.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Bultzatu bidalketa", "keyboard_shortcuts.boost": "Bultzatu bidalketa",
"keyboard_shortcuts.column": "mezu bat zutabe batean fokatzea", "keyboard_shortcuts.column": "mezu bat zutabe batean fokatzea",
"keyboard_shortcuts.compose": "testua konposatzeko arean fokatzea", "keyboard_shortcuts.compose": "testua konposatzeko arean fokatzea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Deskripzioa", "keyboard_shortcuts.description": "Deskripzioa",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "zerrendan behera mugitzea", "keyboard_shortcuts.down": "zerrendan behera mugitzea",
"keyboard_shortcuts.enter": "Ireki bidalketa", "keyboard_shortcuts.enter": "Ireki bidalketa",
"keyboard_shortcuts.favourite": "Egin gogoko bidalketa", "keyboard_shortcuts.favourite": "Egin gogoko bidalketa",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Laster-markak", "navigation_bar.bookmarks": "Laster-markak",
"navigation_bar.community_timeline": "Denbora-lerro lokala", "navigation_bar.community_timeline": "Denbora-lerro lokala",
"navigation_bar.compose": "Idatzi bidalketa berria", "navigation_bar.compose": "Idatzi bidalketa berria",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Aurkitu", "navigation_bar.discover": "Aurkitu",
"navigation_bar.domain_blocks": "Ezkutatutako domeinuak", "navigation_bar.domain_blocks": "Ezkutatutako domeinuak",
"navigation_bar.edit_profile": "Aldatu profila", "navigation_bar.edit_profile": "Aldatu profila",

View File

@ -70,7 +70,7 @@
"column.blocks": "کاربران مسدود شده", "column.blocks": "کاربران مسدود شده",
"column.bookmarks": "نشانک‌ها", "column.bookmarks": "نشانک‌ها",
"column.community": "خط زمانی محلّی", "column.community": "خط زمانی محلّی",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "مرور نمایه‌ها", "column.directory": "مرور نمایه‌ها",
"column.domain_blocks": "دامنه‌های مسدود شده", "column.domain_blocks": "دامنه‌های مسدود شده",
"column.favourites": "پسندیده‌ها", "column.favourites": "پسندیده‌ها",
@ -166,7 +166,7 @@
"empty_column.blocks": "هنوز کسی را مسدود نکرده‌اید.", "empty_column.blocks": "هنوز کسی را مسدود نکرده‌اید.",
"empty_column.bookmarked_statuses": "هنوز هیچ فرستهٔ نشانه‌گذاری شده‌ای ندارید. هنگامی که فرسته‌ای را نشانه‌گذاری کنید، این‌جا نشان داده خواهد شد.", "empty_column.bookmarked_statuses": "هنوز هیچ فرستهٔ نشانه‌گذاری شده‌ای ندارید. هنگامی که فرسته‌ای را نشانه‌گذاری کنید، این‌جا نشان داده خواهد شد.",
"empty_column.community": "خط زمانی محلّی خالی است. چیزی بنویسید تا چرخش بچرخد!", "empty_column.community": "خط زمانی محلّی خالی است. چیزی بنویسید تا چرخش بچرخد!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "هنوز هیچ دامنه‌ای مسدود نشده است.", "empty_column.domain_blocks": "هنوز هیچ دامنه‌ای مسدود نشده است.",
"empty_column.explore_statuses": "الآن چیزی پرطرفدار نیست. بعداً دوباره بررسی کنید!", "empty_column.explore_statuses": "الآن چیزی پرطرفدار نیست. بعداً دوباره بررسی کنید!",
"empty_column.favourited_statuses": "شما هنوز هیچ فرسته‌ای را نپسندیده‌اید. هنگامی که فرسته‌ای را بپسندید، این‌جا نشان داده خواهد شد.", "empty_column.favourited_statuses": "شما هنوز هیچ فرسته‌ای را نپسندیده‌اید. هنگامی که فرسته‌ای را بپسندید، این‌جا نشان داده خواهد شد.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "تقویت فرسته", "keyboard_shortcuts.boost": "تقویت فرسته",
"keyboard_shortcuts.column": "برای تمرکز روی یک فرسته در یکی از ستون‌ها", "keyboard_shortcuts.column": "برای تمرکز روی یک فرسته در یکی از ستون‌ها",
"keyboard_shortcuts.compose": "تمرکز روی محیط نوشتن", "keyboard_shortcuts.compose": "تمرکز روی محیط نوشتن",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "توضیح", "keyboard_shortcuts.description": "توضیح",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "پایین بردن در سیاهه", "keyboard_shortcuts.down": "پایین بردن در سیاهه",
"keyboard_shortcuts.enter": "گشودن فرسته", "keyboard_shortcuts.enter": "گشودن فرسته",
"keyboard_shortcuts.favourite": "پسندیدن فرسته", "keyboard_shortcuts.favourite": "پسندیدن فرسته",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "نشانک‌ها", "navigation_bar.bookmarks": "نشانک‌ها",
"navigation_bar.community_timeline": "خط زمانی محلّی", "navigation_bar.community_timeline": "خط زمانی محلّی",
"navigation_bar.compose": "نوشتن فرستهٔ تازه", "navigation_bar.compose": "نوشتن فرستهٔ تازه",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "گشت و گذار", "navigation_bar.discover": "گشت و گذار",
"navigation_bar.domain_blocks": "دامنه‌های مسدود شده", "navigation_bar.domain_blocks": "دامنه‌های مسدود شده",
"navigation_bar.edit_profile": "ویرایش نمایه", "navigation_bar.edit_profile": "ویرایش نمایه",

View File

@ -70,7 +70,7 @@
"column.blocks": "Estetyt käyttäjät", "column.blocks": "Estetyt käyttäjät",
"column.bookmarks": "Kirjanmerkit", "column.bookmarks": "Kirjanmerkit",
"column.community": "Paikallinen aikajana", "column.community": "Paikallinen aikajana",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Selaa profiileja", "column.directory": "Selaa profiileja",
"column.domain_blocks": "Piilotetut verkkotunnukset", "column.domain_blocks": "Piilotetut verkkotunnukset",
"column.favourites": "Suosikit", "column.favourites": "Suosikit",
@ -166,7 +166,7 @@
"empty_column.blocks": "Et ole vielä estänyt yhtään käyttäjää.", "empty_column.blocks": "Et ole vielä estänyt yhtään käyttäjää.",
"empty_column.bookmarked_statuses": "Et ole vielä lisännyt viestejä kirjanmerkkeihisi. Kun lisäät yhden, se näkyy tässä.", "empty_column.bookmarked_statuses": "Et ole vielä lisännyt viestejä kirjanmerkkeihisi. Kun lisäät yhden, se näkyy tässä.",
"empty_column.community": "Paikallinen aikajana on tyhjä. Kirjoita jotain julkista, niin homma lähtee käyntiin!", "empty_column.community": "Paikallinen aikajana on tyhjä. Kirjoita jotain julkista, niin homma lähtee käyntiin!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Yhtään verkko-osoitetta ei ole vielä estetty.", "empty_column.domain_blocks": "Yhtään verkko-osoitetta ei ole vielä estetty.",
"empty_column.explore_statuses": "Mikään ei ole nyt trendi. Tarkista myöhemmin!", "empty_column.explore_statuses": "Mikään ei ole nyt trendi. Tarkista myöhemmin!",
"empty_column.favourited_statuses": "Et ole vielä lisännyt viestejä kirjanmerkkeihisi. Kun lisäät yhden, se näkyy tässä.", "empty_column.favourited_statuses": "Et ole vielä lisännyt viestejä kirjanmerkkeihisi. Kun lisäät yhden, se näkyy tässä.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Buustaa viestiä", "keyboard_shortcuts.boost": "Buustaa viestiä",
"keyboard_shortcuts.column": "Kohdista sarakkeeseen", "keyboard_shortcuts.column": "Kohdista sarakkeeseen",
"keyboard_shortcuts.compose": "siirry tekstinsyöttöön", "keyboard_shortcuts.compose": "siirry tekstinsyöttöön",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Kuvaus", "keyboard_shortcuts.description": "Kuvaus",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "Siirry listassa alaspäin", "keyboard_shortcuts.down": "Siirry listassa alaspäin",
"keyboard_shortcuts.enter": "Avaa julkaisu", "keyboard_shortcuts.enter": "Avaa julkaisu",
"keyboard_shortcuts.favourite": "Lisää suosikkeihin", "keyboard_shortcuts.favourite": "Lisää suosikkeihin",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Kirjanmerkit", "navigation_bar.bookmarks": "Kirjanmerkit",
"navigation_bar.community_timeline": "Paikallinen aikajana", "navigation_bar.community_timeline": "Paikallinen aikajana",
"navigation_bar.compose": "Luo uusi viesti", "navigation_bar.compose": "Luo uusi viesti",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Löydä uutta", "navigation_bar.discover": "Löydä uutta",
"navigation_bar.domain_blocks": "Estetyt verkkotunnukset", "navigation_bar.domain_blocks": "Estetyt verkkotunnukset",
"navigation_bar.edit_profile": "Muokkaa profiilia", "navigation_bar.edit_profile": "Muokkaa profiilia",

View File

@ -1,25 +1,25 @@
{ {
"account.account_note_header": "Note", "account.account_note_header": "Note",
"account.add_or_remove_from_list": "Ajouter ou retirer des listes", "account.add_or_remove_from_list": "Ajouter ou retirer des listes",
"account.badges.bot": "Robot", "account.badges.bot": "Bot",
"account.badges.group": "Groupe", "account.badges.group": "Groupe",
"account.block": "Bloquer @{name}", "account.block": "Bloquer @{name}",
"account.block_domain": "Bloquer le domaine {domain}", "account.block_domain": "Bloquer le domaine {domain}",
"account.blocked": "Bloqué", "account.blocked": "Bloqué·e",
"account.browse_more_on_origin_server": "Parcourir davantage sur le profil original", "account.browse_more_on_origin_server": "Parcourir davantage sur le profil original",
"account.cancel_follow_request": "Annuler la demande de suivi", "account.cancel_follow_request": "Annuler la demande de suivi",
"account.direct": "Envoyer un message direct à @{name}", "account.direct": "Envoyer un message direct à @{name}",
"account.disable_notifications": "Arrêter de me notifier quand @{name} publie", "account.disable_notifications": "Ne plus me notifier quand @{name} publie quelque chose",
"account.domain_blocked": "Domaine bloqué", "account.domain_blocked": "Domaine bloqué",
"account.edit_profile": "Modifier le profil", "account.edit_profile": "Modifier le profil",
"account.enable_notifications": "Me notifier quand @{name} publie", "account.enable_notifications": "Me notifier quand @{name} publie quelque chose",
"account.endorse": "Recommander sur votre profil", "account.endorse": "Recommander sur votre profil",
"account.follow": "Suivre", "account.follow": "Suivre",
"account.followers": "Abonnés", "account.followers": "Abonné·e·s",
"account.followers.empty": "Personne ne suit cet·te utilisateur·rice pour linstant.", "account.followers.empty": "Personne ne suit cet·te utilisateur·rice pour linstant.",
"account.followers_counter": "{count, plural, one {{counter} Abonné·e} other {{counter} Abonné·e·s}}", "account.followers_counter": "{count, plural, one {{counter} Abonné·e} other {{counter} Abonné·e·s}}",
"account.following": "Abonnements", "account.following": "Abonnements",
"account.following_counter": "{count, plural, other {{counter} Abonnements}}", "account.following_counter": "{count, plural, one {{counter} Abonnement} other {{counter} Abonnements}}",
"account.follows.empty": "Cet·te utilisateur·rice ne suit personne pour linstant.", "account.follows.empty": "Cet·te utilisateur·rice ne suit personne pour linstant.",
"account.follows_you": "Vous suit", "account.follows_you": "Vous suit",
"account.hide_reblogs": "Masquer les partages de @{name}", "account.hide_reblogs": "Masquer les partages de @{name}",
@ -30,12 +30,12 @@
"account.mention": "Mentionner @{name}", "account.mention": "Mentionner @{name}",
"account.moved_to": "{name} a déménagé vers:", "account.moved_to": "{name} a déménagé vers:",
"account.mute": "Masquer @{name}", "account.mute": "Masquer @{name}",
"account.mute_notifications": "Ignorer les notifications de @{name}", "account.mute_notifications": "Masquer les notifications de @{name}",
"account.muted": "Masqué·e", "account.muted": "Masqué·e",
"account.posts": "Messages", "account.posts": "Messages",
"account.posts_with_replies": "Messages et réponses", "account.posts_with_replies": "Messages et réponses",
"account.report": "Signaler @{name}", "account.report": "Signaler @{name}",
"account.requested": "En attente dapprobation. Cliquez pour annuler la requête", "account.requested": "En attente dapprobation. Cliquez pour annuler la demande",
"account.share": "Partager le profil de @{name}", "account.share": "Partager le profil de @{name}",
"account.show_reblogs": "Afficher les partages de @{name}", "account.show_reblogs": "Afficher les partages de @{name}",
"account.statuses_counter": "{count, plural, one {{counter} Message} other {{counter} Messages}}", "account.statuses_counter": "{count, plural, one {{counter} Message} other {{counter} Messages}}",
@ -48,8 +48,8 @@
"account.unmute_notifications": "Ne plus masquer les notifications de @{name}", "account.unmute_notifications": "Ne plus masquer les notifications de @{name}",
"account.unmute_short": "Ne plus masquer", "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 rétention des utilisateur·rice·s par jour après inscription",
"admin.dashboard.monthly_retention": "Brugerfastholdelsesrate efter måned efter tilmelding", "admin.dashboard.monthly_retention": "Taux de rétention des utilisateur·rice·s par mois après inscription",
"admin.dashboard.retention.average": "Moyenne", "admin.dashboard.retention.average": "Moyenne",
"admin.dashboard.retention.cohort": "Mois d'inscription", "admin.dashboard.retention.cohort": "Mois d'inscription",
"admin.dashboard.retention.cohort_size": "Nouveaux utilisateurs", "admin.dashboard.retention.cohort_size": "Nouveaux utilisateurs",
@ -70,7 +70,7 @@
"column.blocks": "Comptes bloqués", "column.blocks": "Comptes bloqués",
"column.bookmarks": "Marque-pages", "column.bookmarks": "Marque-pages",
"column.community": "Fil public local", "column.community": "Fil public local",
"column.conversations": "Conversations", "column.direct": "Messages directs",
"column.directory": "Parcourir les profils", "column.directory": "Parcourir les profils",
"column.domain_blocks": "Domaines bloqués", "column.domain_blocks": "Domaines bloqués",
"column.favourites": "Favoris", "column.favourites": "Favoris",
@ -146,10 +146,10 @@
"directory.recently_active": "Actif·ve·s récemment", "directory.recently_active": "Actif·ve·s récemment",
"embed.instructions": "Intégrez ce message à votre site en copiant le code ci-dessous.", "embed.instructions": "Intégrez ce message à votre site en copiant le code ci-dessous.",
"embed.preview": "Il apparaîtra comme cela:", "embed.preview": "Il apparaîtra comme cela:",
"emoji_button.activity": "Activité", "emoji_button.activity": "Activités",
"emoji_button.custom": "Personnalisés", "emoji_button.custom": "Personnalisés",
"emoji_button.flags": "Drapeaux", "emoji_button.flags": "Drapeaux",
"emoji_button.food": "Nourriture & Boisson", "emoji_button.food": "Nourriture et boisson",
"emoji_button.label": "Insérer un émoji", "emoji_button.label": "Insérer un émoji",
"emoji_button.nature": "Nature", "emoji_button.nature": "Nature",
"emoji_button.not_found": "Aucun émoji correspondant n'a été trouvé", "emoji_button.not_found": "Aucun émoji correspondant n'a été trouvé",
@ -159,14 +159,14 @@
"emoji_button.search": "Recherche...", "emoji_button.search": "Recherche...",
"emoji_button.search_results": "Résultats de la recherche", "emoji_button.search_results": "Résultats de la recherche",
"emoji_button.symbols": "Symboles", "emoji_button.symbols": "Symboles",
"emoji_button.travel": "Lieux & Voyages", "emoji_button.travel": "Voyage et lieux",
"empty_column.account_suspended": "Compte suspendu", "empty_column.account_suspended": "Compte suspendu",
"empty_column.account_timeline": "Aucun message ici !", "empty_column.account_timeline": "Aucun message ici !",
"empty_column.account_unavailable": "Profil non disponible", "empty_column.account_unavailable": "Profil non disponible",
"empty_column.blocks": "Vous navez bloqué aucun compte pour le moment.", "empty_column.blocks": "Vous navez bloqué aucun compte pour le moment.",
"empty_column.bookmarked_statuses": "Vous n'avez pas de message en marque-page. Lorsque vous en ajouterez un, il apparaîtra ici.", "empty_column.bookmarked_statuses": "Vous n'avez pas de message en marque-page. Lorsque vous en ajouterez un, il apparaîtra ici.",
"empty_column.community": "Le fil public local est vide. Écrivez donc quelque chose pour le remplir!", "empty_column.community": "Le fil public local est vide. Écrivez donc quelque chose pour le remplir!",
"empty_column.conversations": "Une fois que vous avez envoyé ou reçu un message qui ne sera visible que par les personnes mentionnées, il apparaîtra ici.", "empty_column.direct": "Vous navez pas encore de messages directs. Lorsque vous en enverrez ou recevrez un, il saffichera ici.",
"empty_column.domain_blocks": "Il ny a aucun domaine bloqué pour le moment.", "empty_column.domain_blocks": "Il ny a aucun domaine bloqué pour le moment.",
"empty_column.explore_statuses": "Rien n'est en tendance pour le moment. Revenez plus tard !", "empty_column.explore_statuses": "Rien n'est en tendance pour le moment. Revenez plus tard !",
"empty_column.favourited_statuses": "Vous navez pas encore de message en favori. Lorsque vous en ajouterez un, il apparaîtra ici.", "empty_column.favourited_statuses": "Vous navez pas encore de message en favori. Lorsque vous en ajouterez un, il apparaîtra ici.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Partager le message", "keyboard_shortcuts.boost": "Partager le message",
"keyboard_shortcuts.column": "Se placer dans une colonne", "keyboard_shortcuts.column": "Se placer dans une colonne",
"keyboard_shortcuts.compose": "Se placer dans la zone de rédaction", "keyboard_shortcuts.compose": "Se placer dans la zone de rédaction",
"keyboard_shortcuts.conversations": "pour ouvrir la colonne des conversations",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "ouvrir la colonne des messages directs",
"keyboard_shortcuts.down": "Descendre dans la liste", "keyboard_shortcuts.down": "Descendre dans la liste",
"keyboard_shortcuts.enter": "Ouvrir le message", "keyboard_shortcuts.enter": "Ouvrir le message",
"keyboard_shortcuts.favourite": "Ajouter le message aux favoris", "keyboard_shortcuts.favourite": "Ajouter le message aux favoris",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Marque-pages", "navigation_bar.bookmarks": "Marque-pages",
"navigation_bar.community_timeline": "Fil public local", "navigation_bar.community_timeline": "Fil public local",
"navigation_bar.compose": "Rédiger un nouveau message", "navigation_bar.compose": "Rédiger un nouveau message",
"navigation_bar.direct": "Messages directs",
"navigation_bar.discover": "Découvrir", "navigation_bar.discover": "Découvrir",
"navigation_bar.domain_blocks": "Domaines bloqués", "navigation_bar.domain_blocks": "Domaines bloqués",
"navigation_bar.edit_profile": "Modifier le profil", "navigation_bar.edit_profile": "Modifier le profil",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Supprimer le sondage", "poll_button.remove_poll": "Supprimer le sondage",
"privacy.change": "Ajuster la confidentialité du message", "privacy.change": "Ajuster la confidentialité du message",
"privacy.direct.long": "Visible uniquement par les comptes mentionnés", "privacy.direct.long": "Visible uniquement par les comptes mentionnés",
"privacy.direct.short": "Seulement les personnes mentionnées", "privacy.direct.short": "Personnes mentionnées uniquement",
"privacy.private.long": "Visible uniquement par vos abonné·e·s", "privacy.private.long": "Visible uniquement par vos abonné·e·s",
"privacy.private.short": "Abonné·e·s uniquement", "privacy.private.short": "Abonné·e·s uniquement",
"privacy.public.long": "Visible pour tous", "privacy.public.long": "Visible pour tous",

View File

@ -70,7 +70,7 @@
"column.blocks": "Cuntais choiscthe", "column.blocks": "Cuntais choiscthe",
"column.bookmarks": "Leabharmharcanna", "column.bookmarks": "Leabharmharcanna",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Browse profiles", "column.directory": "Browse profiles",
"column.domain_blocks": "Blocked domains", "column.domain_blocks": "Blocked domains",
"column.favourites": "Favourites", "column.favourites": "Favourites",
@ -166,7 +166,7 @@
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked posts yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked posts yet. When you bookmark one, it will show up here.",
"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.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "There are no blocked domains yet.", "empty_column.domain_blocks": "There are no blocked domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite posts yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite posts yet. When you favourite one, it will show up here.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "Cuir an phróifíl in eagar", "navigation_bar.edit_profile": "Cuir an phróifíl in eagar",

View File

@ -50,7 +50,7 @@
"account_note.placeholder": "Briog airson nòta a chur ris", "account_note.placeholder": "Briog airson nòta a chur ris",
"admin.dashboard.daily_retention": "Reat glèidheadh nan cleachdaichean às dèidh an clàradh a-rèir latha", "admin.dashboard.daily_retention": "Reat glèidheadh nan cleachdaichean às dèidh an clàradh a-rèir latha",
"admin.dashboard.monthly_retention": "Reat glèidheadh nan cleachdaichean às dèidh an clàradh a-rèir mìos", "admin.dashboard.monthly_retention": "Reat glèidheadh nan cleachdaichean às dèidh an clàradh a-rèir mìos",
"admin.dashboard.retention.average": "Cuibheasach", "admin.dashboard.retention.average": "Średnia",
"admin.dashboard.retention.cohort": "Mìos a chlàraidh", "admin.dashboard.retention.cohort": "Mìos a chlàraidh",
"admin.dashboard.retention.cohort_size": "Cleachdaichean ùra", "admin.dashboard.retention.cohort_size": "Cleachdaichean ùra",
"alert.rate_limited.message": "Feuch ris a-rithist às dèidh {retry_time, time, medium}.", "alert.rate_limited.message": "Feuch ris a-rithist às dèidh {retry_time, time, medium}.",
@ -70,7 +70,7 @@
"column.blocks": "Cleachdaichean bacte", "column.blocks": "Cleachdaichean bacte",
"column.bookmarks": "Comharran-lìn", "column.bookmarks": "Comharran-lìn",
"column.community": "Loidhne-ama ionadail", "column.community": "Loidhne-ama ionadail",
"column.conversations": "Còmhraidhean", "column.direct": "Teachdaireachdan dìreach",
"column.directory": "Rùraich sna pròifilean", "column.directory": "Rùraich sna pròifilean",
"column.domain_blocks": "Àrainnean bacte", "column.domain_blocks": "Àrainnean bacte",
"column.favourites": "Na h-annsachdan", "column.favourites": "Na h-annsachdan",
@ -166,7 +166,7 @@
"empty_column.blocks": "Cha do bhac thu cleachdaiche sam bith fhathast.", "empty_column.blocks": "Cha do bhac thu cleachdaiche sam bith fhathast.",
"empty_column.bookmarked_statuses": "Chan eil comharra-lìn ri post agad fhathast. Nuair a nì thu comharra-lìn de dhfhear, nochdaidh e an-seo.", "empty_column.bookmarked_statuses": "Chan eil comharra-lìn ri post agad fhathast. Nuair a nì thu comharra-lìn de dhfhear, nochdaidh e an-seo.",
"empty_column.community": "Tha an loidhne-ama ionadail falamh. Sgrìobh rudeigin gu poblach airson toiseach-tòiseachaidh a dhèanamh!", "empty_column.community": "Tha an loidhne-ama ionadail falamh. Sgrìobh rudeigin gu poblach airson toiseach-tòiseachaidh a dhèanamh!",
"empty_column.conversations": "Nuair a chuireas no gheibh thu post nach fhaic ach an fheadhainn le iomradh orra ann, nochdaidh e an-seo.", "empty_column.direct": "Chan eil teachdaireachd dhìreach agad fhathast. Nuair a chuireas no a gheibh thu tè, nochdaidh i an-seo.",
"empty_column.domain_blocks": "Cha deach àrainn sam bith a bhacadh fhathast.", "empty_column.domain_blocks": "Cha deach àrainn sam bith a bhacadh fhathast.",
"empty_column.explore_statuses": "Chan eil dad a treandadh an-dràsta fhèin. Thoir sùil a-rithist an ceann greis!", "empty_column.explore_statuses": "Chan eil dad a treandadh an-dràsta fhèin. Thoir sùil a-rithist an ceann greis!",
"empty_column.favourited_statuses": "Chan eil annsachd air post agad fhathast. Nuair a nì thu annsachd de dhfhear, nochdaidh e an-seo.", "empty_column.favourited_statuses": "Chan eil annsachd air post agad fhathast. Nuair a nì thu annsachd de dhfhear, nochdaidh e an-seo.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Brosnaich post", "keyboard_shortcuts.boost": "Brosnaich post",
"keyboard_shortcuts.column": "Cuir am fòcas air colbh", "keyboard_shortcuts.column": "Cuir am fòcas air colbh",
"keyboard_shortcuts.compose": "Cuir am fòcas air raon teacsa an sgrìobhaidh", "keyboard_shortcuts.compose": "Cuir am fòcas air raon teacsa an sgrìobhaidh",
"keyboard_shortcuts.conversations": "a dhfhosgladh colbh nan còmhraidhean",
"keyboard_shortcuts.description": "Tuairisgeul", "keyboard_shortcuts.description": "Tuairisgeul",
"keyboard_shortcuts.direct": "a dhfhosgladh colbh nan teachdaireachdan dìreach",
"keyboard_shortcuts.down": "Gluais sìos air an liosta", "keyboard_shortcuts.down": "Gluais sìos air an liosta",
"keyboard_shortcuts.enter": "Fosgail post", "keyboard_shortcuts.enter": "Fosgail post",
"keyboard_shortcuts.favourite": "Cuir post ris na h-annsachdan", "keyboard_shortcuts.favourite": "Cuir post ris na h-annsachdan",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Comharran-lìn", "navigation_bar.bookmarks": "Comharran-lìn",
"navigation_bar.community_timeline": "Loidhne-ama ionadail", "navigation_bar.community_timeline": "Loidhne-ama ionadail",
"navigation_bar.compose": "Sgrìobh post ùr", "navigation_bar.compose": "Sgrìobh post ùr",
"navigation_bar.direct": "Teachdaireachdan dìreach",
"navigation_bar.discover": "Rùraich", "navigation_bar.discover": "Rùraich",
"navigation_bar.domain_blocks": "Àrainnean bacte", "navigation_bar.domain_blocks": "Àrainnean bacte",
"navigation_bar.edit_profile": "Deasaich a phròifil", "navigation_bar.edit_profile": "Deasaich a phròifil",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Thoir air falbh an cunntas-bheachd", "poll_button.remove_poll": "Thoir air falbh an cunntas-bheachd",
"privacy.change": "Cuir gleus air prìobhaideachd a phuist", "privacy.change": "Cuir gleus air prìobhaideachd a phuist",
"privacy.direct.long": "Chan fhaic ach na cleachdaichean le iomradh orra seo", "privacy.direct.long": "Chan fhaic ach na cleachdaichean le iomradh orra seo",
"privacy.direct.short": "Daoine air an dug mi iomradh a-mhàin", "privacy.direct.short": "An fheadhainn le iomradh orra a-mhàin",
"privacy.private.long": "Chan fhaic ach na daoine a tha a leantainn ort seo", "privacy.private.long": "Chan fhaic ach na daoine a tha a leantainn ort seo",
"privacy.private.short": "Luchd-leantainn a-mhàin", "privacy.private.short": "Luchd-leantainn a-mhàin",
"privacy.public.long": "Chì a h-uile duine e", "privacy.public.long": "Chì a h-uile duine e",

View File

@ -70,7 +70,7 @@
"column.blocks": "Usuarias bloqueadas", "column.blocks": "Usuarias bloqueadas",
"column.bookmarks": "Marcadores", "column.bookmarks": "Marcadores",
"column.community": "Cronoloxía local", "column.community": "Cronoloxía local",
"column.conversations": "Conversas", "column.direct": "Mensaxes directas",
"column.directory": "Procurar perfís", "column.directory": "Procurar perfís",
"column.domain_blocks": "Dominios agochados", "column.domain_blocks": "Dominios agochados",
"column.favourites": "Favoritos", "column.favourites": "Favoritos",
@ -166,7 +166,7 @@
"empty_column.blocks": "Aínda non bloqueaches a ningún usuaria.", "empty_column.blocks": "Aínda non bloqueaches a ningún usuaria.",
"empty_column.bookmarked_statuses": "Aínda non marcaches ningunha publicación. Cando o fagas, aparecerán aquí.", "empty_column.bookmarked_statuses": "Aínda non marcaches ningunha publicación. Cando o fagas, aparecerán aquí.",
"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.conversations": "Aquí verás as publicacións que envíes ou recibas é só son visibles para as persoas mencionadas.", "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": "Non hai temas en voga. Volve máis tarde!", "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í.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Promover publicación", "keyboard_shortcuts.boost": "Promover publicación",
"keyboard_shortcuts.column": "Destacar unha columna", "keyboard_shortcuts.column": "Destacar unha columna",
"keyboard_shortcuts.compose": "Por o cursor na área de escritura", "keyboard_shortcuts.compose": "Por o cursor na área de escritura",
"keyboard_shortcuts.conversations": "para abrir a columna das conversas",
"keyboard_shortcuts.description": "Descrición", "keyboard_shortcuts.description": "Descrición",
"keyboard_shortcuts.direct": "para abrir a columna de mensaxes directas",
"keyboard_shortcuts.down": "Para mover cara abaixo na listaxe", "keyboard_shortcuts.down": "Para mover cara abaixo na listaxe",
"keyboard_shortcuts.enter": "Para abrir publicación", "keyboard_shortcuts.enter": "Para abrir publicación",
"keyboard_shortcuts.favourite": "Para engadir a favoritos", "keyboard_shortcuts.favourite": "Para engadir a favoritos",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Marcadores", "navigation_bar.bookmarks": "Marcadores",
"navigation_bar.community_timeline": "Cronoloxía local", "navigation_bar.community_timeline": "Cronoloxía local",
"navigation_bar.compose": "Escribir unha nova publicación", "navigation_bar.compose": "Escribir unha nova publicación",
"navigation_bar.direct": "Mensaxes directas",
"navigation_bar.discover": "Descubrir", "navigation_bar.discover": "Descubrir",
"navigation_bar.domain_blocks": "Dominios agochados", "navigation_bar.domain_blocks": "Dominios agochados",
"navigation_bar.edit_profile": "Editar perfil", "navigation_bar.edit_profile": "Editar perfil",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Eliminar enquisa", "poll_button.remove_poll": "Eliminar enquisa",
"privacy.change": "Axustar privacidade", "privacy.change": "Axustar privacidade",
"privacy.direct.long": "Só para as usuarias mencionadas", "privacy.direct.long": "Só para as usuarias mencionadas",
"privacy.direct.short": "Só para persoas mencionadas", "privacy.direct.short": "Só persoas mencionadas",
"privacy.private.long": "Só para os seguidoras", "privacy.private.long": "Só para os seguidoras",
"privacy.private.short": "Só para seguidoras", "privacy.private.short": "Só para seguidoras",
"privacy.public.long": "Visible por todas", "privacy.public.long": "Visible por todas",
@ -408,11 +409,11 @@
"report.reasons.dislike": "Non me gusta", "report.reasons.dislike": "Non me gusta",
"report.reasons.dislike_description": "Non é algo que queiras ver", "report.reasons.dislike_description": "Non é algo que queiras ver",
"report.reasons.other": "É outra cousa", "report.reasons.other": "É outra cousa",
"report.reasons.other_description": "O asunto non cae dentro de outras categorías", "report.reasons.other_description": "O problema non cae dentro de outras categorías",
"report.reasons.spam": "É spam", "report.reasons.spam": "É spam",
"report.reasons.spam_description": "Ligazóns perigosas, relacións falsas, ou respostas repetitivas", "report.reasons.spam_description": "Ligazóns perigosas, relacións falsas, ou respostas repetitivas",
"report.reasons.violation": "Viola as regras do servidor", "report.reasons.violation": "Viola as regras do servidor",
"report.reasons.violation_description": "Daste conta de que quebra unhas normas en concreto", "report.reasons.violation_description": "Décheste conta de que quebra unhas normas en concreto",
"report.rules.subtitle": "Elixe todo o que sexa de aplicación", "report.rules.subtitle": "Elixe todo o que sexa de aplicación",
"report.rules.title": "Que regras foron incumpridas?", "report.rules.title": "Que regras foron incumpridas?",
"report.statuses.subtitle": "Elixe todo o que corresponda", "report.statuses.subtitle": "Elixe todo o que corresponda",
@ -455,8 +456,8 @@
"status.embed": "Incrustar", "status.embed": "Incrustar",
"status.favourite": "Favorito", "status.favourite": "Favorito",
"status.filtered": "Filtrado", "status.filtered": "Filtrado",
"status.history.created": "{name} creado o {date}", "status.history.created": "{name} creouno o {date}",
"status.history.edited": "{name} editado o {date}", "status.history.edited": "{name} editouno o {date}",
"status.load_more": "Cargar máis", "status.load_more": "Cargar máis",
"status.media_hidden": "Contido multimedia agochado", "status.media_hidden": "Contido multimedia agochado",
"status.mention": "Mencionar @{name}", "status.mention": "Mencionar @{name}",

View File

@ -1,24 +1,24 @@
{ {
"account.account_note_header": הודעה שלך ל@{name}", "account.account_note_header": ערה",
"account.add_or_remove_from_list": "הוסף או הסר מהרשימות", "account.add_or_remove_from_list": "הוסף או הסר מהרשימות",
"account.badges.bot": "בוט", "account.badges.bot": "בוט",
"account.badges.group": "קבוצה", "account.badges.group": "קבוצה",
"account.block": "חסימת @{name}", "account.block": "חסמי את @{name}",
"account.block_domain": "להסתיר הכל מהקהילה {domain}", "account.block_domain": "חסמו את שם המתחם (דומיין) {domain}",
"account.blocked": "חסום", "account.blocked": "חסום",
"account.browse_more_on_origin_server": "המשך לגלוש בפרופיל המקורי", "account.browse_more_on_origin_server": "ראה יותר בפרופיל המקורי",
"account.cancel_follow_request": "בטל בקשת מעקב", "account.cancel_follow_request": "בטל בקשת מעקב",
"account.direct": "Direct Message @{name}", "account.direct": "הודעה ישירה ל@{name}",
"account.disable_notifications": "הפסק לשלוח לי התראות כש@{name} מפרסמים", "account.disable_notifications": "הפסק לשלוח לי התראות כש@{name} מפרסמים",
"account.domain_blocked": "הדומיין חסוי", "account.domain_blocked": "הדומיין חסום",
"account.edit_profile": "עריכת פרופיל", "account.edit_profile": "עריכת פרופיל",
"account.enable_notifications": "שלח לי התראות כש@{name} מפרסמים", "account.enable_notifications": "שלח לי התראות כש@{name} מפרסם",
"account.endorse": "הצג בפרופיל", "account.endorse": "קדם את החשבון בפרופיל",
"account.follow": "מעקב", "account.follow": "עקוב",
"account.followers": "עוקבים", "account.followers": "עוקבים",
"account.followers.empty": "אף אחד לא עוקב אחר המשתמש הזה עדיין.", "account.followers.empty": "אף אחד לא עוקב אחר המשתמש הזה עדיין.",
"account.followers_counter": "{count, plural,one {עוקב אחד} other {{counter} עוקבים}}", "account.followers_counter": "{count, plural,one {עוקב אחד} 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": "במעקב אחריך",
@ -30,28 +30,28 @@
"account.mention": "אזכור של @{name}", "account.mention": "אזכור של @{name}",
"account.moved_to": "החשבון {name} הועבר אל:", "account.moved_to": "החשבון {name} הועבר אל:",
"account.mute": "להשתיק את @{name}", "account.mute": "להשתיק את @{name}",
"account.mute_notifications": "להסתיר התראות מאת @{name}", "account.mute_notifications": "להסתיר התראות מ @{name}",
"account.muted": "מושתק", "account.muted": "מושתק",
"account.posts": "הודעות", "account.posts": "חצרוצים",
"account.posts_with_replies": "Toots with replies", "account.posts_with_replies": "חצרוצים ותגובות",
"account.report": "לדווח על @{name}", "account.report": "דווח על @{name}",
"account.requested": "בהמתנה לאישור", "account.requested": "בהמתנה לאישור. לחצי כדי לבטל בקשת מעקב",
"account.share": "לשתף את הפרופיל של @{name}", "account.share": "שתף את הפרופיל של @{name}",
"account.show_reblogs": "להראות הדהודים מאת @{name}", "account.show_reblogs": "הצג הדהודים מאת @{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": "הסרת חסימה מעל @{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": "קצב שימור משתמשים (פר יום) אחרי ההרשמה",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "קצב שימור משתמשים (פר חודש) אחרי ההרשמה",
"admin.dashboard.retention.average": "ממוצע", "admin.dashboard.retention.average": "ממוצע",
"admin.dashboard.retention.cohort": "Sign-up month", "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": "מגבלות מיכסה",
@ -70,7 +70,7 @@
"column.blocks": "חסימות", "column.blocks": "חסימות",
"column.bookmarks": "סימניות", "column.bookmarks": "סימניות",
"column.community": "ציר זמן מקומי", "column.community": "ציר זמן מקומי",
"column.conversations": "Conversations", "column.direct": "הודעות ישירות",
"column.directory": "גלוש פרופילים", "column.directory": "גלוש פרופילים",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.favourites": "חיבובים", "column.favourites": "חיבובים",
@ -93,7 +93,7 @@
"community.column_settings.media_only": "Media only", "community.column_settings.media_only": "Media only",
"community.column_settings.remote_only": "מרחוק בלבד", "community.column_settings.remote_only": "מרחוק בלבד",
"compose_form.direct_message_warning_learn_more": "מידע נוסף", "compose_form.direct_message_warning_learn_more": "מידע נוסף",
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.", "compose_form.encryption_warning": "חצרוצים במסטודון אינם מוצפנים מקצה לקצה. לעולם אל תחלקו מידע רגיש דרך מסטודון.",
"compose_form.hashtag_warning": "This toot won't be listed under any hashtag as it is unlisted. Only public toots can be searched by hashtag.", "compose_form.hashtag_warning": "This toot won't be listed under any hashtag as it is unlisted. Only public toots can be searched by hashtag.",
"compose_form.lock_disclaimer": "חשבונך אינו {locked}. כל אחד יוכל לעקוב אחריך כדי לקרוא את הודעותיך המיועדות לעוקבים בלבד.", "compose_form.lock_disclaimer": "חשבונך אינו {locked}. כל אחד יוכל לעקוב אחריך כדי לקרוא את הודעותיך המיועדות לעוקבים בלבד.",
"compose_form.lock_disclaimer.lock": "נעול", "compose_form.lock_disclaimer.lock": "נעול",
@ -105,11 +105,11 @@
"compose_form.poll.switch_to_multiple": "אפשרו בחירה מרובה בסקר", "compose_form.poll.switch_to_multiple": "אפשרו בחירה מרובה בסקר",
"compose_form.poll.switch_to_single": "אפשרו בחירה בודדת בסקר", "compose_form.poll.switch_to_single": "אפשרו בחירה בודדת בסקר",
"compose_form.publish": "ללחוש", "compose_form.publish": "ללחוש",
"compose_form.publish_loud": "לחצרץ!", "compose_form.publish_loud": "{publish}!",
"compose_form.save_changes": "Save changes", "compose_form.save_changes": "שמירת שינויים",
"compose_form.sensitive.hide": "{count, plural, one {Mark media as sensitive} other {Mark media as sensitive}}", "compose_form.sensitive.hide": "{count, plural, one {סימון מידע כרגיש} other {סימון מידע כרגיש}}",
"compose_form.sensitive.marked": "{count, plural, one {Media is marked as sensitive} other {Media is marked as sensitive}}", "compose_form.sensitive.marked": "{count, plural, one {מידע מסומן כרגיש} other {מידע מסומן כרגיש}}",
"compose_form.sensitive.unmarked": "{count, plural, one {Media is not marked as sensitive} other {Media is not marked as sensitive}}", "compose_form.sensitive.unmarked": "{count, plural, one {מידע לא מסומן כרגיש} other {מידע לא מסומן כרגיש}}",
"compose_form.spoiler.marked": "Text is hidden behind warning", "compose_form.spoiler.marked": "Text is hidden behind warning",
"compose_form.spoiler.unmarked": "Text is not hidden", "compose_form.spoiler.unmarked": "Text is not hidden",
"compose_form.spoiler_placeholder": "אזהרת תוכן", "compose_form.spoiler_placeholder": "אזהרת תוכן",
@ -121,14 +121,14 @@
"confirmations.delete.message": "למחוק את ההודעה?", "confirmations.delete.message": "למחוק את ההודעה?",
"confirmations.delete_list.confirm": "למחוק", "confirmations.delete_list.confirm": "למחוק",
"confirmations.delete_list.message": "האם אתם בטוחים שאתם רוצים למחוק את הרשימה לצמיתות?", "confirmations.delete_list.message": "האם אתם בטוחים שאתם רוצים למחוק את הרשימה לצמיתות?",
"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": "יש לך שינויים לא שמורים לתיאור המדיה. להשליך אותם בכל זאת?",
"confirmations.domain_block.confirm": "הסתר קהילה שלמה", "confirmations.domain_block.confirm": "הסתר קהילה שלמה",
"confirmations.domain_block.message": "באמת באמת לחסום את כל קהילת {domain}? ברב המקרים השתקות נבחרות של מספר משתמשים מסויימים צריכה להספיק.", "confirmations.domain_block.message": "באמת באמת לחסום את כל קהילת {domain}? ברב המקרים השתקות נבחרות של מספר משתמשים מסויימים צריכה להספיק.",
"confirmations.logout.confirm": "להתנתק", "confirmations.logout.confirm": "להתנתק",
"confirmations.logout.message": "האם אתם בטוחים שאתם רוצים להתנתק?", "confirmations.logout.message": "האם אתם בטוחים שאתם רוצים להתנתק?",
"confirmations.mute.confirm": "להשתיק", "confirmations.mute.confirm": "להשתיק",
"confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.", "confirmations.mute.explanation": "זה יסתיר חצרוצים שלהם וחצרוצים המזכירים אותם, אבל עדיין יתיר להם לראות פוסטים שלך ולעקוב אחריך.",
"confirmations.mute.message": "להשתיק את {name}?", "confirmations.mute.message": "להשתיק את {name}?",
"confirmations.redraft.confirm": "מחק וערוך מחדש", "confirmations.redraft.confirm": "מחק וערוך מחדש",
"confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? You will lose all replies, boosts and favourites to it.", "confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? You will lose all replies, boosts and favourites to it.",
@ -140,9 +140,9 @@
"conversation.mark_as_read": "סמן כנקרא", "conversation.mark_as_read": "סמן כנקרא",
"conversation.open": "צפו בשיחה", "conversation.open": "צפו בשיחה",
"conversation.with": "עם {names}", "conversation.with": "עם {names}",
"directory.federated": "From known fediverse", "directory.federated": "מהפדרציה הידועה",
"directory.local": "From {domain} only", "directory.local": "מ- {domain} בלבד",
"directory.new_arrivals": "New arrivals", "directory.new_arrivals": "חדשים כאן",
"directory.recently_active": "פעילים לאחרונה", "directory.recently_active": "פעילים לאחרונה",
"embed.instructions": "ניתן להטמיע את ההודעה באתרך ע\"י העתקת הקוד שלהלן.", "embed.instructions": "ניתן להטמיע את ההודעה באתרך ע\"י העתקת הקוד שלהלן.",
"embed.preview": "דוגמא כיצד זה יראה:", "embed.preview": "דוגמא כיצד זה יראה:",
@ -166,109 +166,109 @@
"empty_column.blocks": "עדיין לא חסמתם משתמשים אחרים.", "empty_column.blocks": "עדיין לא חסמתם משתמשים אחרים.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"empty_column.community": "טור הסביבה ריק. יש לפרסם משהו כדי שדברים יתרחילו להתגלגל!", "empty_column.community": "טור הסביבה ריק. יש לפרסם משהו כדי שדברים יתרחילו להתגלגל!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "אין לך שום הודעות פרטיות עדיין. כשתשלחו או תקבלו אחת, היא תופיע כאן.",
"empty_column.domain_blocks": "There are no hidden domains yet.", "empty_column.domain_blocks": "There are no hidden domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "אין נושאים חמים כרגע. אולי אחר כך!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
"empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.", "empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
"empty_column.follow_recommendations": "Looks like no suggestions could be generated for you. You can try using search to look for people you might know or explore trending hashtags.", "empty_column.follow_recommendations": "נראה שלא ניתן לייצר המלצות עבורך. נסה/י להשתמש בחיפוש כדי למצוא אנשים מוכרים או לבדוק את הנושאים החמים.",
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.", "empty_column.follow_requests": "אין לך שום בקשות מעקב עדיין. לכשיתקבלו כאלה, הן תופענה כאן.",
"empty_column.hashtag": "אין כלום בהאשתג הזה עדיין.", "empty_column.hashtag": "אין כלום בהאשתג הזה עדיין.",
"empty_column.home": "אף אחד לא במעקב עדיין. אפשר לבקר ב{public} או להשתמש בחיפוש כדי להתחיל ולהכיר חצוצרנים אחרים.", "empty_column.home": "אף אחד לא במעקב עדיין. אפשר לבקר ב{public} או להשתמש בחיפוש כדי להתחיל ולהכיר חצוצרנים אחרים. {suggestions}",
"empty_column.home.suggestions": "See some suggestions", "empty_column.home.suggestions": "ראה/י כמה הצעות",
"empty_column.list": "אין עדיין מאום ברשימה.", "empty_column.list": "אין עדיין מאום ברשימה.",
"empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.", "empty_column.lists": "אין לך שום רשימות עדיין. לכשיהיו, הן תופענה כאן.",
"empty_column.mutes": "You haven't muted any users yet.", "empty_column.mutes": "עוד לא השתקת שום משתמש.",
"empty_column.notifications": "אין התראות עדיין. יאללה, הגיע הזמן להתחיל להתערבב.", "empty_column.notifications": "אין התראות עדיין. יאללה, הגיע הזמן להתחיל להתערבב.",
"empty_column.public": "אין פה כלום! כדי למלא את הטור הזה אפשר לכתוב משהו, או להתחיל לעקוב אחרי אנשים מקהילות אחרות", "empty_column.public": "אין פה כלום! כדי למלא את הטור הזה אפשר לכתוב משהו, או להתחיל לעקוב אחרי אנשים מקהילות אחרות",
"error.unexpected_crash.explanation": "Due to a bug in our code or a browser compatibility issue, this page could not be displayed correctly.", "error.unexpected_crash.explanation": "עקב תקלה בקוד שלנו או בעיית תאימות דפדפן, לא ניתן להציג דף זה כראוי.",
"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": "לא ניתן להציג דף זה כראוי. הבעיה נגרמת כנראה עקב תוסף דפדפן או כלי תרגום אוטומטי.",
"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": "נסה/י לרענן את הדף. אם זה לא עוזר, אולי אפשר עדיין להשתמש במסטודון דרך דפדפן אחר או באמצעות אפליקציה ילידית.",
"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": "נסה/י להסיר אותם ולרענן את הדף. אם זה לא עוזר, אולי אפשר עדיין להשתמש במסטודון דרך דפדפן אחר או באמצעות אפליקציה ילידית.",
"errors.unexpected_crash.copy_stacktrace": "Copy stacktrace to clipboard", "errors.unexpected_crash.copy_stacktrace": "להעתיק את הקוד ללוח הכתיבה",
"errors.unexpected_crash.report_issue": "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": "Done", "follow_recommendations.done": "בוצע",
"follow_recommendations.heading": "Follow people you'd like to see posts from! Here are some suggestions.", "follow_recommendations.heading": "עקב/י אחרי אנשים שתרצה/י לראות את חצרוציהם! הנה כמה הצעות.",
"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": "חצרוצים מאנשים במעקב יופיעו בסדר כרונולוגי בפיד הבית. אל תחששו מטעויות, אפשר להסיר מעקב באותה הקלות ובכל זמן!",
"follow_request.authorize": "קבלה", "follow_request.authorize": "קבלה",
"follow_request.reject": "דחיה", "follow_request.reject": "דחיה",
"follow_requests.unlocked_explanation": "Even though your account is not locked, the {domain} staff thought you might want to review follow requests from these accounts manually.", "follow_requests.unlocked_explanation": "למרות שחשבונך אינו נעול, צוות {domain} חושב שאולי כדאי לוודא את בקשות המעקב האלה ידנית.",
"generic.saved": "Saved", "generic.saved": "נשמר",
"getting_started.developers": "Developers", "getting_started.developers": "מפתחות",
"getting_started.directory": "Profile directory", "getting_started.directory": "ספריית פרופילים",
"getting_started.documentation": "Documentation", "getting_started.documentation": "תיעוד",
"getting_started.heading": "בואו נתחיל", "getting_started.heading": "בואו נתחיל",
"getting_started.invite": "Invite people", "getting_started.invite": "להזמין אנשים",
"getting_started.open_source_notice": "מסטודון היא תוכנה חופשית (בקוד פתוח). ניתן לתרום או לדווח על בעיות בגיטהאב: {github}.", "getting_started.open_source_notice": "מסטודון היא תוכנה חופשית (בקוד פתוח). ניתן לתרום או לדווח על בעיות בגיטהאב: {github}.",
"getting_started.security": "Security", "getting_started.security": "Security",
"getting_started.terms": "Terms of service", "getting_started.terms": "תנאי שימוש",
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "ו- {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "או {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "ללא {additional}",
"hashtag.column_settings.select.no_options_message": "No suggestions found", "hashtag.column_settings.select.no_options_message": "לא נמצאו הצעות",
"hashtag.column_settings.select.placeholder": "Enter hashtags…", "hashtag.column_settings.select.placeholder": "הזן תגי הקבצה…",
"hashtag.column_settings.tag_mode.all": "All of these", "hashtag.column_settings.tag_mode.all": "כל אלה",
"hashtag.column_settings.tag_mode.any": "Any of these", "hashtag.column_settings.tag_mode.any": "כל אלה",
"hashtag.column_settings.tag_mode.none": "None of these", "hashtag.column_settings.tag_mode.none": "אפאחד מאלה",
"hashtag.column_settings.tag_toggle": "Include additional tags in this column", "hashtag.column_settings.tag_toggle": "Include additional tags in this column",
"home.column_settings.basic": "למתחילים", "home.column_settings.basic": "למתחילים",
"home.column_settings.show_reblogs": "הצגת הדהודים", "home.column_settings.show_reblogs": "הצגת הדהודים",
"home.column_settings.show_replies": "הצגת תגובות", "home.column_settings.show_replies": "הצגת תגובות",
"home.hide_announcements": "Hide announcements", "home.hide_announcements": "הסתר הכרזות",
"home.show_announcements": "Show announcements", "home.show_announcements": "הצג הכרזות",
"intervals.full.days": "{number, plural, one {# day} other {# days}}", "intervals.full.days": "{number, plural, one {# יום} other {# ימים}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}", "intervals.full.hours": "{number, plural, one {# שעה} other {# שעות}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}", "intervals.full.minutes": "{number, plural, one {# דקה} other {# דקות}}",
"keyboard_shortcuts.back": "ניווט חזרה", "keyboard_shortcuts.back": "ניווט חזרה",
"keyboard_shortcuts.blocked": "to open blocked users list", "keyboard_shortcuts.blocked": "פתיחת רשימת חסומים",
"keyboard_shortcuts.boost": "להדהד", "keyboard_shortcuts.boost": "להדהד",
"keyboard_shortcuts.column": "להתמקד בהודעה באחד מהטורים", "keyboard_shortcuts.column": "להתמקד בהודעה באחד מהטורים",
"keyboard_shortcuts.compose": "להתמקד בתיבת חיבור ההודעות", "keyboard_shortcuts.compose": "להתמקד בתיבת חיבור ההודעות",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "תיאור", "keyboard_shortcuts.description": "תיאור",
"keyboard_shortcuts.direct": "לפתיחת טור הודעות ישירות",
"keyboard_shortcuts.down": "לנוע במורד הרשימה", "keyboard_shortcuts.down": "לנוע במורד הרשימה",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "פתח חצרוץ",
"keyboard_shortcuts.favourite": "לחבב", "keyboard_shortcuts.favourite": "לחבב",
"keyboard_shortcuts.favourites": "to open favourites list", "keyboard_shortcuts.favourites": "פתיחת רשימת מועדפים",
"keyboard_shortcuts.federated": "to open federated timeline", "keyboard_shortcuts.federated": "פתיחת ציר זמן בין-קהילתי",
"keyboard_shortcuts.heading": "Keyboard Shortcuts", "keyboard_shortcuts.heading": "Keyboard Shortcuts",
"keyboard_shortcuts.home": "to open home timeline", "keyboard_shortcuts.home": "פתיחת ציר זמן אישי",
"keyboard_shortcuts.hotkey": "מקש קיצור", "keyboard_shortcuts.hotkey": "מקש קיצור",
"keyboard_shortcuts.legend": "להציג את הפירוש", "keyboard_shortcuts.legend": "להציג את הפירוש",
"keyboard_shortcuts.local": "to open local timeline", "keyboard_shortcuts.local": "פתיחת ציר זמן קהילתי",
"keyboard_shortcuts.mention": "לאזכר את המחבר(ת)", "keyboard_shortcuts.mention": "לאזכר את המחבר(ת)",
"keyboard_shortcuts.muted": "to open muted users list", "keyboard_shortcuts.muted": "פתיחת רשימת משתמשים מושתקים",
"keyboard_shortcuts.my_profile": "to open your profile", "keyboard_shortcuts.my_profile": "פתיחת הפרופיל שלך",
"keyboard_shortcuts.notifications": "to open notifications column", "keyboard_shortcuts.notifications": "פתיחת טור התראות",
"keyboard_shortcuts.open_media": "to open media", "keyboard_shortcuts.open_media": "פתיחת מדיה",
"keyboard_shortcuts.pinned": "to open pinned toots list", "keyboard_shortcuts.pinned": "פתיחת רשימת חצרותים מוצמדים",
"keyboard_shortcuts.profile": "to open author's profile", "keyboard_shortcuts.profile": "פתח את פרופיל המשתמש",
"keyboard_shortcuts.reply": "לענות", "keyboard_shortcuts.reply": "לענות",
"keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.requests": "פתיחת רשימת בקשות מעקב",
"keyboard_shortcuts.search": "להתמקד בחלון החיפוש", "keyboard_shortcuts.search": "להתמקד בחלון החיפוש",
"keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.spoilers": "הצגת/הסתרת שדה אזהרת תוכן (CW)",
"keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.start": "to open \"get started\" column",
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_hidden": "הצגת/הסתרת טקסט מוסתר מאחורי אזהרת תוכן",
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media", "keyboard_shortcuts.toggle_sensitivity": "הצגת/הסתרת מדיה",
"keyboard_shortcuts.toot": "להתחיל חיצרוץ חדש", "keyboard_shortcuts.toot": "להתחיל חיצרוץ חדש",
"keyboard_shortcuts.unfocus": "לצאת מתיבת חיבור/חיפוש", "keyboard_shortcuts.unfocus": "לצאת מתיבת חיבור/חיפוש",
"keyboard_shortcuts.up": "לנוע במעלה הרשימה", "keyboard_shortcuts.up": "לנוע במעלה הרשימה",
"lightbox.close": "סגירה", "lightbox.close": "סגירה",
"lightbox.compress": "Compress image view box", "lightbox.compress": "דחיסת קופסת צפייה בתמונה",
"lightbox.expand": "Expand image view box", "lightbox.expand": "הרחבת קופסת צפייה בתמונה",
"lightbox.next": "הלאה", "lightbox.next": "הלאה",
"lightbox.previous": "הקודם", "lightbox.previous": "הקודם",
"lists.account.add": "הוסף לרשימה", "lists.account.add": "הוסף לרשימה",
"lists.account.remove": "הסר מרשימה", "lists.account.remove": "הסר מרשימה",
"lists.delete": "Delete list", "lists.delete": "מחיקת רשימה",
"lists.edit": "Edit list", "lists.edit": "עריכת רשימה",
"lists.edit.submit": "Change title", "lists.edit.submit": "שנה/י כותרת",
"lists.new.create": "הוספת רשימה", "lists.new.create": "הוספת רשימה",
"lists.new.title_placeholder": "כותרת הרשימה החדשה", "lists.new.title_placeholder": "כותרת הרשימה החדשה",
"lists.replies_policy.followed": "משתמשים שאני עוקב אחריהם", "lists.replies_policy.followed": "משתמשים שאני עוקב אחריהם",
@ -277,7 +277,7 @@
"lists.replies_policy.title": "הצג תגובות ל:", "lists.replies_policy.title": "הצג תגובות ל:",
"lists.search": "חיפוש בין אנשים שאני עוקב\\ת אחריהם", "lists.search": "חיפוש בין אנשים שאני עוקב\\ת אחריהם",
"lists.subheading": "הרשימות שלך", "lists.subheading": "הרשימות שלך",
"load_pending": "{count, plural, one {# new item} other {# new items}}", "load_pending": "{count, plural, one {# פריט חדש} other {# פריטים חדשים}}",
"loading_indicator.label": "טוען...", "loading_indicator.label": "טוען...",
"media_gallery.toggle_visible": "נראה\\בלתי נראה", "media_gallery.toggle_visible": "נראה\\בלתי נראה",
"missing_indicator.label": "לא נמצא", "missing_indicator.label": "לא נמצא",
@ -285,146 +285,147 @@
"mute_modal.duration": "משך הזמן", "mute_modal.duration": "משך הזמן",
"mute_modal.hide_notifications": "להסתיר הודעות מחשבון זה?", "mute_modal.hide_notifications": "להסתיר הודעות מחשבון זה?",
"mute_modal.indefinite": "ללא תאריך סיום", "mute_modal.indefinite": "ללא תאריך סיום",
"navigation_bar.apps": "Mobile apps", "navigation_bar.apps": "יישומונים לנייד",
"navigation_bar.blocks": "חסימות", "navigation_bar.blocks": "חסימות",
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "סימניות",
"navigation_bar.community_timeline": "ציר זמן מקומי", "navigation_bar.community_timeline": "ציר זמן מקומי",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.discover": "Discover", "navigation_bar.direct": "הודעות ישירות",
"navigation_bar.discover": "גלה",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "עריכת פרופיל", "navigation_bar.edit_profile": "עריכת פרופיל",
"navigation_bar.explore": "Explore", "navigation_bar.explore": "חקור",
"navigation_bar.favourites": "חיבובים", "navigation_bar.favourites": "חיבובים",
"navigation_bar.filters": "Muted words", "navigation_bar.filters": "מילים מושתקות",
"navigation_bar.follow_requests": "בקשות מעקב", "navigation_bar.follow_requests": "בקשות מעקב",
"navigation_bar.follows_and_followers": "Follows and followers", "navigation_bar.follows_and_followers": "נעקבים ועוקבים",
"navigation_bar.info": "מידע נוסף", "navigation_bar.info": "מידע נוסף",
"navigation_bar.keyboard_shortcuts": "קיצורי מקלדת", "navigation_bar.keyboard_shortcuts": "קיצורי מקלדת",
"navigation_bar.lists": "Lists", "navigation_bar.lists": "רשימות",
"navigation_bar.logout": "יציאה", "navigation_bar.logout": "יציאה",
"navigation_bar.mutes": "השתקות", "navigation_bar.mutes": "השתקות",
"navigation_bar.personal": "Personal", "navigation_bar.personal": "אישי",
"navigation_bar.pins": "חיצרוצים מקובעים", "navigation_bar.pins": "חיצרוצים מקובעים",
"navigation_bar.preferences": "העדפות", "navigation_bar.preferences": "העדפות",
"navigation_bar.public_timeline": "ציר זמן בין-קהילתי", "navigation_bar.public_timeline": "ציר זמן בין-קהילתי",
"navigation_bar.security": "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} has requested to follow you", "notification.follow_request": "{name} ביקשו לעקוב אחריך",
"notification.mention": "אוזכרת על ידי {name}", "notification.mention": "אוזכרת על ידי {name}",
"notification.own_poll": "Your poll has ended", "notification.own_poll": "הסקר שלך הסתיים",
"notification.poll": "A poll you have voted in has ended", "notification.poll": "סקר שהצבעת בו הסתיים",
"notification.reblog": "חצרוצך הודהד על ידי {name}", "notification.reblog": "חצרוצך הודהד על ידי {name}",
"notification.status": "{name} just posted", "notification.status": "{name} הרגע פרסמו",
"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": "Display all categories", "notifications.column_settings.filter_bar.advanced": "הצג את כל הקטגוריות",
"notifications.column_settings.filter_bar.category": "Quick filter bar", "notifications.column_settings.filter_bar.category": "שורת סינון מהיר",
"notifications.column_settings.filter_bar.show_bar": "Show filter bar", "notifications.column_settings.filter_bar.show_bar": "הצג שורת סינון",
"notifications.column_settings.follow": "עוקבים חדשים:", "notifications.column_settings.follow": "עוקבים חדשים:",
"notifications.column_settings.follow_request": "New follow requests:", "notifications.column_settings.follow_request": "בקשות מעקב חדשות:",
"notifications.column_settings.mention": "פניות:", "notifications.column_settings.mention": "פניות:",
"notifications.column_settings.poll": "Poll results:", "notifications.column_settings.poll": "תוצאות סקר:",
"notifications.column_settings.push": "הודעות בדחיפה", "notifications.column_settings.push": "הודעות בדחיפה",
"notifications.column_settings.reblog": "הדהודים:", "notifications.column_settings.reblog": "הדהודים:",
"notifications.column_settings.show": "הצגה בטור", "notifications.column_settings.show": "הצגה בטור",
"notifications.column_settings.sound": "שמע מופעל", "notifications.column_settings.sound": "שמע מופעל",
"notifications.column_settings.status": "New toots:", "notifications.column_settings.status": "New toots:",
"notifications.column_settings.unread_notifications.category": "Unread notifications", "notifications.column_settings.unread_notifications.category": "התראות שלא נקראו",
"notifications.column_settings.unread_notifications.highlight": "Highlight unread notifications", "notifications.column_settings.unread_notifications.highlight": "הבלט התראות שלא נקראו",
"notifications.column_settings.update": "שינויים:", "notifications.column_settings.update": "שינויים:",
"notifications.filter.all": "All", "notifications.filter.all": "הכל",
"notifications.filter.boosts": "Boosts", "notifications.filter.boosts": "הדהודים",
"notifications.filter.favourites": "Favourites", "notifications.filter.favourites": "חיבובים",
"notifications.filter.follows": "Follows", "notifications.filter.follows": "נעקבים",
"notifications.filter.mentions": "Mentions", "notifications.filter.mentions": "אזכורים",
"notifications.filter.polls": "Poll results", "notifications.filter.polls": "תוצאות סקר",
"notifications.filter.statuses": "Updates from people you follow", "notifications.filter.statuses": "עדכונים מאנשים במעקב",
"notifications.grant_permission": "Grant permission.", "notifications.grant_permission": "מתן הרשאה.",
"notifications.group": "{count} notifications", "notifications.group": "{count} התראות",
"notifications.mark_as_read": "Mark every notification as read", "notifications.mark_as_read": "סימון כל ההודעות כנקראו",
"notifications.permission_denied": "Desktop notifications are unavailable due to previously denied browser permissions request", "notifications.permission_denied": "לא ניתן להציג התראות מסך כיוון כיוון שהרשאות דפדפן נשללו בעבר",
"notifications.permission_denied_alert": "Desktop notifications can't be enabled, as browser permission has been denied before", "notifications.permission_denied_alert": "לא ניתן לאפשר נוטיפיקציות מסך שכן הדפדפן סורב הרשאה בעבר",
"notifications.permission_required": "Desktop notifications are unavailable because the required permission has not been granted.", "notifications.permission_required": "לא ניתן לאפשר נוטיפיקציות מסך כיוון שהרשאה דרושה לא ניתנה.",
"notifications_permission_banner.enable": "Enable desktop notifications", "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": "כדי לקבל הודעות גם כאשר מסטודון סגור יש לאפשר נוטיפיקציות מסך. ניתן לשלוט בדיוק איזה סוג של אינטראקציות יביא לנוטיפיקציות מסך דרך כפתור ה- {icon} מרגע שהן מאופשרות.",
"notifications_permission_banner.title": "Never miss a thing", "notifications_permission_banner.title": "לעולם אל תחמיץ דבר",
"picture_in_picture.restore": "Put it back", "picture_in_picture.restore": "החזירי למקומו",
"poll.closed": "Closed", "poll.closed": "סגור",
"poll.refresh": "Refresh", "poll.refresh": "רענון",
"poll.total_people": "{count, plural, one {# person} other {# people}}", "poll.total_people": "{count, plural, one {# איש/אישה} other {# אנשים}}",
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}", "poll.total_votes": "{count, plural, one {# קול} other {# קולות}}",
"poll.vote": "Vote", "poll.vote": "קול",
"poll.voted": "You voted for this answer", "poll.voted": "הצבעת לתשובה זו",
"poll.votes": "{votes, plural, one {# vote} other {# votes}}", "poll.votes": "{votes, plural, one {# קול} other {# קולות}}",
"poll_button.add_poll": "Add a poll", "poll_button.add_poll": "הוספת סקר",
"poll_button.remove_poll": "Remove poll", "poll_button.remove_poll": "הסרת סקר",
"privacy.change": "שינוי פרטיות ההודעה", "privacy.change": "שינוי פרטיות ההודעה",
"privacy.direct.long": "הצג רק למי שהודעה זו פונה אליו", "privacy.direct.long": "הצג רק למי שהודעה זו פונה אליו",
"privacy.direct.short": "Direct", "privacy.direct.short": "אנשים מוזכרים בלבד",
"privacy.private.long": "הצג לעוקבים בלבד", "privacy.private.long": "הצג לעוקבים בלבד",
"privacy.private.short": "Followers-only", "privacy.private.short": "עוקבים בלבד",
"privacy.public.long": "Visible for all", "privacy.public.long": "גלוי לכל",
"privacy.public.short": "פומבי", "privacy.public.short": "פומבי",
"privacy.unlisted.long": "Visible for all, but opted-out of discovery features", "privacy.unlisted.long": "גלוי לכל, אבל מוסתר מאמצעי גילוי",
"privacy.unlisted.short": "לא לפיד הכללי", "privacy.unlisted.short": "לא לפיד הכללי",
"refresh": "Refresh", "refresh": "רענון",
"regeneration_indicator.label": "Loading…", "regeneration_indicator.label": "טוען…",
"regeneration_indicator.sublabel": "Your home feed is being prepared!", "regeneration_indicator.sublabel": "פיד הבית שלך בהכנה!",
"relative_time.days": "{number}d", "relative_time.days": "{number} ימים",
"relative_time.full.days": "{number, plural, one {# day} other {# days}} ago", "relative_time.full.days": "לפני {number, plural, one {# יום} other {# ימים}}",
"relative_time.full.hours": "{number, plural, one {# hour} other {# hours}} ago", "relative_time.full.hours": "לפני {number, plural, one {# שעה} other {# שעות}}",
"relative_time.full.just_now": "just now", "relative_time.full.just_now": "ממש עכשיו",
"relative_time.full.minutes": "{number, plural, one {# minute} other {# minutes}} ago", "relative_time.full.minutes": "לפני {number, plural, one {# דקה} other {# דקות}}",
"relative_time.full.seconds": "{number, plural, one {# second} other {# seconds}} ago", "relative_time.full.seconds": "לפני {number, plural, one {# שניה} other {# שניות}}",
"relative_time.hours": "{number}h", "relative_time.hours": "{number} שעות",
"relative_time.just_now": "כרגע", "relative_time.just_now": "כרגע",
"relative_time.minutes": "{number}m", "relative_time.minutes": "{number} דקות",
"relative_time.seconds": "{number}s", "relative_time.seconds": "{number} שניות",
"relative_time.today": "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": "Other", "report.categories.other": "אחר",
"report.categories.spam": "Spam", "report.categories.spam": "ספאם",
"report.categories.violation": "Content violates one or more server rules", "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": "Forward to {target}", "report.forward": "קדם ל-{target}",
"report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?", "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 repetitive 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": "דיווח", "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": "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.",
@ -432,112 +433,112 @@
"search_popout.tips.status": "status", "search_popout.tips.status": "status",
"search_popout.tips.text": "טקסט פשוט מחזיר כינויים, שמות משתמש והאשתגים", "search_popout.tips.text": "טקסט פשוט מחזיר כינויים, שמות משתמש והאשתגים",
"search_popout.tips.user": "משתמש(ת)", "search_popout.tips.user": "משתמש(ת)",
"search_results.accounts": "People", "search_results.accounts": "אנשים",
"search_results.all": "All", "search_results.all": "כל התוצאות",
"search_results.hashtags": "Hashtags", "search_results.hashtags": "האשתגיות",
"search_results.nothing_found": "Could not find anything for these search terms", "search_results.nothing_found": "לא נמצא דבר עבור תנאי חיפוש אלה",
"search_results.statuses": "Toots", "search_results.statuses": "Toots",
"search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.", "search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
"search_results.total": "{count, number} {count, plural, one {תוצאה} other {תוצאות}}", "search_results.total": "{count, number} {count, plural, one {תוצאה} other {תוצאות}}",
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "פתח/י ממשק ניהול עבור @{name}",
"status.admin_status": "Open this status in the moderation interface", "status.admin_status": "Open this status in the moderation interface",
"status.block": "Block @{name}", "status.block": "חסימת @{name}",
"status.bookmark": "Bookmark", "status.bookmark": "סימניה",
"status.cancel_reblog_private": "Unboost", "status.cancel_reblog_private": "הסרת הדהוד",
"status.cannot_reblog": "לא ניתן להדהד הודעה זו", "status.cannot_reblog": "לא ניתן להדהד הודעה זו",
"status.copy": "Copy link to status", "status.copy": "Copy link to status",
"status.delete": "מחיקה", "status.delete": "מחיקה",
"status.detailed_status": "Detailed conversation view", "status.detailed_status": "תצוגת שיחה מפורטת",
"status.direct": "הודעה ישירה ל@{name}", "status.direct": "הודעה ישירה ל@{name}",
"status.edit": "Edit", "status.edit": "עריכה",
"status.edited": "Edited {date}", "status.edited": "נערך ב{date}",
"status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", "status.edited_x_times": "נערך {count, plural, one {פעם {count}} other {{count} פעמים}}",
"status.embed": "הטמעה", "status.embed": "הטמעה",
"status.favourite": "חיבוב", "status.favourite": "חיבוב",
"status.filtered": "Filtered", "status.filtered": "סונן",
"status.history.created": "{name} created {date}", "status.history.created": "{name} יצר/ה {date}",
"status.history.edited": "{name} edited {date}", "status.history.edited": "{name} ערך/ה {date}",
"status.load_more": "עוד", "status.load_more": "עוד",
"status.media_hidden": "מדיה מוסתרת", "status.media_hidden": "מדיה מוסתרת",
"status.mention": "פניה אל @{name}", "status.mention": "פניה אל @{name}",
"status.more": "עוד", "status.more": "עוד",
"status.mute": "Mute @{name}", "status.mute": "להשתיק את @{name}",
"status.mute_conversation": "השתקת שיחה", "status.mute_conversation": "השתקת שיחה",
"status.open": "הרחבת הודעה", "status.open": "הרחבת הודעה",
"status.pin": "לקבע באודות", "status.pin": "לקבע באודות",
"status.pinned": "Pinned toot", "status.pinned": "Pinned toot",
"status.read_more": "Read more", "status.read_more": "לקרוא עוד",
"status.reblog": "הדהוד", "status.reblog": "הדהוד",
"status.reblog_private": "Boost with original visibility", "status.reblog_private": "להדהד ברמת הנראות המקורית",
"status.reblogged_by": "הודהד על ידי {name}", "status.reblogged_by": "הודהד על ידי {name}",
"status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.", "status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
"status.redraft": "Delete & re-draft", "status.redraft": "מחיקה ועריכה מחדש",
"status.remove_bookmark": "Remove bookmark", "status.remove_bookmark": "הסרת סימניה",
"status.reply": "תגובה", "status.reply": "תגובה",
"status.replyAll": "תגובה לכולם", "status.replyAll": "תגובה לכולם",
"status.report": "דיווח על @{name}", "status.report": "דיווח על @{name}",
"status.sensitive_warning": "תוכן רגיש", "status.sensitive_warning": "תוכן רגיש",
"status.share": "שיתוף", "status.share": "שיתוף",
"status.show_less": "הראה פחות", "status.show_less": "הראה פחות",
"status.show_less_all": "Show less for all", "status.show_less_all": "להציג פחות מהכל",
"status.show_more": "הראה יותר", "status.show_more": "הראה יותר",
"status.show_more_all": "Show more for all", "status.show_more_all": "להציג יותר מהכל",
"status.show_thread": "Show thread", "status.show_thread": "להציג סיב",
"status.uncached_media_warning": "Not available", "status.uncached_media_warning": "לא זמין",
"status.unmute_conversation": "הסרת השתקת שיחה", "status.unmute_conversation": "הסרת השתקת שיחה",
"status.unpin": "לשחרר מקיבוע באודות", "status.unpin": "לשחרר מקיבוע באודות",
"suggestions.dismiss": "Dismiss suggestion", "suggestions.dismiss": "להתעלם מהצעה",
"suggestions.header": "You might be interested in…", "suggestions.header": "ייתכן שזה יעניין אותך…",
"tabs_bar.federated_timeline": "ציר זמן בין-קהילתי", "tabs_bar.federated_timeline": "ציר זמן בין-קהילתי",
"tabs_bar.home": "בבית", "tabs_bar.home": "בבית",
"tabs_bar.local_timeline": "ציר זמן מקומי", "tabs_bar.local_timeline": "ציר זמן מקומי",
"tabs_bar.notifications": "התראות", "tabs_bar.notifications": "התראות",
"tabs_bar.search": "Search", "tabs_bar.search": "חיפוש",
"time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.days": "נותרו {number, plural, one {# יום} other {# ימים}}",
"time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", "time_remaining.hours": "נותרו {number, plural, one {# שעה} other {# שעות}}",
"time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.minutes": "נותרו {number, plural, one {# דקה} other {# דקות}}",
"time_remaining.moments": "Moments remaining", "time_remaining.moments": "רגעים נותרו",
"time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", "time_remaining.seconds": "נותרו {number, plural, one {# שניה} other {# שניות}}",
"timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", "timeline_hint.remote_resource_not_displayed": "{resource} משרתים אחרים לא מוצגים.",
"timeline_hint.resources.followers": "Followers", "timeline_hint.resources.followers": "עוקבים",
"timeline_hint.resources.follows": "Follows", "timeline_hint.resources.follows": "נעקבים",
"timeline_hint.resources.statuses": "Older toots", "timeline_hint.resources.statuses": "Older toots",
"trends.counter_by_accounts": "{count, plural, one {{counter} person} other {{counter} people}} talking", "trends.counter_by_accounts": "{count, plural, one {{counter} אחד/ת מדבר/ת} other {{counter} אנשים מדברים}}",
"trends.trending_now": "Trending now", "trends.trending_now": "נושאים חמים",
"ui.beforeunload": "הטיוטא תאבד אם תעזבו את מסטודון.", "ui.beforeunload": "הטיוטא תאבד אם תעזבו את מסטודון.",
"units.short.billion": "{count}B", "units.short.billion": "{count} מליארד",
"units.short.million": "{count}M", "units.short.million": "{count} מליון",
"units.short.thousand": "{count}K", "units.short.thousand": "{count} אלפים",
"upload_area.title": "ניתן להעלות על ידי Drag & drop", "upload_area.title": "ניתן להעלות על ידי Drag & drop",
"upload_button.label": "הוספת מדיה", "upload_button.label": "הוספת מדיה",
"upload_error.limit": "File upload limit exceeded.", "upload_error.limit": "קובץ להעלאה חורג מנפח מותר.",
"upload_error.poll": "File upload not allowed with polls.", "upload_error.poll": "לא ניתן להעלות קובץ עם סקר.",
"upload_form.audio_description": "Describe for people with hearing loss", "upload_form.audio_description": "תאר/י עבור לקויי שמיעה",
"upload_form.description": "תיאור לכבדי ראיה", "upload_form.description": "תיאור לכבדי ראיה",
"upload_form.description_missing": "No description added", "upload_form.description_missing": "לא הוסף תיאור",
"upload_form.edit": "Edit", "upload_form.edit": "עריכה",
"upload_form.thumbnail": "Change thumbnail", "upload_form.thumbnail": "שנה/י תמונה ממוזערת",
"upload_form.undo": "ביטול", "upload_form.undo": "ביטול",
"upload_form.video_description": "Describe for people with hearing loss or visual impairment", "upload_form.video_description": "תאר/י עבור לקויי שמיעה ולקויי ראייה",
"upload_modal.analyzing_picture": "Analyzing picture…", "upload_modal.analyzing_picture": "מנתח תמונה…",
"upload_modal.apply": "Apply", "upload_modal.apply": "החל",
"upload_modal.applying": "Applying…", "upload_modal.applying": "מחיל…",
"upload_modal.choose_image": "Choose image", "upload_modal.choose_image": "בחר/י תמונה",
"upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog", "upload_modal.description_placeholder": "דג סקרן שט בים מאוכזב ולפתע מצא חברה",
"upload_modal.detect_text": "Detect text from picture", "upload_modal.detect_text": "זהה טקסט מתמונה",
"upload_modal.edit_media": "Edit media", "upload_modal.edit_media": "עריכת מדיה",
"upload_modal.hint": "Click or drag the circle on the preview to choose the focal point which will always be in view on all thumbnails.", "upload_modal.hint": "הקליקי או גררי את המעגל על גבי התצוגה המקדימה על מנת לבחור בנקודת המוקד שתראה תמיד בכל התמונות הממוזערות.",
"upload_modal.preparing_ocr": "Preparing OCR…", "upload_modal.preparing_ocr": "מכין OCR…",
"upload_modal.preview_label": "Preview ({ratio})", "upload_modal.preview_label": "תצוגה ({ratio})",
"upload_progress.label": "עולה...", "upload_progress.label": "עולה...",
"video.close": "סגירת וידאו", "video.close": "סגירת וידאו",
"video.download": "Download file", "video.download": "הורדת קובץ",
"video.exit_fullscreen": "יציאה ממסך מלא", "video.exit_fullscreen": "יציאה ממסך מלא",
"video.expand": "להרחיב וידאו", "video.expand": "להרחיב וידאו",
"video.fullscreen": "Full screen", "video.fullscreen": "מסך מלא",
"video.hide": "להסתיר וידאו", "video.hide": "להסתיר וידאו",
"video.mute": "השתקת צליל", "video.mute": "השתקת צליל",
"video.pause": "Pause", "video.pause": "השהיה",
"video.play": "ניגון", "video.play": "ניגון",
"video.unmute": "החזרת צליל" "video.unmute": "החזרת צליל"
} }

View File

@ -70,7 +70,7 @@
"column.blocks": "ब्लॉक्ड यूज़र्स", "column.blocks": "ब्लॉक्ड यूज़र्स",
"column.bookmarks": "पुस्तकचिह्न:", "column.bookmarks": "पुस्तकचिह्न:",
"column.community": "लोकल टाइम्लाइन", "column.community": "लोकल टाइम्लाइन",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "प्रोफाइल्स खोजें", "column.directory": "प्रोफाइल्स खोजें",
"column.domain_blocks": "छुपे डोमेन्स", "column.domain_blocks": "छुपे डोमेन्स",
"column.favourites": "पसंदीदा", "column.favourites": "पसंदीदा",
@ -166,7 +166,7 @@
"empty_column.blocks": "आप अभी तक किसी भी यूजर के द्वारा ब्लॉक्ड नहीं हो।", "empty_column.blocks": "आप अभी तक किसी भी यूजर के द्वारा ब्लॉक्ड नहीं हो।",
"empty_column.bookmarked_statuses": "आपके पास अभी तक कोई बुकमार्क नहीं है। जब आप एक बुकमार्क करते हैं, तो यह यहां दिखाई देगा।", "empty_column.bookmarked_statuses": "आपके पास अभी तक कोई बुकमार्क नहीं है। जब आप एक बुकमार्क करते हैं, तो यह यहां दिखाई देगा।",
"empty_column.community": "लोकल टाइम्लाइन खाली है, कुछ देखने के लिये सार्वजनिक रूप से कुछ लिखें!", "empty_column.community": "लोकल टाइम्लाइन खाली है, कुछ देखने के लिये सार्वजनिक रूप से कुछ लिखें!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "अभी तक कोई छुपा हुआ डोमेन नहीं है।", "empty_column.domain_blocks": "अभी तक कोई छुपा हुआ डोमेन नहीं है।",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "आपके पास अभी कोई भी चहिता टूट नहीं है. जब आप किसी टूट को पसंद (स्टार) करेंगे, तब वो यहाँ दिखेगा।", "empty_column.favourited_statuses": "आपके पास अभी कोई भी चहिता टूट नहीं है. जब आप किसी टूट को पसंद (स्टार) करेंगे, तब वो यहाँ दिखेगा।",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "बढ़ावा देने के लिए", "keyboard_shortcuts.boost": "बढ़ावा देने के लिए",
"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": "कंपोज़ टेक्स्ट-एरिया पर ध्यान केंद्रित करने के लिए", "keyboard_shortcuts.compose": "कंपोज़ टेक्स्ट-एरिया पर ध्यान केंद्रित करने के लिए",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "विवरण", "keyboard_shortcuts.description": "विवरण",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "सूची में शामिल करने के लिए", "keyboard_shortcuts.down": "सूची में शामिल करने के लिए",
"keyboard_shortcuts.enter": "स्टेटस खोलने के लिए", "keyboard_shortcuts.enter": "स्टेटस खोलने के लिए",
"keyboard_shortcuts.favourite": "पसंदीदा के लिए", "keyboard_shortcuts.favourite": "पसंदीदा के लिए",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "पुस्तकचिह्न:", "navigation_bar.bookmarks": "पुस्तकचिह्न:",
"navigation_bar.community_timeline": "लोकल टाइम्लाइन", "navigation_bar.community_timeline": "लोकल टाइम्लाइन",
"navigation_bar.compose": "नया टूट् लिखें", "navigation_bar.compose": "नया टूट् लिखें",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "खोजें", "navigation_bar.discover": "खोजें",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "प्रोफ़ाइल संपादित करें", "navigation_bar.edit_profile": "प्रोफ़ाइल संपादित करें",

View File

@ -70,7 +70,7 @@
"column.blocks": "Blokirani korisnici", "column.blocks": "Blokirani korisnici",
"column.bookmarks": "Knjižne oznake", "column.bookmarks": "Knjižne oznake",
"column.community": "Lokalna vremenska crta", "column.community": "Lokalna vremenska crta",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Pregledavanje profila", "column.directory": "Pregledavanje profila",
"column.domain_blocks": "Blokirane domene", "column.domain_blocks": "Blokirane domene",
"column.favourites": "Favoriti", "column.favourites": "Favoriti",
@ -166,7 +166,7 @@
"empty_column.blocks": "Još niste blokirali nikoga.", "empty_column.blocks": "Još niste blokirali nikoga.",
"empty_column.bookmarked_statuses": "Još nemaš niti jedan označeni toot. Kada označiš jedan, prikazad će se ovdje.", "empty_column.bookmarked_statuses": "Još nemaš niti jedan označeni toot. Kada označiš jedan, prikazad će se ovdje.",
"empty_column.community": "Lokalna vremenska crta je prazna. Napišite nešto javno da biste pokrenuli stvari!", "empty_column.community": "Lokalna vremenska crta je prazna. Napišite nešto javno da biste pokrenuli stvari!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Još nema blokiranih domena.", "empty_column.domain_blocks": "Još nema blokiranih domena.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "za boostanje", "keyboard_shortcuts.boost": "za boostanje",
"keyboard_shortcuts.column": "za fokusiranje na toot u jednom od stupaca", "keyboard_shortcuts.column": "za fokusiranje na toot u jednom od stupaca",
"keyboard_shortcuts.compose": "za fokusiranje na tekstualni okvir za stvaranje", "keyboard_shortcuts.compose": "za fokusiranje na tekstualni okvir za stvaranje",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Opis", "keyboard_shortcuts.description": "Opis",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "za pomak dolje na listi", "keyboard_shortcuts.down": "za pomak dolje na listi",
"keyboard_shortcuts.enter": "za otvaranje toota", "keyboard_shortcuts.enter": "za otvaranje toota",
"keyboard_shortcuts.favourite": "za označavanje favoritom", "keyboard_shortcuts.favourite": "za označavanje favoritom",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Lokalna vremenska crta", "navigation_bar.community_timeline": "Lokalna vremenska crta",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Istraživanje", "navigation_bar.discover": "Istraživanje",
"navigation_bar.domain_blocks": "Blokirane domene", "navigation_bar.domain_blocks": "Blokirane domene",
"navigation_bar.edit_profile": "Uredi profil", "navigation_bar.edit_profile": "Uredi profil",

View File

@ -70,7 +70,7 @@
"column.blocks": "Letiltott felhasználók", "column.blocks": "Letiltott felhasználók",
"column.bookmarks": "Könyvjelzők", "column.bookmarks": "Könyvjelzők",
"column.community": "Helyi idővonal", "column.community": "Helyi idővonal",
"column.conversations": "Beszélgetések", "column.direct": "Közvetlen üzenetek",
"column.directory": "Profilok böngészése", "column.directory": "Profilok böngészése",
"column.domain_blocks": "Rejtett domainek", "column.domain_blocks": "Rejtett domainek",
"column.favourites": "Kedvencek", "column.favourites": "Kedvencek",
@ -86,7 +86,7 @@
"column_header.moveLeft_settings": "Oszlop elmozdítása balra", "column_header.moveLeft_settings": "Oszlop elmozdítása balra",
"column_header.moveRight_settings": "Oszlop elmozdítása jobbra", "column_header.moveRight_settings": "Oszlop elmozdítása jobbra",
"column_header.pin": "Kitűzés", "column_header.pin": "Kitűzés",
"column_header.show_settings": "Beállítások mutatása", "column_header.show_settings": "Beállítások megjelenítése",
"column_header.unpin": "Kitűzés eltávolítása", "column_header.unpin": "Kitűzés eltávolítása",
"column_subheading.settings": "Beállítások", "column_subheading.settings": "Beállítások",
"community.column_settings.local_only": "Csak helyi", "community.column_settings.local_only": "Csak helyi",
@ -166,7 +166,7 @@
"empty_column.blocks": "Még senkit sem tiltottál le.", "empty_column.blocks": "Még senkit sem tiltottál le.",
"empty_column.bookmarked_statuses": "Még nincs egyetlen könyvjelzőzött bejegyzésed sem. Ha könyvjelzőzöl egyet, itt fog megjelenni.", "empty_column.bookmarked_statuses": "Még nincs egyetlen könyvjelzőzött bejegyzésed sem. Ha könyvjelzőzöl egyet, itt fog megjelenni.",
"empty_column.community": "A helyi idővonal üres. Tégy közzé valamit nyilvánosan, hogy elindítsd az eseményeket!", "empty_column.community": "A helyi idővonal üres. Tégy közzé valamit nyilvánosan, hogy elindítsd az eseményeket!",
"empty_column.conversations": "Ha olyan bejegyzést küldesz vagy fogadsz, melyet csak az abban megemlítettek látnak, itt fog megjelenni.", "empty_column.direct": "Még nincs egy közvetlen üzeneted sem. Ha küldesz vagy kapsz egyet, itt fog megjelenni.",
"empty_column.domain_blocks": "Még nem rejtettél el egyetlen domaint sem.", "empty_column.domain_blocks": "Még nem rejtettél el egyetlen domaint sem.",
"empty_column.explore_statuses": "Jelenleg semmi sem felkapott. Nézz vissza később!", "empty_column.explore_statuses": "Jelenleg semmi sem felkapott. Nézz vissza később!",
"empty_column.favourited_statuses": "Még nincs egyetlen kedvenc bejegyzésed sem. Ha kedvencnek jelölsz egyet, itt fog megjelenni.", "empty_column.favourited_statuses": "Még nincs egyetlen kedvenc bejegyzésed sem. Ha kedvencnek jelölsz egyet, itt fog megjelenni.",
@ -219,9 +219,9 @@
"hashtag.column_settings.tag_toggle": "Új címkék felvétele ehhez az oszlophoz", "hashtag.column_settings.tag_toggle": "Új címkék felvétele ehhez az oszlophoz",
"home.column_settings.basic": "Alapvető", "home.column_settings.basic": "Alapvető",
"home.column_settings.show_reblogs": "Megtolások mutatása", "home.column_settings.show_reblogs": "Megtolások mutatása",
"home.column_settings.show_replies": "Válaszok mutatása", "home.column_settings.show_replies": "Válaszok megjelenítése",
"home.hide_announcements": "Közlemények elrejtése", "home.hide_announcements": "Közlemények elrejtése",
"home.show_announcements": "Közlemények mutatása", "home.show_announcements": "Közlemények megjelenítése",
"intervals.full.days": "{number, plural, one {# nap} other {# nap}}", "intervals.full.days": "{number, plural, one {# nap} other {# nap}}",
"intervals.full.hours": "{number, plural, one {# óra} other {# óra}}", "intervals.full.hours": "{number, plural, one {# óra} other {# óra}}",
"intervals.full.minutes": "{number, plural, one {# perc} other {# perc}}", "intervals.full.minutes": "{number, plural, one {# perc} other {# perc}}",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Bejegyzés megtolása", "keyboard_shortcuts.boost": "Bejegyzés megtolása",
"keyboard_shortcuts.column": "Fókuszálás egy oszlopra", "keyboard_shortcuts.column": "Fókuszálás egy oszlopra",
"keyboard_shortcuts.compose": "fókuszálás a szerkesztési szövegdobozra", "keyboard_shortcuts.compose": "fókuszálás a szerkesztési szövegdobozra",
"keyboard_shortcuts.conversations": "beszélgetések megnyitása",
"keyboard_shortcuts.description": "Leírás", "keyboard_shortcuts.description": "Leírás",
"keyboard_shortcuts.direct": "közvetlen üzenetek megnyitása",
"keyboard_shortcuts.down": "lefele navigálás a listában", "keyboard_shortcuts.down": "lefele navigálás a listában",
"keyboard_shortcuts.enter": "Bejegyzés megnyitása", "keyboard_shortcuts.enter": "Bejegyzés megnyitása",
"keyboard_shortcuts.favourite": "Bejegyzés kedvencnek jelölése", "keyboard_shortcuts.favourite": "Bejegyzés kedvencnek jelölése",
@ -252,10 +252,10 @@
"keyboard_shortcuts.reply": "Válasz bejegyzésre", "keyboard_shortcuts.reply": "Válasz bejegyzésre",
"keyboard_shortcuts.requests": "követési kérések listájának megnyitása", "keyboard_shortcuts.requests": "követési kérések listájának megnyitása",
"keyboard_shortcuts.search": "fókuszálás a keresőre", "keyboard_shortcuts.search": "fókuszálás a keresőre",
"keyboard_shortcuts.spoilers": "CW mező mutatása/elrejtése", "keyboard_shortcuts.spoilers": "Tartalmi figyelmeztetés mező megjelenítése/elrejtése",
"keyboard_shortcuts.start": "\"Első lépések\" megnyitása", "keyboard_shortcuts.start": "\"Első lépések\" megnyitása",
"keyboard_shortcuts.toggle_hidden": "tartalmi figyelmeztetéssel ellátott szöveg mutatása/elrejtése", "keyboard_shortcuts.toggle_hidden": "Tartalmi figyelmeztetéssel ellátott szöveg megjelenítése/elrejtése",
"keyboard_shortcuts.toggle_sensitivity": "média mutatása/elrejtése", "keyboard_shortcuts.toggle_sensitivity": "Média megjelenítése/elrejtése",
"keyboard_shortcuts.toot": "Új bejegyzés írása", "keyboard_shortcuts.toot": "Új bejegyzés írása",
"keyboard_shortcuts.unfocus": "Szerkesztés/keresés fókuszból való kivétele", "keyboard_shortcuts.unfocus": "Szerkesztés/keresés fókuszból való kivétele",
"keyboard_shortcuts.up": "felfelé mozdítás a listában", "keyboard_shortcuts.up": "felfelé mozdítás a listában",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Könyvjelzők", "navigation_bar.bookmarks": "Könyvjelzők",
"navigation_bar.community_timeline": "Helyi idővonal", "navigation_bar.community_timeline": "Helyi idővonal",
"navigation_bar.compose": "Új bejegyzés írása", "navigation_bar.compose": "Új bejegyzés írása",
"navigation_bar.direct": "Közvetlen üzenetek",
"navigation_bar.discover": "Felfedezés", "navigation_bar.discover": "Felfedezés",
"navigation_bar.domain_blocks": "Rejtett domainek", "navigation_bar.domain_blocks": "Rejtett domainek",
"navigation_bar.edit_profile": "Profil szerkesztése", "navigation_bar.edit_profile": "Profil szerkesztése",
@ -323,7 +324,7 @@
"notifications.column_settings.admin.sign_up": "Új regisztrálók:", "notifications.column_settings.admin.sign_up": "Új regisztrálók:",
"notifications.column_settings.alert": "Asztali értesítések", "notifications.column_settings.alert": "Asztali értesítések",
"notifications.column_settings.favourite": "Kedvencek:", "notifications.column_settings.favourite": "Kedvencek:",
"notifications.column_settings.filter_bar.advanced": "Minden kategória mutatása", "notifications.column_settings.filter_bar.advanced": "Minden kategória megjelenítése",
"notifications.column_settings.filter_bar.category": "Gyorskereső mező", "notifications.column_settings.filter_bar.category": "Gyorskereső mező",
"notifications.column_settings.filter_bar.show_bar": "Szűrősáv mutatása", "notifications.column_settings.filter_bar.show_bar": "Szűrősáv mutatása",
"notifications.column_settings.follow": "Új követők:", "notifications.column_settings.follow": "Új követők:",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Szavazás törlése", "poll_button.remove_poll": "Szavazás törlése",
"privacy.change": "Bejegyzés láthatóságának módosítása", "privacy.change": "Bejegyzés láthatóságának módosítása",
"privacy.direct.long": "Csak a megemlített felhasználóknak látható", "privacy.direct.long": "Csak a megemlített felhasználóknak látható",
"privacy.direct.short": "Csak a megemlítettek", "privacy.direct.short": "Csak megemlítetteknek",
"privacy.private.long": "Csak követőknek látható", "privacy.private.long": "Csak követőknek látható",
"privacy.private.short": "Csak követők", "privacy.private.short": "Csak követők",
"privacy.public.long": "Mindenki számára látható", "privacy.public.long": "Mindenki számára látható",

View File

@ -70,7 +70,7 @@
"column.blocks": "Արգելափակուած օգտատէրեր", "column.blocks": "Արգելափակուած օգտատէրեր",
"column.bookmarks": "Էջանիշեր", "column.bookmarks": "Էջանիշեր",
"column.community": "Տեղական հոսք", "column.community": "Տեղական հոսք",
"column.conversations": "Զրոյցներ", "column.direct": "Direct messages",
"column.directory": "Զննել անձնական էջերը", "column.directory": "Զննել անձնական էջերը",
"column.domain_blocks": "Թաքցուած տիրոյթները", "column.domain_blocks": "Թաքցուած տիրոյթները",
"column.favourites": "Հաւանածներ", "column.favourites": "Հաւանածներ",
@ -166,7 +166,7 @@
"empty_column.blocks": "Դու դեռ ոչ մէկի չես արգելափակել։", "empty_column.blocks": "Դու դեռ ոչ մէկի չես արգելափակել։",
"empty_column.bookmarked_statuses": "Դու դեռ չունես որեւէ էջանշուած գրառում։ Երբ էջանշես, դրանք կը երեւան այստեղ։", "empty_column.bookmarked_statuses": "Դու դեռ չունես որեւէ էջանշուած գրառում։ Երբ էջանշես, դրանք կը երեւան այստեղ։",
"empty_column.community": "Տեղական հոսքը դատարկ է։ Հրապարակային մի բան գրի՛ր շարժիչը գործարկելու համար։", "empty_column.community": "Տեղական հոսքը դատարկ է։ Հրապարակային մի բան գրի՛ր շարժիչը գործարկելու համար։",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Թաքցուած տիրոյթներ դեռ չկան։", "empty_column.domain_blocks": "Թաքցուած տիրոյթներ դեռ չկան։",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Դու դեռ չունես որեւէ հաւանած գրառում։ Երբ հաւանես, դրանք կերեւան այստեղ։", "empty_column.favourited_statuses": "Դու դեռ չունես որեւէ հաւանած գրառում։ Երբ հաւանես, դրանք կերեւան այստեղ։",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "տարածելու համար", "keyboard_shortcuts.boost": "տարածելու համար",
"keyboard_shortcuts.column": "սիւներից մէկի վրայ սեւեռուելու համար", "keyboard_shortcuts.column": "սիւներից մէկի վրայ սեւեռուելու համար",
"keyboard_shortcuts.compose": "շարադրման տիրոյթին սեւեռուելու համար", "keyboard_shortcuts.compose": "շարադրման տիրոյթին սեւեռուելու համար",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Նկարագրութիւն", "keyboard_shortcuts.description": "Նկարագրութիւն",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "ցանկով ներքեւ շարժուելու համար", "keyboard_shortcuts.down": "ցանկով ներքեւ շարժուելու համար",
"keyboard_shortcuts.enter": "Գրառումը բացելու համար", "keyboard_shortcuts.enter": "Գրառումը բացելու համար",
"keyboard_shortcuts.favourite": "հաւանելու համար", "keyboard_shortcuts.favourite": "հաւանելու համար",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Էջանիշեր", "navigation_bar.bookmarks": "Էջանիշեր",
"navigation_bar.community_timeline": "Տեղական հոսք", "navigation_bar.community_timeline": "Տեղական հոսք",
"navigation_bar.compose": "Ստեղծել նոր գրառում", "navigation_bar.compose": "Ստեղծել նոր գրառում",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Բացայայտել", "navigation_bar.discover": "Բացայայտել",
"navigation_bar.domain_blocks": "Թաքցուած տիրոյթներ", "navigation_bar.domain_blocks": "Թաքցուած տիրոյթներ",
"navigation_bar.edit_profile": "Խմբագրել անձնական էջը", "navigation_bar.edit_profile": "Խմբագրել անձնական էջը",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Հեռացնել հարցումը", "poll_button.remove_poll": "Հեռացնել հարցումը",
"privacy.change": "Կարգաւորել գրառման գաղտնիութիւնը", "privacy.change": "Կարգաւորել գրառման գաղտնիութիւնը",
"privacy.direct.long": "Կը տեսնեն միայն նշուած օգտատէրերը", "privacy.direct.long": "Կը տեսնեն միայն նշուած օգտատէրերը",
"privacy.direct.short": "Միայն նշածս մարդիկ", "privacy.direct.short": "Direct",
"privacy.private.long": "Կը տեսնեն միայն հետեւորդները", "privacy.private.long": "Կը տեսնեն միայն հետեւորդները",
"privacy.private.short": "Միայն հետեւողները", "privacy.private.short": "Միայն հետեւողները",
"privacy.public.long": "Տեսանելի բոլորին", "privacy.public.long": "Տեսանելի բոլորին",

View File

@ -70,7 +70,7 @@
"column.blocks": "Pengguna yang diblokir", "column.blocks": "Pengguna yang diblokir",
"column.bookmarks": "Markah", "column.bookmarks": "Markah",
"column.community": "Linimasa Lokal", "column.community": "Linimasa Lokal",
"column.conversations": "Percakapan", "column.direct": "Pesan langsung",
"column.directory": "Jelajahi profil", "column.directory": "Jelajahi profil",
"column.domain_blocks": "Topik tersembunyi", "column.domain_blocks": "Topik tersembunyi",
"column.favourites": "Favorit", "column.favourites": "Favorit",
@ -166,7 +166,7 @@
"empty_column.blocks": "Anda belum memblokir siapapun.", "empty_column.blocks": "Anda belum memblokir siapapun.",
"empty_column.bookmarked_statuses": "Anda belum memiliki toot termarkah. Saat Anda menandainya sebagai markah, ia akan muncul di sini.", "empty_column.bookmarked_statuses": "Anda belum memiliki toot termarkah. Saat Anda menandainya sebagai markah, ia akan muncul di sini.",
"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.conversations": "Saat Anda mengirim atau menerima kiriman yang hanya terlihat oleh orang yang disebutkan, itu 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": "Tidak ada yang sedang tren pada saat ini. Silakan mengecek lagi nanti!", "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.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "untuk menyebarkan", "keyboard_shortcuts.boost": "untuk menyebarkan",
"keyboard_shortcuts.column": "untuk fokus kepada sebuah status di sebuah kolom", "keyboard_shortcuts.column": "untuk fokus kepada sebuah status di sebuah kolom",
"keyboard_shortcuts.compose": "untuk fokus ke area penulisan", "keyboard_shortcuts.compose": "untuk fokus ke area penulisan",
"keyboard_shortcuts.conversations": "untuk membuka kolom percakapan",
"keyboard_shortcuts.description": "Deskripsi", "keyboard_shortcuts.description": "Deskripsi",
"keyboard_shortcuts.direct": "untuk membuka kolom pesan langsung",
"keyboard_shortcuts.down": "untuk pindah ke bawah dalam sebuah daftar", "keyboard_shortcuts.down": "untuk pindah ke bawah dalam sebuah daftar",
"keyboard_shortcuts.enter": "untuk membuka status", "keyboard_shortcuts.enter": "untuk membuka status",
"keyboard_shortcuts.favourite": "untuk memfavoritkan", "keyboard_shortcuts.favourite": "untuk memfavoritkan",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Markah", "navigation_bar.bookmarks": "Markah",
"navigation_bar.community_timeline": "Linimasa lokal", "navigation_bar.community_timeline": "Linimasa lokal",
"navigation_bar.compose": "Tulis toot baru", "navigation_bar.compose": "Tulis toot baru",
"navigation_bar.direct": "Pesan langsung",
"navigation_bar.discover": "Temukan", "navigation_bar.discover": "Temukan",
"navigation_bar.domain_blocks": "Domain tersembunyi", "navigation_bar.domain_blocks": "Domain tersembunyi",
"navigation_bar.edit_profile": "Ubah profil", "navigation_bar.edit_profile": "Ubah profil",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Hapus japat", "poll_button.remove_poll": "Hapus japat",
"privacy.change": "Tentukan privasi status", "privacy.change": "Tentukan privasi status",
"privacy.direct.long": "Kirim hanya ke pengguna yang disebut", "privacy.direct.long": "Kirim hanya ke pengguna yang disebut",
"privacy.direct.short": "Hanya orang yang saya sebut", "privacy.direct.short": "Orang yang disebutkan saja",
"privacy.private.long": "Kirim postingan hanya kepada pengikut", "privacy.private.long": "Kirim postingan hanya kepada pengikut",
"privacy.private.short": "Pengikut saja", "privacy.private.short": "Pengikut saja",
"privacy.public.long": "Terlihat oleh semua", "privacy.public.long": "Terlihat oleh semua",

View File

@ -48,8 +48,8 @@
"account.unmute_notifications": "Desilencigez avizi de @{name}", "account.unmute_notifications": "Desilencigez avizi de @{name}",
"account.unmute_short": "Desilencigez", "account.unmute_short": "Desilencigez",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "Dia uzantoretenseso pos registro",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "Monata uzantoreteneso pos registro",
"admin.dashboard.retention.average": "Averajo", "admin.dashboard.retention.average": "Averajo",
"admin.dashboard.retention.cohort": "Registromonato", "admin.dashboard.retention.cohort": "Registromonato",
"admin.dashboard.retention.cohort_size": "Nova uzanti", "admin.dashboard.retention.cohort_size": "Nova uzanti",
@ -68,116 +68,116 @@
"bundle_modal_error.message": "Nulo ne functionis dum chargar ca kompozaj.", "bundle_modal_error.message": "Nulo ne functionis dum chargar ca kompozaj.",
"bundle_modal_error.retry": "Probez itere", "bundle_modal_error.retry": "Probez itere",
"column.blocks": "Blokusita uzeri", "column.blocks": "Blokusita uzeri",
"column.bookmarks": "Bookmarks", "column.bookmarks": "Libromarki",
"column.community": "Lokala tempolineo", "column.community": "Lokala tempolineo",
"column.conversations": "Conversations", "column.direct": "Direta mesaji",
"column.directory": "Browse profiles", "column.directory": "Videz profili",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.favourites": "Favorati", "column.favourites": "Favorati",
"column.follow_requests": "Demandi di sequado", "column.follow_requests": "Demandi di sequado",
"column.home": "Hemo", "column.home": "Hemo",
"column.lists": "Lists", "column.lists": "Listi",
"column.mutes": "Celita uzeri", "column.mutes": "Celita uzeri",
"column.notifications": "Savigi", "column.notifications": "Savigi",
"column.pins": "Pinned toot", "column.pins": "Pinned toot",
"column.public": "Federata tempolineo", "column.public": "Federata tempolineo",
"column_back_button.label": "Retro", "column_back_button.label": "Retro",
"column_header.hide_settings": "Hide settings", "column_header.hide_settings": "Celez ajusti",
"column_header.moveLeft_settings": "Move column to the left", "column_header.moveLeft_settings": "Movez kolumno a la sinistro",
"column_header.moveRight_settings": "Move column to the right", "column_header.moveRight_settings": "Movez kolumno a la dextro",
"column_header.pin": "Pin", "column_header.pin": "Pinglagez",
"column_header.show_settings": "Show settings", "column_header.show_settings": "Montrez ajusti",
"column_header.unpin": "Unpin", "column_header.unpin": "Depinglagez",
"column_subheading.settings": "Settings", "column_subheading.settings": "Ajusti",
"community.column_settings.local_only": "Local only", "community.column_settings.local_only": "Lokala nur",
"community.column_settings.media_only": "Media only", "community.column_settings.media_only": "Media only",
"community.column_settings.remote_only": "Remote only", "community.column_settings.remote_only": "Fora nur",
"compose_form.direct_message_warning_learn_more": "Learn more", "compose_form.direct_message_warning_learn_more": "Lernez plu",
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.", "compose_form.encryption_warning": "Posti di Mastodon ne intersequante chifrigesas. Ne partigez irga danjera informo che Mastodon.",
"compose_form.hashtag_warning": "This toot won't be listed under any hashtag as it is unlisted. Only public toots can be searched by hashtag.", "compose_form.hashtag_warning": "This toot won't be listed under any hashtag as it is unlisted. Only public toots can be searched by hashtag.",
"compose_form.lock_disclaimer": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.", "compose_form.lock_disclaimer": "Vua konto ne esas {locked}. Irgu povas sequar vu por vidar vua sequanto-nura posti.",
"compose_form.lock_disclaimer.lock": "locked", "compose_form.lock_disclaimer.lock": "klefagesas",
"compose_form.placeholder": "Quo esas en tua spirito?", "compose_form.placeholder": "Quo esas en tua spirito?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Insertez selekto",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Votpostoduro",
"compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.option_placeholder": "Selektato {number}",
"compose_form.poll.remove_option": "Remove this choice", "compose_form.poll.remove_option": "Efacez ca selektajo",
"compose_form.poll.switch_to_multiple": "Change poll to allow multiple choices", "compose_form.poll.switch_to_multiple": "Chanjez votposto por permisar multiselektaji",
"compose_form.poll.switch_to_single": "Change poll to allow for a single choice", "compose_form.poll.switch_to_single": "Chanjez votposto por permisar una selektajo",
"compose_form.publish": "Siflar", "compose_form.publish": "Siflar",
"compose_form.publish_loud": "{publish}!", "compose_form.publish_loud": "{publish}!",
"compose_form.save_changes": "Save changes", "compose_form.save_changes": "Sparez chanji",
"compose_form.sensitive.hide": "{count, plural, one {Mark media as sensitive} other {Mark media as sensitive}}", "compose_form.sensitive.hide": "{count, plural,one {Markigez medii quale privata} other {Markigez medii quale privata}}",
"compose_form.sensitive.marked": "{count, plural, one {Media is marked as sensitive} other {Media is marked as sensitive}}", "compose_form.sensitive.marked": "{count, plural,one {Medii markigesis quale privata} other {Medii markigesis quale privata}}",
"compose_form.sensitive.unmarked": "{count, plural, one {Media is not marked as sensitive} other {Media is not marked as sensitive}}", "compose_form.sensitive.unmarked": "{count, plural,one {Medii ne markigesis quale privata} other {Medii ne markigesis quale privata}}",
"compose_form.spoiler.marked": "Text is hidden behind warning", "compose_form.spoiler.marked": "Text is hidden behind warning",
"compose_form.spoiler.unmarked": "Text is not hidden", "compose_form.spoiler.unmarked": "Text is not hidden",
"compose_form.spoiler_placeholder": "Averto di kontenajo", "compose_form.spoiler_placeholder": "Averto di kontenajo",
"confirmation_modal.cancel": "Cancel", "confirmation_modal.cancel": "Extingez",
"confirmations.block.block_and_report": "Block & Report", "confirmations.block.block_and_report": "Restriktez e Raportigez",
"confirmations.block.confirm": "Block", "confirmations.block.confirm": "Restriktez",
"confirmations.block.message": "Are you sure you want to block {name}?", "confirmations.block.message": "Ka vu certe volas restrikar {name}?",
"confirmations.delete.confirm": "Delete", "confirmations.delete.confirm": "Efacez",
"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": "Efacez",
"confirmations.delete_list.message": "Are you sure you want to permanently delete this list?", "confirmations.delete_list.message": "Ka vu certe volas netempale efacar ca listo?",
"confirmations.discard_edit_media.confirm": "Discard", "confirmations.discard_edit_media.confirm": "Efacez",
"confirmations.discard_edit_media.message": "You have unsaved changes to the media description or preview, discard them anyway?", "confirmations.discard_edit_media.message": "Vu havas nesparita chanji di mediodeskript o prevido, vu volas jus efacar?",
"confirmations.domain_block.confirm": "Hide entire domain", "confirmations.domain_block.confirm": "Hide entire domain",
"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.", "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.",
"confirmations.logout.confirm": "Log out", "confirmations.logout.confirm": "Ekirez",
"confirmations.logout.message": "Are you sure you want to log out?", "confirmations.logout.message": "Ka tu certe volas ekirar?",
"confirmations.mute.confirm": "Mute", "confirmations.mute.confirm": "Silencigez",
"confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.", "confirmations.mute.explanation": "Co celigos posti de oli e posti quo mencionas oli, ma ol ankore permisas oli vidar vua posti e sequar vu.",
"confirmations.mute.message": "Are you sure you want to mute {name}?", "confirmations.mute.message": "Ka vu certe volas silencigar {name}?",
"confirmations.redraft.confirm": "Delete & redraft", "confirmations.redraft.confirm": "Efacez e riskisez",
"confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? You will lose all replies, boosts and favourites to it.", "confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? You will lose all replies, boosts and favourites to it.",
"confirmations.reply.confirm": "Reply", "confirmations.reply.confirm": "Respondez",
"confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?", "confirmations.reply.message": "Respondar nun remplos mesajo quon vu nun igas. Ka vu certe volas durar?",
"confirmations.unfollow.confirm": "Unfollow", "confirmations.unfollow.confirm": "Desequez",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?", "confirmations.unfollow.message": "Ka vu certe volas desequar {name}?",
"conversation.delete": "Delete conversation", "conversation.delete": "Efacez konverso",
"conversation.mark_as_read": "Mark as read", "conversation.mark_as_read": "Markigez quale lektita",
"conversation.open": "View conversation", "conversation.open": "Videz konverso",
"conversation.with": "With {names}", "conversation.with": "Kun {names}",
"directory.federated": "From known fediverse", "directory.federated": "De savita fediverso",
"directory.local": "From {domain} only", "directory.local": "De {domain} nur",
"directory.new_arrivals": "New arrivals", "directory.new_arrivals": "Nova venanti",
"directory.recently_active": "Recently active", "directory.recently_active": "Recenta aktivo",
"embed.instructions": "Embed this status on your website by copying the code below.", "embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:", "embed.preview": "Co esas quon ol semblos tale:",
"emoji_button.activity": "Activity", "emoji_button.activity": "Ago",
"emoji_button.custom": "Custom", "emoji_button.custom": "Kustumizato",
"emoji_button.flags": "Flags", "emoji_button.flags": "Flagi",
"emoji_button.food": "Food & Drink", "emoji_button.food": "Manjajo & Drinkajo",
"emoji_button.label": "Insertar emoji", "emoji_button.label": "Insertar emoji",
"emoji_button.nature": "Nature", "emoji_button.nature": "Naturo",
"emoji_button.not_found": "No matching emojis found", "emoji_button.not_found": "Nula tala parigata emojii",
"emoji_button.objects": "Objects", "emoji_button.objects": "Kozi",
"emoji_button.people": "People", "emoji_button.people": "Personi",
"emoji_button.recent": "Frequently used", "emoji_button.recent": "Ofta uzato",
"emoji_button.search": "Search...", "emoji_button.search": "Trovez...",
"emoji_button.search_results": "Search results", "emoji_button.search_results": "Trovuri",
"emoji_button.symbols": "Symbols", "emoji_button.symbols": "Simboli",
"emoji_button.travel": "Travel & Places", "emoji_button.travel": "Vizito & Plasi",
"empty_column.account_suspended": "Account suspended", "empty_column.account_suspended": "Konto restriktesis",
"empty_column.account_timeline": "No toots here!", "empty_column.account_timeline": "No toots here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profilo esas nedisponebla",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "Vu ne restriktis irga uzanti til nun.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"empty_column.community": "La lokala tempolineo esas vakua. Skribez ulo publike por iniciar la agiveso!", "empty_column.community": "La lokala tempolineo esas vakua. Skribez ulo publike por iniciar la agiveso!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "Vu ne havas irga direta mesaji til nun. Kande vu sendas o ganas, ol montresos hike.",
"empty_column.domain_blocks": "There are no hidden domains yet.", "empty_column.domain_blocks": "There are no hidden domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nulo esas tendenca nun. Videz itere pose!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
"empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.", "empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
"empty_column.follow_recommendations": "Looks like no suggestions could be generated for you. You can try using search to look for people you might know or explore trending hashtags.", "empty_column.follow_recommendations": "Semblas tale nula sugestato povas facesar por vu. Vu povas probar trovar personi quon vu forsan konocas o exploras tendenca hashtagi.",
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.", "empty_column.follow_requests": "Vu ne havas irga sequodemandi til nun. Kande vu ganas talo, ol montresos hike.",
"empty_column.hashtag": "Esas ankore nulo en ta gretovorto.", "empty_column.hashtag": "Esas ankore nulo en ta gretovorto.",
"empty_column.home": "Tu sequas ankore nulu. Vizitez {public} od uzez la serchilo por komencar e renkontrar altra uzeri.", "empty_column.home": "Tu sequas ankore nulu. Vizitez {public} od uzez la serchilo por komencar e renkontrar altra uzeri.",
"empty_column.home.suggestions": "See some suggestions", "empty_column.home.suggestions": "Videz ula sugestati",
"empty_column.list": "There is nothing in this list yet.", "empty_column.list": "There is nothing in this list yet.",
"empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.", "empty_column.lists": "Vu ne havas irga listi til nun. Kande vu kreas talo, ol montresos hike.",
"empty_column.mutes": "You haven't muted any users yet.", "empty_column.mutes": "You haven't muted any users yet.",
"empty_column.notifications": "Tu havas ankore nula savigo. Komunikez kun altri por debutar la konverso.", "empty_column.notifications": "Tu havas ankore nula savigo. Komunikez kun altri por debutar la konverso.",
"empty_column.public": "Esas nulo hike! Skribez ulo publike, o manuale sequez uzeri de altra instaluri por plenigar ol.", "empty_column.public": "Esas nulo hike! Skribez ulo publike, o manuale sequez uzeri de altra instaluri por plenigar ol.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "apertar kolumno di direta mesaji",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Lokala tempolineo", "navigation_bar.community_timeline": "Lokala tempolineo",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direta mesaji",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "Modifikar profilo", "navigation_bar.edit_profile": "Modifikar profilo",

View File

@ -70,7 +70,7 @@
"column.blocks": "Útilokaðir notendur", "column.blocks": "Útilokaðir notendur",
"column.bookmarks": "Bókamerki", "column.bookmarks": "Bókamerki",
"column.community": "Staðvær tímalína", "column.community": "Staðvær tímalína",
"column.conversations": "Samtöl", "column.direct": "Bein skilaboð",
"column.directory": "Vafra notandasnið", "column.directory": "Vafra notandasnið",
"column.domain_blocks": "Útilokuð lén", "column.domain_blocks": "Útilokuð lén",
"column.favourites": "Eftirlæti", "column.favourites": "Eftirlæti",
@ -166,7 +166,7 @@
"empty_column.blocks": "Þú hefur ekki ennþá útilokað neina notendur.", "empty_column.blocks": "Þú hefur ekki ennþá útilokað neina notendur.",
"empty_column.bookmarked_statuses": "Þú ert ekki ennþá með neinar bókamerktar færslur. Þegar þú bókamerkir færslu, mun það birtast hér.", "empty_column.bookmarked_statuses": "Þú ert ekki ennþá með neinar bókamerktar færslur. Þegar þú bókamerkir færslu, mun það birtast hér.",
"empty_column.community": "Staðværa tímalínan er tóm. Skrifaðu eitthvað opinberlega til að láta boltann fara að rúlla!", "empty_column.community": "Staðværa tímalínan er tóm. Skrifaðu eitthvað opinberlega til að láta boltann fara að rúlla!",
"empty_column.conversations": "Þegar þú hefur sent eða móttekið færslu sem er aðeins sýnileg fólki sem nefnt er í henni þá birtist hún hér.", "empty_column.direct": "Þú átt ennþá engin bein skilaboð. Þegar þú sendir eða tekur á móti slíkum skilaboðum, munu þau birtast hér.",
"empty_column.domain_blocks": "Það eru ennþá engin útilokuð lén.", "empty_column.domain_blocks": "Það eru ennþá engin útilokuð lén.",
"empty_column.explore_statuses": "Ekkert er á uppleið í augnablikinu. Athugaðu aftur síðar!", "empty_column.explore_statuses": "Ekkert er á uppleið í augnablikinu. Athugaðu aftur síðar!",
"empty_column.favourited_statuses": "Þú ert ekki ennþá með neinar eftirlætisfærslur. Þegar þú setur færslu í eftirlæti, munu þau birtast hér.", "empty_column.favourited_statuses": "Þú ert ekki ennþá með neinar eftirlætisfærslur. Þegar þú setur færslu í eftirlæti, munu þau birtast hér.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Endurbirta færslu", "keyboard_shortcuts.boost": "Endurbirta færslu",
"keyboard_shortcuts.column": "Setja virkni í dálk", "keyboard_shortcuts.column": "Setja virkni í dálk",
"keyboard_shortcuts.compose": "Setja virkni á textainnsetningarreit", "keyboard_shortcuts.compose": "Setja virkni á textainnsetningarreit",
"keyboard_shortcuts.conversations": "að opna samtalsdálka",
"keyboard_shortcuts.description": "Lýsing", "keyboard_shortcuts.description": "Lýsing",
"keyboard_shortcuts.direct": "að opna dálk með beinum skilaboðum",
"keyboard_shortcuts.down": "Fara neðar í listanum", "keyboard_shortcuts.down": "Fara neðar í listanum",
"keyboard_shortcuts.enter": "Opna færslu", "keyboard_shortcuts.enter": "Opna færslu",
"keyboard_shortcuts.favourite": "Eftirlætisfærsla", "keyboard_shortcuts.favourite": "Eftirlætisfærsla",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bókamerki", "navigation_bar.bookmarks": "Bókamerki",
"navigation_bar.community_timeline": "Staðvær tímalína", "navigation_bar.community_timeline": "Staðvær tímalína",
"navigation_bar.compose": "Semja nýja færslu", "navigation_bar.compose": "Semja nýja færslu",
"navigation_bar.direct": "Bein skilaboð",
"navigation_bar.discover": "Uppgötva", "navigation_bar.discover": "Uppgötva",
"navigation_bar.domain_blocks": "Útilokuð lén", "navigation_bar.domain_blocks": "Útilokuð lén",
"navigation_bar.edit_profile": "Breyta notandasniði", "navigation_bar.edit_profile": "Breyta notandasniði",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Fjarlægja könnun", "poll_button.remove_poll": "Fjarlægja könnun",
"privacy.change": "Aðlaga gagnaleynd færslu", "privacy.change": "Aðlaga gagnaleynd færslu",
"privacy.direct.long": "Senda einungis á notendur sem minnst er á", "privacy.direct.long": "Senda einungis á notendur sem minnst er á",
"privacy.direct.short": "Aðeins fólk sem ég minnist á", "privacy.direct.short": "Aðeins fólk sem minnst er á",
"privacy.private.long": "Senda einungis á fylgjendur", "privacy.private.long": "Senda einungis á fylgjendur",
"privacy.private.short": "Einungis fylgjendur", "privacy.private.short": "Einungis fylgjendur",
"privacy.public.long": "Sýnilegt fyrir alla", "privacy.public.long": "Sýnilegt fyrir alla",

View File

@ -70,7 +70,7 @@
"column.blocks": "Utenti bloccati", "column.blocks": "Utenti bloccati",
"column.bookmarks": "Segnalibri", "column.bookmarks": "Segnalibri",
"column.community": "Timeline locale", "column.community": "Timeline locale",
"column.conversations": "Conversazioni", "column.direct": "Messaggi diretti",
"column.directory": "Sfoglia profili", "column.directory": "Sfoglia profili",
"column.domain_blocks": "Domini bloccati", "column.domain_blocks": "Domini bloccati",
"column.favourites": "Preferiti", "column.favourites": "Preferiti",
@ -166,7 +166,7 @@
"empty_column.blocks": "Non hai ancora bloccato alcun utente.", "empty_column.blocks": "Non hai ancora bloccato alcun utente.",
"empty_column.bookmarked_statuses": "Non hai ancora segnato alcun post. Quando ne segni uno, sarà mostrato qui.", "empty_column.bookmarked_statuses": "Non hai ancora segnato alcun post. Quando ne segni uno, sarà mostrato qui.",
"empty_column.community": "La timeline locale è vuota. Condividi qualcosa pubblicamente per dare inizio alla festa!", "empty_column.community": "La timeline locale è vuota. Condividi qualcosa pubblicamente per dare inizio alla festa!",
"empty_column.conversations": "Quando invii o ricevi un post visibile solo alle persone citate in esso, apparirà qui.", "empty_column.direct": "Non hai ancora nessun messaggio diretto. Quando ne manderai o riceverai qualcuno, apparirà qui.",
"empty_column.domain_blocks": "Non vi sono domini nascosti.", "empty_column.domain_blocks": "Non vi sono domini nascosti.",
"empty_column.explore_statuses": "Nulla è in tendenza in questo momento. Riprova più tardi!", "empty_column.explore_statuses": "Nulla è in tendenza in questo momento. Riprova più tardi!",
"empty_column.favourited_statuses": "Non hai ancora segnato nessun post come apprezzato. Quando lo farai, comparirà qui.", "empty_column.favourited_statuses": "Non hai ancora segnato nessun post come apprezzato. Quando lo farai, comparirà qui.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Condividi il post", "keyboard_shortcuts.boost": "Condividi il post",
"keyboard_shortcuts.column": "per portare il focus su uno status in una delle colonne", "keyboard_shortcuts.column": "per portare il focus su uno status in una delle colonne",
"keyboard_shortcuts.compose": "per portare il focus nell'area di composizione", "keyboard_shortcuts.compose": "per portare il focus nell'area di composizione",
"keyboard_shortcuts.conversations": "per aprire la colonna conversazioni",
"keyboard_shortcuts.description": "Descrizione", "keyboard_shortcuts.description": "Descrizione",
"keyboard_shortcuts.direct": "per aprire la colonna dei messaggi diretti",
"keyboard_shortcuts.down": "Spostati in basso nella lista", "keyboard_shortcuts.down": "Spostati in basso nella lista",
"keyboard_shortcuts.enter": "Apri il post", "keyboard_shortcuts.enter": "Apri il post",
"keyboard_shortcuts.favourite": "Apprezza post", "keyboard_shortcuts.favourite": "Apprezza post",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Segnalibri", "navigation_bar.bookmarks": "Segnalibri",
"navigation_bar.community_timeline": "Timeline locale", "navigation_bar.community_timeline": "Timeline locale",
"navigation_bar.compose": "Componi nuovo toot", "navigation_bar.compose": "Componi nuovo toot",
"navigation_bar.direct": "Messaggi diretti",
"navigation_bar.discover": "Scopri", "navigation_bar.discover": "Scopri",
"navigation_bar.domain_blocks": "Domini nascosti", "navigation_bar.domain_blocks": "Domini nascosti",
"navigation_bar.edit_profile": "Modifica profilo", "navigation_bar.edit_profile": "Modifica profilo",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Rimuovi sondaggio", "poll_button.remove_poll": "Rimuovi sondaggio",
"privacy.change": "Modifica privacy del post", "privacy.change": "Modifica privacy del post",
"privacy.direct.long": "Invia solo a utenti menzionati", "privacy.direct.long": "Invia solo a utenti menzionati",
"privacy.direct.short": "Solo le persone che menziono", "privacy.direct.short": "Solo persone citate",
"privacy.private.long": "Invia solo ai follower", "privacy.private.long": "Invia solo ai follower",
"privacy.private.short": "Solo i seguaci", "privacy.private.short": "Solo i seguaci",
"privacy.public.long": "Visibile a tutti", "privacy.public.long": "Visibile a tutti",

View File

@ -70,7 +70,7 @@
"column.blocks": "ブロックしたユーザー", "column.blocks": "ブロックしたユーザー",
"column.bookmarks": "ブックマーク", "column.bookmarks": "ブックマーク",
"column.community": "ローカルタイムライン", "column.community": "ローカルタイムライン",
"column.conversations": "会話", "column.direct": "ダイレクトメッセージ",
"column.directory": "ディレクトリ", "column.directory": "ディレクトリ",
"column.domain_blocks": "ブロックしたドメイン", "column.domain_blocks": "ブロックしたドメイン",
"column.favourites": "お気に入り", "column.favourites": "お気に入り",
@ -170,7 +170,7 @@
"empty_column.blocks": "まだ誰もブロックしていません。", "empty_column.blocks": "まだ誰もブロックしていません。",
"empty_column.bookmarked_statuses": "まだ何もブックマーク登録していません。ブックマーク登録するとここに表示されます。", "empty_column.bookmarked_statuses": "まだ何もブックマーク登録していません。ブックマーク登録するとここに表示されます。",
"empty_column.community": "ローカルタイムラインはまだ使われていません。何か書いてみましょう!", "empty_column.community": "ローカルタイムラインはまだ使われていません。何か書いてみましょう!",
"empty_column.conversations": "メンションした相手にだけ表示されるメッセージを一度でも送受信した場合、ここに表示されます。", "empty_column.direct": "ダイレクトメッセージはまだありません。ダイレクトメッセージをやりとりすると、ここに表示されます。",
"empty_column.domain_blocks": "ブロックしているドメインはありません。", "empty_column.domain_blocks": "ブロックしているドメインはありません。",
"empty_column.explore_statuses": "まだ何もありません。後で確認してください。", "empty_column.explore_statuses": "まだ何もありません。後で確認してください。",
"empty_column.favourited_statuses": "まだ何もお気に入り登録していません。お気に入り登録するとここに表示されます。", "empty_column.favourited_statuses": "まだ何もお気に入り登録していません。お気に入り登録するとここに表示されます。",
@ -234,8 +234,8 @@
"keyboard_shortcuts.boost": "ブースト", "keyboard_shortcuts.boost": "ブースト",
"keyboard_shortcuts.column": "左からn番目のカラムの最新に移動", "keyboard_shortcuts.column": "左からn番目のカラムの最新に移動",
"keyboard_shortcuts.compose": "投稿の入力欄に移動", "keyboard_shortcuts.compose": "投稿の入力欄に移動",
"keyboard_shortcuts.conversations": "会話カラムを開く",
"keyboard_shortcuts.description": "説明", "keyboard_shortcuts.description": "説明",
"keyboard_shortcuts.direct": "ダイレクトメッセージのカラムを開く",
"keyboard_shortcuts.down": "カラム内一つ下に移動", "keyboard_shortcuts.down": "カラム内一つ下に移動",
"keyboard_shortcuts.enter": "投稿の詳細を表示", "keyboard_shortcuts.enter": "投稿の詳細を表示",
"keyboard_shortcuts.favourite": "お気に入り", "keyboard_shortcuts.favourite": "お気に入り",
@ -294,6 +294,7 @@
"navigation_bar.bookmarks": "ブックマーク", "navigation_bar.bookmarks": "ブックマーク",
"navigation_bar.community_timeline": "ローカルタイムライン", "navigation_bar.community_timeline": "ローカルタイムライン",
"navigation_bar.compose": "投稿の新規作成", "navigation_bar.compose": "投稿の新規作成",
"navigation_bar.direct": "ダイレクトメッセージ",
"navigation_bar.discover": "見つける", "navigation_bar.discover": "見つける",
"navigation_bar.domain_blocks": "ブロックしたドメイン", "navigation_bar.domain_blocks": "ブロックしたドメイン",
"navigation_bar.edit_profile": "プロフィールを編集", "navigation_bar.edit_profile": "プロフィールを編集",
@ -370,8 +371,8 @@
"poll_button.add_poll": "アンケートを追加", "poll_button.add_poll": "アンケートを追加",
"poll_button.remove_poll": "アンケートを削除", "poll_button.remove_poll": "アンケートを削除",
"privacy.change": "公開範囲を変更", "privacy.change": "公開範囲を変更",
"privacy.direct.long": "送信した相手のみ閲覧可", "privacy.direct.long": "指定された相手のみ閲覧可",
"privacy.direct.short": "メンションした相手のみ", "privacy.direct.short": "指定された相手のみ",
"privacy.private.long": "フォロワーのみ閲覧可", "privacy.private.long": "フォロワーのみ閲覧可",
"privacy.private.short": "フォロワーのみ", "privacy.private.short": "フォロワーのみ",
"privacy.public.long": "誰でも閲覧可", "privacy.public.long": "誰でも閲覧可",

View File

@ -70,7 +70,7 @@
"column.blocks": "დაბლოკილი მომხმარებლები", "column.blocks": "დაბლოკილი მომხმარებლები",
"column.bookmarks": "Bookmarks", "column.bookmarks": "Bookmarks",
"column.community": "ლოკალური თაიმლაინი", "column.community": "ლოკალური თაიმლაინი",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Browse profiles", "column.directory": "Browse profiles",
"column.domain_blocks": "დამალული დომენები", "column.domain_blocks": "დამალული დომენები",
"column.favourites": "ფავორიტები", "column.favourites": "ფავორიტები",
@ -166,7 +166,7 @@
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"empty_column.community": "ლოკალური თაიმლაინი ცარიელია. დაწერეთ რაიმე ღიად ან ქენით რაიმე სხვა!", "empty_column.community": "ლოკალური თაიმლაინი ცარიელია. დაწერეთ რაიმე ღიად ან ქენით რაიმე სხვა!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "There are no hidden domains yet.", "empty_column.domain_blocks": "There are no hidden domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "დასაბუსტად", "keyboard_shortcuts.boost": "დასაბუსტად",
"keyboard_shortcuts.column": "ერთ-ერთი სვეტში სტატუსზე ფოკუსირებისთვის", "keyboard_shortcuts.column": "ერთ-ერთი სვეტში სტატუსზე ფოკუსირებისთვის",
"keyboard_shortcuts.compose": "შედგენის ტექსტ-არეაზე ფოკუსირებისთვის", "keyboard_shortcuts.compose": "შედგენის ტექსტ-არეაზე ფოკუსირებისთვის",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "აღწერილობა", "keyboard_shortcuts.description": "აღწერილობა",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "სიაში ქვემოთ გადასაადგილებლად", "keyboard_shortcuts.down": "სიაში ქვემოთ გადასაადგილებლად",
"keyboard_shortcuts.enter": "სტატუსის გასახსნელად", "keyboard_shortcuts.enter": "სტატუსის გასახსნელად",
"keyboard_shortcuts.favourite": "ფავორიტად ქცევისთვის", "keyboard_shortcuts.favourite": "ფავორიტად ქცევისთვის",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "ლოკალური თაიმლაინი", "navigation_bar.community_timeline": "ლოკალური თაიმლაინი",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "აღმოაჩინე", "navigation_bar.discover": "აღმოაჩინე",
"navigation_bar.domain_blocks": "დამალული დომენები", "navigation_bar.domain_blocks": "დამალული დომენები",
"navigation_bar.edit_profile": "შეცვალე პროფილი", "navigation_bar.edit_profile": "შეცვალე პროფილი",

View File

@ -70,7 +70,7 @@
"column.blocks": "Imiḍanen yettusḥebsen", "column.blocks": "Imiḍanen yettusḥebsen",
"column.bookmarks": "Ticraḍ", "column.bookmarks": "Ticraḍ",
"column.community": "Tasuddemt tadigant", "column.community": "Tasuddemt tadigant",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Inig deg imaɣnuten", "column.directory": "Inig deg imaɣnuten",
"column.domain_blocks": "Taɣulin yeffren", "column.domain_blocks": "Taɣulin yeffren",
"column.favourites": "Ismenyifen", "column.favourites": "Ismenyifen",
@ -166,7 +166,7 @@
"empty_column.blocks": "Ur tesḥebseḍ ula yiwen n umseqdac ar tura.", "empty_column.blocks": "Ur tesḥebseḍ ula yiwen n umseqdac ar tura.",
"empty_column.bookmarked_statuses": "Ulac tijewwaqin i terniḍ ɣer yismenyifen-ik ar tura. Ticki terniḍ yiwet, ad d-tettwasken da.", "empty_column.bookmarked_statuses": "Ulac tijewwaqin i terniḍ ɣer yismenyifen-ik ar tura. Ticki terniḍ yiwet, ad d-tettwasken da.",
"empty_column.community": "Tasuddemt tazayezt tadigant n yisallen d tilemt. Aru ihi kra akken ad tt-teččareḍ!", "empty_column.community": "Tasuddemt tazayezt tadigant n yisallen d tilemt. Aru ihi kra akken ad tt-teččareḍ!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Ulac kra n taɣult yettwaffren ar tura.", "empty_column.domain_blocks": "Ulac kra n taɣult yettwaffren ar tura.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Ulac ula yiwet n tjewwaqt deg yismenyifen-ik ar tura. Ticki Tella-d yiwet, ad d-ban da.", "empty_column.favourited_statuses": "Ulac ula yiwet n tjewwaqt deg yismenyifen-ik ar tura. Ticki Tella-d yiwet, ad d-ban da.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "i beṭṭu tikelt-nniḍen", "keyboard_shortcuts.boost": "i beṭṭu tikelt-nniḍen",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Aglam", "keyboard_shortcuts.description": "Aglam",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "i kennu ɣer wadda n tebdart", "keyboard_shortcuts.down": "i kennu ɣer wadda n tebdart",
"keyboard_shortcuts.enter": "i tildin n tsuffeɣt", "keyboard_shortcuts.enter": "i tildin n tsuffeɣt",
"keyboard_shortcuts.favourite": "akken ad ternuḍ ɣer yismenyifen", "keyboard_shortcuts.favourite": "akken ad ternuḍ ɣer yismenyifen",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Ticraḍ", "navigation_bar.bookmarks": "Ticraḍ",
"navigation_bar.community_timeline": "Tasuddemt tadigant", "navigation_bar.community_timeline": "Tasuddemt tadigant",
"navigation_bar.compose": "Aru tajewwiqt tamaynut", "navigation_bar.compose": "Aru tajewwiqt tamaynut",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Ẓer", "navigation_bar.discover": "Ẓer",
"navigation_bar.domain_blocks": "Tiɣula yeffren", "navigation_bar.domain_blocks": "Tiɣula yeffren",
"navigation_bar.edit_profile": "Ẓreg amaɣnu", "navigation_bar.edit_profile": "Ẓreg amaɣnu",

View File

@ -70,7 +70,7 @@
"column.blocks": "Бұғатталғандар", "column.blocks": "Бұғатталғандар",
"column.bookmarks": "Бетбелгілер", "column.bookmarks": "Бетбелгілер",
"column.community": "Жергілікті желі", "column.community": "Жергілікті желі",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Профильдерді аралау", "column.directory": "Профильдерді аралау",
"column.domain_blocks": "Жасырылған домендер", "column.domain_blocks": "Жасырылған домендер",
"column.favourites": "Таңдаулылар", "column.favourites": "Таңдаулылар",
@ -166,7 +166,7 @@
"empty_column.blocks": "Ешкімді бұғаттамағансыз.", "empty_column.blocks": "Ешкімді бұғаттамағансыз.",
"empty_column.bookmarked_statuses": "Ешқандай жазба Бетбелгілер тізіміне қосылмапты. Қосылғаннан кейін осында жинала бастайды.", "empty_column.bookmarked_statuses": "Ешқандай жазба Бетбелгілер тізіміне қосылмапты. Қосылғаннан кейін осында жинала бастайды.",
"empty_column.community": "Жергілікті желі бос. Сіз бастап жазыңыз!", "empty_column.community": "Жергілікті желі бос. Сіз бастап жазыңыз!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Бұғатталған домен жоқ.", "empty_column.domain_blocks": "Бұғатталған домен жоқ.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Ешқандай жазба 'Таңдаулылар' тізіміне қосылмапты. Қосылғаннан кейін осында жинала бастайды.", "empty_column.favourited_statuses": "Ешқандай жазба 'Таңдаулылар' тізіміне қосылмапты. Қосылғаннан кейін осында жинала бастайды.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "жазба бөлісу", "keyboard_shortcuts.boost": "жазба бөлісу",
"keyboard_shortcuts.column": "бағандардағы жазбаны оқу", "keyboard_shortcuts.column": "бағандардағы жазбаны оқу",
"keyboard_shortcuts.compose": "пост жазу", "keyboard_shortcuts.compose": "пост жазу",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Сипаттама", "keyboard_shortcuts.description": "Сипаттама",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "тізімде төмен түсу", "keyboard_shortcuts.down": "тізімде төмен түсу",
"keyboard_shortcuts.enter": "жазбаны ашу", "keyboard_shortcuts.enter": "жазбаны ашу",
"keyboard_shortcuts.favourite": "таңдаулыға қосу", "keyboard_shortcuts.favourite": "таңдаулыға қосу",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Бетбелгілер", "navigation_bar.bookmarks": "Бетбелгілер",
"navigation_bar.community_timeline": "Жергілікті желі", "navigation_bar.community_timeline": "Жергілікті желі",
"navigation_bar.compose": "Жаңа жазба бастау", "navigation_bar.compose": "Жаңа жазба бастау",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "шарлау", "navigation_bar.discover": "шарлау",
"navigation_bar.domain_blocks": "Жабық домендер", "navigation_bar.domain_blocks": "Жабық домендер",
"navigation_bar.edit_profile": "Профиль түзету", "navigation_bar.edit_profile": "Профиль түзету",

View File

@ -70,7 +70,7 @@
"column.blocks": "Blocked users", "column.blocks": "Blocked users",
"column.bookmarks": "Bookmarks", "column.bookmarks": "Bookmarks",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Browse profiles", "column.directory": "Browse profiles",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.favourites": "Favourites", "column.favourites": "Favourites",
@ -166,7 +166,7 @@
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"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.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "There are no hidden domains yet.", "empty_column.domain_blocks": "There are no hidden domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "Edit profile", "navigation_bar.edit_profile": "Edit profile",

View File

@ -70,7 +70,7 @@
"column.blocks": "차단한 사용자", "column.blocks": "차단한 사용자",
"column.bookmarks": "보관함", "column.bookmarks": "보관함",
"column.community": "로컬 타임라인", "column.community": "로컬 타임라인",
"column.conversations": "대화", "column.direct": "다이렉트 메시지",
"column.directory": "프로필 둘러보기", "column.directory": "프로필 둘러보기",
"column.domain_blocks": "차단한 도메인", "column.domain_blocks": "차단한 도메인",
"column.favourites": "좋아요", "column.favourites": "좋아요",
@ -93,7 +93,7 @@
"community.column_settings.media_only": "미디어만", "community.column_settings.media_only": "미디어만",
"community.column_settings.remote_only": "원격만", "community.column_settings.remote_only": "원격만",
"compose_form.direct_message_warning_learn_more": "더 알아보기", "compose_form.direct_message_warning_learn_more": "더 알아보기",
"compose_form.encryption_warning": "마스토돈의 게시물들은 종단간 암호화가 되지 않습니. 위험한 정보를 마스토돈을 통해 전달하지 마세요.", "compose_form.encryption_warning": "마스토돈의 게시물들은 종단간 암호화가 되지 않습니. 위험한 정보를 마스토돈을 통해 전달하지 마세요.",
"compose_form.hashtag_warning": "이 게시물은 어떤 해시태그로도 검색 되지 않습니다. 전체공개로 게시 된 게시물만이 해시태그로 검색 될 수 있습니다.", "compose_form.hashtag_warning": "이 게시물은 어떤 해시태그로도 검색 되지 않습니다. 전체공개로 게시 된 게시물만이 해시태그로 검색 될 수 있습니다.",
"compose_form.lock_disclaimer": "이 계정은 {locked}로 설정 되어 있지 않습니다. 누구나 이 계정을 팔로우 할 수 있으며, 팔로워 공개의 포스팅을 볼 수 있습니다.", "compose_form.lock_disclaimer": "이 계정은 {locked}로 설정 되어 있지 않습니다. 누구나 이 계정을 팔로우 할 수 있으며, 팔로워 공개의 포스팅을 볼 수 있습니다.",
"compose_form.lock_disclaimer.lock": "비공개", "compose_form.lock_disclaimer.lock": "비공개",
@ -166,7 +166,7 @@
"empty_column.blocks": "아직 아무도 차단하지 않았습니다.", "empty_column.blocks": "아직 아무도 차단하지 않았습니다.",
"empty_column.bookmarked_statuses": "아직 보관한 게시물이 없습니다. 게시물을 보관하면 여기에 나타납니다.", "empty_column.bookmarked_statuses": "아직 보관한 게시물이 없습니다. 게시물을 보관하면 여기에 나타납니다.",
"empty_column.community": "로컬 타임라인에 아무 것도 없습니다. 아무거나 적어 보세요!", "empty_column.community": "로컬 타임라인에 아무 것도 없습니다. 아무거나 적어 보세요!",
"empty_column.conversations": "멘션한 사람만 볼 수 있는 게시물을 보내거나 받은 경우에, 여기에 나타납니다.", "empty_column.direct": "아직 다이렉트 메시지가 없습니다. 다이렉트 메시지를 보내거나 받은 경우, 여기에 표시 됩니다.",
"empty_column.domain_blocks": "아직 차단한 도메인이 없습니다.", "empty_column.domain_blocks": "아직 차단한 도메인이 없습니다.",
"empty_column.explore_statuses": "아직 유행하는 것이 없습니다. 나중에 다시 확인하세요!", "empty_column.explore_statuses": "아직 유행하는 것이 없습니다. 나중에 다시 확인하세요!",
"empty_column.favourited_statuses": "아직 마음에 들어한 게시물이 없습니다. 게시물을 좋아요 하면 여기에 나타납니다.", "empty_column.favourited_statuses": "아직 마음에 들어한 게시물이 없습니다. 게시물을 좋아요 하면 여기에 나타납니다.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "게시물 부스트", "keyboard_shortcuts.boost": "게시물 부스트",
"keyboard_shortcuts.column": "해당 컬럼에 포커스", "keyboard_shortcuts.column": "해당 컬럼에 포커스",
"keyboard_shortcuts.compose": "작성창에 포커스", "keyboard_shortcuts.compose": "작성창에 포커스",
"keyboard_shortcuts.conversations": "대화 컬럼 열기",
"keyboard_shortcuts.description": "설명", "keyboard_shortcuts.description": "설명",
"keyboard_shortcuts.direct": "다이렉트 메시지 컬럼 열기",
"keyboard_shortcuts.down": "리스트에서 아래로 이동", "keyboard_shortcuts.down": "리스트에서 아래로 이동",
"keyboard_shortcuts.enter": "게시물 열기", "keyboard_shortcuts.enter": "게시물 열기",
"keyboard_shortcuts.favourite": "관심글 지정", "keyboard_shortcuts.favourite": "관심글 지정",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "보관함", "navigation_bar.bookmarks": "보관함",
"navigation_bar.community_timeline": "로컬 타임라인", "navigation_bar.community_timeline": "로컬 타임라인",
"navigation_bar.compose": "새 게시물 작성", "navigation_bar.compose": "새 게시물 작성",
"navigation_bar.direct": "다이렉트 메시지",
"navigation_bar.discover": "발견하기", "navigation_bar.discover": "발견하기",
"navigation_bar.domain_blocks": "차단한 도메인", "navigation_bar.domain_blocks": "차단한 도메인",
"navigation_bar.edit_profile": "프로필 편집", "navigation_bar.edit_profile": "프로필 편집",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "투표 삭제", "poll_button.remove_poll": "투표 삭제",
"privacy.change": "게시물의 프라이버시 설정을 변경", "privacy.change": "게시물의 프라이버시 설정을 변경",
"privacy.direct.long": "멘션한 사용자에게만 공개", "privacy.direct.long": "멘션한 사용자에게만 공개",
"privacy.direct.short": "내가 멘션한 사람만", "privacy.direct.short": "멘션한 사람만",
"privacy.private.long": "팔로워에게만 공개", "privacy.private.long": "팔로워에게만 공개",
"privacy.private.short": "팔로워 전용", "privacy.private.short": "팔로워 전용",
"privacy.public.long": "모두가 볼 수 있음", "privacy.public.long": "모두가 볼 수 있음",

View File

@ -70,7 +70,7 @@
"column.blocks": "Bikarhênerên astengkirî", "column.blocks": "Bikarhênerên astengkirî",
"column.bookmarks": "Şûnpel", "column.bookmarks": "Şûnpel",
"column.community": "Demnameya herêmî", "column.community": "Demnameya herêmî",
"column.conversations": "Axaftin", "column.direct": "Peyamên rasterast",
"column.directory": "Li profîlan bigere", "column.directory": "Li profîlan bigere",
"column.domain_blocks": "Navperên astengkirî", "column.domain_blocks": "Navperên astengkirî",
"column.favourites": "Bijarte", "column.favourites": "Bijarte",
@ -166,7 +166,7 @@
"empty_column.blocks": "Te tu bikarhêner asteng nekiriye.", "empty_column.blocks": "Te tu bikarhêner asteng nekiriye.",
"empty_column.bookmarked_statuses": "Hîn tu peyamên şûnpelkirî tuneye. Gava ku hûn yek şûnpel bikin, ew ê li vir xûya bike.", "empty_column.bookmarked_statuses": "Hîn tu peyamên şûnpelkirî tuneye. Gava ku hûn yek şûnpel bikin, ew ê li vir xûya bike.",
"empty_column.community": "Demnameya herêmî vala ye. Tiştek ji raya giştî re binivsînin da ku rûpel biherike!", "empty_column.community": "Demnameya herêmî vala ye. Tiştek ji raya giştî re binivsînin da ku rûpel biherike!",
"empty_column.conversations": "Dema tu şandiyekê bişîninî an jî bistînî ku tenê ji kesên qalkirî re xuyabar in, ew ê li vir xuya bibe.", "empty_column.direct": "Hêj peyameke te yê rasterast tuneye. Gava ku tu yekî bişeynî an jî bigirî, ew ê li vir xûya bike.",
"empty_column.domain_blocks": "Hê jî navperên hatine asteng kirin tune ne.", "empty_column.domain_blocks": "Hê jî navperên hatine asteng kirin tune ne.",
"empty_column.explore_statuses": "Tiştek niha di rojevê de tune. Paşê vegere!", "empty_column.explore_statuses": "Tiştek niha di rojevê de tune. Paşê vegere!",
"empty_column.favourited_statuses": "Hîn tu peyamên te yên bijare tunene. Gava ku te yekî bijart, ew ê li vir xûya bike.", "empty_column.favourited_statuses": "Hîn tu peyamên te yên bijare tunene. Gava ku te yekî bijart, ew ê li vir xûya bike.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Şandiyê bilind bike", "keyboard_shortcuts.boost": "Şandiyê bilind bike",
"keyboard_shortcuts.column": "Stûna balkişandinê", "keyboard_shortcuts.column": "Stûna balkişandinê",
"keyboard_shortcuts.compose": "Bal bikşîne cîhê nivîsê/textarea", "keyboard_shortcuts.compose": "Bal bikşîne cîhê nivîsê/textarea",
"keyboard_shortcuts.conversations": "ji bo vekirina stûna axaftinan",
"keyboard_shortcuts.description": "Danasîn", "keyboard_shortcuts.description": "Danasîn",
"keyboard_shortcuts.direct": "ji bo vekirina stûnê peyamên rasterast",
"keyboard_shortcuts.down": "Di rêzokê de dakêşe jêr", "keyboard_shortcuts.down": "Di rêzokê de dakêşe jêr",
"keyboard_shortcuts.enter": "Şandiyê veke", "keyboard_shortcuts.enter": "Şandiyê veke",
"keyboard_shortcuts.favourite": "Şandiya bijarte", "keyboard_shortcuts.favourite": "Şandiya bijarte",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Şûnpel", "navigation_bar.bookmarks": "Şûnpel",
"navigation_bar.community_timeline": "Demnameya herêmî", "navigation_bar.community_timeline": "Demnameya herêmî",
"navigation_bar.compose": "Şandiyeke nû binivsîne", "navigation_bar.compose": "Şandiyeke nû binivsîne",
"navigation_bar.direct": "Peyamên rasterast",
"navigation_bar.discover": "Vekolê", "navigation_bar.discover": "Vekolê",
"navigation_bar.domain_blocks": "Navparên astengkirî", "navigation_bar.domain_blocks": "Navparên astengkirî",
"navigation_bar.edit_profile": "Profîl serrast bike", "navigation_bar.edit_profile": "Profîl serrast bike",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Rapirsî yê rake", "poll_button.remove_poll": "Rapirsî yê rake",
"privacy.change": "Nepênîtiya şandiyan biguherîne", "privacy.change": "Nepênîtiya şandiyan biguherîne",
"privacy.direct.long": "Tenê ji bo bikarhênerên qalkirî tê dîtin", "privacy.direct.long": "Tenê ji bo bikarhênerên qalkirî tê dîtin",
"privacy.direct.short": "Tenê mirovên ku min qalkirî", "privacy.direct.short": "Tenê kesên qalkirî",
"privacy.private.long": "Tenê bo şopîneran xuyabar e", "privacy.private.long": "Tenê bo şopîneran xuyabar e",
"privacy.private.short": "Tenê şopîneran", "privacy.private.short": "Tenê şopîneran",
"privacy.public.long": "Ji bo hemûyan xuyabar e", "privacy.public.long": "Ji bo hemûyan xuyabar e",

View File

@ -70,7 +70,7 @@
"column.blocks": "Devnydhyoryon lettys", "column.blocks": "Devnydhyoryon lettys",
"column.bookmarks": "Folennosow", "column.bookmarks": "Folennosow",
"column.community": "Amserlin leel", "column.community": "Amserlin leel",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Peuri profilys", "column.directory": "Peuri profilys",
"column.domain_blocks": "Gorfarthow lettys", "column.domain_blocks": "Gorfarthow lettys",
"column.favourites": "Re drudh", "column.favourites": "Re drudh",
@ -166,7 +166,7 @@
"empty_column.blocks": "Ny wrussowgh lettya devnydhyoryon vyth hwath.", "empty_column.blocks": "Ny wrussowgh lettya devnydhyoryon vyth hwath.",
"empty_column.bookmarked_statuses": "Nyns eus dhywgh postow gans folennos hwath. Pan wrewgh gorra onan, ev a wra omdhiskwedhes omma.", "empty_column.bookmarked_statuses": "Nyns eus dhywgh postow gans folennos hwath. Pan wrewgh gorra onan, ev a wra omdhiskwedhes omma.",
"empty_column.community": "An amserlin leel yw gwag. Skrifewgh neppytn yn poblek dh'y lonchya!", "empty_column.community": "An amserlin leel yw gwag. Skrifewgh neppytn yn poblek dh'y lonchya!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Nyns eus gorfarthow lettys hwath.", "empty_column.domain_blocks": "Nyns eus gorfarthow lettys hwath.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Nyns eus dhywgh postow drudh hwath. Pan wrewgh merkya onan vel drudh, ev a wra omdhiskwedhes omma.", "empty_column.favourited_statuses": "Nyns eus dhywgh postow drudh hwath. Pan wrewgh merkya onan vel drudh, ev a wra omdhiskwedhes omma.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Kenertha post", "keyboard_shortcuts.boost": "Kenertha post",
"keyboard_shortcuts.column": "Fogella koloven", "keyboard_shortcuts.column": "Fogella koloven",
"keyboard_shortcuts.compose": "Fogella tekstva gomposya", "keyboard_shortcuts.compose": "Fogella tekstva gomposya",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Deskrifans", "keyboard_shortcuts.description": "Deskrifans",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "Movya war-nans y'n rol", "keyboard_shortcuts.down": "Movya war-nans y'n rol",
"keyboard_shortcuts.enter": "Ygeri post", "keyboard_shortcuts.enter": "Ygeri post",
"keyboard_shortcuts.favourite": "Merkya post vel drudh", "keyboard_shortcuts.favourite": "Merkya post vel drudh",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Folennosow", "navigation_bar.bookmarks": "Folennosow",
"navigation_bar.community_timeline": "Amserlin leel", "navigation_bar.community_timeline": "Amserlin leel",
"navigation_bar.compose": "Komposya post nowydh", "navigation_bar.compose": "Komposya post nowydh",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Diskudha", "navigation_bar.discover": "Diskudha",
"navigation_bar.domain_blocks": "Gorfarthow lettys", "navigation_bar.domain_blocks": "Gorfarthow lettys",
"navigation_bar.edit_profile": "Golegi profil", "navigation_bar.edit_profile": "Golegi profil",

View File

@ -70,7 +70,7 @@
"column.blocks": "Blocked users", "column.blocks": "Blocked users",
"column.bookmarks": "Bookmarks", "column.bookmarks": "Bookmarks",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Browse profiles", "column.directory": "Browse profiles",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.favourites": "Mėgstamiausi", "column.favourites": "Mėgstamiausi",
@ -166,7 +166,7 @@
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"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.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "There are no hidden domains yet.", "empty_column.domain_blocks": "There are no hidden domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "Edit profile", "navigation_bar.edit_profile": "Edit profile",

View File

@ -70,7 +70,7 @@
"column.blocks": "Bloķētie lietotāji", "column.blocks": "Bloķētie lietotāji",
"column.bookmarks": "Grāmatzīmes", "column.bookmarks": "Grāmatzīmes",
"column.community": "Vietējā ziņu līnija", "column.community": "Vietējā ziņu līnija",
"column.conversations": "Sarunas", "column.direct": "Privātie ziņojumi",
"column.directory": "Pārlūkot profilus", "column.directory": "Pārlūkot profilus",
"column.domain_blocks": "Bloķētie domēni", "column.domain_blocks": "Bloķētie domēni",
"column.favourites": "Izlase", "column.favourites": "Izlase",
@ -166,7 +166,7 @@
"empty_column.blocks": "Patreiz tu neesi nevienu bloķējis.", "empty_column.blocks": "Patreiz tu neesi nevienu bloķējis.",
"empty_column.bookmarked_statuses": "Patreiz tev nav neviena grāmatzīmēm pievienota ieraksta. Kad tādu pievienosi, tas parādīsies šeit.", "empty_column.bookmarked_statuses": "Patreiz tev nav neviena grāmatzīmēm pievienota ieraksta. Kad tādu pievienosi, tas parādīsies šeit.",
"empty_column.community": "Vietējā ziņu lenta ir tukša. Uzraksti kaut ko publiski, lai viss notiktu!", "empty_column.community": "Vietējā ziņu lenta ir tukša. Uzraksti kaut ko publiski, lai viss notiktu!",
"empty_column.conversations": "Kad nosūtīsi vai saņemsi ziņu, kas ir redzama tikai tajā minētajām personām, tā tiks parādīta šeit.", "empty_column.direct": "Patrez tev nav privātu ziņu. Tiklīdz tādu nosūtīsi vai saņemsi, tās parādīsies šeit.",
"empty_column.domain_blocks": "Vēl nav neviena bloķēta domēna.", "empty_column.domain_blocks": "Vēl nav neviena bloķēta domēna.",
"empty_column.explore_statuses": "Pašlaik nekas nav tendēts. Pārbaudiet vēlāk!", "empty_column.explore_statuses": "Pašlaik nekas nav tendēts. Pārbaudiet vēlāk!",
"empty_column.favourited_statuses": "Patreiz tev nav neviena izceltā ieraksta. Kad kādu izcelsi, tas parādīsies šeit.", "empty_column.favourited_statuses": "Patreiz tev nav neviena izceltā ieraksta. Kad kādu izcelsi, tas parādīsies šeit.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Palielināt ziņu", "keyboard_shortcuts.boost": "Palielināt ziņu",
"keyboard_shortcuts.column": "Fokusēt kolonnu", "keyboard_shortcuts.column": "Fokusēt kolonnu",
"keyboard_shortcuts.compose": "Fokusēt veidojamā teksta lauku", "keyboard_shortcuts.compose": "Fokusēt veidojamā teksta lauku",
"keyboard_shortcuts.conversations": "lai atvērtu sarunu kolonnu",
"keyboard_shortcuts.description": "Apraksts", "keyboard_shortcuts.description": "Apraksts",
"keyboard_shortcuts.direct": "lai atvērtu privāto ziņojumu kolonnu",
"keyboard_shortcuts.down": "Pārvietot sarakstā uz leju", "keyboard_shortcuts.down": "Pārvietot sarakstā uz leju",
"keyboard_shortcuts.enter": "Atvērt ziņu", "keyboard_shortcuts.enter": "Atvērt ziņu",
"keyboard_shortcuts.favourite": "Pievienot izlasei", "keyboard_shortcuts.favourite": "Pievienot izlasei",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Grāmatzīmes", "navigation_bar.bookmarks": "Grāmatzīmes",
"navigation_bar.community_timeline": "Vietējā ziņu lenta", "navigation_bar.community_timeline": "Vietējā ziņu lenta",
"navigation_bar.compose": "Veidot jaunu ziņu", "navigation_bar.compose": "Veidot jaunu ziņu",
"navigation_bar.direct": "Privātie ziņojumi",
"navigation_bar.discover": "Atklāt", "navigation_bar.discover": "Atklāt",
"navigation_bar.domain_blocks": "Bloķētie domēni", "navigation_bar.domain_blocks": "Bloķētie domēni",
"navigation_bar.edit_profile": "Rediģēt profilu", "navigation_bar.edit_profile": "Rediģēt profilu",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Noņemt aptauju", "poll_button.remove_poll": "Noņemt aptauju",
"privacy.change": "Mainīt ziņas privātumu", "privacy.change": "Mainīt ziņas privātumu",
"privacy.direct.long": "Redzams tikai pieminētajiem lietotājiem", "privacy.direct.long": "Redzams tikai pieminētajiem lietotājiem",
"privacy.direct.short": "Tikai cilvēki, kurus es pieminu", "privacy.direct.short": "Tikai minētie cilvēki",
"privacy.private.long": "Redzams tikai sekotājiem", "privacy.private.long": "Redzams tikai sekotājiem",
"privacy.private.short": "Tikai sekotājiem", "privacy.private.short": "Tikai sekotājiem",
"privacy.public.long": "Redzama visiem", "privacy.public.long": "Redzama visiem",

View File

@ -70,7 +70,7 @@
"column.blocks": "Блокирани корисници", "column.blocks": "Блокирани корисници",
"column.bookmarks": "Bookmarks", "column.bookmarks": "Bookmarks",
"column.community": "Локална временска зона", "column.community": "Локална временска зона",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Види профили", "column.directory": "Види профили",
"column.domain_blocks": "Скриени домеини", "column.domain_blocks": "Скриени домеини",
"column.favourites": "Омилени", "column.favourites": "Омилени",
@ -166,7 +166,7 @@
"empty_column.blocks": "Немате сеуште блокирано корисници.", "empty_column.blocks": "Немате сеуште блокирано корисници.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"empty_column.community": "Локалниот времеплов е празен. Објавете нешто јавно за да може да почне шоуто!", "empty_column.community": "Локалниот времеплов е празен. Објавете нешто јавно за да може да почне шоуто!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Немате сокриени домеини уште.", "empty_column.domain_blocks": "Немате сокриени домеини уште.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "Уреди профил", "navigation_bar.edit_profile": "Уреди профил",

View File

@ -70,7 +70,7 @@
"column.blocks": "തടയപ്പെട്ട ഉപയോക്താക്കൾ", "column.blocks": "തടയപ്പെട്ട ഉപയോക്താക്കൾ",
"column.bookmarks": "ബുക്ക്മാർക്കുകൾ", "column.bookmarks": "ബുക്ക്മാർക്കുകൾ",
"column.community": "പ്രാദേശികമായ സമയരേഖ", "column.community": "പ്രാദേശികമായ സമയരേഖ",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "പ്രൊഫൈലുകൾ മറിച്ചുനോക്കുക", "column.directory": "പ്രൊഫൈലുകൾ മറിച്ചുനോക്കുക",
"column.domain_blocks": "മറയ്ക്കപ്പെട്ട മേഖലകൾ", "column.domain_blocks": "മറയ്ക്കപ്പെട്ട മേഖലകൾ",
"column.favourites": "പ്രിയപ്പെട്ടവ", "column.favourites": "പ്രിയപ്പെട്ടവ",
@ -166,7 +166,7 @@
"empty_column.blocks": "നിങ്ങൾ ഇതുവരെ ഒരു ഉപയോക്താക്കളെയും തടഞ്ഞിട്ടില്ല.", "empty_column.blocks": "നിങ്ങൾ ഇതുവരെ ഒരു ഉപയോക്താക്കളെയും തടഞ്ഞിട്ടില്ല.",
"empty_column.bookmarked_statuses": "നിങ്ങൾക് ഇതുവരെ അടയാളപ്പെടുത്തിയ ടൂട്ടുകൾ ഇല്ല. അടയാളപ്പെടുത്തിയാൽ അത് ഇവിടെ വരും.", "empty_column.bookmarked_statuses": "നിങ്ങൾക് ഇതുവരെ അടയാളപ്പെടുത്തിയ ടൂട്ടുകൾ ഇല്ല. അടയാളപ്പെടുത്തിയാൽ അത് ഇവിടെ വരും.",
"empty_column.community": "പ്രാദേശികമായ സമയരേഖ ശൂന്യമാണ്. എന്തെങ്കിലും പരസ്യമായി എഴുതി തുടക്കം കുറിക്കു!", "empty_column.community": "പ്രാദേശികമായ സമയരേഖ ശൂന്യമാണ്. എന്തെങ്കിലും പരസ്യമായി എഴുതി തുടക്കം കുറിക്കു!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "മറയ്ക്കപ്പെട്ടിരിക്കുന്ന മേഖലകൾ ഇതുവരെ ഇല്ല.", "empty_column.domain_blocks": "മറയ്ക്കപ്പെട്ടിരിക്കുന്ന മേഖലകൾ ഇതുവരെ ഇല്ല.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "നിങ്ങൾക്ക് ഇത് വരെ ഒരു പ്രിയപ്പെട്ട ടൂട്ടും ഇല്ല. നിങ്ങൾ അങ്ങനെ ഒന്ന് പ്രിയപ്പെടുന്ന പക്ഷം അതിവിടെ കാണപ്പെടുന്നതാണ്.", "empty_column.favourited_statuses": "നിങ്ങൾക്ക് ഇത് വരെ ഒരു പ്രിയപ്പെട്ട ടൂട്ടും ഇല്ല. നിങ്ങൾ അങ്ങനെ ഒന്ന് പ്രിയപ്പെടുന്ന പക്ഷം അതിവിടെ കാണപ്പെടുന്നതാണ്.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "ബൂസ്റ്റ് ചെയ്യുക", "keyboard_shortcuts.boost": "ബൂസ്റ്റ് ചെയ്യുക",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "വിവരണം", "keyboard_shortcuts.description": "വിവരണം",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "ടൂട്ട് എടുക്കാൻ", "keyboard_shortcuts.enter": "ടൂട്ട് എടുക്കാൻ",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "ബുക്ക്മാർക്കുകൾ", "navigation_bar.bookmarks": "ബുക്ക്മാർക്കുകൾ",
"navigation_bar.community_timeline": "പ്രാദേശിക സമയരേഖ", "navigation_bar.community_timeline": "പ്രാദേശിക സമയരേഖ",
"navigation_bar.compose": "പുതിയ ടൂട്ട് എഴുതുക", "navigation_bar.compose": "പുതിയ ടൂട്ട് എഴുതുക",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "കണ്ടെത്തുക", "navigation_bar.discover": "കണ്ടെത്തുക",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "പ്രൊഫൈൽ തിരുത്തുക", "navigation_bar.edit_profile": "പ്രൊഫൈൽ തിരുത്തുക",

View File

@ -70,7 +70,7 @@
"column.blocks": "ब्लॉक केलेले खातेधारक", "column.blocks": "ब्लॉक केलेले खातेधारक",
"column.bookmarks": "Bookmarks", "column.bookmarks": "Bookmarks",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Browse profiles", "column.directory": "Browse profiles",
"column.domain_blocks": "गुप्त डोमेन्स", "column.domain_blocks": "गुप्त डोमेन्स",
"column.favourites": "आवडते", "column.favourites": "आवडते",
@ -166,7 +166,7 @@
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"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.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "There are no hidden domains yet.", "empty_column.domain_blocks": "There are no hidden domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "Edit profile", "navigation_bar.edit_profile": "Edit profile",

View File

@ -70,7 +70,7 @@
"column.blocks": "Pengguna yang disekat", "column.blocks": "Pengguna yang disekat",
"column.bookmarks": "Tanda buku", "column.bookmarks": "Tanda buku",
"column.community": "Garis masa tempatan", "column.community": "Garis masa tempatan",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Layari profil", "column.directory": "Layari profil",
"column.domain_blocks": "Domain disekat", "column.domain_blocks": "Domain disekat",
"column.favourites": "Kegemaran", "column.favourites": "Kegemaran",
@ -166,7 +166,7 @@
"empty_column.blocks": "Anda belum menyekat sesiapa.", "empty_column.blocks": "Anda belum menyekat sesiapa.",
"empty_column.bookmarked_statuses": "Anda belum ada hantaran yang ditanda buku. Apabila anda menanda buku sesuatu, ia akan muncul di sini.", "empty_column.bookmarked_statuses": "Anda belum ada hantaran yang ditanda buku. Apabila anda menanda buku sesuatu, ia akan muncul di sini.",
"empty_column.community": "Garis masa tempatan kosong. Tulislah secara awam untuk memulakan sesuatu!", "empty_column.community": "Garis masa tempatan kosong. Tulislah secara awam untuk memulakan sesuatu!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Belum ada domain yang disekat.", "empty_column.domain_blocks": "Belum ada domain yang disekat.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Anda belum ada hantaran yang digemari. Apabila anda menggemari sesuatu, ia akan muncul di sini.", "empty_column.favourited_statuses": "Anda belum ada hantaran yang digemari. Apabila anda menggemari sesuatu, ia akan muncul di sini.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"keyboard_shortcuts.column": "Tumpu pada lajur", "keyboard_shortcuts.column": "Tumpu pada lajur",
"keyboard_shortcuts.compose": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Keterangan", "keyboard_shortcuts.description": "Keterangan",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "Buka hantaran", "keyboard_shortcuts.enter": "Buka hantaran",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Tanda buku", "navigation_bar.bookmarks": "Tanda buku",
"navigation_bar.community_timeline": "Garis masa tempatan", "navigation_bar.community_timeline": "Garis masa tempatan",
"navigation_bar.compose": "Karang hantaran baharu", "navigation_bar.compose": "Karang hantaran baharu",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Teroka", "navigation_bar.discover": "Teroka",
"navigation_bar.domain_blocks": "Domain disekat", "navigation_bar.domain_blocks": "Domain disekat",
"navigation_bar.edit_profile": "Sunting profil", "navigation_bar.edit_profile": "Sunting profil",

View File

@ -70,7 +70,7 @@
"column.blocks": "Geblokkeerde gebruikers", "column.blocks": "Geblokkeerde gebruikers",
"column.bookmarks": "Bladwijzers", "column.bookmarks": "Bladwijzers",
"column.community": "Lokale tijdlijn", "column.community": "Lokale tijdlijn",
"column.conversations": "Gesprekken", "column.direct": "Direct messages",
"column.directory": "Gebruikersgids", "column.directory": "Gebruikersgids",
"column.domain_blocks": "Geblokkeerde domeinen", "column.domain_blocks": "Geblokkeerde domeinen",
"column.favourites": "Favorieten", "column.favourites": "Favorieten",
@ -166,7 +166,7 @@
"empty_column.blocks": "Jij hebt nog geen enkele gebruiker geblokkeerd.", "empty_column.blocks": "Jij hebt nog geen enkele gebruiker geblokkeerd.",
"empty_column.bookmarked_statuses": "Jij hebt nog geen berichten aan je bladwijzers toegevoegd. Wanneer je er een aan jouw bladwijzers toevoegt, valt deze hier te zien.", "empty_column.bookmarked_statuses": "Jij hebt nog geen berichten aan je bladwijzers toegevoegd. Wanneer je er een aan jouw bladwijzers toevoegt, valt deze hier te zien.",
"empty_column.community": "De lokale tijdlijn is nog leeg. Plaats een openbaar bericht om de spits af te bijten!", "empty_column.community": "De lokale tijdlijn is nog leeg. Plaats een openbaar bericht om de spits af te bijten!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Er zijn nog geen geblokkeerde domeinen.", "empty_column.domain_blocks": "Er zijn nog geen geblokkeerde domeinen.",
"empty_column.explore_statuses": "Momenteel zijn er geen trends. Kom later terug!", "empty_column.explore_statuses": "Momenteel zijn er geen trends. Kom later terug!",
"empty_column.favourited_statuses": "Jij hebt nog geen favoriete berichten. Wanneer je er een aan jouw favorieten toevoegt, valt deze hier te zien.", "empty_column.favourited_statuses": "Jij hebt nog geen favoriete berichten. Wanneer je er een aan jouw favorieten toevoegt, valt deze hier te zien.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Bericht boosten", "keyboard_shortcuts.boost": "Bericht boosten",
"keyboard_shortcuts.column": "Op één van de kolommen focussen", "keyboard_shortcuts.column": "Op één van de kolommen focussen",
"keyboard_shortcuts.compose": "Tekstveld om een bericht te schrijven focussen", "keyboard_shortcuts.compose": "Tekstveld om een bericht te schrijven focussen",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Omschrijving", "keyboard_shortcuts.description": "Omschrijving",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "Naar beneden in de lijst bewegen", "keyboard_shortcuts.down": "Naar beneden in de lijst bewegen",
"keyboard_shortcuts.enter": "Volledig bericht tonen", "keyboard_shortcuts.enter": "Volledig bericht tonen",
"keyboard_shortcuts.favourite": "Aan jouw favorieten toevoegen", "keyboard_shortcuts.favourite": "Aan jouw favorieten toevoegen",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bladwijzers", "navigation_bar.bookmarks": "Bladwijzers",
"navigation_bar.community_timeline": "Lokale tijdlijn", "navigation_bar.community_timeline": "Lokale tijdlijn",
"navigation_bar.compose": "Nieuw bericht schrijven", "navigation_bar.compose": "Nieuw bericht schrijven",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Ontdekken", "navigation_bar.discover": "Ontdekken",
"navigation_bar.domain_blocks": "Geblokkeerde domeinen", "navigation_bar.domain_blocks": "Geblokkeerde domeinen",
"navigation_bar.edit_profile": "Profiel bewerken", "navigation_bar.edit_profile": "Profiel bewerken",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Poll verwijderen", "poll_button.remove_poll": "Poll verwijderen",
"privacy.change": "Zichtbaarheid van bericht aanpassen", "privacy.change": "Zichtbaarheid van bericht aanpassen",
"privacy.direct.long": "Alleen aan vermelde gebruikers tonen", "privacy.direct.long": "Alleen aan vermelde gebruikers tonen",
"privacy.direct.short": "Alleen gebruikers die ik noem", "privacy.direct.short": "Direct",
"privacy.private.long": "Alleen aan volgers tonen", "privacy.private.long": "Alleen aan volgers tonen",
"privacy.private.short": "Alleen volgers", "privacy.private.short": "Alleen volgers",
"privacy.public.long": "Voor iedereen zichtbaar", "privacy.public.long": "Voor iedereen zichtbaar",

View File

@ -70,7 +70,7 @@
"column.blocks": "Blokkerte brukarar", "column.blocks": "Blokkerte brukarar",
"column.bookmarks": "Bokmerke", "column.bookmarks": "Bokmerke",
"column.community": "Lokal tidsline", "column.community": "Lokal tidsline",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Sjå gjennom profilar", "column.directory": "Sjå gjennom profilar",
"column.domain_blocks": "Gøymde domene", "column.domain_blocks": "Gøymde domene",
"column.favourites": "Favorittar", "column.favourites": "Favorittar",
@ -166,7 +166,7 @@
"empty_column.blocks": "Du har ikkje blokkert nokon brukarar enno.", "empty_column.blocks": "Du har ikkje blokkert nokon brukarar enno.",
"empty_column.bookmarked_statuses": "Du har ikkje nokon bokmerkte tut enno. Når du bokmerkjer eit, dukkar det opp her.", "empty_column.bookmarked_statuses": "Du har ikkje nokon bokmerkte tut enno. Når du bokmerkjer eit, dukkar det opp her.",
"empty_column.community": "Den lokale samtiden er tom. Skriv noko offentleg å få ballen til å rulle!", "empty_column.community": "Den lokale samtiden er tom. Skriv noko offentleg å få ballen til å rulle!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Det er ingen gøymde domene ennå.", "empty_column.domain_blocks": "Det er ingen gøymde domene ennå.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Du har ingen favoritt-tut ennå. Når du merkjer ein som favoritt, så dukkar det opp her.", "empty_column.favourited_statuses": "Du har ingen favoritt-tut ennå. Når du merkjer ein som favoritt, så dukkar det opp her.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "for å framheva", "keyboard_shortcuts.boost": "for å framheva",
"keyboard_shortcuts.column": "for å fokusera på ein status i ei av kolonnane", "keyboard_shortcuts.column": "for å fokusera på ein status i ei av kolonnane",
"keyboard_shortcuts.compose": "for å fokusera tekstfeltet for skriving", "keyboard_shortcuts.compose": "for å fokusera tekstfeltet for skriving",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Skildring", "keyboard_shortcuts.description": "Skildring",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "for å flytta seg opp og ned i lista", "keyboard_shortcuts.down": "for å flytta seg opp og ned i lista",
"keyboard_shortcuts.enter": "for å opna status", "keyboard_shortcuts.enter": "for å opna status",
"keyboard_shortcuts.favourite": "for å merkja som favoritt", "keyboard_shortcuts.favourite": "for å merkja som favoritt",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bokmerke", "navigation_bar.bookmarks": "Bokmerke",
"navigation_bar.community_timeline": "Lokal tidsline", "navigation_bar.community_timeline": "Lokal tidsline",
"navigation_bar.compose": "Lag eit nytt tut", "navigation_bar.compose": "Lag eit nytt tut",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Oppdag", "navigation_bar.discover": "Oppdag",
"navigation_bar.domain_blocks": "Skjulte domene", "navigation_bar.domain_blocks": "Skjulte domene",
"navigation_bar.edit_profile": "Rediger profil", "navigation_bar.edit_profile": "Rediger profil",

View File

@ -70,7 +70,7 @@
"column.blocks": "Blokkerte brukere", "column.blocks": "Blokkerte brukere",
"column.bookmarks": "Bokmerker", "column.bookmarks": "Bokmerker",
"column.community": "Lokal tidslinje", "column.community": "Lokal tidslinje",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Bla gjennom profiler", "column.directory": "Bla gjennom profiler",
"column.domain_blocks": "Skjulte domener", "column.domain_blocks": "Skjulte domener",
"column.favourites": "Likt", "column.favourites": "Likt",
@ -166,7 +166,7 @@
"empty_column.blocks": "Du har ikke blokkert noen brukere enda.", "empty_column.blocks": "Du har ikke blokkert noen brukere enda.",
"empty_column.bookmarked_statuses": "Du har ikke bokmerket noen tuter enda. Når du bokmerker en, vil den dukke opp her.", "empty_column.bookmarked_statuses": "Du har ikke bokmerket noen tuter enda. Når du bokmerker en, vil den dukke opp her.",
"empty_column.community": "Den lokale tidslinjen er tom. Skriv noe offentlig for å få snøballen til å rulle!", "empty_column.community": "Den lokale tidslinjen er tom. Skriv noe offentlig for å få snøballen til å rulle!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Det er ingen skjulte domener enda.", "empty_column.domain_blocks": "Det er ingen skjulte domener enda.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Du har ikke likt noen tuter enda. Når du liker en, vil den dukke opp her.", "empty_column.favourited_statuses": "Du har ikke likt noen tuter enda. Når du liker en, vil den dukke opp her.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "å fremheve", "keyboard_shortcuts.boost": "å fremheve",
"keyboard_shortcuts.column": "å fokusere en status i en av kolonnene", "keyboard_shortcuts.column": "å fokusere en status i en av kolonnene",
"keyboard_shortcuts.compose": "å fokusere komponeringsfeltet", "keyboard_shortcuts.compose": "å fokusere komponeringsfeltet",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Beskrivelse", "keyboard_shortcuts.description": "Beskrivelse",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "for å flytte ned i listen", "keyboard_shortcuts.down": "for å flytte ned i listen",
"keyboard_shortcuts.enter": "å åpne status", "keyboard_shortcuts.enter": "å åpne status",
"keyboard_shortcuts.favourite": "for å favorittmarkere", "keyboard_shortcuts.favourite": "for å favorittmarkere",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bokmerker", "navigation_bar.bookmarks": "Bokmerker",
"navigation_bar.community_timeline": "Lokal tidslinje", "navigation_bar.community_timeline": "Lokal tidslinje",
"navigation_bar.compose": "Skriv en ny tut", "navigation_bar.compose": "Skriv en ny tut",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Oppdag", "navigation_bar.discover": "Oppdag",
"navigation_bar.domain_blocks": "Skjulte domener", "navigation_bar.domain_blocks": "Skjulte domener",
"navigation_bar.edit_profile": "Rediger profil", "navigation_bar.edit_profile": "Rediger profil",

View File

@ -70,7 +70,7 @@
"column.blocks": "Personas blocadas", "column.blocks": "Personas blocadas",
"column.bookmarks": "Marcadors", "column.bookmarks": "Marcadors",
"column.community": "Flux public local", "column.community": "Flux public local",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Percórrer los perfils", "column.directory": "Percórrer los perfils",
"column.domain_blocks": "Domenis resconduts", "column.domain_blocks": "Domenis resconduts",
"column.favourites": "Favorits", "column.favourites": "Favorits",
@ -166,7 +166,7 @@
"empty_column.blocks": "Avètz pas blocat degun pel moment.", "empty_column.blocks": "Avètz pas blocat degun pel moment.",
"empty_column.bookmarked_statuses": "Avètz pas cap de tuts marcats pel moment. Quand ne marquetz un, serà mostrat aquí.", "empty_column.bookmarked_statuses": "Avètz pas cap de tuts marcats pel moment. Quand ne marquetz un, serà mostrat aquí.",
"empty_column.community": "Lo flux public local es void. Escrivètz quicòm per lo garnir!", "empty_column.community": "Lo flux public local es void. Escrivètz quicòm per lo garnir!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "I a pas encara cap de domeni amagat.", "empty_column.domain_blocks": "I a pas encara cap de domeni amagat.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Avètz pas encara cap de tut favorit. Quand nauretz un, apareisserà aquí.", "empty_column.favourited_statuses": "Avètz pas encara cap de tut favorit. Quand nauretz un, apareisserà aquí.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "partejar", "keyboard_shortcuts.boost": "partejar",
"keyboard_shortcuts.column": "centrar un estatut a una colomna", "keyboard_shortcuts.column": "centrar un estatut a una colomna",
"keyboard_shortcuts.compose": "anar al camp tèxte", "keyboard_shortcuts.compose": "anar al camp tèxte",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "descripcion", "keyboard_shortcuts.description": "descripcion",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "far davalar dins la lista", "keyboard_shortcuts.down": "far davalar dins la lista",
"keyboard_shortcuts.enter": "dobrir los estatuts", "keyboard_shortcuts.enter": "dobrir los estatuts",
"keyboard_shortcuts.favourite": "apondre als favorits", "keyboard_shortcuts.favourite": "apondre als favorits",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Marcadors", "navigation_bar.bookmarks": "Marcadors",
"navigation_bar.community_timeline": "Flux public local", "navigation_bar.community_timeline": "Flux public local",
"navigation_bar.compose": "Escriure un nòu tut", "navigation_bar.compose": "Escriure un nòu tut",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Trobar", "navigation_bar.discover": "Trobar",
"navigation_bar.domain_blocks": "Domenis resconduts", "navigation_bar.domain_blocks": "Domenis resconduts",
"navigation_bar.edit_profile": "Modificar lo perfil", "navigation_bar.edit_profile": "Modificar lo perfil",

View File

@ -70,7 +70,7 @@
"column.blocks": "Blocked users", "column.blocks": "Blocked users",
"column.bookmarks": "Bookmarks", "column.bookmarks": "Bookmarks",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Browse profiles", "column.directory": "Browse profiles",
"column.domain_blocks": "Blocked domains", "column.domain_blocks": "Blocked domains",
"column.favourites": "Favourites", "column.favourites": "Favourites",
@ -166,7 +166,7 @@
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"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.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "There are no blocked domains yet.", "empty_column.domain_blocks": "There are no blocked domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "Edit profile", "navigation_bar.edit_profile": "Edit profile",

View File

@ -70,7 +70,7 @@
"column.blocks": "Zablokowani użytkownicy", "column.blocks": "Zablokowani użytkownicy",
"column.bookmarks": "Zakładki", "column.bookmarks": "Zakładki",
"column.community": "Lokalna oś czasu", "column.community": "Lokalna oś czasu",
"column.conversations": "Konwersacje", "column.direct": "Wiadomości bezpośrednie",
"column.directory": "Przeglądaj profile", "column.directory": "Przeglądaj profile",
"column.domain_blocks": "Ukryte domeny", "column.domain_blocks": "Ukryte domeny",
"column.favourites": "Ulubione", "column.favourites": "Ulubione",
@ -170,7 +170,7 @@
"empty_column.blocks": "Nie zablokowałeś(-aś) jeszcze żadnego użytkownika.", "empty_column.blocks": "Nie zablokowałeś(-aś) jeszcze żadnego użytkownika.",
"empty_column.bookmarked_statuses": "Nie dodałeś(-aś) żadnego wpisu do zakładek. Kiedy to zrobisz, pojawi się on tutaj.", "empty_column.bookmarked_statuses": "Nie dodałeś(-aś) żadnego wpisu do zakładek. Kiedy to zrobisz, pojawi się on tutaj.",
"empty_column.community": "Lokalna oś czasu jest pusta. Napisz coś publicznie, aby zagaić!", "empty_column.community": "Lokalna oś czasu jest pusta. Napisz coś publicznie, aby zagaić!",
"empty_column.conversations": "Gdy wyślesz lub otrzymasz wpis, który jest widoczny tylko dla osób w nim wymienionych, pojawi się on tutaj.", "empty_column.direct": "Nie masz żadnych wiadomości bezpośrednich. Kiedy dostaniesz lub wyślesz jakąś, pojawi się ona tutaj.",
"empty_column.domain_blocks": "Brak ukrytych domen.", "empty_column.domain_blocks": "Brak ukrytych domen.",
"empty_column.explore_statuses": "Nic nie jest w tej chwili popularne. Sprawdź później!", "empty_column.explore_statuses": "Nic nie jest w tej chwili popularne. Sprawdź później!",
"empty_column.favourited_statuses": "Nie dodałeś(-aś) żadnego wpisu do ulubionych. Kiedy to zrobisz, pojawi się on tutaj.", "empty_column.favourited_statuses": "Nie dodałeś(-aś) żadnego wpisu do ulubionych. Kiedy to zrobisz, pojawi się on tutaj.",
@ -234,8 +234,8 @@
"keyboard_shortcuts.boost": "aby podbić wpis", "keyboard_shortcuts.boost": "aby podbić wpis",
"keyboard_shortcuts.column": "aby przejść do wpisu z jednej z kolumn", "keyboard_shortcuts.column": "aby przejść do wpisu z jednej z kolumn",
"keyboard_shortcuts.compose": "aby przejść do pola tworzenia wpisu", "keyboard_shortcuts.compose": "aby przejść do pola tworzenia wpisu",
"keyboard_shortcuts.conversations": "aby otworzyć kolumnę konwersacji",
"keyboard_shortcuts.description": "Opis", "keyboard_shortcuts.description": "Opis",
"keyboard_shortcuts.direct": "aby otworzyć kolumnę wiadomości bezpośrednich",
"keyboard_shortcuts.down": "aby przejść na dół listy", "keyboard_shortcuts.down": "aby przejść na dół listy",
"keyboard_shortcuts.enter": "aby otworzyć wpis", "keyboard_shortcuts.enter": "aby otworzyć wpis",
"keyboard_shortcuts.favourite": "aby dodać do ulubionych", "keyboard_shortcuts.favourite": "aby dodać do ulubionych",
@ -294,6 +294,7 @@
"navigation_bar.bookmarks": "Zakładki", "navigation_bar.bookmarks": "Zakładki",
"navigation_bar.community_timeline": "Lokalna oś czasu", "navigation_bar.community_timeline": "Lokalna oś czasu",
"navigation_bar.compose": "Utwórz nowy wpis", "navigation_bar.compose": "Utwórz nowy wpis",
"navigation_bar.direct": "Wiadomości bezpośrednie",
"navigation_bar.discover": "Odkrywaj", "navigation_bar.discover": "Odkrywaj",
"navigation_bar.domain_blocks": "Ukryte domeny", "navigation_bar.domain_blocks": "Ukryte domeny",
"navigation_bar.edit_profile": "Edytuj profil", "navigation_bar.edit_profile": "Edytuj profil",
@ -371,7 +372,7 @@
"poll_button.remove_poll": "Usuń głosowanie", "poll_button.remove_poll": "Usuń głosowanie",
"privacy.change": "Dostosuj widoczność wpisów", "privacy.change": "Dostosuj widoczność wpisów",
"privacy.direct.long": "Widoczny tylko dla wspomnianych", "privacy.direct.long": "Widoczny tylko dla wspomnianych",
"privacy.direct.short": "Tylko wspominane osoby", "privacy.direct.short": "Tylko wspomniane osoby",
"privacy.private.long": "Widoczny tylko dla osób, które Cię śledzą", "privacy.private.long": "Widoczny tylko dla osób, które Cię śledzą",
"privacy.private.short": "Tylko śledzący", "privacy.private.short": "Tylko śledzący",
"privacy.public.long": "Widoczne dla każdego", "privacy.public.long": "Widoczne dla każdego",

View File

@ -70,7 +70,7 @@
"column.blocks": "Usuários bloqueados", "column.blocks": "Usuários bloqueados",
"column.bookmarks": "Salvos", "column.bookmarks": "Salvos",
"column.community": "Linha local", "column.community": "Linha local",
"column.conversations": "Conversations", "column.direct": "Mensagens diretas",
"column.directory": "Explorar perfis", "column.directory": "Explorar perfis",
"column.domain_blocks": "Domínios bloqueados", "column.domain_blocks": "Domínios bloqueados",
"column.favourites": "Favoritos", "column.favourites": "Favoritos",
@ -93,7 +93,7 @@
"community.column_settings.media_only": "Somente mídia", "community.column_settings.media_only": "Somente mídia",
"community.column_settings.remote_only": "Somente global", "community.column_settings.remote_only": "Somente global",
"compose_form.direct_message_warning_learn_more": "Saiba mais", "compose_form.direct_message_warning_learn_more": "Saiba mais",
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.", "compose_form.encryption_warning": "Postagens no Mastodon não são criptografados de ponta a ponta. Não compartilhe nenhuma informação perigosa sobre o Mastodon.",
"compose_form.hashtag_warning": "Este toot não aparecerá em nenhuma hashtag porque está como não-listado. Somente toots públicos podem ser pesquisados por hashtag.", "compose_form.hashtag_warning": "Este toot não aparecerá em nenhuma hashtag porque está como não-listado. Somente toots públicos podem ser pesquisados por hashtag.",
"compose_form.lock_disclaimer": "Seu perfil não está {locked}. Qualquer um pode te seguir e ver os toots privados.", "compose_form.lock_disclaimer": "Seu perfil não está {locked}. Qualquer um pode te seguir e ver os toots privados.",
"compose_form.lock_disclaimer.lock": "trancado", "compose_form.lock_disclaimer.lock": "trancado",
@ -166,7 +166,7 @@
"empty_column.blocks": "Nada aqui.", "empty_column.blocks": "Nada aqui.",
"empty_column.bookmarked_statuses": "Nada aqui. Quando você salvar um toot, ele aparecerá aqui.", "empty_column.bookmarked_statuses": "Nada aqui. Quando você salvar um toot, ele aparecerá aqui.",
"empty_column.community": "A linha local está vazia. Publique algo para começar!", "empty_column.community": "A linha local está vazia. Publique algo para começar!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "Você ainda não tem mensagens diretas. Quando você enviar ou receber uma, será exibida aqui.",
"empty_column.domain_blocks": "Nada aqui.", "empty_column.domain_blocks": "Nada aqui.",
"empty_column.explore_statuses": "Nada está em alta no momento. Volte mais tarde!", "empty_column.explore_statuses": "Nada está em alta no momento. Volte mais tarde!",
"empty_column.favourited_statuses": "Nada aqui. Quando você favoritar um toot, ele aparecerá aqui.", "empty_column.favourited_statuses": "Nada aqui. Quando você favoritar um toot, ele aparecerá aqui.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "dar boost", "keyboard_shortcuts.boost": "dar boost",
"keyboard_shortcuts.column": "focar na coluna", "keyboard_shortcuts.column": "focar na coluna",
"keyboard_shortcuts.compose": "focar no compositor", "keyboard_shortcuts.compose": "focar no compositor",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Descrição", "keyboard_shortcuts.description": "Descrição",
"keyboard_shortcuts.direct": "para abrir a coluna de mensagens diretas",
"keyboard_shortcuts.down": "mover para baixo", "keyboard_shortcuts.down": "mover para baixo",
"keyboard_shortcuts.enter": "abrir toot", "keyboard_shortcuts.enter": "abrir toot",
"keyboard_shortcuts.favourite": "favoritar toot", "keyboard_shortcuts.favourite": "favoritar toot",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Salvos", "navigation_bar.bookmarks": "Salvos",
"navigation_bar.community_timeline": "Linha do tempo local", "navigation_bar.community_timeline": "Linha do tempo local",
"navigation_bar.compose": "Compor novo toot", "navigation_bar.compose": "Compor novo toot",
"navigation_bar.direct": "Mensagens diretas",
"navigation_bar.discover": "Descobrir", "navigation_bar.discover": "Descobrir",
"navigation_bar.domain_blocks": "Domínios bloqueados", "navigation_bar.domain_blocks": "Domínios bloqueados",
"navigation_bar.edit_profile": "Editar perfil", "navigation_bar.edit_profile": "Editar perfil",
@ -337,7 +338,7 @@
"notifications.column_settings.status": "Novos toots:", "notifications.column_settings.status": "Novos toots:",
"notifications.column_settings.unread_notifications.category": "Notificações não lidas", "notifications.column_settings.unread_notifications.category": "Notificações não lidas",
"notifications.column_settings.unread_notifications.highlight": "Destacar notificações não lidas", "notifications.column_settings.unread_notifications.highlight": "Destacar notificações não lidas",
"notifications.column_settings.update": "Edits:", "notifications.column_settings.update": "Editar:",
"notifications.filter.all": "Tudo", "notifications.filter.all": "Tudo",
"notifications.filter.boosts": "Boosts", "notifications.filter.boosts": "Boosts",
"notifications.filter.favourites": "Favoritos", "notifications.filter.favourites": "Favoritos",
@ -366,22 +367,22 @@
"poll_button.remove_poll": "Remover enquete", "poll_button.remove_poll": "Remover enquete",
"privacy.change": "Alterar privacidade do toot", "privacy.change": "Alterar privacidade do toot",
"privacy.direct.long": "Postar só para usuários mencionados", "privacy.direct.long": "Postar só para usuários mencionados",
"privacy.direct.short": "Direct", "privacy.direct.short": "Apenas pessoas mencionadas",
"privacy.private.long": "Postar só para seguidores", "privacy.private.long": "Postar só para seguidores",
"privacy.private.short": "Followers-only", "privacy.private.short": "Apenas seguidores",
"privacy.public.long": "Visible for all", "privacy.public.long": "Visível para todos",
"privacy.public.short": "Público", "privacy.public.short": "Público",
"privacy.unlisted.long": "Visible for all, but opted-out of discovery features", "privacy.unlisted.long": "Visível para todos, mas desativou os recursos de descoberta",
"privacy.unlisted.short": "Não-listado", "privacy.unlisted.short": "Não-listado",
"refresh": "Atualizar", "refresh": "Atualizar",
"regeneration_indicator.label": "Carregando…", "regeneration_indicator.label": "Carregando…",
"regeneration_indicator.sublabel": "Sua página inicial está sendo preparada!", "regeneration_indicator.sublabel": "Sua página inicial está sendo preparada!",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
"relative_time.full.days": "{number, plural, one {# day} other {# days}} ago", "relative_time.full.days": "{number, plural, one {# dia} other {# dias}} atrás",
"relative_time.full.hours": "{number, plural, one {# hour} other {# hours}} ago", "relative_time.full.hours": "{number, plural, one {# hora} other {# horas}} atrás",
"relative_time.full.just_now": "agora mesmo", "relative_time.full.just_now": "agora mesmo",
"relative_time.full.minutes": "{number, plural, one {# minute} other {# minutes}} ago", "relative_time.full.minutes": "{number, plural, one {# minuto} other {# minutos}} atrás",
"relative_time.full.seconds": "{number, plural, one {# second} other {# seconds}} ago", "relative_time.full.seconds": "{number, plural, one {# segundo} other {# segundos}} atrás",
"relative_time.hours": "{number}h", "relative_time.hours": "{number}h",
"relative_time.just_now": "agora", "relative_time.just_now": "agora",
"relative_time.minutes": "{number}m", "relative_time.minutes": "{number}m",
@ -451,7 +452,7 @@
"status.direct": "Enviar toot direto para @{name}", "status.direct": "Enviar toot direto para @{name}",
"status.edit": "Editar", "status.edit": "Editar",
"status.edited": "Editado em {date}", "status.edited": "Editado em {date}",
"status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}", "status.edited_x_times": "Editado {count, plural, one {{count} hora} other {{count} vezes}}",
"status.embed": "Incorporar", "status.embed": "Incorporar",
"status.favourite": "Favoritar", "status.favourite": "Favoritar",
"status.filtered": "Filtrado", "status.filtered": "Filtrado",

View File

@ -70,7 +70,7 @@
"column.blocks": "Utilizadores Bloqueados", "column.blocks": "Utilizadores Bloqueados",
"column.bookmarks": "Itens salvos", "column.bookmarks": "Itens salvos",
"column.community": "Cronologia local", "column.community": "Cronologia local",
"column.conversations": "Conversações", "column.direct": "Mensagens diretas",
"column.directory": "Procurar perfis", "column.directory": "Procurar perfis",
"column.domain_blocks": "Domínios escondidos", "column.domain_blocks": "Domínios escondidos",
"column.favourites": "Favoritos", "column.favourites": "Favoritos",
@ -166,7 +166,7 @@
"empty_column.blocks": "Ainda não bloqueaste qualquer utilizador.", "empty_column.blocks": "Ainda não bloqueaste qualquer utilizador.",
"empty_column.bookmarked_statuses": "Ainda não adicionou nenhum toot aos Itens salvos. Quando adicionar, eles serão exibidos aqui.", "empty_column.bookmarked_statuses": "Ainda não adicionou nenhum toot aos Itens salvos. Quando adicionar, eles serão exibidos aqui.",
"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.conversations": "Quando enviar ou receber uma publicação que seja visível apenas para as pessoas nela mencionadas, ela 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": "Nada em destaque por agora. Volte mais tarde!", "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.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "para partilhar", "keyboard_shortcuts.boost": "para partilhar",
"keyboard_shortcuts.column": "para focar uma publicação numa das colunas", "keyboard_shortcuts.column": "para focar uma publicação numa das colunas",
"keyboard_shortcuts.compose": "para focar na área de publicação", "keyboard_shortcuts.compose": "para focar na área de publicação",
"keyboard_shortcuts.conversations": "para abrir a coluna de conversações",
"keyboard_shortcuts.description": "Descrição", "keyboard_shortcuts.description": "Descrição",
"keyboard_shortcuts.direct": "para abrir a coluna das mensagens diretas",
"keyboard_shortcuts.down": "para mover para baixo na lista", "keyboard_shortcuts.down": "para mover para baixo na lista",
"keyboard_shortcuts.enter": "para expandir uma publicação", "keyboard_shortcuts.enter": "para expandir uma publicação",
"keyboard_shortcuts.favourite": "para adicionar aos favoritos", "keyboard_shortcuts.favourite": "para adicionar aos favoritos",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Itens salvos", "navigation_bar.bookmarks": "Itens salvos",
"navigation_bar.community_timeline": "Cronologia local", "navigation_bar.community_timeline": "Cronologia local",
"navigation_bar.compose": "Escrever novo toot", "navigation_bar.compose": "Escrever novo toot",
"navigation_bar.direct": "Mensagens diretas",
"navigation_bar.discover": "Descobrir", "navigation_bar.discover": "Descobrir",
"navigation_bar.domain_blocks": "Domínios escondidos", "navigation_bar.domain_blocks": "Domínios escondidos",
"navigation_bar.edit_profile": "Editar perfil", "navigation_bar.edit_profile": "Editar perfil",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Remover votação", "poll_button.remove_poll": "Remover votação",
"privacy.change": "Ajustar a privacidade da publicação", "privacy.change": "Ajustar a privacidade da publicação",
"privacy.direct.long": "Apenas para utilizadores mencionados", "privacy.direct.long": "Apenas para utilizadores mencionados",
"privacy.direct.short": "Apenas pessoas que menciono", "privacy.direct.short": "Apenas pessoas mencionadas",
"privacy.private.long": "Apenas para os seguidores", "privacy.private.long": "Apenas para os seguidores",
"privacy.private.short": "Apenas seguidores", "privacy.private.short": "Apenas seguidores",
"privacy.public.long": "Visível para todos", "privacy.public.long": "Visível para todos",

View File

@ -70,7 +70,7 @@
"column.blocks": "Utilizatori blocați", "column.blocks": "Utilizatori blocați",
"column.bookmarks": "Marcaje", "column.bookmarks": "Marcaje",
"column.community": "Cronologie locală", "column.community": "Cronologie locală",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Explorează profiluri", "column.directory": "Explorează profiluri",
"column.domain_blocks": "Domenii blocate", "column.domain_blocks": "Domenii blocate",
"column.favourites": "Favorite", "column.favourites": "Favorite",
@ -166,7 +166,7 @@
"empty_column.blocks": "Momentan nu ai blocat niciun utilizator.", "empty_column.blocks": "Momentan nu ai blocat niciun utilizator.",
"empty_column.bookmarked_statuses": "Momentan nu ai nicio postare marcată. Când vei marca una, va apărea aici.", "empty_column.bookmarked_statuses": "Momentan nu ai nicio postare marcată. Când vei marca una, va apărea aici.",
"empty_column.community": "Nu există nimic în cronologia locală. Postează ceva public pentru a sparge gheața!", "empty_column.community": "Nu există nimic în cronologia locală. Postează ceva public pentru a sparge gheața!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Momentan nu există domenii blocate.", "empty_column.domain_blocks": "Momentan nu există domenii blocate.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Momentan nu ai nicio postare favorită. Când vei adăuga una, va apărea aici.", "empty_column.favourited_statuses": "Momentan nu ai nicio postare favorită. Când vei adăuga una, va apărea aici.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Distribuie postarea", "keyboard_shortcuts.boost": "Distribuie postarea",
"keyboard_shortcuts.column": "Focalizează pe coloană", "keyboard_shortcuts.column": "Focalizează pe coloană",
"keyboard_shortcuts.compose": "Focalizează pe zona de text", "keyboard_shortcuts.compose": "Focalizează pe zona de text",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Descriere", "keyboard_shortcuts.description": "Descriere",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "Coboară în listă", "keyboard_shortcuts.down": "Coboară în listă",
"keyboard_shortcuts.enter": "Deschide postarea", "keyboard_shortcuts.enter": "Deschide postarea",
"keyboard_shortcuts.favourite": "Adaugă postarea la favorite", "keyboard_shortcuts.favourite": "Adaugă postarea la favorite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Marcaje", "navigation_bar.bookmarks": "Marcaje",
"navigation_bar.community_timeline": "Cronologie locală", "navigation_bar.community_timeline": "Cronologie locală",
"navigation_bar.compose": "Compune o nouă postare", "navigation_bar.compose": "Compune o nouă postare",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Descoperă", "navigation_bar.discover": "Descoperă",
"navigation_bar.domain_blocks": "Domenii blocate", "navigation_bar.domain_blocks": "Domenii blocate",
"navigation_bar.edit_profile": "Modifică profilul", "navigation_bar.edit_profile": "Modifică profilul",

View File

@ -70,7 +70,7 @@
"column.blocks": "Заблокированные пользователи", "column.blocks": "Заблокированные пользователи",
"column.bookmarks": "Закладки", "column.bookmarks": "Закладки",
"column.community": "Локальная лента", "column.community": "Локальная лента",
"column.conversations": "Диалоги", "column.direct": "Личные сообщения",
"column.directory": "Просмотр профилей", "column.directory": "Просмотр профилей",
"column.domain_blocks": "Заблокированные домены", "column.domain_blocks": "Заблокированные домены",
"column.favourites": "Избранное", "column.favourites": "Избранное",
@ -166,7 +166,7 @@
"empty_column.blocks": "Вы ещё никого не заблокировали.", "empty_column.blocks": "Вы ещё никого не заблокировали.",
"empty_column.bookmarked_statuses": "У вас пока нет постов в закладках. Как добавите один, он отобразится здесь.", "empty_column.bookmarked_statuses": "У вас пока нет постов в закладках. Как добавите один, он отобразится здесь.",
"empty_column.community": "Локальная лента пуста. Напишите что-нибудь, чтобы разогреть народ!", "empty_column.community": "Локальная лента пуста. Напишите что-нибудь, чтобы разогреть народ!",
"empty_column.conversations": "Здесь отображаются адресованные посты. Как только вы отправите или получите один, он отобразится здесь.", "empty_column.direct": "У вас пока нет личных сообщений. Как только вы отправите или получите одно, оно появится здесь.",
"empty_column.domain_blocks": "Скрытых доменов пока нет.", "empty_column.domain_blocks": "Скрытых доменов пока нет.",
"empty_column.explore_statuses": "Нет актуального. Проверьте позже!", "empty_column.explore_statuses": "Нет актуального. Проверьте позже!",
"empty_column.favourited_statuses": "Вы не добавили ни один пост в «Избранное». Как только вы это сделаете, он появится здесь.", "empty_column.favourited_statuses": "Вы не добавили ни один пост в «Избранное». Как только вы это сделаете, он появится здесь.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "продвинуть пост", "keyboard_shortcuts.boost": "продвинуть пост",
"keyboard_shortcuts.column": "фокус на одном из столбцов", "keyboard_shortcuts.column": "фокус на одном из столбцов",
"keyboard_shortcuts.compose": "фокус на поле ввода", "keyboard_shortcuts.compose": "фокус на поле ввода",
"keyboard_shortcuts.conversations": "открыть колонку диалогов",
"keyboard_shortcuts.description": "Описание", "keyboard_shortcuts.description": "Описание",
"keyboard_shortcuts.direct": "чтобы открыть колонку с личными сообщениями",
"keyboard_shortcuts.down": "вниз по списку", "keyboard_shortcuts.down": "вниз по списку",
"keyboard_shortcuts.enter": "открыть пост", "keyboard_shortcuts.enter": "открыть пост",
"keyboard_shortcuts.favourite": "в избранное", "keyboard_shortcuts.favourite": "в избранное",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Закладки", "navigation_bar.bookmarks": "Закладки",
"navigation_bar.community_timeline": "Локальная лента", "navigation_bar.community_timeline": "Локальная лента",
"navigation_bar.compose": "Создать новый пост", "navigation_bar.compose": "Создать новый пост",
"navigation_bar.direct": "Личные сообщения",
"navigation_bar.discover": "Изучайте", "navigation_bar.discover": "Изучайте",
"navigation_bar.domain_blocks": "Скрытые домены", "navigation_bar.domain_blocks": "Скрытые домены",
"navigation_bar.edit_profile": "Изменить профиль", "navigation_bar.edit_profile": "Изменить профиль",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Удалить опрос", "poll_button.remove_poll": "Удалить опрос",
"privacy.change": "Изменить видимость поста", "privacy.change": "Изменить видимость поста",
"privacy.direct.long": "Показать только упомянутым", "privacy.direct.long": "Показать только упомянутым",
"privacy.direct.short": "Для упомянутых", "privacy.direct.short": "Только упомянутые",
"privacy.private.long": "Показать только подписчикам", "privacy.private.long": "Показать только подписчикам",
"privacy.private.short": "Для подписчиков", "privacy.private.short": "Для подписчиков",
"privacy.public.long": "Виден всем", "privacy.public.long": "Виден всем",

View File

@ -70,7 +70,7 @@
"column.blocks": "निषिद्धभोक्तारः", "column.blocks": "निषिद्धभोक्तारः",
"column.bookmarks": "पुटचिह्नानि", "column.bookmarks": "पुटचिह्नानि",
"column.community": "स्थानीयसमयतालिका", "column.community": "स्थानीयसमयतालिका",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "व्यक्तित्वानि दृश्यन्ताम्", "column.directory": "व्यक्तित्वानि दृश्यन्ताम्",
"column.domain_blocks": "निषिद्धप्रदेशाः", "column.domain_blocks": "निषिद्धप्रदेशाः",
"column.favourites": "प्रियाः", "column.favourites": "प्रियाः",
@ -166,7 +166,7 @@
"empty_column.blocks": "नैकोऽप्युपभोक्ता निषिद्धो वर्तते", "empty_column.blocks": "नैकोऽप्युपभोक्ता निषिद्धो वर्तते",
"empty_column.bookmarked_statuses": "नैकमपि पुटचिह्नयुक्तदौत्यानि सन्ति । यदा भविष्यति तदत्र दृश्यते ।", "empty_column.bookmarked_statuses": "नैकमपि पुटचिह्नयुक्तदौत्यानि सन्ति । यदा भविष्यति तदत्र दृश्यते ।",
"empty_column.community": "स्थानीयसमयतालिका रिक्ता । सार्वजनिकत्वेनाऽत्र किमपि लिख्यताम् ।", "empty_column.community": "स्थानीयसमयतालिका रिक्ता । सार्वजनिकत्वेनाऽत्र किमपि लिख्यताम् ।",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "न निषिद्धप्रदेशाः सन्ति ।", "empty_column.domain_blocks": "न निषिद्धप्रदेशाः सन्ति ।",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "न प्रियदौत्यानि सन्ति । यदा प्रीतिरित्यङ्क्यतेऽत्र दृश्यते ।", "empty_column.favourited_statuses": "न प्रियदौत्यानि सन्ति । यदा प्रीतिरित्यङ्क्यतेऽत्र दृश्यते ।",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "Edit profile", "navigation_bar.edit_profile": "Edit profile",

View File

@ -70,7 +70,7 @@
"column.blocks": "Persones blocadas", "column.blocks": "Persones blocadas",
"column.bookmarks": "Sinnalibros", "column.bookmarks": "Sinnalibros",
"column.community": "Lìnia de tempus locale", "column.community": "Lìnia de tempus locale",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Nàviga in is profilos", "column.directory": "Nàviga in is profilos",
"column.domain_blocks": "Domìnios blocados", "column.domain_blocks": "Domìnios blocados",
"column.favourites": "Preferidos", "column.favourites": "Preferidos",
@ -166,7 +166,7 @@
"empty_column.blocks": "No as blocadu ancora nemos.", "empty_column.blocks": "No as blocadu ancora nemos.",
"empty_column.bookmarked_statuses": "Non tenes ancora peruna publicatzione in is marcadores. Cando nd'as a agiùnghere una, at a èssere ammustrada inoghe.", "empty_column.bookmarked_statuses": "Non tenes ancora peruna publicatzione in is marcadores. Cando nd'as a agiùnghere una, at a èssere ammustrada inoghe.",
"empty_column.community": "Sa lìnia de tempus locale est bòida. Iscrie inoghe pro cumintzare sa festa!", "empty_column.community": "Sa lìnia de tempus locale est bòida. Iscrie inoghe pro cumintzare sa festa!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Non tenes ancora perunu domìniu blocadu.", "empty_column.domain_blocks": "Non tenes ancora perunu domìniu blocadu.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Non tenes ancora peruna publicatzione in is preferidos. Cando nd'as a agiùnghere una, at a èssere ammustrada inoghe.", "empty_column.favourited_statuses": "Non tenes ancora peruna publicatzione in is preferidos. Cando nd'as a agiùnghere una, at a èssere ammustrada inoghe.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "pro cumpartzire", "keyboard_shortcuts.boost": "pro cumpartzire",
"keyboard_shortcuts.column": "pro atzentrare una publicatzione in una de is colunnas", "keyboard_shortcuts.column": "pro atzentrare una publicatzione in una de is colunnas",
"keyboard_shortcuts.compose": "pro atzentrare in s'àrea de cumpositzione de testu", "keyboard_shortcuts.compose": "pro atzentrare in s'àrea de cumpositzione de testu",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Descritzione", "keyboard_shortcuts.description": "Descritzione",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "pro mòere in bàsciu in sa lista", "keyboard_shortcuts.down": "pro mòere in bàsciu in sa lista",
"keyboard_shortcuts.enter": "pro abèrrere una publicatzione", "keyboard_shortcuts.enter": "pro abèrrere una publicatzione",
"keyboard_shortcuts.favourite": "pro marcare comente a preferidu", "keyboard_shortcuts.favourite": "pro marcare comente a preferidu",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Sinnalibros", "navigation_bar.bookmarks": "Sinnalibros",
"navigation_bar.community_timeline": "Lìnia de tempus locale", "navigation_bar.community_timeline": "Lìnia de tempus locale",
"navigation_bar.compose": "Cumpone una publicatzione noa", "navigation_bar.compose": "Cumpone una publicatzione noa",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Iscoberi", "navigation_bar.discover": "Iscoberi",
"navigation_bar.domain_blocks": "Domìnios blocados", "navigation_bar.domain_blocks": "Domìnios blocados",
"navigation_bar.edit_profile": "Modìfica profilu", "navigation_bar.edit_profile": "Modìfica profilu",

View File

@ -70,7 +70,7 @@
"column.blocks": "අවහිර කළ පරිශීලකයින්", "column.blocks": "අවහිර කළ පරිශීලකයින්",
"column.bookmarks": "පොත් යොමු", "column.bookmarks": "පොත් යොමු",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "පැතිකඩයන් පිරික්සන්න", "column.directory": "පැතිකඩයන් පිරික්සන්න",
"column.domain_blocks": "අවහිර කළ වසම්", "column.domain_blocks": "අවහිර කළ වසම්",
"column.favourites": "ප්‍රියතමයන්", "column.favourites": "ප්‍රියතමයන්",
@ -166,7 +166,7 @@
"empty_column.blocks": "ඔබ තවමත් කිසිදු පරිශීලකයෙකු අවහිර කර නැත.", "empty_column.blocks": "ඔබ තවමත් කිසිදු පරිශීලකයෙකු අවහිර කර නැත.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"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.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "අවහිර කළ වසම් නොමැත.", "empty_column.domain_blocks": "අවහිර කළ වසම් නොමැත.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "සවිස්තරය", "keyboard_shortcuts.description": "සවිස්තරය",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "පොත් යොමු", "navigation_bar.bookmarks": "පොත් යොමු",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "පැතිකඩ සංස්කරණය", "navigation_bar.edit_profile": "පැතිකඩ සංස්කරණය",

View File

@ -70,7 +70,7 @@
"column.blocks": "Blokovaní užívatelia", "column.blocks": "Blokovaní užívatelia",
"column.bookmarks": "Záložky", "column.bookmarks": "Záložky",
"column.community": "Miestna časová os", "column.community": "Miestna časová os",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Prehľadávaj profily", "column.directory": "Prehľadávaj profily",
"column.domain_blocks": "Skryté domény", "column.domain_blocks": "Skryté domény",
"column.favourites": "Obľúbené", "column.favourites": "Obľúbené",
@ -166,7 +166,7 @@
"empty_column.blocks": "Ešte si nikoho nezablokoval/a.", "empty_column.blocks": "Ešte si nikoho nezablokoval/a.",
"empty_column.bookmarked_statuses": "Ešte nemáš žiadné záložky. Keď si pridáš príspevok k záložkám, zobrazí sa tu.", "empty_column.bookmarked_statuses": "Ešte nemáš žiadné záložky. Keď si pridáš príspevok k záložkám, zobrazí sa tu.",
"empty_column.community": "Lokálna časová os je prázdna. Napíšte niečo, aby sa to tu začalo hýbať!", "empty_column.community": "Lokálna časová os je prázdna. Napíšte niečo, aby sa to tu začalo hýbať!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Žiadne domény ešte niesú skryté.", "empty_column.domain_blocks": "Žiadne domény ešte niesú skryté.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Nemáš obľúbené ešte žiadne príspevky. Keď si nejaký obľúbiš, bude zobrazený práve tu.", "empty_column.favourited_statuses": "Nemáš obľúbené ešte žiadne príspevky. Keď si nejaký obľúbiš, bude zobrazený práve tu.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "Vyzdvihni príspevok", "keyboard_shortcuts.boost": "Vyzdvihni príspevok",
"keyboard_shortcuts.column": "zameraj sa na príspevok v jednom zo stĺpcov", "keyboard_shortcuts.column": "zameraj sa na príspevok v jednom zo stĺpcov",
"keyboard_shortcuts.compose": "zameraj sa na písaciu plochu", "keyboard_shortcuts.compose": "zameraj sa na písaciu plochu",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Popis", "keyboard_shortcuts.description": "Popis",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "posunúť sa dole v zozname", "keyboard_shortcuts.down": "posunúť sa dole v zozname",
"keyboard_shortcuts.enter": "Otvor príspevok", "keyboard_shortcuts.enter": "Otvor príspevok",
"keyboard_shortcuts.favourite": "pridaj do obľúbených", "keyboard_shortcuts.favourite": "pridaj do obľúbených",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Záložky", "navigation_bar.bookmarks": "Záložky",
"navigation_bar.community_timeline": "Miestna časová os", "navigation_bar.community_timeline": "Miestna časová os",
"navigation_bar.compose": "Napíš nový príspevok", "navigation_bar.compose": "Napíš nový príspevok",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Objavuj", "navigation_bar.discover": "Objavuj",
"navigation_bar.domain_blocks": "Skryté domény", "navigation_bar.domain_blocks": "Skryté domény",
"navigation_bar.edit_profile": "Uprav profil", "navigation_bar.edit_profile": "Uprav profil",

View File

@ -18,11 +18,11 @@
"account.followers": "Sledilci", "account.followers": "Sledilci",
"account.followers.empty": "Nihče ne sledi temu uporabniku.", "account.followers.empty": "Nihče ne sledi temu uporabniku.",
"account.followers_counter": "{count, plural, one {ima {count} sledilca} two {ima {count} sledilca} few {ima {count} sledilcev} other {ima {count} sledilce}}", "account.followers_counter": "{count, plural, one {ima {count} sledilca} two {ima {count} sledilca} few {ima {count} sledilcev} other {ima {count} sledilce}}",
"account.following": "Following", "account.following": "Sledim",
"account.following_counter": "{count, plural, one {sledi {count} osebi} two {sledi {count} osebama} few {sledi {count} osebam} other {sledi {count} osebam}}", "account.following_counter": "{count, plural, one {sledi {count} osebi} two {sledi {count} osebama} few {sledi {count} osebam} other {sledi {count} osebam}}",
"account.follows.empty": "Ta uporabnik še ne sledi nikomur.", "account.follows.empty": "Ta uporabnik še ne sledi nikomur.",
"account.follows_you": "Vam sledi", "account.follows_you": "Vam sledi",
"account.hide_reblogs": "Skrij spodbude od @{name}", "account.hide_reblogs": "Skrij izpostavitve od @{name}",
"account.joined": "Pridružen/a {date}", "account.joined": "Pridružen/a {date}",
"account.link_verified_on": "Lastništvo te povezave je bilo preverjeno {date}", "account.link_verified_on": "Lastništvo te povezave je bilo preverjeno {date}",
"account.locked_info": "Stanje zasebnosti računa je nastavljeno na zaklenjeno. Lastnik ročno pregleda, kdo ga lahko spremlja.", "account.locked_info": "Stanje zasebnosti računa je nastavljeno na zaklenjeno. Lastnik ročno pregleda, kdo ga lahko spremlja.",
@ -32,12 +32,12 @@
"account.mute": "Utišaj @{name}", "account.mute": "Utišaj @{name}",
"account.mute_notifications": "Utišaj obvestila od @{name}", "account.mute_notifications": "Utišaj obvestila od @{name}",
"account.muted": "Utišan", "account.muted": "Utišan",
"account.posts": "Tuti", "account.posts": "Objave",
"account.posts_with_replies": "Tuti in odgovori", "account.posts_with_replies": "Objave in odgovori",
"account.report": "Prijavi @{name}", "account.report": "Prijavi @{name}",
"account.requested": "Čakanje na odobritev. Kliknite, da prekličete prošnjo za sledenje", "account.requested": "Čakanje na odobritev. Kliknite, da prekličete prošnjo za sledenje",
"account.share": "Delite profil osebe @{name}", "account.share": "Delite profil osebe @{name}",
"account.show_reblogs": "Pokaži spodbude osebe @{name}", "account.show_reblogs": "Pokaži izpostavitve osebe @{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": "Odblokiraj @{name}", "account.unblock": "Odblokiraj @{name}",
"account.unblock_domain": "Razkrij {domain}", "account.unblock_domain": "Razkrij {domain}",
@ -70,7 +70,7 @@
"column.blocks": "Blokirani uporabniki", "column.blocks": "Blokirani uporabniki",
"column.bookmarks": "Zaznamki", "column.bookmarks": "Zaznamki",
"column.community": "Lokalna časovnica", "column.community": "Lokalna časovnica",
"column.conversations": "Conversations", "column.direct": "Neposredna sporočila",
"column.directory": "Prebrskaj profile", "column.directory": "Prebrskaj profile",
"column.domain_blocks": "Skrite domene", "column.domain_blocks": "Skrite domene",
"column.favourites": "Priljubljene", "column.favourites": "Priljubljene",
@ -79,7 +79,7 @@
"column.lists": "Seznami", "column.lists": "Seznami",
"column.mutes": "Utišani uporabniki", "column.mutes": "Utišani uporabniki",
"column.notifications": "Obvestila", "column.notifications": "Obvestila",
"column.pins": "Pripeti tuti", "column.pins": "Pripete objave",
"column.public": "Združena časovnica", "column.public": "Združena časovnica",
"column_back_button.label": "Nazaj", "column_back_button.label": "Nazaj",
"column_header.hide_settings": "Skrij nastavitve", "column_header.hide_settings": "Skrij nastavitve",
@ -92,9 +92,9 @@
"community.column_settings.local_only": "Samo krajevno", "community.column_settings.local_only": "Samo krajevno",
"community.column_settings.media_only": "Samo mediji", "community.column_settings.media_only": "Samo mediji",
"community.column_settings.remote_only": "Samo oddaljeno", "community.column_settings.remote_only": "Samo oddaljeno",
"compose_form.direct_message_warning_learn_more": "Nauči se več", "compose_form.direct_message_warning_learn_more": "Izvej več",
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.", "compose_form.encryption_warning": "Objave na Mastodonu niso šifrirane od kraja do kraja. Prek Mastodona ne delite nobenih občutljivih informacij.",
"compose_form.hashtag_warning": "Ta tut ne bo naveden pod nobenim ključnikom, ker ni javen. Samo javne tute lahko iščete s ključniki.", "compose_form.hashtag_warning": "Ta objava ne bo navedena pod nobenim ključnikom, ker ni javen. Samo javne objave lahko iščete s ključniki.",
"compose_form.lock_disclaimer": "Vaš račun ni {locked}. Vsakdo vam lahko sledi in si ogleda objave, ki so namenjene samo sledilcem.", "compose_form.lock_disclaimer": "Vaš račun ni {locked}. Vsakdo vam lahko sledi in si ogleda objave, ki so namenjene samo sledilcem.",
"compose_form.lock_disclaimer.lock": "zaklenjen", "compose_form.lock_disclaimer.lock": "zaklenjen",
"compose_form.placeholder": "O čem razmišljaš?", "compose_form.placeholder": "O čem razmišljaš?",
@ -104,7 +104,7 @@
"compose_form.poll.remove_option": "Odstrani to izbiro", "compose_form.poll.remove_option": "Odstrani to izbiro",
"compose_form.poll.switch_to_multiple": "Spremenite anketo, da omogočite več izbir", "compose_form.poll.switch_to_multiple": "Spremenite anketo, da omogočite več izbir",
"compose_form.poll.switch_to_single": "Spremenite anketo, da omogočite eno izbiro", "compose_form.poll.switch_to_single": "Spremenite anketo, da omogočite eno izbiro",
"compose_form.publish": "Tutni", "compose_form.publish": "Objavi",
"compose_form.publish_loud": "{publish}!", "compose_form.publish_loud": "{publish}!",
"compose_form.save_changes": "Shrani spremembe", "compose_form.save_changes": "Shrani spremembe",
"compose_form.sensitive.hide": "Označi medij kot občutljiv", "compose_form.sensitive.hide": "Označi medij kot občutljiv",
@ -118,7 +118,7 @@
"confirmations.block.confirm": "Blokiraj", "confirmations.block.confirm": "Blokiraj",
"confirmations.block.message": "Ali ste prepričani, da želite blokirati {name}?", "confirmations.block.message": "Ali ste prepričani, da želite blokirati {name}?",
"confirmations.delete.confirm": "Izbriši", "confirmations.delete.confirm": "Izbriši",
"confirmations.delete.message": "Ali ste prepričani, da želite izbrisati to stanje?", "confirmations.delete.message": "Ali ste prepričani, da želite izbrisati to objavo?",
"confirmations.delete_list.confirm": "Izbriši", "confirmations.delete_list.confirm": "Izbriši",
"confirmations.delete_list.message": "Ali ste prepričani, da želite trajno izbrisati ta seznam?", "confirmations.delete_list.message": "Ali ste prepričani, da želite trajno izbrisati ta seznam?",
"confirmations.discard_edit_media.confirm": "Opusti", "confirmations.discard_edit_media.confirm": "Opusti",
@ -131,7 +131,7 @@
"confirmations.mute.explanation": "S tem boste skrili objave pred njimi in objave, ki jih omenjajo, še vedno pa bodo lahko videli vaše objave in vam sledili.", "confirmations.mute.explanation": "S tem boste skrili objave pred njimi in objave, ki jih omenjajo, še vedno pa bodo lahko videli vaše objave in vam sledili.",
"confirmations.mute.message": "Ali ste prepričani, da želite utišati {name}?", "confirmations.mute.message": "Ali ste prepričani, da želite utišati {name}?",
"confirmations.redraft.confirm": "Izbriši in preoblikuj", "confirmations.redraft.confirm": "Izbriši in preoblikuj",
"confirmations.redraft.message": "Ali ste prepričani, da želite izbrisati ta status in ga preoblikovati? Vzljubi in spodbude bodo izgubljeni, odgovori na izvirno objavo pa bodo osiroteli.", "confirmations.redraft.message": "Ali ste prepričani, da želite izbrisati ta status in ga preoblikovati? Vzljubi in izpostavitve bodo izgubljeni, odgovori na izvirno objavo pa bodo osiroteli.",
"confirmations.reply.confirm": "Odgovori", "confirmations.reply.confirm": "Odgovori",
"confirmations.reply.message": "Odgovarjanje bo prepisalo sporočilo, ki ga trenutno sestavljate. Ali ste prepričani, da želite nadaljevati?", "confirmations.reply.message": "Odgovarjanje bo prepisalo sporočilo, ki ga trenutno sestavljate. Ali ste prepričani, da želite nadaljevati?",
"confirmations.unfollow.confirm": "Prenehaj slediti", "confirmations.unfollow.confirm": "Prenehaj slediti",
@ -161,16 +161,16 @@
"emoji_button.symbols": "Simboli", "emoji_button.symbols": "Simboli",
"emoji_button.travel": "Potovanja in Kraji", "emoji_button.travel": "Potovanja in Kraji",
"empty_column.account_suspended": "Račun je suspendiran", "empty_column.account_suspended": "Račun je suspendiran",
"empty_column.account_timeline": "Tukaj ni tutov!", "empty_column.account_timeline": "Tukaj ni objav!",
"empty_column.account_unavailable": "Profil ni na voljo", "empty_column.account_unavailable": "Profil ni na voljo",
"empty_column.blocks": "Niste še blokirali nobenega uporabnika.", "empty_column.blocks": "Niste še blokirali nobenega uporabnika.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"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.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "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": "Trenutno ni nič v trendu. Preverite znova kasneje!", "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 objav. Ko boste vzljubili kakšno, bo prikazana 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 te objave. Ko jo bo nekdo, se bo pojavila 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.",
"empty_column.follow_requests": "Nimate prošenj za sledenje. Ko boste prejeli kakšno, se bo prikazala tukaj.", "empty_column.follow_requests": "Nimate prošenj za sledenje. Ko boste prejeli kakšno, se bo prikazala tukaj.",
"empty_column.hashtag": "V tem ključniku še ni nič.", "empty_column.hashtag": "V tem ključniku še ni nič.",
@ -218,7 +218,7 @@
"hashtag.column_settings.tag_mode.none": "Nič od naštetega", "hashtag.column_settings.tag_mode.none": "Nič od naštetega",
"hashtag.column_settings.tag_toggle": "Za ta stolpec vključi dodatne oznake", "hashtag.column_settings.tag_toggle": "Za ta stolpec vključi dodatne oznake",
"home.column_settings.basic": "Osnovno", "home.column_settings.basic": "Osnovno",
"home.column_settings.show_reblogs": "Pokaži spodbude", "home.column_settings.show_reblogs": "Pokaži izpostavitve",
"home.column_settings.show_replies": "Pokaži odgovore", "home.column_settings.show_replies": "Pokaži odgovore",
"home.hide_announcements": "Skrij objave", "home.hide_announcements": "Skrij objave",
"home.show_announcements": "Prikaži objave", "home.show_announcements": "Prikaži objave",
@ -227,11 +227,11 @@
"intervals.full.minutes": "{number, plural, one {# minuta} two {# minuti} few {# minute} other {# minut}}", "intervals.full.minutes": "{number, plural, one {# minuta} two {# minuti} few {# minute} other {# minut}}",
"keyboard_shortcuts.back": "pojdi nazaj", "keyboard_shortcuts.back": "pojdi nazaj",
"keyboard_shortcuts.blocked": "odpri seznam blokiranih uporabnikov", "keyboard_shortcuts.blocked": "odpri seznam blokiranih uporabnikov",
"keyboard_shortcuts.boost": "spodbudi", "keyboard_shortcuts.boost": "Izpostavi objavo",
"keyboard_shortcuts.column": "fokusiraj na status v enemu od stolpcev", "keyboard_shortcuts.column": "fokusiraj na status v enemu od stolpcev",
"keyboard_shortcuts.compose": "fokusiraj na območje za sestavljanje besedila", "keyboard_shortcuts.compose": "fokusiraj na območje za sestavljanje besedila",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Opis", "keyboard_shortcuts.description": "Opis",
"keyboard_shortcuts.direct": "odpri stolpec za neposredna sporočila",
"keyboard_shortcuts.down": "premakni se navzdol po seznamu", "keyboard_shortcuts.down": "premakni se navzdol po seznamu",
"keyboard_shortcuts.enter": "odpri status", "keyboard_shortcuts.enter": "odpri status",
"keyboard_shortcuts.favourite": "vzljubi", "keyboard_shortcuts.favourite": "vzljubi",
@ -241,13 +241,13 @@
"keyboard_shortcuts.home": "odpri domačo časovnico", "keyboard_shortcuts.home": "odpri domačo časovnico",
"keyboard_shortcuts.hotkey": "Hitra tipka", "keyboard_shortcuts.hotkey": "Hitra tipka",
"keyboard_shortcuts.legend": "pokaži to legendo", "keyboard_shortcuts.legend": "pokaži to legendo",
"keyboard_shortcuts.local": "odpri lokalno časovnico", "keyboard_shortcuts.local": "Odpri krajevno časovnico",
"keyboard_shortcuts.mention": "omeni avtorja", "keyboard_shortcuts.mention": "omeni avtorja",
"keyboard_shortcuts.muted": "odpri seznam utišanih uporabnikov", "keyboard_shortcuts.muted": "odpri seznam utišanih uporabnikov",
"keyboard_shortcuts.my_profile": "odpri svoj profil", "keyboard_shortcuts.my_profile": "odpri svoj profil",
"keyboard_shortcuts.notifications": "odpri stolpec z obvestili", "keyboard_shortcuts.notifications": "odpri stolpec z obvestili",
"keyboard_shortcuts.open_media": "to open media", "keyboard_shortcuts.open_media": "to open media",
"keyboard_shortcuts.pinned": "odpri seznam pripetih tutov", "keyboard_shortcuts.pinned": "Odpri seznam pripetih objav",
"keyboard_shortcuts.profile": "odpri avtorjev profil", "keyboard_shortcuts.profile": "odpri avtorjev profil",
"keyboard_shortcuts.reply": "odgovori", "keyboard_shortcuts.reply": "odgovori",
"keyboard_shortcuts.requests": "odpri seznam s prošnjami za sledenje", "keyboard_shortcuts.requests": "odpri seznam s prošnjami za sledenje",
@ -256,7 +256,7 @@
"keyboard_shortcuts.start": "odpri stolpec \"začni\"", "keyboard_shortcuts.start": "odpri stolpec \"začni\"",
"keyboard_shortcuts.toggle_hidden": "prikaži/skrij besedilo za CW", "keyboard_shortcuts.toggle_hidden": "prikaži/skrij besedilo za CW",
"keyboard_shortcuts.toggle_sensitivity": "prikaži/skrij medije", "keyboard_shortcuts.toggle_sensitivity": "prikaži/skrij medije",
"keyboard_shortcuts.toot": "začni povsem nov tut", "keyboard_shortcuts.toot": "Začni povsem novo objavo",
"keyboard_shortcuts.unfocus": "odfokusiraj območje za sestavljanje besedila/iskanje", "keyboard_shortcuts.unfocus": "odfokusiraj območje za sestavljanje besedila/iskanje",
"keyboard_shortcuts.up": "premakni se navzgor po seznamu", "keyboard_shortcuts.up": "premakni se navzgor po seznamu",
"lightbox.close": "Zapri", "lightbox.close": "Zapri",
@ -289,7 +289,8 @@
"navigation_bar.blocks": "Blokirani uporabniki", "navigation_bar.blocks": "Blokirani uporabniki",
"navigation_bar.bookmarks": "Zaznamki", "navigation_bar.bookmarks": "Zaznamki",
"navigation_bar.community_timeline": "Lokalna časovnica", "navigation_bar.community_timeline": "Lokalna časovnica",
"navigation_bar.compose": "Sestavi nov tut", "navigation_bar.compose": "Sestavi novo objavo",
"navigation_bar.direct": "Neposredna sporočila",
"navigation_bar.discover": "Odkrijte", "navigation_bar.discover": "Odkrijte",
"navigation_bar.domain_blocks": "Skrite domene", "navigation_bar.domain_blocks": "Skrite domene",
"navigation_bar.edit_profile": "Uredi profil", "navigation_bar.edit_profile": "Uredi profil",
@ -304,7 +305,7 @@
"navigation_bar.logout": "Odjava", "navigation_bar.logout": "Odjava",
"navigation_bar.mutes": "Utišani uporabniki", "navigation_bar.mutes": "Utišani uporabniki",
"navigation_bar.personal": "Osebno", "navigation_bar.personal": "Osebno",
"navigation_bar.pins": "Pripeti tuti", "navigation_bar.pins": "Pripete objave",
"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",
@ -315,7 +316,7 @@
"notification.mention": "{name} vas je omenil/a", "notification.mention": "{name} vas je omenil/a",
"notification.own_poll": "Vaša anketa se je končala", "notification.own_poll": "Vaša anketa se je končala",
"notification.poll": "Glasovanje, v katerem ste sodelovali, se je končalo", "notification.poll": "Glasovanje, v katerem ste sodelovali, se je končalo",
"notification.reblog": "{name} je spodbudil/a vaš status", "notification.reblog": "{name} je izpostavila/a vašo objavo",
"notification.status": "{name} je pravkar objavil/a", "notification.status": "{name} je pravkar objavil/a",
"notification.update": "{name} je uredil(a) objavo", "notification.update": "{name} je uredil(a) objavo",
"notifications.clear": "Počisti obvestila", "notifications.clear": "Počisti obvestila",
@ -331,7 +332,7 @@
"notifications.column_settings.mention": "Omembe:", "notifications.column_settings.mention": "Omembe:",
"notifications.column_settings.poll": "Rezultati glasovanja:", "notifications.column_settings.poll": "Rezultati glasovanja:",
"notifications.column_settings.push": "Potisna obvestila", "notifications.column_settings.push": "Potisna obvestila",
"notifications.column_settings.reblog": "Spodbude:", "notifications.column_settings.reblog": "Izpostavitve:",
"notifications.column_settings.show": "Prikaži v stolpcu", "notifications.column_settings.show": "Prikaži v stolpcu",
"notifications.column_settings.sound": "Predvajaj zvok", "notifications.column_settings.sound": "Predvajaj zvok",
"notifications.column_settings.status": "New toots:", "notifications.column_settings.status": "New toots:",
@ -339,7 +340,7 @@
"notifications.column_settings.unread_notifications.highlight": "Poudari neprebrana obvestila", "notifications.column_settings.unread_notifications.highlight": "Poudari neprebrana obvestila",
"notifications.column_settings.update": "Urejanja:", "notifications.column_settings.update": "Urejanja:",
"notifications.filter.all": "Vse", "notifications.filter.all": "Vse",
"notifications.filter.boosts": "Spodbude", "notifications.filter.boosts": "Izpostavitev",
"notifications.filter.favourites": "Priljubljeni", "notifications.filter.favourites": "Priljubljeni",
"notifications.filter.follows": "Sledi", "notifications.filter.follows": "Sledi",
"notifications.filter.mentions": "Omembe", "notifications.filter.mentions": "Omembe",
@ -366,12 +367,12 @@
"poll_button.remove_poll": "Odstrani anketo", "poll_button.remove_poll": "Odstrani anketo",
"privacy.change": "Prilagodi zasebnost statusa", "privacy.change": "Prilagodi zasebnost statusa",
"privacy.direct.long": "Objavi samo omenjenim uporabnikom", "privacy.direct.long": "Objavi samo omenjenim uporabnikom",
"privacy.direct.short": "Direct", "privacy.direct.short": "Samo omenjeni",
"privacy.private.long": "Objavi samo sledilcem", "privacy.private.long": "Objavi samo sledilcem",
"privacy.private.short": "Followers-only", "privacy.private.short": "Samo sledilci",
"privacy.public.long": "Visible for all", "privacy.public.long": "Vidno vsem",
"privacy.public.short": "Javno", "privacy.public.short": "Javno",
"privacy.unlisted.long": "Visible for all, but opted-out of discovery features", "privacy.unlisted.long": "Vidno za vse, vendar izključeno iz funkcionalnosti odkrivanja",
"privacy.unlisted.short": "Ni prikazano", "privacy.unlisted.short": "Ni prikazano",
"refresh": "Osveži", "refresh": "Osveži",
"regeneration_indicator.label": "Nalaganje…", "regeneration_indicator.label": "Nalaganje…",
@ -427,24 +428,24 @@
"report.unfollow_explanation": "Temu računu sledite. Da ne boste več videli njegovih objav v svojem domačem viru, mu prenehajte slediti.", "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 objave, ki ste jih napisali, vzljubili, izpostavili ali ste bili v njih omenjeni, kot tudi ujemajoča se uporabniška imena, prikazna imena in ključnike.",
"search_popout.tips.hashtag": "ključnik", "search_popout.tips.hashtag": "ključnik",
"search_popout.tips.status": "stanje", "search_popout.tips.status": "objava",
"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": "Vse", "search_results.all": "Vse",
"search_results.hashtags": "Ključniki", "search_results.hashtags": "Ključniki",
"search_results.nothing_found": "Za ta iskalni niz ni zadetkov", "search_results.nothing_found": "Za ta iskalni niz ni zadetkov",
"search_results.statuses": "Tuti", "search_results.statuses": "Objave",
"search_results.statuses_fts_disabled": "Iskanje tutov po njihovi vsebini ni omogočeno na tem strežniku Mastodon.", "search_results.statuses_fts_disabled": "Iskanje objav 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}}",
"status.admin_account": "Odpri vmesnik za moderiranje za @{name}", "status.admin_account": "Odpri vmesnik za moderiranje za @{name}",
"status.admin_status": "Odpri status v vmesniku za moderiranje", "status.admin_status": "Odpri status v vmesniku za moderiranje",
"status.block": "Blokiraj @{name}", "status.block": "Blokiraj @{name}",
"status.bookmark": "Dodaj med zaznamke", "status.bookmark": "Dodaj med zaznamke",
"status.cancel_reblog_private": "Prekini spodbudo", "status.cancel_reblog_private": "Prekliči izpostavitev",
"status.cannot_reblog": "Te objave ni mogoče spodbuditi", "status.cannot_reblog": "Te objave ni mogoče izpostaviti",
"status.copy": "Kopiraj povezavo do statusa", "status.copy": "Kopiraj povezavo do statusa",
"status.delete": "Izbriši", "status.delete": "Izbriši",
"status.detailed_status": "Podroben pogled pogovora", "status.detailed_status": "Podroben pogled pogovora",
@ -465,12 +466,12 @@
"status.mute_conversation": "Utišaj pogovor", "status.mute_conversation": "Utišaj pogovor",
"status.open": "Razširi ta status", "status.open": "Razširi ta status",
"status.pin": "Pripni na profil", "status.pin": "Pripni na profil",
"status.pinned": "Pripeti tut", "status.pinned": "Pripeta objava",
"status.read_more": "Preberi več", "status.read_more": "Preberi več",
"status.reblog": "Spodbudi", "status.reblog": "Izpostavi",
"status.reblog_private": "Spodbudi izvirnemu občinstvu", "status.reblog_private": "Izpostavi z izvirno vidljivostjo",
"status.reblogged_by": "{name} spodbuja", "status.reblogged_by": "{name} je izpostavil/a",
"status.reblogs.empty": "Nihče še ni spodbudil tega tuta. Ko se bo to zgodilo, se bodo pojavili tukaj.", "status.reblogs.empty": "Nihče še ni izpostavil te objave. Ko se bo to zgodilo, se bodo pojavile tukaj.",
"status.redraft": "Izbriši in preoblikuj", "status.redraft": "Izbriši in preoblikuj",
"status.remove_bookmark": "Odstrani zaznamek", "status.remove_bookmark": "Odstrani zaznamek",
"status.reply": "Odgovori", "status.reply": "Odgovori",
@ -490,7 +491,7 @@
"suggestions.header": "Morda bi vas zanimalo…", "suggestions.header": "Morda bi vas zanimalo…",
"tabs_bar.federated_timeline": "Združeno", "tabs_bar.federated_timeline": "Združeno",
"tabs_bar.home": "Domov", "tabs_bar.home": "Domov",
"tabs_bar.local_timeline": "Lokalno", "tabs_bar.local_timeline": "Krajevno",
"tabs_bar.notifications": "Obvestila", "tabs_bar.notifications": "Obvestila",
"tabs_bar.search": "Iskanje", "tabs_bar.search": "Iskanje",
"time_remaining.days": "{number, plural, one {# dan} other {# dni}} je ostalo", "time_remaining.days": "{number, plural, one {# dan} other {# dni}} je ostalo",
@ -514,7 +515,7 @@
"upload_error.poll": "Prenos datoteke z anketami ni dovoljen.", "upload_error.poll": "Prenos datoteke z anketami ni dovoljen.",
"upload_form.audio_description": "Opiši za osebe z okvaro sluha", "upload_form.audio_description": "Opiši za osebe z okvaro sluha",
"upload_form.description": "Opišite za slabovidne", "upload_form.description": "Opišite za slabovidne",
"upload_form.description_missing": "No description added", "upload_form.description_missing": "Noben opis ni bil dodan",
"upload_form.edit": "Uredi", "upload_form.edit": "Uredi",
"upload_form.thumbnail": "Spremeni sličico", "upload_form.thumbnail": "Spremeni sličico",
"upload_form.undo": "Izbriši", "upload_form.undo": "Izbriši",

View File

@ -70,7 +70,7 @@
"column.blocks": "Përdorues të bllokuar", "column.blocks": "Përdorues të bllokuar",
"column.bookmarks": "Faqerojtës", "column.bookmarks": "Faqerojtës",
"column.community": "Rrjedhë kohore vendore", "column.community": "Rrjedhë kohore vendore",
"column.conversations": "Biseda", "column.direct": "Mesazhe të drejtpërdrejtë",
"column.directory": "Shfletoni profile", "column.directory": "Shfletoni profile",
"column.domain_blocks": "Përkatësi të bllokuara", "column.domain_blocks": "Përkatësi të bllokuara",
"column.favourites": "Të parapëlqyer", "column.favourites": "Të parapëlqyer",
@ -166,7 +166,7 @@
"empty_column.blocks": "Skeni bllokuar ende ndonjë përdorues.", "empty_column.blocks": "Skeni bllokuar ende ndonjë përdorues.",
"empty_column.bookmarked_statuses": "Skeni faqeruajtur ende ndonjë mesazh. Kur faqeruani një të tillë, ai do të shfaqet këtu.", "empty_column.bookmarked_statuses": "Skeni faqeruajtur ende ndonjë mesazh. Kur faqeruani një të tillë, ai do të shfaqet këtu.",
"empty_column.community": "Rrjedha kohore vendore është e zbrazët. Shkruani diçka publikisht që ti hyhet valles!", "empty_column.community": "Rrjedha kohore vendore është e zbrazët. Shkruani diçka publikisht që ti hyhet valles!",
"empty_column.conversations": "Pasi të dërgoni ose merrni një postim që është i dukshëm vetëm për personat e përmendur në të, do të shfaqet këtu.", "empty_column.direct": "Skeni ende ndonjë mesazh të drejtpërdrejtë. Kur dërgoni ose merrni një të tillë, ai do të shfaqet këtu.",
"empty_column.domain_blocks": "Ende ska përkatësi të fshehura.", "empty_column.domain_blocks": "Ende ska përkatësi të fshehura.",
"empty_column.explore_statuses": "Asgjë në modë tani. Kontrolloni më vonë!", "empty_column.explore_statuses": "Asgjë në modë tani. Kontrolloni më vonë!",
"empty_column.favourited_statuses": "Skeni ende ndonjë mesazh të parapëlqyer. Kur parapëlqeni një të tillë, ai do të shfaqet këtu.", "empty_column.favourited_statuses": "Skeni ende ndonjë mesazh të parapëlqyer. Kur parapëlqeni një të tillë, ai do të shfaqet këtu.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "për përforcim", "keyboard_shortcuts.boost": "për përforcim",
"keyboard_shortcuts.column": "për kalim fokusi mbi një gjendje te një nga shtyllat", "keyboard_shortcuts.column": "për kalim fokusi mbi një gjendje te një nga shtyllat",
"keyboard_shortcuts.compose": "për kalim fokusi te fusha e hartimit të mesazheve", "keyboard_shortcuts.compose": "për kalim fokusi te fusha e hartimit të mesazheve",
"keyboard_shortcuts.conversations": "për të hapur shtyllë bisedash",
"keyboard_shortcuts.description": "Përshkrim", "keyboard_shortcuts.description": "Përshkrim",
"keyboard_shortcuts.direct": "për hapje shtylle mesazhesh të drejtpërdrejtë",
"keyboard_shortcuts.down": "për zbritje poshtë nëpër listë", "keyboard_shortcuts.down": "për zbritje poshtë nëpër listë",
"keyboard_shortcuts.enter": "për hapje gjendjeje", "keyboard_shortcuts.enter": "për hapje gjendjeje",
"keyboard_shortcuts.favourite": "për ti vënë shenjë si të parapëlqyer", "keyboard_shortcuts.favourite": "për ti vënë shenjë si të parapëlqyer",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Faqerojtës", "navigation_bar.bookmarks": "Faqerojtës",
"navigation_bar.community_timeline": "Rrjedhë kohore vendore", "navigation_bar.community_timeline": "Rrjedhë kohore vendore",
"navigation_bar.compose": "Hartoni mesazh të ri", "navigation_bar.compose": "Hartoni mesazh të ri",
"navigation_bar.direct": "Mesazhe të drejtpërdrejtë",
"navigation_bar.discover": "Zbuloni", "navigation_bar.discover": "Zbuloni",
"navigation_bar.domain_blocks": "Përkatësi të bllokuara", "navigation_bar.domain_blocks": "Përkatësi të bllokuara",
"navigation_bar.edit_profile": "Përpunoni profilin", "navigation_bar.edit_profile": "Përpunoni profilin",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Hiqe pyetësorin", "poll_button.remove_poll": "Hiqe pyetësorin",
"privacy.change": "Rregulloni privatësi mesazhesh", "privacy.change": "Rregulloni privatësi mesazhesh",
"privacy.direct.long": "I dukshëm vetëm për përdorues të përmendur", "privacy.direct.long": "I dukshëm vetëm për përdorues të përmendur",
"privacy.direct.short": "Vetëm persona që përmend", "privacy.direct.short": "Vetëm për personat e përmendur",
"privacy.private.long": "I dukshëm vetëm për ndjekës", "privacy.private.long": "I dukshëm vetëm për ndjekës",
"privacy.private.short": "Vetëm ndjekës", "privacy.private.short": "Vetëm ndjekës",
"privacy.public.long": "I dukshëm për të tërë", "privacy.public.long": "I dukshëm për të tërë",

View File

@ -70,7 +70,7 @@
"column.blocks": "Blokirani korisnici", "column.blocks": "Blokirani korisnici",
"column.bookmarks": "Bookmarks", "column.bookmarks": "Bookmarks",
"column.community": "Lokalna lajna", "column.community": "Lokalna lajna",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Browse profiles", "column.directory": "Browse profiles",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.favourites": "Omiljeni", "column.favourites": "Omiljeni",
@ -166,7 +166,7 @@
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"empty_column.community": "Lokalna lajna je prazna. Napišite nešto javno da lajna produva!", "empty_column.community": "Lokalna lajna je prazna. Napišite nešto javno da lajna produva!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "There are no hidden domains yet.", "empty_column.domain_blocks": "There are no hidden domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "da podržite", "keyboard_shortcuts.boost": "da podržite",
"keyboard_shortcuts.column": "da se prebacite na status u jednoj od kolona", "keyboard_shortcuts.column": "da se prebacite na status u jednoj od kolona",
"keyboard_shortcuts.compose": "da se prebacite na pisanje novog tuta", "keyboard_shortcuts.compose": "da se prebacite na pisanje novog tuta",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Opis", "keyboard_shortcuts.description": "Opis",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "da se pomerite na dole u listi", "keyboard_shortcuts.down": "da se pomerite na dole u listi",
"keyboard_shortcuts.enter": "da otvorite status", "keyboard_shortcuts.enter": "da otvorite status",
"keyboard_shortcuts.favourite": "da označite kao omiljeno", "keyboard_shortcuts.favourite": "da označite kao omiljeno",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Lokalna lajna", "navigation_bar.community_timeline": "Lokalna lajna",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "Izmeni profil", "navigation_bar.edit_profile": "Izmeni profil",

View File

@ -70,7 +70,7 @@
"column.blocks": "Блокирани корисници", "column.blocks": "Блокирани корисници",
"column.bookmarks": "Обележивачи", "column.bookmarks": "Обележивачи",
"column.community": "Локална временска линија", "column.community": "Локална временска линија",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Претражи налоге", "column.directory": "Претражи налоге",
"column.domain_blocks": "Скривени домени", "column.domain_blocks": "Скривени домени",
"column.favourites": "Омиљене", "column.favourites": "Омиљене",
@ -166,7 +166,7 @@
"empty_column.blocks": "Још увек немате блокираних корисника.", "empty_column.blocks": "Још увек немате блокираних корисника.",
"empty_column.bookmarked_statuses": "Још увек немате обележене трубе. Када их обележите, појавиће се овде.", "empty_column.bookmarked_statuses": "Још увек немате обележене трубе. Када их обележите, појавиће се овде.",
"empty_column.community": "Локална временска линија је празна. Напишите нешто јавно да започнете!", "empty_column.community": "Локална временска линија је празна. Напишите нешто јавно да започнете!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "Још увек нема сакривених домена.", "empty_column.domain_blocks": "Још увек нема сакривених домена.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "Још увек немате труба које су вам се свиделе. Када вам се једна свиди, појавиће се овде.", "empty_column.favourited_statuses": "Још увек немате труба које су вам се свиделе. Када вам се једна свиди, појавиће се овде.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "да подржите", "keyboard_shortcuts.boost": "да подржите",
"keyboard_shortcuts.column": "да се пребаците на статус у једној од колона", "keyboard_shortcuts.column": "да се пребаците на статус у једној од колона",
"keyboard_shortcuts.compose": "да се пребаците на писање новог тута", "keyboard_shortcuts.compose": "да се пребаците на писање новог тута",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Опис", "keyboard_shortcuts.description": "Опис",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "да се померите на доле у листи", "keyboard_shortcuts.down": "да се померите на доле у листи",
"keyboard_shortcuts.enter": "да отворите статус", "keyboard_shortcuts.enter": "да отворите статус",
"keyboard_shortcuts.favourite": "да означите као омиљено", "keyboard_shortcuts.favourite": "да означите као омиљено",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Маркери", "navigation_bar.bookmarks": "Маркери",
"navigation_bar.community_timeline": "Локална временска линија", "navigation_bar.community_timeline": "Локална временска линија",
"navigation_bar.compose": "Саставите нову трубу", "navigation_bar.compose": "Саставите нову трубу",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Откриј", "navigation_bar.discover": "Откриј",
"navigation_bar.domain_blocks": "Сакривени домени", "navigation_bar.domain_blocks": "Сакривени домени",
"navigation_bar.edit_profile": "Измени налог", "navigation_bar.edit_profile": "Измени налог",

View File

@ -70,7 +70,7 @@
"column.blocks": "Blockerade användare", "column.blocks": "Blockerade användare",
"column.bookmarks": "Bokmärken", "column.bookmarks": "Bokmärken",
"column.community": "Lokal tidslinje", "column.community": "Lokal tidslinje",
"column.conversations": "Konversationer", "column.direct": "Direktmeddelanden",
"column.directory": "Bläddra bland profiler", "column.directory": "Bläddra bland profiler",
"column.domain_blocks": "Dolda domäner", "column.domain_blocks": "Dolda domäner",
"column.favourites": "Favoriter", "column.favourites": "Favoriter",
@ -80,7 +80,7 @@
"column.mutes": "Tystade användare", "column.mutes": "Tystade användare",
"column.notifications": "Aviseringar", "column.notifications": "Aviseringar",
"column.pins": "Nålade toots", "column.pins": "Nålade toots",
"column.public": "Förenad tidslinje", "column.public": "Federerad tidslinje",
"column_back_button.label": "Tillbaka", "column_back_button.label": "Tillbaka",
"column_header.hide_settings": "Dölj inställningar", "column_header.hide_settings": "Dölj inställningar",
"column_header.moveLeft_settings": "Flytta kolumnen åt vänster", "column_header.moveLeft_settings": "Flytta kolumnen åt vänster",
@ -166,7 +166,7 @@
"empty_column.blocks": "Du har ännu ej blockerat några användare.", "empty_column.blocks": "Du har ännu ej blockerat några användare.",
"empty_column.bookmarked_statuses": "Du har inte bokmärkt några tutar än. När du gör ett bokmärke kommer det synas här.", "empty_column.bookmarked_statuses": "Du har inte bokmärkt några tutar än. När du gör ett bokmärke kommer det synas här.",
"empty_column.community": "Den lokala tidslinjen är tom. Skriv något offentligt för att sätta bollen i rullning!", "empty_column.community": "Den lokala tidslinjen är tom. Skriv något offentligt för att sätta bollen i rullning!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "Du har inga direktmeddelanden. När du skickar eller tar emot ett direktmeddelande kommer det att visas här.",
"empty_column.domain_blocks": "Det finns ännu inga dolda domäner.", "empty_column.domain_blocks": "Det finns ännu inga dolda domäner.",
"empty_column.explore_statuses": "Ingenting är trendigt just nu. Kom tillbaka senare!", "empty_column.explore_statuses": "Ingenting är trendigt just nu. Kom tillbaka senare!",
"empty_column.favourited_statuses": "Du har inga favoritmarkerade toots än. När du favoritmarkerar en kommer den visas här.", "empty_column.favourited_statuses": "Du har inga favoritmarkerade toots än. När du favoritmarkerar en kommer den visas här.",
@ -230,13 +230,13 @@
"keyboard_shortcuts.boost": "för att knuffa", "keyboard_shortcuts.boost": "för att knuffa",
"keyboard_shortcuts.column": "för att fokusera en status i en av kolumnerna", "keyboard_shortcuts.column": "för att fokusera en status i en av kolumnerna",
"keyboard_shortcuts.compose": "för att fokusera skrivfältet", "keyboard_shortcuts.compose": "för att fokusera skrivfältet",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Beskrivning", "keyboard_shortcuts.description": "Beskrivning",
"keyboard_shortcuts.direct": "för att öppna Direktmeddelanden",
"keyboard_shortcuts.down": "för att flytta nedåt i listan", "keyboard_shortcuts.down": "för att flytta nedåt i listan",
"keyboard_shortcuts.enter": "för att öppna en status", "keyboard_shortcuts.enter": "för att öppna en status",
"keyboard_shortcuts.favourite": "för att sätta som favorit", "keyboard_shortcuts.favourite": "för att sätta som favorit",
"keyboard_shortcuts.favourites": "för att öppna Favoriter", "keyboard_shortcuts.favourites": "för att öppna Favoriter",
"keyboard_shortcuts.federated": "för att öppna Förenad tidslinje", "keyboard_shortcuts.federated": "Öppna federerad tidslinje",
"keyboard_shortcuts.heading": "Tangentbordsgenvägar", "keyboard_shortcuts.heading": "Tangentbordsgenvägar",
"keyboard_shortcuts.home": "för att öppna Hem-tidslinjen", "keyboard_shortcuts.home": "för att öppna Hem-tidslinjen",
"keyboard_shortcuts.hotkey": "Kommando", "keyboard_shortcuts.hotkey": "Kommando",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bokmärken", "navigation_bar.bookmarks": "Bokmärken",
"navigation_bar.community_timeline": "Lokal tidslinje", "navigation_bar.community_timeline": "Lokal tidslinje",
"navigation_bar.compose": "Författa ny toot", "navigation_bar.compose": "Författa ny toot",
"navigation_bar.direct": "Direktmeddelanden",
"navigation_bar.discover": "Upptäck", "navigation_bar.discover": "Upptäck",
"navigation_bar.domain_blocks": "Dolda domäner", "navigation_bar.domain_blocks": "Dolda domäner",
"navigation_bar.edit_profile": "Redigera profil", "navigation_bar.edit_profile": "Redigera profil",
@ -306,7 +307,7 @@
"navigation_bar.personal": "Personligt", "navigation_bar.personal": "Personligt",
"navigation_bar.pins": "Nålade inlägg (toots)", "navigation_bar.pins": "Nålade inlägg (toots)",
"navigation_bar.preferences": "Inställningar", "navigation_bar.preferences": "Inställningar",
"navigation_bar.public_timeline": "Förenad tidslinje", "navigation_bar.public_timeline": "Federerad tidslinje",
"navigation_bar.security": "Säkerhet", "navigation_bar.security": "Säkerhet",
"notification.admin.sign_up": "{name} registrerade sig", "notification.admin.sign_up": "{name} registrerade sig",
"notification.favourite": "{name} favoriserade din status", "notification.favourite": "{name} favoriserade din status",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Ta bort omröstning", "poll_button.remove_poll": "Ta bort omröstning",
"privacy.change": "Justera sekretess", "privacy.change": "Justera sekretess",
"privacy.direct.long": "Skicka endast till nämnda användare", "privacy.direct.long": "Skicka endast till nämnda användare",
"privacy.direct.short": "Bara personer jag nämner", "privacy.direct.short": "Direct",
"privacy.private.long": "Endast synligt för följare", "privacy.private.long": "Endast synligt för följare",
"privacy.private.short": "Endast följare", "privacy.private.short": "Endast följare",
"privacy.public.long": "Synlig för alla", "privacy.public.long": "Synlig för alla",
@ -488,7 +489,7 @@
"status.unpin": "Ångra fäst i profil", "status.unpin": "Ångra fäst i profil",
"suggestions.dismiss": "Avfärda förslag", "suggestions.dismiss": "Avfärda förslag",
"suggestions.header": "Du kanske är intresserad av…", "suggestions.header": "Du kanske är intresserad av…",
"tabs_bar.federated_timeline": "Förenad", "tabs_bar.federated_timeline": "Federerad",
"tabs_bar.home": "Hem", "tabs_bar.home": "Hem",
"tabs_bar.local_timeline": "Lokal", "tabs_bar.local_timeline": "Lokal",
"tabs_bar.notifications": "Aviseringar", "tabs_bar.notifications": "Aviseringar",

View File

@ -70,7 +70,7 @@
"column.blocks": "Blocked users", "column.blocks": "Blocked users",
"column.bookmarks": "Bookmarks", "column.bookmarks": "Bookmarks",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Browse profiles", "column.directory": "Browse profiles",
"column.domain_blocks": "Blocked domains", "column.domain_blocks": "Blocked domains",
"column.favourites": "Favourites", "column.favourites": "Favourites",
@ -166,7 +166,7 @@
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"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.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "There are no blocked domains yet.", "empty_column.domain_blocks": "There are no blocked domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "Edit profile", "navigation_bar.edit_profile": "Edit profile",

View File

@ -70,7 +70,7 @@
"column.blocks": "தடுக்கப்பட்ட பயனர்கள்", "column.blocks": "தடுக்கப்பட்ட பயனர்கள்",
"column.bookmarks": "அடையாளக்குறிகள்", "column.bookmarks": "அடையாளக்குறிகள்",
"column.community": "சுய நிகழ்வு காலவரிசை", "column.community": "சுய நிகழ்வு காலவரிசை",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "சுயவிவரங்களை உலாவு", "column.directory": "சுயவிவரங்களை உலாவு",
"column.domain_blocks": "மறைந்திருக்கும் திரளங்கள்", "column.domain_blocks": "மறைந்திருக்கும் திரளங்கள்",
"column.favourites": "பிடித்தவைகள்", "column.favourites": "பிடித்தவைகள்",
@ -166,7 +166,7 @@
"empty_column.blocks": "நீங்கள் இதுவரை எந்தப் பயனர்களையும் முடக்கியிருக்கவில்லை.", "empty_column.blocks": "நீங்கள் இதுவரை எந்தப் பயனர்களையும் முடக்கியிருக்கவில்லை.",
"empty_column.bookmarked_statuses": "உங்களிடம் அடையாளக்குறியிட்ட டூட்டுகள் எவையும் இல்லை. அடையாளக்குறியிட்ட பிறகு அவை இங்கே காட்டப்படும்.", "empty_column.bookmarked_statuses": "உங்களிடம் அடையாளக்குறியிட்ட டூட்டுகள் எவையும் இல்லை. அடையாளக்குறியிட்ட பிறகு அவை இங்கே காட்டப்படும்.",
"empty_column.community": "உங்கள் மாஸ்டடான் முச்சந்தியில் யாரும் இல்லை. எதையேனும் எழுதி ஆட்டத்தைத் துவக்குங்கள்!", "empty_column.community": "உங்கள் மாஸ்டடான் முச்சந்தியில் யாரும் இல்லை. எதையேனும் எழுதி ஆட்டத்தைத் துவக்குங்கள்!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "தடுக்கப்பட்டக் களங்கள் இதுவரை இல்லை.", "empty_column.domain_blocks": "தடுக்கப்பட்டக் களங்கள் இதுவரை இல்லை.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "உங்களுக்குப் பிடித்த டூட்டுகள் இதுவரை இல்லை. ஒரு டூட்டில் நீங்கள் விருப்பக்குறி இட்டால், அது இங்கே காண்பிக்கப்படும்.", "empty_column.favourited_statuses": "உங்களுக்குப் பிடித்த டூட்டுகள் இதுவரை இல்லை. ஒரு டூட்டில் நீங்கள் விருப்பக்குறி இட்டால், அது இங்கே காண்பிக்கப்படும்.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "பகிர", "keyboard_shortcuts.boost": "பகிர",
"keyboard_shortcuts.column": "ஏதேனும் ஒரு நெடுவரிசையில் உள்ள டூட்டுல் கவனம் செலுத்த", "keyboard_shortcuts.column": "ஏதேனும் ஒரு நெடுவரிசையில் உள்ள டூட்டுல் கவனம் செலுத்த",
"keyboard_shortcuts.compose": "பதிவு எழுதும் பெட்டியில் கவனம் செலுத்த", "keyboard_shortcuts.compose": "பதிவு எழுதும் பெட்டியில் கவனம் செலுத்த",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "விவரம்", "keyboard_shortcuts.description": "விவரம்",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "பட்டியலின் கீழே செல்ல", "keyboard_shortcuts.down": "பட்டியலின் கீழே செல்ல",
"keyboard_shortcuts.enter": "டூட்டைத் திறக்க", "keyboard_shortcuts.enter": "டூட்டைத் திறக்க",
"keyboard_shortcuts.favourite": "விருப்பக்குறி இட", "keyboard_shortcuts.favourite": "விருப்பக்குறி இட",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "அடையாளக்குறிகள்", "navigation_bar.bookmarks": "அடையாளக்குறிகள்",
"navigation_bar.community_timeline": "உள்ளூர் காலக்கெடு", "navigation_bar.community_timeline": "உள்ளூர் காலக்கெடு",
"navigation_bar.compose": "புதியவற்றை எழுதுக toot", "navigation_bar.compose": "புதியவற்றை எழுதுக toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "கண்டு பிடி", "navigation_bar.discover": "கண்டு பிடி",
"navigation_bar.domain_blocks": "மறைந்த களங்கள்", "navigation_bar.domain_blocks": "மறைந்த களங்கள்",
"navigation_bar.edit_profile": "சுயவிவரத்தைத் திருத்தவும்", "navigation_bar.edit_profile": "சுயவிவரத்தைத் திருத்தவும்",

View File

@ -70,7 +70,7 @@
"column.blocks": "Blocked users", "column.blocks": "Blocked users",
"column.bookmarks": "Bookmarks", "column.bookmarks": "Bookmarks",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Browse profiles", "column.directory": "Browse profiles",
"column.domain_blocks": "Blocked domains", "column.domain_blocks": "Blocked domains",
"column.favourites": "Favourites", "column.favourites": "Favourites",
@ -166,7 +166,7 @@
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"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.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "There are no blocked domains yet.", "empty_column.domain_blocks": "There are no blocked domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "Edit profile", "navigation_bar.edit_profile": "Edit profile",

View File

@ -70,7 +70,7 @@
"column.blocks": "బ్లాక్ చేయబడిన వినియోగదారులు", "column.blocks": "బ్లాక్ చేయబడిన వినియోగదారులు",
"column.bookmarks": "Bookmarks", "column.bookmarks": "Bookmarks",
"column.community": "స్థానిక కాలక్రమం", "column.community": "స్థానిక కాలక్రమం",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Browse profiles", "column.directory": "Browse profiles",
"column.domain_blocks": "దాచిన డొమైన్లు", "column.domain_blocks": "దాచిన డొమైన్లు",
"column.favourites": "ఇష్టపడినవి", "column.favourites": "ఇష్టపడినవి",
@ -166,7 +166,7 @@
"empty_column.blocks": "మీరు ఇంకా ఏ వినియోగదారులనూ బ్లాక్ చేయలేదు.", "empty_column.blocks": "మీరు ఇంకా ఏ వినియోగదారులనూ బ్లాక్ చేయలేదు.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"empty_column.community": "స్థానిక కాలక్రమం ఖాళీగా ఉంది. మొదలుపెట్టడానికి బహిరంగంగా ఏదో ఒకటి వ్రాయండి!", "empty_column.community": "స్థానిక కాలక్రమం ఖాళీగా ఉంది. మొదలుపెట్టడానికి బహిరంగంగా ఏదో ఒకటి వ్రాయండి!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "దాచబడిన డొమైన్లు ఇంకా ఏమీ లేవు.", "empty_column.domain_blocks": "దాచబడిన డొమైన్లు ఇంకా ఏమీ లేవు.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "మీకు ఇష్టపడిన టూట్లు ఇంకా ఎమీ లేవు. మీరు ఒకదానిని ఇష్టపడినప్పుడు, అది ఇక్కడ కనిపిస్తుంది.", "empty_column.favourited_statuses": "మీకు ఇష్టపడిన టూట్లు ఇంకా ఎమీ లేవు. మీరు ఒకదానిని ఇష్టపడినప్పుడు, అది ఇక్కడ కనిపిస్తుంది.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "బూస్ట్ చేయడానికి", "keyboard_shortcuts.boost": "బూస్ట్ చేయడానికి",
"keyboard_shortcuts.column": "నిలువు వరుసలలో ఒకదానిపై దృష్టి పెట్టడానికి", "keyboard_shortcuts.column": "నిలువు వరుసలలో ఒకదానిపై దృష్టి పెట్టడానికి",
"keyboard_shortcuts.compose": "కంపోజ్ టెక్స్ట్ఏరియా పై దృష్టి పెట్టడానికి", "keyboard_shortcuts.compose": "కంపోజ్ టెక్స్ట్ఏరియా పై దృష్టి పెట్టడానికి",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "జాబితాలో క్రిందికి వెళ్ళడానికి", "keyboard_shortcuts.down": "జాబితాలో క్రిందికి వెళ్ళడానికి",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "ఇష్టపడడానికి", "keyboard_shortcuts.favourite": "ఇష్టపడడానికి",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "స్థానిక కాలక్రమం", "navigation_bar.community_timeline": "స్థానిక కాలక్రమం",
"navigation_bar.compose": "కొత్త టూట్ను రాయండి", "navigation_bar.compose": "కొత్త టూట్ను రాయండి",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "కనుగొను", "navigation_bar.discover": "కనుగొను",
"navigation_bar.domain_blocks": "దాచిన డొమైన్లు", "navigation_bar.domain_blocks": "దాచిన డొమైన్లు",
"navigation_bar.edit_profile": "ప్రొఫైల్ని సవరించండి", "navigation_bar.edit_profile": "ప్రొఫైల్ని సవరించండి",

View File

@ -70,7 +70,7 @@
"column.blocks": "ผู้ใช้ที่ปิดกั้นอยู่", "column.blocks": "ผู้ใช้ที่ปิดกั้นอยู่",
"column.bookmarks": "ที่คั่นหน้า", "column.bookmarks": "ที่คั่นหน้า",
"column.community": "เส้นเวลาในเซิร์ฟเวอร์", "column.community": "เส้นเวลาในเซิร์ฟเวอร์",
"column.conversations": "การสนทนา", "column.direct": "ข้อความโดยตรง",
"column.directory": "เรียกดูโปรไฟล์", "column.directory": "เรียกดูโปรไฟล์",
"column.domain_blocks": "โดเมนที่ปิดกั้นอยู่", "column.domain_blocks": "โดเมนที่ปิดกั้นอยู่",
"column.favourites": "รายการโปรด", "column.favourites": "รายการโปรด",
@ -166,7 +166,7 @@
"empty_column.blocks": "คุณยังไม่ได้ปิดกั้นผู้ใช้ใด ๆ", "empty_column.blocks": "คุณยังไม่ได้ปิดกั้นผู้ใช้ใด ๆ",
"empty_column.bookmarked_statuses": "คุณยังไม่มีโพสต์ที่เพิ่มที่คั่นหน้าไว้ใด ๆ เมื่อคุณเพิ่มที่คั่นหน้าโพสต์ โพสต์จะปรากฏที่นี่", "empty_column.bookmarked_statuses": "คุณยังไม่มีโพสต์ที่เพิ่มที่คั่นหน้าไว้ใด ๆ เมื่อคุณเพิ่มที่คั่นหน้าโพสต์ โพสต์จะปรากฏที่นี่",
"empty_column.community": "เส้นเวลาในเซิร์ฟเวอร์ว่างเปล่า เขียนบางอย่างเป็นสาธารณะเพื่อเริ่มต้น!", "empty_column.community": "เส้นเวลาในเซิร์ฟเวอร์ว่างเปล่า เขียนบางอย่างเป็นสาธารณะเพื่อเริ่มต้น!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "คุณยังไม่มีข้อความโดยตรงใด ๆ เมื่อคุณส่งหรือรับข้อความ ข้อความจะปรากฏที่นี่",
"empty_column.domain_blocks": "ยังไม่มีโดเมนที่ปิดกั้นอยู่", "empty_column.domain_blocks": "ยังไม่มีโดเมนที่ปิดกั้นอยู่",
"empty_column.explore_statuses": "ไม่มีสิ่งใดที่กำลังนิยมในตอนนี้ กลับมาตรวจสอบในภายหลัง!", "empty_column.explore_statuses": "ไม่มีสิ่งใดที่กำลังนิยมในตอนนี้ กลับมาตรวจสอบในภายหลัง!",
"empty_column.favourited_statuses": "คุณยังไม่มีโพสต์ที่ชื่นชอบใด ๆ เมื่อคุณชื่นชอบโพสต์ โพสต์จะปรากฏที่นี่", "empty_column.favourited_statuses": "คุณยังไม่มีโพสต์ที่ชื่นชอบใด ๆ เมื่อคุณชื่นชอบโพสต์ โพสต์จะปรากฏที่นี่",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "ดันโพสต์", "keyboard_shortcuts.boost": "ดันโพสต์",
"keyboard_shortcuts.column": "โฟกัสคอลัมน์", "keyboard_shortcuts.column": "โฟกัสคอลัมน์",
"keyboard_shortcuts.compose": "โฟกัสพื้นที่เขียนข้อความ", "keyboard_shortcuts.compose": "โฟกัสพื้นที่เขียนข้อความ",
"keyboard_shortcuts.conversations": "เพื่อเปิดคอลัมน์การสนทนา",
"keyboard_shortcuts.description": "คำอธิบาย", "keyboard_shortcuts.description": "คำอธิบาย",
"keyboard_shortcuts.direct": "เพื่อเปิดคอลัมน์ข้อความโดยตรง",
"keyboard_shortcuts.down": "ย้ายลงในรายการ", "keyboard_shortcuts.down": "ย้ายลงในรายการ",
"keyboard_shortcuts.enter": "เปิดโพสต์", "keyboard_shortcuts.enter": "เปิดโพสต์",
"keyboard_shortcuts.favourite": "ชื่นชอบโพสต์", "keyboard_shortcuts.favourite": "ชื่นชอบโพสต์",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "ที่คั่นหน้า", "navigation_bar.bookmarks": "ที่คั่นหน้า",
"navigation_bar.community_timeline": "เส้นเวลาในเซิร์ฟเวอร์", "navigation_bar.community_timeline": "เส้นเวลาในเซิร์ฟเวอร์",
"navigation_bar.compose": "เขียนโพสต์ใหม่", "navigation_bar.compose": "เขียนโพสต์ใหม่",
"navigation_bar.direct": "ข้อความโดยตรง",
"navigation_bar.discover": "ค้นพบ", "navigation_bar.discover": "ค้นพบ",
"navigation_bar.domain_blocks": "โดเมนที่ปิดกั้นอยู่", "navigation_bar.domain_blocks": "โดเมนที่ปิดกั้นอยู่",
"navigation_bar.edit_profile": "แก้ไขโปรไฟล์", "navigation_bar.edit_profile": "แก้ไขโปรไฟล์",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "เอาการสำรวจความคิดเห็นออก", "poll_button.remove_poll": "เอาการสำรวจความคิดเห็นออก",
"privacy.change": "เปลี่ยนความเป็นส่วนตัวของโพสต์", "privacy.change": "เปลี่ยนความเป็นส่วนตัวของโพสต์",
"privacy.direct.long": "ปรากฏแก่ผู้ใช้ที่กล่าวถึงเท่านั้น", "privacy.direct.long": "ปรากฏแก่ผู้ใช้ที่กล่าวถึงเท่านั้น",
"privacy.direct.short": "เฉพาะผู้คนที่ฉันกล่าวถึงเท่านั้น", "privacy.direct.short": "ผู้คนที่กล่าวถึงเท่านั้น",
"privacy.private.long": "ปรากฏแก่ผู้ติดตามเท่านั้น", "privacy.private.long": "ปรากฏแก่ผู้ติดตามเท่านั้น",
"privacy.private.short": "ผู้ติดตามเท่านั้น", "privacy.private.short": "ผู้ติดตามเท่านั้น",
"privacy.public.long": "ปรากฏแก่ทั้งหมด", "privacy.public.long": "ปรากฏแก่ทั้งหมด",
@ -512,13 +513,13 @@
"upload_button.label": "เพิ่มไฟล์ภาพ, วิดีโอ หรือเสียง", "upload_button.label": "เพิ่มไฟล์ภาพ, วิดีโอ หรือเสียง",
"upload_error.limit": "เกินขีดจำกัดการอัปโหลดไฟล์", "upload_error.limit": "เกินขีดจำกัดการอัปโหลดไฟล์",
"upload_error.poll": "ไม่อนุญาตให้อัปโหลดไฟล์กับการลงคะแนน", "upload_error.poll": "ไม่อนุญาตให้อัปโหลดไฟล์กับการลงคะแนน",
"upload_form.audio_description": "อธิบายสำหรับผู้สูญเสียการได้ยิน", "upload_form.audio_description": "อธิบายสำหรับผู้ที่สูญเสียการได้ยิน",
"upload_form.description": "อธิบายสำหรับผู้บกพร่องทางการมองเห็น", "upload_form.description": "อธิบายสำหรับผู้บกพร่องทางการมองเห็น",
"upload_form.description_missing": "ไม่มีการเพิ่มคำอธิบาย", "upload_form.description_missing": "ไม่มีการเพิ่มคำอธิบาย",
"upload_form.edit": "แก้ไข", "upload_form.edit": "แก้ไข",
"upload_form.thumbnail": "เปลี่ยนภาพขนาดย่อ", "upload_form.thumbnail": "เปลี่ยนภาพขนาดย่อ",
"upload_form.undo": "ลบ", "upload_form.undo": "ลบ",
"upload_form.video_description": "อธิบายสำหรับผู้สูญเสียการได้ยินหรือบกพร่องทางการมองเห็น", "upload_form.video_description": "อธิบายสำหรับผู้ที่สูญเสียการได้ยินหรือบกพร่องทางการมองเห็น",
"upload_modal.analyzing_picture": "กำลังวิเคราะห์รูปภาพ…", "upload_modal.analyzing_picture": "กำลังวิเคราะห์รูปภาพ…",
"upload_modal.apply": "นำไปใช้", "upload_modal.apply": "นำไปใช้",
"upload_modal.applying": "กำลังนำไปใช้…", "upload_modal.applying": "กำลังนำไปใช้…",

View File

@ -70,7 +70,7 @@
"column.blocks": "Engellenen kullanıcılar", "column.blocks": "Engellenen kullanıcılar",
"column.bookmarks": "Yer İmleri", "column.bookmarks": "Yer İmleri",
"column.community": "Yerel zaman tüneli", "column.community": "Yerel zaman tüneli",
"column.conversations": "Sohbetler", "column.direct": "Doğrudan iletiler",
"column.directory": "Profillere göz at", "column.directory": "Profillere göz at",
"column.domain_blocks": "Engellenen alan adları", "column.domain_blocks": "Engellenen alan adları",
"column.favourites": "Favoriler", "column.favourites": "Favoriler",
@ -166,7 +166,7 @@
"empty_column.blocks": "Henüz herhangi bir kullanıcıyı engellemedin.", "empty_column.blocks": "Henüz herhangi bir kullanıcıyı engellemedin.",
"empty_column.bookmarked_statuses": "Henüz yer imine eklediğin toot yok. Bir tanesi yer imine eklendiğinde burada görünür.", "empty_column.bookmarked_statuses": "Henüz yer imine eklediğin toot yok. Bir tanesi yer imine eklendiğinde burada görünür.",
"empty_column.community": "Yerel zaman çizelgesi boş. Daha fazla eğlence için herkese açık bir gönderi paylaşın!", "empty_column.community": "Yerel zaman çizelgesi boş. Daha fazla eğlence için herkese açık bir gönderi paylaşın!",
"empty_column.conversations": "Sadece bahsedilen kişilere özel gönderi paylaştığında veya bu gizlilik seçeneğinde bir gönderi aldığında bu sayfada gözükecek.", "empty_column.direct": "Henüz doğrudan iletiniz yok. Bir tane gönderdiğinizde veya aldığınız burada listelenecekler.",
"empty_column.domain_blocks": "Henüz engellenmiş bir alan adı yok.", "empty_column.domain_blocks": "Henüz engellenmiş bir alan adı yok.",
"empty_column.explore_statuses": "Şu an öne çıkan birşey yok. Daha sonra tekrar bakın!", "empty_column.explore_statuses": "Şu an öne çıkan birşey yok. Daha sonra tekrar bakın!",
"empty_column.favourited_statuses": "Favori tootun yok. Favori tootun olduğunda burada görünür.", "empty_column.favourited_statuses": "Favori tootun yok. Favori tootun olduğunda burada görünür.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "gönderiyi boostla", "keyboard_shortcuts.boost": "gönderiyi boostla",
"keyboard_shortcuts.column": "sütunlardan birindeki duruma odaklanmak için", "keyboard_shortcuts.column": "sütunlardan birindeki duruma odaklanmak için",
"keyboard_shortcuts.compose": "yazma alanına odaklanmak için", "keyboard_shortcuts.compose": "yazma alanına odaklanmak için",
"keyboard_shortcuts.conversations": "sohbetler sütununu açmak için",
"keyboard_shortcuts.description": "Açıklama", "keyboard_shortcuts.description": "Açıklama",
"keyboard_shortcuts.direct": "doğrudan iletiler sütununu açmak için",
"keyboard_shortcuts.down": "listede aşağıya inmek için", "keyboard_shortcuts.down": "listede aşağıya inmek için",
"keyboard_shortcuts.enter": "gönderiyi aç", "keyboard_shortcuts.enter": "gönderiyi aç",
"keyboard_shortcuts.favourite": "gönderiyi favorilerine ekle", "keyboard_shortcuts.favourite": "gönderiyi favorilerine ekle",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Yer İmleri", "navigation_bar.bookmarks": "Yer İmleri",
"navigation_bar.community_timeline": "Yerel Zaman Tüneli", "navigation_bar.community_timeline": "Yerel Zaman Tüneli",
"navigation_bar.compose": "Yeni gönderi yaz", "navigation_bar.compose": "Yeni gönderi yaz",
"navigation_bar.direct": "Doğrudan iletiler",
"navigation_bar.discover": "Keşfet", "navigation_bar.discover": "Keşfet",
"navigation_bar.domain_blocks": "Engellenen alan adları", "navigation_bar.domain_blocks": "Engellenen alan adları",
"navigation_bar.edit_profile": "Profili düzenle", "navigation_bar.edit_profile": "Profili düzenle",
@ -315,7 +316,7 @@
"notification.mention": "{name} senden bahsetti", "notification.mention": "{name} senden bahsetti",
"notification.own_poll": "Anketiniz sona erdi", "notification.own_poll": "Anketiniz sona erdi",
"notification.poll": "Oy verdiğiniz bir anket sona erdi", "notification.poll": "Oy verdiğiniz bir anket sona erdi",
"notification.reblog": "{name} gönderini teşvik etti", "notification.reblog": "{name} gönderini boostladı",
"notification.status": "{name} az önce gönderdi", "notification.status": "{name} az önce gönderdi",
"notification.update": "{name} bir gönderiyi düzenledi", "notification.update": "{name} bir gönderiyi düzenledi",
"notifications.clear": "Bildirimleri temizle", "notifications.clear": "Bildirimleri temizle",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Anketi kaldır", "poll_button.remove_poll": "Anketi kaldır",
"privacy.change": "Gönderi gizliliğini değiştir", "privacy.change": "Gönderi gizliliğini değiştir",
"privacy.direct.long": "Sadece bahsedilen kullanıcılar için görünür", "privacy.direct.long": "Sadece bahsedilen kullanıcılar için görünür",
"privacy.direct.short": "Sadece bahsettiğim kişiler", "privacy.direct.short": "Sadece bahsedilen kişiler",
"privacy.private.long": "Sadece takipçiler için görünür", "privacy.private.long": "Sadece takipçiler için görünür",
"privacy.private.short": "Sadece takipçiler", "privacy.private.short": "Sadece takipçiler",
"privacy.public.long": "Herkese açık", "privacy.public.long": "Herkese açık",

View File

@ -70,7 +70,7 @@
"column.blocks": "Blocked users", "column.blocks": "Blocked users",
"column.bookmarks": "Кыстыргычлар", "column.bookmarks": "Кыстыргычлар",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Browse profiles", "column.directory": "Browse profiles",
"column.domain_blocks": "Blocked domains", "column.domain_blocks": "Blocked domains",
"column.favourites": "Favourites", "column.favourites": "Favourites",
@ -166,7 +166,7 @@
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"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.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "There are no blocked domains yet.", "empty_column.domain_blocks": "There are no blocked domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Тасвирлама", "keyboard_shortcuts.description": "Тасвирлама",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Кыстыргычлар", "navigation_bar.bookmarks": "Кыстыргычлар",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "Профильны үзгәртү", "navigation_bar.edit_profile": "Профильны үзгәртү",

View File

@ -70,7 +70,7 @@
"column.blocks": "Blocked users", "column.blocks": "Blocked users",
"column.bookmarks": "Bookmarks", "column.bookmarks": "Bookmarks",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Browse profiles", "column.directory": "Browse profiles",
"column.domain_blocks": "Blocked domains", "column.domain_blocks": "Blocked domains",
"column.favourites": "Favourites", "column.favourites": "Favourites",
@ -166,7 +166,7 @@
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"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.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "There are no blocked domains yet.", "empty_column.domain_blocks": "There are no blocked domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "Edit profile", "navigation_bar.edit_profile": "Edit profile",

View File

@ -6,30 +6,30 @@
"account.block": "Заблокувати @{name}", "account.block": "Заблокувати @{name}",
"account.block_domain": "Заблокувати домен {domain}", "account.block_domain": "Заблокувати домен {domain}",
"account.blocked": "Заблоковані", "account.blocked": "Заблоковані",
"account.browse_more_on_origin_server": "Переглянути більше в оригіналі", "account.browse_more_on_origin_server": "Переглянути більше в оригінальному профілі",
"account.cancel_follow_request": "Скасувати запит на підписку", "account.cancel_follow_request": "Скасувати запит на підписку",
"account.direct": "Пряме повідомлення @{name}", "account.direct": "Надіслати пряме повідомлення @{name}",
"account.disable_notifications": "Не повідомляти мене про дописи @{name}", "account.disable_notifications": "Не повідомляти мене про дописи @{name}",
"account.domain_blocked": "Домен приховано", "account.domain_blocked": "Домен заблоковано",
"account.edit_profile": "Редагувати профіль", "account.edit_profile": "Редагувати профіль",
"account.enable_notifications": "Повідомляти мене про дописи @{name}", "account.enable_notifications": "Повідомляти мене про дописи @{name}",
"account.endorse": "Публікувати у профілі", "account.endorse": "Рекомендувати у профілі",
"account.follow": "Підписатися", "account.follow": "Підписатися",
"account.followers": "Підписники", "account.followers": "Підписники",
"account.followers.empty": "Ніхто ще не підписався на цього користувача.", "account.followers.empty": "Ніхто ще не підписаний на цього користувача.",
"account.followers_counter": "{count, plural, one {{counter} Підписник} few {{counter} Підписники} many {{counter} Підписників} other {{counter} Підписники}}", "account.followers_counter": "{count, plural, one {{counter} підписник} few {{counter} підписника} many {{counter} підписників} other {{counter} підписники}}",
"account.following": "Стежите", "account.following": "Ви стежите",
"account.following_counter": "{count, plural, one {{counter} Підписка} few {{counter} Підписки} many {{counter} Підписок} other {{counter} Підписки}}", "account.following_counter": "{count, plural, one {{counter} підписка} few {{counter} підписки} many {{counter} підписок} other {{counter} підписки}}",
"account.follows.empty": "Цей користувач ще ні на кого не підписався.", "account.follows.empty": "Цей користувач ще ні на кого не підписався.",
"account.follows_you": "Підписаний(-а) на вас", "account.follows_you": "Підписані на вас",
"account.hide_reblogs": "Сховати передмухи від @{name}", "account.hide_reblogs": "Сховати поширення від @{name}",
"account.joined": "Долучення {date}", "account.joined": "Долучилися {date}",
"account.link_verified_on": "Права власності на це посилання були перевірені {date}", "account.link_verified_on": "Права власності на це посилання були перевірені {date}",
"account.locked_info": "Статус конфіденційності цього облікового запису встановлено у заблокований. Власник вручну переглядає, хто може за ним стежити.", "account.locked_info": "Це закритий обліковий запис. Власник вручну обирає, хто може на нього підписуватися.",
"account.media": "Медіа", "account.media": "Медіа",
"account.mention": "Згадати @{name}", "account.mention": "Згадати @{name}",
"account.moved_to": "{name} переїхав на:", "account.moved_to": "{name} переїхав на:",
"account.mute": "Нехтувати @{name}", "account.mute": "Приховати @{name}",
"account.mute_notifications": "Не показувати сповіщення від @{name}", "account.mute_notifications": "Не показувати сповіщення від @{name}",
"account.muted": "Нехтується", "account.muted": "Нехтується",
"account.posts": "Дмухи", "account.posts": "Дмухи",
@ -48,38 +48,38 @@
"account.unmute_notifications": "Показувати сповіщення від @{name}", "account.unmute_notifications": "Показувати сповіщення від @{name}",
"account.unmute_short": "Не нехтувати", "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": "Щоденний показник утримання користувачів після реєстрації",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "Щомісячний показник утримання користувачів після реєстрації",
"admin.dashboard.retention.average": "Середнє", "admin.dashboard.retention.average": "Середнє",
"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": "Оголошення",
"attachments_list.unprocessed": "(не оброблено)", "attachments_list.unprocessed": "(не оброблено)",
"autosuggest_hashtag.per_week": "{count} в тиждень", "autosuggest_hashtag.per_week": "{count} в тиждень",
"boost_modal.combo": "Ви можете натиснути {combo}, щоб пропустити це наступного разу", "boost_modal.combo": "Ви можете натиснути {combo}, щоб пропустити це наступного разу",
"bundle_column_error.body": "Щось пішло не так під час завантаження компоненту.", "bundle_column_error.body": "Щось пішло не так під час завантаження цього компоненту.",
"bundle_column_error.retry": "Спробуйте ще раз", "bundle_column_error.retry": "Спробуйте ще раз",
"bundle_column_error.title": "Помилка мережі", "bundle_column_error.title": "Помилка мережі",
"bundle_modal_error.close": "Закрити", "bundle_modal_error.close": "Закрити",
"bundle_modal_error.message": "Щось пішло не так під час завантаження компоненту.", "bundle_modal_error.message": "Щось пішло не так під час завантаження цього компоненту.",
"bundle_modal_error.retry": "Спробувати ще раз", "bundle_modal_error.retry": "Спробувати ще раз",
"column.blocks": "Заблоковані користувачі", "column.blocks": "Заблоковані користувачі",
"column.bookmarks": "Закладки", "column.bookmarks": "Закладки",
"column.community": "Локальна стрічка", "column.community": "Локальна стрічка",
"column.conversations": "Бесіди", "column.direct": "Прямі повідомлення",
"column.directory": "Переглянути профілі", "column.directory": "Переглянути профілі",
"column.domain_blocks": "Приховані домени", "column.domain_blocks": "Заблоковані домени",
"column.favourites": "Вподобане", "column.favourites": "Вподобане",
"column.follow_requests": "Запити на підписку", "column.follow_requests": "Запити на підписку",
"column.home": "Головна", "column.home": "Головна",
"column.lists": "Списки", "column.lists": "Списки",
"column.mutes": "Нехтувані користувачі", "column.mutes": "Нехтувані користувачі",
"column.notifications": "Сповіщення", "column.notifications": "Сповіщення",
"column.pins": "Закріплені дмухи", "column.pins": "Закріплені дописи",
"column.public": "Глобальна стрічка", "column.public": "Глобальна стрічка",
"column_back_button.label": "Назад", "column_back_button.label": "Назад",
"column_header.hide_settings": "Приховати налаштування", "column_header.hide_settings": "Приховати налаштування",
@ -89,22 +89,22 @@
"column_header.show_settings": "Показати налаштування", "column_header.show_settings": "Показати налаштування",
"column_header.unpin": "Відкріпити", "column_header.unpin": "Відкріпити",
"column_subheading.settings": "Налаштування", "column_subheading.settings": "Налаштування",
"community.column_settings.local_only": "Тільки локальні", "community.column_settings.local_only": "Лише локальні",
"community.column_settings.media_only": "Тільки медіа", "community.column_settings.media_only": "Лише з медіа",
"community.column_settings.remote_only": "Тільки видалені", "community.column_settings.remote_only": "Лише віддалені",
"compose_form.direct_message_warning_learn_more": "Дізнатися більше", "compose_form.direct_message_warning_learn_more": "Дізнатися більше",
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.", "compose_form.encryption_warning": "Дописи на Mastodon не захищені шифруванням. Не поширюйте жодну потенційно небезпечну інформацію.",
"compose_form.hashtag_warning": "Цей дмух не буде відображений у жодній стрічці хештеґу, оскільки він прихований. Тільки публічні дмухи можуть бути знайдені за хештеґом.", "compose_form.hashtag_warning": "Цей допис не буде зображений у жодній стрічці гештеґу, оскільки він прихований. Тільки публічні дописи можуть бути знайдені за гештеґом.",
"compose_form.lock_disclaimer": "Ваш акаунт не {locked}. Будь-який користувач може підписатися на вас та переглядати ваші приватні пости.", "compose_form.lock_disclaimer": "Ваш обліковий запис не {locked}. Будь-який користувач може підписатися на вас та переглядати ваші дописи для підписників.",
"compose_form.lock_disclaimer.lock": "приватний", "compose_form.lock_disclaimer.lock": "приватний",
"compose_form.placeholder": "Що у вас на думці?", "compose_form.placeholder": "Що у вас на думці?",
"compose_form.poll.add_option": "Додати варіант", "compose_form.poll.add_option": "Додати варіант",
"compose_form.poll.duration": "Тривалість опитування", "compose_form.poll.duration": "Тривалість опитування",
"compose_form.poll.option_placeholder": "Варіант {number}", "compose_form.poll.option_placeholder": "Варіант {number}",
"compose_form.poll.remove_option": "Видалити цей варіант", "compose_form.poll.remove_option": "Видалити цей варіант",
"compose_form.poll.switch_to_multiple": "Перемкнути у режим вибору декількох відповідей", "compose_form.poll.switch_to_multiple": "Дозволити вибір декількох відповідей",
"compose_form.poll.switch_to_single": "Перемкнути у режим вибору однієї відповіді", "compose_form.poll.switch_to_single": "Перемкнути у режим вибору однієї відповіді",
"compose_form.publish": "Дмухнути", "compose_form.publish": "Надіслати",
"compose_form.publish_loud": "{publish}!", "compose_form.publish_loud": "{publish}!",
"compose_form.save_changes": "Зберегти зміни", "compose_form.save_changes": "Зберегти зміни",
"compose_form.sensitive.hide": "{count, plural, one {Позначити медіа делікатним} other {Позначити медіа делікатними}}", "compose_form.sensitive.hide": "{count, plural, one {Позначити медіа делікатним} other {Позначити медіа делікатними}}",
@ -123,67 +123,67 @@
"confirmations.delete_list.message": "Ви впевнені, що хочете видалити цей список назавжди?", "confirmations.delete_list.message": "Ви впевнені, що хочете видалити цей список назавжди?",
"confirmations.discard_edit_media.confirm": "Відкинути", "confirmations.discard_edit_media.confirm": "Відкинути",
"confirmations.discard_edit_media.message": "У вас є незбережені зміни в описі медіа або попереднього перегляду, все одно відкинути їх?", "confirmations.discard_edit_media.message": "У вас є незбережені зміни в описі медіа або попереднього перегляду, все одно відкинути їх?",
"confirmations.domain_block.confirm": "Сховати весь домен", "confirmations.domain_block.confirm": "Заблокувати весь домен",
"confirmations.domain_block.message": "Ви точно, точно впевнені, що хочете заблокувати весь домен {domain}? У більшості випадків для нормальної роботи краще заблокувати або нехтувати лише деяких користувачів. Ви не зможете бачити контент з цього домену у будь-яких стрічках або ваших сповіщеннях. Ваші підписники з цього домену будуть відписані від вас.", "confirmations.domain_block.message": "Ви точно, точно впевнені, що хочете заблокувати весь домен {domain}? У більшості випадків для нормальної роботи краще заблокувати або приховати лише деяких користувачів. Ви не зможете бачити контент з цього домену у будь-яких стрічках або ваших сповіщеннях. Ваші підписники з цього домену будуть відписані від вас.",
"confirmations.logout.confirm": "Вийти", "confirmations.logout.confirm": "Вийти",
"confirmations.logout.message": "Ви впевнені, що хочете вийти?", "confirmations.logout.message": "Ви впевнені, що хочете вийти?",
"confirmations.mute.confirm": "Нехтуавти", "confirmations.mute.confirm": "Нехтуавти",
"confirmations.mute.explanation": "Це сховає дописи від них і дописи зі згадками про них, проте вони все одно матимуть змогу бачити ваші дописи й підписуватися на вас.", "confirmations.mute.explanation": "Це сховає дописи від них і дописи зі згадками про них, проте вони все одно матимуть змогу бачити ваші дописи й підписуватися на вас.",
"confirmations.mute.message": "Ви впевнені, що хочете нехтувати {name}?", "confirmations.mute.message": "Ви впевнені, що хочете приховати {name}?",
"confirmations.redraft.confirm": "Видалити та перестворити", "confirmations.redraft.confirm": "Видалити та виправити",
"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": "Переглянути бесіду",
"conversation.with": "З {names}", "conversation.with": "З {names}",
"directory.federated": "З відомого федесвіту", "directory.federated": "З відомого федесвіту",
"directory.local": "Тільки з домену {domain}", "directory.local": "Лише з домену {domain}",
"directory.new_arrivals": "Нові надходження", "directory.new_arrivals": "Нові надходження",
"directory.recently_active": "Активні нещодавно", "directory.recently_active": "Нещодавно активні",
"embed.instructions": "Вбудуйте цей статус до вашого вебсайту, скопіювавши код нижче.", "embed.instructions": "Вбудуйте цей допис до вашого вебсайту, скопіювавши код нижче.",
"embed.preview": "Ось як він виглядатиме:", "embed.preview": "Ось як він виглядатиме:",
"emoji_button.activity": "Заняття", "emoji_button.activity": "Діяльність",
"emoji_button.custom": "Особливі", "emoji_button.custom": "Власні",
"emoji_button.flags": "Прапори", "emoji_button.flags": "Прапори",
"emoji_button.food": "Їжа та напої", "emoji_button.food": "Їжа та напої",
"emoji_button.label": "Вставити емодзі", "emoji_button.label": "Вставити емоджі",
"emoji_button.nature": "Природа", "emoji_button.nature": "Природа",
"emoji_button.not_found": "Немає емодзі!! (╯°□°)╯︵ ┻━┻", "emoji_button.not_found": "Немає емоджі!! (╯°□°)╯︵ ┻━┻",
"emoji_button.objects": "Предмети", "emoji_button.objects": "Предмети",
"emoji_button.people": "Люди", "emoji_button.people": "Люди",
"emoji_button.recent": "Часто використовувані", "emoji_button.recent": "Часто використовувані",
"emoji_button.search": "Шукати...", "emoji_button.search": "Шукати...",
"emoji_button.search_results": "Результати пошуку", "emoji_button.search_results": "Результати пошуку",
"emoji_button.symbols": "Символи", "emoji_button.symbols": "Символи",
"emoji_button.travel": "Подорожі", "emoji_button.travel": "Подорожі та місця",
"empty_column.account_suspended": "Обліковий запис заблоковано", "empty_column.account_suspended": "Обліковий запис заблоковано",
"empty_column.account_timeline": "Тут дмухалок немає!", "empty_column.account_timeline": "Тут немає дописів!",
"empty_column.account_unavailable": "Профіль недоступний", "empty_column.account_unavailable": "Профіль недоступний",
"empty_column.blocks": "Ви ще не заблокували жодного користувача.", "empty_column.blocks": "Ви ще не заблокували жодного користувача.",
"empty_column.bookmarked_statuses": "У вас ще немає дмухів у закладках. Коли ви щось додасте до заклкдок, воно з'явиться тут.", "empty_column.bookmarked_statuses": "У вас ще немає дописів у закладках. Коли ви щось додасте до закладок, воно з'явиться тут.",
"empty_column.community": "Локальна стрічка пуста. Напишіть щось, щоб розігріти народ!", "empty_column.community": "Локальна стрічка пуста. Напишіть щось, щоб розігріти народ!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "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": "Схоже, для вас не було створено жодної пропозиції. Ви можете спробувати скористатися пошуком людей, яких ви можете знати, або переглянути популярні гештеґи.",
"empty_column.follow_requests": "У вас ще немає запитів на підписку. Коли ви їх отримаєте, вони з'являться тут.", "empty_column.follow_requests": "У вас ще немає запитів на підписку. Коли ви їх отримаєте, вони з'являться тут.",
"empty_column.hashtag": "Дописів з цим хештегом поки не існує.", "empty_column.hashtag": "Дописів з цим гештеґом поки не існує.",
"empty_column.home": "Ви поки ні на кого не підписані. Погортайте {public}, або скористуйтесь пошуком, щоб освоїтися та познайомитися з іншими користувачами.", "empty_column.home": "Ваша стрічка порожня! Підпишіться на інших, щоб її заповнити. {suggestions}",
"empty_column.home.suggestions": "Переглянути пропозиції", "empty_column.home.suggestions": "Переглянути пропозиції",
"empty_column.list": "Немає нічого в цьому списку. Коли його учасники дмухнуть нові статуси, вони з'являться тут.", "empty_column.list": "Цей список порожній. Коли його учасники додадуть нові дописи, вони з'являться тут.",
"empty_column.lists": "У вас ще немає списків. Коли ви їх створите, вони з'являться тут.", "empty_column.lists": "У вас ще немає списків. Коли ви їх створите, вони з'являться тут.",
"empty_column.mutes": "Ви ще не нехтуєте жодного користувача.", "empty_column.mutes": "Ви ще не нехтуєте жодного користувача.",
"empty_column.notifications": "У вас ще немає сповіщень. Переписуйтесь з іншими користувачами, щоб почати розмову.", "empty_column.notifications": "У вас ще немає сповіщень. Переписуйтесь з іншими користувачами, щоб почати розмову.",
"empty_column.public": "Тут поки нічого немає! Опублікуйте щось, або вручну підпишіться на користувачів інших інстанцій, щоб заповнити стрічку", "empty_column.public": "Тут поки нічого немає! Опублікуйте щось, або вручну підпишіться на користувачів інших серверів, щоб заповнити стрічку",
"error.unexpected_crash.explanation": "Ця сторінка не може бути коректно відображена через баґ у нашому коді або через проблему сумісності браузера.", "error.unexpected_crash.explanation": "Через помилку у нашому коді або несумісність браузера, ця сторінка не може бути зображена коректно.",
"error.unexpected_crash.explanation_addons": "Неможливо правильно показати цю сторінку. Ймовірно, цю помилку викликано додатком браузера або автоматичним засобом перекладу.", "error.unexpected_crash.explanation_addons": "Неможливо правильно показати цю сторінку. Ймовірно, цю помилку викликано додатком браузера або автоматичним засобом перекладу.",
"error.unexpected_crash.next_steps": "Спробуйте перезавантажити сторінку. Якщо це не допоможе, ви все ще зможете використовувати Mastodon через інший браузер або рідний додаток.", "error.unexpected_crash.next_steps": "Спробуйте перезавантажити сторінку. Якщо це не допоможе, ви все ще зможете використовувати Mastodon через інший браузер або рідний застосунок.",
"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": "Повідомити про проблему",
@ -203,53 +203,53 @@
"getting_started.developers": "Розробникам", "getting_started.developers": "Розробникам",
"getting_started.directory": "Каталог профілів", "getting_started.directory": "Каталог профілів",
"getting_started.documentation": "Документація", "getting_started.documentation": "Документація",
"getting_started.heading": "Ласкаво просимо", "getting_started.heading": "Розпочати",
"getting_started.invite": "Запросіть людей", "getting_started.invite": "Запросити людей",
"getting_started.open_source_notice": "Mastodon — програма з відкритим сирцевим кодом. Ви можете допомогти проекту, або повідомити про проблеми на GitHub за адресою {github}.", "getting_started.open_source_notice": "Mastodon — програма з відкритим сирцевим кодом. Ви можете допомогти проєкту, або повідомити про проблеми на GitHub: {github}.",
"getting_started.security": "Безпека", "getting_started.security": "Налаштування облікового запису",
"getting_started.terms": "Умови використання", "getting_started.terms": "Умови використання",
"hashtag.column_header.tag_mode.all": "та {additional}", "hashtag.column_header.tag_mode.all": "та {additional}",
"hashtag.column_header.tag_mode.any": "або {additional}", "hashtag.column_header.tag_mode.any": "або {additional}",
"hashtag.column_header.tag_mode.none": "без {additional}", "hashtag.column_header.tag_mode.none": "без {additional}",
"hashtag.column_settings.select.no_options_message": "Не знайдено пропозицій", "hashtag.column_settings.select.no_options_message": "Пропозицій не знайдено",
"hashtag.column_settings.select.placeholder": "Введіть хештеґи…", "hashtag.column_settings.select.placeholder": "Введіть гештеґи…",
"hashtag.column_settings.tag_mode.all": "Усі ці", "hashtag.column_settings.tag_mode.all": "Усе зі списку",
"hashtag.column_settings.tag_mode.any": "Який-небудь з цих", "hashtag.column_settings.tag_mode.any": "Який-небудь зі списку",
"hashtag.column_settings.tag_mode.none": "Жоден з цих", "hashtag.column_settings.tag_mode.none": "Жоден зі списку",
"hashtag.column_settings.tag_toggle": "Додайте додаткові теґи до цього стовпчика", "hashtag.column_settings.tag_toggle": "Додати додаткові теґи до цього стовпчика",
"home.column_settings.basic": "Основні", "home.column_settings.basic": "Основні",
"home.column_settings.show_reblogs": "Показувати передмухи", "home.column_settings.show_reblogs": "Показувати поширення",
"home.column_settings.show_replies": "Показувати відповіді", "home.column_settings.show_replies": "Показувати відповіді",
"home.hide_announcements": "Приховати оголошення", "home.hide_announcements": "Приховати оголошення",
"home.show_announcements": "Показати оголошення", "home.show_announcements": "Показати оголошення",
"intervals.full.days": "{number, plural, one {# день} few {# дні} other {# днів}}", "intervals.full.days": "{number, plural, one {# день} few {# дні} other {# днів}}",
"intervals.full.hours": "{number, plural, one {# година} few {# години} other {# годин}}", "intervals.full.hours": "{number, plural, one {# година} few {# години} other {# годин}}",
"intervals.full.minutes": "{number, plural, one {# хвилина} few {# хвилини} other {# хвилин}}", "intervals.full.minutes": "{number, plural, one {# хвилина} few {# хвилини} other {# хвилин}}",
"keyboard_shortcuts.back": "переходити назад", "keyboard_shortcuts.back": "Перейти назад",
"keyboard_shortcuts.blocked": "відкрити список заблокованих користувачів", "keyboard_shortcuts.blocked": "Відкрити список заблокованих користувачів",
"keyboard_shortcuts.boost": "передмухувати", "keyboard_shortcuts.boost": "Поширити допис",
"keyboard_shortcuts.column": "фокусуватися на одній з колонок", "keyboard_shortcuts.column": "Фокусуватися на одній з колонок",
"keyboard_shortcuts.compose": "фокусуватися на полі введення", "keyboard_shortcuts.compose": "Фокусуватися на полі введення",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Опис", "keyboard_shortcuts.description": "Опис",
"keyboard_shortcuts.down": "рухатися вниз стрічкою", "keyboard_shortcuts.direct": "щоб відкрити колонку прямих повідомлень",
"keyboard_shortcuts.enter": "відкрити статус", "keyboard_shortcuts.down": "Рухатися вниз стрічкою",
"keyboard_shortcuts.favourite": "вподобати", "keyboard_shortcuts.enter": "Відкрити допис",
"keyboard_shortcuts.favourites": "відкрити список улюбленого", "keyboard_shortcuts.favourite": "Вподобати допис",
"keyboard_shortcuts.federated": "відкрити глобальну стрічку", "keyboard_shortcuts.favourites": "Відкрити список вподобаного",
"keyboard_shortcuts.heading": "Гарячі клавіші", "keyboard_shortcuts.federated": "Відкрити глобальну стрічку",
"keyboard_shortcuts.home": "відкрити домашню стрічку", "keyboard_shortcuts.heading": "Комбінації клавіш",
"keyboard_shortcuts.home": "Відкрити домашню стрічку",
"keyboard_shortcuts.hotkey": "Гаряча клавіша", "keyboard_shortcuts.hotkey": "Гаряча клавіша",
"keyboard_shortcuts.legend": "показати підказку", "keyboard_shortcuts.legend": "Показати легенду",
"keyboard_shortcuts.local": "відкрити локальну стрічку", "keyboard_shortcuts.local": "Відкрити локальну стрічку",
"keyboard_shortcuts.mention": "згадати автора", "keyboard_shortcuts.mention": "Згадати автора",
"keyboard_shortcuts.muted": "Відкрити список нехтуваних користувачів", "keyboard_shortcuts.muted": "Відкрити список нехтуваних користувачів",
"keyboard_shortcuts.my_profile": "відкрити ваш профіль", "keyboard_shortcuts.my_profile": "Відкрити ваш профіль",
"keyboard_shortcuts.notifications": "відкрити колонку сповіщень", "keyboard_shortcuts.notifications": "Відкрити колонку сповіщень",
"keyboard_shortcuts.open_media": "відкрити медіа", "keyboard_shortcuts.open_media": "Відкрити медіа",
"keyboard_shortcuts.pinned": "відкрити список закріплених дмухів", "keyboard_shortcuts.pinned": "Відкрити список закріплених дописів",
"keyboard_shortcuts.profile": "відкрити профіль автора", "keyboard_shortcuts.profile": "Відкрити профіль автора",
"keyboard_shortcuts.reply": "відповісти", "keyboard_shortcuts.reply": "Відповісти",
"keyboard_shortcuts.requests": "відкрити список бажаючих підписатися", "keyboard_shortcuts.requests": "відкрити список бажаючих підписатися",
"keyboard_shortcuts.search": "сфокусуватися на пошуку", "keyboard_shortcuts.search": "сфокусуватися на пошуку",
"keyboard_shortcuts.spoilers": "показати/приховати поле CW", "keyboard_shortcuts.spoilers": "показати/приховати поле CW",
@ -285,41 +285,42 @@
"mute_modal.duration": "Тривалість", "mute_modal.duration": "Тривалість",
"mute_modal.hide_notifications": "Сховати сповіщення від користувача?", "mute_modal.hide_notifications": "Сховати сповіщення від користувача?",
"mute_modal.indefinite": "Не визначено", "mute_modal.indefinite": "Не визначено",
"navigation_bar.apps": "Мобільні додатки", "navigation_bar.apps": "Мобільні застосунки",
"navigation_bar.blocks": "Заблоковані користувачі", "navigation_bar.blocks": "Заблоковані користувачі",
"navigation_bar.bookmarks": "Закладки", "navigation_bar.bookmarks": "Закладки",
"navigation_bar.community_timeline": "Локальна стрічка", "navigation_bar.community_timeline": "Локальна стрічка",
"navigation_bar.compose": "Написати новий дмух", "navigation_bar.compose": "Написати новий допис",
"navigation_bar.discover": "Знайти", "navigation_bar.direct": "Прямі повідомлення",
"navigation_bar.domain_blocks": "Приховані домени", "navigation_bar.discover": "Дослідити",
"navigation_bar.domain_blocks": "Заблоковані домени",
"navigation_bar.edit_profile": "Редагувати профіль", "navigation_bar.edit_profile": "Редагувати профіль",
"navigation_bar.explore": "Огляд", "navigation_bar.explore": "Огляд",
"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": "Підписки та підписники",
"navigation_bar.info": "Про сайт", "navigation_bar.info": "Про цей сервер",
"navigation_bar.keyboard_shortcuts": "Гарячі клавіші", "navigation_bar.keyboard_shortcuts": "Гарячі клавіші",
"navigation_bar.lists": "Списки", "navigation_bar.lists": "Списки",
"navigation_bar.logout": "Вийти", "navigation_bar.logout": "Вийти",
"navigation_bar.mutes": "Нехтувані користувачі", "navigation_bar.mutes": "Нехтувані користувачі",
"navigation_bar.personal": "Особисте", "navigation_bar.personal": "Особисте",
"navigation_bar.pins": "Закріплені дмухи", "navigation_bar.pins": "Закріплені дописи",
"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} приєднується", "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} відправили запит на підписку",
"notification.mention": "{name} згадав(-ла) вас", "notification.mention": "{name} згадали вас",
"notification.own_poll": "Ваше опитування завершено", "notification.own_poll": "Ваше опитування завершено",
"notification.poll": "Опитування, у якому ви голосували, закінчилося", "notification.poll": "Опитування, у якому ви голосували, закінчилося",
"notification.reblog": "{name} передмухнув(-ла) Ваш допис", "notification.reblog": "{name} поширили ваш допис",
"notification.status": "{name} щойно дописує", "notification.status": "{name} щойно дописує",
"notification.update": "{name} змінює допис", "notification.update": "{name} змінює допис",
"notifications.clear": "Очистити сповіщення", "notifications.clear": "Очистити сповіщення",
"notifications.clear_confirmation": "Ви впевнені, що хочете назавжди видалити всі сповіщеня?", "notifications.clear_confirmation": "Ви впевнені, що хочете назавжди видалити всі сповіщення?",
"notifications.column_settings.admin.sign_up": "Нові реєстрації:", "notifications.column_settings.admin.sign_up": "Нові реєстрації:",
"notifications.column_settings.alert": "Сповіщення на комп'ютері", "notifications.column_settings.alert": "Сповіщення на комп'ютері",
"notifications.column_settings.favourite": "Вподобане:", "notifications.column_settings.favourite": "Вподобане:",
@ -360,22 +361,22 @@
"poll.total_people": "{count, plural, one {# особа} other {# осіб}}", "poll.total_people": "{count, plural, one {# особа} other {# осіб}}",
"poll.total_votes": "{count, plural, one {# голос} few {# голоси} many {# голосів} other {# голосів}}", "poll.total_votes": "{count, plural, one {# голос} few {# голоси} many {# голосів} other {# голосів}}",
"poll.vote": "Проголосувати", "poll.vote": "Проголосувати",
"poll.voted": "Ви голосували за цю відповідь", "poll.voted": "Ви проголосували за цю відповідь",
"poll.votes": "{votes, plural, one {# голос} few {# голоси} many {# голосів} other {# голоса}}", "poll.votes": "{votes, plural, one {# голос} few {# голоси} many {# голосів} other {# голоса}}",
"poll_button.add_poll": "Додати опитування", "poll_button.add_poll": "Додати опитування",
"poll_button.remove_poll": "Видалити опитування", "poll_button.remove_poll": "Видалити опитування",
"privacy.change": "Змінити видимість допису", "privacy.change": "Змінити видимість допису",
"privacy.direct.long": "Показати тільки згаданим користувачам", "privacy.direct.long": "Показати тільки згаданим користувачам",
"privacy.direct.short": "Лише люди, яких я згадую", "privacy.direct.short": "Лише згадані люди",
"privacy.private.long": "Показати тільки підписникам", "privacy.private.long": "Показати тільки підписникам",
"privacy.private.short": "Тільки для підписників", "privacy.private.short": "Тільки для підписників",
"privacy.public.long": "Visible for all", "privacy.public.long": "Видимий для всіх",
"privacy.public.short": "Публічно", "privacy.public.short": "Публічно",
"privacy.unlisted.long": "Visible for all, but opted-out of discovery features", "privacy.unlisted.long": "Видимий для всіх, але не через можливості виявлення",
"privacy.unlisted.short": "Прихований", "privacy.unlisted.short": "Прихований",
"refresh": "Оновити", "refresh": "Оновити",
"regeneration_indicator.label": "Завантаження…", "regeneration_indicator.label": "Завантаження…",
"regeneration_indicator.sublabel": "Ваша домашня стрічка готується!", "regeneration_indicator.sublabel": "Хвилинку, ми готуємо вашу стрічку!",
"relative_time.days": "{number}д", "relative_time.days": "{number}д",
"relative_time.full.days": "{number, plural, one {# день} few {# дні} other {# днів}} тому", "relative_time.full.days": "{number, plural, one {# день} few {# дні} other {# днів}} тому",
"relative_time.full.hours": "{number, plural, one {# година} few {# години} other {# годин}} тому", "relative_time.full.hours": "{number, plural, one {# година} few {# години} other {# годин}} тому",
@ -389,16 +390,16 @@
"relative_time.today": "сьогодні", "relative_time.today": "сьогодні",
"reply_indicator.cancel": "Відмінити", "reply_indicator.cancel": "Відмінити",
"report.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": "Оберіть найкращий збіг", "report.category.subtitle": "Оберіть найкращий збіг",
"report.category.title": "Tell us what's going on with this {type}", "report.category.title": "Розкажіть нам, що не так з цим {type}",
"report.category.title_account": "профіль", "report.category.title_account": "профіль",
"report.category.title_status": "допис", "report.category.title_status": "допис",
"report.close": "Готово", "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": "Нехтувати", "report.mute": "Нехтувати",
@ -406,25 +407,25 @@
"report.next": "Далі", "report.next": "Далі",
"report.placeholder": "Додаткові коментарі", "report.placeholder": "Додаткові коментарі",
"report.reasons.dislike": "Мені це не подобається", "report.reasons.dislike": "Мені це не подобається",
"report.reasons.dislike_description": "It is not something you want to see", "report.reasons.dislike_description": "Вам би не хотілося це бачити",
"report.reasons.other": "Це щось інше", "report.reasons.other": "Це щось інше",
"report.reasons.other_description": "The issue does not fit into other categories", "report.reasons.other_description": "Ця проблема не відповідає жодній іншій категорії",
"report.reasons.spam": "Це спам", "report.reasons.spam": "Це спам",
"report.reasons.spam_description": "Malicious links, fake engagement, or repetitive replies", "report.reasons.spam_description": "Шкідливі посилання, фальшиві взаємодії, або повідомлення, що повторюються",
"report.reasons.violation": "Порушує правила сервера", "report.reasons.violation": "Порушує правила сервера",
"report.reasons.violation_description": "Ви впевнені, що це порушує певні правила", "report.reasons.violation_description": "Ви впевнені, що це порушує певні правила",
"report.rules.subtitle": "Виберіть усі варіанти, що підходять", "report.rules.subtitle": "Виберіть усі варіанти, що підходять",
"report.rules.title": "Які правила порушено?", "report.rules.title": "Які правила порушено?",
"report.statuses.subtitle": "Виберіть усі варіанти, що підходять", "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": "Ось ваші варіанти управління тим, що ви бачите в 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": "Не хочете це бачити?", "report.thanks.title": "Не хочете це бачити?",
"report.thanks.title_actionable": "Дякуємо за скаргу, ми розглянемо її.", "report.thanks.title_actionable": "Дякуємо за скаргу, ми розглянемо її.",
"report.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": "Пошук за текстом знаходить статуси, які ви написали, вподобали, передмухнули, або в яких вас згадували. Також він знаходить імена користувачів, реальні імена та хештеґи.",
@ -461,8 +462,8 @@
"status.media_hidden": "Медіа приховано", "status.media_hidden": "Медіа приховано",
"status.mention": "Згадати @{name}", "status.mention": "Згадати @{name}",
"status.more": "Більше", "status.more": "Більше",
"status.mute": "Нехтувати @{name}", "status.mute": "Приховати @{name}",
"status.mute_conversation": "Нехтувати діалог", "status.mute_conversation": "Ігнорувати діалог",
"status.open": "Розгорнути допис", "status.open": "Розгорнути допис",
"status.pin": "Закріпити у профілі", "status.pin": "Закріпити у профілі",
"status.pinned": "Закріплений дмух", "status.pinned": "Закріплений дмух",
@ -484,7 +485,7 @@
"status.show_more_all": "Показувати більше для всіх", "status.show_more_all": "Показувати більше для всіх",
"status.show_thread": "Показати ланцюжок", "status.show_thread": "Показати ланцюжок",
"status.uncached_media_warning": "Недоступно", "status.uncached_media_warning": "Недоступно",
"status.unmute_conversation": "Не нехтувати діалог", "status.unmute_conversation": "Не ігнорувати діалог",
"status.unpin": "Відкріпити від профілю", "status.unpin": "Відкріпити від профілю",
"suggestions.dismiss": "Відхилити пропозицію", "suggestions.dismiss": "Відхилити пропозицію",
"suggestions.header": "Вас може зацікавити…", "suggestions.header": "Вас може зацікавити…",
@ -498,42 +499,42 @@
"time_remaining.minutes": "{number, plural, one {# хвилина} few {# хвилини} other {# хвилин}}", "time_remaining.minutes": "{number, plural, one {# хвилина} few {# хвилини} other {# хвилин}}",
"time_remaining.moments": "Залишилось секунд", "time_remaining.moments": "Залишилось секунд",
"time_remaining.seconds": "{number, plural, one {# секунда} few {# секунди} other {# секунд}}", "time_remaining.seconds": "{number, plural, one {# секунда} few {# секунди} other {# секунд}}",
"timeline_hint.remote_resource_not_displayed": "{resource} з інших серверів не відображається.", "timeline_hint.remote_resource_not_displayed": "{resource} з інших серверів не зображується.",
"timeline_hint.resources.followers": "Підписники", "timeline_hint.resources.followers": "Підписники",
"timeline_hint.resources.follows": "Підписки", "timeline_hint.resources.follows": "Підписки",
"timeline_hint.resources.statuses": "Старіші дмухи", "timeline_hint.resources.statuses": "Попередні дописи",
"trends.counter_by_accounts": "{count, plural, one {{counter} особа обговорює} few {{counter} особи обговорюють} many {{counter} осіб обговорюють} other {{counter} особи обговорюють}}", "trends.counter_by_accounts": "{count, plural, one {{counter} особа обговорює} few {{counter} особи обговорюють} many {{counter} осіб обговорюють} other {{counter} особи обговорюють}}",
"trends.trending_now": "Актуальні", "trends.trending_now": "Актуальні",
"ui.beforeunload": "Вашу чернетку буде втрачено, якщо ви покинете Mastodon.", "ui.beforeunload": "Вашу чернетку буде втрачено, якщо ви покинете Mastodon.",
"units.short.billion": "{count} млрд", "units.short.billion": "{count} млрд.",
"units.short.million": "{count} млн", "units.short.million": "{count} млн.",
"units.short.thousand": "{count} тис", "units.short.thousand": "{count} тис.",
"upload_area.title": "Перетягніть сюди, щоб завантажити", "upload_area.title": "Перетягніть сюди, щоб завантажити",
"upload_button.label": "Додати медіа", "upload_button.label": "Додати зображення, відео або аудіо",
"upload_error.limit": "Ліміт завантаження файлів перевищено.", "upload_error.limit": "Ліміт завантаження файлів перевищено.",
"upload_error.poll": "Не можна завантажувати файли до опитувань.", "upload_error.poll": "Не можна завантажувати файли до опитувань.",
"upload_form.audio_description": "Опишіть для людей із вадами слуху", "upload_form.audio_description": "Опишіть для людей із вадами слуху",
"upload_form.description": "Опишіть для людей з вадами зору", "upload_form.description": "Опишіть для людей з вадами зору",
"upload_form.description_missing": "Опису не додано", "upload_form.description_missing": "Немає опису",
"upload_form.edit": "Змінити", "upload_form.edit": "Змінити",
"upload_form.thumbnail": "Змінити мініатюру", "upload_form.thumbnail": "Змінити мініатюру",
"upload_form.undo": "Видалити", "upload_form.undo": "Видалити",
"upload_form.video_description": "Опишіть для людей із вадами слуху або зору", "upload_form.video_description": "Опишіть для людей із вадами слуху або зору",
"upload_modal.analyzing_picture": "Аналізуємо малюнок…", "upload_modal.analyzing_picture": "Аналізуємо зображення…",
"upload_modal.apply": "Застосувати", "upload_modal.apply": "Застосувати",
"upload_modal.applying": "Застосування…", "upload_modal.applying": "Застосування…",
"upload_modal.choose_image": "Вибрати зображення", "upload_modal.choose_image": "Вибрати зображення",
"upload_modal.description_placeholder": "Щурячий бугай із їжаком-харцизом в'ючись підписали ґешефт у єнах", "upload_modal.description_placeholder": "Щурячий бугай із їжаком-харцизом в'ючись підписали ґешефт у єнах",
"upload_modal.detect_text": "Виявити текст на малюнку", "upload_modal.detect_text": "Виявити текст на зображенні",
"upload_modal.edit_media": "Редагувати медіа", "upload_modal.edit_media": "Редагувати медіа",
"upload_modal.hint": "Клацніть або перетягніть коло на превью, щоб обрати точку, яку буде завжди видно на мініатюрах.", "upload_modal.hint": "Клацніть або перетягніть коло на превʼю, щоб обрати точку, яку буде завжди видно на мініатюрах.",
"upload_modal.preparing_ocr": "Підготовка OCR…", "upload_modal.preparing_ocr": "Підготовка OCR…",
"upload_modal.preview_label": "Переглянути ({ratio})", "upload_modal.preview_label": "Переглянути ({ratio})",
"upload_progress.label": "Завантаження...", "upload_progress.label": "Завантаження...",
"video.close": "Закрити відео", "video.close": "Закрити відео",
"video.download": "Завантаження файла", "video.download": "Завантажити файл",
"video.exit_fullscreen": "Вийти з повноекранного режиму", "video.exit_fullscreen": "Вийти з повноекранного режиму",
"video.expand": "Розширити відео", "video.expand": "Розгорнути відео",
"video.fullscreen": "На весь екран", "video.fullscreen": "На весь екран",
"video.hide": "Приховати відео", "video.hide": "Приховати відео",
"video.mute": "Вимкнути звук", "video.mute": "Вимкнути звук",

View File

@ -70,7 +70,7 @@
"column.blocks": "مسدود صارفین", "column.blocks": "مسدود صارفین",
"column.bookmarks": "بُک مارکس", "column.bookmarks": "بُک مارکس",
"column.community": "مقامی زمانی جدول", "column.community": "مقامی زمانی جدول",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "مشخصات کا مطالعہ کریں", "column.directory": "مشخصات کا مطالعہ کریں",
"column.domain_blocks": "پوشیدہ ڈومین", "column.domain_blocks": "پوشیدہ ڈومین",
"column.favourites": "پسندیدہ", "column.favourites": "پسندیدہ",
@ -166,7 +166,7 @@
"empty_column.blocks": "آپ نے ابھی کسی صارف کو مسدود نہیں کیا ہے.", "empty_column.blocks": "آپ نے ابھی کسی صارف کو مسدود نہیں کیا ہے.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"empty_column.community": "مقامی جدول خالی ہے. کچھ تحریر کریں تاکہ بات آگے بڑھے!", "empty_column.community": "مقامی جدول خالی ہے. کچھ تحریر کریں تاکہ بات آگے بڑھے!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "ابھی تک کوئی چھپا ہوا ڈومین نہیں ہے.", "empty_column.domain_blocks": "ابھی تک کوئی چھپا ہوا ڈومین نہیں ہے.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "آپ کا کوئی پسندیدہ ٹوٹ نہیں ہے. جب آپ پسند کریں گے، یہاں نظر آئےگا.", "empty_column.favourited_statuses": "آپ کا کوئی پسندیدہ ٹوٹ نہیں ہے. جب آپ پسند کریں گے، یہاں نظر آئےگا.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "بُک مارکس", "navigation_bar.bookmarks": "بُک مارکس",
"navigation_bar.community_timeline": "مقامی ٹائم لائن", "navigation_bar.community_timeline": "مقامی ٹائم لائن",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "دریافت کریں", "navigation_bar.discover": "دریافت کریں",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "پروفائل میں ترمیم کریں", "navigation_bar.edit_profile": "پروفائل میں ترمیم کریں",

View File

@ -70,7 +70,7 @@
"column.blocks": "Người đã chặn", "column.blocks": "Người đã chặn",
"column.bookmarks": "Đã lưu", "column.bookmarks": "Đã lưu",
"column.community": "Máy chủ của bạn", "column.community": "Máy chủ của bạn",
"column.conversations": "Thảo luận", "column.direct": "Nhắn riêng",
"column.directory": "Tìm người cùng sở thích", "column.directory": "Tìm người cùng sở thích",
"column.domain_blocks": "Máy chủ đã chặn", "column.domain_blocks": "Máy chủ đã chặn",
"column.favourites": "Thích", "column.favourites": "Thích",
@ -118,7 +118,7 @@
"confirmations.block.confirm": "Chặn", "confirmations.block.confirm": "Chặn",
"confirmations.block.message": "Bạn có thật sự muốn chặn {name}?", "confirmations.block.message": "Bạn có thật sự muốn chặn {name}?",
"confirmations.delete.confirm": "Xóa bỏ", "confirmations.delete.confirm": "Xóa bỏ",
"confirmations.delete.message": "Bạn \bthật sự muốn xóa tút này?", "confirmations.delete.message": "Bạn thật sự muốn xóa tút này?",
"confirmations.delete_list.confirm": "Xóa bỏ", "confirmations.delete_list.confirm": "Xóa bỏ",
"confirmations.delete_list.message": "Bạn thật sự muốn xóa vĩnh viễn danh sách này?", "confirmations.delete_list.message": "Bạn thật sự muốn xóa vĩnh viễn danh sách này?",
"confirmations.discard_edit_media.confirm": "Bỏ qua", "confirmations.discard_edit_media.confirm": "Bỏ qua",
@ -166,7 +166,7 @@
"empty_column.blocks": "Bạn chưa chặn bất cứ ai.", "empty_column.blocks": "Bạn chưa chặn bất cứ ai.",
"empty_column.bookmarked_statuses": "Bạn chưa lưu tút nào. Nếu có, nó sẽ hiển thị ở đây.", "empty_column.bookmarked_statuses": "Bạn chưa lưu tút nào. Nếu có, nó sẽ hiển thị ở đây.",
"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.conversations": "Khi bạn gửi hoặc nhận một tút chỉ hiển thị với những người được nhắc đến trong đó, tút đó sẽ hiển thị ở đây.", "empty_column.direct": "Bạn chưa có tin nhắn riêng nào. Khi bạn gửi hoặc nhận một tin nhắn riêng, nó sẽ xuất hiện ở đâ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": "Chưa có xu hướng nào. Kiểm tra lại sau!", "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.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "đăng lại", "keyboard_shortcuts.boost": "đăng lại",
"keyboard_shortcuts.column": "mở các mục", "keyboard_shortcuts.column": "mở các mục",
"keyboard_shortcuts.compose": "mở khung soạn tút", "keyboard_shortcuts.compose": "mở khung soạn tút",
"keyboard_shortcuts.conversations": "mở mục thảo luận",
"keyboard_shortcuts.description": "Mô tả", "keyboard_shortcuts.description": "Mô tả",
"keyboard_shortcuts.direct": "để mở cột tin nhắn",
"keyboard_shortcuts.down": "di chuyển xuống dưới danh sách", "keyboard_shortcuts.down": "di chuyển xuống dưới danh sách",
"keyboard_shortcuts.enter": "viết tút mới", "keyboard_shortcuts.enter": "viết tút mới",
"keyboard_shortcuts.favourite": "thích", "keyboard_shortcuts.favourite": "thích",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Đã lưu", "navigation_bar.bookmarks": "Đã lưu",
"navigation_bar.community_timeline": "Cộng đồng", "navigation_bar.community_timeline": "Cộng đồng",
"navigation_bar.compose": "Viết tút mới", "navigation_bar.compose": "Viết tút mới",
"navigation_bar.direct": "Tin nhắn",
"navigation_bar.discover": "Khám phá", "navigation_bar.discover": "Khám phá",
"navigation_bar.domain_blocks": "Máy chủ đã ẩn", "navigation_bar.domain_blocks": "Máy chủ đã ẩn",
"navigation_bar.edit_profile": "Sửa hồ sơ", "navigation_bar.edit_profile": "Sửa hồ sơ",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "Hủy cuộc bình chọn", "poll_button.remove_poll": "Hủy cuộc bình chọn",
"privacy.change": "Thay đổi quyền riêng tư", "privacy.change": "Thay đổi quyền riêng tư",
"privacy.direct.long": "Chỉ người được nhắc đến mới thấy", "privacy.direct.long": "Chỉ người được nhắc đến mới thấy",
"privacy.direct.short": "Chỉ người tôi nhắc đến", "privacy.direct.short": "Chỉ người được nhắc",
"privacy.private.long": "Dành riêng cho người theo dõi", "privacy.private.long": "Dành riêng cho người theo dõi",
"privacy.private.short": "Chỉ người theo dõi", "privacy.private.short": "Chỉ người theo dõi",
"privacy.public.long": "Hiển thị với mọi người", "privacy.public.long": "Hiển thị với mọi người",

View File

@ -0,0 +1,2 @@
[
]

View File

@ -70,7 +70,7 @@
"column.blocks": "ⵉⵏⵙⵙⵎⵔⵙⵏ ⵜⵜⵓⴳⴷⵍⵏⵉⵏ", "column.blocks": "ⵉⵏⵙⵙⵎⵔⵙⵏ ⵜⵜⵓⴳⴷⵍⵏⵉⵏ",
"column.bookmarks": "Bookmarks", "column.bookmarks": "Bookmarks",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "Browse profiles", "column.directory": "Browse profiles",
"column.domain_blocks": "Blocked domains", "column.domain_blocks": "Blocked domains",
"column.favourites": "ⵜⵓⴼⵓⵜⵉⵏ", "column.favourites": "ⵜⵓⴼⵓⵜⵉⵏ",
@ -166,7 +166,7 @@
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.", "empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
"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.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "There are no blocked domains yet.", "empty_column.domain_blocks": "There are no blocked domains yet.",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "to boost",
"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": "to focus the compose textarea", "keyboard_shortcuts.compose": "to focus the compose textarea",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "to move down in the list",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "to favourite",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "Bookmarks", "navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "Discover",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "Hidden domains",
"navigation_bar.edit_profile": "ⵙⵏⴼⵍ ⵉⴼⵔⵙ", "navigation_bar.edit_profile": "ⵙⵏⴼⵍ ⵉⴼⵔⵙ",

View File

@ -25,7 +25,7 @@
"account.hide_reblogs": "隐藏来自 @{name} 的转贴", "account.hide_reblogs": "隐藏来自 @{name} 的转贴",
"account.joined": "加入于 {date}", "account.joined": "加入于 {date}",
"account.link_verified_on": "此链接的所有权已在 {date} 被检查", "account.link_verified_on": "此链接的所有权已在 {date} 被检查",
"account.locked_info": "此账户已锁嘟。账户所有者会手动审核关注申请。", "account.locked_info": "此账户已锁嘟。账户所有者会手动审核关注。",
"account.media": "媒体", "account.media": "媒体",
"account.mention": "提及 @{name}", "account.mention": "提及 @{name}",
"account.moved_to": "{name} 已经迁移到:", "account.moved_to": "{name} 已经迁移到:",
@ -35,8 +35,8 @@
"account.posts": "帖子", "account.posts": "帖子",
"account.posts_with_replies": "帖子和回复", "account.posts_with_replies": "帖子和回复",
"account.report": "举报 @{name}", "account.report": "举报 @{name}",
"account.requested": "正在等待对方通过关注申请。点击以取消发送关注申请", "account.requested": "正在等待对方同意。点击以取消发送关注请求",
"account.share": "分享 @{name} 的用户简介", "account.share": "分享 @{name} 的个人资料页",
"account.show_reblogs": "显示来自 @{name} 的转嘟", "account.show_reblogs": "显示来自 @{name} 的转嘟",
"account.statuses_counter": "{counter} 条嘟文", "account.statuses_counter": "{counter} 条嘟文",
"account.unblock": "取消屏蔽 @{name}", "account.unblock": "取消屏蔽 @{name}",
@ -68,19 +68,19 @@
"bundle_modal_error.message": "载入这个组件时发生了错误。", "bundle_modal_error.message": "载入这个组件时发生了错误。",
"bundle_modal_error.retry": "重试", "bundle_modal_error.retry": "重试",
"column.blocks": "已屏蔽的用户", "column.blocks": "已屏蔽的用户",
"column.bookmarks": "收藏夹", "column.bookmarks": "书签",
"column.community": "本站时间轴", "column.community": "本站时间轴",
"column.conversations": "会话", "column.direct": "私信",
"column.directory": "浏览用户资料", "column.directory": "浏览用户资料",
"column.domain_blocks": "已屏蔽的域名", "column.domain_blocks": "已屏蔽的域名",
"column.favourites": "喜欢", "column.favourites": "喜欢",
"column.follow_requests": "关注请", "column.follow_requests": "关注",
"column.home": "主页", "column.home": "主页",
"column.lists": "列表", "column.lists": "列表",
"column.mutes": "已隐藏的用户", "column.mutes": "已隐藏的用户",
"column.notifications": "通知", "column.notifications": "通知",
"column.pins": "置顶帖子", "column.pins": "置顶帖子",
"column.public": "跨站时间轴", "column.public": "跨站公共时间轴",
"column_back_button.label": "返回", "column_back_button.label": "返回",
"column_header.hide_settings": "隐藏设置", "column_header.hide_settings": "隐藏设置",
"column_header.moveLeft_settings": "将此栏左移", "column_header.moveLeft_settings": "将此栏左移",
@ -89,14 +89,14 @@
"column_header.show_settings": "显示设置", "column_header.show_settings": "显示设置",
"column_header.unpin": "取消置顶", "column_header.unpin": "取消置顶",
"column_subheading.settings": "设置", "column_subheading.settings": "设置",
"community.column_settings.local_only": "仅在本站显示", "community.column_settings.local_only": "仅限本站",
"community.column_settings.media_only": "仅限媒体", "community.column_settings.media_only": "仅限媒体",
"community.column_settings.remote_only": "仅限外部", "community.column_settings.remote_only": "仅限外部",
"compose_form.direct_message_warning_learn_more": "了解更多", "compose_form.direct_message_warning_learn_more": "了解更多",
"compose_form.encryption_warning": "Mastodon 上的嘟文并未端到端加密。请不要在 Mastodon 上分享敏感信息。", "compose_form.encryption_warning": "Mastodon 上的嘟文并未端到端加密。请不要在 Mastodon 上分享敏感信息。",
"compose_form.hashtag_warning": "此帖子被设置为“不公开”,因此它不会出现在任何话题标签的列表下。只有公开帖子才能通过话题标签进行搜索。", "compose_form.hashtag_warning": "此帖子被设置为“不公开”,因此它不会出现在任何话题标签的列表下。只有公开帖子才能通过话题标签进行搜索。",
"compose_form.lock_disclaimer": "你的账号没有{locked}。任何人在关注你后都能立即查看仅关注者可见的帖子。", "compose_form.lock_disclaimer": "你的账号没有{locked}。任何人在关注你后都能立即查看仅关注者可见的帖子。",
"compose_form.lock_disclaimer.lock": "锁嘟", "compose_form.lock_disclaimer.lock": "开启保护",
"compose_form.placeholder": "在想些什么?", "compose_form.placeholder": "在想些什么?",
"compose_form.poll.add_option": "添加一个选项", "compose_form.poll.add_option": "添加一个选项",
"compose_form.poll.duration": "投票持续时间", "compose_form.poll.duration": "投票持续时间",
@ -107,42 +107,42 @@
"compose_form.publish": "嘟嘟", "compose_form.publish": "嘟嘟",
"compose_form.publish_loud": "{publish}", "compose_form.publish_loud": "{publish}",
"compose_form.save_changes": "保存更改", "compose_form.save_changes": "保存更改",
"compose_form.sensitive.hide": "将媒体标记为敏感内容", "compose_form.sensitive.hide": "{count, plural, one {将媒体标记为敏感内容} other {将媒体标记为敏感内容}}",
"compose_form.sensitive.marked": "媒体已被标记为敏感内容", "compose_form.sensitive.marked": "{count, plural, one {媒体已被标记为敏感内容} other {媒体已被标记为敏感内容}}",
"compose_form.sensitive.unmarked": "媒体未被标记为敏感内容", "compose_form.sensitive.unmarked": "媒体未被标记为敏感内容",
"compose_form.spoiler.marked": "移除内容警告", "compose_form.spoiler.marked": "移除内容警告",
"compose_form.spoiler.unmarked": "添加内容警告", "compose_form.spoiler.unmarked": "添加内容警告",
"compose_form.spoiler_placeholder": "在此处写下内容警告", "compose_form.spoiler_placeholder": "写下你的警告",
"confirmation_modal.cancel": "取消", "confirmation_modal.cancel": "取消",
"confirmations.block.block_and_report": "屏蔽与举报", "confirmations.block.block_and_report": "屏蔽与举报",
"confirmations.block.confirm": "屏蔽", "confirmations.block.confirm": "屏蔽",
"confirmations.block.message": "你确定要屏蔽 {name} 吗?", "confirmations.block.message": "你确定要屏蔽 {name} 吗?",
"confirmations.delete.confirm": "删除", "confirmations.delete.confirm": "删除",
"confirmations.delete.message": "你确定要删除这个帖子吗?", "confirmations.delete.message": "你确定要删除这条嘟文吗?",
"confirmations.delete_list.confirm": "删除", "confirmations.delete_list.confirm": "删除",
"confirmations.delete_list.message": "你确定要永久删除此列表吗?", "confirmations.delete_list.message": "你确定要永久删除此列表吗?",
"confirmations.discard_edit_media.confirm": "丢弃", "confirmations.discard_edit_media.confirm": "丢弃",
"confirmations.discard_edit_media.message": "您还有未保存的媒体描述或预览修改,仍然丢弃它们吗?", "confirmations.discard_edit_media.message": "您还有未保存的媒体描述或预览修改,仍然丢弃它们吗?",
"confirmations.domain_block.confirm": "隐藏所有来自此域名的内容", "confirmations.domain_block.confirm": "屏蔽整个域名",
"confirmations.domain_block.message": "你真的确定要屏蔽所有来自 {domain} 的内容吗?多数情况下,屏蔽或隐藏几个特定的用户就已经足够了。来自该域名的内容将不再出现在你的公共时间轴或通知列表里。来自该域名的关注者将会被移除。", "confirmations.domain_block.message": "你真的确定要屏蔽所有来自 {domain} 的内容吗?多数情况下,屏蔽或隐藏几个特定的用户就已经足够了。来自该网站的内容将不再出现在你的任何公共时间轴或通知列表里。来自该网站的关注者将会被移除。",
"confirmations.logout.confirm": "登出", "confirmations.logout.confirm": "登出",
"confirmations.logout.message": "你确定要登出吗?", "confirmations.logout.message": "你确定要登出吗?",
"confirmations.mute.confirm": "隐藏", "confirmations.mute.confirm": "隐藏",
"confirmations.mute.explanation": "这将隐藏他们的嘟文以及提到他们的嘟文,但他们仍可以看到你的嘟文并关注你。", "confirmations.mute.explanation": "这将隐藏他们的嘟文以及提到他们的嘟文,但他们仍可以看到你的嘟文并关注你。",
"confirmations.mute.message": "你确定要隐藏 {name} 吗?", "confirmations.mute.message": "你确定要隐藏 {name} 吗?",
"confirmations.redraft.confirm": "删除并重新编辑", "confirmations.redraft.confirm": "删除并重新编辑",
"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": "查看对话",
"conversation.with": "与 {names}", "conversation.with": "与 {names}",
"directory.federated": "来自联邦宇宙的已知部分", "directory.federated": "来自已知联邦宇宙",
"directory.local": "仅来自 {domain}", "directory.local": "仅来自 {domain}",
"directory.new_arrivals": "新用户", "directory.new_arrivals": "新来者",
"directory.recently_active": "最近活跃", "directory.recently_active": "最近活跃",
"embed.instructions": "要在你的网站上嵌入此嘟文,请复制以下代码。", "embed.instructions": "要在你的网站上嵌入此嘟文,请复制以下代码。",
"embed.preview": "它会像这样显示出来:", "embed.preview": "它会像这样显示出来:",
@ -156,31 +156,31 @@
"emoji_button.objects": "物体", "emoji_button.objects": "物体",
"emoji_button.people": "人物", "emoji_button.people": "人物",
"emoji_button.recent": "常用", "emoji_button.recent": "常用",
"emoji_button.search": "搜索…", "emoji_button.search": "搜索…",
"emoji_button.search_results": "搜索结果", "emoji_button.search_results": "搜索结果",
"emoji_button.symbols": "符号", "emoji_button.symbols": "符号",
"emoji_button.travel": "旅行和地点", "emoji_button.travel": "旅行和地点",
"empty_column.account_suspended": "账户已停用", "empty_column.account_suspended": "账户已停用",
"empty_column.account_timeline": "这里没有帖子!", "empty_column.account_timeline": "这里没有帖子!",
"empty_column.account_unavailable": "用户资料不可用", "empty_column.account_unavailable": "个人资料不可用",
"empty_column.blocks": "你还未屏蔽任何用户。", "empty_column.blocks": "你还未屏蔽任何用户。",
"empty_column.bookmarked_statuses": "你还未将任何帖子加入收藏夹。在你加入收藏夹后,帖子将显示在此。", "empty_column.bookmarked_statuses": "你还未将任何帖子加入书签。在你添加书签后,帖子将显示在此。",
"empty_column.community": "本站时间轴暂时没有内容,快写点什么让它动起来吧!", "empty_column.community": "本站时间轴暂时没有内容,快写点什么让它动起来吧!",
"empty_column.conversations": "发送或收到仅对提及对象可见的嘟文后,就会显示在这里。", "empty_column.direct": "你还未使用过私信。当你发出或者收到私信时,它将显示在此。",
"empty_column.domain_blocks": "目前没有被隐藏的站点。", "empty_column.domain_blocks": "目前没有被隐藏的站点。",
"empty_column.explore_statuses": "目前没有热门话题,稍后再来看看吧!", "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": "似乎无法为你生成任何建议。你可以尝试使用搜索寻找你可能知道的人或探索热门标签。",
"empty_column.follow_requests": "你没有收到新的关注请。收到后将显示在此。", "empty_column.follow_requests": "你没有收到新的关注。收到后将显示在此。",
"empty_column.hashtag": "这个话题标签下暂时没有内容。", "empty_column.hashtag": "这个话题标签下暂时没有内容。",
"empty_column.home": "你的主页时间线是空的!快去关注更多人吧。 {suggestions}", "empty_column.home": "你的主页时间线是空的!快去关注更多人吧。 {suggestions}",
"empty_column.home.suggestions": "查看一些建议", "empty_column.home.suggestions": "查看一些建议",
"empty_column.list": "此列表中暂时没有内容。列表中用户所发送的的新嘟文将会显示在这里。", "empty_column.list": "此列表中暂时没有内容。列表中用户所发送的的新嘟文将会在这里显示。",
"empty_column.lists": "你还没有创建过列表。你创建的列表会显示在这里。", "empty_column.lists": "你还没有创建过列表。你创建的列表会在这里显示。",
"empty_column.mutes": "你没有隐藏任何用户。", "empty_column.mutes": "你没有隐藏任何用户。",
"empty_column.notifications": "你还没有收到过任何通知,快和其他用户互动吧。", "empty_column.notifications": "你还没有收到过任何通知,快和其他用户互动吧。",
"empty_column.public": "这里什么都没有!写一些公开帖子,或者关注来自其他服务器的用户后,这里就会有嘟文出现了", "empty_column.public": "这里什么都没有!写一些公开帖子,或者关注其他服务器的用户后,这里就会有嘟文出现了",
"error.unexpected_crash.explanation": "此页面无法正确显示,这可能是因为我们的代码中有错误,也可能是因为浏览器兼容问题。", "error.unexpected_crash.explanation": "此页面无法正确显示,这可能是因为我们的代码中有错误,也可能是因为浏览器兼容问题。",
"error.unexpected_crash.explanation_addons": "此页面无法正确显示,这个错误很可能是由浏览器附加组件或自动翻译工具造成的。", "error.unexpected_crash.explanation_addons": "此页面无法正确显示,这个错误很可能是由浏览器附加组件或自动翻译工具造成的。",
"error.unexpected_crash.next_steps": "刷新一下页面试试。如果没用,你可以换个浏览器或者用本地应用。", "error.unexpected_crash.next_steps": "刷新一下页面试试。如果没用,你可以换个浏览器或者用本地应用。",
@ -190,7 +190,7 @@
"explore.search_results": "搜索结果", "explore.search_results": "搜索结果",
"explore.suggested_follows": "为你推荐", "explore.suggested_follows": "为你推荐",
"explore.title": "探索", "explore.title": "探索",
"explore.trending_links": "新闻", "explore.trending_links": "最新消息",
"explore.trending_statuses": "帖子", "explore.trending_statuses": "帖子",
"explore.trending_tags": "话题标签", "explore.trending_tags": "话题标签",
"follow_recommendations.done": "完成", "follow_recommendations.done": "完成",
@ -198,7 +198,7 @@
"follow_recommendations.lead": "你关注的人的帖子将按时间顺序显示在你的主页。 别担心,你可以随时取消关注!", "follow_recommendations.lead": "你关注的人的帖子将按时间顺序显示在你的主页。 别担心,你可以随时取消关注!",
"follow_request.authorize": "授权", "follow_request.authorize": "授权",
"follow_request.reject": "拒绝", "follow_request.reject": "拒绝",
"follow_requests.unlocked_explanation": "虽然你没有锁嘟,但是 {domain} 的管理人员觉得你可能想人工审核这些账号的关注申请。", "follow_requests.unlocked_explanation": "虽说你没有锁嘟,但是 {domain} 的工作人员觉得你可能想手工审核这些账号的关注请求。",
"generic.saved": "已保存", "generic.saved": "已保存",
"getting_started.developers": "开发", "getting_started.developers": "开发",
"getting_started.directory": "用户目录", "getting_started.directory": "用户目录",
@ -212,7 +212,7 @@
"hashtag.column_header.tag_mode.any": "或是 {additional}", "hashtag.column_header.tag_mode.any": "或是 {additional}",
"hashtag.column_header.tag_mode.none": "而不用 {additional}", "hashtag.column_header.tag_mode.none": "而不用 {additional}",
"hashtag.column_settings.select.no_options_message": "没有找到建议", "hashtag.column_settings.select.no_options_message": "没有找到建议",
"hashtag.column_settings.select.placeholder": "输入话题标签…", "hashtag.column_settings.select.placeholder": "输入话题标签…",
"hashtag.column_settings.tag_mode.all": "全部", "hashtag.column_settings.tag_mode.all": "全部",
"hashtag.column_settings.tag_mode.any": "任一", "hashtag.column_settings.tag_mode.any": "任一",
"hashtag.column_settings.tag_mode.none": "无一", "hashtag.column_settings.tag_mode.none": "无一",
@ -226,12 +226,12 @@
"intervals.full.hours": "{number} 小时", "intervals.full.hours": "{number} 小时",
"intervals.full.minutes": "{number} 分钟", "intervals.full.minutes": "{number} 分钟",
"keyboard_shortcuts.back": "返回上一页", "keyboard_shortcuts.back": "返回上一页",
"keyboard_shortcuts.blocked": "打开屏蔽用户列表", "keyboard_shortcuts.blocked": "打开屏蔽用户列表",
"keyboard_shortcuts.boost": "转嘟", "keyboard_shortcuts.boost": "转嘟",
"keyboard_shortcuts.column": "选择某栏", "keyboard_shortcuts.column": "选择某栏",
"keyboard_shortcuts.compose": "选择输入框", "keyboard_shortcuts.compose": "选择输入框",
"keyboard_shortcuts.conversations": "打开对话栏",
"keyboard_shortcuts.description": "说明", "keyboard_shortcuts.description": "说明",
"keyboard_shortcuts.direct": "打开私信栏",
"keyboard_shortcuts.down": "在列表中让光标下移", "keyboard_shortcuts.down": "在列表中让光标下移",
"keyboard_shortcuts.enter": "展开帖子", "keyboard_shortcuts.enter": "展开帖子",
"keyboard_shortcuts.favourite": "喜欢帖子", "keyboard_shortcuts.favourite": "喜欢帖子",
@ -250,7 +250,7 @@
"keyboard_shortcuts.pinned": "打开置顶帖子列表", "keyboard_shortcuts.pinned": "打开置顶帖子列表",
"keyboard_shortcuts.profile": "打开作者的个人资料", "keyboard_shortcuts.profile": "打开作者的个人资料",
"keyboard_shortcuts.reply": "回复帖子", "keyboard_shortcuts.reply": "回复帖子",
"keyboard_shortcuts.requests": "打开关注请列表", "keyboard_shortcuts.requests": "打开关注列表",
"keyboard_shortcuts.search": "选择搜索框", "keyboard_shortcuts.search": "选择搜索框",
"keyboard_shortcuts.spoilers": "显示或隐藏被折叠的正文", "keyboard_shortcuts.spoilers": "显示或隐藏被折叠的正文",
"keyboard_shortcuts.start": "打开“开始使用”栏", "keyboard_shortcuts.start": "打开“开始使用”栏",
@ -283,20 +283,21 @@
"missing_indicator.label": "找不到内容", "missing_indicator.label": "找不到内容",
"missing_indicator.sublabel": "无法找到此资源", "missing_indicator.sublabel": "无法找到此资源",
"mute_modal.duration": "持续时长", "mute_modal.duration": "持续时长",
"mute_modal.hide_notifications": "是否同时隐藏来自这个用户的通知?", "mute_modal.hide_notifications": "同时隐藏来自这个用户的通知?",
"mute_modal.indefinite": "无期限", "mute_modal.indefinite": "无期限",
"navigation_bar.apps": "移动应用", "navigation_bar.apps": "移动应用",
"navigation_bar.blocks": "已屏蔽的用户", "navigation_bar.blocks": "已屏蔽的用户",
"navigation_bar.bookmarks": "收藏夹", "navigation_bar.bookmarks": "书签",
"navigation_bar.community_timeline": "本站时间轴", "navigation_bar.community_timeline": "本站时间轴",
"navigation_bar.compose": "撰写新帖子", "navigation_bar.compose": "撰写新帖子",
"navigation_bar.direct": "私信",
"navigation_bar.discover": "发现", "navigation_bar.discover": "发现",
"navigation_bar.domain_blocks": "已屏蔽的域名", "navigation_bar.domain_blocks": "已屏蔽的域名",
"navigation_bar.edit_profile": "修改个人资料", "navigation_bar.edit_profile": "修改个人资料",
"navigation_bar.explore": "探索", "navigation_bar.explore": "探索",
"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": "关注管理",
"navigation_bar.info": "关于此服务", "navigation_bar.info": "关于此服务",
"navigation_bar.keyboard_shortcuts": "快捷键列表", "navigation_bar.keyboard_shortcuts": "快捷键列表",
@ -305,17 +306,17 @@
"navigation_bar.mutes": "已隐藏的用户", "navigation_bar.mutes": "已隐藏的用户",
"navigation_bar.personal": "个人", "navigation_bar.personal": "个人",
"navigation_bar.pins": "置顶帖子", "navigation_bar.pins": "置顶帖子",
"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} 已注册", "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} 向你发送了关注请求",
"notification.mention": "{name} 提及了你", "notification.mention": "{name} 提及了你",
"notification.own_poll": "你的投票已经结束", "notification.own_poll": "你的投票已经结束",
"notification.poll": "你参与的一个投票已经结束", "notification.poll": "你参与的一个投票已经结束",
"notification.reblog": "{name} 转发了你的帖子", "notification.reblog": "{name} 转嘟了你的嘟文",
"notification.status": "{name} 刚刚发帖", "notification.status": "{name} 刚刚发帖",
"notification.update": "{name} 编辑了帖子", "notification.update": "{name} 编辑了帖子",
"notifications.clear": "清空通知列表", "notifications.clear": "清空通知列表",
@ -327,19 +328,19 @@
"notifications.column_settings.filter_bar.category": "快速过滤栏", "notifications.column_settings.filter_bar.category": "快速过滤栏",
"notifications.column_settings.filter_bar.show_bar": "显示过滤栏", "notifications.column_settings.filter_bar.show_bar": "显示过滤栏",
"notifications.column_settings.follow": "新关注者:", "notifications.column_settings.follow": "新关注者:",
"notifications.column_settings.follow_request": "新关注请:", "notifications.column_settings.follow_request": "新关注",
"notifications.column_settings.mention": "提及:", "notifications.column_settings.mention": "提及:",
"notifications.column_settings.poll": "投票结果:", "notifications.column_settings.poll": "投票结果:",
"notifications.column_settings.push": "推送通知", "notifications.column_settings.push": "推送通知",
"notifications.column_settings.reblog": "转", "notifications.column_settings.reblog": "转",
"notifications.column_settings.show": "在通知栏显示", "notifications.column_settings.show": "在通知栏显示",
"notifications.column_settings.sound": "播放音效", "notifications.column_settings.sound": "播放音效",
"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": "喜欢",
"notifications.filter.follows": "关注", "notifications.filter.follows": "关注",
"notifications.filter.mentions": "提及", "notifications.filter.mentions": "提及",
@ -348,9 +349,9 @@
"notifications.grant_permission": "授予权限", "notifications.grant_permission": "授予权限",
"notifications.group": "{count} 条通知", "notifications.group": "{count} 条通知",
"notifications.mark_as_read": "将所有通知标为已读", "notifications.mark_as_read": "将所有通知标为已读",
"notifications.permission_denied": "由于权限不可用,无法启用桌面通知。", "notifications.permission_denied": "由于权限被拒绝,无法启用桌面通知。",
"notifications.permission_denied_alert": "由于在此之前浏览器权限请求就已被拒绝,所以启用桌面通知失败", "notifications.permission_denied_alert": "由于在此之前浏览器权限请求就已被拒绝,所以启用桌面通知失败",
"notifications.permission_required": "未授予所需权限,所以桌面通知不可用", "notifications.permission_required": "所需权限未被授予,所以桌面通知不可用",
"notifications_permission_banner.enable": "启用桌面通知", "notifications_permission_banner.enable": "启用桌面通知",
"notifications_permission_banner.how_to_control": "启用桌面通知以在 Mastodon 未打开时接收通知。你可以通过交互通过上面的 {icon} 按钮来精细控制可以发送桌面通知的交互类型。", "notifications_permission_banner.how_to_control": "启用桌面通知以在 Mastodon 未打开时接收通知。你可以通过交互通过上面的 {icon} 按钮来精细控制可以发送桌面通知的交互类型。",
"notifications_permission_banner.title": "精彩不容错过", "notifications_permission_banner.title": "精彩不容错过",
@ -366,13 +367,13 @@
"poll_button.remove_poll": "移除投票", "poll_button.remove_poll": "移除投票",
"privacy.change": "设置帖子的可见范围", "privacy.change": "设置帖子的可见范围",
"privacy.direct.long": "只有被提及的用户能看到", "privacy.direct.long": "只有被提及的用户能看到",
"privacy.direct.short": "仅对提及的人可见", "privacy.direct.short": "仅提到的人",
"privacy.private.long": "仅关注者可见", "privacy.private.long": "仅关注者可见",
"privacy.private.short": "仅对关注者可见", "privacy.private.short": "仅对关注者可见",
"privacy.public.long": "所有人可见", "privacy.public.long": "所有人可见",
"privacy.public.short": "公开", "privacy.public.short": "公开",
"privacy.unlisted.long": "对所有人可见,但不加入探索功能", "privacy.unlisted.long": "对所有人可见,但不加入探索功能",
"privacy.unlisted.short": "公开", "privacy.unlisted.short": "公开",
"refresh": "刷新", "refresh": "刷新",
"regeneration_indicator.label": "加载中……", "regeneration_indicator.label": "加载中……",
"regeneration_indicator.sublabel": "你的主页动态正在准备中!", "regeneration_indicator.sublabel": "你的主页动态正在准备中!",
@ -467,7 +468,7 @@
"status.pin": "在个人资料页面置顶", "status.pin": "在个人资料页面置顶",
"status.pinned": "置顶帖子", "status.pinned": "置顶帖子",
"status.read_more": "查看更多", "status.read_more": "查看更多",
"status.reblog": "转", "status.reblog": "转",
"status.reblog_private": "转贴(可见者不变)", "status.reblog_private": "转贴(可见者不变)",
"status.reblogged_by": "{name} 转贴了", "status.reblogged_by": "{name} 转贴了",
"status.reblogs.empty": "没有人转贴过此贴。如果有人转贴了将显示在此。", "status.reblogs.empty": "没有人转贴过此贴。如果有人转贴了将显示在此。",

View File

@ -70,7 +70,7 @@
"column.blocks": "封鎖名單", "column.blocks": "封鎖名單",
"column.bookmarks": "書籤", "column.bookmarks": "書籤",
"column.community": "本站時間軸", "column.community": "本站時間軸",
"column.conversations": "Conversations", "column.direct": "Direct messages",
"column.directory": "瀏覽個人資料", "column.directory": "瀏覽個人資料",
"column.domain_blocks": "封鎖的服務站", "column.domain_blocks": "封鎖的服務站",
"column.favourites": "最愛的文章", "column.favourites": "最愛的文章",
@ -166,7 +166,7 @@
"empty_column.blocks": "你還沒有封鎖任何使用者。", "empty_column.blocks": "你還沒有封鎖任何使用者。",
"empty_column.bookmarked_statuses": "你還沒建立任何書籤。這裡將會顯示你建立的書籤。", "empty_column.bookmarked_statuses": "你還沒建立任何書籤。這裡將會顯示你建立的書籤。",
"empty_column.community": "本站時間軸暫時未有內容,快寫一點東西來搶頭香啊!", "empty_column.community": "本站時間軸暫時未有內容,快寫一點東西來搶頭香啊!",
"empty_column.conversations": "Once you send or receive a post that's only visible to people mentioned in it, it will show up here.", "empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
"empty_column.domain_blocks": "尚未隱藏任何網域。", "empty_column.domain_blocks": "尚未隱藏任何網域。",
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!", "empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
"empty_column.favourited_statuses": "你還沒收藏任何文章。這裡將會顯示你收藏的嘟文。", "empty_column.favourited_statuses": "你還沒收藏任何文章。這裡將會顯示你收藏的嘟文。",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "轉推", "keyboard_shortcuts.boost": "轉推",
"keyboard_shortcuts.column": "把標示移動到其中一列", "keyboard_shortcuts.column": "把標示移動到其中一列",
"keyboard_shortcuts.compose": "把標示移動到文字輸入區", "keyboard_shortcuts.compose": "把標示移動到文字輸入區",
"keyboard_shortcuts.conversations": "to open conversations column",
"keyboard_shortcuts.description": "描述", "keyboard_shortcuts.description": "描述",
"keyboard_shortcuts.direct": "to open direct messages column",
"keyboard_shortcuts.down": "在列表往下移動", "keyboard_shortcuts.down": "在列表往下移動",
"keyboard_shortcuts.enter": "打開文章", "keyboard_shortcuts.enter": "打開文章",
"keyboard_shortcuts.favourite": "收藏文章", "keyboard_shortcuts.favourite": "收藏文章",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "書籤", "navigation_bar.bookmarks": "書籤",
"navigation_bar.community_timeline": "本站時間軸", "navigation_bar.community_timeline": "本站時間軸",
"navigation_bar.compose": "撰寫新文章", "navigation_bar.compose": "撰寫新文章",
"navigation_bar.direct": "Direct messages",
"navigation_bar.discover": "探索", "navigation_bar.discover": "探索",
"navigation_bar.domain_blocks": "封鎖的服務站", "navigation_bar.domain_blocks": "封鎖的服務站",
"navigation_bar.edit_profile": "修改個人資料", "navigation_bar.edit_profile": "修改個人資料",

View File

@ -70,7 +70,7 @@
"column.blocks": "已封鎖的使用者", "column.blocks": "已封鎖的使用者",
"column.bookmarks": "書籤", "column.bookmarks": "書籤",
"column.community": "本站時間軸", "column.community": "本站時間軸",
"column.conversations": "對話", "column.direct": "私訊",
"column.directory": "瀏覽個人檔案", "column.directory": "瀏覽個人檔案",
"column.domain_blocks": "已封鎖的網域", "column.domain_blocks": "已封鎖的網域",
"column.favourites": "最愛", "column.favourites": "最愛",
@ -166,7 +166,7 @@
"empty_column.blocks": "您還沒有封鎖任何使用者。", "empty_column.blocks": "您還沒有封鎖任何使用者。",
"empty_column.bookmarked_statuses": "您還沒建立任何書籤。當您建立書簽時,它將於此顯示。", "empty_column.bookmarked_statuses": "您還沒建立任何書籤。當您建立書簽時,它將於此顯示。",
"empty_column.community": "本站時間軸是空的。快公開嘟些文搶頭香啊!", "empty_column.community": "本站時間軸是空的。快公開嘟些文搶頭香啊!",
"empty_column.conversations": "一旦您傳送或收到僅對其中提到之人可見的嘟文,就會在這邊顯示。", "empty_column.direct": "您還沒有任何私訊。當您私訊別人或收到私訊時,它將於此顯示。",
"empty_column.domain_blocks": "尚未封鎖任何網域。", "empty_column.domain_blocks": "尚未封鎖任何網域。",
"empty_column.explore_statuses": "目前沒有熱門討論,請稍候再回來看看!", "empty_column.explore_statuses": "目前沒有熱門討論,請稍候再回來看看!",
"empty_column.favourited_statuses": "您還沒加過任何嘟文至最愛。當您收藏嘟文時,它將於此顯示。", "empty_column.favourited_statuses": "您還沒加過任何嘟文至最愛。當您收藏嘟文時,它將於此顯示。",
@ -230,8 +230,8 @@
"keyboard_shortcuts.boost": "轉嘟", "keyboard_shortcuts.boost": "轉嘟",
"keyboard_shortcuts.column": "將焦點放在其中一欄的嘟文", "keyboard_shortcuts.column": "將焦點放在其中一欄的嘟文",
"keyboard_shortcuts.compose": "將焦點移至撰寫文字區塊", "keyboard_shortcuts.compose": "將焦點移至撰寫文字區塊",
"keyboard_shortcuts.conversations": "開啟對話欄",
"keyboard_shortcuts.description": "說明", "keyboard_shortcuts.description": "說明",
"keyboard_shortcuts.direct": "開啟私訊欄",
"keyboard_shortcuts.down": "在列表中往下移動", "keyboard_shortcuts.down": "在列表中往下移動",
"keyboard_shortcuts.enter": "檢視嘟文", "keyboard_shortcuts.enter": "檢視嘟文",
"keyboard_shortcuts.favourite": "加到最愛", "keyboard_shortcuts.favourite": "加到最愛",
@ -290,6 +290,7 @@
"navigation_bar.bookmarks": "書籤", "navigation_bar.bookmarks": "書籤",
"navigation_bar.community_timeline": "本站時間軸", "navigation_bar.community_timeline": "本站時間軸",
"navigation_bar.compose": "撰寫新嘟文", "navigation_bar.compose": "撰寫新嘟文",
"navigation_bar.direct": "私訊",
"navigation_bar.discover": "探索", "navigation_bar.discover": "探索",
"navigation_bar.domain_blocks": "隱藏的網域", "navigation_bar.domain_blocks": "隱藏的網域",
"navigation_bar.edit_profile": "編輯個人檔案", "navigation_bar.edit_profile": "編輯個人檔案",
@ -366,7 +367,7 @@
"poll_button.remove_poll": "移除投票", "poll_button.remove_poll": "移除投票",
"privacy.change": "調整嘟文隱私狀態", "privacy.change": "調整嘟文隱私狀態",
"privacy.direct.long": "只有被提及的使用者能看到", "privacy.direct.long": "只有被提及的使用者能看到",
"privacy.direct.short": "僅限於我提及的人", "privacy.direct.short": "僅限提及的人",
"privacy.private.long": "只有跟隨您的使用者能看到", "privacy.private.long": "只有跟隨您的使用者能看到",
"privacy.private.short": "僅限跟隨者", "privacy.private.short": "僅限跟隨者",
"privacy.public.long": "對所有人可見", "privacy.public.long": "對所有人可見",

View File

@ -2469,6 +2469,10 @@ a.account__display-name {
.columns-area__panels__pane--compositional { .columns-area__panels__pane--compositional {
display: none; display: none;
} }
.with-fab .scrollable .item-list:last-child {
padding-bottom: 5.25rem;
}
} }
@media screen and (min-width: 600px + (285px * 1) + (10px * 1)) { @media screen and (min-width: 600px + (285px * 1) + (10px * 1)) {

View File

@ -92,6 +92,10 @@ class Admin::AccountAction
text: text_for_warning, text: text_for_warning,
status_ids: status_ids status_ids: status_ids
) )
# A log entry is only interesting if the warning contains
# custom text from someone. Otherwise it's just noise.
log_action(:create, @warning) if @warning.text.present? && type == 'none'
end end
def process_reports! def process_reports!

View File

@ -28,7 +28,7 @@ class VerifyLinkService < BaseService
links = Nokogiri::HTML(@body).xpath('//a[contains(concat(" ", normalize-space(@rel), " "), " me ")]|//link[contains(concat(" ", normalize-space(@rel), " "), " me ")]') links = Nokogiri::HTML(@body).xpath('//a[contains(concat(" ", normalize-space(@rel), " "), " me ")]|//link[contains(concat(" ", normalize-space(@rel), " "), " me ")]')
if links.any? { |link| link['href'] == @link_back } if links.any? { |link| link['href'].downcase == @link_back.downcase }
true true
elsif links.empty? elsif links.empty?
false false

View File

@ -3,8 +3,8 @@
- content_for :heading_actions do - content_for :heading_actions do
- if @appeal.persisted? - if @appeal.persisted?
= link_to t('admin.accounts.approve'), approve_admin_disputes_appeal_path(@appeal), method: :post, class: 'button' if can?(:approve, @appeal) = link_to t('disputes.strikes.approve_appeal'), approve_admin_disputes_appeal_path(@appeal), method: :post, class: 'button' if can?(:approve, @appeal)
= link_to t('admin.accounts.reject'), reject_admin_disputes_appeal_path(@appeal), method: :post, class: 'button button--destructive' if can?(:reject, @appeal) = link_to t('disputes.strikes.reject_appeal'), reject_admin_disputes_appeal_path(@appeal), method: :post, class: 'button button--destructive' if can?(:reject, @appeal)
- if @strike.overruled? - if @strike.overruled?
%p.hint %p.hint

View File

@ -65,6 +65,6 @@
- elsif status.private_visibility? || status.limited_visibility? - elsif status.private_visibility? || status.limited_visibility?
= fa_icon 'lock fw' = fa_icon 'lock fw'
- else - else
= fa_icon 'envelope fw' = fa_icon 'at fw'
= link_to remote_interaction_path(status, type: :favourite), class: 'status__action-bar-button icon-button modal-button' do = link_to remote_interaction_path(status, type: :favourite), class: 'status__action-bar-button icon-button modal-button' do
= fa_icon 'star fw' = fa_icon 'star fw'

View File

@ -1,13 +1,32 @@
--- ---
he: he:
activerecord: activerecord:
attributes:
poll:
expires_at: מועד אחרון
options: ברירות
user:
agreement: הסכם שירות
email: כתובת דוא"ל
locale: הגדרות אזוריות
password: סיסמא
user/account:
username: שם משתמש/ת
user/invite_request:
text: סיבה
errors: errors:
models: models:
account: account:
attributes: attributes:
username: username:
invalid: ספרות, אותיות לטיניות וקו תחתי בלבד invalid: ספרות, אותיות לטיניות וקו תחתי בלבד
reserved: שמור
status: status:
attributes: attributes:
reblog: reblog:
taken: של החצרוץ כבר קיים taken: של החצרוץ כבר קיים
user:
attributes:
email:
blocked: עושה שימוש בספק דוא"ל אסור
unreachable: נראה שלא קיים

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