Merge branch 'master' into glitch-soc/merge-upstream
This commit is contained in:
commit
60adda7e59
255 changed files with 2788 additions and 3451 deletions
|
@ -3,7 +3,7 @@ Changelog
|
|||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [Unreleased]
|
||||
## [2.9.0] - 2019-06-13
|
||||
### Added
|
||||
|
||||
- **Add single-column mode in web UI** ([Gargron](https://github.com/tootsuite/mastodon/pull/10807), [Gargron](https://github.com/tootsuite/mastodon/pull/10848), [Gargron](https://github.com/tootsuite/mastodon/pull/11003), [Gargron](https://github.com/tootsuite/mastodon/pull/10961), [Hanage999](https://github.com/tootsuite/mastodon/pull/10915), [noellabo](https://github.com/tootsuite/mastodon/pull/10917), [abcang](https://github.com/tootsuite/mastodon/pull/10859), [Gargron](https://github.com/tootsuite/mastodon/pull/10820), [Gargron](https://github.com/tootsuite/mastodon/pull/10835), [Gargron](https://github.com/tootsuite/mastodon/pull/10809), [Gargron](https://github.com/tootsuite/mastodon/pull/10963), [noellabo](https://github.com/tootsuite/mastodon/pull/10883), [Hanage999](https://github.com/tootsuite/mastodon/pull/10839))
|
||||
|
@ -14,6 +14,7 @@ All notable changes to this project will be documented in this file.
|
|||
- Add emoji suggestions to content warning and poll option fields in web UI ([ThibG](https://github.com/tootsuite/mastodon/pull/10555))
|
||||
- Add `source` attribute to response of `DELETE /api/v1/statuses/:id` ([ThibG](https://github.com/tootsuite/mastodon/pull/10669))
|
||||
- Add some caching for HTML versions of public status pages ([ThibG](https://github.com/tootsuite/mastodon/pull/10701))
|
||||
- Add button to conveniently copy OAuth code ([ThibG](https://github.com/tootsuite/mastodon/pull/11065))
|
||||
|
||||
### Changed
|
||||
|
||||
|
@ -53,6 +54,8 @@ All notable changes to this project will be documented in this file.
|
|||
- Fix avatar preview aspect ratio on edit profile page ([Kjwon15](https://github.com/tootsuite/mastodon/pull/10931))
|
||||
- Fix web push notifications not being sent for polls ([ThibG](https://github.com/tootsuite/mastodon/pull/10864))
|
||||
- Fix cut off letters in last paragraph of statuses in web UI ([ariasuni](https://github.com/tootsuite/mastodon/pull/10821))
|
||||
- Fix list not being automatically unpinned when it returns 404 in web UI ([Gargron](https://github.com/tootsuite/mastodon/pull/11045))
|
||||
- Fix login sometimes redirecting to paths that are not pages ([Gargron](https://github.com/tootsuite/mastodon/pull/11019))
|
||||
|
||||
## [2.8.4] - 2019-05-24
|
||||
### Fixed
|
||||
|
|
|
@ -107,9 +107,13 @@ export default class StatusContent extends React.PureComponent {
|
|||
const [ startX, startY ] = this.startXY;
|
||||
const [ deltaX, deltaY ] = [Math.abs(e.clientX - startX), Math.abs(e.clientY - startY)];
|
||||
|
||||
if (e.target.localName === 'button' || e.target.localName === 'a' || (e.target.parentNode && (e.target.parentNode.localName === 'button' || e.target.parentNode.localName === 'a'))) {
|
||||
let element = e.target;
|
||||
while (element) {
|
||||
if (element.localName === 'button' || element.localName === 'a' || element.localName === 'label') {
|
||||
return;
|
||||
}
|
||||
element = element.parentNode;
|
||||
}
|
||||
|
||||
if (deltaX + deltaY < 5 && e.button === 0 && this.props.onClick) {
|
||||
this.props.onClick();
|
||||
|
|
|
@ -211,10 +211,6 @@ class ComposeForm extends ImmutablePureComponent {
|
|||
/>
|
||||
</div>
|
||||
|
||||
<div className={`emoji-picker-wrapper ${this.props.showSearch ? 'emoji-picker-wrapper--hidden' : ''}`}>
|
||||
<EmojiPickerDropdown onPickEmoji={this.handleEmojiPick} />
|
||||
</div>
|
||||
|
||||
<AutosuggestTextarea
|
||||
ref={this.setAutosuggestTextarea}
|
||||
placeholder={intl.formatMessage(messages.placeholder)}
|
||||
|
@ -230,6 +226,7 @@ class ComposeForm extends ImmutablePureComponent {
|
|||
onPaste={onPaste}
|
||||
autoFocus={!showSearch && !isMobile(window.innerWidth)}
|
||||
>
|
||||
<EmojiPickerDropdown onPickEmoji={this.handleEmojiPick} />
|
||||
<div className='compose-form__modifiers'>
|
||||
<UploadFormContainer />
|
||||
<PollFormContainer />
|
||||
|
|
|
@ -7,6 +7,7 @@ import DisplayName from '../../../components/display_name';
|
|||
import { defineMessages, injectIntl } from 'react-intl';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import { isRtl } from '../../../rtl';
|
||||
import AttachmentList from 'mastodon/components/attachment_list';
|
||||
|
||||
const messages = defineMessages({
|
||||
cancel: { id: 'reply_indicator.cancel', defaultMessage: 'Cancel' },
|
||||
|
@ -60,6 +61,13 @@ class ReplyIndicator extends ImmutablePureComponent {
|
|||
</div>
|
||||
|
||||
<div className='reply-indicator__content' style={style} dangerouslySetInnerHTML={content} />
|
||||
|
||||
{status.get('media_attachments').size > 0 && (
|
||||
<AttachmentList
|
||||
compact
|
||||
media={status.get('media_attachments')}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@ import RelativeTimestamp from '../../../components/relative_timestamp';
|
|||
import DisplayName from '../../../components/display_name';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import Icon from 'mastodon/components/icon';
|
||||
import AttachmentList from 'mastodon/components/attachment_list';
|
||||
|
||||
const messages = defineMessages({
|
||||
cancel_reblog: { id: 'status.cancel_reblog_private', defaultMessage: 'Unboost' },
|
||||
|
@ -73,6 +74,13 @@ class BoostModal extends ImmutablePureComponent {
|
|||
</div>
|
||||
|
||||
<StatusContent status={status} />
|
||||
|
||||
{status.get('media_attachments').size > 0 && (
|
||||
<AttachmentList
|
||||
compact
|
||||
media={status.get('media_attachments')}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ import React from 'react';
|
|||
import { NavLink, withRouter } from 'react-router-dom';
|
||||
import { FormattedMessage } from 'react-intl';
|
||||
import Icon from 'mastodon/components/icon';
|
||||
import { profile_directory } from 'mastodon/initial_state';
|
||||
import NotificationsCounterIcon from './notifications_counter_icon';
|
||||
import FollowRequestsNavLink from './follow_requests_nav_link';
|
||||
import ListPanel from './list_panel';
|
||||
|
@ -23,7 +24,7 @@ const NavigationPanel = () => (
|
|||
|
||||
<a className='column-link column-link--transparent' href='/settings/preferences'><Icon className='column-link__icon' id='cog' fixedWidth /><FormattedMessage id='navigation_bar.preferences' defaultMessage='Preferences' /></a>
|
||||
<a className='column-link column-link--transparent' href='/relationships'><Icon className='column-link__icon' id='users' fixedWidth /><FormattedMessage id='navigation_bar.follows_and_followers' defaultMessage='Follows and followers' /></a>
|
||||
<a className='column-link column-link--transparent' href='/explore'><Icon className='column-link__icon' id='address-book-o' fixedWidth /><FormattedMessage id='navigation_bar.profile_directory' defaultMessage='Profile directory' /></a>
|
||||
{!!profile_directory && <a className='column-link column-link--transparent' href='/explore'><Icon className='column-link__icon' id='address-book-o' fixedWidth /><FormattedMessage id='navigation_bar.profile_directory' defaultMessage='Profile directory' /></a>}
|
||||
</div>
|
||||
);
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"account.add_or_remove_from_list": "أضيف/ي أو أحذف/ي من القائمة",
|
||||
"account.add_or_remove_from_list": "أضفه أو أزله من القائمة",
|
||||
"account.badges.bot": "روبوت",
|
||||
"account.block": "حظر @{name}",
|
||||
"account.block_domain": "إخفاء كل شيئ قادم من إسم النطاق {domain}",
|
||||
"account.block_domain": "إخفاء كل شيئ قادم من اسم النطاق {domain}",
|
||||
"account.blocked": "محظور",
|
||||
"account.direct": "رسالة خاصة إلى @{name}",
|
||||
"account.domain_blocked": "النطاق مخفي",
|
||||
|
@ -19,7 +19,7 @@
|
|||
"account.locked_info": "تم تأمين خصوصية هذا الحساب عبر قفل. صاحب الحساب يُراجِع يدويا طلبات المتابَعة و الاشتراك بحسابه.",
|
||||
"account.media": "وسائط",
|
||||
"account.mention": "أُذكُر/ي @{name}",
|
||||
"account.moved_to": "{name} إنتقل إلى :",
|
||||
"account.moved_to": "{name} انتقل إلى:",
|
||||
"account.mute": "كتم @{name}",
|
||||
"account.mute_notifications": "كتم الإخطارات من @{name}",
|
||||
"account.muted": "مكتوم",
|
||||
|
@ -66,7 +66,7 @@
|
|||
"column_subheading.settings": "الإعدادات",
|
||||
"community.column_settings.media_only": "الوسائط فقط",
|
||||
"compose_form.direct_message_warning": "لن يَظهر هذا التبويق إلا للمستخدمين المذكورين.",
|
||||
"compose_form.direct_message_warning_learn_more": "إقرأ المزيد",
|
||||
"compose_form.direct_message_warning_learn_more": "اقرأ المزيد",
|
||||
"compose_form.hashtag_warning": "هذا التبويق لن يُدرَج تحت أي وسم كان بما أنه غير مُدرَج. لا يُسمح بالبحث إلّا عن التبويقات العمومية عن طريق الوسوم.",
|
||||
"compose_form.lock_disclaimer": "حسابك ليس {locked}. يمكن لأي شخص متابعتك و عرض المنشورات.",
|
||||
"compose_form.lock_disclaimer.lock": "مقفل",
|
||||
|
@ -77,22 +77,22 @@
|
|||
"compose_form.poll.remove_option": "إزالة هذا الخيار",
|
||||
"compose_form.publish": "بوّق",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"compose_form.sensitive.hide": "Mark media as sensitive",
|
||||
"compose_form.sensitive.hide": "تحديد الوسائط كحساسة",
|
||||
"compose_form.sensitive.marked": "لقد تم تحديد هذه الصورة كحساسة",
|
||||
"compose_form.sensitive.unmarked": "لم يتم تحديد الصورة كحساسة",
|
||||
"compose_form.spoiler.marked": "إنّ النص مخفي وراء تحذير",
|
||||
"compose_form.spoiler.unmarked": "النص غير مخفي",
|
||||
"compose_form.spoiler_placeholder": "تنبيه عن المحتوى",
|
||||
"confirmation_modal.cancel": "إلغاء",
|
||||
"confirmations.block.block_and_report": "Block & Report",
|
||||
"confirmations.block.block_and_report": "احجبه وابلغ عنه",
|
||||
"confirmations.block.confirm": "حجب",
|
||||
"confirmations.block.message": "هل أنت متأكد أنك تريد حجب {name} ؟",
|
||||
"confirmations.delete.confirm": "حذف",
|
||||
"confirmations.delete.message": "هل أنت متأكد أنك تريد حذف هذا المنشور ؟",
|
||||
"confirmations.delete_list.confirm": "Delete",
|
||||
"confirmations.delete_list.confirm": "احذف",
|
||||
"confirmations.delete_list.message": "هل تود حقا حذف هذه القائمة ؟",
|
||||
"confirmations.domain_block.confirm": "إخفاء إسم النطاق كاملا",
|
||||
"confirmations.domain_block.message": "متأكد من أنك تود حظر إسم النطاق {domain} بالكامل ؟ في غالب الأحيان يُستَحسَن كتم أو حظر بعض الحسابات بدلا من حظر نطاق بالكامل.\nلن تتمكن مِن رؤية محتوى هذا النطاق لا على خيوطك العمومية و لا في إشعاراتك. سوف يتم كذلك إزالة كافة متابعيك المنتمين إلى هذا النطاق.",
|
||||
"confirmations.domain_block.confirm": "إخفاء اسم النطاق كاملا",
|
||||
"confirmations.domain_block.message": "متأكد من أنك تود حظر اسم النطاق {domain} بالكامل ؟ في غالب الأحيان يُستَحسَن كتم أو حظر بعض الحسابات بدلا من حظر نطاق بالكامل.\nلن تتمكن مِن رؤية محتوى هذا النطاق لا على خيوطك العمومية و لا في إشعاراتك. سوف يتم كذلك إزالة كافة متابعيك المنتمين إلى هذا النطاق.",
|
||||
"confirmations.mute.confirm": "أكتم",
|
||||
"confirmations.mute.message": "هل أنت متأكد أنك تريد كتم {name} ؟",
|
||||
"confirmations.redraft.confirm": "إزالة و إعادة الصياغة",
|
||||
|
@ -112,7 +112,7 @@
|
|||
"emoji_button.not_found": "لا إيموجو !! (╯°□°)╯︵ ┻━┻",
|
||||
"emoji_button.objects": "أشياء",
|
||||
"emoji_button.people": "الناس",
|
||||
"emoji_button.recent": "الشائعة الإستخدام",
|
||||
"emoji_button.recent": "الشائعة الاستخدام",
|
||||
"emoji_button.search": "ابحث...",
|
||||
"emoji_button.search_results": "نتائج البحث",
|
||||
"emoji_button.symbols": "رموز",
|
||||
|
@ -133,13 +133,13 @@
|
|||
"empty_column.lists": "ليس عندك أية قائمة بعد. سوف تظهر قائمتك هنا إن قمت بإنشاء واحدة.",
|
||||
"empty_column.mutes": "لم تقم بكتم أي مستخدم بعد.",
|
||||
"empty_column.notifications": "لم تتلق أي إشعار بعدُ. تفاعل مع المستخدمين الآخرين لإنشاء محادثة.",
|
||||
"empty_column.public": "لا يوجد أي شيء هنا ! قم بنشر شيء ما للعامة، أو إتبع المستخدمين الآخرين المتواجدين على الخوادم الأخرى لملء خيط المحادثات",
|
||||
"empty_column.public": "لا يوجد أي شيء هنا! قم بنشر شيء ما للعامة، أو اتبع المستخدمين الآخرين المتواجدين على الخوادم الأخرى لملء خيط المحادثات",
|
||||
"follow_request.authorize": "ترخيص",
|
||||
"follow_request.reject": "رفض",
|
||||
"getting_started.developers": "المُطوِّرون",
|
||||
"getting_started.directory": "دليل المستخدِمين والمستخدِمات",
|
||||
"getting_started.documentation": "الدليل",
|
||||
"getting_started.heading": "إستعدّ للبدء",
|
||||
"getting_started.heading": "استعدّ للبدء",
|
||||
"getting_started.invite": "دعوة أشخاص",
|
||||
"getting_started.open_source_notice": "ماستدون برنامج مفتوح المصدر. يمكنك المساهمة، أو الإبلاغ عن تقارير الأخطاء، على جيت هب {github}.",
|
||||
"getting_started.security": "الأمان",
|
||||
|
@ -156,15 +156,15 @@
|
|||
"home.column_settings.basic": "أساسية",
|
||||
"home.column_settings.show_reblogs": "عرض الترقيات",
|
||||
"home.column_settings.show_replies": "عرض الردود",
|
||||
"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}}",
|
||||
"intervals.full.days": "{number, plural, one {# يوم} other {# أيام}}",
|
||||
"intervals.full.hours": "{number, plural, one {# ساعة} other {# ساعات}}",
|
||||
"intervals.full.minutes": "{number, plural, one {# دقيقة} other {# دقائق}}",
|
||||
"introduction.federation.action": "التالي",
|
||||
"introduction.federation.federated.headline": "Federated",
|
||||
"introduction.federation.federated.headline": "الفديرالي",
|
||||
"introduction.federation.federated.text": "كافة المنشورات التي نُشِرت إلى العامة على الخوادم الأخرى للفديفرس سوف يتم عرضها على الخيط المُوحَّد.",
|
||||
"introduction.federation.home.headline": "Home",
|
||||
"introduction.federation.home.headline": "الرئيسي",
|
||||
"introduction.federation.home.text": "سوف تُعرَض منشورات الأشخاص الذين تُتابِعهم على الخيط الرئيسي. بإمكانك متابعة أي حساب أيا كان الخادم الذي هو عليه!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.headline": "المحلي",
|
||||
"introduction.federation.local.text": "المنشورات المُوجّهة للعامة على نفس الخادم الذي أنتم عليه ستظهر على الخيط الزمني المحلي.",
|
||||
"introduction.interactions.action": "إنهاء العرض التوضيحي!",
|
||||
"introduction.interactions.favourite.headline": "الإضافة إلى المفضلة",
|
||||
|
@ -175,22 +175,22 @@
|
|||
"introduction.interactions.reply.text": "يمكنكم الرد على تبويقاتكم و تبويقات الآخرين على شكل سلسلة محادثة.",
|
||||
"introduction.welcome.action": "هيا بنا!",
|
||||
"introduction.welcome.headline": "الخطوات الأولى",
|
||||
"introduction.welcome.text": "مرحبا بكم على الفيديفيرس! بعد لحظات قليلة ، سيكون بمقدوركم بث رسائل والتحدث إلى أصدقائكم عبر تشكيلة واسعة من الخوادم المختلفة. هذا الخادم ، {domain} ، يستضيف ملفكم الشخصي ، لذا يجب تذكر اسمه جيدا.",
|
||||
"introduction.welcome.text": "مرحبا بكم على الفديفرس! بعد لحظات قليلة ، سيكون بمقدوركم بث رسائل والتحدث إلى أصدقائكم عبر تشكيلة واسعة من الخوادم المختلفة. هذا الخادم ، {domain} ، يستضيف ملفكم الشخصي ، لذا يجب تذكر اسمه جيدا.",
|
||||
"keyboard_shortcuts.back": "للعودة",
|
||||
"keyboard_shortcuts.blocked": "لفتح قائمة المستخدمين المحظورين",
|
||||
"keyboard_shortcuts.boost": "للترقية",
|
||||
"keyboard_shortcuts.column": "للتركيز على منشور على أحد الأعمدة",
|
||||
"keyboard_shortcuts.compose": "للتركيز على نافذة تحرير النصوص",
|
||||
"keyboard_shortcuts.description": "Description",
|
||||
"keyboard_shortcuts.description": "الوصف",
|
||||
"keyboard_shortcuts.direct": "لفتح عمود الرسائل المباشرة",
|
||||
"keyboard_shortcuts.down": "للإنتقال إلى أسفل القائمة",
|
||||
"keyboard_shortcuts.enter": "to open status",
|
||||
"keyboard_shortcuts.down": "للانتقال إلى أسفل القائمة",
|
||||
"keyboard_shortcuts.enter": "لفتح المنشور",
|
||||
"keyboard_shortcuts.favourite": "للإضافة إلى المفضلة",
|
||||
"keyboard_shortcuts.favourites": "لفتح قائمة المفضلات",
|
||||
"keyboard_shortcuts.federated": "لفتح الخيط الزمني الفديرالي",
|
||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||
"keyboard_shortcuts.home": "لفتح الخيط الرئيسي",
|
||||
"keyboard_shortcuts.hotkey": "مفتاح الإختصار",
|
||||
"keyboard_shortcuts.hotkey": "مفتاح الاختصار",
|
||||
"keyboard_shortcuts.legend": "لعرض هذا المفتاح",
|
||||
"keyboard_shortcuts.local": "لفتح الخيط الزمني المحلي",
|
||||
"keyboard_shortcuts.mention": "لذِكر الناشر",
|
||||
|
@ -204,17 +204,17 @@
|
|||
"keyboard_shortcuts.search": "للتركيز على البحث",
|
||||
"keyboard_shortcuts.start": "لفتح عمود \"هيا نبدأ\"",
|
||||
"keyboard_shortcuts.toggle_hidden": "لعرض أو إخفاء النص مِن وراء التحذير",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "لعرض/إخفاء الوسائط",
|
||||
"keyboard_shortcuts.toot": "لتحرير تبويق جديد",
|
||||
"keyboard_shortcuts.unfocus": "لإلغاء التركيز على حقل النص أو نافذة البحث",
|
||||
"keyboard_shortcuts.up": "للإنتقال إلى أعلى القائمة",
|
||||
"keyboard_shortcuts.up": "للانتقال إلى أعلى القائمة",
|
||||
"lightbox.close": "إغلاق",
|
||||
"lightbox.next": "التالي",
|
||||
"lightbox.previous": "العودة",
|
||||
"lightbox.view_context": "View context",
|
||||
"lightbox.view_context": "اعرض السياق",
|
||||
"lists.account.add": "أضف إلى القائمة",
|
||||
"lists.account.remove": "إحذف من القائمة",
|
||||
"lists.delete": "Delete list",
|
||||
"lists.account.remove": "احذف من القائمة",
|
||||
"lists.delete": "احذف القائمة",
|
||||
"lists.edit": "تعديل القائمة",
|
||||
"lists.edit.submit": "تعديل العنوان",
|
||||
"lists.new.create": "إنشاء قائمة",
|
||||
|
@ -231,22 +231,22 @@
|
|||
"navigation_bar.community_timeline": "الخيط العام المحلي",
|
||||
"navigation_bar.compose": "تحرير تبويق جديد",
|
||||
"navigation_bar.direct": "الرسائل المباشِرة",
|
||||
"navigation_bar.discover": "إكتشف",
|
||||
"navigation_bar.discover": "اكتشف",
|
||||
"navigation_bar.domain_blocks": "النطاقات المخفية",
|
||||
"navigation_bar.edit_profile": "تعديل الملف الشخصي",
|
||||
"navigation_bar.favourites": "المفضلة",
|
||||
"navigation_bar.filters": "الكلمات المكتومة",
|
||||
"navigation_bar.follow_requests": "طلبات المتابعة",
|
||||
"navigation_bar.follows_and_followers": "Follows and followers",
|
||||
"navigation_bar.follows_and_followers": "المتابِعين والمتابَعون",
|
||||
"navigation_bar.info": "عن هذا الخادم",
|
||||
"navigation_bar.keyboard_shortcuts": "إختصارات لوحة المفاتيح",
|
||||
"navigation_bar.keyboard_shortcuts": "اختصارات لوحة المفاتيح",
|
||||
"navigation_bar.lists": "القوائم",
|
||||
"navigation_bar.logout": "خروج",
|
||||
"navigation_bar.mutes": "الحسابات المكتومة",
|
||||
"navigation_bar.personal": "Personal",
|
||||
"navigation_bar.personal": "شخصي",
|
||||
"navigation_bar.pins": "التبويقات المثبتة",
|
||||
"navigation_bar.preferences": "التفضيلات",
|
||||
"navigation_bar.profile_directory": "Profile directory",
|
||||
"navigation_bar.profile_directory": "دليل المستخدِمين",
|
||||
"navigation_bar.public_timeline": "الخيط العام الموحد",
|
||||
"navigation_bar.security": "الأمان",
|
||||
"notification.favourite": "أُعجِب {name} بمنشورك",
|
||||
|
@ -254,7 +254,7 @@
|
|||
"notification.mention": "{name} ذكرك",
|
||||
"notification.poll": "A poll you have voted in has ended",
|
||||
"notification.reblog": "{name} قام بترقية تبويقك",
|
||||
"notifications.clear": "إمسح الإخطارات",
|
||||
"notifications.clear": "امسح الإخطارات",
|
||||
"notifications.clear_confirmation": "أمتأكد من أنك تود مسح جل الإخطارات الخاصة بك و المتلقاة إلى حد الآن ؟",
|
||||
"notifications.column_settings.alert": "إشعارات سطح المكتب",
|
||||
"notifications.column_settings.favourite": "المُفَضَّلة:",
|
||||
|
@ -266,7 +266,7 @@
|
|||
"notifications.column_settings.poll": "نتائج استطلاع الرأي:",
|
||||
"notifications.column_settings.push": "الإخطارات المدفوعة",
|
||||
"notifications.column_settings.reblog": "الترقيّات:",
|
||||
"notifications.column_settings.show": "إعرِضها في عمود",
|
||||
"notifications.column_settings.show": "اعرِضها في عمود",
|
||||
"notifications.column_settings.sound": "أصدر صوتا",
|
||||
"notifications.filter.all": "الكل",
|
||||
"notifications.filter.boosts": "الترقيات",
|
||||
|
@ -277,11 +277,11 @@
|
|||
"notifications.group": "{count} إشعارات",
|
||||
"poll.closed": "انتهى",
|
||||
"poll.refresh": "تحديث",
|
||||
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
|
||||
"poll.total_votes": "{count, plural, one {# صوت} other {# أصوات}}",
|
||||
"poll.vote": "صَوّت",
|
||||
"poll_button.add_poll": "إضافة استطلاع للرأي",
|
||||
"poll_button.remove_poll": "إزالة استطلاع الرأي",
|
||||
"privacy.change": "إضبط خصوصية المنشور",
|
||||
"privacy.change": "اضبط خصوصية المنشور",
|
||||
"privacy.direct.long": "أنشر إلى المستخدمين المشار إليهم فقط",
|
||||
"privacy.direct.short": "مباشر",
|
||||
"privacy.private.long": "أنشر لمتابعيك فقط",
|
||||
|
@ -292,18 +292,18 @@
|
|||
"privacy.unlisted.short": "غير مدرج",
|
||||
"regeneration_indicator.label": "جارٍ التحميل…",
|
||||
"regeneration_indicator.sublabel": "جارٍ تجهيز تغذية صفحتك الرئيسية!",
|
||||
"relative_time.days": "{number}d",
|
||||
"relative_time.hours": "{number}h",
|
||||
"relative_time.days": "{number}ي",
|
||||
"relative_time.hours": "{number}سا",
|
||||
"relative_time.just_now": "الآن",
|
||||
"relative_time.minutes": "{number}m",
|
||||
"relative_time.seconds": "{number}s",
|
||||
"relative_time.minutes": "{number}د",
|
||||
"relative_time.seconds": "{number}ثا",
|
||||
"reply_indicator.cancel": "إلغاء",
|
||||
"report.forward": "التحويل إلى {target}",
|
||||
"report.forward_hint": "هذا الحساب ينتمي إلى خادوم آخَر. هل تودّ إرسال نسخة مجهولة مِن التقرير إلى هنالك أيضًا؟",
|
||||
"report.hint": "سوف يتم إرسال التقرير إلى المُشرِفين على خادومكم. بإمكانكم الإدلاء بشرح عن سبب الإبلاغ عن الحساب أسفله:",
|
||||
"report.placeholder": "تعليقات إضافية",
|
||||
"report.submit": "إرسال",
|
||||
"report.target": "إبلاغ",
|
||||
"report.target": "ابلغ عن {target}",
|
||||
"search.placeholder": "ابحث",
|
||||
"search_popout.search_format": "نمط البحث المتقدم",
|
||||
"search_popout.tips.full_text": "النص البسيط يقوم بعرض المنشورات التي كتبتها أو قمت بإرسالها أو ترقيتها أو تمت الإشارة إليك فيها من طرف آخرين ، بالإضافة إلى مطابقة أسماء المستخدمين وأسماء العرض وعلامات التصنيف.",
|
||||
|
@ -317,11 +317,11 @@
|
|||
"search_results.total": "{count, number} {count, plural, one {result} و {results}}",
|
||||
"status.admin_account": "افتح الواجهة الإدارية لـ @{name}",
|
||||
"status.admin_status": "افتح هذا المنشور على واجهة الإشراف",
|
||||
"status.block": "Block @{name}",
|
||||
"status.block": "احجب @{name}",
|
||||
"status.cancel_reblog_private": "إلغاء الترقية",
|
||||
"status.cannot_reblog": "تعذرت ترقية هذا المنشور",
|
||||
"status.copy": "نسخ رابط المنشور",
|
||||
"status.delete": "إحذف",
|
||||
"status.delete": "احذف",
|
||||
"status.detailed_status": "تفاصيل المحادثة",
|
||||
"status.direct": "رسالة خاصة إلى @{name}",
|
||||
"status.embed": "إدماج",
|
||||
|
@ -344,31 +344,31 @@
|
|||
"status.redraft": "إزالة و إعادة الصياغة",
|
||||
"status.reply": "ردّ",
|
||||
"status.replyAll": "رُد على الخيط",
|
||||
"status.report": "إبلِغ عن @{name}",
|
||||
"status.report": "ابلِغ عن @{name}",
|
||||
"status.sensitive_warning": "محتوى حساس",
|
||||
"status.share": "مشاركة",
|
||||
"status.show_less": "إعرض أقلّ",
|
||||
"status.show_less": "اعرض أقلّ",
|
||||
"status.show_less_all": "طي الكل",
|
||||
"status.show_more": "أظهر المزيد",
|
||||
"status.show_more_all": "توسيع الكل",
|
||||
"status.show_thread": "الكشف عن المحادثة",
|
||||
"status.unmute_conversation": "فك الكتم عن المحادثة",
|
||||
"status.unpin": "فك التدبيس من الملف الشخصي",
|
||||
"suggestions.dismiss": "إلغاء الإقتراح",
|
||||
"suggestions.dismiss": "إلغاء الاقتراح",
|
||||
"suggestions.header": "يمكن أن يهمك…",
|
||||
"tabs_bar.federated_timeline": "الموحَّد",
|
||||
"tabs_bar.home": "الرئيسية",
|
||||
"tabs_bar.local_timeline": "المحلي",
|
||||
"tabs_bar.notifications": "الإخطارات",
|
||||
"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.minutes": "{number, plural, one {# minute} other {# minutes}} left",
|
||||
"time_remaining.moments": "Moments remaining",
|
||||
"time_remaining.moments": "لحظات متبقية",
|
||||
"time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left",
|
||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} آخرون {people}} يتحدثون",
|
||||
"ui.beforeunload": "سوف تفقد مسودتك إن تركت ماستدون.",
|
||||
"upload_area.title": "إسحب ثم أفلت للرفع",
|
||||
"upload_area.title": "اسحب ثم أفلت للرفع",
|
||||
"upload_button.label": "إضافة وسائط (JPEG، PNG، GIF، WebM، MP4، MOV)",
|
||||
"upload_error.limit": "لقد تم بلوغ الحد الأقصى المسموح به لإرسال الملفات.",
|
||||
"upload_error.poll": "لا يمكن إدراج ملفات في استطلاعات الرأي.",
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -295,7 +295,7 @@
|
|||
"relative_time.days": "{number} দিন",
|
||||
"relative_time.hours": "{number} ঘন্টা",
|
||||
"relative_time.just_now": "এখন",
|
||||
"relative_time.minutes": "{number} মাস",
|
||||
"relative_time.minutes": "{number}ম",
|
||||
"relative_time.seconds": "{number} সেকেন্ড",
|
||||
"reply_indicator.cancel": "বাতিল করতে",
|
||||
"report.forward": "এটা আরো পাঠান {target} তে",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"account.add_or_remove_from_list": "Afegir o Treure de les llistes",
|
||||
"account.badges.bot": "Bot",
|
||||
"account.block": "Bloca @{name}",
|
||||
"account.block": "Bloqueja @{name}",
|
||||
"account.block_domain": "Amaga-ho tot de {domain}",
|
||||
"account.blocked": "Bloquejat",
|
||||
"account.direct": "Missatge directe @{name}",
|
||||
|
@ -11,7 +11,7 @@
|
|||
"account.follow": "Segueix",
|
||||
"account.followers": "Seguidors",
|
||||
"account.followers.empty": "Encara ningú no segueix aquest usuari.",
|
||||
"account.follows": "Seguint",
|
||||
"account.follows": "Seguiments",
|
||||
"account.follows.empty": "Aquest usuari encara no segueix a ningú.",
|
||||
"account.follows_you": "Et segueix",
|
||||
"account.hide_reblogs": "Amaga els impulsos de @{name}",
|
||||
|
@ -44,7 +44,7 @@
|
|||
"bundle_modal_error.close": "Tanca",
|
||||
"bundle_modal_error.message": "S'ha produït un error en carregar aquest component.",
|
||||
"bundle_modal_error.retry": "Torna-ho a provar",
|
||||
"column.blocks": "Usuaris blocats",
|
||||
"column.blocks": "Usuaris bloquejats",
|
||||
"column.community": "Línia de temps local",
|
||||
"column.direct": "Missatges directes",
|
||||
"column.domain_blocks": "Dominis ocults",
|
||||
|
@ -54,7 +54,7 @@
|
|||
"column.lists": "Llistes",
|
||||
"column.mutes": "Usuaris silenciats",
|
||||
"column.notifications": "Notificacions",
|
||||
"column.pins": "Toot fixat",
|
||||
"column.pins": "Toots fixats",
|
||||
"column.public": "Línia de temps federada",
|
||||
"column_back_button.label": "Enrere",
|
||||
"column_header.hide_settings": "Amaga la configuració",
|
||||
|
@ -65,12 +65,12 @@
|
|||
"column_header.unpin": "No fixis",
|
||||
"column_subheading.settings": "Configuració",
|
||||
"community.column_settings.media_only": "Només multimèdia",
|
||||
"compose_form.direct_message_warning": "Aquest toot només serà enviat als usuaris esmentats. De totes maneres, els operadors de la teva o de qualsevol de les instàncies receptores poden inspeccionar aquest missatge.",
|
||||
"compose_form.direct_message_warning": "Aquest toot només serà enviat als usuaris esmentats.",
|
||||
"compose_form.direct_message_warning_learn_more": "Aprèn més",
|
||||
"compose_form.hashtag_warning": "Aquest toot no es mostrarà en cap etiqueta ja que no està llistat. Només els toots públics poden ser cercats per etiqueta.",
|
||||
"compose_form.lock_disclaimer": "El teu compte no està bloquejat {locked}. Tothom pot seguir-te i veure els teus missatges a seguidors.",
|
||||
"compose_form.lock_disclaimer.lock": "blocat",
|
||||
"compose_form.placeholder": "En què estàs pensant?",
|
||||
"compose_form.lock_disclaimer.lock": "bloquejat",
|
||||
"compose_form.placeholder": "En què penses?",
|
||||
"compose_form.poll.add_option": "Afegeix una opció",
|
||||
"compose_form.poll.duration": "Durada de l'enquesta",
|
||||
"compose_form.poll.option_placeholder": "Opció {number}",
|
||||
|
@ -84,11 +84,11 @@
|
|||
"compose_form.spoiler.unmarked": "Text no ocult",
|
||||
"compose_form.spoiler_placeholder": "Escriu l'avís aquí",
|
||||
"confirmation_modal.cancel": "Cancel·la",
|
||||
"confirmations.block.block_and_report": "Block & Report",
|
||||
"confirmations.block.confirm": "Bloca",
|
||||
"confirmations.block.block_and_report": "Bloquejar i informar",
|
||||
"confirmations.block.confirm": "Bloqueja",
|
||||
"confirmations.block.message": "Estàs segur que vols bloquejar a {name}?",
|
||||
"confirmations.delete.confirm": "Suprimeix",
|
||||
"confirmations.delete.message": "Estàs segur que vols suprimir aquest estat?",
|
||||
"confirmations.delete.message": "Estàs segur que vols suprimir aquest toot?",
|
||||
"confirmations.delete_list.confirm": "Suprimeix",
|
||||
"confirmations.delete_list.message": "Estàs segur que vols suprimir permanentment aquesta llista?",
|
||||
"confirmations.domain_block.confirm": "Amaga tot el domini",
|
||||
|
@ -96,12 +96,12 @@
|
|||
"confirmations.mute.confirm": "Silencia",
|
||||
"confirmations.mute.message": "Estàs segur que vols silenciar {name}?",
|
||||
"confirmations.redraft.confirm": "Esborrar i refer",
|
||||
"confirmations.redraft.message": "Estàs segur que vols esborrar aquesta publicació i tornar a redactar-la? Perderàs totes els impulsos i favorits, i les respostes a la publicació original es quedaran orfes.",
|
||||
"confirmations.redraft.message": "Estàs segur que vols esborrar aquest toot i tornar a redactar-lo? Perderàs totes els impulsos i favorits, i les respostes al toot original es quedaran orfes.",
|
||||
"confirmations.reply.confirm": "Respon",
|
||||
"confirmations.reply.message": "Responen ara es sobreescriurà el missatge que estàs editant. Estàs segur que vols continuar?",
|
||||
"confirmations.unfollow.confirm": "Deixa de seguir",
|
||||
"confirmations.unfollow.message": "Estàs segur que vols deixar de seguir {name}?",
|
||||
"embed.instructions": "Incrusta aquest estat al lloc web copiant el codi a continuació.",
|
||||
"embed.instructions": "Incrusta aquest toot al lloc web copiant el codi a continuació.",
|
||||
"embed.preview": "Aquí tenim quin aspecte tindrá:",
|
||||
"emoji_button.activity": "Activitat",
|
||||
"emoji_button.custom": "Personalitzat",
|
||||
|
@ -118,18 +118,18 @@
|
|||
"emoji_button.symbols": "Símbols",
|
||||
"emoji_button.travel": "Viatges i Llocs",
|
||||
"empty_column.account_timeline": "No hi ha toots aquí!",
|
||||
"empty_column.account_unavailable": "Profile unavailable",
|
||||
"empty_column.account_unavailable": "Perfil no disponible",
|
||||
"empty_column.blocks": "Encara no has bloquejat cap usuari.",
|
||||
"empty_column.community": "La línia de temps local és buida. Escriu alguna cosa públicament per fer rodar la pilota!",
|
||||
"empty_column.community": "La línia de temps local és buida. Escriu alguna cosa públicament per a fer rodar la pilota!",
|
||||
"empty_column.direct": "Encara no tens missatges directes. Quan enviïs o rebis un, es mostrarà aquí.",
|
||||
"empty_column.domain_blocks": "Encara no hi ha dominis ocults.",
|
||||
"empty_column.favourited_statuses": "Encara no tens cap toot favorit. Quan en tinguis, apareixerà aquí.",
|
||||
"empty_column.favourites": "Encara ningú ha marcat aquest toot com a favorit. Quan algú ho faci, apareixera aquí.",
|
||||
"empty_column.follow_requests": "Encara no teniu cap petició de seguiment. Quan rebeu una, apareixerà aquí.",
|
||||
"empty_column.follow_requests": "Encara no teniu cap petició de seguiment. Quan rebis una, apareixerà aquí.",
|
||||
"empty_column.hashtag": "Encara no hi ha res en aquesta etiqueta.",
|
||||
"empty_column.home": "Encara no segueixes ningú. Visita {public} o fes cerca per començar i conèixer altres usuaris.",
|
||||
"empty_column.home.public_timeline": "la línia de temps pública",
|
||||
"empty_column.list": "Encara no hi ha res en aquesta llista. Quan els membres d'aquesta llista publiquin nous estats, apareixeran aquí.",
|
||||
"empty_column.list": "Encara no hi ha res en aquesta llista. Quan els membres d'aquesta llista publiquin nous toots, apareixeran aquí.",
|
||||
"empty_column.lists": "Encara no tens cap llista. Quan en facis una, apareixerà aquí.",
|
||||
"empty_column.mutes": "Encara no has silenciat cap usuari.",
|
||||
"empty_column.notifications": "Encara no tens notificacions. Interactua amb altres per iniciar la conversa.",
|
||||
|
@ -179,30 +179,30 @@
|
|||
"keyboard_shortcuts.back": "navegar enrera",
|
||||
"keyboard_shortcuts.blocked": "per obrir la llista d'usuaris bloquejats",
|
||||
"keyboard_shortcuts.boost": "impulsar",
|
||||
"keyboard_shortcuts.column": "per centrar un estat en una de les columnes",
|
||||
"keyboard_shortcuts.column": "per a centrar un toot en una de les columnes",
|
||||
"keyboard_shortcuts.compose": "per centrar l'area de composició de text",
|
||||
"keyboard_shortcuts.description": "Descripció",
|
||||
"keyboard_shortcuts.direct": "per obrir la columna de missatges directes",
|
||||
"keyboard_shortcuts.down": "per baixar en la llista",
|
||||
"keyboard_shortcuts.enter": "ampliar estat",
|
||||
"keyboard_shortcuts.enter": "ampliar el toot",
|
||||
"keyboard_shortcuts.favourite": "afavorir",
|
||||
"keyboard_shortcuts.favourites": "per obrir la llista de favorits",
|
||||
"keyboard_shortcuts.federated": "per obrir la línia de temps federada",
|
||||
"keyboard_shortcuts.heading": "Dreçeres de teclat",
|
||||
"keyboard_shortcuts.home": "per obrir la línia de temps Inici",
|
||||
"keyboard_shortcuts.home": "per a obrir la línia de temps Inici",
|
||||
"keyboard_shortcuts.hotkey": "Tecla d'accés directe",
|
||||
"keyboard_shortcuts.legend": "per a mostrar aquesta llegenda",
|
||||
"keyboard_shortcuts.local": "per obrir la línia de temps local",
|
||||
"keyboard_shortcuts.mention": "per esmentar l'autor",
|
||||
"keyboard_shortcuts.muted": "per obrir la llista d'usuaris silenciats",
|
||||
"keyboard_shortcuts.my_profile": "per obrir el teu perfil",
|
||||
"keyboard_shortcuts.notifications": "per obrir la columna de notificacions",
|
||||
"keyboard_shortcuts.pinned": "per obrir la llista de toots fixats",
|
||||
"keyboard_shortcuts.profile": "per obrir el perfil de l'autor",
|
||||
"keyboard_shortcuts.local": "per a obrir la línia de temps local",
|
||||
"keyboard_shortcuts.mention": "per a esmentar l'autor",
|
||||
"keyboard_shortcuts.muted": "per a obrir la llista d'usuaris silenciats",
|
||||
"keyboard_shortcuts.my_profile": "per a obrir el teu perfil",
|
||||
"keyboard_shortcuts.notifications": "per a obrir la columna de notificacions",
|
||||
"keyboard_shortcuts.pinned": "per a obrir la llista de toots fixats",
|
||||
"keyboard_shortcuts.profile": "per a obrir el perfil de l'autor",
|
||||
"keyboard_shortcuts.reply": "respondre",
|
||||
"keyboard_shortcuts.requests": "per obrir la llista de sol·licituds de seguiment",
|
||||
"keyboard_shortcuts.search": "per centrar la cerca",
|
||||
"keyboard_shortcuts.start": "per obrir la columna \"Començar\"",
|
||||
"keyboard_shortcuts.requests": "per a obrir la llista de sol·licituds de seguiment",
|
||||
"keyboard_shortcuts.search": "per a centrar la cerca",
|
||||
"keyboard_shortcuts.start": "per a obrir la columna \"Començar\"",
|
||||
"keyboard_shortcuts.toggle_hidden": "per a mostrar/amagar text sota CW",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "per a mostrar/amagar mèdia",
|
||||
"keyboard_shortcuts.toot": "per a començar un toot nou de trinca",
|
||||
|
@ -214,7 +214,7 @@
|
|||
"lightbox.view_context": "Veure el context",
|
||||
"lists.account.add": "Afegir a la llista",
|
||||
"lists.account.remove": "Treure de la llista",
|
||||
"lists.delete": "Delete list",
|
||||
"lists.delete": "Esborrar llista",
|
||||
"lists.edit": "Editar llista",
|
||||
"lists.edit.submit": "Canvi de títol",
|
||||
"lists.new.create": "Afegir llista",
|
||||
|
@ -226,7 +226,7 @@
|
|||
"missing_indicator.label": "No trobat",
|
||||
"missing_indicator.sublabel": "Aquest recurs no pot ser trobat",
|
||||
"mute_modal.hide_notifications": "Amagar notificacions d'aquest usuari?",
|
||||
"navigation_bar.apps": "Apps Mòbils",
|
||||
"navigation_bar.apps": "Apps mòbils",
|
||||
"navigation_bar.blocks": "Usuaris bloquejats",
|
||||
"navigation_bar.community_timeline": "Línia de temps Local",
|
||||
"navigation_bar.compose": "Redacta nou toot",
|
||||
|
@ -246,7 +246,7 @@
|
|||
"navigation_bar.personal": "Personal",
|
||||
"navigation_bar.pins": "Toots fixats",
|
||||
"navigation_bar.preferences": "Preferències",
|
||||
"navigation_bar.profile_directory": "Profile directory",
|
||||
"navigation_bar.profile_directory": "Directori de perfils",
|
||||
"navigation_bar.public_timeline": "Línia de temps federada",
|
||||
"navigation_bar.security": "Seguretat",
|
||||
"notification.favourite": "{name} ha afavorit el teu estat",
|
||||
|
@ -303,24 +303,24 @@
|
|||
"report.hint": "El informe s'enviarà als moderadors del teu servidor. Pots explicar perquè vols informar d'aquest compte aquí:",
|
||||
"report.placeholder": "Comentaris addicionals",
|
||||
"report.submit": "Enviar",
|
||||
"report.target": "Informes",
|
||||
"report.target": "Informes {target}",
|
||||
"search.placeholder": "Cercar",
|
||||
"search_popout.search_format": "Format de cerca avançada",
|
||||
"search_popout.tips.full_text": "Text simple recupera publicacions que has escrit, les marcades com a favorites, les impulsades o en les que has estat esmentat, així com usuaris, noms d'usuari i etiquetes.",
|
||||
"search_popout.tips.hashtag": "etiqueta",
|
||||
"search_popout.tips.status": "status",
|
||||
"search_popout.tips.status": "estat",
|
||||
"search_popout.tips.text": "El text simple retorna coincidències amb els noms de visualització, els noms d'usuari i les etiquetes",
|
||||
"search_popout.tips.user": "usuari",
|
||||
"search_results.accounts": "Gent",
|
||||
"search_results.hashtags": "Etiquetes",
|
||||
"search_results.statuses": "Toots",
|
||||
"search_results.total": "{count, number} {count, plural, un {result} altres {results}}",
|
||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||
"status.admin_account": "Obre l'interfície de moderació per a @{name}",
|
||||
"status.admin_status": "Obre aquest estat a la interfície de moderació",
|
||||
"status.admin_status": "Obre aquest toot a la interfície de moderació",
|
||||
"status.block": "Bloqueja @{name}",
|
||||
"status.cancel_reblog_private": "Desfer l'impuls",
|
||||
"status.cannot_reblog": "Aquesta publicació no pot ser impulsada",
|
||||
"status.copy": "Copia l'enllaç a l'estat",
|
||||
"status.copy": "Copia l'enllaç al toot",
|
||||
"status.delete": "Esborrar",
|
||||
"status.detailed_status": "Visualització detallada de la conversa",
|
||||
"status.direct": "Missatge directe @{name}",
|
||||
|
@ -366,12 +366,12 @@
|
|||
"time_remaining.minutes": "{number, plural, one {# minut} other {# minuts}} restants",
|
||||
"time_remaining.moments": "Moments restants",
|
||||
"time_remaining.seconds": "{number, plural, one {# segon} other {# segons}} restants",
|
||||
"trends.count_by_accounts": "{count} {rawCount, plural, una {person} altres {people}} parlant",
|
||||
"ui.beforeunload": "El vostre esborrany es perdrà si sortiu de Mastodon.",
|
||||
"upload_area.title": "Arrossega i deixa anar per carregar",
|
||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
|
||||
"ui.beforeunload": "El teu esborrany es perdrà si surts de Mastodon.",
|
||||
"upload_area.title": "Arrossega i deixa anar per a carregar",
|
||||
"upload_button.label": "Afegir multimèdia (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||
"upload_error.limit": "S'ha superat el límit de càrrega d'arxius.",
|
||||
"upload_error.poll": "No es permet l'enviament de fitxers amb les enquestes.",
|
||||
"upload_error.poll": "No es permet l'enviament de fitxers en les enquestes.",
|
||||
"upload_form.description": "Descriure els problemes visuals",
|
||||
"upload_form.focus": "Modificar la previsualització",
|
||||
"upload_form.undo": "Esborra",
|
||||
|
|
|
@ -292,8 +292,8 @@
|
|||
"privacy.unlisted.short": "Micca listatu",
|
||||
"regeneration_indicator.label": "Caricamentu…",
|
||||
"regeneration_indicator.sublabel": "Priparazione di a vostra pagina d'accolta!",
|
||||
"relative_time.days": "{number}d",
|
||||
"relative_time.hours": "{number}h",
|
||||
"relative_time.days": "{number}ghj",
|
||||
"relative_time.hours": "{number}o",
|
||||
"relative_time.just_now": "avà",
|
||||
"relative_time.minutes": "{number}m",
|
||||
"relative_time.seconds": "{number}s",
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
"bundle_modal_error.message": "Aeth rhywbeth o'i le tra'n llwytho'r elfen hon.",
|
||||
"bundle_modal_error.retry": "Ceiswich eto",
|
||||
"column.blocks": "Defnyddwyr a flociwyd",
|
||||
"column.community": "Llinell amser lleol",
|
||||
"column.community": "Ffrwd lleol",
|
||||
"column.direct": "Negeseuon preifat",
|
||||
"column.domain_blocks": "Parthau cuddiedig",
|
||||
"column.favourites": "Ffefrynnau",
|
||||
|
@ -71,20 +71,20 @@
|
|||
"compose_form.lock_disclaimer": "Nid yw eich cyfri wedi'i {locked}. Gall unrhyw un eich dilyn i weld eich tŵtiau dilynwyr-yn-unig.",
|
||||
"compose_form.lock_disclaimer.lock": "wedi ei gloi",
|
||||
"compose_form.placeholder": "Beth sydd ar eich meddwl?",
|
||||
"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.add_option": "Ychwanegu Dewisiad",
|
||||
"compose_form.poll.duration": "Cyfnod pleidlais",
|
||||
"compose_form.poll.option_placeholder": "Dewisiad {number}",
|
||||
"compose_form.poll.remove_option": "Tynnu'r dewisiad",
|
||||
"compose_form.publish": "Tŵt",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"compose_form.sensitive.hide": "Mark media as sensitive",
|
||||
"compose_form.sensitive.hide": "Marcio cyfryngau fel eu bod yn sensitif",
|
||||
"compose_form.sensitive.marked": "Cyfryngau wedi'u marcio'n sensitif",
|
||||
"compose_form.sensitive.unmarked": "Nid yw'r cyfryngau wedi'u marcio'n sensitif",
|
||||
"compose_form.spoiler.marked": "Testun wedi ei guddio gan rybudd",
|
||||
"compose_form.spoiler.unmarked": "Nid yw'r testun wedi ei guddio",
|
||||
"compose_form.spoiler_placeholder": "Ysgrifenwch eich rhybudd yma",
|
||||
"confirmation_modal.cancel": "Canslo",
|
||||
"confirmations.block.block_and_report": "Block & Report",
|
||||
"confirmations.block.block_and_report": "Rhwystro ac Adrodd",
|
||||
"confirmations.block.confirm": "Blocio",
|
||||
"confirmations.block.message": "Ydych chi'n sicr eich bod eisiau blocio {name}?",
|
||||
"confirmations.delete.confirm": "Dileu",
|
||||
|
@ -109,7 +109,7 @@
|
|||
"emoji_button.food": "Bwyd a Diod",
|
||||
"emoji_button.label": "Mewnosodwch emoji",
|
||||
"emoji_button.nature": "Natur",
|
||||
"emoji_button.not_found": "Dim emojo!! (╯°□°)╯︵ ┻━┻",
|
||||
"emoji_button.not_found": "Dim emojau!! (╯°□°)╯︵ ┻━┻",
|
||||
"emoji_button.objects": "Gwrthrychau",
|
||||
"emoji_button.people": "Pobl",
|
||||
"emoji_button.recent": "Defnyddir yn aml",
|
||||
|
@ -117,8 +117,8 @@
|
|||
"emoji_button.search_results": "Canlyniadau chwilio",
|
||||
"emoji_button.symbols": "Symbolau",
|
||||
"emoji_button.travel": "Teithio & Llefydd",
|
||||
"empty_column.account_timeline": "No toots here!",
|
||||
"empty_column.account_unavailable": "Profile unavailable",
|
||||
"empty_column.account_timeline": "Dim tŵtiau fama!",
|
||||
"empty_column.account_unavailable": "Proffil ddim ar gael",
|
||||
"empty_column.blocks": "Nid ydych wedi blocio unrhyw ddefnyddwyr eto.",
|
||||
"empty_column.community": "Mae'r ffrwd lleol yn wag. Ysgrifenwch rhywbeth yn gyhoeddus i gael dechrau arni!",
|
||||
"empty_column.direct": "Nid oes gennych unrhyw negeseuon preifat eto. Pan y byddwch yn anfon neu derbyn un, mi fydd yn ymddangos yma.",
|
||||
|
@ -147,8 +147,8 @@
|
|||
"hashtag.column_header.tag_mode.all": "a {additional}",
|
||||
"hashtag.column_header.tag_mode.any": "neu {additional}",
|
||||
"hashtag.column_header.tag_mode.none": "heb {additional}",
|
||||
"hashtag.column_settings.select.no_options_message": "No suggestions found",
|
||||
"hashtag.column_settings.select.placeholder": "Enter hashtags…",
|
||||
"hashtag.column_settings.select.no_options_message": "Dim awgrymiadau i'w weld",
|
||||
"hashtag.column_settings.select.placeholder": "Mewnbynnu hashnodau…",
|
||||
"hashtag.column_settings.tag_mode.all": "Pob un o'r rhain",
|
||||
"hashtag.column_settings.tag_mode.any": "Unrhyw un o'r rhain",
|
||||
"hashtag.column_settings.tag_mode.none": "Dim o'r rhain",
|
||||
|
@ -156,26 +156,26 @@
|
|||
"home.column_settings.basic": "Syml",
|
||||
"home.column_settings.show_reblogs": "Dangos bŵstiau",
|
||||
"home.column_settings.show_replies": "Dangos ymatebion",
|
||||
"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}}",
|
||||
"intervals.full.days": "{number, plural, one {# ddydd} other {# o ddyddiau}}",
|
||||
"intervals.full.hours": "{number, plural, one {# awr} other {# o oriau}}",
|
||||
"intervals.full.minutes": "{number, plural, one {# funud} other {# o funudau}}",
|
||||
"introduction.federation.action": "Nesaf",
|
||||
"introduction.federation.federated.headline": "Ffederasiwn",
|
||||
"introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.",
|
||||
"introduction.federation.home.headline": "Home",
|
||||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.federation.federated.text": "Bydd pyst cyhoeddus o gweinyddion arall yn y Ffedysawd yn cael ai arddangos yn ffrwd y ffederasiwn.",
|
||||
"introduction.federation.home.headline": "Hafan",
|
||||
"introduction.federation.home.text": "Bydd pyst o bobl rydych yn ei ddilyn yn dangos yn eich ffrwd gatref. Gallwch dilyn unrhyw un ar unrhyw gweinydd!",
|
||||
"introduction.federation.local.headline": "Lleol",
|
||||
"introduction.federation.local.text": "Bydd pyst gyhoeddus o bobl ar yr un gweinydd a chi yn cael ei arddangos yn y ffrwd lleol.",
|
||||
"introduction.interactions.action": "Gorffen tiwtorial!",
|
||||
"introduction.interactions.favourite.headline": "Ffefryn",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.favourite.text": "Gallwch cadw tŵt am hwyrach, a gadael i'r awdur gwybod roeddech yn ei hoffi, trwy ei hoffi.",
|
||||
"introduction.interactions.reblog.headline": "Hwb",
|
||||
"introduction.interactions.reblog.text": "You can share other people's toots with your followers by boosting them.",
|
||||
"introduction.interactions.reblog.text": "Gallwch rhannu tŵtiau pobl eraill gyda'ch dilynwyr trwy eu bŵstio.",
|
||||
"introduction.interactions.reply.headline": "Ateb",
|
||||
"introduction.interactions.reply.text": "You can reply to other people's and your own toots, which will chain them together in a conversation.",
|
||||
"introduction.interactions.reply.text": "Gallwch ateb i dŵtiau pobl eraill a thŵtiau eich hun, a fydd yn eu cadwyno at ei gilydd mewn sgwrs.",
|
||||
"introduction.welcome.action": "Awn ni!",
|
||||
"introduction.welcome.headline": "Camau cyntaf",
|
||||
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
|
||||
"introduction.welcome.text": "Croeso i'r ffedysawd! Mewn ychydig o funudau, byddwch yn gallu darlledu negeseuon a siarad i'ch ffrindiau ar draws amrywiaeth eang o weinyddion. Ond mae'r gweinydd hyn, {domain}, yn arbennig - mae o'n gweinyddu eich proffil, fellu cofiwch ei enw.",
|
||||
"keyboard_shortcuts.back": "i lywio nôl",
|
||||
"keyboard_shortcuts.blocked": "i agor rhestr defnyddwyr a flociwyd",
|
||||
"keyboard_shortcuts.boost": "i fŵstio",
|
||||
|
@ -190,7 +190,7 @@
|
|||
"keyboard_shortcuts.federated": "i agor ffrwd y ffederasiwn",
|
||||
"keyboard_shortcuts.heading": "Llwybrau byr allweddell",
|
||||
"keyboard_shortcuts.home": "i agor ffrwd cartref",
|
||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||
"keyboard_shortcuts.hotkey": "Bysell brys",
|
||||
"keyboard_shortcuts.legend": "i ddangos yr arwr yma",
|
||||
"keyboard_shortcuts.local": "i agor ffrwd lleol",
|
||||
"keyboard_shortcuts.mention": "i grybwyll yr awdur",
|
||||
|
@ -204,19 +204,19 @@
|
|||
"keyboard_shortcuts.search": "i ffocysu chwilio",
|
||||
"keyboard_shortcuts.start": "i agor colofn \"dechrau arni\"",
|
||||
"keyboard_shortcuts.toggle_hidden": "i ddangos/cuddio testun tu ôl i CW",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "i ddangos/gyddio cyfryngau",
|
||||
"keyboard_shortcuts.toot": "i ddechrau tŵt newydd sbon",
|
||||
"keyboard_shortcuts.unfocus": "i ddad-ffocysu ardal cyfansoddi testun/chwilio",
|
||||
"keyboard_shortcuts.up": "i symud yn uwch yn y rhestr",
|
||||
"lightbox.close": "Cau",
|
||||
"lightbox.next": "Nesaf",
|
||||
"lightbox.previous": "Blaenorol",
|
||||
"lightbox.view_context": "View context",
|
||||
"lightbox.view_context": "Gweld cyd-destyn",
|
||||
"lists.account.add": "Ychwanegwch at restr",
|
||||
"lists.account.remove": "Dileu o'r rhestr",
|
||||
"lists.delete": "Dileu rhestr",
|
||||
"lists.edit": "Golygwch rhestr",
|
||||
"lists.edit.submit": "Change title",
|
||||
"lists.edit.submit": "Newid teitl",
|
||||
"lists.new.create": "Ychwanegu rhestr",
|
||||
"lists.new.title_placeholder": "Teitl rhestr newydd",
|
||||
"lists.search": "Chwilio ymysg pobl yr ydych yn ei ddilyn",
|
||||
|
@ -237,7 +237,7 @@
|
|||
"navigation_bar.favourites": "Ffefrynnau",
|
||||
"navigation_bar.filters": "Geiriau a dawelwyd",
|
||||
"navigation_bar.follow_requests": "Ceisiadau dilyn",
|
||||
"navigation_bar.follows_and_followers": "Follows and followers",
|
||||
"navigation_bar.follows_and_followers": "Dilynion a ddilynwyr",
|
||||
"navigation_bar.info": "Ynghylch yr achos hwn",
|
||||
"navigation_bar.keyboard_shortcuts": "Bysellau brys",
|
||||
"navigation_bar.lists": "Rhestrau",
|
||||
|
@ -246,13 +246,13 @@
|
|||
"navigation_bar.personal": "Personol",
|
||||
"navigation_bar.pins": "Tŵtiau wedi eu pinio",
|
||||
"navigation_bar.preferences": "Dewisiadau",
|
||||
"navigation_bar.profile_directory": "Profile directory",
|
||||
"navigation_bar.profile_directory": "Cyfeiriadur Proffil",
|
||||
"navigation_bar.public_timeline": "Ffrwd y ffederasiwn",
|
||||
"navigation_bar.security": "Diogelwch",
|
||||
"notification.favourite": "hoffodd {name} eich tŵt",
|
||||
"notification.follow": "dilynodd {name} chi",
|
||||
"notification.mention": "Soniodd {name} amdanoch chi",
|
||||
"notification.poll": "A poll you have voted in has ended",
|
||||
"notification.poll": "Mae pleidlais rydych wedi pleidleisio ynddi wedi dod i ben",
|
||||
"notification.reblog": "Hysbysebodd {name} eich tŵt",
|
||||
"notifications.clear": "Clirio hysbysiadau",
|
||||
"notifications.clear_confirmation": "Ydych chi'n sicr eich bod am glirio'ch holl hysbysiadau am byth?",
|
||||
|
@ -263,7 +263,7 @@
|
|||
"notifications.column_settings.filter_bar.show": "Dangos",
|
||||
"notifications.column_settings.follow": "Dilynwyr newydd:",
|
||||
"notifications.column_settings.mention": "Crybwylliadau:",
|
||||
"notifications.column_settings.poll": "Poll results:",
|
||||
"notifications.column_settings.poll": "Canlyniadau pleidlais:",
|
||||
"notifications.column_settings.push": "Hysbysiadau push",
|
||||
"notifications.column_settings.reblog": "Hybiadau:",
|
||||
"notifications.column_settings.show": "Dangos yn y golofn",
|
||||
|
@ -273,14 +273,14 @@
|
|||
"notifications.filter.favourites": "Ffefrynnau",
|
||||
"notifications.filter.follows": "Yn dilyn",
|
||||
"notifications.filter.mentions": "Crybwylliadau",
|
||||
"notifications.filter.polls": "Poll results",
|
||||
"notifications.filter.polls": "Canlyniadau pleidlais",
|
||||
"notifications.group": "{count} o hysbysiadau",
|
||||
"poll.closed": "Closed",
|
||||
"poll.refresh": "Refresh",
|
||||
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
|
||||
"poll.vote": "Vote",
|
||||
"poll_button.add_poll": "Add a poll",
|
||||
"poll_button.remove_poll": "Remove poll",
|
||||
"poll.closed": "Ar gau",
|
||||
"poll.refresh": "Adnewyddu",
|
||||
"poll.total_votes": "{count, plural, one {# bleidlais} other {# o bleidleisiau}}",
|
||||
"poll.vote": "Pleidleisio",
|
||||
"poll_button.add_poll": "Ychwanegu pleidlais",
|
||||
"poll_button.remove_poll": "Tynnu pleidlais",
|
||||
"privacy.change": "Addasu preifatrwdd y tŵt",
|
||||
"privacy.direct.long": "Cyhoeddi i'r defnyddwyr sy'n cael eu crybwyll yn unig",
|
||||
"privacy.direct.short": "Uniongyrchol",
|
||||
|
@ -292,11 +292,11 @@
|
|||
"privacy.unlisted.short": "Heb ei restru",
|
||||
"regeneration_indicator.label": "Llwytho…",
|
||||
"regeneration_indicator.sublabel": "Mae eich ffrwd cartref yn cael ei baratoi!",
|
||||
"relative_time.days": "{number}d",
|
||||
"relative_time.hours": "{number}h",
|
||||
"relative_time.days": "{number}dydd",
|
||||
"relative_time.hours": "{number}awr",
|
||||
"relative_time.just_now": "nawr",
|
||||
"relative_time.minutes": "{number}m",
|
||||
"relative_time.seconds": "{number}s",
|
||||
"relative_time.minutes": "{number}munud",
|
||||
"relative_time.seconds": "{number}eiliad",
|
||||
"reply_indicator.cancel": "Canslo",
|
||||
"report.forward": "Ymlaen i {target}",
|
||||
"report.forward_hint": "Mae'r cyfrif o weinydd arall. Anfon copi anhysbys o'r adroddiad yno hefyd?",
|
||||
|
@ -314,13 +314,13 @@
|
|||
"search_results.accounts": "Pobl",
|
||||
"search_results.hashtags": "Hanshnodau",
|
||||
"search_results.statuses": "Tŵtiau",
|
||||
"search_results.total": "{count, number} {count, plural, one {result} arall {results}}",
|
||||
"status.admin_account": "Open moderation interface for @{name}",
|
||||
"status.admin_status": "Open this tŵt in the moderation interface",
|
||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||
"status.admin_account": "Agor rhyngwyneb goruwchwylio ar gyfer @{name}",
|
||||
"status.admin_status": "Agor y tŵt yn y rhyngwyneb goruwchwylio",
|
||||
"status.block": "Blocio @{name}",
|
||||
"status.cancel_reblog_private": "Dadfŵstio",
|
||||
"status.cannot_reblog": "Ni ellir sbarduno'r tŵt hwn",
|
||||
"status.copy": "Copy link to status",
|
||||
"status.copy": "Copïo cysylltiad i'r tŵt",
|
||||
"status.delete": "Dileu",
|
||||
"status.detailed_status": "Golwg manwl o'r sgwrs",
|
||||
"status.direct": "Neges breifat @{name}",
|
||||
|
@ -361,17 +361,17 @@
|
|||
"tabs_bar.local_timeline": "Lleol",
|
||||
"tabs_bar.notifications": "Hysbysiadau",
|
||||
"tabs_bar.search": "Chwilio",
|
||||
"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",
|
||||
"time_remaining.days": "{number, plural, one {# ddydd} other {# o ddyddiau}} ar ôl",
|
||||
"time_remaining.hours": "{number, plural, one {# awr} other {# o oriau}} ar ôl",
|
||||
"time_remaining.minutes": "{number, plural, one {# funud} other {# o funudau}} ar ôl",
|
||||
"time_remaining.moments": "Munudau ar ôl",
|
||||
"time_remaining.seconds": "{number, plural, one {# eiliad} other {# o eiliadau}} ar ôl",
|
||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} yn siarad",
|
||||
"ui.beforeunload": "Mi fyddwch yn colli eich drafft os gadewch Mastodon.",
|
||||
"upload_area.title": "Llusgwch & gollwing i uwchlwytho",
|
||||
"upload_button.label": "Ychwanegwch gyfryngau (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||
"upload_error.limit": "File upload limit exceeded.",
|
||||
"upload_error.poll": "File upload not allowed with polls.",
|
||||
"upload_error.limit": "Wedi mynd heibio'r uchafswm terfyn uwchlwytho.",
|
||||
"upload_error.poll": "Nid oes modd uwchlwytho ffeiliau â phleidleisiau.",
|
||||
"upload_form.description": "Disgrifio i'r rheini a nam ar ei golwg",
|
||||
"upload_form.focus": "Newid rhagolwg",
|
||||
"upload_form.undo": "Dileu",
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"account.edit_profile": "Profil bearbeiten",
|
||||
"account.endorse": "Auf Profil hervorheben",
|
||||
"account.follow": "Folgen",
|
||||
"account.followers": "Folgende",
|
||||
"account.followers": "Folger_innen",
|
||||
"account.followers.empty": "Diesem Profil folgt noch niemand.",
|
||||
"account.follows": "Folgt",
|
||||
"account.follows.empty": "Dieses Profil folgt noch niemandem.",
|
||||
|
@ -37,7 +37,7 @@
|
|||
"account.unmute_notifications": "Benachrichtigungen von @{name} einschalten",
|
||||
"alert.unexpected.message": "Ein unerwarteter Fehler ist aufgetreten.",
|
||||
"alert.unexpected.title": "Hoppla!",
|
||||
"boost_modal.combo": "Du kannst {combo} drücken, um dies beim nächsten Mal zu überspringen",
|
||||
"boost_modal.combo": "Drücke {combo}, um dieses Fenster zu überspringen",
|
||||
"bundle_column_error.body": "Etwas ist beim Laden schiefgelaufen.",
|
||||
"bundle_column_error.retry": "Erneut versuchen",
|
||||
"bundle_column_error.title": "Netzwerkfehler",
|
||||
|
@ -55,7 +55,7 @@
|
|||
"column.mutes": "Stummgeschaltete Profile",
|
||||
"column.notifications": "Mitteilungen",
|
||||
"column.pins": "Angeheftete Beiträge",
|
||||
"column.public": "Gesamtes bekanntes Netz",
|
||||
"column.public": "Föderierte Zeitleiste",
|
||||
"column_back_button.label": "Zurück",
|
||||
"column_header.hide_settings": "Einstellungen verbergen",
|
||||
"column_header.moveLeft_settings": "Spalte nach links verschieben",
|
||||
|
@ -67,14 +67,14 @@
|
|||
"community.column_settings.media_only": "Nur Medien",
|
||||
"compose_form.direct_message_warning": "Dieser Beitrag wird nur für die erwähnten Nutzer sichtbar sein.",
|
||||
"compose_form.direct_message_warning_learn_more": "Mehr erfahren",
|
||||
"compose_form.hashtag_warning": "Dieser Beitrag wird nicht unter einen dieser Hashtags sichtbar sein, solange er ungelistet ist. Bei einer Suche kann er nicht gefunden werden.",
|
||||
"compose_form.hashtag_warning": "Dieser Beitrag wird nicht durch Hashtags entdeckbar sein, weil er ungelistet ist. Nur öffentliche Beiträge tauchen in Hashtag-Zeitleisten auf.",
|
||||
"compose_form.lock_disclaimer": "Dein Profil ist nicht {locked}. Wer dir folgen will, kann das jederzeit tun und dann auch deine privaten Beiträge sehen.",
|
||||
"compose_form.lock_disclaimer.lock": "gesperrt",
|
||||
"compose_form.placeholder": "Was gibt's Neues?",
|
||||
"compose_form.poll.add_option": "Eine Auswahl hinzufügen",
|
||||
"compose_form.poll.add_option": "Eine Wahl hinzufügen",
|
||||
"compose_form.poll.duration": "Umfragedauer",
|
||||
"compose_form.poll.option_placeholder": "Auswahl {number}",
|
||||
"compose_form.poll.remove_option": "Auswahl entfernen",
|
||||
"compose_form.poll.option_placeholder": "Wahl {number}",
|
||||
"compose_form.poll.remove_option": "Wahl entfernen",
|
||||
"compose_form.publish": "Tröt",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"compose_form.sensitive.hide": "Medien als heikel markieren",
|
||||
|
@ -92,11 +92,11 @@
|
|||
"confirmations.delete_list.confirm": "Löschen",
|
||||
"confirmations.delete_list.message": "Bist du dir sicher, dass du diese Liste permanent löschen möchtest?",
|
||||
"confirmations.domain_block.confirm": "Die ganze Domain verbergen",
|
||||
"confirmations.domain_block.message": "Bist du dir wirklich sicher, dass du die ganze Domain {domain} blockieren willst? In den meisten Fällen reichen ein paar gezielte Blockierungen oder Stummschaltungen aus. Du wirst den Inhalt von dieser Domain nicht in irgendwelchen öffentlichen Timelines oder den Benachrichtigungen finden. Deine Follower von dieser Domain werden entfernt.",
|
||||
"confirmations.domain_block.message": "Bist du dir wirklich sicher, dass du die ganze Domain {domain} blockieren willst? In den meisten Fällen reichen ein paar gezielte Blockierungen oder Stummschaltungen aus. Nach der Blockierung wirst du nichts mehr von dieser Domain in öffentlichen Zeitleisten oder Benachrichtigungen sehen. Deine Folger_innen von dieser Domain werden auch entfernt.",
|
||||
"confirmations.mute.confirm": "Stummschalten",
|
||||
"confirmations.mute.message": "Bist du dir sicher, dass du {name} stummschalten möchtest?",
|
||||
"confirmations.redraft.confirm": "Löschen und neu erstellen",
|
||||
"confirmations.redraft.message": "Bist du dir sicher, dass du diesen Beitrag löschen und neu machen möchtest? Favoriten und Boosts werden verloren gehen und Antworten zu diesem Beitrag werden verwaist sein.",
|
||||
"confirmations.redraft.message": "Bist du dir sicher, dass du diesen Beitrag löschen und neu erstellen möchtest? Favorisierungen, geteilte Beiträge und Antworten werden verloren gehen.",
|
||||
"confirmations.reply.confirm": "Antworten",
|
||||
"confirmations.reply.message": "Wenn du jetzt antwortest wird es die gesamte Nachricht verwerfen, die du gerade schreibst. Möchtest du wirklich fortfahren?",
|
||||
"confirmations.unfollow.confirm": "Entfolgen",
|
||||
|
@ -150,9 +150,9 @@
|
|||
"hashtag.column_settings.select.no_options_message": "Keine Vorschläge gefunden",
|
||||
"hashtag.column_settings.select.placeholder": "Hashtags eintragen…",
|
||||
"hashtag.column_settings.tag_mode.all": "All diese",
|
||||
"hashtag.column_settings.tag_mode.any": "Eine von diesen",
|
||||
"hashtag.column_settings.tag_mode.none": "Keine von diesen",
|
||||
"hashtag.column_settings.tag_toggle": "Zusätzliche Tags für diese Spalte einfügen",
|
||||
"hashtag.column_settings.tag_mode.any": "Eins von diesen",
|
||||
"hashtag.column_settings.tag_mode.none": "Keins von diesen",
|
||||
"hashtag.column_settings.tag_toggle": "Zusätzliche Hashtags für diese Spalte einfügen",
|
||||
"home.column_settings.basic": "Einfach",
|
||||
"home.column_settings.show_reblogs": "Geteilte Beiträge anzeigen",
|
||||
"home.column_settings.show_replies": "Antworten anzeigen",
|
||||
|
@ -161,33 +161,33 @@
|
|||
"intervals.full.minutes": "{number, plural, one {# Minute} other {# Minuten}}",
|
||||
"introduction.federation.action": "Weiter",
|
||||
"introduction.federation.federated.headline": "Föderiert",
|
||||
"introduction.federation.federated.text": "Öffentliche Beiträge von anderen Servern im Fediverse erscheinen in der föderierten Zeitleiste.",
|
||||
"introduction.federation.federated.text": "Öffentliche Beiträge von anderen Servern im Fediversum erscheinen in der föderierten Zeitleiste.",
|
||||
"introduction.federation.home.headline": "Startseite",
|
||||
"introduction.federation.home.text": "Beiträge von Leuten, denen du folgst, erscheinen in deiner Start-Zeitleiste. Du kannst Menschen auf beliebigen Servern folgen!",
|
||||
"introduction.federation.home.text": "Beiträge von Leuten, denen du folgst, erscheinen auf deiner Startseite. Du kannst Menschen auf beliebigen Servern folgen!",
|
||||
"introduction.federation.local.headline": "Lokal",
|
||||
"introduction.federation.local.text": "Öffentliche Beiträge von Leuten auf demselben Server wie du erscheinen in der lokalen Zeitleiste.",
|
||||
"introduction.interactions.action": "Tutorial beenden!",
|
||||
"introduction.interactions.favourite.headline": "Favorisieren",
|
||||
"introduction.interactions.favourite.text": "Du kannst Beitrage für später speichern und ihre AutorInnen wissen lassen, dass sie dir gefallen haben, indem du sie favorisierst.",
|
||||
"introduction.interactions.favourite.text": "Du kannst Beitrage für später speichern und ihre Autor_innen wissen lassen, dass sie dir gefallen haben, indem du sie favorisierst.",
|
||||
"introduction.interactions.reblog.headline": "Teilen",
|
||||
"introduction.interactions.reblog.text": "Du kannst Beiträge anderer mit deinen Followern teilen, indem du sie boostest.",
|
||||
"introduction.interactions.reblog.text": "Du kannst Beiträge anderer mit deinen Followern teilen, indem du sie teilst.",
|
||||
"introduction.interactions.reply.headline": "Antworten",
|
||||
"introduction.interactions.reply.text": "Du kannst auf die Beiträge anderer antworten und die Beiträge werden dann in einer Unterhaltung zusammengefasst.",
|
||||
"introduction.interactions.reply.text": "Du kannst auf die Beiträge anderer antworten. Diese Beiträge werden dann in einer Konversation zusammengefasst.",
|
||||
"introduction.welcome.action": "Lass uns loslegen!",
|
||||
"introduction.welcome.headline": "Erste Schritte",
|
||||
"introduction.welcome.text": "Willkommen im Fediverse! In wenigen Momenten wirst du in der Lage sein Nachrichten zu versenden und mit deinen Freunden über Server hinweg in Kontakt zu treten. Aber dieser Server, {domain}, ist sehr speziell — er hostet dein Profil, also merke dir den Namen.",
|
||||
"introduction.welcome.text": "Willkommen im Fediversum! In wenigen Momenten wirst du in der Lage sein Nachrichten zu versenden und mit deinen Freunden von anderen Servern in Kontakt zu treten. Aber dieser Server, {domain}, ist für dich sehr speziell — er hostet dein Profil, also merke dir die Domain.",
|
||||
"keyboard_shortcuts.back": "zurück navigieren",
|
||||
"keyboard_shortcuts.blocked": "Liste blockierter Profile öffnen",
|
||||
"keyboard_shortcuts.boost": "teilen",
|
||||
"keyboard_shortcuts.column": "einen Status in einer der Spalten fokussieren",
|
||||
"keyboard_shortcuts.column": "einen Beitrag in einer der Spalten fokussieren",
|
||||
"keyboard_shortcuts.compose": "fokussiere das Eingabefeld",
|
||||
"keyboard_shortcuts.description": "Beschreibung",
|
||||
"keyboard_shortcuts.direct": "Direct-Message-Spalte öffnen",
|
||||
"keyboard_shortcuts.down": "sich in der Liste hinunter bewegen",
|
||||
"keyboard_shortcuts.enter": "Status öffnen",
|
||||
"keyboard_shortcuts.enter": "Beitrag öffnen",
|
||||
"keyboard_shortcuts.favourite": "um zu favorisieren",
|
||||
"keyboard_shortcuts.favourites": "Favoriten-Liste öffnen",
|
||||
"keyboard_shortcuts.federated": "Förderierte Zeitleiste öffnen",
|
||||
"keyboard_shortcuts.federated": "Föderierte Zeitleiste öffnen",
|
||||
"keyboard_shortcuts.heading": "Tastenkombinationen",
|
||||
"keyboard_shortcuts.home": "Startseite öffnen",
|
||||
"keyboard_shortcuts.hotkey": "Tastenkürzel",
|
||||
|
@ -202,10 +202,10 @@
|
|||
"keyboard_shortcuts.reply": "antworten",
|
||||
"keyboard_shortcuts.requests": "Liste der Folge-Anfragen öffnen",
|
||||
"keyboard_shortcuts.search": "Suche fokussieren",
|
||||
"keyboard_shortcuts.start": "\"Erste Schritte-Spalte öffnen",
|
||||
"keyboard_shortcuts.start": "\"Erste Schritte\"-Spalte öffnen",
|
||||
"keyboard_shortcuts.toggle_hidden": "Text hinter einer Inhaltswarnung verstecken/anzeigen",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "Medien hinter einer Inhaltswarnung verstecken/anzeigen",
|
||||
"keyboard_shortcuts.toot": "einen neuen Toot beginnen",
|
||||
"keyboard_shortcuts.toot": "einen neuen Beitrag beginnen",
|
||||
"keyboard_shortcuts.unfocus": "Textfeld/die Suche nicht mehr fokussieren",
|
||||
"keyboard_shortcuts.up": "sich in der Liste hinauf bewegen",
|
||||
"lightbox.close": "Schließen",
|
||||
|
@ -237,7 +237,7 @@
|
|||
"navigation_bar.favourites": "Favoriten",
|
||||
"navigation_bar.filters": "Stummgeschaltene Wörter",
|
||||
"navigation_bar.follow_requests": "Folgeanfragen",
|
||||
"navigation_bar.follows_and_followers": "Folgende und Follower",
|
||||
"navigation_bar.follows_and_followers": "Folger_innen und Gefolgte",
|
||||
"navigation_bar.info": "Über diesen Server",
|
||||
"navigation_bar.keyboard_shortcuts": "Tastenkombinationen",
|
||||
"navigation_bar.lists": "Listen",
|
||||
|
@ -261,17 +261,17 @@
|
|||
"notifications.column_settings.filter_bar.advanced": "Zeige alle Kategorien an",
|
||||
"notifications.column_settings.filter_bar.category": "Schnellfilterleiste",
|
||||
"notifications.column_settings.filter_bar.show": "Anzeigen",
|
||||
"notifications.column_settings.follow": "Neue Folgende:",
|
||||
"notifications.column_settings.follow": "Neue Folger_innen:",
|
||||
"notifications.column_settings.mention": "Erwähnungen:",
|
||||
"notifications.column_settings.poll": "Ergebnisse der Umfrage:",
|
||||
"notifications.column_settings.poll": "Ergebnisse von Umfragen:",
|
||||
"notifications.column_settings.push": "Push-Benachrichtigungen",
|
||||
"notifications.column_settings.reblog": "Geteilte Beiträge:",
|
||||
"notifications.column_settings.show": "In der Spalte anzeigen",
|
||||
"notifications.column_settings.sound": "Ton abspielen",
|
||||
"notifications.filter.all": "Alle",
|
||||
"notifications.filter.boosts": "Erneut geteilte Beiträge",
|
||||
"notifications.filter.favourites": "Favoriten",
|
||||
"notifications.filter.follows": "Folgende",
|
||||
"notifications.filter.boosts": "Geteilte Beiträge",
|
||||
"notifications.filter.favourites": "Favorisierungen",
|
||||
"notifications.filter.follows": "Folger_innen",
|
||||
"notifications.filter.mentions": "Erwähnungen",
|
||||
"notifications.filter.polls": "Ergebnisse der Umfrage",
|
||||
"notifications.group": "{count} Benachrichtigungen",
|
||||
|
@ -282,16 +282,16 @@
|
|||
"poll_button.add_poll": "Eine Umfrage erstellen",
|
||||
"poll_button.remove_poll": "Umfrage entfernen",
|
||||
"privacy.change": "Sichtbarkeit des Beitrags anpassen",
|
||||
"privacy.direct.long": "Beitrag nur an erwähnte Profile",
|
||||
"privacy.direct.short": "Direkt",
|
||||
"privacy.private.long": "Beitrag nur an Folgende",
|
||||
"privacy.private.short": "Nur Folgende",
|
||||
"privacy.public.long": "Beitrag an öffentliche Zeitleisten",
|
||||
"privacy.direct.long": "Wird an erwähnte Profile gesendet",
|
||||
"privacy.direct.short": "Direktnachricht",
|
||||
"privacy.private.long": "Wird nur für deine Folger_innen sichtbar sein",
|
||||
"privacy.private.short": "Nur für Folger_innen",
|
||||
"privacy.public.long": "Wird in öffentlichen Zeitleisten erscheinen",
|
||||
"privacy.public.short": "Öffentlich",
|
||||
"privacy.unlisted.long": "Nicht in öffentlichen Zeitleisten anzeigen",
|
||||
"privacy.unlisted.long": "Wird in öffentlichen Zeitleisten nicht gezeigt",
|
||||
"privacy.unlisted.short": "Nicht gelistet",
|
||||
"regeneration_indicator.label": "Laden…",
|
||||
"regeneration_indicator.sublabel": "Deine Heimzeitleiste wird gerade vorbereitet!",
|
||||
"regeneration_indicator.sublabel": "Deine Startseite wird gerade vorbereitet!",
|
||||
"relative_time.days": "{number}d",
|
||||
"relative_time.hours": "{number}h",
|
||||
"relative_time.just_now": "jetzt",
|
||||
|
@ -306,21 +306,21 @@
|
|||
"report.target": "{target} melden",
|
||||
"search.placeholder": "Suche",
|
||||
"search_popout.search_format": "Fortgeschrittenes Suchformat",
|
||||
"search_popout.tips.full_text": "Simpler Text gibt Beiträge, die du geschrieben, favorisiert und geteilt hast zurück. Außerdem auch Beiträge in denen du erwähnt wurdest, als auch passende Nutzernamen, Anzeigenamen oder Hashtags.",
|
||||
"search_popout.tips.full_text": "Einfache Texteingabe gibt Beiträge, die du geschrieben, favorisiert und geteilt hast zurück. Außerdem auch Beiträge in denen du erwähnt wurdest, aber auch passende Nutzernamen, Anzeigenamen oder Hashtags.",
|
||||
"search_popout.tips.hashtag": "Hashtag",
|
||||
"search_popout.tips.status": "Beitrag",
|
||||
"search_popout.tips.text": "Einfacher Text gibt Anzeigenamen, Benutzernamen und Hashtags zurück",
|
||||
"search_popout.tips.text": "Einfache Texteingabe gibt Anzeigenamen, Benutzernamen und Hashtags zurück",
|
||||
"search_popout.tips.user": "Nutzer",
|
||||
"search_results.accounts": "Personen",
|
||||
"search_results.hashtags": "Hashtags",
|
||||
"search_results.statuses": "Beiträge",
|
||||
"search_results.total": "{count, number} {count, plural, one {Ergebnis} other {Ergebnisse}}",
|
||||
"status.admin_account": "Öffne Moderationsoberfläche für @{name}",
|
||||
"status.admin_status": "Öffne diesen Status in der Moderationsoberfläche",
|
||||
"status.admin_status": "Öffne Beitrag in der Moderationsoberfläche",
|
||||
"status.block": "Blockiere @{name}",
|
||||
"status.cancel_reblog_private": "Nicht mehr teilen",
|
||||
"status.cannot_reblog": "Dieser Beitrag kann nicht geteilt werden",
|
||||
"status.copy": "Kopiere Link zum Status",
|
||||
"status.copy": "Kopiere Link zum Beitrag",
|
||||
"status.delete": "Löschen",
|
||||
"status.detailed_status": "Detaillierte Ansicht der Konversation",
|
||||
"status.direct": "Direktnachricht @{name}",
|
||||
|
@ -332,39 +332,39 @@
|
|||
"status.mention": "@{name} erwähnen",
|
||||
"status.more": "Mehr",
|
||||
"status.mute": "@{name} stummschalten",
|
||||
"status.mute_conversation": "Thread stummschalten",
|
||||
"status.mute_conversation": "Konversation stummschalten",
|
||||
"status.open": "Diesen Beitrag öffnen",
|
||||
"status.pin": "Im Profil anheften",
|
||||
"status.pinned": "Angehefteter Beitrag",
|
||||
"status.read_more": "Mehr lesen",
|
||||
"status.reblog": "Teilen",
|
||||
"status.reblog_private": "An das eigentliche Publikum teilen",
|
||||
"status.reblog_private": "Mit der ursprünglichen Zielgruppe teilen",
|
||||
"status.reblogged_by": "{name} teilte",
|
||||
"status.reblogs.empty": "Diesen Beitrag hat noch niemand geteilt. Sobald es jemand tut, wird die Person hier angezeigt.",
|
||||
"status.reblogs.empty": "Diesen Beitrag hat noch niemand geteilt. Sobald es jemand tut, wird diese Person hier angezeigt.",
|
||||
"status.redraft": "Löschen und neu erstellen",
|
||||
"status.reply": "Antworten",
|
||||
"status.replyAll": "Auf Thread antworten",
|
||||
"status.replyAll": "Allen antworten",
|
||||
"status.report": "@{name} melden",
|
||||
"status.sensitive_warning": "Heikle Inhalte",
|
||||
"status.share": "Teilen",
|
||||
"status.show_less": "Weniger anzeigen",
|
||||
"status.show_less_all": "Zeige weniger für alles",
|
||||
"status.show_less_all": "Alle Inhaltswarnungen zuklappen",
|
||||
"status.show_more": "Mehr anzeigen",
|
||||
"status.show_more_all": "Zeige mehr für alles",
|
||||
"status.show_thread": "Zeige Thread",
|
||||
"status.unmute_conversation": "Stummschaltung von Thread aufheben",
|
||||
"status.show_more_all": "Alle Inhaltswarnungen aufklappen",
|
||||
"status.show_thread": "Zeige Konversation",
|
||||
"status.unmute_conversation": "Stummschaltung von Konversation aufheben",
|
||||
"status.unpin": "Vom Profil lösen",
|
||||
"suggestions.dismiss": "Hinweis ausblenden",
|
||||
"suggestions.header": "Du bist vielleicht interessiert in…",
|
||||
"suggestions.dismiss": "Empfehlung ausblenden",
|
||||
"suggestions.header": "Du bist vielleicht interessiert an…",
|
||||
"tabs_bar.federated_timeline": "Föderation",
|
||||
"tabs_bar.home": "Startseite",
|
||||
"tabs_bar.local_timeline": "Lokal",
|
||||
"tabs_bar.notifications": "Mitteilungen",
|
||||
"tabs_bar.search": "Suchen",
|
||||
"tabs_bar.search": "Suche",
|
||||
"time_remaining.days": "{number, plural, one {# Tag} other {# Tage}} verbleibend",
|
||||
"time_remaining.hours": "{number, plural, one {# Stunde} other {# Stunden}} verbleibend",
|
||||
"time_remaining.minutes": "{number, plural, one {# Minute} other {# Minuten}} verbleibend",
|
||||
"time_remaining.moments": "Momente verbleibend",
|
||||
"time_remaining.moments": "Schließt in Kürze",
|
||||
"time_remaining.seconds": "{number, plural, one {# Sekunde} other {# Sekunden}} verbleibend",
|
||||
"trends.count_by_accounts": "{count} {rawCount, plural, eine {Person} other {Personen}} reden darüber",
|
||||
"ui.beforeunload": "Dein Entwurf geht verloren, wenn du Mastodon verlässt.",
|
||||
|
@ -373,7 +373,7 @@
|
|||
"upload_error.limit": "Dateiupload-Limit erreicht.",
|
||||
"upload_error.poll": "Dateiuploads sind in Kombination mit Umfragen nicht erlaubt.",
|
||||
"upload_form.description": "Für Menschen mit Sehbehinderung beschreiben",
|
||||
"upload_form.focus": "Thumbnail bearbeiten",
|
||||
"upload_form.focus": "Vorschaubild bearbeiten",
|
||||
"upload_form.undo": "Löschen",
|
||||
"upload_progress.label": "Wird hochgeladen …",
|
||||
"video.close": "Video schließen",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"account.add_or_remove_from_list": "Προσθήκη ή αφαίρεση από λίστες",
|
||||
"account.add_or_remove_from_list": "Προσθήκη ή Αφαίρεση από λίστες",
|
||||
"account.badges.bot": "Μποτ",
|
||||
"account.block": "Απόκλεισε τον/την @{name}",
|
||||
"account.block_domain": "Απόκρυψε τα πάντα από το {domain}",
|
||||
|
@ -15,21 +15,21 @@
|
|||
"account.follows.empty": "Αυτός ο χρήστης δεν ακολουθεί κανέναν ακόμα.",
|
||||
"account.follows_you": "Σε ακολουθεί",
|
||||
"account.hide_reblogs": "Απόκρυψη προωθήσεων από @{name}",
|
||||
"account.link_verified_on": "Η ιδιοκτησία αυτού του συνδέσμου εκλέχθηκε την {date}",
|
||||
"account.link_verified_on": "Η ιδιοκτησία αυτού του συνδέσμου ελέχθηκε την {date}",
|
||||
"account.locked_info": "Η κατάσταση απορρήτου αυτού του λογαριασμού είναι κλειδωμένη. Ο ιδιοκτήτης επιβεβαιώνει χειροκίνητα ποιος μπορεί να τον ακολουθήσει.",
|
||||
"account.media": "Πολυμέσα",
|
||||
"account.mention": "Ανάφερε @{name}",
|
||||
"account.moved_to": "{name} μεταφέρθηκε στο:",
|
||||
"account.mute": "Σώπασε τον/την @{name}",
|
||||
"account.mute_notifications": "Σώπασε τις ειδοποιήσεις από τον/την @{name}",
|
||||
"account.mute": "Σώπασε @{name}",
|
||||
"account.mute_notifications": "Σώπασε τις ειδοποιήσεις από @{name}",
|
||||
"account.muted": "Αποσιωπημένος/η",
|
||||
"account.posts": "Τουτ",
|
||||
"account.posts_with_replies": "Τουτ και απαντήσεις",
|
||||
"account.report": "Κατάγγειλε τον/την @{name}",
|
||||
"account.report": "Κατάγγειλε @{name}",
|
||||
"account.requested": "Εκκρεμεί έγκριση. Κάνε κλικ για να ακυρώσεις το αίτημα παρακολούθησης",
|
||||
"account.share": "Μοιράσου το προφίλ του/της @{name}",
|
||||
"account.show_reblogs": "Δείξε τις προωθήσεις του/της @{name}",
|
||||
"account.unblock": "Ξεμπλόκαρε τον/την @{name}",
|
||||
"account.unblock": "Ξεμπλόκαρε @{name}",
|
||||
"account.unblock_domain": "Αποκάλυψε το {domain}",
|
||||
"account.unendorse": "Άνευ προβολής στο προφίλ",
|
||||
"account.unfollow": "Διακοπή παρακολούθησης",
|
||||
|
@ -77,16 +77,16 @@
|
|||
"compose_form.poll.remove_option": "Αφαίρεση επιλογής",
|
||||
"compose_form.publish": "Τουτ",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"compose_form.sensitive.hide": "Mark media as sensitive",
|
||||
"compose_form.sensitive.hide": "Σημείωσε τα πολυμέσα ως ευαίσθητα",
|
||||
"compose_form.sensitive.marked": "Το πολυμέσο έχει σημειωθεί ως ευαίσθητο",
|
||||
"compose_form.sensitive.unmarked": "Το πολυμέσο δεν έχει σημειωθεί ως ευαίσθητο",
|
||||
"compose_form.spoiler.marked": "Κείμενο κρυμμένο πίσω από προειδοποίηση",
|
||||
"compose_form.spoiler.unmarked": "Μη κρυμμένο κείμενο",
|
||||
"compose_form.spoiler_placeholder": "Γράψε την προειδοποίησή σου εδώ",
|
||||
"confirmation_modal.cancel": "Άκυρο",
|
||||
"confirmations.block.block_and_report": "Block & Report",
|
||||
"confirmations.block.block_and_report": "Αποκλεισμός & Καταγγελία",
|
||||
"confirmations.block.confirm": "Απόκλεισε",
|
||||
"confirmations.block.message": "Σίγουρα θες να αποκλείσεις τον/την {name};",
|
||||
"confirmations.block.message": "Σίγουρα θες να αποκλείσεις {name};",
|
||||
"confirmations.delete.confirm": "Διέγραψε",
|
||||
"confirmations.delete.message": "Σίγουρα θες να διαγράψεις αυτή την κατάσταση;",
|
||||
"confirmations.delete_list.confirm": "Διέγραψε",
|
||||
|
@ -94,7 +94,7 @@
|
|||
"confirmations.domain_block.confirm": "Απόκρυψη ολόκληρου του τομέα",
|
||||
"confirmations.domain_block.message": "Σίγουρα θες να μπλοκάρεις ολόκληρο το {domain}; Συνήθως μερικά εστιασμένα μπλοκ ή αποσιωπήσεις επαρκούν και προτιμούνται. Δεν θα βλέπεις περιεχόμενο από αυτό τον κόμβο σε καμία δημόσια ροή, ούτε στις ειδοποιήσεις σου. Όσους ακόλουθους έχεις αυτό αυτό τον κόμβο θα αφαιρεθούν.",
|
||||
"confirmations.mute.confirm": "Αποσιώπηση",
|
||||
"confirmations.mute.message": "Σίγουρα θες να αποσιωπήσεις τον/την {name};",
|
||||
"confirmations.mute.message": "Σίγουρα θες να αποσιωπήσεις {name};",
|
||||
"confirmations.redraft.confirm": "Διαγραφή & ξαναγράψιμο",
|
||||
"confirmations.redraft.message": "Σίγουρα θέλεις να σβήσεις αυτή την κατάσταση και να την ξαναγράψεις; Οι αναφορές και τα αγαπημένα της θα χαθούν ενώ οι απαντήσεις προς αυτή θα μείνουν ορφανές.",
|
||||
"confirmations.reply.confirm": "Απάντησε",
|
||||
|
@ -204,14 +204,14 @@
|
|||
"keyboard_shortcuts.search": "εστίαση αναζήτησης",
|
||||
"keyboard_shortcuts.start": "άνοιγμα κολώνας \"Ξεκινώντας\"",
|
||||
"keyboard_shortcuts.toggle_hidden": "εμφάνιση/απόκρυψη κειμένου πίσω από την προειδοποίηση",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "εμφάνιση/απόκρυψη πολυμέσων",
|
||||
"keyboard_shortcuts.toot": "δημιουργία νέου τουτ",
|
||||
"keyboard_shortcuts.unfocus": "απο-εστίαση του πεδίου σύνθεσης/αναζήτησης",
|
||||
"keyboard_shortcuts.up": "κίνηση προς την κορυφή της λίστας",
|
||||
"lightbox.close": "Κλείσιμο",
|
||||
"lightbox.next": "Επόμενο",
|
||||
"lightbox.previous": "Προηγούμενο",
|
||||
"lightbox.view_context": "View context",
|
||||
"lightbox.view_context": "Εμφάνιση πλαισίου",
|
||||
"lists.account.add": "Πρόσθεσε στη λίστα",
|
||||
"lists.account.remove": "Βγάλε από τη λίστα",
|
||||
"lists.delete": "Διαγραφή λίστας",
|
||||
|
@ -237,7 +237,7 @@
|
|||
"navigation_bar.favourites": "Αγαπημένα",
|
||||
"navigation_bar.filters": "Αποσιωπημένες λέξεις",
|
||||
"navigation_bar.follow_requests": "Αιτήματα ακολούθησης",
|
||||
"navigation_bar.follows_and_followers": "Follows and followers",
|
||||
"navigation_bar.follows_and_followers": "Ακολουθεί και ακολουθείται",
|
||||
"navigation_bar.info": "Πληροφορίες κόμβου",
|
||||
"navigation_bar.keyboard_shortcuts": "Συντομεύσεις",
|
||||
"navigation_bar.lists": "Λίστες",
|
||||
|
@ -246,7 +246,7 @@
|
|||
"navigation_bar.personal": "Προσωπικά",
|
||||
"navigation_bar.pins": "Καρφιτσωμένα τουτ",
|
||||
"navigation_bar.preferences": "Προτιμήσεις",
|
||||
"navigation_bar.profile_directory": "Profile directory",
|
||||
"navigation_bar.profile_directory": "Κατάλογος λογαριασμών",
|
||||
"navigation_bar.public_timeline": "Ομοσπονδιακή ροή",
|
||||
"navigation_bar.security": "Ασφάλεια",
|
||||
"notification.favourite": "Ο/Η {name} σημείωσε ως αγαπημένη την κατάστασή σου",
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
"compose_form.poll.remove_option": "Forigi ĉi tiu elekton",
|
||||
"compose_form.publish": "Hup",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"compose_form.sensitive.hide": "Mark media as sensitive",
|
||||
"compose_form.sensitive.hide": "Marki aŭdovidaĵojn kiel tiklaj",
|
||||
"compose_form.sensitive.marked": "Aŭdovidaĵo markita tikla",
|
||||
"compose_form.sensitive.unmarked": "Aŭdovidaĵo ne markita tikla",
|
||||
"compose_form.spoiler.marked": "Teksto kaŝita malantaŭ averto",
|
||||
|
@ -118,7 +118,7 @@
|
|||
"emoji_button.symbols": "Simboloj",
|
||||
"emoji_button.travel": "Vojaĝoj kaj lokoj",
|
||||
"empty_column.account_timeline": "Neniu mesaĝo ĉi tie!",
|
||||
"empty_column.account_unavailable": "Profile unavailable",
|
||||
"empty_column.account_unavailable": "Profilo ne disponebla",
|
||||
"empty_column.blocks": "Vi ankoraŭ ne blokis uzanton.",
|
||||
"empty_column.community": "La loka tempolinio estas malplena. Skribu ion por plenigi ĝin!",
|
||||
"empty_column.direct": "Vi ankoraŭ ne havas rektan mesaĝon. Kiam vi sendos aŭ ricevos iun, ĝi aperos ĉi tie.",
|
||||
|
@ -204,14 +204,14 @@
|
|||
"keyboard_shortcuts.search": "por fokusigi la serĉilon",
|
||||
"keyboard_shortcuts.start": "por malfermi la kolumnon «por komenci»",
|
||||
"keyboard_shortcuts.toggle_hidden": "por montri/kaŝi tekston malantaŭ enhava averto",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "por montri/kaŝi aŭdovidaĵojn",
|
||||
"keyboard_shortcuts.toot": "por komenci tute novan mesaĝon",
|
||||
"keyboard_shortcuts.unfocus": "por malfokusigi la tekstujon aŭ la serĉilon",
|
||||
"keyboard_shortcuts.up": "por iri supren en la listo",
|
||||
"lightbox.close": "Fermi",
|
||||
"lightbox.next": "Sekva",
|
||||
"lightbox.previous": "Antaŭa",
|
||||
"lightbox.view_context": "View context",
|
||||
"lightbox.view_context": "Vidi kontekston",
|
||||
"lists.account.add": "Aldoni al la listo",
|
||||
"lists.account.remove": "Forigi de la listo",
|
||||
"lists.delete": "Forigi la liston",
|
||||
|
@ -237,7 +237,7 @@
|
|||
"navigation_bar.favourites": "Stelumoj",
|
||||
"navigation_bar.filters": "Silentigitaj vortoj",
|
||||
"navigation_bar.follow_requests": "Petoj de sekvado",
|
||||
"navigation_bar.follows_and_followers": "Follows and followers",
|
||||
"navigation_bar.follows_and_followers": "Sekvatoj kaj sekvantoj",
|
||||
"navigation_bar.info": "Pri ĉi tiu servilo",
|
||||
"navigation_bar.keyboard_shortcuts": "Rapidklavoj",
|
||||
"navigation_bar.lists": "Listoj",
|
||||
|
@ -246,7 +246,7 @@
|
|||
"navigation_bar.personal": "Persone",
|
||||
"navigation_bar.pins": "Alpinglitaj mesaĝoj",
|
||||
"navigation_bar.preferences": "Preferoj",
|
||||
"navigation_bar.profile_directory": "Profile directory",
|
||||
"navigation_bar.profile_directory": "Profilujo",
|
||||
"navigation_bar.public_timeline": "Fratara tempolinio",
|
||||
"navigation_bar.security": "Sekureco",
|
||||
"notification.favourite": "{name} stelumis vian mesaĝon",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"account.add_or_remove_from_list": "Add or Remove from lists",
|
||||
"account.add_or_remove_from_list": "Agregar o eliminar de las listas",
|
||||
"account.badges.bot": "Bot",
|
||||
"account.block": "Bloquear",
|
||||
"account.block_domain": "Ocultar todo de {domain}",
|
||||
|
@ -15,8 +15,8 @@
|
|||
"account.follows.empty": "Este usuario todavía no sigue a nadie.",
|
||||
"account.follows_you": "Te sigue",
|
||||
"account.hide_reblogs": "Ocultar retoots de @{name}",
|
||||
"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.link_verified_on": "El proprietario de este link fue verificado el {date}",
|
||||
"account.locked_info": "El estado de privacidad de esta cuenta està configurado como bloqueado. El proprietario debe revisar manualmente quien puede seguirle.",
|
||||
"account.media": "Media",
|
||||
"account.mention": "Mencionar a @{name}",
|
||||
"account.moved_to": "{name} se ha mudado a:",
|
||||
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"account.add_or_remove_from_list": "Gehitu edo kendu zerrendetatik",
|
||||
"account.badges.bot": "Bot",
|
||||
"account.badges.bot": "Bot-a",
|
||||
"account.block": "Blokeatu @{name}",
|
||||
"account.block_domain": "Ezkutatu {domain} domeinuko guztia",
|
||||
"account.blocked": "Blokeatuta",
|
||||
|
@ -17,7 +17,7 @@
|
|||
"account.hide_reblogs": "Ezkutatu @{name}(r)en bultzadak",
|
||||
"account.link_verified_on": "Esteka honen jabetzaren egiaztaketa data: {date}",
|
||||
"account.locked_info": "Kontu honen pribatutasun egoera blokeatuta gisa ezarri da. Jabeak eskuz erabakitzen du nork jarraitu diezaioken.",
|
||||
"account.media": "Media",
|
||||
"account.media": "Multimedia",
|
||||
"account.mention": "Aipatu @{name}",
|
||||
"account.moved_to": "{name} hona lekualdatu da:",
|
||||
"account.mute": "Mututu @{name}",
|
||||
|
@ -40,7 +40,7 @@
|
|||
"boost_modal.combo": "{combo} sakatu dezakezu hurrengoan hau saltatzeko",
|
||||
"bundle_column_error.body": "Zerbait okerra gertatu da osagai hau kargatzean.",
|
||||
"bundle_column_error.retry": "Saiatu berriro",
|
||||
"bundle_column_error.title": "Network error",
|
||||
"bundle_column_error.title": "Sareko errorea",
|
||||
"bundle_modal_error.close": "Itxi",
|
||||
"bundle_modal_error.message": "Zerbait okerra gertatu da osagai hau kargatzean.",
|
||||
"bundle_modal_error.retry": "Saiatu berriro",
|
||||
|
@ -71,21 +71,21 @@
|
|||
"compose_form.lock_disclaimer": "Zure kontua ez dago {locked}. Edonork jarraitu zaitzake zure jarraitzaileentzako soilik diren mezuak ikusteko.",
|
||||
"compose_form.lock_disclaimer.lock": "giltzapetuta",
|
||||
"compose_form.placeholder": "Zer duzu buruan?",
|
||||
"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.add_option": "Gehitu aukera bat",
|
||||
"compose_form.poll.duration": "Inkestaren iraupena",
|
||||
"compose_form.poll.option_placeholder": "{number}. aukera",
|
||||
"compose_form.poll.remove_option": "Kendu aukera hau",
|
||||
"compose_form.publish": "Toot",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"compose_form.sensitive.hide": "Mark media as sensitive",
|
||||
"compose_form.sensitive.hide": "Markatu multimedia hunkigarri gisa",
|
||||
"compose_form.sensitive.marked": "Multimedia edukia hunkigarri gisa markatu da",
|
||||
"compose_form.sensitive.unmarked": "Multimedia edukia ez da hunkigarri gisa markatu",
|
||||
"compose_form.spoiler.marked": "Testua abisu batek ezkutatzen du",
|
||||
"compose_form.spoiler.unmarked": "Testua ez dago ezkutatuta",
|
||||
"compose_form.spoiler_placeholder": "Idatzi zure abisua hemen",
|
||||
"confirmation_modal.cancel": "Utzi",
|
||||
"confirmations.block.block_and_report": "Block & Report",
|
||||
"confirmations.block.confirm": "Block",
|
||||
"confirmations.block.block_and_report": "Blokeatu eta salatu",
|
||||
"confirmations.block.confirm": "Blokeatu",
|
||||
"confirmations.block.message": "Ziur {name} blokeatu nahi duzula?",
|
||||
"confirmations.delete.confirm": "Ezabatu",
|
||||
"confirmations.delete.message": "Ziur mezu hau ezabatu nahi duzula?",
|
||||
|
@ -118,7 +118,7 @@
|
|||
"emoji_button.symbols": "Sinboloak",
|
||||
"emoji_button.travel": "Bidaiak eta tokiak",
|
||||
"empty_column.account_timeline": "Ez dago toot-ik hemen!",
|
||||
"empty_column.account_unavailable": "Profile unavailable",
|
||||
"empty_column.account_unavailable": "Profila ez dago eskuragarri",
|
||||
"empty_column.blocks": "Ez duzu erabiltzailerik blokeatu oraindik.",
|
||||
"empty_column.community": "Denbora-lerro lokala hutsik dago. Idatzi zerbait publikoki pilota biraka jartzeko!",
|
||||
"empty_column.direct": "Ez duzu mezu zuzenik oraindik. Baten bat bidali edo jasotzen duzunean, hemen agertuko da.",
|
||||
|
@ -147,8 +147,8 @@
|
|||
"hashtag.column_header.tag_mode.all": "eta {osagarria}",
|
||||
"hashtag.column_header.tag_mode.any": "edo {osagarria}",
|
||||
"hashtag.column_header.tag_mode.none": "gabe {osagarria}",
|
||||
"hashtag.column_settings.select.no_options_message": "No suggestions found",
|
||||
"hashtag.column_settings.select.placeholder": "Enter hashtags…",
|
||||
"hashtag.column_settings.select.no_options_message": "Ez da proposamenik aurkitu",
|
||||
"hashtag.column_settings.select.placeholder": "Sartu traolak…",
|
||||
"hashtag.column_settings.tag_mode.all": "Hauetako guztiak",
|
||||
"hashtag.column_settings.tag_mode.any": "Hautako edozein",
|
||||
"hashtag.column_settings.tag_mode.none": "Hauetako bat ere ez",
|
||||
|
@ -156,15 +156,15 @@
|
|||
"home.column_settings.basic": "Oinarrizkoa",
|
||||
"home.column_settings.show_reblogs": "Erakutsi bultzadak",
|
||||
"home.column_settings.show_replies": "Erakutsi erantzunak",
|
||||
"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}}",
|
||||
"intervals.full.days": "{number, plural, one {egun #} other {# egun}}",
|
||||
"intervals.full.hours": "{number, plural, one {ordu #} other {# ordu}}",
|
||||
"intervals.full.minutes": "{number, plural, one {minutu #} other {# minutu}}",
|
||||
"introduction.federation.action": "Hurrengoa",
|
||||
"introduction.federation.federated.headline": "Federated",
|
||||
"introduction.federation.federated.headline": "Federatua",
|
||||
"introduction.federation.federated.text": "Fedibertsoko beste zerbitzarietako bidalketa publikoak federatutako denbora-lerroan agertuko dira.",
|
||||
"introduction.federation.home.headline": "Home",
|
||||
"introduction.federation.home.headline": "Hasiera",
|
||||
"introduction.federation.home.text": "Jarraitzen dituzun horien mezuak zure hasierako jarioan agertuko dira. Edozein zerbitzariko edonor jarraitu dezakezu!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.headline": "Lokala",
|
||||
"introduction.federation.local.text": "Zure zerbitzari berean dauden horien mezu publikoak denbora-lerro lokalean agertuko dira.",
|
||||
"introduction.interactions.action": "Amaitu tutoriala!",
|
||||
"introduction.interactions.favourite.headline": "Gogokoa",
|
||||
|
@ -181,10 +181,10 @@
|
|||
"keyboard_shortcuts.boost": "bultzada ematea",
|
||||
"keyboard_shortcuts.column": "mezu bat zutabe batean fokatzea",
|
||||
"keyboard_shortcuts.compose": "testua konposatzeko arean fokatzea",
|
||||
"keyboard_shortcuts.description": "Description",
|
||||
"keyboard_shortcuts.description": "Deskripzioa",
|
||||
"keyboard_shortcuts.direct": "mezu zuzenen zutabea irekitzeko",
|
||||
"keyboard_shortcuts.down": "zerrendan behera mugitzea",
|
||||
"keyboard_shortcuts.enter": "to open status",
|
||||
"keyboard_shortcuts.enter": "mezua irekitzeko",
|
||||
"keyboard_shortcuts.favourite": "gogoko egitea",
|
||||
"keyboard_shortcuts.favourites": "gogokoen zerrenda irekitzeko",
|
||||
"keyboard_shortcuts.federated": "federatutako denbora-lerroa irekitzeko",
|
||||
|
@ -204,19 +204,19 @@
|
|||
"keyboard_shortcuts.search": "bilaketan fokua jartzea",
|
||||
"keyboard_shortcuts.start": "\"Menua\" zutabea irekitzeko",
|
||||
"keyboard_shortcuts.toggle_hidden": "testua erakustea/ezkutatzea abisu baten atzean",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "multimedia erakutsi/ezkutatzeko",
|
||||
"keyboard_shortcuts.toot": "toot berria hastea",
|
||||
"keyboard_shortcuts.unfocus": "testua konposatzeko area / bilaketatik fokua kentzea",
|
||||
"keyboard_shortcuts.up": "zerrendan gora mugitzea",
|
||||
"lightbox.close": "Itxi",
|
||||
"lightbox.next": "Hurrengoa",
|
||||
"lightbox.previous": "Aurrekoa",
|
||||
"lightbox.view_context": "View context",
|
||||
"lightbox.view_context": "Ikusi testuingurua",
|
||||
"lists.account.add": "Gehitu zerrendara",
|
||||
"lists.account.remove": "Kendu zerrendatik",
|
||||
"lists.delete": "Ezabatu zerrenda",
|
||||
"lists.edit": "Editatu zerrenda",
|
||||
"lists.edit.submit": "Change title",
|
||||
"lists.edit.submit": "Aldatu izenburua",
|
||||
"lists.new.create": "Gehitu zerrenda",
|
||||
"lists.new.title_placeholder": "Zerrenda berriaren izena",
|
||||
"lists.search": "Bilatu jarraitzen dituzun pertsonen artean",
|
||||
|
@ -237,22 +237,22 @@
|
|||
"navigation_bar.favourites": "Gogokoak",
|
||||
"navigation_bar.filters": "Mutututako hitzak",
|
||||
"navigation_bar.follow_requests": "Jarraitzeko eskariak",
|
||||
"navigation_bar.follows_and_followers": "Follows and followers",
|
||||
"navigation_bar.follows_and_followers": "Jarraitutakoak eta jarraitzaileak",
|
||||
"navigation_bar.info": "Zerbitzari honi buruz",
|
||||
"navigation_bar.keyboard_shortcuts": "Laster-teklak",
|
||||
"navigation_bar.lists": "Zerrendak",
|
||||
"navigation_bar.logout": "Amaitu saioa",
|
||||
"navigation_bar.mutes": "Mutututako erabiltzaileak",
|
||||
"navigation_bar.personal": "Personal",
|
||||
"navigation_bar.personal": "Pertsonala",
|
||||
"navigation_bar.pins": "Finkatutako toot-ak",
|
||||
"navigation_bar.preferences": "Hobespenak",
|
||||
"navigation_bar.profile_directory": "Profile directory",
|
||||
"navigation_bar.profile_directory": "Profilen direktorioa",
|
||||
"navigation_bar.public_timeline": "Federatutako denbora-lerroa",
|
||||
"navigation_bar.security": "Segurtasuna",
|
||||
"notification.favourite": "{name}(e)k zure mezua gogoko du",
|
||||
"notification.follow": "{name}(e)k jarraitzen zaitu",
|
||||
"notification.mention": "{name}(e)k aipatu zaitu",
|
||||
"notification.poll": "A poll you have voted in has ended",
|
||||
"notification.poll": "Zuk erantzun duzun inkesta bat bukatu da",
|
||||
"notification.reblog": "{name}(e)k bultzada eman dio zure mezuari",
|
||||
"notifications.clear": "Garbitu jakinarazpenak",
|
||||
"notifications.clear_confirmation": "Ziur zure jakinarazpen guztiak behin betirako garbitu nahi dituzula?",
|
||||
|
@ -263,7 +263,7 @@
|
|||
"notifications.column_settings.filter_bar.show": "Erakutsi",
|
||||
"notifications.column_settings.follow": "Jarraitzaile berriak:",
|
||||
"notifications.column_settings.mention": "Aipamenak:",
|
||||
"notifications.column_settings.poll": "Poll results:",
|
||||
"notifications.column_settings.poll": "Inkestaren emaitzak:",
|
||||
"notifications.column_settings.push": "Push jakinarazpenak",
|
||||
"notifications.column_settings.reblog": "Bultzadak:",
|
||||
"notifications.column_settings.show": "Erakutsi zutabean",
|
||||
|
@ -273,14 +273,14 @@
|
|||
"notifications.filter.favourites": "Gogokoak",
|
||||
"notifications.filter.follows": "Jarraipenak",
|
||||
"notifications.filter.mentions": "Aipamenak",
|
||||
"notifications.filter.polls": "Poll results",
|
||||
"notifications.filter.polls": "Inkestaren emaitza",
|
||||
"notifications.group": "{count} jakinarazpen",
|
||||
"poll.closed": "Closed",
|
||||
"poll.refresh": "Refresh",
|
||||
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
|
||||
"poll.vote": "Vote",
|
||||
"poll_button.add_poll": "Add a poll",
|
||||
"poll_button.remove_poll": "Remove poll",
|
||||
"poll.closed": "Itxita",
|
||||
"poll.refresh": "Berritu",
|
||||
"poll.total_votes": "{count, plural, one {boto #} other {# boto}}",
|
||||
"poll.vote": "Bozkatu",
|
||||
"poll_button.add_poll": "Gehitu inkesta bat",
|
||||
"poll_button.remove_poll": "Kendu inkesta",
|
||||
"privacy.change": "Doitu mezuaren pribatutasuna",
|
||||
"privacy.direct.long": "Bidali aipatutako erabiltzaileei besterik ez",
|
||||
"privacy.direct.short": "Zuzena",
|
||||
|
@ -302,22 +302,22 @@
|
|||
"report.forward_hint": "Kontu hau beste zerbitzari batekoa da. Bidali txostenaren kopia anonimo hara ere?",
|
||||
"report.hint": "Txostena zure zerbitzariaren moderatzaileei bidaliko zaie. Kontu hau zergatik salatzen duzun behean azaldu dezakezu:",
|
||||
"report.placeholder": "Iruzkin gehigarriak",
|
||||
"report.submit": "Submit",
|
||||
"report.submit": "Bidali",
|
||||
"report.target": "{target} salatzen",
|
||||
"search.placeholder": "Bilatu",
|
||||
"search_popout.search_format": "Bilaketa aurreratuaren formatua",
|
||||
"search_popout.tips.full_text": "Testu hutsarekin zuk idatzitako mezuak, gogokoak, bultzadak edo aipamenak aurkitu ditzakezu, bat datozen erabiltzaile-izenak, pantaila-izenak, eta traolak.",
|
||||
"search_popout.tips.hashtag": "traola",
|
||||
"search_popout.tips.status": "status",
|
||||
"search_popout.tips.status": "mezua",
|
||||
"search_popout.tips.text": "Testu hutsak pantaila-izenak, erabiltzaile-izenak eta traolak bilatzen ditu",
|
||||
"search_popout.tips.user": "erabiltzailea",
|
||||
"search_results.accounts": "Jendea",
|
||||
"search_results.hashtags": "Traolak",
|
||||
"search_results.statuses": "Toot-ak",
|
||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||
"search_results.total": "{count, number} {count, plural, one {emaitza} other {emaitzak}}",
|
||||
"status.admin_account": "Ireki @{name} erabiltzailearen moderazio interfazea",
|
||||
"status.admin_status": "Ireki mezu hau moderazio interfazean",
|
||||
"status.block": "Block @{name}",
|
||||
"status.block": "Blokeatu @{name}",
|
||||
"status.cancel_reblog_private": "Kendu bultzada",
|
||||
"status.cannot_reblog": "Mezu honi ezin zaio bultzada eman",
|
||||
"status.copy": "Kopiatu mezuaren esteka",
|
||||
|
@ -361,17 +361,17 @@
|
|||
"tabs_bar.local_timeline": "Lokala",
|
||||
"tabs_bar.notifications": "Jakinarazpenak",
|
||||
"tabs_bar.search": "Bilatu",
|
||||
"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",
|
||||
"time_remaining.days": "{number, plural, one {egun #} other {# egun}} amaitzeko",
|
||||
"time_remaining.hours": "{number, plural, one {ordu #} other {# ordu}} amaitzeko",
|
||||
"time_remaining.minutes": "{number, plural, one {minutu #} other {# minutu}} amaitzeko",
|
||||
"time_remaining.moments": "Amaitzekotan",
|
||||
"time_remaining.seconds": "{number, plural, one {segundo #} other {# segundo}} amaitzeko",
|
||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} hitz egiten",
|
||||
"ui.beforeunload": "Zure zirriborroa galduko da Mastodon uzten baduzu.",
|
||||
"upload_area.title": "Arrastatu eta jaregin igotzeko",
|
||||
"upload_button.label": "Gehitu multimedia (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||
"upload_error.limit": "Fitxategi igoera muga gaindituta.",
|
||||
"upload_error.poll": "File upload not allowed with polls.",
|
||||
"upload_error.poll": "Ez da inkestetan fitxategiak igotzea onartzen.",
|
||||
"upload_form.description": "Deskribatu ikusmen arazoak dituztenentzat",
|
||||
"upload_form.focus": "Aldatu aurrebista",
|
||||
"upload_form.undo": "Ezabatu",
|
||||
|
@ -379,10 +379,10 @@
|
|||
"video.close": "Itxi bideoa",
|
||||
"video.exit_fullscreen": "Irten pantaila osotik",
|
||||
"video.expand": "Hedatu bideoa",
|
||||
"video.fullscreen": "Full screen",
|
||||
"video.fullscreen": "Pantaila osoa",
|
||||
"video.hide": "Ezkutatu bideoa",
|
||||
"video.mute": "Mututu soinua",
|
||||
"video.pause": "Pause",
|
||||
"video.pause": "Pausatu",
|
||||
"video.play": "Jo",
|
||||
"video.unmute": "Desmututu soinua"
|
||||
}
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"account.add_or_remove_from_list": "Ajouter ou retirer des listes",
|
||||
"account.badges.bot": "Bot",
|
||||
"account.badges.bot": "Robot",
|
||||
"account.block": "Bloquer @{name}",
|
||||
"account.block_domain": "Tout masquer venant de {domain}",
|
||||
"account.blocked": "Bloqué",
|
||||
|
@ -84,7 +84,7 @@
|
|||
"compose_form.spoiler.unmarked": "Le texte n’est pas caché",
|
||||
"compose_form.spoiler_placeholder": "Écrivez ici votre avertissement",
|
||||
"confirmation_modal.cancel": "Annuler",
|
||||
"confirmations.block.block_and_report": "Block & Report",
|
||||
"confirmations.block.block_and_report": "Bloquer et signaler",
|
||||
"confirmations.block.confirm": "Bloquer",
|
||||
"confirmations.block.message": "Confirmez-vous le blocage de {name} ?",
|
||||
"confirmations.delete.confirm": "Supprimer",
|
||||
|
@ -204,7 +204,7 @@
|
|||
"keyboard_shortcuts.search": "pour cibler la recherche",
|
||||
"keyboard_shortcuts.start": "pour ouvrir la colonne \"pour commencer\"",
|
||||
"keyboard_shortcuts.toggle_hidden": "pour afficher/cacher un texte derrière CW",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "pour afficher/cacher les médias",
|
||||
"keyboard_shortcuts.toot": "pour démarrer un tout nouveau pouet",
|
||||
"keyboard_shortcuts.unfocus": "pour quitter la zone de composition/recherche",
|
||||
"keyboard_shortcuts.up": "pour remonter dans la liste",
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"account.followers.empty": "Ninguén está a seguir esta usuaria por agora.",
|
||||
"account.follows": "Seguindo",
|
||||
"account.follows.empty": "Esta usuaria aínda non segue a ninguén.",
|
||||
"account.follows_you": "Séguena",
|
||||
"account.follows_you": "Séguete",
|
||||
"account.hide_reblogs": "Ocultar repeticións de @{name}",
|
||||
"account.link_verified_on": "A propiedade de esta ligazón foi comprobada en {date}",
|
||||
"account.locked_info": "O estado da intimidade de esta conta estableceuse en pechado. A persoa dona da conta revisa quen pode seguila.",
|
||||
|
@ -71,25 +71,25 @@
|
|||
"compose_form.lock_disclaimer": "A súa conta non está {locked}. Calquera pode seguila para ver as súas mensaxes só-para-seguidoras.",
|
||||
"compose_form.lock_disclaimer.lock": "bloqueado",
|
||||
"compose_form.placeholder": "Qué contas?",
|
||||
"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.add_option": "Engadir unha opción",
|
||||
"compose_form.poll.duration": "Duración da sondaxe",
|
||||
"compose_form.poll.option_placeholder": "Opción {number}",
|
||||
"compose_form.poll.remove_option": "Eliminar esta opción",
|
||||
"compose_form.publish": "Toot",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"compose_form.sensitive.hide": "Mark media as sensitive",
|
||||
"compose_form.sensitive.hide": "Marcar medios como sensibles",
|
||||
"compose_form.sensitive.marked": "Medios marcados como sensibles",
|
||||
"compose_form.sensitive.unmarked": "Os medios non están marcados como sensibles",
|
||||
"compose_form.spoiler.marked": "O texto está agochado tras un aviso",
|
||||
"compose_form.spoiler.unmarked": "O texto non está agochado",
|
||||
"compose_form.spoiler_placeholder": "Escriba o aviso aquí",
|
||||
"confirmation_modal.cancel": "Cancelar",
|
||||
"confirmations.block.block_and_report": "Block & Report",
|
||||
"confirmations.block.block_and_report": "Bloquear e Informar",
|
||||
"confirmations.block.confirm": "Bloquear",
|
||||
"confirmations.block.message": "Está segura de querer bloquear a {name}?",
|
||||
"confirmations.delete.confirm": "Borrar",
|
||||
"confirmations.delete.message": "Está segura de que quere eliminar este estado?",
|
||||
"confirmations.delete_list.confirm": "Delete",
|
||||
"confirmations.delete_list.confirm": "Eliminar",
|
||||
"confirmations.delete_list.message": "Estás seguro de que queres eliminar permanentemente esta lista?",
|
||||
"confirmations.domain_block.confirm": "Agochar un dominio completo",
|
||||
"confirmations.domain_block.message": "Realmente está segura de que quere bloquear por completo o dominio {domain}? Normalmente é suficiente, e preferible, bloquear de xeito selectivo varios elementos. Non verá contidos de ese dominio en ningunha liña temporal ou nas notificacións. As súas seguidoras en ese dominio serán eliminadas.",
|
||||
|
@ -138,7 +138,7 @@
|
|||
"follow_request.reject": "Rexeitar",
|
||||
"getting_started.developers": "Desenvolvedoras",
|
||||
"getting_started.directory": "Directorio do perfil",
|
||||
"getting_started.documentation": "Documentation",
|
||||
"getting_started.documentation": "Documentación",
|
||||
"getting_started.heading": "Comezando",
|
||||
"getting_started.invite": "Convide a xente",
|
||||
"getting_started.open_source_notice": "Mastodon é software de código aberto. Pode contribuír ou informar de fallos en GitHub en {github}.",
|
||||
|
@ -147,8 +147,8 @@
|
|||
"hashtag.column_header.tag_mode.all": "e {additional}",
|
||||
"hashtag.column_header.tag_mode.any": "ou {additional}",
|
||||
"hashtag.column_header.tag_mode.none": "sen {additional}",
|
||||
"hashtag.column_settings.select.no_options_message": "No suggestions found",
|
||||
"hashtag.column_settings.select.placeholder": "Enter hashtags…",
|
||||
"hashtag.column_settings.select.no_options_message": "Non se atopan suxestións",
|
||||
"hashtag.column_settings.select.placeholder": "Introducir etiquetas…",
|
||||
"hashtag.column_settings.tag_mode.all": "Todos estos",
|
||||
"hashtag.column_settings.tag_mode.any": "Calquera de estos",
|
||||
"hashtag.column_settings.tag_mode.none": "Ningún de estos",
|
||||
|
@ -156,13 +156,13 @@
|
|||
"home.column_settings.basic": "Básico",
|
||||
"home.column_settings.show_reblogs": "Mostrar repeticións",
|
||||
"home.column_settings.show_replies": "Mostrar respostas",
|
||||
"intervals.full.days": "{number, plural, one {# day} other {# days}}",
|
||||
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
|
||||
"intervals.full.days": "{number, plural,one {# día} other {# días}}",
|
||||
"intervals.full.hours": "{number, plural, one {# hora} other {# horas}}",
|
||||
"intervals.full.minutes": "{number, plural, one {# minuto} other {# minutos}}",
|
||||
"introduction.federation.action": "Seguinte",
|
||||
"introduction.federation.federated.headline": "Federated",
|
||||
"introduction.federation.federated.headline": "Federado",
|
||||
"introduction.federation.federated.text": "Publicacións públicas desde outros servidores do fediverso aparecerán na liña temporal federada.",
|
||||
"introduction.federation.home.headline": "Home",
|
||||
"introduction.federation.home.headline": "Inicio",
|
||||
"introduction.federation.home.text": "Publicacións de xente que vostede segue aparecerán no TL de Inicio. Pode seguir a calquera en calquer servidor!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Publicacións públicas de xente no seu mesmo servidor aparecerán na liña temporal local.",
|
||||
|
@ -204,19 +204,19 @@
|
|||
"keyboard_shortcuts.search": "para centrar a busca",
|
||||
"keyboard_shortcuts.start": "abrir columna \"comezando\"",
|
||||
"keyboard_shortcuts.toggle_hidden": "mostrar/agochar un texto detrás do AC",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "mostrar/ocultar medios",
|
||||
"keyboard_shortcuts.toot": "escribir un toot novo",
|
||||
"keyboard_shortcuts.unfocus": "quitar o foco do área de escritura/busca",
|
||||
"keyboard_shortcuts.up": "ir hacia arriba na lista",
|
||||
"lightbox.close": "Fechar",
|
||||
"lightbox.next": "Seguinte",
|
||||
"lightbox.previous": "Anterior",
|
||||
"lightbox.view_context": "View context",
|
||||
"lightbox.view_context": "Ver contexto",
|
||||
"lists.account.add": "Engadir á lista",
|
||||
"lists.account.remove": "Eliminar da lista",
|
||||
"lists.delete": "Delete list",
|
||||
"lists.delete": "Eliminar lista",
|
||||
"lists.edit": "Editar lista",
|
||||
"lists.edit.submit": "Change title",
|
||||
"lists.edit.submit": "Cambiar título",
|
||||
"lists.new.create": "Engadir lista",
|
||||
"lists.new.title_placeholder": "Novo título da lista",
|
||||
"lists.search": "Procurar entre a xente que segues",
|
||||
|
@ -237,7 +237,7 @@
|
|||
"navigation_bar.favourites": "Favoritas",
|
||||
"navigation_bar.filters": "Palabras acaladas",
|
||||
"navigation_bar.follow_requests": "Peticións de seguimento",
|
||||
"navigation_bar.follows_and_followers": "Follows and followers",
|
||||
"navigation_bar.follows_and_followers": "Seguindo e seguidoras",
|
||||
"navigation_bar.info": "Sobre este servidor",
|
||||
"navigation_bar.keyboard_shortcuts": "Atallos",
|
||||
"navigation_bar.lists": "Listas",
|
||||
|
@ -246,7 +246,7 @@
|
|||
"navigation_bar.personal": "Persoal",
|
||||
"navigation_bar.pins": "Mensaxes fixadas",
|
||||
"navigation_bar.preferences": "Preferencias",
|
||||
"navigation_bar.profile_directory": "Profile directory",
|
||||
"navigation_bar.profile_directory": "Directorio de perfil",
|
||||
"navigation_bar.public_timeline": "Liña temporal federada",
|
||||
"navigation_bar.security": "Seguridade",
|
||||
"notification.favourite": "{name} marcou como favorito o seu estado",
|
||||
|
@ -275,12 +275,12 @@
|
|||
"notifications.filter.mentions": "Mencións",
|
||||
"notifications.filter.polls": "Resultados da sondaxe",
|
||||
"notifications.group": "{count} notificacións",
|
||||
"poll.closed": "Closed",
|
||||
"poll.refresh": "Refresh",
|
||||
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
|
||||
"poll.closed": "Pechado",
|
||||
"poll.refresh": "Actualizar",
|
||||
"poll.total_votes": "{count, plural, one {# voto} outros {# votos}}",
|
||||
"poll.vote": "Votar",
|
||||
"poll_button.add_poll": "Add a poll",
|
||||
"poll_button.remove_poll": "Remove poll",
|
||||
"poll_button.add_poll": "Engadir sondaxe",
|
||||
"poll_button.remove_poll": "Eliminar sondaxe",
|
||||
"privacy.change": "Axustar a intimidade do estado",
|
||||
"privacy.direct.long": "Enviar exclusivamente as usuarias mencionadas",
|
||||
"privacy.direct.short": "Directa",
|
||||
|
@ -317,10 +317,10 @@
|
|||
"search_results.total": "{count, number} {count,plural,one {result} outros {results}}",
|
||||
"status.admin_account": "Abrir interface de moderación para @{name}",
|
||||
"status.admin_status": "Abrir este estado na interface de moderación",
|
||||
"status.block": "Block @{name}",
|
||||
"status.block": "Bloquear @{name}",
|
||||
"status.cancel_reblog_private": "Non promover",
|
||||
"status.cannot_reblog": "Esta mensaxe non pode ser promovida",
|
||||
"status.copy": "Copy link to status",
|
||||
"status.copy": "Copiar ligazón ao estado",
|
||||
"status.delete": "Eliminar",
|
||||
"status.detailed_status": "Vista detallada da conversa",
|
||||
"status.direct": "Mensaxe directa @{name}",
|
||||
|
@ -361,17 +361,17 @@
|
|||
"tabs_bar.local_timeline": "Local",
|
||||
"tabs_bar.notifications": "Notificacións",
|
||||
"tabs_bar.search": "Buscar",
|
||||
"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",
|
||||
"time_remaining.days": "{number, plural, one {# dia} other {# días}} restantes",
|
||||
"time_remaining.hours": "{number, plural, one {# hora} other {# horas}} restantes",
|
||||
"time_remaining.minutes": "{number, plural, one {# minuto} other {# minutos}} restantes",
|
||||
"time_remaining.moments": "Está rematando",
|
||||
"time_remaining.seconds": "{number, plural, one {# segundo} other {# segundos}} restantes",
|
||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} outras {people}} conversando",
|
||||
"ui.beforeunload": "O borrador perderase se sae de Mastodon.",
|
||||
"upload_area.title": "Arrastre e solte para subir",
|
||||
"upload_button.label": "Engadir medios (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||
"upload_error.limit": "File upload limit exceeded.",
|
||||
"upload_error.poll": "File upload not allowed with polls.",
|
||||
"upload_error.limit": "Excedeu o límite de subida de ficheiros.",
|
||||
"upload_error.poll": "Non se poden subir ficheiros nas sondaxes.",
|
||||
"upload_form.description": "Describa para deficientes visuais",
|
||||
"upload_form.focus": "Cambiar vista previa",
|
||||
"upload_form.undo": "Eliminar",
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -250,7 +250,7 @@
|
|||
"navigation_bar.personal": "個人用",
|
||||
"navigation_bar.pins": "固定したトゥート",
|
||||
"navigation_bar.preferences": "ユーザー設定",
|
||||
"navigation_bar.profile_directory": "Profile directory",
|
||||
"navigation_bar.profile_directory": "ディレクトリ",
|
||||
"navigation_bar.public_timeline": "連合タイムライン",
|
||||
"navigation_bar.misc": "その他",
|
||||
"navigation_bar.security": "セキュリティ",
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
"compose_form.poll.remove_option": "이 항목 삭제",
|
||||
"compose_form.publish": "툿",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"compose_form.sensitive.hide": "Mark media as sensitive",
|
||||
"compose_form.sensitive.hide": "미디어를 민감함으로 설정하기",
|
||||
"compose_form.sensitive.marked": "미디어가 열람주의로 설정되어 있습니다",
|
||||
"compose_form.sensitive.unmarked": "미디어가 열람주의로 설정 되어 있지 않습니다",
|
||||
"compose_form.spoiler.marked": "열람주의가 설정되어 있습니다",
|
||||
|
@ -211,7 +211,7 @@
|
|||
"lightbox.close": "닫기",
|
||||
"lightbox.next": "다음",
|
||||
"lightbox.previous": "이전",
|
||||
"lightbox.view_context": "View context",
|
||||
"lightbox.view_context": "게시물 보기",
|
||||
"lists.account.add": "리스트에 추가",
|
||||
"lists.account.remove": "리스트에서 제거",
|
||||
"lists.delete": "리스트 삭제",
|
||||
|
@ -246,7 +246,7 @@
|
|||
"navigation_bar.personal": "개인용",
|
||||
"navigation_bar.pins": "고정된 툿",
|
||||
"navigation_bar.preferences": "사용자 설정",
|
||||
"navigation_bar.profile_directory": "Profile directory",
|
||||
"navigation_bar.profile_directory": "프로필 디렉토리",
|
||||
"navigation_bar.public_timeline": "연합 타임라인",
|
||||
"navigation_bar.security": "보안",
|
||||
"notification.favourite": "{name}님이 즐겨찾기 했습니다",
|
||||
|
|
388
app/javascript/mastodon/locales/lt.json
Normal file
388
app/javascript/mastodon/locales/lt.json
Normal file
|
@ -0,0 +1,388 @@
|
|||
{
|
||||
"account.add_or_remove_from_list": "Add or Remove from lists",
|
||||
"account.badges.bot": "Bot",
|
||||
"account.block": "Block @{name}",
|
||||
"account.block_domain": "Hide everything from {domain}",
|
||||
"account.blocked": "Blocked",
|
||||
"account.direct": "Direct message @{name}",
|
||||
"account.domain_blocked": "Domain hidden",
|
||||
"account.edit_profile": "Edit profile",
|
||||
"account.endorse": "Feature on profile",
|
||||
"account.follow": "Follow",
|
||||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.follows": "Follows",
|
||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||
"account.follows_you": "Follows you",
|
||||
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||
"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": "Toots",
|
||||
"account.posts_with_replies": "Toots 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.unblock": "Unblock @{name}",
|
||||
"account.unblock_domain": "Unhide {domain}",
|
||||
"account.unendorse": "Don't feature on profile",
|
||||
"account.unfollow": "Unfollow",
|
||||
"account.unmute": "Unmute @{name}",
|
||||
"account.unmute_notifications": "Unmute notifications from @{name}",
|
||||
"alert.unexpected.message": "An unexpected error occurred.",
|
||||
"alert.unexpected.title": "Oops!",
|
||||
"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.community": "Local timeline",
|
||||
"column.direct": "Direct messages",
|
||||
"column.domain_blocks": "Hidden 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 toot",
|
||||
"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.media_only": "Media Only",
|
||||
"compose_form.direct_message_warning": "This toot will only be sent to all the mentioned users.",
|
||||
"compose_form.direct_message_warning_learn_more": "Learn more",
|
||||
"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.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.publish": "Toot",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"compose_form.sensitive.hide": "Mark media as sensitive",
|
||||
"compose_form.sensitive.marked": "Media is marked as sensitive",
|
||||
"compose_form.sensitive.unmarked": "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.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.mute.confirm": "Mute",
|
||||
"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}?",
|
||||
"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 emojos!! (╯°□°)╯︵ ┻━┻",
|
||||
"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_timeline": "No toots here!",
|
||||
"empty_column.account_unavailable": "Profile unavailable",
|
||||
"empty_column.blocks": "You haven't blocked any users yet.",
|
||||
"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 hidden domains yet.",
|
||||
"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.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! Visit {public} or use search to get started and meet other users.",
|
||||
"empty_column.home.public_timeline": "the public timeline",
|
||||
"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. Interact with others to start the conversation.",
|
||||
"empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other servers to fill it up",
|
||||
"follow_request.authorize": "Authorize",
|
||||
"follow_request.reject": "Reject",
|
||||
"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",
|
||||
"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}}",
|
||||
"introduction.federation.action": "Next",
|
||||
"introduction.federation.federated.headline": "Federated",
|
||||
"introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.",
|
||||
"introduction.federation.home.headline": "Home",
|
||||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
"introduction.interactions.reblog.text": "You can share other people's toots with your followers by boosting them.",
|
||||
"introduction.interactions.reply.headline": "Reply",
|
||||
"introduction.interactions.reply.text": "You can reply to other people's and your own toots, which will chain them together in a conversation.",
|
||||
"introduction.welcome.action": "Let's go!",
|
||||
"introduction.welcome.headline": "First steps",
|
||||
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
|
||||
"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.pinned": "to open pinned toots 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.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 toot",
|
||||
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
||||
"keyboard_shortcuts.up": "to move up in the list",
|
||||
"lightbox.close": "Close",
|
||||
"lightbox.next": "Next",
|
||||
"lightbox.previous": "Previous",
|
||||
"lightbox.view_context": "View context",
|
||||
"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.search": "Search among people you follow",
|
||||
"lists.subheading": "Your lists",
|
||||
"loading_indicator.label": "Loading...",
|
||||
"media_gallery.toggle_visible": "Toggle visibility",
|
||||
"missing_indicator.label": "Not found",
|
||||
"missing_indicator.sublabel": "This resource could not be found",
|
||||
"mute_modal.hide_notifications": "Hide notifications from this user?",
|
||||
"navigation_bar.apps": "Mobile apps",
|
||||
"navigation_bar.blocks": "Blocked users",
|
||||
"navigation_bar.community_timeline": "Local timeline",
|
||||
"navigation_bar.compose": "Compose new toot",
|
||||
"navigation_bar.direct": "Direct messages",
|
||||
"navigation_bar.discover": "Discover",
|
||||
"navigation_bar.domain_blocks": "Hidden domains",
|
||||
"navigation_bar.edit_profile": "Edit profile",
|
||||
"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 toots",
|
||||
"navigation_bar.preferences": "Preferences",
|
||||
"navigation_bar.profile_directory": "Profile directory",
|
||||
"navigation_bar.public_timeline": "Federated timeline",
|
||||
"navigation_bar.security": "Security",
|
||||
"notification.favourite": "{name} favourited your status",
|
||||
"notification.follow": "{name} followed you",
|
||||
"notification.mention": "{name} mentioned you",
|
||||
"notification.poll": "A poll you have voted in has ended",
|
||||
"notification.reblog": "{name} boosted your status",
|
||||
"notifications.clear": "Clear notifications",
|
||||
"notifications.clear_confirmation": "Are you sure you want to permanently clear all your notifications?",
|
||||
"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": "Show",
|
||||
"notifications.column_settings.follow": "New followers:",
|
||||
"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.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.group": "{count} notifications",
|
||||
"poll.closed": "Closed",
|
||||
"poll.refresh": "Refresh",
|
||||
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
|
||||
"poll.vote": "Vote",
|
||||
"poll_button.add_poll": "Add a poll",
|
||||
"poll_button.remove_poll": "Remove poll",
|
||||
"privacy.change": "Adjust status privacy",
|
||||
"privacy.direct.long": "Post to mentioned users only",
|
||||
"privacy.direct.short": "Direct",
|
||||
"privacy.private.long": "Post to followers only",
|
||||
"privacy.private.short": "Followers-only",
|
||||
"privacy.public.long": "Post to public timelines",
|
||||
"privacy.public.short": "Public",
|
||||
"privacy.unlisted.long": "Do not show in public timelines",
|
||||
"privacy.unlisted.short": "Unlisted",
|
||||
"regeneration_indicator.label": "Loading…",
|
||||
"regeneration_indicator.sublabel": "Your home feed is being prepared!",
|
||||
"relative_time.days": "{number}d",
|
||||
"relative_time.hours": "{number}h",
|
||||
"relative_time.just_now": "now",
|
||||
"relative_time.minutes": "{number}m",
|
||||
"relative_time.seconds": "{number}s",
|
||||
"reply_indicator.cancel": "Cancel",
|
||||
"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.hint": "The report will be sent to your server moderators. You can provide an explanation of why you are reporting this account below:",
|
||||
"report.placeholder": "Additional comments",
|
||||
"report.submit": "Submit",
|
||||
"report.target": "Report {target}",
|
||||
"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.hashtags": "Hashtags",
|
||||
"search_results.statuses": "Toots",
|
||||
"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.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.embed": "Embed",
|
||||
"status.favourite": "Favourite",
|
||||
"status.filtered": "Filtered",
|
||||
"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 toot",
|
||||
"status.read_more": "Read more",
|
||||
"status.reblog": "Boost",
|
||||
"status.reblog_private": "Boost to original audience",
|
||||
"status.reblogged_by": "{name} boosted",
|
||||
"status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
|
||||
"status.redraft": "Delete & re-draft",
|
||||
"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.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",
|
||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
|
||||
"ui.beforeunload": "Your draft will be lost if you leave Mastodon.",
|
||||
"upload_area.title": "Drag & drop to upload",
|
||||
"upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||
"upload_error.limit": "File upload limit exceeded.",
|
||||
"upload_error.poll": "File upload not allowed with polls.",
|
||||
"upload_form.description": "Describe for the visually impaired",
|
||||
"upload_form.focus": "Crop",
|
||||
"upload_form.undo": "Delete",
|
||||
"upload_progress.label": "Uploading...",
|
||||
"video.close": "Close video",
|
||||
"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"
|
||||
}
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -162,14 +162,14 @@
|
|||
"introduction.federation.action": "Volgende",
|
||||
"introduction.federation.federated.headline": "Globaal",
|
||||
"introduction.federation.federated.text": "Openbare toots van mensen op andere servers in de fediverse verschijnen op de globale tijdlijn.",
|
||||
"introduction.federation.home.headline": "Home",
|
||||
"introduction.federation.home.headline": "Start",
|
||||
"introduction.federation.home.text": "Toots van mensen die jij volgt verschijnen onder start. Je kunt iedereen op elke server volgen!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.headline": "Lokaal",
|
||||
"introduction.federation.local.text": "Openbare toots van mensen die ook op jouw server zitten verschijnen op de lokale tijdlijn.",
|
||||
"introduction.interactions.action": "Introductie beëindigen!",
|
||||
"introduction.interactions.favourite.headline": "Favorieten",
|
||||
"introduction.interactions.favourite.text": "Je kunt door een toot aan jouw favorieten toe te voegen, deze voor later bewaren en de auteur laten weten dat je de toot leuk vind.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
"introduction.interactions.reblog.headline": "Boosten",
|
||||
"introduction.interactions.reblog.text": "Je kunt toots van andere mensen met jouw volgers delen door deze te boosten.",
|
||||
"introduction.interactions.reply.headline": "Reageren",
|
||||
"introduction.interactions.reply.text": "Je kunt op toots van andere mensen en op die van jezelf reageren, waardoor er een gesprek ontstaat.",
|
||||
|
@ -204,14 +204,14 @@
|
|||
"keyboard_shortcuts.search": "om het zoekvak te focussen",
|
||||
"keyboard_shortcuts.start": "om de \"Aan de slag\"-kolom te tonen",
|
||||
"keyboard_shortcuts.toggle_hidden": "om tekst achter een waarschuwing (CW) te tonen/verbergen",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "om media te tonen/verbergen",
|
||||
"keyboard_shortcuts.toot": "om een nieuwe toot te starten",
|
||||
"keyboard_shortcuts.unfocus": "om het tekst- en zoekvak te ontfocussen",
|
||||
"keyboard_shortcuts.up": "om omhoog te bewegen in de lijst",
|
||||
"lightbox.close": "Sluiten",
|
||||
"lightbox.next": "Volgende",
|
||||
"lightbox.previous": "Vorige",
|
||||
"lightbox.view_context": "View context",
|
||||
"lightbox.view_context": "Context tonen",
|
||||
"lists.account.add": "Aan lijst toevoegen",
|
||||
"lists.account.remove": "Uit lijst verwijderen",
|
||||
"lists.delete": "Lijst verwijderen",
|
||||
|
@ -237,7 +237,7 @@
|
|||
"navigation_bar.favourites": "Favorieten",
|
||||
"navigation_bar.filters": "Filters",
|
||||
"navigation_bar.follow_requests": "Volgverzoeken",
|
||||
"navigation_bar.follows_and_followers": "Follows and followers",
|
||||
"navigation_bar.follows_and_followers": "Volgers en gevolgden",
|
||||
"navigation_bar.info": "Over deze server",
|
||||
"navigation_bar.keyboard_shortcuts": "Sneltoetsen",
|
||||
"navigation_bar.lists": "Lijsten",
|
||||
|
@ -246,7 +246,7 @@
|
|||
"navigation_bar.personal": "Persoonlijk",
|
||||
"navigation_bar.pins": "Vastgezette toots",
|
||||
"navigation_bar.preferences": "Instellingen",
|
||||
"navigation_bar.profile_directory": "Profile directory",
|
||||
"navigation_bar.profile_directory": "Gebruikersgids",
|
||||
"navigation_bar.public_timeline": "Globale tijdlijn",
|
||||
"navigation_bar.security": "Beveiliging",
|
||||
"notification.favourite": "{name} voegde jouw toot als favoriet toe",
|
||||
|
@ -293,7 +293,7 @@
|
|||
"regeneration_indicator.label": "Aan het laden…",
|
||||
"regeneration_indicator.sublabel": "Jouw tijdlijn wordt aangemaakt!",
|
||||
"relative_time.days": "{number}d",
|
||||
"relative_time.hours": "{number}h",
|
||||
"relative_time.hours": "{number}u",
|
||||
"relative_time.just_now": "nu",
|
||||
"relative_time.minutes": "{number}m",
|
||||
"relative_time.seconds": "{number}s",
|
||||
|
@ -324,7 +324,7 @@
|
|||
"status.delete": "Verwijderen",
|
||||
"status.detailed_status": "Uitgebreide gespreksweergave",
|
||||
"status.direct": "Directe toot @{name}",
|
||||
"status.embed": "Embed",
|
||||
"status.embed": "Insluiten",
|
||||
"status.favourite": "Favoriet",
|
||||
"status.filtered": "Gefilterd",
|
||||
"status.load_more": "Meer laden",
|
||||
|
@ -337,7 +337,7 @@
|
|||
"status.pin": "Aan profielpagina vastmaken",
|
||||
"status.pinned": "Vastgemaakte toot",
|
||||
"status.read_more": "Meer lezen",
|
||||
"status.reblog": "Boost",
|
||||
"status.reblog": "Boosten",
|
||||
"status.reblog_private": "Boost naar oorspronkelijke ontvangers",
|
||||
"status.reblogged_by": "{name} boostte",
|
||||
"status.reblogs.empty": "Niemand heeft deze toot nog geboost. Wanneer iemand dit doet, valt dat hier te zien.",
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -81,14 +81,14 @@
|
|||
"compose_form.poll.remove_option": "Usuń tę opcję",
|
||||
"compose_form.publish": "Wyślij",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"compose_form.sensitive.hide": "Mark media as sensitive",
|
||||
"compose_form.sensitive.hide": "Oznacz multimedia jako wrażliwe",
|
||||
"compose_form.sensitive.marked": "Zawartość multimedia jest oznaczona jako wrażliwa",
|
||||
"compose_form.sensitive.unmarked": "Zawartość multimedialna nie jest oznaczona jako wrażliwa",
|
||||
"compose_form.spoiler.marked": "Tekst jest ukryty za ostrzeżeniem",
|
||||
"compose_form.spoiler.unmarked": "Tekst nie jest ukryty",
|
||||
"compose_form.spoiler_placeholder": "Wprowadź swoje ostrzeżenie o zawartości",
|
||||
"confirmation_modal.cancel": "Anuluj",
|
||||
"confirmations.block.block_and_report": "Block & Report",
|
||||
"confirmations.block.block_and_report": "Zablokuj i zgłoś",
|
||||
"confirmations.block.confirm": "Zablokuj",
|
||||
"confirmations.block.message": "Czy na pewno chcesz zablokować {name}?",
|
||||
"confirmations.delete.confirm": "Usuń",
|
||||
|
@ -122,7 +122,7 @@
|
|||
"emoji_button.symbols": "Symbole",
|
||||
"emoji_button.travel": "Podróże i miejsca",
|
||||
"empty_column.account_timeline": "Brak wpisów tutaj!",
|
||||
"empty_column.account_unavailable": "Profile unavailable",
|
||||
"empty_column.account_unavailable": "Profil niedostępny",
|
||||
"empty_column.blocks": "Nie zablokowałeś(-aś) jeszcze żadnego użytkownika.",
|
||||
"empty_column.community": "Lokalna oś czasu jest pusta. Napisz coś publicznie, aby zagaić!",
|
||||
"empty_column.direct": "Nie masz żadnych wiadomości bezpośrednich. Kiedy dostaniesz lub wyślesz jakąś, pojawi się ona tutaj.",
|
||||
|
@ -208,14 +208,14 @@
|
|||
"keyboard_shortcuts.search": "aby przejść do pola wyszukiwania",
|
||||
"keyboard_shortcuts.start": "aby otworzyć kolumnę „Rozpocznij”",
|
||||
"keyboard_shortcuts.toggle_hidden": "aby wyświetlić lub ukryć wpis spod CW",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "by pokazać/ukryć multimedia",
|
||||
"keyboard_shortcuts.toot": "aby utworzyć nowy wpis",
|
||||
"keyboard_shortcuts.unfocus": "aby opuścić pole wyszukiwania/pisania",
|
||||
"keyboard_shortcuts.up": "aby przejść na górę listy",
|
||||
"lightbox.close": "Zamknij",
|
||||
"lightbox.next": "Następne",
|
||||
"lightbox.previous": "Poprzednie",
|
||||
"lightbox.view_context": "View context",
|
||||
"lightbox.view_context": "Pokaż kontekst",
|
||||
"lists.account.add": "Dodaj do listy",
|
||||
"lists.account.remove": "Usunąć z listy",
|
||||
"lists.delete": "Usuń listę",
|
||||
|
@ -241,7 +241,7 @@
|
|||
"navigation_bar.favourites": "Ulubione",
|
||||
"navigation_bar.filters": "Wyciszone słowa",
|
||||
"navigation_bar.follow_requests": "Prośby o śledzenie",
|
||||
"navigation_bar.follows_and_followers": "Follows and followers",
|
||||
"navigation_bar.follows_and_followers": "Śledzeni i śledzący",
|
||||
"navigation_bar.info": "Szczegółowe informacje",
|
||||
"navigation_bar.keyboard_shortcuts": "Skróty klawiszowe",
|
||||
"navigation_bar.lists": "Listy",
|
||||
|
@ -251,7 +251,7 @@
|
|||
"navigation_bar.personal": "Osobiste",
|
||||
"navigation_bar.pins": "Przypięte wpisy",
|
||||
"navigation_bar.preferences": "Preferencje",
|
||||
"navigation_bar.profile_directory": "Profile directory",
|
||||
"navigation_bar.profile_directory": "Katalog profilów",
|
||||
"navigation_bar.public_timeline": "Globalna oś czasu",
|
||||
"navigation_bar.security": "Bezpieczeństwo",
|
||||
"notification.favourite": "{name} dodał(a) Twój wpis do ulubionych",
|
||||
|
@ -278,7 +278,7 @@
|
|||
"notifications.filter.favourites": "Ulubione",
|
||||
"notifications.filter.follows": "Śledzenia",
|
||||
"notifications.filter.mentions": "Wspomienia",
|
||||
"notifications.filter.polls": "Poll results",
|
||||
"notifications.filter.polls": "Wyniki głosowania",
|
||||
"notifications.group": "{count, number} {count, plural, one {powiadomienie} few {powiadomienia} many {powiadomień} more {powiadomień}}",
|
||||
"poll.closed": "Zamknięte",
|
||||
"poll.refresh": "Odśwież",
|
||||
|
@ -312,7 +312,7 @@
|
|||
"search.placeholder": "Szukaj",
|
||||
"search_popout.search_format": "Zaawansowane wyszukiwanie",
|
||||
"search_popout.tips.full_text": "Pozwala na wyszukiwanie wpisów które napisałeś(-aś), dodałeś(-aś) do ulubionych lub podbiłeś(-aś), w których o Tobie wspomniano, oraz pasujące nazwy użytkowników, pełne nazwy i hashtagi.",
|
||||
"search_popout.tips.hashtag": "hashtag",
|
||||
"search_popout.tips.hashtag": "hasztag",
|
||||
"search_popout.tips.status": "wpis",
|
||||
"search_popout.tips.text": "Proste wyszukiwanie pasujących pseudonimów, nazw użytkowników i hashtagów",
|
||||
"search_popout.tips.user": "użytkownik",
|
||||
|
@ -376,7 +376,7 @@
|
|||
"upload_area.title": "Przeciągnij i upuść aby wysłać",
|
||||
"upload_button.label": "Dodaj zawartość multimedialną (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||
"upload_error.limit": "Przekroczono limit plików do wysłania.",
|
||||
"upload_error.poll": "File upload not allowed with polls.",
|
||||
"upload_error.poll": "Dołączanie plików nie dozwolone z głosowaniami.",
|
||||
"upload_form.description": "Wprowadź opis dla niewidomych i niedowidzących",
|
||||
"upload_form.focus": "Dopasuj podgląd",
|
||||
"upload_form.undo": "Usuń",
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
"account.follows": "Подписки",
|
||||
"account.follows.empty": "Этот пользователь ни на кого не подписан.",
|
||||
"account.follows_you": "Подписан(а) на Вас",
|
||||
"account.hide_reblogs": "Скрыть продвижения от @{name}",
|
||||
"account.hide_reblogs": "Скрыть реблоги от @{name}",
|
||||
"account.link_verified_on": "Владение этой ссылкой было проверено {date}",
|
||||
"account.locked_info": "Это закрытый аккаунт. Его владелец вручную одобряет подписчиков.",
|
||||
"account.media": "Медиа",
|
||||
|
@ -77,7 +77,7 @@
|
|||
"compose_form.poll.remove_option": "Удалить этот вариант",
|
||||
"compose_form.publish": "Трубить",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"compose_form.sensitive.hide": "Mark media as sensitive",
|
||||
"compose_form.sensitive.hide": "Пометить медиафайл как чувствительный",
|
||||
"compose_form.sensitive.marked": "Медиафайлы не отмечены как чувствительные",
|
||||
"compose_form.sensitive.unmarked": "Медиафайлы не отмечены как чувствительные",
|
||||
"compose_form.spoiler.marked": "Текст скрыт за предупреждением",
|
||||
|
@ -204,14 +204,14 @@
|
|||
"keyboard_shortcuts.search": "перейти к поиску",
|
||||
"keyboard_shortcuts.start": "перейти к разделу \"добро пожаловать\"",
|
||||
"keyboard_shortcuts.toggle_hidden": "показать/скрыть текст за предупреждением",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "показать/скрыть медиафайлы",
|
||||
"keyboard_shortcuts.toot": "начать писать новый пост",
|
||||
"keyboard_shortcuts.unfocus": "убрать фокус с поля ввода/поиска",
|
||||
"keyboard_shortcuts.up": "вверх по списку",
|
||||
"lightbox.close": "Закрыть",
|
||||
"lightbox.next": "Далее",
|
||||
"lightbox.previous": "Назад",
|
||||
"lightbox.view_context": "View context",
|
||||
"lightbox.view_context": "Контекст",
|
||||
"lists.account.add": "Добавить в список",
|
||||
"lists.account.remove": "Убрать из списка",
|
||||
"lists.delete": "Удалить список",
|
||||
|
@ -237,7 +237,7 @@
|
|||
"navigation_bar.favourites": "Понравившееся",
|
||||
"navigation_bar.filters": "Заглушенные слова",
|
||||
"navigation_bar.follow_requests": "Запросы на подписку",
|
||||
"navigation_bar.follows_and_followers": "Follows and followers",
|
||||
"navigation_bar.follows_and_followers": "Подписки и подписчики",
|
||||
"navigation_bar.info": "Об узле",
|
||||
"navigation_bar.keyboard_shortcuts": "Сочетания клавиш",
|
||||
"navigation_bar.lists": "Списки",
|
||||
|
@ -246,7 +246,7 @@
|
|||
"navigation_bar.personal": "Личное",
|
||||
"navigation_bar.pins": "Закреплённые посты",
|
||||
"navigation_bar.preferences": "Опции",
|
||||
"navigation_bar.profile_directory": "Profile directory",
|
||||
"navigation_bar.profile_directory": "Каталог профилей",
|
||||
"navigation_bar.public_timeline": "Глобальная лента",
|
||||
"navigation_bar.security": "Безопасность",
|
||||
"notification.favourite": "{name} понравился Ваш статус",
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -253,7 +253,7 @@
|
|||
"notification.follow": "{name} zuri t’ju ndjekë",
|
||||
"notification.mention": "{name} ju ka përmendur",
|
||||
"notification.poll": "A poll you have voted in has ended",
|
||||
"notification.reblog": "përforcoi gjendjen tuaj",
|
||||
"notification.reblog": "{name} përforcoi gjendjen tuaj",
|
||||
"notifications.clear": "Pastroji njoftimet",
|
||||
"notifications.clear_confirmation": "Jeni i sigurt se doni të pastrohen përgjithmonë krejt njoftimet tuaja?",
|
||||
"notifications.column_settings.alert": "Njoftime desktopi",
|
||||
|
@ -274,7 +274,7 @@
|
|||
"notifications.filter.follows": "Ndjekje",
|
||||
"notifications.filter.mentions": "Përmendje",
|
||||
"notifications.filter.polls": "Poll results",
|
||||
"notifications.group": "%(count)s njoftime",
|
||||
"notifications.group": "{count}s njoftime",
|
||||
"poll.closed": "Closed",
|
||||
"poll.refresh": "Refresh",
|
||||
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"account.add_or_remove_from_list": "Add or Remove from lists",
|
||||
"account.add_or_remove_from_list": "Lägg till eller ta bort från listor",
|
||||
"account.badges.bot": "Robot",
|
||||
"account.block": "Blockera @{name}",
|
||||
"account.block_domain": "Dölj allt från {domain}",
|
||||
|
@ -10,7 +10,7 @@
|
|||
"account.endorse": "Feature on profile",
|
||||
"account.follow": "Följ",
|
||||
"account.followers": "Följare",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers.empty": "Ingen följer denna användaren än.",
|
||||
"account.follows": "Följer",
|
||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||
"account.follows_you": "Följer dig",
|
||||
|
@ -36,7 +36,7 @@
|
|||
"account.unmute": "Ta bort tystad @{name}",
|
||||
"account.unmute_notifications": "Återaktivera notifikationer från @{name}",
|
||||
"alert.unexpected.message": "Ett oväntat fel uppstod.",
|
||||
"alert.unexpected.title": "Oops!",
|
||||
"alert.unexpected.title": "Whups!",
|
||||
"boost_modal.combo": "Du kan trycka {combo} för att slippa denna nästa gång",
|
||||
"bundle_column_error.body": "Något gick fel när du laddade denna komponent.",
|
||||
"bundle_column_error.retry": "Försök igen",
|
||||
|
@ -151,7 +151,7 @@
|
|||
"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_mode.none": "Ingen av dessa",
|
||||
"hashtag.column_settings.tag_toggle": "Include additional tags in this column",
|
||||
"home.column_settings.basic": "Grundläggande",
|
||||
"home.column_settings.show_reblogs": "Visa knuffar",
|
||||
|
@ -159,14 +159,14 @@
|
|||
"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}}",
|
||||
"introduction.federation.action": "Next",
|
||||
"introduction.federation.action": "Nästa",
|
||||
"introduction.federation.federated.headline": "Federated",
|
||||
"introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.",
|
||||
"introduction.federation.home.headline": "Home",
|
||||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
@ -216,7 +216,7 @@
|
|||
"lists.account.remove": "Ta bort från lista",
|
||||
"lists.delete": "Radera lista",
|
||||
"lists.edit": "Redigera lista",
|
||||
"lists.edit.submit": "Change title",
|
||||
"lists.edit.submit": "Ändra titel",
|
||||
"lists.new.create": "Lägg till lista",
|
||||
"lists.new.title_placeholder": "Ny listrubrik",
|
||||
"lists.search": "Sök bland personer du följer",
|
||||
|
@ -226,7 +226,7 @@
|
|||
"missing_indicator.label": "Hittades inte",
|
||||
"missing_indicator.sublabel": "Den här resursen kunde inte hittas",
|
||||
"mute_modal.hide_notifications": "Dölj notifikationer från denna användare?",
|
||||
"navigation_bar.apps": "Mobile apps",
|
||||
"navigation_bar.apps": "Mobilappar",
|
||||
"navigation_bar.blocks": "Blockerade användare",
|
||||
"navigation_bar.community_timeline": "Lokal tidslinje",
|
||||
"navigation_bar.compose": "Compose new toot",
|
||||
|
@ -270,15 +270,15 @@
|
|||
"notifications.column_settings.sound": "Spela upp ljud",
|
||||
"notifications.filter.all": "All",
|
||||
"notifications.filter.boosts": "Boosts",
|
||||
"notifications.filter.favourites": "Favourites",
|
||||
"notifications.filter.favourites": "Favoriter",
|
||||
"notifications.filter.follows": "Follows",
|
||||
"notifications.filter.mentions": "Mentions",
|
||||
"notifications.filter.polls": "Poll results",
|
||||
"notifications.group": "{count} aviseringar",
|
||||
"poll.closed": "Closed",
|
||||
"poll.refresh": "Refresh",
|
||||
"poll.refresh": "Ladda om",
|
||||
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
|
||||
"poll.vote": "Vote",
|
||||
"poll.vote": "Rösta",
|
||||
"poll_button.add_poll": "Add a poll",
|
||||
"poll_button.remove_poll": "Remove poll",
|
||||
"privacy.change": "Justera sekretess",
|
||||
|
@ -336,7 +336,7 @@
|
|||
"status.open": "Utvidga denna status",
|
||||
"status.pin": "Fäst i profil",
|
||||
"status.pinned": "Fäst toot",
|
||||
"status.read_more": "Read more",
|
||||
"status.read_more": "Läs mer",
|
||||
"status.reblog": "Knuff",
|
||||
"status.reblog_private": "Knuffa till de ursprungliga åhörarna",
|
||||
"status.reblogged_by": "{name} knuffade",
|
||||
|
@ -351,7 +351,7 @@
|
|||
"status.show_less_all": "Visa mindre för alla",
|
||||
"status.show_more": "Visa mer",
|
||||
"status.show_more_all": "Visa mer för alla",
|
||||
"status.show_thread": "Show thread",
|
||||
"status.show_thread": "Visa tråd",
|
||||
"status.unmute_conversation": "Öppna konversation",
|
||||
"status.unpin": "Ångra fäst i profil",
|
||||
"suggestions.dismiss": "Dismiss suggestion",
|
||||
|
|
|
@ -1,388 +1,388 @@
|
|||
{
|
||||
"account.add_or_remove_from_list": "Add or Remove from lists",
|
||||
"account.badges.bot": "Bot",
|
||||
"account.add_or_remove_from_list": "பட்டியல்களில் இருந்து சேர் அல்லது நீக்குக",
|
||||
"account.badges.bot": "பாட்",
|
||||
"account.block": "Block @{name}",
|
||||
"account.block_domain": "Hide everything from {domain}",
|
||||
"account.blocked": "Blocked",
|
||||
"account.direct": "Direct message @{name}",
|
||||
"account.domain_blocked": "Domain hidden",
|
||||
"account.edit_profile": "Edit profile",
|
||||
"account.endorse": "Feature on profile",
|
||||
"account.follow": "Follow",
|
||||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.follows": "Follows",
|
||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||
"account.follows_you": "Follows you",
|
||||
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||
"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.block_domain": "எல்லாவற்றையும் மறைக்க {domain}",
|
||||
"account.blocked": "தடைமுட்டுகள்",
|
||||
"account.direct": "நேரடி செய்தி @{name}",
|
||||
"account.domain_blocked": "டொமைன் மறைக்கப்பட்டது",
|
||||
"account.edit_profile": "சுயவிவரத்தைத் திருத்தவும்",
|
||||
"account.endorse": "சுயவிவரத்தில் அம்சம்",
|
||||
"account.follow": "பின்பற்று",
|
||||
"account.followers": "பின்பற்றுபவர்கள்",
|
||||
"account.followers.empty": "இதுவரை யாரும் இந்த பயனரைப் பின்தொடரவில்லை.",
|
||||
"account.follows": "பின்பற்று",
|
||||
"account.follows.empty": "இந்த பயனர் இதுவரை யாரையும் பின்தொடரவில்லை.",
|
||||
"account.follows_you": "நீ பின் தொடர்கிறாய்",
|
||||
"account.hide_reblogs": "இருந்து ஊக்கியாக மறை @{name}",
|
||||
"account.link_verified_on": "இந்த இணைப்பை உரிமையாளர் சரிபார்க்கப்பட்டது {date}",
|
||||
"account.locked_info": "இந்தக் கணக்கு தனியுரிமை நிலை பூட்டப்பட்டுள்ளது. அவர்களைப் பின்தொடர்பவர் யார் என்பதை உரிமையாளர் கைமுறையாக மதிப்பாய்வு செய்கிறார்.",
|
||||
"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.mention": "குறிப்பிடு @{name}",
|
||||
"account.moved_to": "{name} நகர்த்தப்பட்டது:",
|
||||
"account.mute": "ஊமையான @{name}",
|
||||
"account.mute_notifications": "அறிவிப்புகளை முடக்கு @{name}",
|
||||
"account.muted": "முடக்கியது",
|
||||
"account.posts": "Toots",
|
||||
"account.posts_with_replies": "Toots and replies",
|
||||
"account.posts_with_replies": "Toots மற்றும் பதில்கள்",
|
||||
"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.unblock": "Unblock @{name}",
|
||||
"account.unblock_domain": "Unhide {domain}",
|
||||
"account.unendorse": "Don't feature on profile",
|
||||
"account.unfollow": "Unfollow",
|
||||
"account.unmute": "Unmute @{name}",
|
||||
"account.unmute_notifications": "Unmute notifications from @{name}",
|
||||
"alert.unexpected.message": "An unexpected error occurred.",
|
||||
"alert.unexpected.title": "Oops!",
|
||||
"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",
|
||||
"account.requested": "ஒப்புதலுக்காக காத்திருக்கிறது. கோரிக்கையை ரத்துசெய்ய கிளிக் செய்க",
|
||||
"account.share": "பங்கிடு @{name}'s மனித முகத்தின்",
|
||||
"account.show_reblogs": "காட்டு boosts இருந்து @{name}",
|
||||
"account.unblock": "விடுவி @{name}",
|
||||
"account.unblock_domain": "காண்பி {domain}",
|
||||
"account.unendorse": "சுயவிவரத்தில் அம்சம் இல்லை",
|
||||
"account.unfollow": "பின்தொடராட்",
|
||||
"account.unmute": "தடுப்புநீக்கு @{name}",
|
||||
"account.unmute_notifications": "அறிவிப்புகளை அகற்றவும் @{name}",
|
||||
"alert.unexpected.message": "எதிர் பாராத பிழை ஏற்பட்டு விட்டது.",
|
||||
"alert.unexpected.title": "அச்சச்சோ!",
|
||||
"boost_modal.combo": "நீங்கள் அழுத்தவும் {combo} அடுத்த முறை தவிர்க்கவும்",
|
||||
"bundle_column_error.body": "இந்த கூறுகளை ஏற்றும்போது ஏதோ தவறு ஏற்பட்டது.",
|
||||
"bundle_column_error.retry": "மீண்டும் முயற்சி செய்",
|
||||
"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.community": "Local timeline",
|
||||
"column.direct": "Direct messages",
|
||||
"column.domain_blocks": "Hidden domains",
|
||||
"column.favourites": "Favourites",
|
||||
"column.follow_requests": "Follow requests",
|
||||
"bundle_modal_error.close": "நெருக்கமாக",
|
||||
"bundle_modal_error.message": "இந்த கூறுகளை ஏற்றும்போது ஏதோ தவறு ஏற்பட்டது.",
|
||||
"bundle_modal_error.retry": "மீண்டும் முயற்சி செய்",
|
||||
"column.blocks": "தடுக்கப்பட்ட பயனர்கள்",
|
||||
"column.community": "உள்ளூர் காலக்கெடு",
|
||||
"column.direct": "நேரடி செய்திகள்",
|
||||
"column.domain_blocks": "மறைந்த களங்கள்",
|
||||
"column.favourites": "விருப்பத்துக்குகந்த",
|
||||
"column.follow_requests": "கோரிக்கைகளை பின்பற்றவும்",
|
||||
"column.home": "Home",
|
||||
"column.lists": "Lists",
|
||||
"column.mutes": "Muted users",
|
||||
"column.lists": "குதிரை வீர்ர்கள்",
|
||||
"column.mutes": "முடக்கப்பட்ட பயனர்கள்",
|
||||
"column.notifications": "Notifications",
|
||||
"column.pins": "Pinned toot",
|
||||
"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.media_only": "Media Only",
|
||||
"column.public": "கூட்டாட்சி காலக்கெடு",
|
||||
"column_back_button.label": "ஆதரி",
|
||||
"column_header.hide_settings": "அமைப்புகளை மறை",
|
||||
"column_header.moveLeft_settings": "நெடுவரிசையை இடதுபுறமாக நகர்த்தவும்",
|
||||
"column_header.moveRight_settings": "நெடுவரிசை வலது புறமாக நகர்த்து",
|
||||
"column_header.pin": "குண்டூசி",
|
||||
"column_header.show_settings": "அமைப்புகளைக் காட்டு",
|
||||
"column_header.unpin": "பொருத்தப்படாத",
|
||||
"column_subheading.settings": "அமைப்புகள்",
|
||||
"community.column_settings.media_only": "மீடியா மட்டுமே",
|
||||
"compose_form.direct_message_warning": "This toot will only be sent to all the mentioned users.",
|
||||
"compose_form.direct_message_warning_learn_more": "Learn more",
|
||||
"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.lock": "locked",
|
||||
"compose_form.direct_message_warning_learn_more": "மேலும் அறிக",
|
||||
"compose_form.hashtag_warning": "இந்த toot பட்டியலிடப்படாதது போல எந்த ஹேஸ்டேக்கின் கீழ் பட்டியலிடப்படாது. ஹேஸ்டேக் மூலம் பொது டோட்டல்கள் மட்டுமே தேட முடியும்.",
|
||||
"compose_form.lock_disclaimer": "உங்கள் கணக்கு அல்ல {locked}. உங்களுடைய பின்தொடர்பவர் மட்டும் இடுகைகளை யாராவது காணலாம்.",
|
||||
"compose_form.lock_disclaimer.lock": "தாழிடு",
|
||||
"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.add_option": "ஒரு விருப்பத்தைச் சேர்க்கவும்",
|
||||
"compose_form.poll.duration": "வாக்கெடுப்பு காலம்",
|
||||
"compose_form.poll.option_placeholder": "தேர்ந்தெடுப்ப {number}",
|
||||
"compose_form.poll.remove_option": "இந்த விருப்பத்தை அகற்றவும்",
|
||||
"compose_form.publish": "Toot",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"compose_form.sensitive.hide": "Mark media as sensitive",
|
||||
"compose_form.sensitive.marked": "Media is marked as sensitive",
|
||||
"compose_form.sensitive.unmarked": "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",
|
||||
"compose_form.sensitive.marked": "ஊடகம் உணர்திறன் என குறிக்கப்பட்டுள்ளது",
|
||||
"compose_form.sensitive.unmarked": "ஊடகம் உணர்திறன் என குறிக்கப்படவில்லை",
|
||||
"compose_form.spoiler.marked": "எச்சரிக்கை பின்னால் உரை மறைக்கப்பட்டுள்ளது",
|
||||
"compose_form.spoiler.unmarked": "உரை மறைக்கப்படவில்லை",
|
||||
"compose_form.spoiler_placeholder": "இங்கே உங்கள் எச்சரிக்கையை எழுதுங்கள்",
|
||||
"confirmation_modal.cancel": "எதிராணை",
|
||||
"confirmations.block.block_and_report": "Block & Report",
|
||||
"confirmations.block.confirm": "Block",
|
||||
"confirmations.block.message": "Are you sure you want to block {name}?",
|
||||
"confirmations.block.message": "நீங்கள் நிச்சயமாக தடைசெய்ய விரும்புகிறீர்களா {name}?",
|
||||
"confirmations.delete.confirm": "Delete",
|
||||
"confirmations.delete.message": "Are you sure you want to delete this status?",
|
||||
"confirmations.delete.message": "இந்த நிலையை நிச்சயமாக நீக்க விரும்புகிறீர்களா?",
|
||||
"confirmations.delete_list.confirm": "Delete",
|
||||
"confirmations.delete_list.message": "Are you sure you want to permanently delete this list?",
|
||||
"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.mute.confirm": "Mute",
|
||||
"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}?",
|
||||
"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",
|
||||
"confirmations.delete_list.message": "இந்த பட்டியலில் நிரந்தரமாக நீக்க விரும்புகிறீர்களா?",
|
||||
"confirmations.domain_block.confirm": "முழு டொமைனை மறை",
|
||||
"confirmations.domain_block.message": "நீங்கள் உண்மையில், நிச்சயமாக நீங்கள் முழு தடுக்க வேண்டும் நிச்சயமாக {domain}? பெரும்பாலான சந்தர்ப்பங்களில் ஒரு சில இலக்குகள் அல்லது மியூட்கள் போதுமானவை மற்றும் சிறந்தவை. எந்த பொது நேரத்திலும் அல்லது உங்கள் அறிவிப்புகளிலும் அந்தக் களத்திலிருந்து உள்ளடக்கத்தை நீங்கள் பார்க்க மாட்டீர்கள். அந்த களத்தில் இருந்து உங்கள் ஆதரவாளர்கள் அகற்றப்படுவார்கள்.",
|
||||
"confirmations.mute.confirm": "ஊமையான",
|
||||
"confirmations.mute.message": "நிச்சயமாக நீங்கள் முடக்க விரும்புகிறீர்களா {name}?",
|
||||
"confirmations.redraft.confirm": "நீக்கு & redraft",
|
||||
"confirmations.redraft.message": "நிச்சயமாக இந்த நிலையை நீக்கி, அதை மறுபடியும் உருவாக்க வேண்டுமா? பிடித்தவை மற்றும் ஊக்கங்கள் இழக்கப்படும், மற்றும் அசல் இடுகையில் பதில்கள் அனாதையான இருக்கும்.",
|
||||
"confirmations.reply.confirm": "பதில்",
|
||||
"confirmations.reply.message": "இப்போது பதில், தற்போது நீங்கள் உருவாக்கும் செய்தி மேலெழுதப்படும். நீங்கள் தொடர விரும்புகிறீர்களா?",
|
||||
"confirmations.unfollow.confirm": "பின்தொடராட்",
|
||||
"confirmations.unfollow.message": "நிச்சயமாக நீங்கள் பின்தொடர விரும்புகிறீர்களா {name}?",
|
||||
"embed.instructions": "கீழே உள்ள குறியீட்டை நகலெடுப்பதன் மூலம் உங்கள் இணையதளத்தில் இந்த நிலையை உட்பொதிக்கவும்.",
|
||||
"embed.preview": "இது போன்ற தோற்றத்தை இங்கு காணலாம்:",
|
||||
"emoji_button.activity": "நடவடிக்கை",
|
||||
"emoji_button.custom": "வழக்கம்",
|
||||
"emoji_button.flags": "கொடி",
|
||||
"emoji_button.food": "உணவு மற்றும் பானம்",
|
||||
"emoji_button.label": "Insert emoji",
|
||||
"emoji_button.nature": "Nature",
|
||||
"emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻",
|
||||
"emoji_button.objects": "Objects",
|
||||
"emoji_button.nature": "இயற்கை",
|
||||
"emoji_button.not_found": "எமோஜோஸ் இல்லை! (╯°□°)╯︵ ┻━┻",
|
||||
"emoji_button.objects": "மறுப்ப கூறு",
|
||||
"emoji_button.people": "People",
|
||||
"emoji_button.recent": "Frequently used",
|
||||
"emoji_button.search": "Search...",
|
||||
"emoji_button.search_results": "Search results",
|
||||
"emoji_button.recent": "அடிக்கடி பயன்படுத்தப்படும்",
|
||||
"emoji_button.search": "தேடல்...",
|
||||
"emoji_button.search_results": "தேடல் முடிவுகள்",
|
||||
"emoji_button.symbols": "Symbols",
|
||||
"emoji_button.travel": "Travel & Places",
|
||||
"empty_column.account_timeline": "No toots here!",
|
||||
"empty_column.account_unavailable": "Profile unavailable",
|
||||
"empty_column.blocks": "You haven't blocked any users yet.",
|
||||
"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 hidden domains yet.",
|
||||
"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.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! Visit {public} or use search to get started and meet other users.",
|
||||
"empty_column.home.public_timeline": "the public timeline",
|
||||
"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. Interact with others to start the conversation.",
|
||||
"empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other instances to fill it up",
|
||||
"follow_request.authorize": "Authorize",
|
||||
"follow_request.reject": "Reject",
|
||||
"getting_started.developers": "Developers",
|
||||
"getting_started.directory": "Profile directory",
|
||||
"emoji_button.travel": "சுற்றுலா மற்றும் இடங்கள்",
|
||||
"empty_column.account_timeline": "இல்லை toots இங்கே!",
|
||||
"empty_column.account_unavailable": "சுயவிவரம் கிடைக்கவில்லை",
|
||||
"empty_column.blocks": "இதுவரை எந்த பயனர்களும் தடுக்கவில்லை.",
|
||||
"empty_column.community": "உள்ளூர் காலக்கெடு காலியாக உள்ளது. பந்தை உருட்டிக்கொள்வதற்கு பகிரங்கமாக ஒன்றை எழுதுங்கள்!",
|
||||
"empty_column.direct": "உங்களிடம் நேரடியான செய்திகள் எதுவும் இல்லை. நீங்கள் ஒன்றை அனுப்பி அல்லது பெறும் போது, அது இங்கே காண்பிக்கும்.",
|
||||
"empty_column.domain_blocks": "இன்னும் மறைந்த களங்கள் இல்லை.",
|
||||
"empty_column.favourited_statuses": "இதுவரை உங்களுக்கு பிடித்த டோட்டுகள் இல்லை. உங்களுக்கு பிடித்த ஒரு போது, அது இங்கே காண்பிக்கும்.",
|
||||
"empty_column.favourites": "இதுவரை யாரும் இந்தத் தட்டுக்கு ஆதரவில்லை. யாராவது செய்தால், அவர்கள் இங்கே காண்பார்கள்.",
|
||||
"empty_column.follow_requests": "உங்களுக்கு இன்னும் எந்தவொரு கோரிக்கைகளும் இல்லை. நீங்கள் ஒன்றைப் பெற்றுக்கொண்டால், அது இங்கே காண்பிக்கும்.",
|
||||
"empty_column.hashtag": "இன்னும் இந்த ஹேஸ்டேக்கில் எதுவும் இல்லை.",
|
||||
"empty_column.home": "உங்கள் வீட்டுக் காலம் காலியாக உள்ளது! வருகை {public} அல்லது தொடங்குவதற்கு தேடலைப் பயன்படுத்தலாம் மற்றும் பிற பயனர்களை சந்திக்கவும்.",
|
||||
"empty_column.home.public_timeline": "பொது காலக்கெடு",
|
||||
"empty_column.list": "இந்த பட்டியலில் இதுவரை எதுவும் இல்லை. இந்த பட்டியலின் உறுப்பினர்கள் புதிய நிலைகளை இடுகையிடுகையில், அவை இங்கே தோன்றும்.",
|
||||
"empty_column.lists": "உங்களுக்கு இதுவரை எந்த பட்டியலும் இல்லை. நீங்கள் ஒன்றை உருவாக்கினால், அது இங்கே காண்பிக்கும்.",
|
||||
"empty_column.mutes": "நீங்கள் இதுவரை எந்த பயனர்களையும் முடக்கியிருக்கவில்லை.",
|
||||
"empty_column.notifications": "உங்களிடம் எந்த அறிவிப்புகளும் இல்லை. உரையாடலைத் தொடங்க பிறருடன் தொடர்புகொள்ளவும்.",
|
||||
"empty_column.public": "இங்கே எதுவும் இல்லை! பகிரங்கமாக ஒன்றை எழுதவும் அல்லது மற்ற நிகழ்வுகளிலிருந்து பயனர்களை அதை நிரப்புவதற்கு கைமுறையாக பின்பற்றவும்",
|
||||
"follow_request.authorize": "அதிகாரமளி",
|
||||
"follow_request.reject": "விலக்கு",
|
||||
"getting_started.developers": "உருவாக்குநர்கள்",
|
||||
"getting_started.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",
|
||||
"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}}",
|
||||
"introduction.federation.action": "Next",
|
||||
"getting_started.heading": "தொடங்குதல்",
|
||||
"getting_started.invite": "நபர்களை அழைக்கவும்",
|
||||
"getting_started.open_source_notice": "Mastodon திறந்த மூல மென்பொருள். GitHub இல் நீங்கள் பங்களிக்கவோ அல்லது புகார் அளிக்கவோ முடியும் {github}.",
|
||||
"getting_started.security": "பத்திரம்",
|
||||
"getting_started.terms": "சேவை விதிமுறைகள்",
|
||||
"hashtag.column_header.tag_mode.all": "மற்றும் {additional}",
|
||||
"hashtag.column_header.tag_mode.any": "அல்லது {additional}",
|
||||
"hashtag.column_header.tag_mode.none": "இல்லாமல் {additional}",
|
||||
"hashtag.column_settings.select.no_options_message": "பரிந்துரைகள் எதுவும் இல்லை",
|
||||
"hashtag.column_settings.select.placeholder": "ஹாஷ்டேகுகளை உள்ளிடவும் …",
|
||||
"hashtag.column_settings.tag_mode.all": "இவை அனைத்தும்",
|
||||
"hashtag.column_settings.tag_mode.any": "இவை எதையும்",
|
||||
"hashtag.column_settings.tag_mode.none": "இவற்றில் ஏதுமில்லை",
|
||||
"hashtag.column_settings.tag_toggle": "இந்த நெடுவரிசையில் கூடுதல் குறிச்சொற்களை சேர்க்கவும்",
|
||||
"home.column_settings.basic": "அடிப்படையான",
|
||||
"home.column_settings.show_reblogs": "காட்டு boosts",
|
||||
"home.column_settings.show_replies": "பதில்களைக் காண்பி",
|
||||
"intervals.full.days": "{number, plural, one {# day} மற்ற {# days}}",
|
||||
"intervals.full.hours": "{number, plural, one {# hour} மற்ற {# hours}}",
|
||||
"intervals.full.minutes": "{number, plural, one {# minute} மற்ற {# minutes}}",
|
||||
"introduction.federation.action": "அடுத்த",
|
||||
"introduction.federation.federated.headline": "Federated",
|
||||
"introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.",
|
||||
"introduction.federation.federated.text": "கூட்டமைப்பின் பிற சேவையகங்களிலிருந்து பொது பதிவுகள் கூட்டப்பட்ட காலக்கெடுவில் தோன்றும்.",
|
||||
"introduction.federation.home.headline": "Home",
|
||||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.home.text": "நீங்கள் பின்பற்றும் நபர்களின் இடுகைகள் உங்கள் வீட்டு ஊட்டத்தில் தோன்றும். நீங்கள் எந்த சர்வரில் யாரையும் பின்பற்ற முடியும்!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
"introduction.interactions.reblog.text": "You can share other people's toots with your followers by boosting them.",
|
||||
"introduction.interactions.reply.headline": "Reply",
|
||||
"introduction.interactions.reply.text": "You can reply to other people's and your own toots, which will chain them together in a conversation.",
|
||||
"introduction.welcome.action": "Let's go!",
|
||||
"introduction.welcome.headline": "First steps",
|
||||
"introduction.welcome.text": "Welcome to the fediverse! In a few moments, you'll be able to broadcast messages and talk to your friends across a wide variety of servers. But this server, {domain}, is special—it hosts your profile, so remember its name.",
|
||||
"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",
|
||||
"introduction.federation.local.text": "உள்ளூர் சேவையகத்தில் தோன்றும் அதே சர்வரில் உள்ளவர்களின் பொது இடுகைகள்.",
|
||||
"introduction.interactions.action": "பயிற்சி முடிக்க!",
|
||||
"introduction.interactions.favourite.headline": "விருப்பத்துக்குகந்த",
|
||||
"introduction.interactions.favourite.text": "நீங்கள் ஒரு காப்பாற்ற முடியும் toot பின்னர், மற்றும் ஆசிரியர் அதை நீங்கள் பிடித்திருக்கிறது என்று, அதை பிடித்திருக்கிறது என்று தெரியப்படுத்துங்கள்.",
|
||||
"introduction.interactions.reblog.headline": "மதிப்பை உயர்த்து",
|
||||
"introduction.interactions.reblog.text": "மற்றவர்களின் பகிர்ந்து கொள்ளலாம் toots உங்கள் ஆதரவாளர்களுடன் அவர்களை அதிகரிக்கும்.",
|
||||
"introduction.interactions.reply.headline": "மறுமொழி கூறு",
|
||||
"introduction.interactions.reply.text": "நீங்கள் மற்றவர்களுக்கும் உங்கள் சொந்த டோட்ட்களிற்கும் பதிலளிப்பீர்கள், இது ஒரு உரையாடலில் சங்கிலி ஒன்றாகச் சேரும்.",
|
||||
"introduction.welcome.action": "போகலாம்!",
|
||||
"introduction.welcome.headline": "முதல் படிகள்",
|
||||
"introduction.welcome.text": "கூட்டாளிக்கு வருக! ஒரு சில நிமிடங்களில், பலவிதமான சேவையகங்களில் செய்திகளை உரையாட மற்றும் உங்கள் நண்பர்களிடம் பேச முடியும். ஆனால் இந்த சர்வர், {domain}, சிறப்பு - இது உங்கள் சுயவிவரத்தை வழங்குகிறது, எனவே அதன் பெயரை நினைவில் கொள்ளுங்கள்.",
|
||||
"keyboard_shortcuts.back": "மீண்டும் செல்லவும்",
|
||||
"keyboard_shortcuts.blocked": "தடுக்கப்பட்ட பயனர்களின் பட்டியலைத் திறக்க",
|
||||
"keyboard_shortcuts.boost": "அதிகரிக்கும்",
|
||||
"keyboard_shortcuts.column": "நெடுவரிசைகளில் ஒன்றில் நிலைக்கு கவனம் செலுத்த வேண்டும்",
|
||||
"keyboard_shortcuts.compose": "தொகு உரைப்பகுதியை கவனத்தில் கொள்ளவும்",
|
||||
"keyboard_shortcuts.description": "Description",
|
||||
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||
"keyboard_shortcuts.down": "to move down in the list",
|
||||
"keyboard_shortcuts.direct": "நேரடி செய்திகள் பத்தி திறக்க",
|
||||
"keyboard_shortcuts.down": "பட்டியலில் கீழே நகர்த்த",
|
||||
"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.favourite": "பிடித்தது",
|
||||
"keyboard_shortcuts.favourites": "பிடித்தவை பட்டியலை திறக்க",
|
||||
"keyboard_shortcuts.federated": "ஒருங்கிணைந்த நேரத்தை திறக்க",
|
||||
"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.pinned": "to open pinned toots 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.start": "to open \"get started\" column",
|
||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||
"keyboard_shortcuts.home": "வீட்டு நேரத்தை திறக்க",
|
||||
"keyboard_shortcuts.hotkey": "ஹாட் கீ",
|
||||
"keyboard_shortcuts.legend": "இந்த புராணத்தை காட்சிப்படுத்த",
|
||||
"keyboard_shortcuts.local": "உள்ளூர் காலவரிசை திறக்க",
|
||||
"keyboard_shortcuts.mention": "எழுத்தாளர் குறிப்பிட வேண்டும்",
|
||||
"keyboard_shortcuts.muted": "முடக்கப்பட்ட பயனர்களின் பட்டியலைத் திறக்க",
|
||||
"keyboard_shortcuts.my_profile": "உங்கள் சுயவிவரத்தை திறக்க",
|
||||
"keyboard_shortcuts.notifications": "அறிவிப்பு நெடுவரிசையைத் திறக்க",
|
||||
"keyboard_shortcuts.pinned": "திறக்க பொருத்தப்பட்டன toots பட்டியல்",
|
||||
"keyboard_shortcuts.profile": "ஆசிரியரின் சுயவிவரத்தைத் திறக்க",
|
||||
"keyboard_shortcuts.reply": "பதிலளிக்க",
|
||||
"keyboard_shortcuts.requests": "கோரிக்கைகள் பட்டியலைத் திறக்க",
|
||||
"keyboard_shortcuts.search": "தேடல் கவனம் செலுத்த",
|
||||
"keyboard_shortcuts.start": "'தொடங்குவதற்கு' நெடுவரிசை திறக்க",
|
||||
"keyboard_shortcuts.toggle_hidden": "CW க்கு பின்னால் உரையை மறைக்க / மறைக்க",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
|
||||
"keyboard_shortcuts.toot": "to start a brand new toot",
|
||||
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
||||
"keyboard_shortcuts.up": "to move up in the list",
|
||||
"lightbox.close": "Close",
|
||||
"lightbox.next": "Next",
|
||||
"lightbox.previous": "Previous",
|
||||
"keyboard_shortcuts.toot": "தொடங்க ஒரு புதிய toot",
|
||||
"keyboard_shortcuts.unfocus": "உரை பகுதியை / தேடலை கவனம் செலுத்த வேண்டும்",
|
||||
"keyboard_shortcuts.up": "பட்டியலில் மேலே செல்ல",
|
||||
"lightbox.close": "நெருக்கமாக",
|
||||
"lightbox.next": "அடுத்த",
|
||||
"lightbox.previous": "சென்ற",
|
||||
"lightbox.view_context": "View context",
|
||||
"lists.account.add": "Add to list",
|
||||
"lists.account.remove": "Remove from list",
|
||||
"lists.account.add": "பட்டியலில் சேர்",
|
||||
"lists.account.remove": "பட்டியலில் இருந்து அகற்று",
|
||||
"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.search": "Search among people you follow",
|
||||
"lists.subheading": "Your lists",
|
||||
"loading_indicator.label": "Loading...",
|
||||
"media_gallery.toggle_visible": "Toggle visibility",
|
||||
"missing_indicator.label": "Not found",
|
||||
"missing_indicator.sublabel": "This resource could not be found",
|
||||
"mute_modal.hide_notifications": "Hide notifications from this user?",
|
||||
"navigation_bar.apps": "Mobile apps",
|
||||
"navigation_bar.blocks": "Blocked users",
|
||||
"navigation_bar.community_timeline": "Local timeline",
|
||||
"navigation_bar.compose": "Compose new toot",
|
||||
"navigation_bar.direct": "Direct messages",
|
||||
"navigation_bar.discover": "Discover",
|
||||
"navigation_bar.domain_blocks": "Hidden domains",
|
||||
"navigation_bar.edit_profile": "Edit profile",
|
||||
"navigation_bar.favourites": "Favourites",
|
||||
"navigation_bar.filters": "Muted words",
|
||||
"navigation_bar.follow_requests": "Follow requests",
|
||||
"lists.edit": "பட்டியலை திருத்து",
|
||||
"lists.edit.submit": "தலைப்பு மாற்றவும்",
|
||||
"lists.new.create": "பட்டியலில் சேர்",
|
||||
"lists.new.title_placeholder": "புதிய பட்டியல் தலைப்பு",
|
||||
"lists.search": "நீங்கள் பின்தொடரும் நபர்கள் மத்தியில் தேடுதல்",
|
||||
"lists.subheading": "உங்கள் பட்டியல்கள்",
|
||||
"loading_indicator.label": "ஏற்றுதல்...",
|
||||
"media_gallery.toggle_visible": "நிலைமாற்று தெரியும்",
|
||||
"missing_indicator.label": "கிடைக்கவில்லை",
|
||||
"missing_indicator.sublabel": "இந்த ஆதாரத்தை காண முடியவில்லை",
|
||||
"mute_modal.hide_notifications": "இந்த பயனரின் அறிவிப்புகளை மறைக்கவா?",
|
||||
"navigation_bar.apps": "மொபைல் பயன்பாடுகள்",
|
||||
"navigation_bar.blocks": "தடுக்கப்பட்ட பயனர்கள்",
|
||||
"navigation_bar.community_timeline": "உள்ளூர் காலக்கெடு",
|
||||
"navigation_bar.compose": "புதியவற்றை எழுதுக toot",
|
||||
"navigation_bar.direct": "நேரடி செய்திகள்",
|
||||
"navigation_bar.discover": "கண்டு பிடி",
|
||||
"navigation_bar.domain_blocks": "மறைந்த களங்கள்",
|
||||
"navigation_bar.edit_profile": "சுயவிவரத்தைத் திருத்தவும்",
|
||||
"navigation_bar.favourites": "விருப்பத்துக்குகந்த",
|
||||
"navigation_bar.filters": "முடக்கப்பட்ட வார்த்தைகள்",
|
||||
"navigation_bar.follow_requests": "கோரிக்கைகளை பின்பற்றவும்",
|
||||
"navigation_bar.follows_and_followers": "Follows and followers",
|
||||
"navigation_bar.info": "About this instance",
|
||||
"navigation_bar.keyboard_shortcuts": "Hotkeys",
|
||||
"navigation_bar.lists": "Lists",
|
||||
"navigation_bar.logout": "Logout",
|
||||
"navigation_bar.mutes": "Muted users",
|
||||
"navigation_bar.info": "இந்த நிகழ்வு பற்றி",
|
||||
"navigation_bar.keyboard_shortcuts": "சுருக்குவிசைகள்",
|
||||
"navigation_bar.lists": "குதிரை வீர்ர்கள்",
|
||||
"navigation_bar.logout": "விடு பதிகை",
|
||||
"navigation_bar.mutes": "முடக்கப்பட்ட பயனர்கள்",
|
||||
"navigation_bar.personal": "Personal",
|
||||
"navigation_bar.pins": "Pinned toots",
|
||||
"navigation_bar.preferences": "Preferences",
|
||||
"navigation_bar.pins": "பொருத்தப்பட்டன toots",
|
||||
"navigation_bar.preferences": "விருப்பங்கள்",
|
||||
"navigation_bar.profile_directory": "Profile directory",
|
||||
"navigation_bar.public_timeline": "Federated timeline",
|
||||
"navigation_bar.security": "Security",
|
||||
"notification.favourite": "{name} favourited your status",
|
||||
"notification.follow": "{name} followed you",
|
||||
"notification.mention": "{name} mentioned you",
|
||||
"notification.poll": "A poll you have voted in has ended",
|
||||
"notification.reblog": "{name} boosted your status",
|
||||
"notifications.clear": "Clear notifications",
|
||||
"notifications.clear_confirmation": "Are you sure you want to permanently clear all your notifications?",
|
||||
"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": "Show",
|
||||
"notifications.column_settings.follow": "New followers:",
|
||||
"notifications.column_settings.mention": "Mentions:",
|
||||
"notifications.column_settings.poll": "Poll results:",
|
||||
"navigation_bar.public_timeline": "கூட்டாட்சி காலக்கெடு",
|
||||
"navigation_bar.security": "பத்திரம்",
|
||||
"notification.favourite": "{name} ஆர்வம் கொண்டவர், உங்கள் நிலை",
|
||||
"notification.follow": "{name} நீங்கள் தொடர்ந்து வந்தீர்கள்",
|
||||
"notification.mention": "{name} நீங்கள் குறிப்பிட்டுள்ளீர்கள்",
|
||||
"notification.poll": "நீங்கள் வாக்களித்த வாக்கெடுப்பு முடிவடைந்தது",
|
||||
"notification.reblog": "{name} உங்கள் நிலை அதிகரித்தது",
|
||||
"notifications.clear": "அறிவிப்புகளை அழிக்கவும்",
|
||||
"notifications.clear_confirmation": "உங்கள் எல்லா அறிவிப்புகளையும் நிரந்தரமாக அழிக்க விரும்புகிறீர்களா?",
|
||||
"notifications.column_settings.alert": "டெஸ்க்டாப் அறிவிப்புகள்",
|
||||
"notifications.column_settings.favourite": "பிடித்தவை:",
|
||||
"notifications.column_settings.filter_bar.advanced": "எல்லா வகைகளையும் காட்டு",
|
||||
"notifications.column_settings.filter_bar.category": "விரைவு வடிகட்டி பட்டை",
|
||||
"notifications.column_settings.filter_bar.show": "காட்டு",
|
||||
"notifications.column_settings.follow": "புதிய பின்பற்றுபவர்கள்:",
|
||||
"notifications.column_settings.mention": "குறிப்பிடுகிறது:",
|
||||
"notifications.column_settings.poll": "கருத்துக்கணிப்பு முடிவுகள்:",
|
||||
"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.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.column_settings.reblog": "மதிப்பை உயர்த்து:",
|
||||
"notifications.column_settings.show": "பத்தியில் காண்பி",
|
||||
"notifications.column_settings.sound": "ஒலி விளையாட",
|
||||
"notifications.filter.all": "எல்லா",
|
||||
"notifications.filter.boosts": "மதிப்பை உயர்த்து",
|
||||
"notifications.filter.favourites": "விருப்பத்துக்குகந்த",
|
||||
"notifications.filter.follows": "பின்பற்று",
|
||||
"notifications.filter.mentions": "குறிப்பிடுகிறார்",
|
||||
"notifications.filter.polls": "கருத்துக்கணிப்பு முடிவுகள்",
|
||||
"notifications.group": "{count} notifications",
|
||||
"poll.closed": "Closed",
|
||||
"poll.refresh": "Refresh",
|
||||
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}",
|
||||
"poll.vote": "Vote",
|
||||
"poll_button.add_poll": "Add a poll",
|
||||
"poll_button.remove_poll": "Remove poll",
|
||||
"privacy.change": "Adjust status privacy",
|
||||
"privacy.direct.long": "Post to mentioned users only",
|
||||
"privacy.direct.short": "Direct",
|
||||
"privacy.private.long": "Post to followers only",
|
||||
"privacy.private.short": "Followers-only",
|
||||
"privacy.public.long": "Post to public timelines",
|
||||
"poll.closed": "மூடிய",
|
||||
"poll.refresh": "பத்துயிர்ப்ப?ட்டு",
|
||||
"poll.total_votes": "{count, plural, one {# vote} மற்ற {# votes}}",
|
||||
"poll.vote": "வாக்களி",
|
||||
"poll_button.add_poll": "வாக்கெடுப்பைச் சேர்க்கவும்",
|
||||
"poll_button.remove_poll": "வாக்கெடுப்பை அகற்று",
|
||||
"privacy.change": "நிலை தனியுரிமை",
|
||||
"privacy.direct.long": "குறிப்பிடப்பட்ட பயனர்களுக்கு மட்டுமே இடுகையிடவும்",
|
||||
"privacy.direct.short": "நடத்து",
|
||||
"privacy.private.long": "பின்தொடர்பவர்களுக்கு மட்டுமே இடுகை",
|
||||
"privacy.private.short": "பின்பற்றுபவர்கள் மட்டும்",
|
||||
"privacy.public.long": "பொது நேரங்களுக்கான இடுகை",
|
||||
"privacy.public.short": "Public",
|
||||
"privacy.unlisted.long": "Do not show in public timelines",
|
||||
"privacy.unlisted.short": "Unlisted",
|
||||
"regeneration_indicator.label": "Loading…",
|
||||
"regeneration_indicator.sublabel": "Your home feed is being prepared!",
|
||||
"privacy.unlisted.short": "பட்டியலிடப்படாத",
|
||||
"regeneration_indicator.label": "சுமையேற்றம்…",
|
||||
"regeneration_indicator.sublabel": "உங்கள் வீட்டு ஊட்டம் தயார் செய்யப்படுகிறது!",
|
||||
"relative_time.days": "{number}d",
|
||||
"relative_time.hours": "{number}h",
|
||||
"relative_time.just_now": "now",
|
||||
"relative_time.just_now": "இப்பொழுது",
|
||||
"relative_time.minutes": "{number}m",
|
||||
"relative_time.seconds": "{number}s",
|
||||
"reply_indicator.cancel": "Cancel",
|
||||
"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.hint": "The report will be sent to your instance moderators. You can provide an explanation of why you are reporting this account below:",
|
||||
"report.placeholder": "Additional comments",
|
||||
"reply_indicator.cancel": "எதிராணை",
|
||||
"report.forward": "முன்னோக்கி {target}",
|
||||
"report.forward_hint": "கணக்கு மற்றொரு சேவையகத்திலிருந்து வருகிறது. அறிக்கையின் அநாமதேய பிரதி ஒன்றை அனுப்பவும்.?",
|
||||
"report.hint": "அறிக்கை உங்கள் மாதிரியாக மாற்றியமைக்கப்படும். கீழே உள்ள கணக்கை நீங்கள் ஏன் புகாரளிக்கிறீர்கள் என்பதற்கான விளக்கத்தை வழங்கலாம்:",
|
||||
"report.placeholder": "கூடுதல் கருத்துரைகள்",
|
||||
"report.submit": "Submit",
|
||||
"report.target": "Report {target}",
|
||||
"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.placeholder": "தேடு",
|
||||
"search_popout.search_format": "மேம்பட்ட தேடல் வடிவம்",
|
||||
"search_popout.tips.full_text": "எளிமையான உரை நீங்கள் எழுதப்பட்ட, புகழ், அதிகரித்தது, அல்லது குறிப்பிட்டுள்ள, அதே போல் பயனர் பெயர்கள், காட்சி பெயர்கள், மற்றும் ஹேஸ்டேகைகளை கொண்டுள்ளது என்று நிலைகளை கொடுக்கிறது.",
|
||||
"search_popout.tips.hashtag": "ஹேஸ்டேக்",
|
||||
"search_popout.tips.status": "status",
|
||||
"search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags",
|
||||
"search_popout.tips.text": "எளிய உரை காட்சி பெயர்கள், பயனர்பெயர்கள் மற்றும் ஹாஷ்டேட்களுடன் பொருந்துகிறது",
|
||||
"search_popout.tips.user": "user",
|
||||
"search_results.accounts": "People",
|
||||
"search_results.hashtags": "Hashtags",
|
||||
"search_results.hashtags": "ஹாஷ்டேக்குகளைச்",
|
||||
"search_results.statuses": "Toots",
|
||||
"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",
|
||||
"search_results.total": "{count, number} {count, plural, one {result} மற்ற {results}}",
|
||||
"status.admin_account": "மிதமான இடைமுகத்தை திறக்க @{name}",
|
||||
"status.admin_status": "மிதமான இடைமுகத்தில் இந்த நிலையை திறக்கவும்",
|
||||
"status.block": "Block @{name}",
|
||||
"status.cancel_reblog_private": "Unboost",
|
||||
"status.cannot_reblog": "This post cannot be boosted",
|
||||
"status.copy": "Copy link to status",
|
||||
"status.cancel_reblog_private": "இல்லை பூஸ்ட்",
|
||||
"status.cannot_reblog": "இந்த இடுகை அதிகரிக்க முடியாது",
|
||||
"status.copy": "நிலைக்கு இணைப்பை நகலெடு",
|
||||
"status.delete": "Delete",
|
||||
"status.detailed_status": "Detailed conversation view",
|
||||
"status.direct": "Direct message @{name}",
|
||||
"status.embed": "Embed",
|
||||
"status.favourite": "Favourite",
|
||||
"status.filtered": "Filtered",
|
||||
"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 toot",
|
||||
"status.read_more": "Read more",
|
||||
"status.reblog": "Boost",
|
||||
"status.reblog_private": "Boost to original audience",
|
||||
"status.reblogged_by": "{name} boosted",
|
||||
"status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
|
||||
"status.redraft": "Delete & re-draft",
|
||||
"status.reply": "Reply",
|
||||
"status.replyAll": "Reply to thread",
|
||||
"status.detailed_status": "விரிவான உரையாடல் காட்சி",
|
||||
"status.direct": "நேரடி செய்தி @{name}",
|
||||
"status.embed": "கிடத்து",
|
||||
"status.favourite": "விருப்பத்துக்குகந்த",
|
||||
"status.filtered": "வடிகட்டு",
|
||||
"status.load_more": "அதிகமாய் ஏற்று",
|
||||
"status.media_hidden": "மீடியா மறைக்கப்பட்டது",
|
||||
"status.mention": "குறிப்பிடு @{name}",
|
||||
"status.more": "அதிக",
|
||||
"status.mute": "ஊமையான @{name}",
|
||||
"status.mute_conversation": "ஒலிதடு உரையாடல்",
|
||||
"status.open": "இந்த நிலையை விரிவாக்கு",
|
||||
"status.pin": "சுயவிவரத்தில் முள்",
|
||||
"status.pinned": "பொருத்தப்பட்டன toot",
|
||||
"status.read_more": "மேலும் வாசிக்க",
|
||||
"status.reblog": "மதிப்பை உயர்த்து",
|
||||
"status.reblog_private": "Boost அசல் பார்வையாளர்களுக்கு",
|
||||
"status.reblogged_by": "{name} மதிப்பை உயர்த்து",
|
||||
"status.reblogs.empty": "இதுவரை யாரும் இந்த மோதலை அதிகரிக்கவில்லை. யாராவது செய்தால், அவர்கள் இங்கே காண்பார்கள்.",
|
||||
"status.redraft": "நீக்கு மற்றும் மீண்டும் வரைவு",
|
||||
"status.reply": "பதில்",
|
||||
"status.replyAll": "நூலுக்கு பதிலளிக்கவும்",
|
||||
"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.unmute_conversation": "Unmute conversation",
|
||||
"status.unpin": "Unpin from profile",
|
||||
"suggestions.dismiss": "Dismiss suggestion",
|
||||
"suggestions.header": "You might be interested in…",
|
||||
"status.sensitive_warning": "உணர்திறன் உள்ளடக்கம்",
|
||||
"status.share": "பங்கிடு",
|
||||
"status.show_less": "குறைவாகக் காண்பி",
|
||||
"status.show_less_all": "அனைத்தையும் குறைவாக காட்டு",
|
||||
"status.show_more": "மேலும் காட்ட",
|
||||
"status.show_more_all": "அனைவருக்கும் மேலும் காட்டு",
|
||||
"status.show_thread": "நூல் காட்டு",
|
||||
"status.unmute_conversation": "ஊமையாக உரையாடல் இல்லை",
|
||||
"status.unpin": "சுயவிவரத்திலிருந்து நீக்கவும்",
|
||||
"suggestions.dismiss": "பரிந்துரை விலக்க",
|
||||
"suggestions.header": "நீங்கள் ஆர்வமாக இருக்கலாம் …",
|
||||
"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",
|
||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
|
||||
"ui.beforeunload": "Your draft will be lost if you leave Mastodon.",
|
||||
"upload_area.title": "Drag & drop to upload",
|
||||
"upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||
"upload_error.limit": "File upload limit exceeded.",
|
||||
"upload_error.poll": "File upload not allowed with polls.",
|
||||
"upload_form.description": "Describe for the visually impaired",
|
||||
"upload_form.focus": "Crop",
|
||||
"tabs_bar.search": "தேடு",
|
||||
"time_remaining.days": "{number, plural, one {# day} மற்ற {# days}} left",
|
||||
"time_remaining.hours": "{number, plural, one {# hour} மற்ற {# hours}} left",
|
||||
"time_remaining.minutes": "{number, plural, one {# minute} மற்ற {# minutes}} left",
|
||||
"time_remaining.moments": "தருணங்கள் மீதமுள்ளன",
|
||||
"time_remaining.seconds": "{number, plural, one {# second} மற்ற {# seconds}} left",
|
||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} மற்ற {people}} உரையாடு",
|
||||
"ui.beforeunload": "நீங்கள் வெளியே சென்றால் உங்கள் வரைவு இழக்கப்படும் மஸ்தோடோன்.",
|
||||
"upload_area.title": "பதிவேற்ற & இழுக்கவும்",
|
||||
"upload_button.label": "மீடியாவைச் சேர்க்கவும் (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||
"upload_error.limit": "கோப்பு பதிவேற்ற வரம்பு மீறப்பட்டது.",
|
||||
"upload_error.poll": "கோப்பு பதிவேற்றம் அனுமதிக்கப்படவில்லை.",
|
||||
"upload_form.description": "பார்வையற்ற விவரிக்கவும்",
|
||||
"upload_form.focus": "மாற்றம் முன்னோட்டம்",
|
||||
"upload_form.undo": "Delete",
|
||||
"upload_progress.label": "Uploading...",
|
||||
"video.close": "Close video",
|
||||
"video.exit_fullscreen": "Exit full screen",
|
||||
"video.expand": "Expand video",
|
||||
"upload_progress.label": "ஏற்றுகிறது ...",
|
||||
"video.close": "வீடியோவை மூடு",
|
||||
"video.exit_fullscreen": "முழு திரையில் இருந்து வெளியேறவும்",
|
||||
"video.expand": "வீடியோவை விரிவாக்கு",
|
||||
"video.fullscreen": "Full screen",
|
||||
"video.hide": "Hide video",
|
||||
"video.mute": "Mute sound",
|
||||
"video.hide": "வீடியோவை மறை",
|
||||
"video.mute": "ஒலி முடக்கவும்",
|
||||
"video.pause": "Pause",
|
||||
"video.play": "Play",
|
||||
"video.unmute": "Unmute sound"
|
||||
"video.play": "விளையாடு",
|
||||
"video.unmute": "ஒலி மெளனமாக இல்லை"
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
"account.follows_you": "ติดตามคุณ",
|
||||
"account.hide_reblogs": "ซ่อนการดันจาก @{name}",
|
||||
"account.link_verified_on": "ตรวจสอบความเป็นเจ้าของของลิงก์นี้เมื่อ {date}",
|
||||
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
|
||||
"account.locked_info": "บัญชีนี้ถูกล็อคไว้ เจ้าของจะต้องรับรองการติดตามของคุณด้วย",
|
||||
"account.media": "สื่อ",
|
||||
"account.mention": "กล่าวถึง @{name}",
|
||||
"account.moved_to": "{name} ได้ย้ายไปยัง:",
|
||||
|
@ -37,7 +37,7 @@
|
|||
"account.unmute_notifications": "เลิกปิดเสียงการแจ้งเตือนจาก @{name}",
|
||||
"alert.unexpected.message": "เกิดข้อผิดพลาดที่ไม่คาดคิด",
|
||||
"alert.unexpected.title": "อุปส์!",
|
||||
"boost_modal.combo": "You can press {combo} to skip this next time",
|
||||
"boost_modal.combo": "กด {combo} เพื่อข้าม",
|
||||
"bundle_column_error.body": "มีบางอย่างผิดพลาดขณะโหลดส่วนประกอบนี้",
|
||||
"bundle_column_error.retry": "ลองอีกครั้ง",
|
||||
"bundle_column_error.title": "ข้อผิดพลาดเครือข่าย",
|
||||
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
2
app/javascript/mastodon/locales/whitelist_lt.json
Normal file
2
app/javascript/mastodon/locales/whitelist_lt.json
Normal file
|
@ -0,0 +1,2 @@
|
|||
[
|
||||
]
|
|
@ -345,7 +345,6 @@
|
|||
"status.reply": "回复",
|
||||
"status.replyAll": "回复所有人",
|
||||
"status.report": "举报 @{name}",
|
||||
"status.sensitive_toggle": "点击显示",
|
||||
"status.sensitive_warning": "敏感内容",
|
||||
"status.share": "分享",
|
||||
"status.show_less": "隐藏内容",
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
"introduction.federation.home.text": "Posts from people you follow will appear in your home feed. You can follow anyone on any server!",
|
||||
"introduction.federation.local.headline": "Local",
|
||||
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.",
|
||||
"introduction.interactions.action": "Finish tutorial!",
|
||||
"introduction.interactions.action": "Finish toot-orial!",
|
||||
"introduction.interactions.favourite.headline": "Favourite",
|
||||
"introduction.interactions.favourite.text": "You can save a toot for later, and let the author know that you liked it, by favouriting it.",
|
||||
"introduction.interactions.reblog.headline": "Boost",
|
||||
|
|
|
@ -337,7 +337,6 @@
|
|||
position: absolute;
|
||||
top: 5px;
|
||||
right: 5px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.compose-form__autosuggest-wrapper {
|
||||
|
@ -413,15 +412,6 @@
|
|||
height: 0;
|
||||
}
|
||||
|
||||
.emoji-picker-wrapper {
|
||||
position: relative;
|
||||
height: 0;
|
||||
|
||||
&.emoji-picker-wrapper--hidden {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.autosuggest-textarea__suggestions {
|
||||
box-sizing: border-box;
|
||||
display: none;
|
||||
|
@ -1965,11 +1955,6 @@ a.account__display-name {
|
|||
font-size: 16px;
|
||||
}
|
||||
|
||||
&.active {
|
||||
border-bottom: 2px solid $highlight-text-color;
|
||||
color: $highlight-text-color;
|
||||
}
|
||||
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
|
@ -1979,6 +1964,11 @@ a.account__display-name {
|
|||
}
|
||||
}
|
||||
|
||||
&.active {
|
||||
border-bottom: 2px solid $highlight-text-color;
|
||||
color: $highlight-text-color;
|
||||
}
|
||||
|
||||
span {
|
||||
margin-left: 5px;
|
||||
display: none;
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
.form-container
|
||||
.flash-message
|
||||
.flash-message.simple_form
|
||||
%p= t('doorkeeper.authorizations.show.title')
|
||||
%input{ type: 'text', class: 'oauth-code', readonly: true, value: params[:code], onClick: 'select()' }
|
||||
.input-copy
|
||||
.input-copy__wrapper
|
||||
%input{ type: 'text', class: 'oauth-code', spellcheck: 'false', readonly: true, value: params[:code] }
|
||||
%button{ type: :button }= t('generic.copy')
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
---
|
||||
ar:
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
expires_at: آخر أجل
|
||||
options: الخيارات
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
|
|
1
config/locales/activerecord.bg.yml
Normal file
1
config/locales/activerecord.bg.yml
Normal file
|
@ -0,0 +1 @@
|
|||
bg:
|
1
config/locales/activerecord.bn.yml
Normal file
1
config/locales/activerecord.bn.yml
Normal file
|
@ -0,0 +1 @@
|
|||
bn:
|
|
@ -2,8 +2,9 @@
|
|||
ca:
|
||||
activerecord:
|
||||
attributes:
|
||||
status:
|
||||
owned_poll: Enquesta
|
||||
poll:
|
||||
expires_at: Data límit
|
||||
options: Opcions
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
---
|
||||
da:
|
||||
activerecord:
|
||||
attributes:
|
||||
status:
|
||||
owned_poll: Afstemning
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
|
|
|
@ -4,9 +4,7 @@ de:
|
|||
attributes:
|
||||
poll:
|
||||
expires_at: Frist
|
||||
options: Wahlen
|
||||
status:
|
||||
owned_poll: Umfrage
|
||||
options: Wahlmöglichkeiten
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
|
@ -16,4 +14,4 @@ de:
|
|||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
taken: des Status existiert schon
|
||||
taken: des Beitrags existiert schon
|
||||
|
|
|
@ -5,8 +5,6 @@ el:
|
|||
poll:
|
||||
expires_at: Προθεσμία
|
||||
options: Επιλογές
|
||||
status:
|
||||
owned_poll: Ψηφοφορία
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
|
|
17
config/locales/activerecord.eo.yml
Normal file
17
config/locales/activerecord.eo.yml
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
eo:
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
expires_at: Limdato
|
||||
options: Elektoj
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
attributes:
|
||||
username:
|
||||
invalid: nur leteroj, ciferoj kaj substrekoj
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
taken: de statuso jam ekzistas
|
|
@ -1,12 +1,16 @@
|
|||
---
|
||||
es:
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
expires_at: Vencimiento
|
||||
options: Opciones
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
attributes:
|
||||
username:
|
||||
invalid: solo letras, números y guiones bajos
|
||||
invalid: sólo letras, números y guiones bajos
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
---
|
||||
eu:
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
expires_at: Epemuga
|
||||
options: Aukerak
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
---
|
||||
fa:
|
||||
activerecord:
|
||||
attributes:
|
||||
status:
|
||||
owned_poll: رأیگیری
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
|
|
1
config/locales/activerecord.fi.yml
Normal file
1
config/locales/activerecord.fi.yml
Normal file
|
@ -0,0 +1 @@
|
|||
fi:
|
|
@ -5,8 +5,6 @@ gl:
|
|||
poll:
|
||||
expires_at: Caducidade
|
||||
options: Opcións
|
||||
status:
|
||||
owned_poll: Sondaxe
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
|
|
1
config/locales/activerecord.hr.yml
Normal file
1
config/locales/activerecord.hr.yml
Normal file
|
@ -0,0 +1 @@
|
|||
hr:
|
1
config/locales/activerecord.hu.yml
Normal file
1
config/locales/activerecord.hu.yml
Normal file
|
@ -0,0 +1 @@
|
|||
hu:
|
1
config/locales/activerecord.hy.yml
Normal file
1
config/locales/activerecord.hy.yml
Normal file
|
@ -0,0 +1 @@
|
|||
hy:
|
1
config/locales/activerecord.io.yml
Normal file
1
config/locales/activerecord.io.yml
Normal file
|
@ -0,0 +1 @@
|
|||
io:
|
|
@ -5,8 +5,6 @@ ja:
|
|||
poll:
|
||||
expires_at: 期限
|
||||
options: 項目
|
||||
user:
|
||||
email: メールアドレス
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
|
|
17
config/locales/activerecord.ko.yml
Normal file
17
config/locales/activerecord.ko.yml
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
ko:
|
||||
activerecord:
|
||||
attributes:
|
||||
poll:
|
||||
expires_at: 마감 기한
|
||||
options: 선택
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
attributes:
|
||||
username:
|
||||
invalid: 영문자, 숫자, _만 사용 가능
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
taken: 이미 게시물이 존재합니다
|
1
config/locales/activerecord.lt.yml
Normal file
1
config/locales/activerecord.lt.yml
Normal file
|
@ -0,0 +1 @@
|
|||
lt:
|
1
config/locales/activerecord.lv.yml
Normal file
1
config/locales/activerecord.lv.yml
Normal file
|
@ -0,0 +1 @@
|
|||
lv:
|
1
config/locales/activerecord.ms.yml
Normal file
1
config/locales/activerecord.ms.yml
Normal file
|
@ -0,0 +1 @@
|
|||
ms:
|
|
@ -5,8 +5,6 @@ nl:
|
|||
poll:
|
||||
expires_at: Deadline
|
||||
options: Keuzes
|
||||
status:
|
||||
owned_poll: Poll
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
|
|
|
@ -2,8 +2,9 @@
|
|||
pl:
|
||||
activerecord:
|
||||
attributes:
|
||||
user:
|
||||
email: adres e-mail
|
||||
poll:
|
||||
expires_at: Ostateczny termin
|
||||
options: Opcje
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
|
|
1
config/locales/activerecord.ro.yml
Normal file
1
config/locales/activerecord.ro.yml
Normal file
|
@ -0,0 +1 @@
|
|||
ro:
|
|
@ -5,8 +5,6 @@ sk:
|
|||
poll:
|
||||
expires_at: Trvá do
|
||||
options: Voľby
|
||||
status:
|
||||
owned_poll: Anketa
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
|
|
1
config/locales/activerecord.ta.yml
Normal file
1
config/locales/activerecord.ta.yml
Normal file
|
@ -0,0 +1 @@
|
|||
ta:
|
1
config/locales/activerecord.te.yml
Normal file
1
config/locales/activerecord.te.yml
Normal file
|
@ -0,0 +1 @@
|
|||
te:
|
1
config/locales/activerecord.zh-TW.yml
Normal file
1
config/locales/activerecord.zh-TW.yml
Normal file
|
@ -0,0 +1 @@
|
|||
zh-TW:
|
|
@ -2,22 +2,27 @@
|
|||
ar:
|
||||
about:
|
||||
about_hashtag_html: هذه تبويقات متاحة للجمهور تحتوي على الكلمات الدلالية <strong>#%{hashtag}</strong>. يمكنك التفاعل معها إن كان لديك حساب في أي مكان على الفديفرس.
|
||||
about_mastodon_html: ماستدون شبكة إجتماعية مبنية على أسُس بروتوكولات برمجيات الويب الحرة و مفتوحة المصدر. و هو لامركزي تمامًا كالبريد الإلكتروني.
|
||||
about_mastodon_html: ماستدون شبكة اجتماعية مبنية على أسُس بروتوكولات برمجيات الويب الحرة و مفتوحة المصدر. و هو لامركزي تمامًا كالبريد الإلكتروني.
|
||||
about_this: عن مثيل الخادوم هذا
|
||||
active_count_after: نشط
|
||||
administered_by: 'يُديره:'
|
||||
api: واجهة برمجة التطبيقات
|
||||
apps: تطبيقات الأجهزة المحمولة
|
||||
contact: للتواصل معنا
|
||||
contact_missing: لم يتم تعيينه
|
||||
contact_unavailable: غير متوفر
|
||||
discover_users: اكتشف مستخدِمين
|
||||
documentation: الدليل
|
||||
extended_description_html: |
|
||||
<h3>مكان جيد للقواعد</h3>
|
||||
<p>لم يتم بعد إدخال الوصف الطويل.</p>
|
||||
generic_description: "%{domain} هو سيرفر من بين سيرفرات الشبكة"
|
||||
get_apps: جرّب تطبيقا على الموبايل
|
||||
hosted_on: ماستدون مُستضاف على %{domain}
|
||||
learn_more: تعلم المزيد
|
||||
privacy_policy: سياسة الخصوصية
|
||||
see_whats_happening: اطّلع على ما يجري
|
||||
server_stats: 'إحصائيات الخادم:'
|
||||
source_code: الشفرة المصدرية
|
||||
status_count_after:
|
||||
few: منشورات
|
||||
|
@ -27,6 +32,7 @@ ar:
|
|||
two: منشورات
|
||||
zero: منشورات
|
||||
status_count_before: نشروا
|
||||
tagline: اتبع أصدقائك وصديقاتك واكتشف آخرين وأخريات
|
||||
terms: شروط الخدمة
|
||||
user_count_after:
|
||||
few: مستخدمين
|
||||
|
@ -39,7 +45,7 @@ ar:
|
|||
what_is_mastodon: ما هو ماستدون ؟
|
||||
accounts:
|
||||
choices_html: 'توصيات %{name}:'
|
||||
follow: إتبع
|
||||
follow: اتبع
|
||||
followers:
|
||||
few: متابِعون
|
||||
many: متابِعون
|
||||
|
@ -68,22 +74,25 @@ ar:
|
|||
zero: تبويقات
|
||||
posts_tab_heading: تبويقات
|
||||
posts_with_replies: التبويقات و الردود
|
||||
reserved_username: إسم المستخدم محجوز
|
||||
reserved_username: اسم المستخدم محجوز
|
||||
roles:
|
||||
admin: المدير
|
||||
bot: روبوت
|
||||
moderator: مُشرِف
|
||||
unavailable: الحساب غير متوفر
|
||||
unfollow: إلغاء المتابعة
|
||||
admin:
|
||||
account_actions:
|
||||
action: تنفيذ الاجراء
|
||||
action: تنفيذ الإجراء
|
||||
title: اتخاذ إجراء إشراف على %{acct}
|
||||
account_moderation_notes:
|
||||
create: إترك ملاحظة
|
||||
create: اترك ملاحظة
|
||||
created_msg: تم إنشاء ملاحظة الإشراف بنجاح!
|
||||
delete: حذف
|
||||
destroyed_msg: تم تدمير ملاحظة الإشراف بنجاح!
|
||||
accounts:
|
||||
approve: صادِق عليه
|
||||
approve_all: الموافقة على الكل
|
||||
are_you_sure: متأكد ؟
|
||||
avatar: الصورة الرمزية
|
||||
by_domain: النطاق
|
||||
|
@ -102,7 +111,7 @@ ar:
|
|||
disable: تعطيل
|
||||
disable_two_factor_authentication: تعطيل المصادقة بخطوتين
|
||||
disabled: معطَّل
|
||||
display_name: عرض الإسم
|
||||
display_name: عرض الاسم
|
||||
domain: النطاق
|
||||
edit: تعديل
|
||||
email: البريد الإلكتروني
|
||||
|
@ -129,15 +138,18 @@ ar:
|
|||
moderation:
|
||||
active: نشِط
|
||||
all: الكل
|
||||
pending: قيد المراجعة
|
||||
silenced: تم كتمه
|
||||
suspended: مُجَمَّد
|
||||
title: الإشراف
|
||||
moderation_notes: ملاحظات الإشراف
|
||||
most_recent_activity: آخر نشاط حديث
|
||||
most_recent_ip: أحدث عنوان إيبي
|
||||
no_account_selected: لم يطرأ أي تغيير على أي حساب بما أنه لم يتم اختيار أي واحد
|
||||
no_limits_imposed: مِن دون حدود مشروطة
|
||||
not_subscribed: غير مشترك
|
||||
outbox_url: رابط صندوق الصادر
|
||||
pending: في انتظار المراجعة
|
||||
perform_full_suspension: تعليق الحساب
|
||||
profile_url: رابط الملف الشخصي
|
||||
promote: ترقية
|
||||
|
@ -145,15 +157,17 @@ ar:
|
|||
public: عمومي
|
||||
push_subscription_expires: انتهاء الاشتراك ”PuSH“
|
||||
redownload: تحديث الصفحة الشخصية
|
||||
reject: ارفض
|
||||
reject_all: ارفض الكل
|
||||
remove_avatar: حذف الصورة الرمزية
|
||||
remove_header: حذف الرأسية
|
||||
resend_confirmation:
|
||||
already_confirmed: هذا المستخدم مؤكد بالفعل
|
||||
send: أعد إرسال رسالة البريد الالكتروني الخاصة بالتأكيد
|
||||
send: أعد إرسال رسالة البريد الإلكتروني الخاصة بالتأكيد
|
||||
success: تم إرسال رسالة التأكيد بنجاح!
|
||||
reset: إعادة التعيين
|
||||
reset_password: إعادة ضبط كلمة السر
|
||||
resubscribe: إعادة الإشتراك
|
||||
resubscribe: إعادة الاشتراك
|
||||
role: الصلاحيات
|
||||
roles:
|
||||
admin: مدير
|
||||
|
@ -165,18 +179,19 @@ ar:
|
|||
shared_inbox_url: رابط الصندوق المُشترَك للبريد الوارد
|
||||
show:
|
||||
created_reports: البلاغات التي أنشأها هذا الحساب
|
||||
targeted_reports: الشكاوي التي أُنشِأت مِن طرف الآخَرين
|
||||
targeted_reports: الشكاوى التي أُنشِأت مِن طرف الآخَرين
|
||||
silence: كتم
|
||||
silenced: تم كتمه
|
||||
statuses: المنشورات
|
||||
subscribe: اشترك
|
||||
suspended: تم تعليقه
|
||||
time_in_queue: في قائمة الانتظار %{time}
|
||||
title: الحسابات
|
||||
unconfirmed_email: البريد الإلكتروني غير مؤكد
|
||||
undo_silenced: رفع الصمت
|
||||
undo_suspension: إلغاء تعليق الحساب
|
||||
unsubscribe: إلغاء الاشتراك
|
||||
username: إسم المستخدم
|
||||
username: اسم المستخدم
|
||||
warn: تحذير
|
||||
web: الويب
|
||||
action_logs:
|
||||
|
@ -235,7 +250,7 @@ ar:
|
|||
shortcode_hint: على الأقل حرفين، و فقط رموز أبجدية عددية و أسطر سفلية
|
||||
title: الإيموجي الخاصة
|
||||
unlisted: غير مدرج
|
||||
update_failed_msg: تعذرت عملية تحذيث ذاك الإيموجي
|
||||
update_failed_msg: تعذرت عملية تحديث ذاك الإيموجي
|
||||
updated_msg: تم تحديث الإيموجي بنجاح!
|
||||
upload: رفع
|
||||
dashboard:
|
||||
|
@ -246,9 +261,10 @@ ar:
|
|||
feature_profile_directory: دليل الحسابات
|
||||
feature_registrations: التسجيلات
|
||||
feature_relay: المُرحّل الفديرالي
|
||||
feature_timeline_preview: معاينة الخيط الزمني
|
||||
features: الميّزات
|
||||
hidden_service: الفيديرالية مع الخدمات الخفية
|
||||
open_reports: فتح الشكاوي
|
||||
open_reports: فتح الشكاوى
|
||||
recent_users: أحدث المستخدِمين
|
||||
search: البحث النصي الكامل
|
||||
single_user_mode: وضع المستخدِم الأوحد
|
||||
|
@ -286,8 +302,8 @@ ar:
|
|||
many: "%{count} حسابات معنية في قاعدة البيانات"
|
||||
one: حساب واحد معني في قاعدة البيانات
|
||||
other: "%{count} حسابات معنية في قاعدة البيانات"
|
||||
two: حسابات معنية في قاعدة البيانات
|
||||
zero: حسابات معنية في قاعدة البيانات
|
||||
two: "%{count} حسابات معنية في قاعدة البيانات"
|
||||
zero: "%{count} حسابات معنية في قاعدة البيانات"
|
||||
retroactive:
|
||||
silence: إلغاء الكتم عن كافة الحسابات المتواجدة على هذا النطاق
|
||||
suspend: إلغاء التعليق المفروض على كافة حسابات هذا النطاق
|
||||
|
@ -319,6 +335,7 @@ ar:
|
|||
zero: "%{count} حسابات معروفة"
|
||||
moderation:
|
||||
all: كافتها
|
||||
limited: محدود
|
||||
title: الإشراف
|
||||
title: الفديرالية
|
||||
total_blocked_by_us: المحجوبة مِن طرفنا
|
||||
|
@ -334,13 +351,15 @@ ar:
|
|||
expired: المنتهي صلاحيتها
|
||||
title: التصفية
|
||||
title: الدعوات
|
||||
pending_accounts:
|
||||
title: الحسابات المعلقة (%{count})
|
||||
relays:
|
||||
add_new: إضافة مُرحّل جديد
|
||||
delete: حذف
|
||||
disable: تعطيل
|
||||
disabled: مُعطَّل
|
||||
enable: تشغيل
|
||||
enable_hint: عندما تقوم بتنشيط هذه الميزة، سوف يشترك خادومك في جميع التبويقات القادمة مِن هذا المُرحِّل و سيشرع كذلك بإرسال كافة التبويقات العمومية إليه.
|
||||
enable_hint: عندما تقوم بتنشيط هذه الميزة، سوف يشترك خادومكم في جميع التبويقات القادمة مِن هذا المُرحِّل و سيشرع كذلك بإرسال كافة التبويقات العمومية إليه.
|
||||
enabled: مُشغَّل
|
||||
inbox_url: رابط المُرحّل
|
||||
pending: في انتظار تسريح المُرحِّل
|
||||
|
@ -362,14 +381,14 @@ ar:
|
|||
comment:
|
||||
none: لا شيء
|
||||
created_at: ذكرت
|
||||
mark_as_resolved: إعتبار الشكوى كمحلولة
|
||||
mark_as_unresolved: علام كغير محلولة
|
||||
mark_as_resolved: اعتبار الشكوى كمحلولة
|
||||
mark_as_unresolved: علم كغير محلولة
|
||||
notes:
|
||||
create: اضف ملاحظة
|
||||
create_and_resolve: الحل مع ملاحظة
|
||||
create_and_unresolve: إعادة فتح مع ملاحظة
|
||||
delete: حذف
|
||||
placeholder: قم بوصف الإجراءات التي تم اتخاذها أو أي تحديثات أخرى ذات علاقة …
|
||||
placeholder: قم بوصف الإجراءات التي تم اتخاذها أو أي تحديثات أخرى ذات علاقة...
|
||||
reopen: إعادة فتح الشكوى
|
||||
report: 'الشكوى #%{id}'
|
||||
reported_account: حساب مُبلّغ عنه
|
||||
|
@ -377,20 +396,20 @@ ar:
|
|||
resolved: معالجة
|
||||
resolved_msg: تم حل تقرير بنجاح!
|
||||
status: الحالة
|
||||
title: الشكاوي
|
||||
title: الشكاوى
|
||||
unassign: إلغاء تعيين
|
||||
unresolved: غير معالجة
|
||||
updated_at: محدث
|
||||
settings:
|
||||
activity_api_enabled:
|
||||
desc_html: عدد المنشورات المحلية و المستخدمين النشطين و التسجيلات الأسبوعية الجديدة
|
||||
desc_html: عدد المنشورات المحلية و المستخدمين الناشطين و التسجيلات الأسبوعية الجديدة
|
||||
title: نشر مُجمل الإحصائيات عن نشاط المستخدمين
|
||||
bootstrap_timeline_accounts:
|
||||
desc_html: افصل بين أسماء المستخدمين المتعددة بواسطة الفاصلة. استعمل الحسابات المحلية والمفتوحة فقط. الافتراضي عندما تكون فارغة كل المسؤولين المحليين.
|
||||
title: الإشتراكات الإفتراضية للمستخدمين الجدد
|
||||
title: الاشتراكات الافتراضية للمستخدمين الجدد
|
||||
contact_information:
|
||||
email: البريد الإلكتروني المهني
|
||||
username: الإتصال بالمستخدِم
|
||||
username: الاتصال بالمستخدِم
|
||||
custom_css:
|
||||
desc_html: يقوم بتغيير المظهر بواسطة سي أس أس يُحمَّل على كافة الصفحات
|
||||
title: سي أس أس مخصص
|
||||
|
@ -398,7 +417,7 @@ ar:
|
|||
desc_html: معروض على الصفحة الأولى. لا يقل عن 600 × 100 بكسل. عند عدم التعيين ، تعود الصورة إلى النسخة المصغرة على سبيل المثال
|
||||
title: الصورة الرأسية
|
||||
peers_api_enabled:
|
||||
desc_html: أسماء النطاقات التي إلتقى بها مثيل الخادوم على البيئة الموحَّدة فيديفرس
|
||||
desc_html: أسماء النطاقات التي التقى بها مثيل الخادوم على البيئة الموحَّدة فديفرس
|
||||
title: نشر عدد مثيلات الخوادم التي تم مصادفتها
|
||||
preview_sensitive_media:
|
||||
desc_html: روابط المُعَاينة على مواقع الويب الأخرى ستقوم بعرض صُوَر مصغّرة حتى و إن كانت الوسائط حساسة
|
||||
|
@ -416,9 +435,13 @@ ar:
|
|||
min_invite_role:
|
||||
disabled: لا أحد
|
||||
title: المستخدِمون المصرح لهم لإرسال الدعوات
|
||||
registrations_mode:
|
||||
modes:
|
||||
none: لا أحد يمكنه إنشاء حساب
|
||||
open: يمكن للجميع إنشاء حساب
|
||||
title: طريقة إنشاء الحسابات
|
||||
show_known_fediverse_at_about_page:
|
||||
desc_html: عند التثبت ، سوف تظهر toots من جميع fediverse المعروفة على عرض مسبق. وإلا فإنه سيعرض فقط toots المحلية.
|
||||
title: إظهار الفيديفرس الموحَّد في خيط المُعايَنة
|
||||
title: إظهار الفديفرس الموحَّد في خيط المُعايَنة
|
||||
show_staff_badge:
|
||||
desc_html: عرض شارة الموظفين على صفحة المستخدم
|
||||
title: إظهار شارة الموظفين
|
||||
|
@ -429,17 +452,17 @@ ar:
|
|||
desc_html: مكان جيد لمدونة قواعد السلوك والقواعد والإرشادات وغيرها من الأمور التي تحدد حالتك. يمكنك استخدام علامات HTML
|
||||
title: الوصف المُفصّل للموقع
|
||||
site_short_description:
|
||||
desc_html: يتم عرضه في لوحة جانبية و في البيانات الوصفية. قم بوصف ماستدون و ما يميز هذا السيرفر عن الآخرين في فقرة موجزة. إن تركت الحقل فارغا فسوف يتم عرض الوصف الإفتراضي لمثيل الخادوم.
|
||||
desc_html: يتم عرضه في لوحة جانبية و في البيانات الوصفية. قم بوصف ماستدون و ما يميز هذا السيرفر عن الآخرين في فقرة موجزة. إن تركت الحقل فارغا فسوف يتم عرض الوصف الافتراضي لمثيل الخادوم.
|
||||
title: مقدمة وصفية قصيرة عن مثيل الخادوم
|
||||
site_terms:
|
||||
desc_html: يمكنك كتابة سياسة الخصوصية الخاصة بك ، شروط الخدمة أو غيرها من القوانين. يمكنك استخدام علامات HTML
|
||||
title: شروط الخدمة المخصصة
|
||||
site_title: إسم مثيل الخادم
|
||||
site_title: اسم مثيل الخادم
|
||||
thumbnail:
|
||||
desc_html: يستخدم للعروض السابقة عبر Open Graph و API. 1200x630px موصى به
|
||||
title: الصورة الرمزية المصغرة لمثيل الخادوم
|
||||
timeline_preview:
|
||||
desc_html: عرض الخيط العمومي على صفحة الإستقبال
|
||||
desc_html: عرض الخيط العمومي على صفحة الاستقبال
|
||||
title: مُعاينة الخيط العام
|
||||
title: إعدادات الموقع
|
||||
statuses:
|
||||
|
@ -460,7 +483,6 @@ ar:
|
|||
confirmed: مؤكَّد
|
||||
expires_in: تنتهي مدة صلاحيتها في
|
||||
last_delivery: آخر إيداع
|
||||
title: WebSub
|
||||
topic: الموضوع
|
||||
tags:
|
||||
accounts: الحسابات
|
||||
|
@ -478,15 +500,20 @@ ar:
|
|||
edit_preset: تعديل نموذج التحذير
|
||||
title: إدارة نماذج التحذير
|
||||
admin_mailer:
|
||||
new_pending_account:
|
||||
subject: حساب جديد في انتظار مراجعة على %{instance} (%{username})
|
||||
new_report:
|
||||
body: قام %{reporter} بالإبلاغ عن %{target}
|
||||
body_remote: أبلغ شخص ما من %{domain} عن %{target}
|
||||
subject: تقرير جديد ل%{instance} (#%{id})
|
||||
appearance:
|
||||
advanced_web_interface: واجهة الويب المتقدمة
|
||||
confirmation_dialogs: نوافذ التأكيد
|
||||
sensitive_content: محتوى حساس
|
||||
application_mailer:
|
||||
notification_preferences: تعديل خيارات البريد الإلكتروني
|
||||
salutation: "%{name}،"
|
||||
settings: 'تغيير تفضيلات البريد الإلكتروني: %{link}'
|
||||
view: 'View:'
|
||||
view_profile: عرض الملف الشخصي
|
||||
view_status: عرض المنشور
|
||||
applications:
|
||||
|
@ -498,7 +525,9 @@ ar:
|
|||
warning: كن حذرا مع هذه البيانات. لا تقم أبدا بمشاركتها مع الآخَرين!
|
||||
your_token: رمز نفاذك
|
||||
auth:
|
||||
apply_for_account: اطلب دعوة
|
||||
change_password: الكلمة السرية
|
||||
checkbox_agreement_html: أوافق على <a href="%{rules_path}" target="_blank">قواعد الخادم</a> و <a href="%{terms_path}" target="_blank">شروط الخدمة</a>
|
||||
confirm_email: تأكيد عنوان البريد الإلكتروني
|
||||
delete_account: حذف حساب
|
||||
delete_account_html: إن كنت ترغب في حذف حسابك يُمكنك <a href="%{path}">المواصلة هنا</a>. سوف يُطلَبُ منك التأكيد قبل الحذف.
|
||||
|
@ -507,21 +536,23 @@ ar:
|
|||
invalid_reset_password_token: رمز إعادة تعيين كلمة المرور غير صالح أو منتهي الصلاحية. يرجى طلب واحد جديد.
|
||||
login: تسجيل الدخول
|
||||
logout: خروج
|
||||
migrate_account: الإنتقال إلى حساب آخر
|
||||
migrate_account: الانتقال إلى حساب آخر
|
||||
migrate_account_html: إن كنت ترغب في تحويل هذا الحساب نحو حساب آخَر، يُمكِنُك <a href="%{path}">إعداده هنا</a>.
|
||||
or_log_in_with: أو قم بتسجيل الدخول بواسطة
|
||||
providers:
|
||||
cas: CAS
|
||||
saml: SAML
|
||||
register: إنشاء حساب
|
||||
registration_closed: لا يقبل %{instance} استقبال أعضاء جدد
|
||||
resend_confirmation: إعادة إرسال تعليمات التأكيد
|
||||
reset_password: إعادة تعيين كلمة المرور
|
||||
security: الأمان
|
||||
set_new_password: إدخال كلمة مرور جديدة
|
||||
trouble_logging_in: هل صادفتكم مشكلة في الولوج؟
|
||||
authorize_follow:
|
||||
already_following: أنت تتابع بالفعل هذا الحساب
|
||||
error: يا للأسف، وقع هناك خطأ إثر عملية البحث عن الحساب عن بعد
|
||||
follow: إتبع
|
||||
follow: اتبع
|
||||
follow_request: 'لقد قمت بإرسال طلب متابعة إلى:'
|
||||
following: 'مرحى! أنت الآن تتبع:'
|
||||
post_follow:
|
||||
|
@ -573,12 +604,14 @@ ar:
|
|||
content: نحن متأسفون، لقد حدث خطأ ما مِن جانبنا.
|
||||
title: هذه الصفحة خاطئة
|
||||
noscript_html: يرجى تفعيل الجافا سكريبت لاستخدام تطبيق الويب لماستدون، أو عِوض ذلك قوموا بتجريب إحدى <a href="%{apps_path}">التطبيقات الأصلية</a> الدّاعمة لماستدون على منصّتكم.
|
||||
existing_username_validator:
|
||||
not_found_multiple: تعذر العثور على %{usernames}
|
||||
exports:
|
||||
archive_takeout:
|
||||
date: التاريخ
|
||||
download: تنزيل نسخة لحسابك
|
||||
hint_html: بإمكانك طلب نسخة كاملة لـ <strong>كافة تبويقاتك و الوسائط التي قمت بنشرها</strong>. البيانات المُصدَّرة ستكون محفوظة على شكل نسق ActivityPub و باستطاعتك قراءتها بأي برنامج يدعم هذا النسق. يُمكنك طلب نسخة كل 7 أيام.
|
||||
in_progress: عملية جمع نسخة لبيانات حسابك جارية …
|
||||
in_progress: عملية جمع نسخة لبيانات حسابك جارية...
|
||||
request: طلب نسخة لحسابك
|
||||
size: الحجم
|
||||
blocks: قمت بحظر
|
||||
|
@ -611,8 +644,10 @@ ar:
|
|||
more: المزيد…
|
||||
resources: الموارد
|
||||
generic:
|
||||
all: الكل
|
||||
changes_saved_msg: تم حفظ التعديلات بنجاح!
|
||||
copy: نسخ
|
||||
order_by: ترتيب بحسب
|
||||
save_changes: حفظ التغييرات
|
||||
validation_errors:
|
||||
few: هناك شيء ما ليس على ما يرام! يُرجى مراجعة الأخطاء الـ %{count} أدناه
|
||||
|
@ -621,6 +656,17 @@ ar:
|
|||
other: هناك شيء ما ليس على ما يرام! يُرجى مراجعة الأخطاء الـ %{count} أدناه
|
||||
two: هناك شيء ما ليس على ما يرام! يُرجى مراجعة الأخطاء الـ %{count} أدناه
|
||||
zero: هناك شيء ما ليس على ما يرام! يُرجى مراجعة الأخطاء الـ %{count} أدناه
|
||||
identity_proofs:
|
||||
active: نشط
|
||||
authorize: نعم ، قم بترخيصه
|
||||
authorize_connection_prompt: هل تريد ترخيص هذا الاتصال المشفّر؟
|
||||
i_am_html: أنا %{username} على %{service}.
|
||||
identity: الهوية
|
||||
inactive: ليس نشطا
|
||||
publicize_checkbox: 'وقم بتبويق هذا:'
|
||||
publicize_toot: 'متحقق منه! أنا %{username} على %{service}: %{url}'
|
||||
status: حالة التحقق
|
||||
view_proof: عرض الدليل
|
||||
imports:
|
||||
modes:
|
||||
merge: دمج
|
||||
|
@ -638,7 +684,7 @@ ar:
|
|||
in_memoriam_html: في ذكرى.
|
||||
invites:
|
||||
delete: تعطيل
|
||||
expired: إنتهت صلاحيتها
|
||||
expired: انتهت صلاحيتها
|
||||
expires_in:
|
||||
'1800': 30 دقيقة
|
||||
'21600': 6 ساعات
|
||||
|
@ -654,8 +700,8 @@ ar:
|
|||
many: "%{count} استخدامات"
|
||||
one: استخدام واحد
|
||||
other: "%{count} استخدامات"
|
||||
two: استخدامات
|
||||
zero: استخدامات
|
||||
two: "%{count} استخدامات"
|
||||
zero: "%{count} استخدامات"
|
||||
max_uses_prompt: بلا حدود
|
||||
prompt: توليد و مشاركة روابط للسماح للآخَرين بالنفاذ إلى مثيل الخادوم هذا
|
||||
table:
|
||||
|
@ -693,9 +739,9 @@ ar:
|
|||
many: "%{count} إشعارات جديدة منذ آخر زيارة لك إلى \U0001F418"
|
||||
one: "إشعار واحد 1 منذ آخر زيارة لك لـ \U0001F418"
|
||||
other: "%{count} إشعارات جديدة منذ آخر زيارة لك إلى \U0001F418"
|
||||
two: "إشعارات جديدة منذ آخر زيارة لك إلى \U0001F418"
|
||||
zero: "إشعارات جديدة منذ آخر زيارة لك إلى \U0001F418"
|
||||
title: أثناء فترة غيابك …
|
||||
two: "%{count} إشعارات جديدة منذ آخر زيارة لك إلى \U0001F418"
|
||||
zero: "%{count} إشعارات جديدة منذ آخر زيارة لك إلى \U0001F418"
|
||||
title: أثناء فترة غيابك...
|
||||
favourite:
|
||||
body: 'أُعجب %{name} بمنشورك:'
|
||||
subject: أُعجِب %{name} بمنشورك
|
||||
|
@ -723,20 +769,39 @@ ar:
|
|||
decimal_units:
|
||||
format: "%n%u"
|
||||
units:
|
||||
billion: B
|
||||
million: M
|
||||
billion: بل
|
||||
million: ملي
|
||||
quadrillion: كواد
|
||||
thousand: ألف
|
||||
trillion: T
|
||||
unit: ''
|
||||
trillion: ترل
|
||||
pagination:
|
||||
newer: الأحدَث
|
||||
next: التالي
|
||||
older: الأقدَم
|
||||
prev: السابق
|
||||
truncate: و
|
||||
polls:
|
||||
errors:
|
||||
already_voted: لقد قمت بالتصويت على استطلاع الرأي هذا مِن قبل
|
||||
duplicate_options: يحتوي على عناصر مكررة
|
||||
duration_too_short: مبكّر جدا
|
||||
expired: لقد انتهى استطلاع الرأي
|
||||
preferences:
|
||||
other: إعدادات أخرى
|
||||
posting_defaults: التفضيلات الافتراضية لنشر التبويقات
|
||||
public_timelines: الخيوط الزمنية العامة
|
||||
relationships:
|
||||
activity: نشاط الحساب
|
||||
dormant: في سبات
|
||||
last_active: آخر نشاط
|
||||
most_recent: الأحدث
|
||||
moved: هاجر
|
||||
primary: رئيسي
|
||||
relationship: العلاقة
|
||||
remove_selected_domains: احذف كافة المتابِعين القادمين مِن النطاقات المختارة
|
||||
remove_selected_followers: احذف المتابِعين الذين قمت باختيارهم
|
||||
remove_selected_follows: الغي متابعة المستخدمين الذين اخترتهم
|
||||
status: حالة الحساب
|
||||
remote_follow:
|
||||
acct: قم بإدخال عنوان حسابك username@domain الذي من خلاله تود النشاط
|
||||
missing_resource: تعذر العثور على رابط التحويل المطلوب الخاص بحسابك
|
||||
|
@ -799,16 +864,24 @@ ar:
|
|||
revoke_success: تم إبطال الجلسة بنجاح
|
||||
title: الجلسات
|
||||
settings:
|
||||
account: الحساب
|
||||
account_settings: إعدادات الحساب
|
||||
appearance: المظهر
|
||||
authorized_apps: التطبيقات المرخص لها
|
||||
back: عودة إلى ماستدون
|
||||
delete: حذف الحسابات
|
||||
development: التطوير
|
||||
edit_profile: تعديل الملف الشخصي
|
||||
export: تصدير البيانات
|
||||
import: إستيراد
|
||||
featured_tags: الوسوم الشائعة
|
||||
identity_proofs: دلائل الهوية
|
||||
import: استيراد
|
||||
import_and_export: استيراد وتصدير
|
||||
migrate: تهجير الحساب
|
||||
notifications: الإخطارات
|
||||
preferences: التفضيلات
|
||||
profile: الملف الشخصي
|
||||
relationships: المتابِعون والمتابَعون
|
||||
two_factor_authentication: المُصادقة بخُطوَتَيْن
|
||||
statuses:
|
||||
attached:
|
||||
|
@ -818,15 +891,15 @@ ar:
|
|||
many: "%{count} صور"
|
||||
one: صورة %{count}
|
||||
other: "%{count} صور"
|
||||
two: صور
|
||||
zero: صور
|
||||
two: "%{count} صورة"
|
||||
zero: "%{count} صورة"
|
||||
video:
|
||||
few: "%{count} فيديوهات"
|
||||
many: "%{count} فيديوهات"
|
||||
one: فيديو %{count}
|
||||
other: "%{count} فيديوهات"
|
||||
two: فيديوهات
|
||||
zero: فيديوهات
|
||||
two: "%{count} فيديوهات"
|
||||
zero: "%{count} فيديوهات"
|
||||
boosted_from_html: تم إعادة ترقيته مِن %{acct_link}
|
||||
content_warning: 'تحذير عن المحتوى: %{warning}'
|
||||
disallowed_hashtags:
|
||||
|
@ -837,18 +910,20 @@ ar:
|
|||
two: 'يحتوي على وسوم غير مسموح بها: %{tags}'
|
||||
zero: 'يحتوي على وسوم غير مسموح بها: %{tags}'
|
||||
language_detection: اكتشاف اللغة تلقائيا
|
||||
open_in_web: إفتح في الويب
|
||||
open_in_web: افتح في الويب
|
||||
over_character_limit: تم تجاوز حد الـ %{max} حرف المسموح بها
|
||||
pin_errors:
|
||||
limit: لقد بلغت الحد الأقصى للتبويقات المدبسة
|
||||
ownership: لا يمكن تدبيس تبويق نشره شخص آخر
|
||||
private: لا يمكن تدبيس تبويق لم يُنشر للعامة
|
||||
reblog: لا يمكن تثبيت ترقية
|
||||
poll:
|
||||
vote: صوّت
|
||||
show_more: أظهر المزيد
|
||||
sign_in_to_participate: قم بتسجيل الدخول للمشاركة في هذه المحادثة
|
||||
title: '%{name}: "%{quote}"'
|
||||
visibilities:
|
||||
private: إعرض فقط لمتتبعيك
|
||||
private: اعرض فقط لمتتبعيك
|
||||
private_long: إعرضه لمتتبعيك فقط
|
||||
public: للعامة
|
||||
public_long: يمكن للجميع رؤيته
|
||||
|
@ -861,13 +936,9 @@ ar:
|
|||
terms:
|
||||
title: شروط الخدمة وسياسة الخصوصية على %{instance}
|
||||
themes:
|
||||
contrast: تباين عالٍ
|
||||
default: ماستدون
|
||||
contrast: ماستدون (تباين عالٍ)
|
||||
default: ماستدون (داكن)
|
||||
mastodon-light: ماستدون (فاتح)
|
||||
time:
|
||||
formats:
|
||||
default: "%b %d, %Y, %H:%M"
|
||||
month: "%b %Y"
|
||||
two_factor_authentication:
|
||||
code_hint: قم بإدخال الرمز المُوَلّد عبر تطبيق المصادقة للتأكيد
|
||||
description_html: في حال تفعيل <strong>المصادقة بخطوتين </strong>، فتسجيل الدخول يتطلب منك أن يكون بحوزتك هاتفك النقال قصد توليد الرمز الذي سيتم إدخاله.
|
||||
|
@ -875,12 +946,12 @@ ar:
|
|||
enable: تفعيل
|
||||
enabled: نظام المصادقة بخطوتين مُفعَّل
|
||||
enabled_success: تم تفعيل المصادقة بخطوتين بنجاح
|
||||
generate_recovery_codes: توليد رموز الإسترجاع
|
||||
generate_recovery_codes: توليد رموز الاسترجاع
|
||||
instructions_html: "<strong>قم بمسح رمز الكيو آر عبر Google Authenticator أو أي تطبيق TOTP على جهازك</strong>. من الآن فصاعدا سوف يقوم ذاك التطبيق بتوليد رموز يجب عليك إدخالها عند تسجيل الدخول."
|
||||
lost_recovery_codes: تُمكّنك رموز الإسترجاع الإحتاطية مِن استرجاع النفاذ إلى حسابك في حالة فقدان جهازك المحمول. إن ضاعت منك هذه الرموز فبإمكانك إعادة توليدها مِن هنا و إبطال الرموز القديمة.
|
||||
lost_recovery_codes: تُمكّنك رموز الاسترجاع الاحتياطية مِن استرجاع النفاذ إلى حسابك في حالة فقدان جهازك المحمول. إن ضاعت منك هذه الرموز فبإمكانك إعادة توليدها مِن هنا و إبطال الرموز القديمة.
|
||||
manual_instructions: 'في حالة تعذّر مسح رمز الكيو آر أو طُلب منك إدخال يدوي، يُمْكِنك إدخال هذا النص السري على التطبيق:'
|
||||
recovery_codes: النسخ الإحتياطي لرموز الإسترجاع
|
||||
recovery_codes_regenerated: تم إعادة توليد رموز الإسترجاع الإحتياطية بنجاح
|
||||
recovery_codes: النسخ الاحتياطي لرموز الاسترجاع
|
||||
recovery_codes_regenerated: تم إعادة توليد رموز الاسترجاع الاحتياطية بنجاح
|
||||
setup: تنشيط
|
||||
wrong_code: الرمز الذي أدخلته غير صالح! تحقق من صحة الوقت على الخادم و الجهاز؟
|
||||
user_mailer:
|
||||
|
@ -900,12 +971,12 @@ ar:
|
|||
suspend: الحساب مُعلَّق
|
||||
welcome:
|
||||
edit_profile_action: تهيئة الملف الشخصي
|
||||
edit_profile_step: يُمكنك·كي تخصيص ملفك الشخصي عن طريق تحميل صورة رمزية ورأسية و بتعديل إسمك·كي العلني وأكثر. و إن أردت·تي معاينة المتابِعين و المتابعات الجُدد قبيل السماح لهم·ن بمتابَعتك فيمكنك·كي تأمين حسابك·كي.
|
||||
explanation: ها هي بعض النصائح قبل بداية الإستخدام
|
||||
edit_profile_step: يُمكنك·كي تخصيص ملفك الشخصي عن طريق تحميل صورة رمزية ورأسية و بتعديل اسمك·كي العلني وأكثر. و إن أردت·تي معاينة المتابِعين و المتابعات الجُدد قبيل السماح لهم·ن بمتابَعتك فيمكنك·كي تأمين حسابك·كي.
|
||||
explanation: ها هي بعض النصائح قبل بداية الاستخدام
|
||||
final_action: اشرَع في النشر
|
||||
final_step: |-
|
||||
يمكنك الشروع في النشر في الحين! حتى و إن لم كنت لا تمتلك متابِعين بعدُ، يمكن للآخرين الإطلاع على منشوراتك الموجهة للجمهور على الخيط المحلي أو إن قمت باستخدام وسوم.
|
||||
إبدأ بتقديم نفسك باستعمال وسم #introductions.
|
||||
ابدأ بتقديم نفسك باستعمال وسم #introductions.
|
||||
full_handle: عنوانك الكامل
|
||||
full_handle_hint: هذا هو ما يجب تقديمه لأصدقائك قصد أن يكون بإمكانهم متابَعتك أو مُراسَلتك حتى و إن كانت حساباتهم على خوادم أخرى.
|
||||
review_preferences_action: تعديل التفضيلات
|
||||
|
@ -919,7 +990,7 @@ ar:
|
|||
follow_limit_reached: لا يمكنك متابعة أكثر مِن %{limit} أشخاص
|
||||
invalid_email: عنوان البريد الإلكتروني غير صالح
|
||||
invalid_otp_token: رمز المصادقة بخطوتين غير صالح
|
||||
otp_lost_help_html: إن فقدتَهُما ، يمكنك الإتصال بـ %{email}
|
||||
otp_lost_help_html: إن فقدتَهُما ، يمكنك الاتصال بـ %{email}
|
||||
seamless_external_login: لقد قمت بتسجيل الدخول عبر خدمة خارجية، إنّ إعدادات الكلمة السرية و البريد الإلكتروني غير متوفرة.
|
||||
signed_in_as: 'تم تسجيل دخولك بصفة:'
|
||||
verification:
|
||||
|
|
|
@ -4,7 +4,6 @@ ast:
|
|||
about_mastodon_html: Mastodon ye una rede social basada en protocolos abiertos y software de códigu llibre. Ye descentralizada, como'l corréu electrónicu.
|
||||
about_this: Tocante a
|
||||
administered_by: 'Alministráu por:'
|
||||
api: API
|
||||
contact: Contautu
|
||||
contact_missing: Nun s'afitó
|
||||
contact_unavailable: N/D
|
||||
|
@ -15,7 +14,6 @@ ast:
|
|||
hosted_on: Mastodon ta agospiáu en %{domain}
|
||||
learn_more: Deprendi más
|
||||
source_code: Códigu fonte
|
||||
status_count_after: estaos
|
||||
status_count_before: Que crearon
|
||||
terms: Términos del serviciu
|
||||
user_count_after:
|
||||
|
@ -33,10 +31,6 @@ ast:
|
|||
nothing_here: "¡Equí nun hai nada!"
|
||||
people_followed_by: Persones a les que sigue %{name}
|
||||
people_who_follow: Persones que siguen a %{name}
|
||||
posts:
|
||||
one: Toot
|
||||
other: Toots
|
||||
posts_tab_heading: Toots
|
||||
posts_with_replies: Toots y rempuestes
|
||||
reserved_username: El nome d'usuariu ta acutáu
|
||||
roles:
|
||||
|
@ -44,12 +38,10 @@ ast:
|
|||
admin:
|
||||
accounts:
|
||||
are_you_sure: "¿De xuru?"
|
||||
avatar: Avatar
|
||||
by_domain: Dominiu
|
||||
domain: Dominiu
|
||||
email: Corréu
|
||||
followers: Siguidores
|
||||
ip: IP
|
||||
location:
|
||||
local: Llocal
|
||||
title: Allugamientu
|
||||
|
@ -64,7 +56,6 @@ ast:
|
|||
statuses: Estaos
|
||||
title: Cuentes
|
||||
username: Nome d'usuariu
|
||||
web: Web
|
||||
action_logs:
|
||||
actions:
|
||||
create_domain_block: "%{name} bloquió'l dominiu %{target}"
|
||||
|
@ -81,7 +72,6 @@ ast:
|
|||
features: Carauterístiques
|
||||
hidden_service: Federación con servicios anubríos
|
||||
recent_users: Usuarios recientes
|
||||
software: Software
|
||||
total_users: usuarios en total
|
||||
week_interactions: interaiciones d'esta selmana
|
||||
week_users_new: usuarios d'esta selmana
|
||||
|
@ -111,14 +101,10 @@ ast:
|
|||
title: Axustes del sitiu
|
||||
statuses:
|
||||
failed_to_execute: Fallu al executar
|
||||
subscriptions:
|
||||
title: WebSub
|
||||
title: Alministración
|
||||
admin_mailer:
|
||||
new_report:
|
||||
body_remote: Daquién dende %{domain} informó de %{target}
|
||||
application_mailer:
|
||||
salutation: "%{name},"
|
||||
applications:
|
||||
invalid_url: La URL apurrida nun ye válida
|
||||
warning: Ten curiáu con estos datos, ¡enxamás nun los compartas con naide!
|
||||
|
@ -130,9 +116,6 @@ ast:
|
|||
login: Aniciar sesión
|
||||
migrate_account: Mudase a otra cuenta
|
||||
migrate_account_html: Si deseyes redirixir esta cuenta a otra, pues <a href="%{path}"> configuralo equí</a>.
|
||||
providers:
|
||||
cas: CAS
|
||||
saml: SAML
|
||||
register: Rexistrase
|
||||
security: Seguranza
|
||||
authorize_follow:
|
||||
|
@ -162,6 +145,7 @@ ast:
|
|||
content: Falló la verificación de seguranza. ¿Tas bloquiando les cookies?
|
||||
title: Falló la verificación de seguranza
|
||||
'429': Ficiéronse milenta solicitúes
|
||||
'500':
|
||||
exports:
|
||||
archive_takeout:
|
||||
date: Data
|
||||
|
@ -169,7 +153,6 @@ ast:
|
|||
request: Solicitar l'archivu
|
||||
size: Tamañu
|
||||
blocks: Xente que bloquiesti
|
||||
csv: CSV
|
||||
follows: Xente que sigues
|
||||
mutes: Xente que silenciesti
|
||||
filters:
|
||||
|
@ -223,8 +206,6 @@ ast:
|
|||
digest:
|
||||
body: Equí hai un resume de los mensaxes que nun viesti dende la última visita'l %{since}
|
||||
mention: "%{name} mentóte en:"
|
||||
subject:
|
||||
other: "%{count} avisos nuevos dende la última visita \U0001F418"
|
||||
follow:
|
||||
body: "¡Agora %{name} ta siguiéndote!"
|
||||
title: Siguidor nuevu
|
||||
|
@ -239,10 +220,6 @@ ast:
|
|||
body: "%{name} compartió'l to estáu:"
|
||||
subject: "%{name} compartió'l to estáu"
|
||||
title: Compartición nueva de toot
|
||||
number:
|
||||
human:
|
||||
decimal_units:
|
||||
format: "%n%u"
|
||||
pagination:
|
||||
next: Siguiente
|
||||
remote_follow:
|
||||
|
@ -255,38 +232,11 @@ ast:
|
|||
sessions:
|
||||
browser: Restolador
|
||||
browsers:
|
||||
alipay: Alipay
|
||||
blackberry: Blackberry
|
||||
chrome: Chrome
|
||||
edge: Microsoft Edge
|
||||
electron: Electron
|
||||
firefox: Firefox
|
||||
generic: Restolador desconocíu
|
||||
ie: Internet Explorer
|
||||
micro_messenger: MicroMessenger
|
||||
opera: Opera
|
||||
otter: Otter
|
||||
phantom_js: PhantomJS
|
||||
qq: QQ Browser
|
||||
safari: Safari
|
||||
uc_browser: UCBrowser
|
||||
weibo: Weibo
|
||||
current_session: Sesión actual
|
||||
description: "%{browser} en %{platform}"
|
||||
ip: IP
|
||||
platforms:
|
||||
adobe_air: Adobe Air
|
||||
android: Android
|
||||
blackberry: Blackberry
|
||||
chrome_os: ChromeOS
|
||||
firefox_os: Firefox OS
|
||||
ios: iOS
|
||||
linux: Linux
|
||||
mac: Mac
|
||||
other: plataforma desconocida
|
||||
windows: Windows
|
||||
windows_mobile: Windows Mobile
|
||||
windows_phone: Windows Phone
|
||||
title: Sesiones
|
||||
settings:
|
||||
authorized_apps: Aplicaciones autorizaes
|
||||
|
|
|
@ -5,18 +5,14 @@ bg:
|
|||
about_this: За тази инстанция
|
||||
contact: За контакти
|
||||
source_code: Програмен код
|
||||
status_count_after: публикации
|
||||
status_count_before: Написали
|
||||
user_count_after: потребители
|
||||
user_count_before: Дом на
|
||||
accounts:
|
||||
follow: Последвай
|
||||
followers: Последователи
|
||||
following: Следва
|
||||
nothing_here: Тук няма никого!
|
||||
people_followed_by: Хора, които %{name} следва
|
||||
people_who_follow: Хора, които следват %{name}
|
||||
posts: Публикации
|
||||
unfollow: Не следвай
|
||||
application_mailer:
|
||||
settings: 'Промяна на предпочитанията за e-mail: %{link}'
|
||||
|
@ -51,15 +47,20 @@ bg:
|
|||
x_minutes: "%{count} мин"
|
||||
x_months: "%{count} м"
|
||||
x_seconds: "%{count} сек"
|
||||
errors:
|
||||
'403': You don't have permission to view this page.
|
||||
'404': The page you are looking for isn't here.
|
||||
'410': The page you were looking for doesn't exist here anymore.
|
||||
'422':
|
||||
'429': Throttled
|
||||
'500':
|
||||
exports:
|
||||
blocks: Вашите блокирания
|
||||
csv: CSV
|
||||
follows: Вашите следвания
|
||||
storage: Съхранение на мултимедия
|
||||
generic:
|
||||
changes_saved_msg: Успешно запазване на промените!
|
||||
save_changes: Запази промените
|
||||
validation_errors: Нещо все още не е наред! Моля, прегледай грешките по-долу
|
||||
imports:
|
||||
preface: Можеш да импортираш някои данни, като например всички хора, които следваш или блокираш в акаунта си на тази инстанция, от файлове, създадени чрез експорт в друга инстанция.
|
||||
success: Твоите данни бяха успешно качени и ще бъдат обработени впоследствие
|
||||
|
@ -67,6 +68,14 @@ bg:
|
|||
blocking: Списък на блокираните
|
||||
following: Списък на последователите
|
||||
upload: Качване
|
||||
invites:
|
||||
expires_in:
|
||||
'1800': 30 minutes
|
||||
'21600': 6 hours
|
||||
'3600': 1 hour
|
||||
'43200': 12 hours
|
||||
'604800': 1 week
|
||||
'86400': 1 day
|
||||
media_attachments:
|
||||
validations:
|
||||
images_and_video: Не мога да прикача видеоклип към публикация, която вече съдържа изображения
|
||||
|
@ -96,17 +105,6 @@ bg:
|
|||
reblog:
|
||||
body: 'Твоята публикация беше споделена от %{name}:'
|
||||
subject: "%{name} сподели публикацията ти"
|
||||
number:
|
||||
human:
|
||||
decimal_units:
|
||||
format: "%n%u"
|
||||
units:
|
||||
billion: B
|
||||
million: M
|
||||
quadrillion: Q
|
||||
thousand: K
|
||||
trillion: T
|
||||
unit: ''
|
||||
pagination:
|
||||
next: Напред
|
||||
prev: Назад
|
||||
|
|
|
@ -68,6 +68,7 @@ bn:
|
|||
admin: পরিচালক
|
||||
bot: রোবট
|
||||
moderator: পরিচালক
|
||||
unavailable: প্রোফাইল অনুপলব্ধ
|
||||
unfollow: অনুসরণ বাদ
|
||||
admin:
|
||||
account_actions:
|
||||
|
@ -80,6 +81,7 @@ bn:
|
|||
destroyed_msg: প্রশাসনবস্তুত লেখাটি সঠিকভাবে মুছে ফেলা হয়েছে!
|
||||
accounts:
|
||||
approve: অনুমোদন দিন
|
||||
approve_all: প্রত্যেক কে অনুমতি দিন
|
||||
are_you_sure: আপনি কি নিশ্চিত ?
|
||||
avatar: অবতার
|
||||
by_domain: ওয়েবসাইট/কার্যক্ষেত্র
|
||||
|
@ -137,5 +139,20 @@ bn:
|
|||
outbox_url: চিঠি পাঠানোর বাক্স লিংক
|
||||
pending: পয্র্যবেক্ষণের অপেক্ষায় আছে
|
||||
perform_full_suspension: বাতিল করা
|
||||
errors:
|
||||
'403': You don't have permission to view this page.
|
||||
'404': The page you are looking for isn't here.
|
||||
'410': The page you were looking for doesn't exist here anymore.
|
||||
'422':
|
||||
'429': Throttled
|
||||
'500':
|
||||
invites:
|
||||
expires_in:
|
||||
'1800': 30 minutes
|
||||
'21600': 6 hours
|
||||
'3600': 1 hour
|
||||
'43200': 12 hours
|
||||
'604800': 1 week
|
||||
'86400': 1 day
|
||||
verification:
|
||||
verification: সত্যতা নির্ধারণ
|
||||
|
|
|
@ -8,7 +8,7 @@ ca:
|
|||
active_footnote: Usuaris actius mensuals (UAM)
|
||||
administered_by: 'Administrat per:'
|
||||
api: API
|
||||
apps: Apps mòbil
|
||||
apps: Apps mòbils
|
||||
apps_platforms: Utilitza Mastodon des de iOS, Android i altres plataformes
|
||||
browse_directory: Navega per el directori de perfils i filtra segons interessos
|
||||
browse_public_posts: Navega per una transmissió en directe de publicacions públiques a Mastodon
|
||||
|
@ -30,8 +30,8 @@ ca:
|
|||
server_stats: 'Estadístiques del servidor:'
|
||||
source_code: Codi font
|
||||
status_count_after:
|
||||
one: estat
|
||||
other: estats
|
||||
one: toot
|
||||
other: toots
|
||||
status_count_before: Que han escrit
|
||||
tagline: Segueix els teus amics i descobreix-ne de nous
|
||||
terms: Termes del servei
|
||||
|
@ -563,7 +563,7 @@ ca:
|
|||
about_x_years: "%{count} anys"
|
||||
almost_x_years: "%{count}anys"
|
||||
half_a_minute: Ara mateix
|
||||
less_than_x_minutes: "%{count}m"
|
||||
less_than_x_minutes: fa %{count} minuts
|
||||
less_than_x_seconds: Ara mateix
|
||||
over_x_years: "%{count} anys"
|
||||
x_days: "%{count} dies"
|
||||
|
@ -766,7 +766,6 @@ ca:
|
|||
quadrillion: Q
|
||||
thousand: m
|
||||
trillion: T
|
||||
unit: " "
|
||||
pagination:
|
||||
newer: Més recent
|
||||
next: Endavant
|
||||
|
@ -776,7 +775,7 @@ ca:
|
|||
polls:
|
||||
errors:
|
||||
already_voted: Ja has votat en aquesta enquesta
|
||||
duplicate_options: Conté opcions duplicades
|
||||
duplicate_options: conté opcions duplicades
|
||||
duration_too_long: està massa lluny en el futur
|
||||
duration_too_short: és massa aviat
|
||||
expired: L'enquesta ja ha finalitzat
|
||||
|
|
|
@ -154,7 +154,7 @@ co:
|
|||
already_confirmed: St’utilizatore hè digià cunfirmatu
|
||||
send: Rimandà un’e-mail di cunfirmazione
|
||||
success: L’e-mail di cunfirmazione hè statu mandatu!
|
||||
reset: Reset
|
||||
reset: Riinizializà
|
||||
reset_password: Riinizializà a chjave d’accessu
|
||||
resubscribe: Riabbunassi
|
||||
role: Auturizazione
|
||||
|
@ -259,7 +259,7 @@ co:
|
|||
single_user_mode: Modu utilizatore unicu
|
||||
software: Lugiziale
|
||||
space: Usu di u spaziu
|
||||
title: Dashboard
|
||||
title: Quatru di strumenti
|
||||
total_users: utilizatori in tutale
|
||||
trends: Tindenze
|
||||
week_interactions: interazzione sta settimana
|
||||
|
@ -558,17 +558,17 @@ co:
|
|||
title: Siguità %{acct}
|
||||
datetime:
|
||||
distance_in_words:
|
||||
about_x_hours: "%{count}h"
|
||||
about_x_months: "%{count}mo"
|
||||
about_x_years: "%{count}y"
|
||||
almost_x_years: "%{count}y"
|
||||
about_x_hours: "%{count}o"
|
||||
about_x_months: "%{count}Me"
|
||||
about_x_years: "%{count}A"
|
||||
almost_x_years: "%{count}A"
|
||||
half_a_minute: Avà
|
||||
less_than_x_minutes: "%{count}m"
|
||||
less_than_x_seconds: Avà
|
||||
over_x_years: "%{count}y"
|
||||
x_days: "%{count}d"
|
||||
over_x_years: "%{count}A"
|
||||
x_days: "%{count}ghj"
|
||||
x_minutes: "%{count}m"
|
||||
x_months: "%{count}mo"
|
||||
x_months: "%{count}Me"
|
||||
x_seconds: "%{count}s"
|
||||
deletes:
|
||||
bad_password_msg: È nò! Sta chjave ùn hè curretta
|
||||
|
@ -766,7 +766,6 @@ co:
|
|||
quadrillion: P
|
||||
thousand: K
|
||||
trillion: T
|
||||
unit: ''
|
||||
pagination:
|
||||
newer: Più ricente
|
||||
next: Dopu
|
||||
|
|
|
@ -30,14 +30,16 @@ cs:
|
|||
server_stats: 'Statistika serveru:'
|
||||
source_code: Zdrojový kód
|
||||
status_count_after:
|
||||
few: tooty
|
||||
one: toot
|
||||
other: tootů
|
||||
few: příspěvky
|
||||
many: příspěvků
|
||||
one: příspěvek
|
||||
other: příspěvků
|
||||
status_count_before: Kteří napsali
|
||||
tagline: Sledujte své přátele a objevujte nové
|
||||
terms: Podmínky používání
|
||||
user_count_after:
|
||||
few: uživatelé
|
||||
many: uživatelů
|
||||
one: uživatel
|
||||
other: uživatelů
|
||||
user_count_before: Domov
|
||||
|
@ -47,6 +49,7 @@ cs:
|
|||
follow: Sledovat
|
||||
followers:
|
||||
few: Sledující
|
||||
many: Sledujících
|
||||
one: Sledující
|
||||
other: Sledujících
|
||||
following: Sledovaných
|
||||
|
@ -63,6 +66,7 @@ cs:
|
|||
following: Musíte již sledovat osobu, kterou chcete podpořit
|
||||
posts:
|
||||
few: Tooty
|
||||
many: Tootů
|
||||
one: Toot
|
||||
other: Tootů
|
||||
posts_tab_heading: Tooty
|
||||
|
@ -118,7 +122,7 @@ cs:
|
|||
header: Záhlaví
|
||||
inbox_url: URL příchozí schránky
|
||||
invited_by: Pozván/a uživatelem
|
||||
ip: IP
|
||||
ip: IP adresa
|
||||
joined: Připojil/a se
|
||||
location:
|
||||
all: Všechny
|
||||
|
@ -296,6 +300,7 @@ cs:
|
|||
show:
|
||||
affected_accounts:
|
||||
few: "%{count} účty v databázi byly ovlivněny"
|
||||
many: "%{count} účtů v databázi bylo ovlivněno"
|
||||
one: Jeden účet v databázi byl ovlivněn
|
||||
other: "%{count} účtů v databázi bylo ovlivněno"
|
||||
retroactive:
|
||||
|
@ -322,6 +327,7 @@ cs:
|
|||
delivery_available: Doručení je k dispozici
|
||||
known_accounts:
|
||||
few: "%{count} známé účty"
|
||||
many: "%{count} známých účtů"
|
||||
one: "%{count} známý účet"
|
||||
other: "%{count} známých účtů"
|
||||
moderation:
|
||||
|
@ -593,6 +599,7 @@ cs:
|
|||
how_to_enable: Aktuálně nejste přihlášen/a do adresáře. Přihlásit se můžete níže. Použijte ve svém popisu profilu hashtagy, abyste mohl/a být uveden/a pod konkrétními hashtagy!
|
||||
people:
|
||||
few: "%{count} lidé"
|
||||
many: "%{count} lidí"
|
||||
one: "%{count} člověk"
|
||||
other: "%{count} lidí"
|
||||
errors:
|
||||
|
@ -657,6 +664,7 @@ cs:
|
|||
save_changes: Uložit změny
|
||||
validation_errors:
|
||||
few: Něco ještě není úplně v pořádku! Prosím zkontrolujte %{count} chyby níže
|
||||
many: Něco ještě není úplně v pořádku! Prosím zkontrolujte %{count} chyb níže
|
||||
one: Něco ještě není úplně v pořádku! Prosím zkontrolujte chybu níže
|
||||
other: Něco ještě není úplně v pořádku! Prosím zkontrolujte %{count} chyb níže
|
||||
html_validator:
|
||||
|
@ -709,6 +717,7 @@ cs:
|
|||
invited_by: 'Byl/a jste pozván/a uživatelem:'
|
||||
max_uses:
|
||||
few: "%{count} použití"
|
||||
many: "%{count} použití"
|
||||
one: 1 použití
|
||||
other: "%{count} použití"
|
||||
max_uses_prompt: Bez limitu
|
||||
|
@ -738,10 +747,12 @@ cs:
|
|||
mention: "%{name} vás zmínil/a v:"
|
||||
new_followers_summary:
|
||||
few: Navíc jste získal/a %{count} nové sledující, zatímco jste byl/a pryč! Skvělé!
|
||||
many: Navíc jste získal/a %{count} nových sledujících, zatímco jste byl/a pryč! Úžasné!
|
||||
one: Navíc jste získal/a jednoho nového sledujícího, zatímco jste byl/a pryč! Hurá!
|
||||
other: Navíc jste získal/a %{count} nových sledujících, zatímco jste byl/a pryč! Úžasné!
|
||||
subject:
|
||||
few: "%{count} nová oznámení od vaší poslední návštěvy \U0001F418"
|
||||
many: "%{count} nových oznámení od vaší poslední návštěvy \U0001F418"
|
||||
one: "1 nové oznámení od vaší poslední návštěvy \U0001F418"
|
||||
other: "%{count} nových oznámení od vaší poslední návštěvy \U0001F418"
|
||||
title: Ve vaší nepřítomnosti…
|
||||
|
@ -777,7 +788,6 @@ cs:
|
|||
quadrillion: bld
|
||||
thousand: tis
|
||||
trillion: bil
|
||||
unit: ''
|
||||
pagination:
|
||||
newer: Novější
|
||||
next: Další
|
||||
|
@ -860,7 +870,7 @@ cs:
|
|||
current_session: Aktuální relace
|
||||
description: "%{browser} na %{platform}"
|
||||
explanation: Tohle jsou webové prohlížeče aktuálně přihlášené na váš účet Mastodon.
|
||||
ip: IP
|
||||
ip: IP adresa
|
||||
platforms:
|
||||
adobe_air: Adobe Air
|
||||
android: Androidu
|
||||
|
@ -902,16 +912,19 @@ cs:
|
|||
description: 'Přiloženo: %{attached}'
|
||||
image:
|
||||
few: "%{count} obrázky"
|
||||
many: "%{count} obrázků"
|
||||
one: "%{count} obrázek"
|
||||
other: "%{count} obrázků"
|
||||
video:
|
||||
few: "%{count} videa"
|
||||
many: "%{count} videí"
|
||||
one: "%{count} video"
|
||||
other: "%{count} videí"
|
||||
boosted_from_html: Boostnuto z %{acct_link}
|
||||
content_warning: 'Varování o obsahu: %{warning}'
|
||||
disallowed_hashtags:
|
||||
few: 'obsahoval nepovolené hashtagy: %{tags}'
|
||||
many: 'obsahoval nepovolené hashtagy: %{tags}'
|
||||
one: 'obsahoval nepovolený hashtag: %{tags}'
|
||||
other: 'obsahoval nepovolené hashtagy: %{tags}'
|
||||
language_detection: Zjistit jazyk automaticky
|
||||
|
@ -925,6 +938,7 @@ cs:
|
|||
poll:
|
||||
total_votes:
|
||||
few: "%{count} hlasy"
|
||||
many: "%{count} hlasů"
|
||||
one: "%{count} hlas"
|
||||
other: "%{count} hlasů"
|
||||
vote: Hlasovat
|
||||
|
|
|
@ -4,20 +4,30 @@ cy:
|
|||
about_hashtag_html: Dyma dŵtiau cyhoeddus wedi eu tagio gyda <strong>#%{hashtag}</strong>. Gallwch ryngweithio gyda nhw os oes gennych gyfrif yn unrhyw le yn y ffeddysawd.
|
||||
about_mastodon_html: Mae Mastodon yn rwydwaith cymdeithasol sy'n seiliedig ar brotocolau gwe a meddalwedd cod agored rhad ac am ddim. Yn debyg i e-bost mae'n ddatganoledig.
|
||||
about_this: Ynghylch
|
||||
active_count_after: yn weithredol
|
||||
active_footnote: Defnyddwyr Gweithredol Misol (DGM)
|
||||
administered_by: 'Gweinyddir gan:'
|
||||
api: API
|
||||
apps: Apiau symudol
|
||||
apps_platforms: Defnyddio Mastodon o iOS, Android a phlatfformau eraill
|
||||
browse_directory: Pori cyfeiriadur proffil a hidlo wrth diddordebau
|
||||
browse_public_posts: Pori ffrwd byw o byst cyhoeddus ar Fastodon
|
||||
contact: Cyswllt
|
||||
contact_missing: Heb ei osod
|
||||
contact_unavailable: Ddim yn berthnasol
|
||||
discover_users: Darganfod defnyddwyr
|
||||
documentation: Dogfennaeth
|
||||
extended_description_html: |
|
||||
<h3>Lle da ar gyfer rheolau</h3>
|
||||
<p>Nid yw'r disgrifiad estynedig wedi ei osod eto.</p>
|
||||
federation_hint_html: Gyda cyfrif ar %{instance}, gallwch dilyn pobl ar unrhyw gweinydd Mastodon, a thu hwnt.
|
||||
generic_description: Mae %{domain} yn un gweinydd yn y rhwydwaith
|
||||
get_apps: Rhowch gynnig ar ap dyfeis symudol
|
||||
hosted_on: Mastodon wedi ei weinyddu ar %{domain}
|
||||
learn_more: Dysu mwy
|
||||
privacy_policy: Polisi preifatrwydd
|
||||
see_whats_happening: Gweld beth sy'n digwydd
|
||||
server_stats: 'Ystadegau gweinydd:'
|
||||
source_code: Cod ffynhonnell
|
||||
status_count_after:
|
||||
few: statwsau
|
||||
|
@ -27,6 +37,7 @@ cy:
|
|||
two: statwsau
|
||||
zero: statwsau
|
||||
status_count_before: Ysgriffennwyd gan
|
||||
tagline: Dilyn ffrindiau a darganfod rhai newydd
|
||||
terms: Telerau gwasanaeth
|
||||
user_count_after:
|
||||
few: defnyddwyr
|
||||
|
@ -73,17 +84,20 @@ cy:
|
|||
admin: Gweinyddwr
|
||||
bot: Bot
|
||||
moderator: Safonwr
|
||||
unavailable: Proffil ddim ar gael
|
||||
unfollow: Dad-ddilyn
|
||||
admin:
|
||||
account_actions:
|
||||
action: Cyflawni gweithred
|
||||
title: Perfformio cymedroli ar %{acct}
|
||||
title: Perfformio gweithrediad goruwchwylio ar %{acct}
|
||||
account_moderation_notes:
|
||||
create: Gadael nodyn
|
||||
created_msg: Crewyd nodyn cymedroli yn llwyddiannus!
|
||||
created_msg: Crewyd nodyn goruwchwylio yn llwyddiannus!
|
||||
delete: Dileu
|
||||
destroyed_msg: Dinistrwyd nodyn cymedroli yn llwyddiannus!
|
||||
destroyed_msg: Dinistrwyd nodyn goruwchwylio yn llwyddiannus!
|
||||
accounts:
|
||||
approve: Cymeradwyo
|
||||
approve_all: Cymeradwyo pob un
|
||||
are_you_sure: Ydych chi'n siŵr?
|
||||
avatar: Afatar
|
||||
by_domain: Parth
|
||||
|
@ -129,15 +143,18 @@ cy:
|
|||
moderation:
|
||||
active: Yn weithredol
|
||||
all: Popeth
|
||||
pending: Yn aros
|
||||
silenced: Wedi ei dawelu
|
||||
suspended: Wedi ei atal
|
||||
title: Cymedroli
|
||||
moderation_notes: Nodiadau cymedroli
|
||||
title: Goruwchwyliad
|
||||
moderation_notes: Nodiadau goruwchwylio
|
||||
most_recent_activity: Gweithgarwch diweddaraf
|
||||
most_recent_ip: IP diweddaraf
|
||||
no_account_selected: Ni newidwyd dim cyfrif achos ni ddewiswyd dim un
|
||||
no_limits_imposed: Dim terfynau wedi'i gosod
|
||||
not_subscribed: Heb danysgrifio
|
||||
outbox_url: Allflwch URL
|
||||
pending: Yn aros am adolygiad
|
||||
perform_full_suspension: Atal
|
||||
profile_url: URL proffil
|
||||
promote: Hyrwyddo
|
||||
|
@ -145,6 +162,8 @@ cy:
|
|||
public: Cyhoeddus
|
||||
push_subscription_expires: Tanysgrifiad PuSH yn dod i ben
|
||||
redownload: Adnewyddu proffil
|
||||
reject: Gwrthod
|
||||
reject_all: Gwrthod pob un
|
||||
remove_avatar: Dileu afatar
|
||||
remove_header: Dileu pennawd
|
||||
resend_confirmation:
|
||||
|
@ -157,7 +176,7 @@ cy:
|
|||
role: Caniatâd
|
||||
roles:
|
||||
admin: Gweinyddwr
|
||||
moderator: Safonwr
|
||||
moderator: Aroglygydd
|
||||
staff: Staff
|
||||
user: Defnyddiwr
|
||||
salmon_url: URL Eog
|
||||
|
@ -171,6 +190,7 @@ cy:
|
|||
statuses: Statysau
|
||||
subscribe: Tanysgrifio
|
||||
suspended: Ataliwyd
|
||||
time_in_queue: Yn aros yn y rhestr am %{time}
|
||||
title: Cyfrifon
|
||||
unconfirmed_email: E-bost heb ei gadarnhau
|
||||
undo_silenced: Dadwneud tawelu
|
||||
|
@ -246,6 +266,7 @@ cy:
|
|||
feature_profile_directory: Cyfeiriadur proffil
|
||||
feature_registrations: Cofrestriadau
|
||||
feature_relay: Relái ffederasiwn
|
||||
feature_timeline_preview: Rhagolwg o'r ffrwd
|
||||
features: Nodweddion
|
||||
hidden_service: Ffederasiwn a gwasanaethau cudd
|
||||
open_reports: adroddiadau agored
|
||||
|
@ -265,9 +286,10 @@ cy:
|
|||
created_msg: Mae'r bloc parth nawr yn cael ei brosesu
|
||||
destroyed_msg: Mae'r bloc parth wedi ei ddadwneud
|
||||
domain: Parth
|
||||
existing_domain_block_html: Rydych yn barod wedi gosod cyfyngau fwy llym ar %{name}, mae rhaid i chi ei <a href="%{unblock_url}">ddadblocio</a> yn gyntaf.
|
||||
new:
|
||||
create: Creu bloc
|
||||
hint: Ni fydd y bloc parth yn atal cread cofnodion cyfrif yn y bas data, ond mi fydd yn gosod dulliau cymedroli penodol ôl-weithredol ac awtomatig ar y cyfrifau hynny.
|
||||
hint: Ni fydd y bloc parth yn atal cread cofnodion cyfrif yn y bas data, ond mi fydd yn gosod dulliau goruwchwylio penodol ôl-weithredol ac awtomatig ar y cyfrifau hynny.
|
||||
severity:
|
||||
desc_html: Mae <strong>Tawelu</strong> yn gwneud twtiau y cyfrif yn anweledig i unrhyw un nad yw'n dilyn y cyfrif. Mae <strong>Atal</strong> yn cael gwared ar holl gynnwys, cyfryngau a data proffil y cyfrif. Defnyddiwch <strong>Dim</strong> os ydych chi ond am wrthod dogfennau cyfryngau.
|
||||
noop: Dim
|
||||
|
@ -323,7 +345,7 @@ cy:
|
|||
moderation:
|
||||
all: Pob
|
||||
limited: Gyfyngedig
|
||||
title: Cymedroli
|
||||
title: Goruwchwyliad
|
||||
title: Ffederasiwn
|
||||
total_blocked_by_us: Wedi'i bloc gan ni
|
||||
total_followed_by_them: Yn dilyn ganynt
|
||||
|
@ -338,6 +360,8 @@ cy:
|
|||
expired: Wedi dod i ben
|
||||
title: Hidlo
|
||||
title: Gwahoddiadau
|
||||
pending_accounts:
|
||||
title: Cyfrifau yn aros (%{count})
|
||||
relays:
|
||||
add_new: Ychwanegau relái newydd
|
||||
delete: Dileu
|
||||
|
@ -363,7 +387,7 @@ cy:
|
|||
action_taken_by: Gwnaethpwyd hyn gan
|
||||
are_you_sure: Ydych chi'n sicr?
|
||||
assign_to_self: Aseinio i mi
|
||||
assigned: Cymedrolwr wedi'i aseinio
|
||||
assigned: Arolygwr wedi'i aseinio
|
||||
comment:
|
||||
none: Dim
|
||||
created_at: Adroddwyd
|
||||
|
@ -424,6 +448,12 @@ cy:
|
|||
min_invite_role:
|
||||
disabled: Neb
|
||||
title: Caniatau gwahoddiadau gan
|
||||
registrations_mode:
|
||||
modes:
|
||||
approved: Mae angen cymeradwyaeth ar gyfer cofrestru
|
||||
none: Ni all unrhyw un cofrestru
|
||||
open: Gall unrhyw un cofrestru
|
||||
title: Modd cofrestriadau
|
||||
show_known_fediverse_at_about_page:
|
||||
desc_html: Wedi'i ddewis, bydd yn dangos rhagolwg o dŵtiau o'r holl ffedysawd. Fel arall bydd ond yn dangos tŵtiau lleol.
|
||||
title: Dangos ffedysawd hysbys ar ragolwg y ffrwd
|
||||
|
@ -486,10 +516,19 @@ cy:
|
|||
edit_preset: Golygu rhagosodiad rhybudd
|
||||
title: Rheoli rhagosodiadau rhybudd
|
||||
admin_mailer:
|
||||
new_pending_account:
|
||||
body: Mae manylion y cyfrif newydd yn isod. Gallwch cymeradwyo neu wrthod y ceisiad hon.
|
||||
subject: Cyfrif newydd i fynu ar gyfer adolygiad ar %{instance} (%{username})
|
||||
new_report:
|
||||
body: Mae %{reporter} wedi cwyno am %{target}
|
||||
body_remote: Mae rhywun o %{domain} wedi cwyno am %{target}
|
||||
subject: Cwyn newydd am %{instance} {#%{id}}
|
||||
subject: Cwyn newydd am %{instance} (#%{id})
|
||||
appearance:
|
||||
advanced_web_interface: Rhyngwyneb gwe uwch
|
||||
advanced_web_interface_hint: 'Os hoffech gwneud defnydd o gyd o''ch lled sgrin, mae''r rhyngwyneb gwe uwch yn gadael i chi ffurfweddu sawl colofn wahanol i weld cymaint o wybodaeth â hoffech: Catref, hysbysiadau, ffrwd y ffedysawd, unrhyw nifer o rhestrau ac hashnodau.'
|
||||
animations_and_accessibility: Animeiddiau ac hygyrchedd
|
||||
confirmation_dialogs: Deialog cadarnhau
|
||||
sensitive_content: Cynnwys sensitif
|
||||
application_mailer:
|
||||
notification_preferences: Newid gosodiadau e-bost
|
||||
salutation: "%{name},"
|
||||
|
@ -506,7 +545,9 @@ cy:
|
|||
warning: Byddwch yn ofalus a'r data hyn. Peidiwch a'i rannu byth!
|
||||
your_token: Eich tocyn mynediad
|
||||
auth:
|
||||
apply_for_account: Gofyn am wahoddiad
|
||||
change_password: Cyfrinair
|
||||
checkbox_agreement_html: Rydw i'n cytuno i'r <a href="%{rules_path}" target="_blank">rheolau'r gweinydd</a> a'r <a href="%{terms_path}" target="_blank">telerau gwasanaeth</a>
|
||||
confirm_email: Cadarnhau e-bost
|
||||
delete_account: Dileu cyfrif
|
||||
delete_account_html: Os hoffech chi ddileu eich cyfrif, mae modd <a href="%{path}">parhau yma</a>. Bydd gofyn i chi gadarnhau.
|
||||
|
@ -522,10 +563,12 @@ cy:
|
|||
cas: CAS
|
||||
saml: SAML
|
||||
register: Cofrestru
|
||||
registration_closed: Nid yw %{instance} yn derbyn aelodau newydd
|
||||
resend_confirmation: Ailanfon cyfarwyddiadau cadarnhau
|
||||
reset_password: Ailosod cyfrinair
|
||||
security: Diogelwch
|
||||
set_new_password: Gosod cyfrinair newydd
|
||||
trouble_logging_in: Trafferdd mewngofnodi?
|
||||
authorize_follow:
|
||||
already_following: Yr ydych yn dilyn y cyfrif hwn yn barod
|
||||
error: Yn anffodus, roedd gwall tra'n edrych am y cyfrif anghysbell
|
||||
|
@ -544,11 +587,11 @@ cy:
|
|||
about_x_years: "%{count}blwyddyn"
|
||||
almost_x_years: "%{count}blwyddyn"
|
||||
half_a_minute: Newydd fod
|
||||
less_than_x_minutes: "%{count}m"
|
||||
less_than_x_minutes: "%{count}munud"
|
||||
less_than_x_seconds: Newydd fod
|
||||
over_x_years: "%{count}blwyddyn"
|
||||
x_days: "%{count}dydd"
|
||||
x_minutes: "%{count}m"
|
||||
x_minutes: "%{count}munud"
|
||||
x_months: "%{count}mis"
|
||||
x_seconds: "%{count}eiliad"
|
||||
deletes:
|
||||
|
@ -566,13 +609,6 @@ cy:
|
|||
explanation: Darganfod defnyddwyr yn seiliedig ar eu diddordebau
|
||||
explore_mastodon: Archwilio %{title}
|
||||
how_to_enable: Ar hyn o bryd nid ydych chi wedi dewis y cyfeiriadur. Gallwch ddewis i mewn isod. Defnyddiwch hashnodau yn eich bio-destun i'w restru dan hashnodau penodol!
|
||||
people:
|
||||
few: "%{count} personau"
|
||||
many: "%{count} personau"
|
||||
one: "%{count} person"
|
||||
other: "%{count} personau"
|
||||
two: "%{count} personau"
|
||||
zero: "%{count} personau"
|
||||
errors:
|
||||
'403': Nid oes gennych ganiatad i weld y dudalen hon.
|
||||
'404': Nid yw'r dudalen yr oeddech yn chwilio amdani'n bodoli.
|
||||
|
@ -585,6 +621,9 @@ cy:
|
|||
content: Mae'n ddrwg gennym ni, ond fe aeth rhywbeth o'i le ar ein rhan ni.
|
||||
title: Nid yw'r dudalen hon yn gywir
|
||||
noscript_html: I ddefnyddio ap gwe Mastodon, galluogwch JavaScript os gwlwch yn dda. Fel arall, gallwch drio un o'r <a href="%{apps_path}">apiau cynhenid</a> ar gyfer Mastodon ar eich platfform.
|
||||
existing_username_validator:
|
||||
not_found: ni ddarganfwyd defnyddiwr lleol gyda'r enw cyfrif hynny
|
||||
not_found_multiple: ni ddarganfwyd %{usernames}
|
||||
exports:
|
||||
archive_takeout:
|
||||
date: Dyddiad
|
||||
|
@ -625,8 +664,10 @@ cy:
|
|||
more: Mwy…
|
||||
resources: Adnoddau
|
||||
generic:
|
||||
all: Popeth
|
||||
changes_saved_msg: Llwyddwyd i gadw y newidiadau!
|
||||
copy: Copïo
|
||||
order_by: Trefnu wrth
|
||||
save_changes: Cadw newidiadau
|
||||
validation_errors:
|
||||
few: Mae rhywbeth o'i le o hyd! Edrychwch ar y %{count} gwall isod os gwelwch yn dda
|
||||
|
@ -635,18 +676,41 @@ cy:
|
|||
other: Mae rhywbeth o'i le o hyd! Edrychwch ar y %{count} gwall isod os gwelwch yn dda
|
||||
two: Mae rhywbeth o'i le o hyd! Edrychwch ar y %{count} gwall isod os gwelwch yn dda
|
||||
zero: Mae rhywbeth o'i le o hyd! Edrychwch ar y %{count} gwall isod os gwelwch yn dda
|
||||
html_validator:
|
||||
invalid_markup: 'yn cynnwys marciad HTML annilys: %{error}'
|
||||
identity_proofs:
|
||||
active: Yn weithredol
|
||||
authorize: Ie, awdurdodi
|
||||
authorize_connection_prompt: Awdurdodi y cysylltiad cryptograffig hon?
|
||||
errors:
|
||||
failed: Methwyd y cysylltiad cryptograffig. Ceisiwch eto o %{provider}, os gwelwch yn dda.
|
||||
keybase:
|
||||
invalid_token: Mae tocynnau keybase yn hashiau o llofnodau ac mae rhaid iddynt bod yn 66 cymeriadau hecs
|
||||
verification_failed: Nid yw Keybase yn adnabod y tocyn hyn fel llofnod defnyddiwr Keybase %{kb_username}. Cesiwch eto o Keybase, os gwelwch yn dda.
|
||||
wrong_user: Ni all greu prawf ar gyfer %{proving} tra wedi mewngofnodi fel %{current}. Mewngofnodi fel %{proving} a cheisiwch eto.
|
||||
explanation_html: Fama gallwch cysylltu i'ch hunanieithau arall yn cryptograffig, er enghraifft proffil Keybase. Mae hyn yn gadael pobl arall i anfon chi negeseuon amgryptiedig a ymddiried mewn cynnwys rydych yn eich anfon iddynt.
|
||||
i_am_html: Rydw i'n %{username} ar %{service}.
|
||||
identity: Hunaniaeth
|
||||
inactive: Anweithgar
|
||||
publicize_checkbox: 'A thŵtiwch hon:'
|
||||
publicize_toot: 'Wedi profi! Rydw i''n %{username} ar %{service}: %{url}'
|
||||
status: Statws gwirio
|
||||
view_proof: Gweld prawf
|
||||
imports:
|
||||
modes:
|
||||
merge: Cyfuno
|
||||
merge_long: Cadw'r cofnodau presennol ac ychwanegu rhai newydd
|
||||
overwrite: Trosysgrifio
|
||||
overwrite_long: Disodli cofnodau bresennol gyda'r cofnodau newydd
|
||||
preface: Mae modd mewnforio data yr ydych wedi allforio o achos arall, megis rhestr o bobl yr ydych yn ei ddilyn neu yn blocio.
|
||||
success: Uwchlwythwyd eich data yn llwyddiannus ac fe fydd yn cael ei brosesu mewn da bryd
|
||||
types:
|
||||
blocking: Rhestr blocio
|
||||
domain_blocking: Rhestr rhwystro parth
|
||||
following: Rhestr dilyn
|
||||
muting: Rhestr tawelu
|
||||
upload: Uwchlwytho
|
||||
in_memoriam_html: In Memoriam.
|
||||
in_memoriam_html: Mewn Cofiad.
|
||||
invites:
|
||||
delete: Dadactifadu
|
||||
expired: Wedi darfod
|
||||
|
@ -686,7 +750,7 @@ cy:
|
|||
proceed: Cadw
|
||||
updated_msg: Diweddarwyd gosodiad mudo eich cyfrif yn llwyddiannus!
|
||||
moderation:
|
||||
title: Cymedroli
|
||||
title: Goruwchwyliad
|
||||
notification_mailer:
|
||||
digest:
|
||||
action: Gweld holl hysbysiadau
|
||||
|
@ -734,19 +798,44 @@ cy:
|
|||
decimal_units:
|
||||
format: "%n%u"
|
||||
units:
|
||||
billion: B
|
||||
million: M
|
||||
quadrillion: Q
|
||||
thousand: K
|
||||
trillion: T
|
||||
billion: Biliwn
|
||||
million: Miliwn
|
||||
quadrillion: Cwadriliwn
|
||||
thousand: Mil
|
||||
trillion: Triliwn
|
||||
pagination:
|
||||
newer: Diweddarach
|
||||
next: Nesaf
|
||||
older: Hŷn
|
||||
prev: Blaenorol
|
||||
truncate: "…"
|
||||
polls:
|
||||
errors:
|
||||
already_voted: Rydych chi barod wedi pleidleisio ar y pleidlais hon
|
||||
duplicate_options: yn cynnwys eitemau dyblyg
|
||||
duration_too_long: yn rhy bell yn y dyfodol
|
||||
duration_too_short: yn rhy fuan
|
||||
expired: Mae'r pleidlais wedi gorffen yn barod
|
||||
over_character_limit: ni all fod yn hirach na %{max} cymeriad yr un
|
||||
too_few_options: rhaid cael fwy nag un eitem
|
||||
too_many_options: ni all cynnwys fwy na %{max} o eitemau
|
||||
preferences:
|
||||
other: Arall
|
||||
posting_defaults: Rhagosodiadau postio
|
||||
public_timelines: Ffrydau gyhoeddus
|
||||
relationships:
|
||||
activity: Gweithgareddau cyfrif
|
||||
dormant: Segur
|
||||
last_active: Gweithred ddiwethaf
|
||||
most_recent: Yn diweddaraf
|
||||
moved: Wedi symud
|
||||
mutual: Cydfuddiannol
|
||||
primary: Cynradd
|
||||
relationship: Perthynas
|
||||
remove_selected_domains: Tynnu pob dilynydd o'r parthau dewisiedig
|
||||
remove_selected_followers: Tynnu'r dilynydd dewisiedig
|
||||
remove_selected_follows: Dad-ddilyn y defnyddwyr dewisiedig
|
||||
status: Statws cyfrif
|
||||
remote_follow:
|
||||
acct: Mewnbynnwch eich enwdefnyddiwr@parth yr ydych eisiau gweithredu ohonno
|
||||
missing_resource: Ni ellir canfod yr URL ailgyferio angenrheidiol i'ch cyfrif
|
||||
|
@ -761,40 +850,14 @@ cy:
|
|||
activity: Gweithgaredd ddiwethaf
|
||||
browser: Porwr
|
||||
browsers:
|
||||
alipay: Alipay
|
||||
blackberry: Blackberry
|
||||
chrome: Chrome
|
||||
edge: Microsoft Edge
|
||||
electron: Electron
|
||||
firefox: Firefox
|
||||
generic: Porwr anhysbys
|
||||
ie: Internet Explorer
|
||||
micro_messenger: MicroMessenger
|
||||
nokia: Porwr Nokia S40 Ovi
|
||||
opera: Opera
|
||||
otter: Otter
|
||||
phantom_js: PhantomJS
|
||||
qq: Porwr QQ
|
||||
safari: Safari
|
||||
uc_browser: UCBrowser
|
||||
weibo: Weibo
|
||||
current_session: Sesiwn cyfredol
|
||||
description: "%{browser} ar %{platform}"
|
||||
explanation: Dyma'r porwyr gwê sydd wedi mewngofnodi i'ch cyfrif Mastododon ar hyn o bryd.
|
||||
ip: IP
|
||||
platforms:
|
||||
adobe_air: Adobe Air
|
||||
android: Android
|
||||
blackberry: Blackberry
|
||||
chrome_os: ChromeOS
|
||||
firefox_os: Firefox OS
|
||||
ios: iOS
|
||||
linux: Linux
|
||||
mac: Mac
|
||||
other: platfform anhysbys
|
||||
windows: Windows
|
||||
windows_mobile: Windows Mobile
|
||||
windows_phone: Windows Phone
|
||||
revoke: Diddymu
|
||||
revoke_success: Sesiwn wedi ei ddiddymu yn llwyddiannus
|
||||
title: Sesiynau
|
||||
|
@ -846,7 +909,6 @@ cy:
|
|||
reblog: Ni ellir pinio bŵstiau
|
||||
show_more: Dangos mwy
|
||||
sign_in_to_participate: Mengofnodwch i gymryd rhan yn y sgwrs
|
||||
title: '%{name}: "%{quote}"'
|
||||
visibilities:
|
||||
private: Dilynwyr yn unig
|
||||
private_long: Dangos i ddilynwyr yn unig
|
||||
|
@ -942,13 +1004,9 @@ cy:
|
|||
<p>Cafodd ei addasu yn wreiddiol o'r<a href="https://github.com/discourse/discourse">Polisi preifatrwydd disgwrs</a>.</p>
|
||||
title: "%{instance} Termau Gwasanaeth a Polisi Preifatrwydd"
|
||||
themes:
|
||||
contrast: Cyferbyniad uchel
|
||||
default: Mastodon
|
||||
contrast: Mastodon (Cyferbyniad uchel)
|
||||
default: Mastodon (Tywyll)
|
||||
mastodon-light: Mastodon (golau)
|
||||
time:
|
||||
formats:
|
||||
default: "%b %d, %Y, %H:%M"
|
||||
month: "%b %Y"
|
||||
two_factor_authentication:
|
||||
code_hint: Mewnbynwch y côd a grewyd gan eich ap dilysu i gadarnhau
|
||||
description_html: Os ydych yn galluogi <strong>awdurdodi dau-gam</strong>, bydd mewngofnodi yn gofyn i chi fod a'ch ffôn gerllaw er mwyn cynhyrchu tocyn i chi gael mewnbynnu.
|
||||
|
|
|
@ -5,7 +5,6 @@ da:
|
|||
about_mastodon_html: Mastodon er et socialt netværk der er baseret på åbne web protokoller og frit, open-source source software. Der er decentraliseret ligesom e-mail tjenester.
|
||||
about_this: Om
|
||||
administered_by: 'Administreret af:'
|
||||
api: API
|
||||
apps: Apps til mobilen
|
||||
apps_platforms: Brug Mastodon på iOS, Android og andre platformer
|
||||
contact: Kontakt
|
||||
|
@ -20,9 +19,6 @@ da:
|
|||
learn_more: Lær mere
|
||||
privacy_policy: Privatlivspolitik
|
||||
source_code: Kildekode
|
||||
status_count_after:
|
||||
one: status
|
||||
other: statusser
|
||||
status_count_before: Som har skrevet
|
||||
terms: Vilkår for service
|
||||
user_count_after:
|
||||
|
@ -87,8 +83,6 @@ da:
|
|||
display_name: Visningsnavn
|
||||
domain: Domæne
|
||||
edit: Rediger
|
||||
email: Email
|
||||
email_status: Email status
|
||||
enable: Aktiver
|
||||
enabled: Aktiveret
|
||||
feed_url: Link til feed
|
||||
|
@ -153,7 +147,6 @@ da:
|
|||
undo_suspension: Fortryd udelukkelse
|
||||
unsubscribe: Abonner ikke længere
|
||||
username: Brugernavn
|
||||
web: Web
|
||||
action_logs:
|
||||
actions:
|
||||
assigned_to_self_report: "%{name} tildelte anmeldelsen %{target} til sig selv"
|
||||
|
@ -224,7 +217,6 @@ da:
|
|||
recent_users: Seneste brugere
|
||||
search: Søg på fuld tekst
|
||||
single_user_mode: Enkelt bruger mode
|
||||
software: Software
|
||||
space: Brugt lagerplads
|
||||
title: Betjeningspanel
|
||||
total_users: samlede antal brugere
|
||||
|
@ -294,7 +286,6 @@ da:
|
|||
pending: Venter på godkendelse fra relæet
|
||||
save_and_enable: Gem og aktiver
|
||||
setup: Opsæt en videresendelses forbindelse
|
||||
status: Status
|
||||
title: Videresendelser
|
||||
report_notes:
|
||||
created_msg: Anmeldelse note blev oprettet!
|
||||
|
@ -324,7 +315,6 @@ da:
|
|||
reported_by: Anmeldt af
|
||||
resolved: Løst
|
||||
resolved_msg: Anmeldelse er sat til at være løst!
|
||||
status: Status
|
||||
title: Anmeldelser
|
||||
unassign: Utildel
|
||||
unresolved: Uløst
|
||||
|
@ -410,7 +400,6 @@ da:
|
|||
tags:
|
||||
accounts: Kontoer
|
||||
hidden: Skjult
|
||||
title: Administration
|
||||
admin_mailer:
|
||||
new_report:
|
||||
body: "%{reporter} har anmeldt %{target}"
|
||||
|
@ -418,7 +407,6 @@ da:
|
|||
subject: Ny anmeldelse for %{instance} (#%{id})
|
||||
application_mailer:
|
||||
notification_preferences: Ændre email præferencer
|
||||
salutation: "%{name},"
|
||||
settings: 'Ændre email præferencer: %{link}'
|
||||
view: 'Se:'
|
||||
view_profile: Se profil
|
||||
|
@ -444,9 +432,6 @@ da:
|
|||
migrate_account: Flyt til en anden konto
|
||||
migrate_account_html: Hvis du ønsker at omdirigere denne konto til en anden, kan du <a href="%{path}">gøre det her</a>.
|
||||
or_log_in_with: Eller log in med
|
||||
providers:
|
||||
cas: CAS
|
||||
saml: SAML
|
||||
register: Opret dig
|
||||
resend_confirmation: Gensend bekræftelses instrukser
|
||||
reset_password: Nulstil kodeord
|
||||
|
@ -470,13 +455,9 @@ da:
|
|||
about_x_years: "%{count}år"
|
||||
almost_x_years: "%{count}år"
|
||||
half_a_minute: Lige nu
|
||||
less_than_x_minutes: "%{count}m"
|
||||
less_than_x_seconds: Lige nu
|
||||
over_x_years: "%{count}år"
|
||||
x_days: "%{count}d"
|
||||
x_minutes: "%{count}m"
|
||||
x_months: "%{count}md"
|
||||
x_seconds: "%{count}s"
|
||||
deletes:
|
||||
bad_password_msg: Godt forsøg, hackere! Forkert kodeord
|
||||
confirm_password: Indtast dit nuværende kodeord for at bekræfte din identitet
|
||||
|
@ -506,7 +487,6 @@ da:
|
|||
request: Anmod om dit arkiv
|
||||
size: Størrelse
|
||||
blocks: Du blokerer
|
||||
csv: CSV
|
||||
follows: Du følger
|
||||
mutes: Du dæmper
|
||||
storage: Medie lager
|
||||
|
@ -619,14 +599,9 @@ da:
|
|||
number:
|
||||
human:
|
||||
decimal_units:
|
||||
format: "%n%u"
|
||||
units:
|
||||
billion: mia.
|
||||
million: mio.
|
||||
quadrillion: Q
|
||||
thousand: K
|
||||
trillion: T
|
||||
unit: "\n"
|
||||
pagination:
|
||||
newer: Nyere
|
||||
next: Næste
|
||||
|
@ -647,7 +622,6 @@ da:
|
|||
unfollowed: Følger ikke længere
|
||||
sessions:
|
||||
activity: Sidste aktivitet
|
||||
browser: Browser
|
||||
browsers:
|
||||
alipay: Ali-pay
|
||||
blackberry: Blackberry OS
|
||||
|
@ -669,15 +643,11 @@ da:
|
|||
current_session: Nuværrende session
|
||||
description: "%{browser} på %{platform}"
|
||||
explanation: Disse er de web browsere der på nuværende tidspunkt er logget ind på din Mastodon konto.
|
||||
ip: IP
|
||||
platforms:
|
||||
adobe_air: Adobe air
|
||||
android: Android
|
||||
blackberry: Blackberry OS
|
||||
chrome_os: Chromeos
|
||||
firefox_os: Firefox Os
|
||||
ios: iOS
|
||||
linux: Linux
|
||||
mac: Mac.
|
||||
other: ukendt platform
|
||||
windows: Microsoft windows
|
||||
|
@ -704,9 +674,6 @@ da:
|
|||
image:
|
||||
one: "%{count} billede"
|
||||
other: "%{count} billeder"
|
||||
video:
|
||||
one: "%{count} video"
|
||||
other: "%{count} videoer"
|
||||
boosted_from_html: Fremhævet fra %{acct_link}
|
||||
content_warning: 'Advarsel om indhold: %{warning}'
|
||||
disallowed_hashtags:
|
||||
|
@ -722,7 +689,6 @@ da:
|
|||
reblog: Fremhævede trut kan ikke fastgøres
|
||||
show_more: Vis mere
|
||||
sign_in_to_participate: Log ind for at deltage i samtalen
|
||||
title: '%{name}: "%{quote}"'
|
||||
visibilities:
|
||||
private: Kun-følgere
|
||||
private_long: Vis kun til følgere
|
||||
|
@ -741,10 +707,6 @@ da:
|
|||
contrast: Mastodon (Høj kontrast)
|
||||
default: Mastodont (Mørk)
|
||||
mastodon-light: Mastodon (Lys)
|
||||
time:
|
||||
formats:
|
||||
default: "%b %d, %Y, %H:%M"
|
||||
month: "%b %Y"
|
||||
two_factor_authentication:
|
||||
code_hint: Indtast koden der er genereret af din app for at bekræfte
|
||||
description_html: Hvis du aktiverer <strong>to-faktor godkendelse</strong>, vil du være nødt til at være i besiddelse af din telefon, der genererer tokens som du skal indtaste, når du logger ind.
|
||||
|
|
|
@ -1,51 +1,51 @@
|
|||
---
|
||||
de:
|
||||
about:
|
||||
about_hashtag_html: Dies sind öffentliche Beiträge, die mit <strong>#%{hashtag}</strong> getaggt wurden. Wenn du irgendwo im Fediversum ein Konto besitzt, kannst du mit ihnen interagieren.
|
||||
about_hashtag_html: Das sind öffentliche Beiträge, die mit <strong>#%{hashtag}</strong> getaggt wurden. Wenn du irgendwo im Fediversum ein Konto besitzt, kannst du mit ihnen interagieren.
|
||||
about_mastodon_html: Mastodon ist ein soziales Netzwerk. Es basiert auf offenen Web-Protokollen und freier, quelloffener Software. Es ist dezentral (so wie E-Mail!).
|
||||
about_this: Über diesen Server
|
||||
active_count_after: aktiv
|
||||
active_footnote: Monatlich Aktive User (MAU)
|
||||
administered_by: 'Administriert von:'
|
||||
active_footnote: Monatlich Aktive Nutzer_innen (MAU)
|
||||
administered_by: 'Betrieben von:'
|
||||
api: API
|
||||
apps: Mobile Apps
|
||||
apps_platforms: Benutze Mastodon auf iOS, Android und anderen Plattformen
|
||||
browse_directory: Durchsuche ein Profilverzeichnis und filtere nach Interessen
|
||||
browse_public_posts: Durchsuche eine Zeitleiste an öffentlichen Beiträgen auf Mastodon
|
||||
browse_directory: Durchsuche das Profilverzeichnis und filtere nach Interessen
|
||||
browse_public_posts: Stöbere durch öffentliche Beiträge auf Mastodon
|
||||
contact: Kontakt
|
||||
contact_missing: Nicht angegeben
|
||||
contact_unavailable: N/A
|
||||
discover_users: Benutzer entdecken
|
||||
contact_unavailable: Nicht verfügbar
|
||||
discover_users: Benutzer_innen entdecken
|
||||
documentation: Dokumentation
|
||||
extended_description_html: |
|
||||
<h3>Ein guter Platz für Regeln</h3>
|
||||
<p>Die erweiterte Beschreibung wurde noch nicht aufgesetzt.</p>
|
||||
federation_hint_html: Mit einem Account auf %{instance} wirst du in der Lage sein Nutzern auf irgendeinem Mastodon-Server und darüber hinaus zu folgen.
|
||||
generic_description: "%{domain} ist ein Server im Netzwerk"
|
||||
<h3>Ein hervorragender Ort für Regeln</h3>
|
||||
<p>Die erweiterte Beschreibung wurde von dem Administrator noch nicht eingestellt.</p>
|
||||
federation_hint_html: Mit einem Konto auf %{instance} wirst du in der Lage sein Nutzer_innen auf beliebigen Mastodon-Servern und darüber hinaus zu folgen.
|
||||
generic_description: "%{domain} ist ein Server im Fediversum"
|
||||
get_apps: Versuche eine mobile App
|
||||
hosted_on: Mastodon, beherbergt auf %{domain}
|
||||
hosted_on: Mastodon, gehostet auf %{domain}
|
||||
learn_more: Mehr erfahren
|
||||
privacy_policy: Datenschutzerklärung
|
||||
see_whats_happening: Finde heraus, was gerade in der Welt los ist
|
||||
server_stats: 'Serverstatistiken:'
|
||||
source_code: Quellcode
|
||||
status_count_after:
|
||||
one: Statusmeldung
|
||||
other: Statusmeldungen
|
||||
one: Beitrag
|
||||
other: Beiträge
|
||||
status_count_before: mit
|
||||
tagline: Finde Freunde und entdecke neue
|
||||
tagline: Finde deine Freunde und entdecke neue
|
||||
terms: Nutzungsbedingungen
|
||||
user_count_after:
|
||||
one: Benutzer:in
|
||||
other: Benutzer:innen
|
||||
user_count_before: Zuhause für
|
||||
one: Profil
|
||||
other: Profile
|
||||
user_count_before: Hostet
|
||||
what_is_mastodon: Was ist Mastodon?
|
||||
accounts:
|
||||
choices_html: "%{name} empfiehlt:"
|
||||
follow: Folgen
|
||||
followers:
|
||||
one: Folgender
|
||||
other: Folgende
|
||||
one: Folger_innen
|
||||
other: Folger_innen
|
||||
following: Folgt
|
||||
joined: Beigetreten am %{date}
|
||||
last_active: zuletzt aktiv
|
||||
|
@ -65,7 +65,7 @@ de:
|
|||
posts_with_replies: Beiträge mit Antworten
|
||||
reserved_username: Dieser Profilname ist belegt
|
||||
roles:
|
||||
admin: Admin
|
||||
admin: Administrator
|
||||
bot: Bot
|
||||
moderator: Moderator
|
||||
unavailable: Profil nicht verfügbar
|
||||
|
@ -80,8 +80,8 @@ de:
|
|||
delete: Löschen
|
||||
destroyed_msg: Moderationsnotiz erfolgreich gelöscht!
|
||||
accounts:
|
||||
approve: Aktzeptieren
|
||||
approve_all: Alle aktzeptieren
|
||||
approve: Akzeptieren
|
||||
approve_all: Alle akzeptieren
|
||||
are_you_sure: Bist du sicher?
|
||||
avatar: Profilbild
|
||||
by_domain: Domain
|
||||
|
@ -108,10 +108,10 @@ de:
|
|||
enable: Freischalten
|
||||
enabled: Freigegeben
|
||||
feed_url: Feed-URL
|
||||
followers: Folgende
|
||||
followers_url: URL des Folgenden
|
||||
followers: Folger_innen
|
||||
followers_url: URL der Folger_innen
|
||||
follows: Folgt
|
||||
header: Header
|
||||
header: Titelbild
|
||||
inbox_url: Posteingangs-URL
|
||||
invited_by: Eingeladen von
|
||||
ip: IP-Adresse
|
||||
|
@ -119,27 +119,27 @@ de:
|
|||
location:
|
||||
all: Alle
|
||||
local: Lokal
|
||||
remote: Entfernt
|
||||
title: Ort
|
||||
remote: Fern
|
||||
title: Ursprung
|
||||
login_status: Loginstatus
|
||||
media_attachments: Medienanhänge
|
||||
media_attachments: Dateien
|
||||
memorialize: In Gedenkmal verwandeln
|
||||
moderation:
|
||||
active: Aktiv
|
||||
all: Alle
|
||||
pending: Ausstehend
|
||||
pending: In Warteschlange
|
||||
silenced: Stummgeschaltet
|
||||
suspended: Gesperrt
|
||||
title: Moderation
|
||||
moderation_notes: Moderationsnotizen
|
||||
most_recent_activity: Letzte Aktivität
|
||||
most_recent_ip: Letzte IP-Adresse
|
||||
no_account_selected: Keine Konten wurden verändert, da keine ausgewählt wurden
|
||||
no_limits_imposed: Keine Limits eingesetzt
|
||||
no_account_selected: Keine Konten wurden geändert, da keine ausgewählt wurden
|
||||
no_limits_imposed: Keine Beschränkungen
|
||||
not_subscribed: Nicht abonniert
|
||||
outbox_url: Postausgangs-URL
|
||||
pending: Ausstehender Review
|
||||
perform_full_suspension: Sperren
|
||||
pending: In Warteschlange
|
||||
perform_full_suspension: Verbannen
|
||||
profile_url: Profil-URL
|
||||
promote: Befördern
|
||||
protocol: Protokoll
|
||||
|
@ -149,10 +149,10 @@ de:
|
|||
reject: Ablehnen
|
||||
reject_all: Alle ablehnen
|
||||
remove_avatar: Profilbild entfernen
|
||||
remove_header: Header entfernen
|
||||
remove_header: Titelbild entfernen
|
||||
resend_confirmation:
|
||||
already_confirmed: Diese:r Benutzer:in wurde bereits bestätigt
|
||||
send: Bestätigungsmail erneut senden
|
||||
already_confirmed: Diese_r Benutzer_in wurde bereits bestätigt
|
||||
send: Bestätigungs-E-Mail erneut senden
|
||||
success: Bestätigungs-E-Mail erfolgreich gesendet!
|
||||
reset: Zurücksetzen
|
||||
reset_password: Passwort zurücksetzen
|
||||
|
@ -160,25 +160,25 @@ de:
|
|||
role: Berechtigungen
|
||||
roles:
|
||||
admin: Administrator
|
||||
moderator: Moderator:in
|
||||
moderator: Moderator_in
|
||||
staff: Mitarbeiter
|
||||
user: Nutzer
|
||||
salmon_url: Salmon-URL
|
||||
search: Suche
|
||||
shared_inbox_url: Geteilte Posteingang-URL
|
||||
show:
|
||||
created_reports: Erstellte Beschwerdemeldungen
|
||||
targeted_reports: Beschwerdemeldungen von anderen
|
||||
created_reports: Erstellte Meldungen
|
||||
targeted_reports: Von anderen gemeldet
|
||||
silence: Stummschalten
|
||||
silenced: Stummgeschaltet
|
||||
statuses: Beiträge
|
||||
subscribe: Abonnieren
|
||||
suspended: Gesperrt
|
||||
suspended: Verbannt
|
||||
time_in_queue: "%{time} in der Warteschlange"
|
||||
title: Konten
|
||||
unconfirmed_email: Unbestätigte E-Mail-Adresse
|
||||
undo_silenced: Stummschaltung zurücknehmen
|
||||
undo_suspension: Sperre zurücknehmen
|
||||
undo_silenced: Stummschaltung aufheben
|
||||
undo_suspension: Verbannung aufheben
|
||||
unsubscribe: Abbestellen
|
||||
username: Profilname
|
||||
warn: Warnen
|
||||
|
@ -192,29 +192,29 @@ de:
|
|||
create_custom_emoji: "%{name} hat neues Emoji %{target} hochgeladen"
|
||||
create_domain_block: "%{name} hat die Domain %{target} blockiert"
|
||||
create_email_domain_block: "%{name} hat die E-Mail-Domain %{target} geblacklistet"
|
||||
demote_user: "%{name} stufte Benutzer:in %{target} herunter"
|
||||
demote_user: "%{name} stufte Benutzer_in %{target} herunter"
|
||||
destroy_custom_emoji: "%{name} zerstörte Emoji %{target}"
|
||||
destroy_domain_block: "%{name} hat die Domain %{target} entblockt"
|
||||
destroy_email_domain_block: "%{name} hat die E-Mail-Domain %{target} gewhitelistet"
|
||||
destroy_status: "%{name} hat Status von %{target} entfernt"
|
||||
disable_2fa_user: "%{name} hat Zwei-Faktor-Anforderung für Benutzer:in %{target} deaktiviert"
|
||||
destroy_status: "%{name} hat einen Beitrag von %{target} entfernt"
|
||||
disable_2fa_user: "%{name} hat Zwei-Faktor-Anforderung für Benutzer_in %{target} deaktiviert"
|
||||
disable_custom_emoji: "%{name} hat das %{target} Emoji deaktiviert"
|
||||
disable_user: "%{name} hat den Login für Benutzer:in %{target} deaktiviert"
|
||||
disable_user: "%{name} hat Zugang von Benutzer_in %{target} deaktiviert"
|
||||
enable_custom_emoji: "%{name} hat das %{target} Emoji aktiviert"
|
||||
enable_user: "%{name} hat die Anmeldung für di:en Benutzer:in %{target} aktiviert"
|
||||
memorialize_account: "%{name} hat %{target}s Konto in eine Gedenkseite umgewandelt"
|
||||
enable_user: "%{name} hat Zugang von Benutzer_in %{target} aktiviert"
|
||||
memorialize_account: "%{name} hat das Konto von %{target} in eine Gedenkseite umgewandelt"
|
||||
promote_user: "%{name} hat %{target} befördert"
|
||||
remove_avatar_user: "%{name} hat das Profilbild von %{target} entfernt"
|
||||
reopen_report: "%{name} hat die Meldung %{target} wieder geöffnet"
|
||||
reset_password_user: "%{name} hat das Passwort für di:en Benutzer:in %{target} zurückgesetzt"
|
||||
reset_password_user: "%{name} hat das Passwort von %{target} zurückgesetzt"
|
||||
resolve_report: "%{name} hat die Meldung %{target} bearbeitet"
|
||||
silence_account: "%{name} hat %{target}s Konto stummgeschaltet"
|
||||
suspend_account: "%{name} hat %{target}s Konto gesperrt"
|
||||
silence_account: "%{name} hat das Konto von %{target} stummgeschaltet"
|
||||
suspend_account: "%{name} hat das Konto von %{target} verbannt"
|
||||
unassigned_report: "%{name} hat die Zuweisung der Meldung %{target} entfernt"
|
||||
unsilence_account: "%{name} hat die Stummschaltung von %{target}s Konto aufgehoben"
|
||||
unsuspend_account: "%{name} hat die Sperrung von %{target}s Konto aufgehoben"
|
||||
update_custom_emoji: "%{name} hat das %{target} Emoji aktualisiert"
|
||||
update_status: "%{name} hat den Status von %{target} aktualisiert"
|
||||
unsilence_account: "%{name} hat die Stummschaltung von %{target} aufgehoben"
|
||||
unsuspend_account: "%{name} hat die Verbannung von %{target} aufgehoben"
|
||||
update_custom_emoji: "%{name} hat das %{target} Emoji geändert"
|
||||
update_status: "%{name} hat einen Beitrag von %{target} aktualisiert"
|
||||
deleted_status: "(gelöschter Beitrag)"
|
||||
title: Überprüfungsprotokoll
|
||||
custom_emojis:
|
||||
|
@ -230,7 +230,7 @@ de:
|
|||
emoji: Emoji
|
||||
enable: Aktivieren
|
||||
enabled_msg: Das Emoji wurde aktiviert
|
||||
image_hint: PNG bis 50 kB
|
||||
image_hint: PNG bis zu 50 kB
|
||||
listed: Gelistet
|
||||
new:
|
||||
title: Eigenes Emoji hinzufügen
|
||||
|
@ -243,28 +243,28 @@ de:
|
|||
updated_msg: Emoji erfolgreich aktualisiert!
|
||||
upload: Hochladen
|
||||
dashboard:
|
||||
backlog: Unerledigte Jobs
|
||||
backlog: Rückständige Jobs
|
||||
config: Konfiguration
|
||||
feature_deletions: Kontolöschung
|
||||
feature_invites: Einladungslinks
|
||||
feature_invites: Einladungen
|
||||
feature_profile_directory: Profilverzeichnis
|
||||
feature_registrations: Registrierung
|
||||
feature_relay: Föderations-Relay
|
||||
feature_registrations: Offene Anmeldung
|
||||
feature_relay: Föderationsrelais
|
||||
feature_timeline_preview: Zeitleistenvorschau
|
||||
features: Eigenschaften
|
||||
features: Funktionen
|
||||
hidden_service: Föderation mit versteckten Diensten
|
||||
open_reports: Offene Meldungen
|
||||
open_reports: Ausstehende Meldungen
|
||||
recent_users: Neueste Nutzer
|
||||
search: Volltextsuche
|
||||
single_user_mode: Einzelnutzermodus
|
||||
software: Software
|
||||
space: Speicherverbrauch
|
||||
title: Übersicht
|
||||
total_users: Benutzer:innen insgesamt
|
||||
total_users: Benutzer_innen insgesamt
|
||||
trends: Trends
|
||||
week_interactions: Interaktionen diese Woche
|
||||
week_users_active: Aktiv diese Woche
|
||||
week_users_new: Benutzer:innen diese Woche
|
||||
week_users_new: Benutzer_innen diese Woche
|
||||
domain_blocks:
|
||||
add_new: Neue Domainblockade hinzufügen
|
||||
created_msg: Die Domain-Blockade wird nun durchgeführt
|
||||
|
@ -284,8 +284,8 @@ de:
|
|||
reject_media_hint: Entfernt lokal gespeicherte Mediendateien und verhindert deren künftiges Herunterladen. Für Sperren irrelevant
|
||||
reject_reports: Meldungen ablehnen
|
||||
reject_reports_hint: Ignoriere alle Meldungen von dieser Domain. Irrelevant für Sperrungen
|
||||
rejecting_media: Mediendateien ablehnen
|
||||
rejecting_reports: Beschwerdemeldungen ablehnen
|
||||
rejecting_media: Mediendateien werden nicht gespeichert
|
||||
rejecting_reports: Meldungen werden ignoriert
|
||||
severity:
|
||||
silence: stummgeschaltet
|
||||
suspend: gesperrt
|
||||
|
@ -311,22 +311,22 @@ de:
|
|||
title: E-Mail-Domain-Blockade
|
||||
followers:
|
||||
back_to_account: Zurück zum Konto
|
||||
title: "%{acct}'s Follower"
|
||||
title: "%{acct}'s Folger_innen"
|
||||
instances:
|
||||
by_domain: Domain
|
||||
delivery_available: Zustellung ist verfügbar
|
||||
delivery_available: Zustellung funktioniert
|
||||
known_accounts:
|
||||
one: "%{count} bekanntes Konto"
|
||||
other: "%{count} bekannte Accounts"
|
||||
other: "%{count} bekannte Konten"
|
||||
moderation:
|
||||
all: Alle
|
||||
limited: Limitiert
|
||||
limited: Beschränkt
|
||||
title: Moderation
|
||||
title: Föderation
|
||||
total_blocked_by_us: Von uns gesperrt
|
||||
total_blocked_by_us: Von uns blockiert
|
||||
total_followed_by_them: Gefolgt von denen
|
||||
total_followed_by_us: Gefolgt von uns
|
||||
total_reported: Beschwerdemeldungen über sie
|
||||
total_reported: Beschwerden über sie
|
||||
total_storage: Medienanhänge
|
||||
invites:
|
||||
deactivate_all: Alle deaktivieren
|
||||
|
@ -350,9 +350,9 @@ de:
|
|||
inbox_url: Relay-URL
|
||||
pending: Warte auf Zustimmung des Relays
|
||||
save_and_enable: Speichern und aktivieren
|
||||
setup: Relayverbindung einrichten
|
||||
status: Status
|
||||
title: Relays
|
||||
setup: Relaisverbindung einrichten
|
||||
status: Zustand
|
||||
title: Relais
|
||||
report_notes:
|
||||
created_msg: Meldungs-Kommentar erfolgreich erstellt!
|
||||
destroyed_msg: Meldungs-Kommentar erfolgreich gelöscht!
|
||||
|
@ -375,13 +375,13 @@ de:
|
|||
create_and_unresolve: Mit Kommentar wieder öffnen
|
||||
delete: Löschen
|
||||
placeholder: Beschreibe, welche Maßnahmen ergriffen wurden oder irgendwelche andere Neuigkeiten…
|
||||
reopen: Meldung wieder öffnen
|
||||
reopen: Meldung wieder eröffnen
|
||||
report: 'Meldung #%{id}'
|
||||
reported_account: Gemeldetes Konto
|
||||
reported_by: Gemeldet von
|
||||
resolved: Gelöst
|
||||
resolved_msg: Meldung erfolgreich gelöst!
|
||||
status: Status
|
||||
status: Zustand
|
||||
title: Meldungen
|
||||
unassign: Zuweisung entfernen
|
||||
unresolved: Ungelöst
|
||||
|
@ -401,22 +401,22 @@ de:
|
|||
title: Benutzerdefiniertes CSS
|
||||
hero:
|
||||
desc_html: Wird auf der Startseite angezeigt. Mindestens 600x100px sind empfohlen. Wenn es nicht gesetzt wurde, wird das Server-Thumbnail dafür verwendet
|
||||
title: Bild für Startseite
|
||||
title: Bild für Einstiegsseite
|
||||
mascot:
|
||||
desc_html: Angezeigt auf mehreren Seiten. Mehr als 293x205px empfohlen. Wenn es nicht gesetzt wurde wird es auf das Standard-Maskottchen zurückfallen
|
||||
title: Maskottchen-Bild
|
||||
peers_api_enabled:
|
||||
desc_html: Domain-Namen, die der Server im Fediverse gefunden hat
|
||||
title: Veröffentliche Liste von gefundenen Servern
|
||||
desc_html: Domain-Namen, die der Server im Fediversum gefunden hat
|
||||
title: Veröffentliche entdeckte Server durch die API
|
||||
preview_sensitive_media:
|
||||
desc_html: Linkvorschauen auf anderen Webseiten werden ein Vorschaubild anzeigen, obwohl die Medien als heikel gekennzeichnet sind
|
||||
title: Heikle Medien in OpenGraph-Vorschauen anzeigen
|
||||
title: Heikle Medien im OpenGraph-Vorschau anzeigen
|
||||
profile_directory:
|
||||
desc_html: Erlaube Benutzer auffindbar zu sein
|
||||
title: Aktiviere Profilverzeichnis
|
||||
registrations:
|
||||
closed_message:
|
||||
desc_html: Wird auf der Frontseite angezeigt, wenn die Registrierung geschlossen ist. Du kannst HTML-Tags benutzen
|
||||
desc_html: Wird auf der Einstiegsseite gezeigt, wenn die Anmeldung geschlossen ist. Du kannst HTML-Tags nutzen
|
||||
title: Nachricht über geschlossene Registrierung
|
||||
deletion:
|
||||
desc_html: Allen erlauben, ihr Konto eigenmächtig zu löschen
|
||||
|
@ -432,7 +432,7 @@ de:
|
|||
title: Registrierungsmodus
|
||||
show_known_fediverse_at_about_page:
|
||||
desc_html: Wenn aktiviert, wird es alle Beiträge aus dem bereits bekannten Teil des Fediversums auf der Startseite anzeigen. Andernfalls werden lokale Beitrage des Servers angezeigt.
|
||||
title: Verwende öffentliche Zeitleiste für die Vorschau
|
||||
title: Zeige eine öffentliche Zeitleiste auf der Einstiegsseite
|
||||
show_staff_badge:
|
||||
desc_html: Zeige Mitarbeiter-Badge auf Benutzerseite
|
||||
title: Zeige Mitarbeiter-Badge
|
||||
|
@ -443,17 +443,17 @@ de:
|
|||
desc_html: Bietet sich für Verhaltenskodizes, Regeln, Richtlinien und weiteres an, was deinen Server auszeichnet. Du kannst HTML-Tags benutzen
|
||||
title: Erweiterte Beschreibung des Servers
|
||||
site_short_description:
|
||||
desc_html: Wird angezeigt in der Seitenleiste und in Meta-Tags. Beschreibe in einem einzigen Abschnitt, was Mastodon ist und was diesen Server ausmacht. Falls leer, wird die Server-Beschreibung verwendet.
|
||||
title: Kurze Server-Beschreibung
|
||||
desc_html: Wird angezeigt in der Seitenleiste und in Meta-Tags. Beschreibe in einem einzigen Abschnitt, was Mastodon ist und was diesen Server von anderen unterscheidet. Falls leer, wird die Server-Beschreibung verwendet.
|
||||
title: Kurze Beschreibung des Servers
|
||||
site_terms:
|
||||
desc_html: Hier kannst du deine eigenen Geschäftsbedingungen, Datenschutzerklärung und anderes rechtlich Relevante eintragen. Du kannst HTML-Tags benutzen
|
||||
title: Eigene Geschäftsbedingungen
|
||||
desc_html: Hier kannst du deine eigenen Geschäftsbedingungen, Datenschutzerklärung und anderes rechtlich Relevante eintragen. Du kannst HTML-Tags nutzen
|
||||
title: Benutzerdefinierte Geschäftsbedingungen
|
||||
site_title: Name des Servers
|
||||
thumbnail:
|
||||
desc_html: Wird für die Vorschau via OpenGraph und API verwendet. 1200×630 px wird empfohlen
|
||||
title: Server-Thumbnail
|
||||
title: Vorschaubild des Servers
|
||||
timeline_preview:
|
||||
desc_html: Auf der Frontseite die öffentliche Zeitleiste anzeigen
|
||||
desc_html: Auf der Einstiegsseite die öffentliche Zeitleiste anzeigen
|
||||
title: Zeitleisten-Vorschau
|
||||
title: Server-Einstellungen
|
||||
statuses:
|
||||
|
@ -466,7 +466,7 @@ de:
|
|||
media:
|
||||
title: Medien
|
||||
no_media: Keine Medien
|
||||
no_status_selected: Keine Beiträge wurden verändert, weil keine ausgewählt wurden
|
||||
no_status_selected: Keine Beiträge wurden geändert, weil keine ausgewählt wurden
|
||||
title: Beiträge des Kontos
|
||||
with_media: Mit Medien
|
||||
subscriptions:
|
||||
|
@ -479,7 +479,7 @@ de:
|
|||
tags:
|
||||
accounts: Konten
|
||||
hidden: Versteckt
|
||||
hide: Vor Verzeichnis verstecken
|
||||
hide: Vom Profilverzeichnis verstecken
|
||||
name: Hashtag
|
||||
title: Hashtags
|
||||
unhide: Zeige in Verzeichnis
|
||||
|
@ -511,7 +511,7 @@ de:
|
|||
settings: 'E-Mail-Einstellungen ändern: %{link}'
|
||||
view: 'Ansehen:'
|
||||
view_profile: Zeige Profil
|
||||
view_status: Zeige Status
|
||||
view_status: Beitrag öffnen
|
||||
applications:
|
||||
created: Anwendung erfolgreich erstellt
|
||||
destroyed: Anwendung erfolgreich gelöscht
|
||||
|
@ -553,8 +553,8 @@ de:
|
|||
following: 'Erfolg! Du folgst nun:'
|
||||
post_follow:
|
||||
close: Oder du schließt einfach dieses Fenster.
|
||||
return: Zeige Profil des Benutzers
|
||||
web: Das Web öffnen
|
||||
return: Zeige das Profil
|
||||
web: In der Benutzeroberfläche öffnen
|
||||
title: "%{acct} folgen"
|
||||
datetime:
|
||||
distance_in_words:
|
||||
|
@ -565,8 +565,8 @@ de:
|
|||
half_a_minute: Gerade eben
|
||||
less_than_x_minutes: "%{count}m"
|
||||
less_than_x_seconds: Gerade eben
|
||||
over_x_years: "%{count}y"
|
||||
x_days: "%{count}d"
|
||||
over_x_years: "%{count}J"
|
||||
x_days: "%{count}T"
|
||||
x_minutes: "%{count}m"
|
||||
x_months: "%{count}mo"
|
||||
x_seconds: "%{count}s"
|
||||
|
@ -581,8 +581,8 @@ de:
|
|||
directories:
|
||||
directory: Profilverzeichnis
|
||||
enabled: Du bist gerade in dem Verzeichnis gelistet.
|
||||
enabled_but_waiting: Du bist damit einverstanden im Verzeichnis gelistet zu werden, aber du hast nicht die minimale Anzahl an Folgenden (%{min_followers}), damit es passiert.
|
||||
explanation: Entdecke Benutzer basierend auf deren Interessen
|
||||
enabled_but_waiting: Du bist damit einverstanden im Verzeichnis aufgelistet zu werden, aber du hast noch nicht genug Folger_innen (%{min_followers}).
|
||||
explanation: Entdecke Benutzer_innen basierend auf deren Interessen
|
||||
explore_mastodon: Entdecke %{title}
|
||||
how_to_enable: Du hast dich gerade nicht dazu entschieden im Verzeichnis gelistet zu werden. Du kannst dich unten dafür eintragen. Benutze Hashtags in deiner Profilbeschreibung, um unter spezifischen Hashtags gelistet zu werden!
|
||||
people:
|
||||
|
@ -714,7 +714,7 @@ de:
|
|||
media_attachments:
|
||||
validations:
|
||||
images_and_video: Es kann kein Video an einen Beitrag, der bereits Bilder enthält, angehängt werden
|
||||
too_many: Es können nicht mehr als 4 Bilder angehängt werden
|
||||
too_many: Es können nicht mehr als 4 Dateien angehängt werden
|
||||
migrations:
|
||||
acct: benutzername@domain des neuen Kontos
|
||||
currently_redirecting: 'Deine Profilweiterleitung wurde gesetzt auf:'
|
||||
|
@ -766,7 +766,6 @@ de:
|
|||
quadrillion: Q
|
||||
thousand: K
|
||||
trillion: T
|
||||
unit: ''
|
||||
pagination:
|
||||
newer: Neuer
|
||||
next: Vorwärts
|
||||
|
@ -869,7 +868,7 @@ de:
|
|||
settings:
|
||||
account: Konto
|
||||
account_settings: Konto & Sicherheit
|
||||
appearance: Bearbeiten
|
||||
appearance: Aussehen
|
||||
authorized_apps: Autorisierte Anwendungen
|
||||
back: Zurück zu Mastodon
|
||||
delete: Konto löschen
|
||||
|
@ -884,7 +883,7 @@ de:
|
|||
notifications: Benachrichtigungen
|
||||
preferences: Einstellungen
|
||||
profile: Profil
|
||||
relationships: Folgende und Follower
|
||||
relationships: Folger_innen und Gefolgte
|
||||
two_factor_authentication: Zwei-Faktor-Auth
|
||||
statuses:
|
||||
attached:
|
||||
|
@ -898,8 +897,8 @@ de:
|
|||
boosted_from_html: Geteilt von %{acct_link}
|
||||
content_warning: 'Inhaltswarnung: %{warning}'
|
||||
disallowed_hashtags:
|
||||
one: 'Enthält den unerlaubten Hashtag: %{tags}'
|
||||
other: 'Enthält die unerlaubten Hashtags: %{tags}'
|
||||
one: 'enthält einen verbotenen Hashtag: %{tags}'
|
||||
other: 'enthält verbotene Hashtags: %{tags}'
|
||||
language_detection: Sprache automatisch erkennen
|
||||
open_in_web: Im Web öffnen
|
||||
over_character_limit: Zeichenlimit von %{max} überschritten
|
||||
|
@ -926,7 +925,7 @@ de:
|
|||
stream_entries:
|
||||
pinned: Angehefteter Beitrag
|
||||
reblogged: teilte
|
||||
sensitive_content: Sensible Inhalte
|
||||
sensitive_content: Heikle Inhalte
|
||||
terms:
|
||||
body_html: |
|
||||
<h2>Datenschutzerklärung</h2>
|
||||
|
@ -1022,7 +1021,7 @@ de:
|
|||
month: "%b %Y"
|
||||
two_factor_authentication:
|
||||
code_hint: Gib zur Bestätigung den Code ein, den deine Authenticator-App generiert hat
|
||||
description_html: Wenn du <strong>Zwei-Faktor-Authentisierung (2FA)</strong> aktivierst, wirst du dein Telefon zum Anmelden benötigen. Darauf werden Tokens erzeugt, die du bei der Anmeldung eingeben musst.
|
||||
description_html: Wenn du <strong>Zwei-Faktor-Authentifizierung (2FA)</strong> aktivierst, wirst du dein Telefon zum Anmelden benötigen. Darauf werden Sicherheitscodes erzeugt, die du bei der Anmeldung eingeben musst.
|
||||
disable: Deaktivieren
|
||||
enable: Aktivieren
|
||||
enabled: Zwei-Faktor-Authentisierung ist aktiviert
|
||||
|
|
|
@ -12,14 +12,15 @@ ar:
|
|||
last_attempt: بإمكانك إعادة المحاولة مرة واحدة قبل أن يتم قفل حسابك.
|
||||
locked: إن حسابك مقفل.
|
||||
not_found_in_database: "%{authentication_keys} أو كلمة سر خاطئة."
|
||||
timeout: لقد إنتهت مدة صلاحية جلستك. قم بتسجيل الدخول من جديد للمواصلة.
|
||||
pending: إنّ حسابك في انتظار مراجعة.
|
||||
timeout: لقد انتهت مدة صلاحية جلستك. قم بتسجيل الدخول من جديد للمواصلة.
|
||||
unauthenticated: يجب عليك تسجيل الدخول أو إنشاء حساب قبل المواصلة.
|
||||
unconfirmed: يجب عليك تأكيد عنوان بريدك الإلكتروني قبل المواصلة.
|
||||
mailer:
|
||||
confirmation_instructions:
|
||||
action: للتحقق من عنوان البريد الإلكتروني
|
||||
action_with_app: تأكيد ثم العودة إلى %{app}
|
||||
explanation: لقد قمت بإنشاء حساب على %{host} بواسطة عنوان البريد الإلكتروني الحالي. إنك على بعد خطوات قليلة من تفعليه. إن لم تكن من طلب ذلك، يرجى ألّا تولي إهتماما بهذه الرسالة.
|
||||
explanation: لقد قمت بإنشاء حساب على %{host} بواسطة عنوان البريد الإلكتروني الحالي. إنك على بعد خطوات قليلة من تفعليه. إن لم تكن من طلب ذلك، يرجى ألّا تولي اهتماما بهذه الرسالة.
|
||||
extra_html: ندعوك إلى الإطلاع على <a href="%{terms_path}">القواعد الخاصة بمثيل الخادوم هذا</a> and <a href="%{policy_path}">و شروط الخدمة الخاصة بنا</a>.
|
||||
subject: 'ماستدون: تعليمات التأكيد لمثيل الخادوم %{instance}'
|
||||
title: للتحقق من عنوان البريد الإلكتروني
|
||||
|
@ -30,19 +31,19 @@ ar:
|
|||
title: عنوان البريد الإلكتروني الجديد
|
||||
password_change:
|
||||
explanation: تم تغيير كلمة السر الخاصة بحسابك.
|
||||
extra: إن لم تقم شخصيًا بتعديل كلمتك السرية، ذلك يعني أنّ شخصا آخر قد سيطر على حسابك. فالرجاء قم بتعديل كلمتك السرية في الحال أو قم بالإتصال بمدير مثيل الخادوم إن كنت غير قادر على استعمال حسابك.
|
||||
extra: إن لم تقم شخصيًا بتعديل كلمتك السرية، ذلك يعني أنّ شخصا آخر قد سيطر على حسابك. فالرجاء قم بتعديل كلمتك السرية في الحال أو قم بالاتصال بمدير مثيل الخادوم إن كنت غير قادر على استعمال حسابك.
|
||||
subject: 'ماستدون: تم تغيير كلمة المرور'
|
||||
title: تم تغيير كلمة السر
|
||||
reconfirmation_instructions:
|
||||
explanation: ندعوك لتأكيد العنوان الجديد قصد تعديله في بريدك.
|
||||
extra: إن لم تكن صاحب هذا الطلب ، يُرجى عدم إعارة الإهتمام لهذه الرسالة. فعنوان البريد الإلكتروني المتعلق بحساب ماستدون سوف يبقى هو مِن غير أي تعديل إلّا و فقط إن قمت بالنقر على الرابط أعلاه قصد تعديله.
|
||||
extra: إن لم تكن صاحب هذا الطلب ، يُرجى عدم إعارة الاهتمام لهذه الرسالة. فعنوان البريد الإلكتروني المتعلق بحساب ماستدون سوف يبقى هو مِن غير أي تعديل إلّا و فقط إن قمت بالنقر على الرابط أعلاه قصد تعديله.
|
||||
subject: 'ماستدون: تأكيد كلمة السر الخاصة بـ %{instance}'
|
||||
title: التحقق من عنوان البريد الإلكتروني
|
||||
reset_password_instructions:
|
||||
action: تغيير كلمة السر
|
||||
explanation: لقد قمت بطلب تغيير كلمة السر الخاصة بحسابك.
|
||||
extra: إن لم تكن صاحب هذا الطلب ، يُرجى عدم إعارة الإهتمام لهذه الرسالة. فكلِمَتُك السرية تبقى هي مِن غير أي تعديل إلّا و فقط إن قمت بالنقر على الرابط أعلاه قصد إنشاء كلمة سرية جديدة.
|
||||
subject: 'ماستدون : تعليمات إستعادة كلمة المرور'
|
||||
extra: إن لم تكن صاحب هذا الطلب ، يُرجى عدم إعارة الاهتمام لهذه الرسالة. فكلِمَتُك السرية تبقى هي مِن غير أي تعديل إلّا و فقط إن قمت بالنقر على الرابط أعلاه قصد إنشاء كلمة سرية جديدة.
|
||||
subject: 'ماستدون: تعليمات استعادة كلمة المرور'
|
||||
title: إعادة تعيين كلمة السر
|
||||
unlock_instructions:
|
||||
subject: 'ماستدون: تعليمات فك القفل'
|
||||
|
@ -75,7 +76,7 @@ ar:
|
|||
messages:
|
||||
already_confirmed: قمت بتأكيده من قبل ، يرجى إعادة محاولة تسجيل الدخول
|
||||
confirmation_period_expired: يجب التأكد منه قبل انقضاء مدة %{period}، يرجى إعادة طلب جديد
|
||||
expired: إنتهت مدة صلاحيته، الرجاء طلب واحد جديد
|
||||
expired: انتهت مدة صلاحيته، الرجاء طلب واحد جديد
|
||||
not_found: لا يوجد
|
||||
not_locked: ليس مقفلاً
|
||||
not_saved:
|
||||
|
@ -84,4 +85,4 @@ ar:
|
|||
one: 'خطأ واحد منع هذا %{resource} من الحفظ:'
|
||||
other: "%{count} أخطاء منعت هذا %{resource} من الحفظ:"
|
||||
two: 'أخطاء منعت هذا %{resource} من الحفظ:'
|
||||
zero: 'أخطاء منعت هذا %{resource} من الحفظ:'
|
||||
zero: "%{count} أخطاء منعت هذا %{resource} من الحفظ:"
|
||||
|
|
1
config/locales/devise.bn.yml
Normal file
1
config/locales/devise.bn.yml
Normal file
|
@ -0,0 +1 @@
|
|||
bn:
|
|
@ -3,15 +3,17 @@ ca:
|
|||
devise:
|
||||
confirmations:
|
||||
confirmed: L'adreça de correu s'ha confirmat correctament.
|
||||
send_instructions: En pocs minuts rebràs un correu electrònic amb instruccions sobre com confirmar l'adreça de correu.
|
||||
send_paranoid_instructions: Si l'adreça de correu electrònic existeix en la nostra base de dades, en pocs minuts rebràs un correu electrònic amb instruccions sobre com confirmar l'adreça de correu.
|
||||
send_instructions: "En pocs minuts rebràs un correu electrònic amb instruccions sobre com confirmar l'adreça de correu. \nSi us plau verifica la carpeta de corrreu brossa si no has rebut aquest correu."
|
||||
send_paranoid_instructions: |-
|
||||
Si l'adreça de correu electrònic existeix en la nostra base de dades, en pocs minuts rebràs un correu electrònic amb instruccions sobre com confirmar l'adreça de correu.
|
||||
Si us plau verifica la carpeta de corrreu brossa si no has rebut aquest correu.
|
||||
failure:
|
||||
already_authenticated: Ja estàs registrat.
|
||||
inactive: El teu compte encara no s'ha activat.
|
||||
invalid: "%{authentication_keys} o contrasenya no són vàlids."
|
||||
last_attempt: Tens un intent més, abans que es bloqui el compte.
|
||||
locked: El compte s'ha blocat.
|
||||
not_found_in_database: "%{authentication_keys} o contrasenya no vàlids."
|
||||
last_attempt: Tens un intent més, abans que es bloqueji el compte.
|
||||
locked: El compte s'ha bloquejat.
|
||||
not_found_in_database: "%{authentication_keys} o contrasenya no són vàlids."
|
||||
pending: El teu compte encara està en revisió.
|
||||
timeout: La sessió ha expirat. Inicia sessió una altra vegada per a continuar.
|
||||
unauthenticated: Cal iniciar sessió o registrar-se abans de continuar.
|
||||
|
@ -65,7 +67,7 @@ ca:
|
|||
signed_up_but_pending: S'ha enviat un missatge amb un enllaç de confirmació a la teva adreça de correu electrònic. Després de que hagis fet clic a l'enllaç, revisarem la teva sol·licitud. Se't notificarà si s'aprova.
|
||||
signed_up_but_unconfirmed: Un missatge amb un enllaç de confirmació ha estat enviat per correu electrònic. Si us plau segueixi l'enllaç per activar el seu compte.
|
||||
update_needs_confirmation: Ha actualitzat el seu compte amb èxit, però necessitem verificar la nova adreça de correu. Si us plau comprovi el correu i segueixi l'enllaç per confirmar la nova adreça de correu.
|
||||
updated: el seu compte ha estat actualitzat amb èxit.
|
||||
updated: El seu compte ha estat actualitzat amb èxit.
|
||||
sessions:
|
||||
already_signed_out: Has tancat la sessió amb èxit.
|
||||
signed_in: T'has registrat amb èxit.
|
||||
|
|
|
@ -83,5 +83,6 @@ cs:
|
|||
not_locked: nebyl uzamčen
|
||||
not_saved:
|
||||
few: "%{count} chyby zabránily uložení tohoto %{resource}:"
|
||||
many: "%{count} chyb zabránilo uložení tohoto %{resource}:"
|
||||
one: '1 chyba zabránila uložení tohoto %{resource}:'
|
||||
other: "%{count} chyb zabránilo uložení tohoto %{resource}:"
|
||||
|
|
|
@ -12,6 +12,7 @@ eo:
|
|||
last_attempt: Vi ankoraŭ povas provi unufoje antaŭ ol via konto estos ŝlosita.
|
||||
locked: Via konto estas ŝlosita.
|
||||
not_found_in_database: Nevalida %{authentication_keys} aŭ pasvorto.
|
||||
pending: Via konto ankoraŭ estas kontrolanta.
|
||||
timeout: Via seanco eksvalidiĝis. Bonvolu ensaluti denove por daŭrigi.
|
||||
unauthenticated: Vi devas ensaluti aŭ registriĝi antaŭ ol daŭrigi.
|
||||
unconfirmed: Vi devas konfirmi vian retadreson antaŭ ol daŭrigi.
|
||||
|
@ -20,6 +21,7 @@ eo:
|
|||
action: Konfirmi retadreson
|
||||
action_with_app: Konfirmi kaj reveni al %{app}
|
||||
explanation: Vi kreis konton en %{host} per ĉi tiu retadreso. Nur klako restas por aktivigi ĝin. Se tio ne estis vi, bonvolu ignori ĉi tiun retmesaĝon.
|
||||
explanation_when_pending: Vi petis inviton al %{host} per ĉi tiu retpoŝta adreso. Kiam vi konfirmas vian retpoŝtan adreson, ni revizios vian kandidatiĝon. Vi ne povas ensaluti ĝis tiam. Se via kandidatiĝo estas rifuzita, viaj datumoj estos forigitaj, do neniu alia ago estos postulita de vi. Se tio ne estis vi, bonvolu ignori ĉi tiun retpoŝton.
|
||||
extra_html: Bonvolu rigardi <a href="%{terms_path}">la regulojn de la servilo</a> kaj <a href="%{policy_path}">niajn uzkondiĉojn</a>.
|
||||
subject: 'Mastodon: Konfirmaj instrukcioj por %{instance}'
|
||||
title: Konfirmi retadreson
|
||||
|
@ -60,6 +62,7 @@ eo:
|
|||
signed_up: Bonvenon! Vi sukcese registriĝis.
|
||||
signed_up_but_inactive: Vi sukcese registriĝis. Tamen, ni ne povis ensalutigi vin, ĉar via konto ankoraŭ ne estas konfirmita.
|
||||
signed_up_but_locked: Vi sukcese registriĝis. Tamen, ni ne povis ensalutigi vin, ĉar via konto estas ŝlosita.
|
||||
signed_up_but_pending: Mesaĝo kun konfirma ligilo estis sendita al via retpoŝta adreso. Post kiam vi alklakis la ligilon, ni revizios vian kandidatiĝon. Vi estos sciigita se ĝi estas aprobita.
|
||||
signed_up_but_unconfirmed: Retmesaĝo kun konfirma ligilo estis sendita al via retadreso. Bonvolu sekvi la ligilon por aktivigi vian konton. Bonvolu kontroli vian spamujon, se vi ne ricevis ĉi tiun retmesaĝon.
|
||||
update_needs_confirmation: Vi sukcese ĝisdatigis vian konton, sed ni bezonas kontroli vian novan retadreson. Bonvolu kontroli viajn retmesaĝojn kaj sekvi la konfirman ligilon por konfirmi vian novan retadreson. Bonvolu kontroli vian spamujon, se vi ne ricevis ĉi tiun retmesaĝon.
|
||||
updated: Via konto estis sukcese ĝisdatigita.
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
es:
|
||||
devise:
|
||||
confirmations:
|
||||
confirmed: Su dirección de correo ha sido confirmada con éxito.
|
||||
confirmed: Su direccion de email ha sido confirmada con exito.
|
||||
send_instructions: Recibirá un correo electrónico con instrucciones sobre cómo confirmar su dirección de correo en pocos minutos.
|
||||
send_paranoid_instructions: Si su dirección de correo electrónico existe en nuestra base de datos, recibirá un correo electrónico con instrucciones sobre cómo confirmar su dirección de correo en pocos minutos.
|
||||
failure:
|
||||
|
@ -12,19 +12,22 @@ es:
|
|||
last_attempt: Tiene un intento más antes de que su cuenta sea bloqueada.
|
||||
locked: Su cuenta está bloqueada.
|
||||
not_found_in_database: Inválido %{authentication_keys} o contraseña.
|
||||
pending: Su cuenta aun se encuentra bajo revisión.
|
||||
timeout: Su sesión ha expirado. Por favor inicie sesión de nuevo para continuar.
|
||||
unauthenticated: Necesita iniciar sesión o registrarse antes de continuar.
|
||||
unconfirmed: Tiene que confirmar su dirección de correo electrónico antes de continuar.
|
||||
mailer:
|
||||
confirmation_instructions:
|
||||
action: Verificar dirección de correo electrónico
|
||||
action_with_app: Confirmar y regresar a %{app}
|
||||
explanation: Has creado una cuenta en %{host} con esta dirección de correo electrónico. Estas a un clic de activarla. Si no fue usted, por favor ignore este correo electrónico.
|
||||
explanation_when_pending: Usted ha solicitado una invitación a %{host} con esta dirección de correo electrónico. Una vez que confirme su dirección de correo electrónico, revisaremos su aplicación. No puede iniciar sesión hasta que su aplicación sea revisada. Si su solicitud está rechazada, sus datos serán eliminados, así que no será necesaria ninguna acción adicional por ti. Si no fuera usted, por favor ignore este correo electrónico.
|
||||
extra_html: Por favor revise <a href="%{terms_path}">las reglas de la instancia</a> y <a href="%{policy_path}">nuestros términos de servicio</a>.
|
||||
subject: 'Mastodon: Instrucciones de confirmación para %{instance}'
|
||||
title: Verificar dirección de correo electrónico
|
||||
email_changed:
|
||||
explanation: 'El correo electrónico para su cuenta esta siendo cambiada a:'
|
||||
extra: Si usted no a cambiado su correo electrónico. es probable que alguien a conseguido acceso a su cuenta. Por favor cambie su contraseña inmediatamente o contacte a el administrador de la instancia si usted esta bloqueado de su cuenta.
|
||||
extra: Si usted no ha cambiado su correo electrónico, es probable que alguien haya conseguido acceso a su cuenta. Por favor cambie su contraseña inmediatamente o contacte al administrador de la instancia si usted no puede iniciar sesión.
|
||||
subject: 'Mastodon: Correo electrónico cambiado'
|
||||
title: Nueva dirección de correo electrónico
|
||||
password_change:
|
||||
|
@ -59,6 +62,7 @@ es:
|
|||
signed_up: "¡Bienvenido! Se ha registrado con éxito."
|
||||
signed_up_but_inactive: Se ha registrado con éxito. Sin embargo, no podemos identificarle porque su cuenta no ha sido activada todavía.
|
||||
signed_up_but_locked: Se ha registrado con éxito. Sin embargo, no podemos identificarle porque su cuenta está bloqueada.
|
||||
signed_up_but_pending: Un mensaje con un enlace de confirmacion ha sido enviado a su direccion de email. Luego de clickear el link revisaremos su aplicacion. Seras notificado si es aprovada.
|
||||
signed_up_but_unconfirmed: Un mensaje con un enlace de confirmación ha sido enviado a su correo electrónico. Por favor siga el enlace para activar su cuenta.
|
||||
update_needs_confirmation: Ha actualizado su cuenta con éxito, pero necesitamos verificar su nueva dirección de correo. Por favor compruebe su correo y siga el enlace para confirmar su nueva dirección de correo.
|
||||
updated: su cuenta ha sido actualizada con éxito.
|
||||
|
|
|
@ -12,6 +12,7 @@ eu:
|
|||
last_attempt: Saiakera bat geratzen zaizu zure kontua giltzapetu aurretik.
|
||||
locked: Zure kontua giltzapetuta dago.
|
||||
not_found_in_database: Baliogabeko %{authentication_keys} edo pasahitza.
|
||||
pending: Zure kontua oraindik berrikusteke dago.
|
||||
timeout: Zure saioa iraungitu da. Hasi saioa berriro jarraitzeko.
|
||||
unauthenticated: Saioa hasi edo izena eman behar duzu jarraitu aurretik.
|
||||
unconfirmed: Zure e-mail helbidea baieztatu behar duzu jarraitu aurretik.
|
||||
|
@ -20,6 +21,7 @@ eu:
|
|||
action: Baieztatu e-mail helbidea
|
||||
action_with_app: Berretsi eta itzuli %{app} aplikaziora
|
||||
explanation: Kontu bat sortu duzu %{host} ostalarian e-mail helbide honekin. Aktibatzeko klik bat falta zaizu. Ez baduzu zuk sortu, ez egin ezer e-mail honekin.
|
||||
explanation_when_pending: "%{host} instantziara gonbidatua izatea eskatu duzu e-mail helbide honekin. Behin zure e-mail helbidea berresten duzula, zure eskaera berrikusiko da. Ezin duzu aurretik saioa hasi. Zure eskaera ukatuko balitz, zure datuak ezabatuko lirateke, eta ez zenuke beste ezer egiteko beharrik. Hau ez bazara zu izan, ezikusi e-mail hau."
|
||||
extra_html: Egiaztatu <a href="%{terms_path}">zerbitzariaren arauak</a> eta <a href="%{policy_path}">zerbitzuaren erabilera baldintzak</a>.
|
||||
subject: 'Mastodon: %{instance} instantziaren argibideak baieztapenerako'
|
||||
title: Baieztatu e-mail helbidea
|
||||
|
@ -60,6 +62,7 @@ eu:
|
|||
signed_up: Ongi etorri! Ongi hasi duzu saioa.
|
||||
signed_up_but_inactive: Ongi eman duzu izena. Hala ere, ezin duzu saioa hasi zure kontua oraindik ez dagoelako aktibatuta.
|
||||
signed_up_but_locked: Ongi eman duzu izena. Hala ere, ezin duzu saioa hasi zure kontua giltzapetuta dagoelako.
|
||||
signed_up_but_pending: Berrespen esteka bat duen mezu bat bidali da zure e-mail helbidera. Behin esteka sakatzen duzula, zure eskaera berrikusiko da. Onartzen bada jakinaraziko zaizu.
|
||||
signed_up_but_unconfirmed: Baieztapen esteka bat duen e-mail bidali zaizu. Jarraitu esteka zure kontua aktibatzeko. Egiaztatu spam karpeta ez baduzu e-mail hau jaso.
|
||||
update_needs_confirmation: Zure kontua ongi eguneratu duzu, baina zure email helbide berria egiaztatu behar dugu. Baieztapen esteka bat duen e-mail bidali zaizu, jarraitu esteka zure e-mal helbide berria baieztatzeko. Egiaztatu spam karpeta ez baduzu e-mail hau jaso.
|
||||
updated: Zure kontua ongi eguneratu da.
|
||||
|
|
|
@ -56,6 +56,3 @@ he:
|
|||
expired: פג תוקפו. נא לבקש חדש
|
||||
not_found: לא נמצא
|
||||
not_locked: לא היה נעול
|
||||
not_saved:
|
||||
one: 'שגיאה אחת מנעה את שמירת %{resource} זה:'
|
||||
other: "%{count} שגיאות מנעו את שמירת %{resource} זה:"
|
||||
|
|
|
@ -2,18 +2,9 @@
|
|||
hr:
|
||||
devise:
|
||||
confirmations:
|
||||
already_authenticated: Već si prijavljen.
|
||||
confirmed: Tvoja email adresa je uspješno potvrđena.
|
||||
inactive: Tvoj račun još nije aktiviran.
|
||||
invalid: Nevaljan %{authentication_keys} ili lozinka.
|
||||
last_attempt: Imaš još jedan pokušaj prije no što ti se račun zaključa.
|
||||
locked: Tvoj račun je zaključan.
|
||||
not_found_in_database: Nevaljan %{authentication_keys} ili lozinka.
|
||||
send_instructions: Primit ćeš email sa uputama kako potvrditi svoju email adresu za nekoliko minuta.
|
||||
send_paranoid_instructions: Ako tvoja email adresa postoji u našoj bazi podataka, primit ćeš email sa uputama kako ju potvrditi za nekoliko minuta.
|
||||
timeout: Tvoja sesija je istekla. Molimo te, prijavi se ponovo kako bi nastavio.
|
||||
unauthenticated: Moraš se registrirati ili prijaviti prije no što nastaviš.
|
||||
unconfirmed: Moraš potvrditi svoju email adresu prije no što nastaviš.
|
||||
mailer:
|
||||
confirmation_instructions:
|
||||
subject: 'Mastodon: Upute za potvrđivanje %{instance}'
|
||||
|
@ -58,4 +49,3 @@ hr:
|
|||
expired: je istekao, zatraži novu
|
||||
not_found: nije nađen
|
||||
not_locked: nije zaključan
|
||||
not_saved: "%{count} greške su zabranile da ovaj %{resource} bude sačuvan:"
|
||||
|
|
1
config/locales/devise.hy.yml
Normal file
1
config/locales/devise.hy.yml
Normal file
|
@ -0,0 +1 @@
|
|||
hy:
|
|
@ -57,5 +57,4 @@ id:
|
|||
not_found: tidak ditemukan
|
||||
not_locked: tidak dikunci
|
||||
not_saved:
|
||||
one: '1 error yang membuat %{resource} ini tidak dapat disimpan:'
|
||||
other: "%{count} error yang membuat %{resource} ini tidak dapat disimpan:"
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue