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

This commit is contained in:
Thibaut Girka 2019-06-13 22:23:20 +02:00
commit 60adda7e59
255 changed files with 2788 additions and 3451 deletions

View File

@ -3,7 +3,7 @@ Changelog
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [Unreleased] ## [2.9.0] - 2019-06-13
### Added ### 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)) - **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 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 `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 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 ### 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 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 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 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 ## [2.8.4] - 2019-05-24
### Fixed ### Fixed

View File

@ -107,8 +107,12 @@ export default class StatusContent extends React.PureComponent {
const [ startX, startY ] = this.startXY; const [ startX, startY ] = this.startXY;
const [ deltaX, deltaY ] = [Math.abs(e.clientX - startX), Math.abs(e.clientY - startY)]; 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;
return; 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) { if (deltaX + deltaY < 5 && e.button === 0 && this.props.onClick) {

View File

@ -211,10 +211,6 @@ class ComposeForm extends ImmutablePureComponent {
/> />
</div> </div>
<div className={`emoji-picker-wrapper ${this.props.showSearch ? 'emoji-picker-wrapper--hidden' : ''}`}>
<EmojiPickerDropdown onPickEmoji={this.handleEmojiPick} />
</div>
<AutosuggestTextarea <AutosuggestTextarea
ref={this.setAutosuggestTextarea} ref={this.setAutosuggestTextarea}
placeholder={intl.formatMessage(messages.placeholder)} placeholder={intl.formatMessage(messages.placeholder)}
@ -230,6 +226,7 @@ class ComposeForm extends ImmutablePureComponent {
onPaste={onPaste} onPaste={onPaste}
autoFocus={!showSearch && !isMobile(window.innerWidth)} autoFocus={!showSearch && !isMobile(window.innerWidth)}
> >
<EmojiPickerDropdown onPickEmoji={this.handleEmojiPick} />
<div className='compose-form__modifiers'> <div className='compose-form__modifiers'>
<UploadFormContainer /> <UploadFormContainer />
<PollFormContainer /> <PollFormContainer />

View File

@ -7,6 +7,7 @@ import DisplayName from '../../../components/display_name';
import { defineMessages, injectIntl } from 'react-intl'; import { defineMessages, injectIntl } from 'react-intl';
import ImmutablePureComponent from 'react-immutable-pure-component'; import ImmutablePureComponent from 'react-immutable-pure-component';
import { isRtl } from '../../../rtl'; import { isRtl } from '../../../rtl';
import AttachmentList from 'mastodon/components/attachment_list';
const messages = defineMessages({ const messages = defineMessages({
cancel: { id: 'reply_indicator.cancel', defaultMessage: 'Cancel' }, cancel: { id: 'reply_indicator.cancel', defaultMessage: 'Cancel' },
@ -60,6 +61,13 @@ class ReplyIndicator extends ImmutablePureComponent {
</div> </div>
<div className='reply-indicator__content' style={style} dangerouslySetInnerHTML={content} /> <div className='reply-indicator__content' style={style} dangerouslySetInnerHTML={content} />
{status.get('media_attachments').size > 0 && (
<AttachmentList
compact
media={status.get('media_attachments')}
/>
)}
</div> </div>
); );
} }

View File

@ -9,6 +9,7 @@ import RelativeTimestamp from '../../../components/relative_timestamp';
import DisplayName from '../../../components/display_name'; import DisplayName from '../../../components/display_name';
import ImmutablePureComponent from 'react-immutable-pure-component'; import ImmutablePureComponent from 'react-immutable-pure-component';
import Icon from 'mastodon/components/icon'; import Icon from 'mastodon/components/icon';
import AttachmentList from 'mastodon/components/attachment_list';
const messages = defineMessages({ const messages = defineMessages({
cancel_reblog: { id: 'status.cancel_reblog_private', defaultMessage: 'Unboost' }, cancel_reblog: { id: 'status.cancel_reblog_private', defaultMessage: 'Unboost' },
@ -73,6 +74,13 @@ class BoostModal extends ImmutablePureComponent {
</div> </div>
<StatusContent status={status} /> <StatusContent status={status} />
{status.get('media_attachments').size > 0 && (
<AttachmentList
compact
media={status.get('media_attachments')}
/>
)}
</div> </div>
</div> </div>

View File

@ -2,6 +2,7 @@ import React from 'react';
import { NavLink, withRouter } from 'react-router-dom'; import { NavLink, withRouter } from 'react-router-dom';
import { FormattedMessage } from 'react-intl'; import { FormattedMessage } from 'react-intl';
import Icon from 'mastodon/components/icon'; import Icon from 'mastodon/components/icon';
import { profile_directory } from 'mastodon/initial_state';
import NotificationsCounterIcon from './notifications_counter_icon'; import NotificationsCounterIcon from './notifications_counter_icon';
import FollowRequestsNavLink from './follow_requests_nav_link'; import FollowRequestsNavLink from './follow_requests_nav_link';
import ListPanel from './list_panel'; 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='/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='/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> </div>
); );

View File

@ -1,8 +1,8 @@
{ {
"account.add_or_remove_from_list": "أضيف/ي أو أحذف/ي من القائمة", "account.add_or_remove_from_list": "أضفه أو أزله من القائمة",
"account.badges.bot": "روبوت", "account.badges.bot": "روبوت",
"account.block": "حظر @{name}", "account.block": "حظر @{name}",
"account.block_domain": "إخفاء كل شيئ قادم من إسم النطاق {domain}", "account.block_domain": "إخفاء كل شيئ قادم من اسم النطاق {domain}",
"account.blocked": "محظور", "account.blocked": "محظور",
"account.direct": "رسالة خاصة إلى @{name}", "account.direct": "رسالة خاصة إلى @{name}",
"account.domain_blocked": "النطاق مخفي", "account.domain_blocked": "النطاق مخفي",
@ -19,7 +19,7 @@
"account.locked_info": "تم تأمين خصوصية هذا الحساب عبر قفل. صاحب الحساب يُراجِع يدويا طلبات المتابَعة و الاشتراك بحسابه.", "account.locked_info": "تم تأمين خصوصية هذا الحساب عبر قفل. صاحب الحساب يُراجِع يدويا طلبات المتابَعة و الاشتراك بحسابه.",
"account.media": "وسائط", "account.media": "وسائط",
"account.mention": "أُذكُر/ي @{name}", "account.mention": "أُذكُر/ي @{name}",
"account.moved_to": "{name} إنتقل إلى :", "account.moved_to": "{name} انتقل إلى:",
"account.mute": "كتم @{name}", "account.mute": "كتم @{name}",
"account.mute_notifications": "كتم الإخطارات من @{name}", "account.mute_notifications": "كتم الإخطارات من @{name}",
"account.muted": "مكتوم", "account.muted": "مكتوم",
@ -36,7 +36,7 @@
"account.unmute": "إلغاء الكتم عن @{name}", "account.unmute": "إلغاء الكتم عن @{name}",
"account.unmute_notifications": "إلغاء كتم إخطارات @{name}", "account.unmute_notifications": "إلغاء كتم إخطارات @{name}",
"alert.unexpected.message": "لقد طرأ هناك خطأ غير متوقّع.", "alert.unexpected.message": "لقد طرأ هناك خطأ غير متوقّع.",
"alert.unexpected.title": "المعذرة !", "alert.unexpected.title": "المعذرة!",
"boost_modal.combo": "يمكنك/ي ضغط {combo} لتخطّي هذه في المرّة القادمة", "boost_modal.combo": "يمكنك/ي ضغط {combo} لتخطّي هذه في المرّة القادمة",
"bundle_column_error.body": "لقد وقع هناك خطأ أثناء عملية تحميل هذا العنصر.", "bundle_column_error.body": "لقد وقع هناك خطأ أثناء عملية تحميل هذا العنصر.",
"bundle_column_error.retry": "إعادة المحاولة", "bundle_column_error.retry": "إعادة المحاولة",
@ -66,7 +66,7 @@
"column_subheading.settings": "الإعدادات", "column_subheading.settings": "الإعدادات",
"community.column_settings.media_only": "الوسائط فقط", "community.column_settings.media_only": "الوسائط فقط",
"compose_form.direct_message_warning": "لن يَظهر هذا التبويق إلا للمستخدمين المذكورين.", "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.hashtag_warning": "هذا التبويق لن يُدرَج تحت أي وسم كان بما أنه غير مُدرَج. لا يُسمح بالبحث إلّا عن التبويقات العمومية عن طريق الوسوم.",
"compose_form.lock_disclaimer": "حسابك ليس {locked}. يمكن لأي شخص متابعتك و عرض المنشورات.", "compose_form.lock_disclaimer": "حسابك ليس {locked}. يمكن لأي شخص متابعتك و عرض المنشورات.",
"compose_form.lock_disclaimer.lock": "مقفل", "compose_form.lock_disclaimer.lock": "مقفل",
@ -77,22 +77,22 @@
"compose_form.poll.remove_option": "إزالة هذا الخيار", "compose_form.poll.remove_option": "إزالة هذا الخيار",
"compose_form.publish": "بوّق", "compose_form.publish": "بوّق",
"compose_form.publish_loud": "{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.marked": "لقد تم تحديد هذه الصورة كحساسة",
"compose_form.sensitive.unmarked": "لم يتم تحديد الصورة كحساسة", "compose_form.sensitive.unmarked": "لم يتم تحديد الصورة كحساسة",
"compose_form.spoiler.marked": "إنّ النص مخفي وراء تحذير", "compose_form.spoiler.marked": "إنّ النص مخفي وراء تحذير",
"compose_form.spoiler.unmarked": "النص غير مخفي", "compose_form.spoiler.unmarked": "النص غير مخفي",
"compose_form.spoiler_placeholder": "تنبيه عن المحتوى", "compose_form.spoiler_placeholder": "تنبيه عن المحتوى",
"confirmation_modal.cancel": "إلغاء", "confirmation_modal.cancel": "إلغاء",
"confirmations.block.block_and_report": "Block & Report", "confirmations.block.block_and_report": "احجبه وابلغ عنه",
"confirmations.block.confirm": "حجب", "confirmations.block.confirm": "حجب",
"confirmations.block.message": "هل أنت متأكد أنك تريد حجب {name} ؟", "confirmations.block.message": "هل أنت متأكد أنك تريد حجب {name} ؟",
"confirmations.delete.confirm": "حذف", "confirmations.delete.confirm": "حذف",
"confirmations.delete.message": "هل أنت متأكد أنك تريد حذف هذا المنشور ؟", "confirmations.delete.message": "هل أنت متأكد أنك تريد حذف هذا المنشور ؟",
"confirmations.delete_list.confirm": "Delete", "confirmations.delete_list.confirm": "احذف",
"confirmations.delete_list.message": "هل تود حقا حذف هذه القائمة ؟", "confirmations.delete_list.message": "هل تود حقا حذف هذه القائمة ؟",
"confirmations.domain_block.confirm": "إخفاء إسم النطاق كاملا", "confirmations.domain_block.confirm": "إخفاء اسم النطاق كاملا",
"confirmations.domain_block.message": "متأكد من أنك تود حظر إسم النطاق {domain} بالكامل ؟ في غالب الأحيان يُستَحسَن كتم أو حظر بعض الحسابات بدلا من حظر نطاق بالكامل.\nلن تتمكن مِن رؤية محتوى هذا النطاق لا على خيوطك العمومية و لا في إشعاراتك. سوف يتم كذلك إزالة كافة متابعيك المنتمين إلى هذا النطاق.", "confirmations.domain_block.message": "متأكد من أنك تود حظر اسم النطاق {domain} بالكامل ؟ في غالب الأحيان يُستَحسَن كتم أو حظر بعض الحسابات بدلا من حظر نطاق بالكامل.\nلن تتمكن مِن رؤية محتوى هذا النطاق لا على خيوطك العمومية و لا في إشعاراتك. سوف يتم كذلك إزالة كافة متابعيك المنتمين إلى هذا النطاق.",
"confirmations.mute.confirm": "أكتم", "confirmations.mute.confirm": "أكتم",
"confirmations.mute.message": "هل أنت متأكد أنك تريد كتم {name} ؟", "confirmations.mute.message": "هل أنت متأكد أنك تريد كتم {name} ؟",
"confirmations.redraft.confirm": "إزالة و إعادة الصياغة", "confirmations.redraft.confirm": "إزالة و إعادة الصياغة",
@ -102,7 +102,7 @@
"confirmations.unfollow.confirm": "إلغاء المتابعة", "confirmations.unfollow.confirm": "إلغاء المتابعة",
"confirmations.unfollow.message": "متأكد من أنك تريد إلغاء متابعة {name} ؟", "confirmations.unfollow.message": "متأكد من أنك تريد إلغاء متابعة {name} ؟",
"embed.instructions": "يمكنكم إدماج هذا المنشور على موقعكم الإلكتروني عن طريق نسخ الشفرة أدناه.", "embed.instructions": "يمكنكم إدماج هذا المنشور على موقعكم الإلكتروني عن طريق نسخ الشفرة أدناه.",
"embed.preview": "هكذا ما سوف يبدو عليه :", "embed.preview": "هكذا ما سوف يبدو عليه:",
"emoji_button.activity": "الأنشطة", "emoji_button.activity": "الأنشطة",
"emoji_button.custom": "مخصص", "emoji_button.custom": "مخصص",
"emoji_button.flags": "الأعلام", "emoji_button.flags": "الأعلام",
@ -112,7 +112,7 @@
"emoji_button.not_found": "لا إيموجو !! (╯°□°)╯︵ ┻━┻", "emoji_button.not_found": "لا إيموجو !! (╯°□°)╯︵ ┻━┻",
"emoji_button.objects": "أشياء", "emoji_button.objects": "أشياء",
"emoji_button.people": "الناس", "emoji_button.people": "الناس",
"emoji_button.recent": "الشائعة الإستخدام", "emoji_button.recent": "الشائعة الاستخدام",
"emoji_button.search": "ابحث...", "emoji_button.search": "ابحث...",
"emoji_button.search_results": "نتائج البحث", "emoji_button.search_results": "نتائج البحث",
"emoji_button.symbols": "رموز", "emoji_button.symbols": "رموز",
@ -120,7 +120,7 @@
"empty_column.account_timeline": "ليس هناك تبويقات!", "empty_column.account_timeline": "ليس هناك تبويقات!",
"empty_column.account_unavailable": "الملف الشخصي غير متوفر", "empty_column.account_unavailable": "الملف الشخصي غير متوفر",
"empty_column.blocks": "لم تقم بحظر أي مستخدِم بعد.", "empty_column.blocks": "لم تقم بحظر أي مستخدِم بعد.",
"empty_column.community": "الخط الزمني المحلي فارغ. أكتب شيئا ما للعامة كبداية !", "empty_column.community": "الخط الزمني المحلي فارغ. أكتب شيئا ما للعامة كبداية!",
"empty_column.direct": "لم تتلق أية رسالة خاصة مباشِرة بعد. سوف يتم عرض الرسائل المباشرة هنا إن قمت بإرسال واحدة أو تلقيت البعض منها.", "empty_column.direct": "لم تتلق أية رسالة خاصة مباشِرة بعد. سوف يتم عرض الرسائل المباشرة هنا إن قمت بإرسال واحدة أو تلقيت البعض منها.",
"empty_column.domain_blocks": "ليس هناك نطاقات مخفية بعد.", "empty_column.domain_blocks": "ليس هناك نطاقات مخفية بعد.",
"empty_column.favourited_statuses": "ليس لديك أية تبويقات مفضلة بعد. عندما ستقوم بالإعجاب بواحد، سيظهر هنا.", "empty_column.favourited_statuses": "ليس لديك أية تبويقات مفضلة بعد. عندما ستقوم بالإعجاب بواحد، سيظهر هنا.",
@ -133,13 +133,13 @@
"empty_column.lists": "ليس عندك أية قائمة بعد. سوف تظهر قائمتك هنا إن قمت بإنشاء واحدة.", "empty_column.lists": "ليس عندك أية قائمة بعد. سوف تظهر قائمتك هنا إن قمت بإنشاء واحدة.",
"empty_column.mutes": "لم تقم بكتم أي مستخدم بعد.", "empty_column.mutes": "لم تقم بكتم أي مستخدم بعد.",
"empty_column.notifications": "لم تتلق أي إشعار بعدُ. تفاعل مع المستخدمين الآخرين لإنشاء محادثة.", "empty_column.notifications": "لم تتلق أي إشعار بعدُ. تفاعل مع المستخدمين الآخرين لإنشاء محادثة.",
"empty_column.public": "لا يوجد أي شيء هنا ! قم بنشر شيء ما للعامة، أو إتبع المستخدمين الآخرين المتواجدين على الخوادم الأخرى لملء خيط المحادثات", "empty_column.public": "لا يوجد أي شيء هنا! قم بنشر شيء ما للعامة، أو اتبع المستخدمين الآخرين المتواجدين على الخوادم الأخرى لملء خيط المحادثات",
"follow_request.authorize": "ترخيص", "follow_request.authorize": "ترخيص",
"follow_request.reject": "رفض", "follow_request.reject": "رفض",
"getting_started.developers": "المُطوِّرون", "getting_started.developers": "المُطوِّرون",
"getting_started.directory": "دليل المستخدِمين والمستخدِمات", "getting_started.directory": "دليل المستخدِمين والمستخدِمات",
"getting_started.documentation": "الدليل", "getting_started.documentation": "الدليل",
"getting_started.heading": "إستعدّ للبدء", "getting_started.heading": "استعدّ للبدء",
"getting_started.invite": "دعوة أشخاص", "getting_started.invite": "دعوة أشخاص",
"getting_started.open_source_notice": "ماستدون برنامج مفتوح المصدر. يمكنك المساهمة، أو الإبلاغ عن تقارير الأخطاء، على جيت هب {github}.", "getting_started.open_source_notice": "ماستدون برنامج مفتوح المصدر. يمكنك المساهمة، أو الإبلاغ عن تقارير الأخطاء، على جيت هب {github}.",
"getting_started.security": "الأمان", "getting_started.security": "الأمان",
@ -156,15 +156,15 @@
"home.column_settings.basic": "أساسية", "home.column_settings.basic": "أساسية",
"home.column_settings.show_reblogs": "عرض الترقيات", "home.column_settings.show_reblogs": "عرض الترقيات",
"home.column_settings.show_replies": "عرض الردود", "home.column_settings.show_replies": "عرض الردود",
"intervals.full.days": "{number, plural, one {# day} other {# days}}", "intervals.full.days": "{number, plural, one {# يوم} other {# أيام}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}", "intervals.full.hours": "{number, plural, one {# ساعة} other {# ساعات}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}", "intervals.full.minutes": "{number, plural, one {# دقيقة} other {# دقائق}}",
"introduction.federation.action": "التالي", "introduction.federation.action": "التالي",
"introduction.federation.federated.headline": "Federated", "introduction.federation.federated.headline": "الفديرالي",
"introduction.federation.federated.text": "كافة المنشورات التي نُشِرت إلى العامة على الخوادم الأخرى للفديفرس سوف يتم عرضها على الخيط المُوحَّد.", "introduction.federation.federated.text": "كافة المنشورات التي نُشِرت إلى العامة على الخوادم الأخرى للفديفرس سوف يتم عرضها على الخيط المُوحَّد.",
"introduction.federation.home.headline": "Home", "introduction.federation.home.headline": "الرئيسي",
"introduction.federation.home.text": "سوف تُعرَض منشورات الأشخاص الذين تُتابِعهم على الخيط الرئيسي. بإمكانك متابعة أي حساب أيا كان الخادم الذي هو عليه!", "introduction.federation.home.text": "سوف تُعرَض منشورات الأشخاص الذين تُتابِعهم على الخيط الرئيسي. بإمكانك متابعة أي حساب أيا كان الخادم الذي هو عليه!",
"introduction.federation.local.headline": "Local", "introduction.federation.local.headline": "المحلي",
"introduction.federation.local.text": "المنشورات المُوجّهة للعامة على نفس الخادم الذي أنتم عليه ستظهر على الخيط الزمني المحلي.", "introduction.federation.local.text": "المنشورات المُوجّهة للعامة على نفس الخادم الذي أنتم عليه ستظهر على الخيط الزمني المحلي.",
"introduction.interactions.action": "إنهاء العرض التوضيحي!", "introduction.interactions.action": "إنهاء العرض التوضيحي!",
"introduction.interactions.favourite.headline": "الإضافة إلى المفضلة", "introduction.interactions.favourite.headline": "الإضافة إلى المفضلة",
@ -175,22 +175,22 @@
"introduction.interactions.reply.text": "يمكنكم الرد على تبويقاتكم و تبويقات الآخرين على شكل سلسلة محادثة.", "introduction.interactions.reply.text": "يمكنكم الرد على تبويقاتكم و تبويقات الآخرين على شكل سلسلة محادثة.",
"introduction.welcome.action": "هيا بنا!", "introduction.welcome.action": "هيا بنا!",
"introduction.welcome.headline": "الخطوات الأولى", "introduction.welcome.headline": "الخطوات الأولى",
"introduction.welcome.text": "مرحبا بكم على الفيديفيرس! بعد لحظات قليلة ، سيكون بمقدوركم بث رسائل والتحدث إلى أصدقائكم عبر تشكيلة واسعة من الخوادم المختلفة. هذا الخادم ، {domain} ، يستضيف ملفكم الشخصي ، لذا يجب تذكر اسمه جيدا.", "introduction.welcome.text": "مرحبا بكم على الفديفرس! بعد لحظات قليلة ، سيكون بمقدوركم بث رسائل والتحدث إلى أصدقائكم عبر تشكيلة واسعة من الخوادم المختلفة. هذا الخادم ، {domain} ، يستضيف ملفكم الشخصي ، لذا يجب تذكر اسمه جيدا.",
"keyboard_shortcuts.back": "للعودة", "keyboard_shortcuts.back": "للعودة",
"keyboard_shortcuts.blocked": "لفتح قائمة المستخدمين المحظورين", "keyboard_shortcuts.blocked": "لفتح قائمة المستخدمين المحظورين",
"keyboard_shortcuts.boost": "للترقية", "keyboard_shortcuts.boost": "للترقية",
"keyboard_shortcuts.column": "للتركيز على منشور على أحد الأعمدة", "keyboard_shortcuts.column": "للتركيز على منشور على أحد الأعمدة",
"keyboard_shortcuts.compose": "للتركيز على نافذة تحرير النصوص", "keyboard_shortcuts.compose": "للتركيز على نافذة تحرير النصوص",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "الوصف",
"keyboard_shortcuts.direct": "لفتح عمود الرسائل المباشرة", "keyboard_shortcuts.direct": "لفتح عمود الرسائل المباشرة",
"keyboard_shortcuts.down": "للإنتقال إلى أسفل القائمة", "keyboard_shortcuts.down": "للانتقال إلى أسفل القائمة",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "لفتح المنشور",
"keyboard_shortcuts.favourite": "للإضافة إلى المفضلة", "keyboard_shortcuts.favourite": "للإضافة إلى المفضلة",
"keyboard_shortcuts.favourites": "لفتح قائمة المفضلات", "keyboard_shortcuts.favourites": "لفتح قائمة المفضلات",
"keyboard_shortcuts.federated": "لفتح الخيط الزمني الفديرالي", "keyboard_shortcuts.federated": "لفتح الخيط الزمني الفديرالي",
"keyboard_shortcuts.heading": "Keyboard Shortcuts", "keyboard_shortcuts.heading": "Keyboard Shortcuts",
"keyboard_shortcuts.home": "لفتح الخيط الرئيسي", "keyboard_shortcuts.home": "لفتح الخيط الرئيسي",
"keyboard_shortcuts.hotkey": "مفتاح الإختصار", "keyboard_shortcuts.hotkey": "مفتاح الاختصار",
"keyboard_shortcuts.legend": "لعرض هذا المفتاح", "keyboard_shortcuts.legend": "لعرض هذا المفتاح",
"keyboard_shortcuts.local": "لفتح الخيط الزمني المحلي", "keyboard_shortcuts.local": "لفتح الخيط الزمني المحلي",
"keyboard_shortcuts.mention": "لذِكر الناشر", "keyboard_shortcuts.mention": "لذِكر الناشر",
@ -204,17 +204,17 @@
"keyboard_shortcuts.search": "للتركيز على البحث", "keyboard_shortcuts.search": "للتركيز على البحث",
"keyboard_shortcuts.start": "لفتح عمود \"هيا نبدأ\"", "keyboard_shortcuts.start": "لفتح عمود \"هيا نبدأ\"",
"keyboard_shortcuts.toggle_hidden": "لعرض أو إخفاء النص مِن وراء التحذير", "keyboard_shortcuts.toggle_hidden": "لعرض أو إخفاء النص مِن وراء التحذير",
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media", "keyboard_shortcuts.toggle_sensitivity": "لعرض/إخفاء الوسائط",
"keyboard_shortcuts.toot": "لتحرير تبويق جديد", "keyboard_shortcuts.toot": "لتحرير تبويق جديد",
"keyboard_shortcuts.unfocus": "لإلغاء التركيز على حقل النص أو نافذة البحث", "keyboard_shortcuts.unfocus": "لإلغاء التركيز على حقل النص أو نافذة البحث",
"keyboard_shortcuts.up": "للإنتقال إلى أعلى القائمة", "keyboard_shortcuts.up": "للانتقال إلى أعلى القائمة",
"lightbox.close": "إغلاق", "lightbox.close": "إغلاق",
"lightbox.next": "التالي", "lightbox.next": "التالي",
"lightbox.previous": "العودة", "lightbox.previous": "العودة",
"lightbox.view_context": "View context", "lightbox.view_context": "اعرض السياق",
"lists.account.add": "أضف إلى القائمة", "lists.account.add": "أضف إلى القائمة",
"lists.account.remove": "إحذف من القائمة", "lists.account.remove": "احذف من القائمة",
"lists.delete": "Delete list", "lists.delete": "احذف القائمة",
"lists.edit": "تعديل القائمة", "lists.edit": "تعديل القائمة",
"lists.edit.submit": "تعديل العنوان", "lists.edit.submit": "تعديل العنوان",
"lists.new.create": "إنشاء قائمة", "lists.new.create": "إنشاء قائمة",
@ -231,22 +231,22 @@
"navigation_bar.community_timeline": "الخيط العام المحلي", "navigation_bar.community_timeline": "الخيط العام المحلي",
"navigation_bar.compose": "تحرير تبويق جديد", "navigation_bar.compose": "تحرير تبويق جديد",
"navigation_bar.direct": "الرسائل المباشِرة", "navigation_bar.direct": "الرسائل المباشِرة",
"navigation_bar.discover": "إكتشف", "navigation_bar.discover": "اكتشف",
"navigation_bar.domain_blocks": "النطاقات المخفية", "navigation_bar.domain_blocks": "النطاقات المخفية",
"navigation_bar.edit_profile": "تعديل الملف الشخصي", "navigation_bar.edit_profile": "تعديل الملف الشخصي",
"navigation_bar.favourites": "المفضلة", "navigation_bar.favourites": "المفضلة",
"navigation_bar.filters": "الكلمات المكتومة", "navigation_bar.filters": "الكلمات المكتومة",
"navigation_bar.follow_requests": "طلبات المتابعة", "navigation_bar.follow_requests": "طلبات المتابعة",
"navigation_bar.follows_and_followers": "Follows and followers", "navigation_bar.follows_and_followers": "المتابِعين والمتابَعون",
"navigation_bar.info": "عن هذا الخادم", "navigation_bar.info": "عن هذا الخادم",
"navigation_bar.keyboard_shortcuts": "إختصارات لوحة المفاتيح", "navigation_bar.keyboard_shortcuts": "اختصارات لوحة المفاتيح",
"navigation_bar.lists": "القوائم", "navigation_bar.lists": "القوائم",
"navigation_bar.logout": "خروج", "navigation_bar.logout": "خروج",
"navigation_bar.mutes": "الحسابات المكتومة", "navigation_bar.mutes": "الحسابات المكتومة",
"navigation_bar.personal": "Personal", "navigation_bar.personal": "شخصي",
"navigation_bar.pins": "التبويقات المثبتة", "navigation_bar.pins": "التبويقات المثبتة",
"navigation_bar.preferences": "التفضيلات", "navigation_bar.preferences": "التفضيلات",
"navigation_bar.profile_directory": "Profile directory", "navigation_bar.profile_directory": "دليل المستخدِمين",
"navigation_bar.public_timeline": "الخيط العام الموحد", "navigation_bar.public_timeline": "الخيط العام الموحد",
"navigation_bar.security": "الأمان", "navigation_bar.security": "الأمان",
"notification.favourite": "أُعجِب {name} بمنشورك", "notification.favourite": "أُعجِب {name} بمنشورك",
@ -254,19 +254,19 @@
"notification.mention": "{name} ذكرك", "notification.mention": "{name} ذكرك",
"notification.poll": "A poll you have voted in has ended", "notification.poll": "A poll you have voted in has ended",
"notification.reblog": "{name} قام بترقية تبويقك", "notification.reblog": "{name} قام بترقية تبويقك",
"notifications.clear": "إمسح الإخطارات", "notifications.clear": "امسح الإخطارات",
"notifications.clear_confirmation": "أمتأكد من أنك تود مسح جل الإخطارات الخاصة بك و المتلقاة إلى حد الآن ؟", "notifications.clear_confirmation": "أمتأكد من أنك تود مسح جل الإخطارات الخاصة بك و المتلقاة إلى حد الآن ؟",
"notifications.column_settings.alert": "إشعارات سطح المكتب", "notifications.column_settings.alert": "إشعارات سطح المكتب",
"notifications.column_settings.favourite": "المُفَضَّلة :", "notifications.column_settings.favourite": "المُفَضَّلة:",
"notifications.column_settings.filter_bar.advanced": "عرض كافة الفئات", "notifications.column_settings.filter_bar.advanced": "عرض كافة الفئات",
"notifications.column_settings.filter_bar.category": "شريط الفلترة السريعة", "notifications.column_settings.filter_bar.category": "شريط الفلترة السريعة",
"notifications.column_settings.filter_bar.show": "عرض", "notifications.column_settings.filter_bar.show": "عرض",
"notifications.column_settings.follow": "متابعُون جُدُد :", "notifications.column_settings.follow": "متابعُون جُدُد:",
"notifications.column_settings.mention": "الإشارات :", "notifications.column_settings.mention": "الإشارات:",
"notifications.column_settings.poll": "نتائج استطلاع الرأي:", "notifications.column_settings.poll": "نتائج استطلاع الرأي:",
"notifications.column_settings.push": "الإخطارات المدفوعة", "notifications.column_settings.push": "الإخطارات المدفوعة",
"notifications.column_settings.reblog": "الترقيّات:", "notifications.column_settings.reblog": "الترقيّات:",
"notifications.column_settings.show": "إعرِضها في عمود", "notifications.column_settings.show": "اعرِضها في عمود",
"notifications.column_settings.sound": "أصدر صوتا", "notifications.column_settings.sound": "أصدر صوتا",
"notifications.filter.all": "الكل", "notifications.filter.all": "الكل",
"notifications.filter.boosts": "الترقيات", "notifications.filter.boosts": "الترقيات",
@ -277,11 +277,11 @@
"notifications.group": "{count} إشعارات", "notifications.group": "{count} إشعارات",
"poll.closed": "انتهى", "poll.closed": "انتهى",
"poll.refresh": "تحديث", "poll.refresh": "تحديث",
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}", "poll.total_votes": "{count, plural, one {# صوت} other {# أصوات}}",
"poll.vote": "صَوّت", "poll.vote": "صَوّت",
"poll_button.add_poll": "إضافة استطلاع للرأي", "poll_button.add_poll": "إضافة استطلاع للرأي",
"poll_button.remove_poll": "إزالة استطلاع الرأي", "poll_button.remove_poll": "إزالة استطلاع الرأي",
"privacy.change": "إضبط خصوصية المنشور", "privacy.change": "اضبط خصوصية المنشور",
"privacy.direct.long": "أنشر إلى المستخدمين المشار إليهم فقط", "privacy.direct.long": "أنشر إلى المستخدمين المشار إليهم فقط",
"privacy.direct.short": "مباشر", "privacy.direct.short": "مباشر",
"privacy.private.long": "أنشر لمتابعيك فقط", "privacy.private.long": "أنشر لمتابعيك فقط",
@ -290,20 +290,20 @@
"privacy.public.short": "للعامة", "privacy.public.short": "للعامة",
"privacy.unlisted.long": "لا تقم بإدراجه على الخيوط العامة", "privacy.unlisted.long": "لا تقم بإدراجه على الخيوط العامة",
"privacy.unlisted.short": "غير مدرج", "privacy.unlisted.short": "غير مدرج",
"regeneration_indicator.label": "جارٍ التحميل …", "regeneration_indicator.label": "جارٍ التحميل…",
"regeneration_indicator.sublabel": "جارٍ تجهيز تغذية صفحتك الرئيسية !", "regeneration_indicator.sublabel": "جارٍ تجهيز تغذية صفحتك الرئيسية!",
"relative_time.days": "{number}d", "relative_time.days": "{number}ي",
"relative_time.hours": "{number}h", "relative_time.hours": "{number}سا",
"relative_time.just_now": "الآن", "relative_time.just_now": "الآن",
"relative_time.minutes": "{number}m", "relative_time.minutes": "{number}د",
"relative_time.seconds": "{number}s", "relative_time.seconds": "{number}ثا",
"reply_indicator.cancel": "إلغاء", "reply_indicator.cancel": "إلغاء",
"report.forward": "التحويل إلى {target}", "report.forward": "التحويل إلى {target}",
"report.forward_hint": "هذا الحساب ينتمي إلى خادوم آخَر. هل تودّ إرسال نسخة مجهولة مِن التقرير إلى هنالك أيضًا ؟", "report.forward_hint": "هذا الحساب ينتمي إلى خادوم آخَر. هل تودّ إرسال نسخة مجهولة مِن التقرير إلى هنالك أيضًا؟",
"report.hint": "سوف يتم إرسال التقرير إلى المُشرِفين على خادومكم. بإمكانكم الإدلاء بشرح عن سبب الإبلاغ عن الحساب أسفله:", "report.hint": "سوف يتم إرسال التقرير إلى المُشرِفين على خادومكم. بإمكانكم الإدلاء بشرح عن سبب الإبلاغ عن الحساب أسفله:",
"report.placeholder": "تعليقات إضافية", "report.placeholder": "تعليقات إضافية",
"report.submit": "إرسال", "report.submit": "إرسال",
"report.target": "إبلاغ", "report.target": "ابلغ عن {target}",
"search.placeholder": "ابحث", "search.placeholder": "ابحث",
"search_popout.search_format": "نمط البحث المتقدم", "search_popout.search_format": "نمط البحث المتقدم",
"search_popout.tips.full_text": "النص البسيط يقوم بعرض المنشورات التي كتبتها أو قمت بإرسالها أو ترقيتها أو تمت الإشارة إليك فيها من طرف آخرين ، بالإضافة إلى مطابقة أسماء المستخدمين وأسماء العرض وعلامات التصنيف.", "search_popout.tips.full_text": "النص البسيط يقوم بعرض المنشورات التي كتبتها أو قمت بإرسالها أو ترقيتها أو تمت الإشارة إليك فيها من طرف آخرين ، بالإضافة إلى مطابقة أسماء المستخدمين وأسماء العرض وعلامات التصنيف.",
@ -317,11 +317,11 @@
"search_results.total": "{count, number} {count, plural, one {result} و {results}}", "search_results.total": "{count, number} {count, plural, one {result} و {results}}",
"status.admin_account": "افتح الواجهة الإدارية لـ @{name}", "status.admin_account": "افتح الواجهة الإدارية لـ @{name}",
"status.admin_status": "افتح هذا المنشور على واجهة الإشراف", "status.admin_status": "افتح هذا المنشور على واجهة الإشراف",
"status.block": "Block @{name}", "status.block": "احجب @{name}",
"status.cancel_reblog_private": "إلغاء الترقية", "status.cancel_reblog_private": "إلغاء الترقية",
"status.cannot_reblog": "تعذرت ترقية هذا المنشور", "status.cannot_reblog": "تعذرت ترقية هذا المنشور",
"status.copy": "نسخ رابط المنشور", "status.copy": "نسخ رابط المنشور",
"status.delete": "إحذف", "status.delete": "احذف",
"status.detailed_status": "تفاصيل المحادثة", "status.detailed_status": "تفاصيل المحادثة",
"status.direct": "رسالة خاصة إلى @{name}", "status.direct": "رسالة خاصة إلى @{name}",
"status.embed": "إدماج", "status.embed": "إدماج",
@ -344,31 +344,31 @@
"status.redraft": "إزالة و إعادة الصياغة", "status.redraft": "إزالة و إعادة الصياغة",
"status.reply": "ردّ", "status.reply": "ردّ",
"status.replyAll": "رُد على الخيط", "status.replyAll": "رُد على الخيط",
"status.report": "إبلِغ عن @{name}", "status.report": "ابلِغ عن @{name}",
"status.sensitive_warning": "محتوى حساس", "status.sensitive_warning": "محتوى حساس",
"status.share": "مشاركة", "status.share": "مشاركة",
"status.show_less": "إعرض أقلّ", "status.show_less": "اعرض أقلّ",
"status.show_less_all": "طي الكل", "status.show_less_all": "طي الكل",
"status.show_more": "أظهر المزيد", "status.show_more": "أظهر المزيد",
"status.show_more_all": "توسيع الكل", "status.show_more_all": "توسيع الكل",
"status.show_thread": "الكشف عن المحادثة", "status.show_thread": "الكشف عن المحادثة",
"status.unmute_conversation": "فك الكتم عن المحادثة", "status.unmute_conversation": "فك الكتم عن المحادثة",
"status.unpin": "فك التدبيس من الملف الشخصي", "status.unpin": "فك التدبيس من الملف الشخصي",
"suggestions.dismiss": "إلغاء الإقتراح", "suggestions.dismiss": "إلغاء الاقتراح",
"suggestions.header": "يمكن أن يهمك…", "suggestions.header": "يمكن أن يهمك…",
"tabs_bar.federated_timeline": "الموحَّد", "tabs_bar.federated_timeline": "الموحَّد",
"tabs_bar.home": "الرئيسية", "tabs_bar.home": "الرئيسية",
"tabs_bar.local_timeline": "المحلي", "tabs_bar.local_timeline": "المحلي",
"tabs_bar.notifications": "الإخطارات", "tabs_bar.notifications": "الإخطارات",
"tabs_bar.search": "البحث", "tabs_bar.search": "البحث",
"time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.days": "{number, plural, one {# يوم} other {# أيام}} متبقية",
"time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", "time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left",
"time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} 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", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left",
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} آخرون {people}} يتحدثون", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} آخرون {people}} يتحدثون",
"ui.beforeunload": "سوف تفقد مسودتك إن تركت ماستدون.", "ui.beforeunload": "سوف تفقد مسودتك إن تركت ماستدون.",
"upload_area.title": "إسحب ثم أفلت للرفع", "upload_area.title": "اسحب ثم أفلت للرفع",
"upload_button.label": "إضافة وسائط (JPEG، PNG، GIF، WebM، MP4، MOV)", "upload_button.label": "إضافة وسائط (JPEG، PNG، GIF، WebM، MP4، MOV)",
"upload_error.limit": "لقد تم بلوغ الحد الأقصى المسموح به لإرسال الملفات.", "upload_error.limit": "لقد تم بلوغ الحد الأقصى المسموح به لإرسال الملفات.",
"upload_error.poll": "لا يمكن إدراج ملفات في استطلاعات الرأي.", "upload_error.poll": "لا يمكن إدراج ملفات في استطلاعات الرأي.",

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -295,7 +295,7 @@
"relative_time.days": "{number} দিন", "relative_time.days": "{number} দিন",
"relative_time.hours": "{number} ঘন্টা", "relative_time.hours": "{number} ঘন্টা",
"relative_time.just_now": "এখন", "relative_time.just_now": "এখন",
"relative_time.minutes": "{number} াস", "relative_time.minutes": "{number}ম",
"relative_time.seconds": "{number} সেকেন্ড", "relative_time.seconds": "{number} সেকেন্ড",
"reply_indicator.cancel": "বাতিল করতে", "reply_indicator.cancel": "বাতিল করতে",
"report.forward": "এটা আরো পাঠান {target} তে", "report.forward": "এটা আরো পাঠান {target} তে",

View File

@ -1,7 +1,7 @@
{ {
"account.add_or_remove_from_list": "Afegir o Treure de les llistes", "account.add_or_remove_from_list": "Afegir o Treure de les llistes",
"account.badges.bot": "Bot", "account.badges.bot": "Bot",
"account.block": "Bloca @{name}", "account.block": "Bloqueja @{name}",
"account.block_domain": "Amaga-ho tot de {domain}", "account.block_domain": "Amaga-ho tot de {domain}",
"account.blocked": "Bloquejat", "account.blocked": "Bloquejat",
"account.direct": "Missatge directe @{name}", "account.direct": "Missatge directe @{name}",
@ -11,7 +11,7 @@
"account.follow": "Segueix", "account.follow": "Segueix",
"account.followers": "Seguidors", "account.followers": "Seguidors",
"account.followers.empty": "Encara ningú no segueix aquest usuari.", "account.followers.empty": "Encara ningú no segueix aquest usuari.",
"account.follows": "Seguint", "account.follows": "Seguiments",
"account.follows.empty": "Aquest usuari encara no segueix a ningú.", "account.follows.empty": "Aquest usuari encara no segueix a ningú.",
"account.follows_you": "Et segueix", "account.follows_you": "Et segueix",
"account.hide_reblogs": "Amaga els impulsos de @{name}", "account.hide_reblogs": "Amaga els impulsos de @{name}",
@ -44,7 +44,7 @@
"bundle_modal_error.close": "Tanca", "bundle_modal_error.close": "Tanca",
"bundle_modal_error.message": "S'ha produït un error en carregar aquest component.", "bundle_modal_error.message": "S'ha produït un error en carregar aquest component.",
"bundle_modal_error.retry": "Torna-ho a provar", "bundle_modal_error.retry": "Torna-ho a provar",
"column.blocks": "Usuaris blocats", "column.blocks": "Usuaris bloquejats",
"column.community": "Línia de temps local", "column.community": "Línia de temps local",
"column.direct": "Missatges directes", "column.direct": "Missatges directes",
"column.domain_blocks": "Dominis ocults", "column.domain_blocks": "Dominis ocults",
@ -54,7 +54,7 @@
"column.lists": "Llistes", "column.lists": "Llistes",
"column.mutes": "Usuaris silenciats", "column.mutes": "Usuaris silenciats",
"column.notifications": "Notificacions", "column.notifications": "Notificacions",
"column.pins": "Toot fixat", "column.pins": "Toots fixats",
"column.public": "Línia de temps federada", "column.public": "Línia de temps federada",
"column_back_button.label": "Enrere", "column_back_button.label": "Enrere",
"column_header.hide_settings": "Amaga la configuració", "column_header.hide_settings": "Amaga la configuració",
@ -65,12 +65,12 @@
"column_header.unpin": "No fixis", "column_header.unpin": "No fixis",
"column_subheading.settings": "Configuració", "column_subheading.settings": "Configuració",
"community.column_settings.media_only": "Només multimèdia", "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.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.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": "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.lock_disclaimer.lock": "bloquejat",
"compose_form.placeholder": "En què estàs pensant?", "compose_form.placeholder": "En què penses?",
"compose_form.poll.add_option": "Afegeix una opció", "compose_form.poll.add_option": "Afegeix una opció",
"compose_form.poll.duration": "Durada de l'enquesta", "compose_form.poll.duration": "Durada de l'enquesta",
"compose_form.poll.option_placeholder": "Opció {number}", "compose_form.poll.option_placeholder": "Opció {number}",
@ -84,11 +84,11 @@
"compose_form.spoiler.unmarked": "Text no ocult", "compose_form.spoiler.unmarked": "Text no ocult",
"compose_form.spoiler_placeholder": "Escriu l'avís aquí", "compose_form.spoiler_placeholder": "Escriu l'avís aquí",
"confirmation_modal.cancel": "Cancel·la", "confirmation_modal.cancel": "Cancel·la",
"confirmations.block.block_and_report": "Block & Report", "confirmations.block.block_and_report": "Bloquejar i informar",
"confirmations.block.confirm": "Bloca", "confirmations.block.confirm": "Bloqueja",
"confirmations.block.message": "Estàs segur que vols bloquejar a {name}?", "confirmations.block.message": "Estàs segur que vols bloquejar a {name}?",
"confirmations.delete.confirm": "Suprimeix", "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.confirm": "Suprimeix",
"confirmations.delete_list.message": "Estàs segur que vols suprimir permanentment aquesta llista?", "confirmations.delete_list.message": "Estàs segur que vols suprimir permanentment aquesta llista?",
"confirmations.domain_block.confirm": "Amaga tot el domini", "confirmations.domain_block.confirm": "Amaga tot el domini",
@ -96,12 +96,12 @@
"confirmations.mute.confirm": "Silencia", "confirmations.mute.confirm": "Silencia",
"confirmations.mute.message": "Estàs segur que vols silenciar {name}?", "confirmations.mute.message": "Estàs segur que vols silenciar {name}?",
"confirmations.redraft.confirm": "Esborrar i refer", "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.confirm": "Respon",
"confirmations.reply.message": "Responen ara es sobreescriurà el missatge que estàs editant. Estàs segur que vols continuar?", "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.confirm": "Deixa de seguir",
"confirmations.unfollow.message": "Estàs segur que vols deixar de seguir {name}?", "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á:", "embed.preview": "Aquí tenim quin aspecte tindrá:",
"emoji_button.activity": "Activitat", "emoji_button.activity": "Activitat",
"emoji_button.custom": "Personalitzat", "emoji_button.custom": "Personalitzat",
@ -118,18 +118,18 @@
"emoji_button.symbols": "Símbols", "emoji_button.symbols": "Símbols",
"emoji_button.travel": "Viatges i Llocs", "emoji_button.travel": "Viatges i Llocs",
"empty_column.account_timeline": "No hi ha toots aquí!", "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.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.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.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.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.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.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": "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.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.lists": "Encara no tens cap llista. Quan en facis una, apareixerà aquí.",
"empty_column.mutes": "Encara no has silenciat cap usuari.", "empty_column.mutes": "Encara no has silenciat cap usuari.",
"empty_column.notifications": "Encara no tens notificacions. Interactua amb altres per iniciar la conversa.", "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.back": "navegar enrera",
"keyboard_shortcuts.blocked": "per obrir la llista d'usuaris bloquejats", "keyboard_shortcuts.blocked": "per obrir la llista d'usuaris bloquejats",
"keyboard_shortcuts.boost": "impulsar", "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.compose": "per centrar l'area de composició de text",
"keyboard_shortcuts.description": "Descripció", "keyboard_shortcuts.description": "Descripció",
"keyboard_shortcuts.direct": "per obrir la columna de missatges directes", "keyboard_shortcuts.direct": "per obrir la columna de missatges directes",
"keyboard_shortcuts.down": "per baixar en la llista", "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.favourite": "afavorir",
"keyboard_shortcuts.favourites": "per obrir la llista de favorits", "keyboard_shortcuts.favourites": "per obrir la llista de favorits",
"keyboard_shortcuts.federated": "per obrir la línia de temps federada", "keyboard_shortcuts.federated": "per obrir la línia de temps federada",
"keyboard_shortcuts.heading": "Dreçeres de teclat", "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.hotkey": "Tecla d'accés directe",
"keyboard_shortcuts.legend": "per a mostrar aquesta llegenda", "keyboard_shortcuts.legend": "per a mostrar aquesta llegenda",
"keyboard_shortcuts.local": "per obrir la línia de temps local", "keyboard_shortcuts.local": "per a obrir la línia de temps local",
"keyboard_shortcuts.mention": "per esmentar l'autor", "keyboard_shortcuts.mention": "per a esmentar l'autor",
"keyboard_shortcuts.muted": "per obrir la llista d'usuaris silenciats", "keyboard_shortcuts.muted": "per a obrir la llista d'usuaris silenciats",
"keyboard_shortcuts.my_profile": "per obrir el teu perfil", "keyboard_shortcuts.my_profile": "per a obrir el teu perfil",
"keyboard_shortcuts.notifications": "per obrir la columna de notificacions", "keyboard_shortcuts.notifications": "per a obrir la columna de notificacions",
"keyboard_shortcuts.pinned": "per obrir la llista de toots fixats", "keyboard_shortcuts.pinned": "per a obrir la llista de toots fixats",
"keyboard_shortcuts.profile": "per obrir el perfil de l'autor", "keyboard_shortcuts.profile": "per a obrir el perfil de l'autor",
"keyboard_shortcuts.reply": "respondre", "keyboard_shortcuts.reply": "respondre",
"keyboard_shortcuts.requests": "per obrir la llista de sol·licituds de seguiment", "keyboard_shortcuts.requests": "per a obrir la llista de sol·licituds de seguiment",
"keyboard_shortcuts.search": "per centrar la cerca", "keyboard_shortcuts.search": "per a centrar la cerca",
"keyboard_shortcuts.start": "per obrir la columna \"Començar\"", "keyboard_shortcuts.start": "per a obrir la columna \"Començar\"",
"keyboard_shortcuts.toggle_hidden": "per a mostrar/amagar text sota CW", "keyboard_shortcuts.toggle_hidden": "per a mostrar/amagar text sota CW",
"keyboard_shortcuts.toggle_sensitivity": "per a mostrar/amagar mèdia", "keyboard_shortcuts.toggle_sensitivity": "per a mostrar/amagar mèdia",
"keyboard_shortcuts.toot": "per a començar un toot nou de trinca", "keyboard_shortcuts.toot": "per a començar un toot nou de trinca",
@ -214,7 +214,7 @@
"lightbox.view_context": "Veure el context", "lightbox.view_context": "Veure el context",
"lists.account.add": "Afegir a la llista", "lists.account.add": "Afegir a la llista",
"lists.account.remove": "Treure de la llista", "lists.account.remove": "Treure de la llista",
"lists.delete": "Delete list", "lists.delete": "Esborrar llista",
"lists.edit": "Editar llista", "lists.edit": "Editar llista",
"lists.edit.submit": "Canvi de títol", "lists.edit.submit": "Canvi de títol",
"lists.new.create": "Afegir llista", "lists.new.create": "Afegir llista",
@ -226,7 +226,7 @@
"missing_indicator.label": "No trobat", "missing_indicator.label": "No trobat",
"missing_indicator.sublabel": "Aquest recurs no pot ser trobat", "missing_indicator.sublabel": "Aquest recurs no pot ser trobat",
"mute_modal.hide_notifications": "Amagar notificacions d'aquest usuari?", "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.blocks": "Usuaris bloquejats",
"navigation_bar.community_timeline": "Línia de temps Local", "navigation_bar.community_timeline": "Línia de temps Local",
"navigation_bar.compose": "Redacta nou toot", "navigation_bar.compose": "Redacta nou toot",
@ -246,7 +246,7 @@
"navigation_bar.personal": "Personal", "navigation_bar.personal": "Personal",
"navigation_bar.pins": "Toots fixats", "navigation_bar.pins": "Toots fixats",
"navigation_bar.preferences": "Preferències", "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.public_timeline": "Línia de temps federada",
"navigation_bar.security": "Seguretat", "navigation_bar.security": "Seguretat",
"notification.favourite": "{name} ha afavorit el teu estat", "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.hint": "El informe s'enviarà als moderadors del teu servidor. Pots explicar perquè vols informar d'aquest compte aquí:",
"report.placeholder": "Comentaris addicionals", "report.placeholder": "Comentaris addicionals",
"report.submit": "Enviar", "report.submit": "Enviar",
"report.target": "Informes", "report.target": "Informes {target}",
"search.placeholder": "Cercar", "search.placeholder": "Cercar",
"search_popout.search_format": "Format de cerca avançada", "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.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.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.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_popout.tips.user": "usuari",
"search_results.accounts": "Gent", "search_results.accounts": "Gent",
"search_results.hashtags": "Etiquetes", "search_results.hashtags": "Etiquetes",
"search_results.statuses": "Toots", "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_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.block": "Bloqueja @{name}",
"status.cancel_reblog_private": "Desfer l'impuls", "status.cancel_reblog_private": "Desfer l'impuls",
"status.cannot_reblog": "Aquesta publicació no pot ser impulsada", "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.delete": "Esborrar",
"status.detailed_status": "Visualització detallada de la conversa", "status.detailed_status": "Visualització detallada de la conversa",
"status.direct": "Missatge directe @{name}", "status.direct": "Missatge directe @{name}",
@ -366,12 +366,12 @@
"time_remaining.minutes": "{number, plural, one {# minut} other {# minuts}} restants", "time_remaining.minutes": "{number, plural, one {# minut} other {# minuts}} restants",
"time_remaining.moments": "Moments restants", "time_remaining.moments": "Moments restants",
"time_remaining.seconds": "{number, plural, one {# segon} other {# segons}} restants", "time_remaining.seconds": "{number, plural, one {# segon} other {# segons}} restants",
"trends.count_by_accounts": "{count} {rawCount, plural, una {person} altres {people}} parlant", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
"ui.beforeunload": "El vostre esborrany es perdrà si sortiu de Mastodon.", "ui.beforeunload": "El teu esborrany es perdrà si surts de Mastodon.",
"upload_area.title": "Arrossega i deixa anar per carregar", "upload_area.title": "Arrossega i deixa anar per a carregar",
"upload_button.label": "Afegir multimèdia (JPEG, PNG, GIF, WebM, MP4, MOV)", "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.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.description": "Descriure els problemes visuals",
"upload_form.focus": "Modificar la previsualització", "upload_form.focus": "Modificar la previsualització",
"upload_form.undo": "Esborra", "upload_form.undo": "Esborra",

View File

@ -292,8 +292,8 @@
"privacy.unlisted.short": "Micca listatu", "privacy.unlisted.short": "Micca listatu",
"regeneration_indicator.label": "Caricamentu…", "regeneration_indicator.label": "Caricamentu…",
"regeneration_indicator.sublabel": "Priparazione di a vostra pagina d'accolta!", "regeneration_indicator.sublabel": "Priparazione di a vostra pagina d'accolta!",
"relative_time.days": "{number}d", "relative_time.days": "{number}ghj",
"relative_time.hours": "{number}h", "relative_time.hours": "{number}o",
"relative_time.just_now": "avà", "relative_time.just_now": "avà",
"relative_time.minutes": "{number}m", "relative_time.minutes": "{number}m",
"relative_time.seconds": "{number}s", "relative_time.seconds": "{number}s",

View File

@ -45,7 +45,7 @@
"bundle_modal_error.message": "Aeth rhywbeth o'i le tra'n llwytho'r elfen hon.", "bundle_modal_error.message": "Aeth rhywbeth o'i le tra'n llwytho'r elfen hon.",
"bundle_modal_error.retry": "Ceiswich eto", "bundle_modal_error.retry": "Ceiswich eto",
"column.blocks": "Defnyddwyr a flociwyd", "column.blocks": "Defnyddwyr a flociwyd",
"column.community": "Llinell amser lleol", "column.community": "Ffrwd lleol",
"column.direct": "Negeseuon preifat", "column.direct": "Negeseuon preifat",
"column.domain_blocks": "Parthau cuddiedig", "column.domain_blocks": "Parthau cuddiedig",
"column.favourites": "Ffefrynnau", "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": "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.lock_disclaimer.lock": "wedi ei gloi",
"compose_form.placeholder": "Beth sydd ar eich meddwl?", "compose_form.placeholder": "Beth sydd ar eich meddwl?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Ychwanegu Dewisiad",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Cyfnod pleidlais",
"compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.option_placeholder": "Dewisiad {number}",
"compose_form.poll.remove_option": "Remove this choice", "compose_form.poll.remove_option": "Tynnu'r dewisiad",
"compose_form.publish": "Tŵt", "compose_form.publish": "Tŵt",
"compose_form.publish_loud": "{publish}!", "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.marked": "Cyfryngau wedi'u marcio'n sensitif",
"compose_form.sensitive.unmarked": "Nid yw'r 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.marked": "Testun wedi ei guddio gan rybudd",
"compose_form.spoiler.unmarked": "Nid yw'r testun wedi ei guddio", "compose_form.spoiler.unmarked": "Nid yw'r testun wedi ei guddio",
"compose_form.spoiler_placeholder": "Ysgrifenwch eich rhybudd yma", "compose_form.spoiler_placeholder": "Ysgrifenwch eich rhybudd yma",
"confirmation_modal.cancel": "Canslo", "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.confirm": "Blocio",
"confirmations.block.message": "Ydych chi'n sicr eich bod eisiau blocio {name}?", "confirmations.block.message": "Ydych chi'n sicr eich bod eisiau blocio {name}?",
"confirmations.delete.confirm": "Dileu", "confirmations.delete.confirm": "Dileu",
@ -109,7 +109,7 @@
"emoji_button.food": "Bwyd a Diod", "emoji_button.food": "Bwyd a Diod",
"emoji_button.label": "Mewnosodwch emoji", "emoji_button.label": "Mewnosodwch emoji",
"emoji_button.nature": "Natur", "emoji_button.nature": "Natur",
"emoji_button.not_found": "Dim emojo!! (╯°□°)╯︵ ┻━┻", "emoji_button.not_found": "Dim emojau!! (╯°□°)╯︵ ┻━┻",
"emoji_button.objects": "Gwrthrychau", "emoji_button.objects": "Gwrthrychau",
"emoji_button.people": "Pobl", "emoji_button.people": "Pobl",
"emoji_button.recent": "Defnyddir yn aml", "emoji_button.recent": "Defnyddir yn aml",
@ -117,8 +117,8 @@
"emoji_button.search_results": "Canlyniadau chwilio", "emoji_button.search_results": "Canlyniadau chwilio",
"emoji_button.symbols": "Symbolau", "emoji_button.symbols": "Symbolau",
"emoji_button.travel": "Teithio & Llefydd", "emoji_button.travel": "Teithio & Llefydd",
"empty_column.account_timeline": "No toots here!", "empty_column.account_timeline": "Dim tŵtiau fama!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Proffil ddim ar gael",
"empty_column.blocks": "Nid ydych wedi blocio unrhyw ddefnyddwyr eto.", "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.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.", "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.all": "a {additional}",
"hashtag.column_header.tag_mode.any": "neu {additional}", "hashtag.column_header.tag_mode.any": "neu {additional}",
"hashtag.column_header.tag_mode.none": "heb {additional}", "hashtag.column_header.tag_mode.none": "heb {additional}",
"hashtag.column_settings.select.no_options_message": "No suggestions found", "hashtag.column_settings.select.no_options_message": "Dim awgrymiadau i'w weld",
"hashtag.column_settings.select.placeholder": "Enter hashtags…", "hashtag.column_settings.select.placeholder": "Mewnbynnu hashnodau…",
"hashtag.column_settings.tag_mode.all": "Pob un o'r rhain", "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.any": "Unrhyw un o'r rhain",
"hashtag.column_settings.tag_mode.none": "Dim 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.basic": "Syml",
"home.column_settings.show_reblogs": "Dangos bŵstiau", "home.column_settings.show_reblogs": "Dangos bŵstiau",
"home.column_settings.show_replies": "Dangos ymatebion", "home.column_settings.show_replies": "Dangos ymatebion",
"intervals.full.days": "{number, plural, one {# day} other {# days}}", "intervals.full.days": "{number, plural, one {# ddydd} other {# o ddyddiau}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}", "intervals.full.hours": "{number, plural, one {# awr} other {# o oriau}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}", "intervals.full.minutes": "{number, plural, one {# funud} other {# o funudau}}",
"introduction.federation.action": "Nesaf", "introduction.federation.action": "Nesaf",
"introduction.federation.federated.headline": "Ffederasiwn", "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.federated.text": "Bydd pyst cyhoeddus o gweinyddion arall yn y Ffedysawd yn cael ai arddangos yn ffrwd y ffederasiwn.",
"introduction.federation.home.headline": "Home", "introduction.federation.home.headline": "Hafan",
"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": "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": "Local", "introduction.federation.local.headline": "Lleol",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.action": "Gorffen tiwtorial!",
"introduction.interactions.favourite.headline": "Ffefryn", "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.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.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.action": "Awn ni!",
"introduction.welcome.headline": "Camau cyntaf", "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.back": "i lywio nôl",
"keyboard_shortcuts.blocked": "i agor rhestr defnyddwyr a flociwyd", "keyboard_shortcuts.blocked": "i agor rhestr defnyddwyr a flociwyd",
"keyboard_shortcuts.boost": "i fŵstio", "keyboard_shortcuts.boost": "i fŵstio",
@ -190,7 +190,7 @@
"keyboard_shortcuts.federated": "i agor ffrwd y ffederasiwn", "keyboard_shortcuts.federated": "i agor ffrwd y ffederasiwn",
"keyboard_shortcuts.heading": "Llwybrau byr allweddell", "keyboard_shortcuts.heading": "Llwybrau byr allweddell",
"keyboard_shortcuts.home": "i agor ffrwd cartref", "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.legend": "i ddangos yr arwr yma",
"keyboard_shortcuts.local": "i agor ffrwd lleol", "keyboard_shortcuts.local": "i agor ffrwd lleol",
"keyboard_shortcuts.mention": "i grybwyll yr awdur", "keyboard_shortcuts.mention": "i grybwyll yr awdur",
@ -204,19 +204,19 @@
"keyboard_shortcuts.search": "i ffocysu chwilio", "keyboard_shortcuts.search": "i ffocysu chwilio",
"keyboard_shortcuts.start": "i agor colofn \"dechrau arni\"", "keyboard_shortcuts.start": "i agor colofn \"dechrau arni\"",
"keyboard_shortcuts.toggle_hidden": "i ddangos/cuddio testun tu ôl i CW", "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.toot": "i ddechrau tŵt newydd sbon",
"keyboard_shortcuts.unfocus": "i ddad-ffocysu ardal cyfansoddi testun/chwilio", "keyboard_shortcuts.unfocus": "i ddad-ffocysu ardal cyfansoddi testun/chwilio",
"keyboard_shortcuts.up": "i symud yn uwch yn y rhestr", "keyboard_shortcuts.up": "i symud yn uwch yn y rhestr",
"lightbox.close": "Cau", "lightbox.close": "Cau",
"lightbox.next": "Nesaf", "lightbox.next": "Nesaf",
"lightbox.previous": "Blaenorol", "lightbox.previous": "Blaenorol",
"lightbox.view_context": "View context", "lightbox.view_context": "Gweld cyd-destyn",
"lists.account.add": "Ychwanegwch at restr", "lists.account.add": "Ychwanegwch at restr",
"lists.account.remove": "Dileu o'r rhestr", "lists.account.remove": "Dileu o'r rhestr",
"lists.delete": "Dileu rhestr", "lists.delete": "Dileu rhestr",
"lists.edit": "Golygwch rhestr", "lists.edit": "Golygwch rhestr",
"lists.edit.submit": "Change title", "lists.edit.submit": "Newid teitl",
"lists.new.create": "Ychwanegu rhestr", "lists.new.create": "Ychwanegu rhestr",
"lists.new.title_placeholder": "Teitl rhestr newydd", "lists.new.title_placeholder": "Teitl rhestr newydd",
"lists.search": "Chwilio ymysg pobl yr ydych yn ei ddilyn", "lists.search": "Chwilio ymysg pobl yr ydych yn ei ddilyn",
@ -237,7 +237,7 @@
"navigation_bar.favourites": "Ffefrynnau", "navigation_bar.favourites": "Ffefrynnau",
"navigation_bar.filters": "Geiriau a dawelwyd", "navigation_bar.filters": "Geiriau a dawelwyd",
"navigation_bar.follow_requests": "Ceisiadau dilyn", "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.info": "Ynghylch yr achos hwn",
"navigation_bar.keyboard_shortcuts": "Bysellau brys", "navigation_bar.keyboard_shortcuts": "Bysellau brys",
"navigation_bar.lists": "Rhestrau", "navigation_bar.lists": "Rhestrau",
@ -246,13 +246,13 @@
"navigation_bar.personal": "Personol", "navigation_bar.personal": "Personol",
"navigation_bar.pins": "Tŵtiau wedi eu pinio", "navigation_bar.pins": "Tŵtiau wedi eu pinio",
"navigation_bar.preferences": "Dewisiadau", "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.public_timeline": "Ffrwd y ffederasiwn",
"navigation_bar.security": "Diogelwch", "navigation_bar.security": "Diogelwch",
"notification.favourite": "hoffodd {name} eich tŵt", "notification.favourite": "hoffodd {name} eich tŵt",
"notification.follow": "dilynodd {name} chi", "notification.follow": "dilynodd {name} chi",
"notification.mention": "Soniodd {name} amdanoch 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", "notification.reblog": "Hysbysebodd {name} eich tŵt",
"notifications.clear": "Clirio hysbysiadau", "notifications.clear": "Clirio hysbysiadau",
"notifications.clear_confirmation": "Ydych chi'n sicr eich bod am glirio'ch holl hysbysiadau am byth?", "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.filter_bar.show": "Dangos",
"notifications.column_settings.follow": "Dilynwyr newydd:", "notifications.column_settings.follow": "Dilynwyr newydd:",
"notifications.column_settings.mention": "Crybwylliadau:", "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.push": "Hysbysiadau push",
"notifications.column_settings.reblog": "Hybiadau:", "notifications.column_settings.reblog": "Hybiadau:",
"notifications.column_settings.show": "Dangos yn y golofn", "notifications.column_settings.show": "Dangos yn y golofn",
@ -273,14 +273,14 @@
"notifications.filter.favourites": "Ffefrynnau", "notifications.filter.favourites": "Ffefrynnau",
"notifications.filter.follows": "Yn dilyn", "notifications.filter.follows": "Yn dilyn",
"notifications.filter.mentions": "Crybwylliadau", "notifications.filter.mentions": "Crybwylliadau",
"notifications.filter.polls": "Poll results", "notifications.filter.polls": "Canlyniadau pleidlais",
"notifications.group": "{count} o hysbysiadau", "notifications.group": "{count} o hysbysiadau",
"poll.closed": "Closed", "poll.closed": "Ar gau",
"poll.refresh": "Refresh", "poll.refresh": "Adnewyddu",
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}", "poll.total_votes": "{count, plural, one {# bleidlais} other {# o bleidleisiau}}",
"poll.vote": "Vote", "poll.vote": "Pleidleisio",
"poll_button.add_poll": "Add a poll", "poll_button.add_poll": "Ychwanegu pleidlais",
"poll_button.remove_poll": "Remove poll", "poll_button.remove_poll": "Tynnu pleidlais",
"privacy.change": "Addasu preifatrwdd y tŵt", "privacy.change": "Addasu preifatrwdd y tŵt",
"privacy.direct.long": "Cyhoeddi i'r defnyddwyr sy'n cael eu crybwyll yn unig", "privacy.direct.long": "Cyhoeddi i'r defnyddwyr sy'n cael eu crybwyll yn unig",
"privacy.direct.short": "Uniongyrchol", "privacy.direct.short": "Uniongyrchol",
@ -292,11 +292,11 @@
"privacy.unlisted.short": "Heb ei restru", "privacy.unlisted.short": "Heb ei restru",
"regeneration_indicator.label": "Llwytho…", "regeneration_indicator.label": "Llwytho…",
"regeneration_indicator.sublabel": "Mae eich ffrwd cartref yn cael ei baratoi!", "regeneration_indicator.sublabel": "Mae eich ffrwd cartref yn cael ei baratoi!",
"relative_time.days": "{number}d", "relative_time.days": "{number}dydd",
"relative_time.hours": "{number}h", "relative_time.hours": "{number}awr",
"relative_time.just_now": "nawr", "relative_time.just_now": "nawr",
"relative_time.minutes": "{number}m", "relative_time.minutes": "{number}munud",
"relative_time.seconds": "{number}s", "relative_time.seconds": "{number}eiliad",
"reply_indicator.cancel": "Canslo", "reply_indicator.cancel": "Canslo",
"report.forward": "Ymlaen i {target}", "report.forward": "Ymlaen i {target}",
"report.forward_hint": "Mae'r cyfrif o weinydd arall. Anfon copi anhysbys o'r adroddiad yno hefyd?", "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.accounts": "Pobl",
"search_results.hashtags": "Hanshnodau", "search_results.hashtags": "Hanshnodau",
"search_results.statuses": "Tŵtiau", "search_results.statuses": "Tŵtiau",
"search_results.total": "{count, number} {count, plural, one {result} arall {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Agor rhyngwyneb goruwchwylio ar gyfer @{name}",
"status.admin_status": "Open this tŵt in the moderation interface", "status.admin_status": "Agor y tŵt yn y rhyngwyneb goruwchwylio",
"status.block": "Blocio @{name}", "status.block": "Blocio @{name}",
"status.cancel_reblog_private": "Dadfŵstio", "status.cancel_reblog_private": "Dadfŵstio",
"status.cannot_reblog": "Ni ellir sbarduno'r tŵt hwn", "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.delete": "Dileu",
"status.detailed_status": "Golwg manwl o'r sgwrs", "status.detailed_status": "Golwg manwl o'r sgwrs",
"status.direct": "Neges breifat @{name}", "status.direct": "Neges breifat @{name}",
@ -361,17 +361,17 @@
"tabs_bar.local_timeline": "Lleol", "tabs_bar.local_timeline": "Lleol",
"tabs_bar.notifications": "Hysbysiadau", "tabs_bar.notifications": "Hysbysiadau",
"tabs_bar.search": "Chwilio", "tabs_bar.search": "Chwilio",
"time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.days": "{number, plural, one {# ddydd} other {# o ddyddiau}} ar ôl",
"time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", "time_remaining.hours": "{number, plural, one {# awr} other {# o oriau}} ar ôl",
"time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.minutes": "{number, plural, one {# funud} other {# o funudau}} ar ôl",
"time_remaining.moments": "Moments remaining", "time_remaining.moments": "Munudau ar ôl",
"time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", "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", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} yn siarad",
"ui.beforeunload": "Mi fyddwch yn colli eich drafft os gadewch Mastodon.", "ui.beforeunload": "Mi fyddwch yn colli eich drafft os gadewch Mastodon.",
"upload_area.title": "Llusgwch & gollwing i uwchlwytho", "upload_area.title": "Llusgwch & gollwing i uwchlwytho",
"upload_button.label": "Ychwanegwch gyfryngau (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_button.label": "Ychwanegwch gyfryngau (JPEG, PNG, GIF, WebM, MP4, MOV)",
"upload_error.limit": "File upload limit exceeded.", "upload_error.limit": "Wedi mynd heibio'r uchafswm terfyn uwchlwytho.",
"upload_error.poll": "File upload not allowed with polls.", "upload_error.poll": "Nid oes modd uwchlwytho ffeiliau â phleidleisiau.",
"upload_form.description": "Disgrifio i'r rheini a nam ar ei golwg", "upload_form.description": "Disgrifio i'r rheini a nam ar ei golwg",
"upload_form.focus": "Newid rhagolwg", "upload_form.focus": "Newid rhagolwg",
"upload_form.undo": "Dileu", "upload_form.undo": "Dileu",

View File

@ -9,7 +9,7 @@
"account.edit_profile": "Profil bearbeiten", "account.edit_profile": "Profil bearbeiten",
"account.endorse": "Auf Profil hervorheben", "account.endorse": "Auf Profil hervorheben",
"account.follow": "Folgen", "account.follow": "Folgen",
"account.followers": "Folgende", "account.followers": "Folger_innen",
"account.followers.empty": "Diesem Profil folgt noch niemand.", "account.followers.empty": "Diesem Profil folgt noch niemand.",
"account.follows": "Folgt", "account.follows": "Folgt",
"account.follows.empty": "Dieses Profil folgt noch niemandem.", "account.follows.empty": "Dieses Profil folgt noch niemandem.",
@ -37,7 +37,7 @@
"account.unmute_notifications": "Benachrichtigungen von @{name} einschalten", "account.unmute_notifications": "Benachrichtigungen von @{name} einschalten",
"alert.unexpected.message": "Ein unerwarteter Fehler ist aufgetreten.", "alert.unexpected.message": "Ein unerwarteter Fehler ist aufgetreten.",
"alert.unexpected.title": "Hoppla!", "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.body": "Etwas ist beim Laden schiefgelaufen.",
"bundle_column_error.retry": "Erneut versuchen", "bundle_column_error.retry": "Erneut versuchen",
"bundle_column_error.title": "Netzwerkfehler", "bundle_column_error.title": "Netzwerkfehler",
@ -55,7 +55,7 @@
"column.mutes": "Stummgeschaltete Profile", "column.mutes": "Stummgeschaltete Profile",
"column.notifications": "Mitteilungen", "column.notifications": "Mitteilungen",
"column.pins": "Angeheftete Beiträge", "column.pins": "Angeheftete Beiträge",
"column.public": "Gesamtes bekanntes Netz", "column.public": "Föderierte Zeitleiste",
"column_back_button.label": "Zurück", "column_back_button.label": "Zurück",
"column_header.hide_settings": "Einstellungen verbergen", "column_header.hide_settings": "Einstellungen verbergen",
"column_header.moveLeft_settings": "Spalte nach links verschieben", "column_header.moveLeft_settings": "Spalte nach links verschieben",
@ -67,14 +67,14 @@
"community.column_settings.media_only": "Nur Medien", "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": "Dieser Beitrag wird nur für die erwähnten Nutzer sichtbar sein.",
"compose_form.direct_message_warning_learn_more": "Mehr erfahren", "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": "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.lock_disclaimer.lock": "gesperrt",
"compose_form.placeholder": "Was gibt's Neues?", "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.duration": "Umfragedauer",
"compose_form.poll.option_placeholder": "Auswahl {number}", "compose_form.poll.option_placeholder": "Wahl {number}",
"compose_form.poll.remove_option": "Auswahl entfernen", "compose_form.poll.remove_option": "Wahl entfernen",
"compose_form.publish": "Tröt", "compose_form.publish": "Tröt",
"compose_form.publish_loud": "{publish}!", "compose_form.publish_loud": "{publish}!",
"compose_form.sensitive.hide": "Medien als heikel markieren", "compose_form.sensitive.hide": "Medien als heikel markieren",
@ -92,11 +92,11 @@
"confirmations.delete_list.confirm": "Löschen", "confirmations.delete_list.confirm": "Löschen",
"confirmations.delete_list.message": "Bist du dir sicher, dass du diese Liste permanent löschen möchtest?", "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.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.confirm": "Stummschalten",
"confirmations.mute.message": "Bist du dir sicher, dass du {name} stummschalten möchtest?", "confirmations.mute.message": "Bist du dir sicher, dass du {name} stummschalten möchtest?",
"confirmations.redraft.confirm": "Löschen und neu erstellen", "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.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.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", "confirmations.unfollow.confirm": "Entfolgen",
@ -150,9 +150,9 @@
"hashtag.column_settings.select.no_options_message": "Keine Vorschläge gefunden", "hashtag.column_settings.select.no_options_message": "Keine Vorschläge gefunden",
"hashtag.column_settings.select.placeholder": "Hashtags eintragen…", "hashtag.column_settings.select.placeholder": "Hashtags eintragen…",
"hashtag.column_settings.tag_mode.all": "All diese", "hashtag.column_settings.tag_mode.all": "All diese",
"hashtag.column_settings.tag_mode.any": "Eine von diesen", "hashtag.column_settings.tag_mode.any": "Eins von diesen",
"hashtag.column_settings.tag_mode.none": "Keine von diesen", "hashtag.column_settings.tag_mode.none": "Keins von diesen",
"hashtag.column_settings.tag_toggle": "Zusätzliche Tags für diese Spalte einfügen", "hashtag.column_settings.tag_toggle": "Zusätzliche Hashtags für diese Spalte einfügen",
"home.column_settings.basic": "Einfach", "home.column_settings.basic": "Einfach",
"home.column_settings.show_reblogs": "Geteilte Beiträge anzeigen", "home.column_settings.show_reblogs": "Geteilte Beiträge anzeigen",
"home.column_settings.show_replies": "Antworten anzeigen", "home.column_settings.show_replies": "Antworten anzeigen",
@ -161,33 +161,33 @@
"intervals.full.minutes": "{number, plural, one {# Minute} other {# Minuten}}", "intervals.full.minutes": "{number, plural, one {# Minute} other {# Minuten}}",
"introduction.federation.action": "Weiter", "introduction.federation.action": "Weiter",
"introduction.federation.federated.headline": "Föderiert", "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.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.headline": "Lokal",
"introduction.federation.local.text": "Öffentliche Beiträge von Leuten auf demselben Server wie du erscheinen in der lokalen Zeitleiste.", "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.action": "Tutorial beenden!",
"introduction.interactions.favourite.headline": "Favorisieren", "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.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.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.action": "Lass uns loslegen!",
"introduction.welcome.headline": "Erste Schritte", "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.back": "zurück navigieren",
"keyboard_shortcuts.blocked": "Liste blockierter Profile öffnen", "keyboard_shortcuts.blocked": "Liste blockierter Profile öffnen",
"keyboard_shortcuts.boost": "teilen", "keyboard_shortcuts.boost": "teilen",
"keyboard_shortcuts.column": "einen Status in einer der Spalten fokussieren", "keyboard_shortcuts.column": "einen Beitrag in einer der Spalten fokussieren",
"keyboard_shortcuts.compose": "fokussiere das Eingabefeld", "keyboard_shortcuts.compose": "fokussiere das Eingabefeld",
"keyboard_shortcuts.description": "Beschreibung", "keyboard_shortcuts.description": "Beschreibung",
"keyboard_shortcuts.direct": "Direct-Message-Spalte öffnen", "keyboard_shortcuts.direct": "Direct-Message-Spalte öffnen",
"keyboard_shortcuts.down": "sich in der Liste hinunter bewegen", "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.favourite": "um zu favorisieren",
"keyboard_shortcuts.favourites": "Favoriten-Liste öffnen", "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.heading": "Tastenkombinationen",
"keyboard_shortcuts.home": "Startseite öffnen", "keyboard_shortcuts.home": "Startseite öffnen",
"keyboard_shortcuts.hotkey": "Tastenkürzel", "keyboard_shortcuts.hotkey": "Tastenkürzel",
@ -200,12 +200,12 @@
"keyboard_shortcuts.pinned": "Liste angehefteter Beiträge öffnen", "keyboard_shortcuts.pinned": "Liste angehefteter Beiträge öffnen",
"keyboard_shortcuts.profile": "Profil des Autors öffnen", "keyboard_shortcuts.profile": "Profil des Autors öffnen",
"keyboard_shortcuts.reply": "antworten", "keyboard_shortcuts.reply": "antworten",
"keyboard_shortcuts.requests": "Liste der Folge-Anfragen öffnen", "keyboard_shortcuts.requests": "Liste der Folge-Anfragen öffnen",
"keyboard_shortcuts.search": "Suche fokussieren", "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_hidden": "Text hinter einer Inhaltswarnung verstecken/anzeigen",
"keyboard_shortcuts.toggle_sensitivity": "Medien 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.unfocus": "Textfeld/die Suche nicht mehr fokussieren",
"keyboard_shortcuts.up": "sich in der Liste hinauf bewegen", "keyboard_shortcuts.up": "sich in der Liste hinauf bewegen",
"lightbox.close": "Schließen", "lightbox.close": "Schließen",
@ -237,7 +237,7 @@
"navigation_bar.favourites": "Favoriten", "navigation_bar.favourites": "Favoriten",
"navigation_bar.filters": "Stummgeschaltene Wörter", "navigation_bar.filters": "Stummgeschaltene Wörter",
"navigation_bar.follow_requests": "Folgeanfragen", "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.info": "Über diesen Server",
"navigation_bar.keyboard_shortcuts": "Tastenkombinationen", "navigation_bar.keyboard_shortcuts": "Tastenkombinationen",
"navigation_bar.lists": "Listen", "navigation_bar.lists": "Listen",
@ -261,17 +261,17 @@
"notifications.column_settings.filter_bar.advanced": "Zeige alle Kategorien an", "notifications.column_settings.filter_bar.advanced": "Zeige alle Kategorien an",
"notifications.column_settings.filter_bar.category": "Schnellfilterleiste", "notifications.column_settings.filter_bar.category": "Schnellfilterleiste",
"notifications.column_settings.filter_bar.show": "Anzeigen", "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.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.push": "Push-Benachrichtigungen",
"notifications.column_settings.reblog": "Geteilte Beiträge:", "notifications.column_settings.reblog": "Geteilte Beiträge:",
"notifications.column_settings.show": "In der Spalte anzeigen", "notifications.column_settings.show": "In der Spalte anzeigen",
"notifications.column_settings.sound": "Ton abspielen", "notifications.column_settings.sound": "Ton abspielen",
"notifications.filter.all": "Alle", "notifications.filter.all": "Alle",
"notifications.filter.boosts": "Erneut geteilte Beiträge", "notifications.filter.boosts": "Geteilte Beiträge",
"notifications.filter.favourites": "Favoriten", "notifications.filter.favourites": "Favorisierungen",
"notifications.filter.follows": "Folgende", "notifications.filter.follows": "Folger_innen",
"notifications.filter.mentions": "Erwähnungen", "notifications.filter.mentions": "Erwähnungen",
"notifications.filter.polls": "Ergebnisse der Umfrage", "notifications.filter.polls": "Ergebnisse der Umfrage",
"notifications.group": "{count} Benachrichtigungen", "notifications.group": "{count} Benachrichtigungen",
@ -282,16 +282,16 @@
"poll_button.add_poll": "Eine Umfrage erstellen", "poll_button.add_poll": "Eine Umfrage erstellen",
"poll_button.remove_poll": "Umfrage entfernen", "poll_button.remove_poll": "Umfrage entfernen",
"privacy.change": "Sichtbarkeit des Beitrags anpassen", "privacy.change": "Sichtbarkeit des Beitrags anpassen",
"privacy.direct.long": "Beitrag nur an erwähnte Profile", "privacy.direct.long": "Wird an erwähnte Profile gesendet",
"privacy.direct.short": "Direkt", "privacy.direct.short": "Direktnachricht",
"privacy.private.long": "Beitrag nur an Folgende", "privacy.private.long": "Wird nur für deine Folger_innen sichtbar sein",
"privacy.private.short": "Nur Folgende", "privacy.private.short": "Nur für Folger_innen",
"privacy.public.long": "Beitrag an öffentliche Zeitleisten", "privacy.public.long": "Wird in öffentlichen Zeitleisten erscheinen",
"privacy.public.short": "Öffentlich", "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", "privacy.unlisted.short": "Nicht gelistet",
"regeneration_indicator.label": "Laden…", "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.days": "{number}d",
"relative_time.hours": "{number}h", "relative_time.hours": "{number}h",
"relative_time.just_now": "jetzt", "relative_time.just_now": "jetzt",
@ -306,21 +306,21 @@
"report.target": "{target} melden", "report.target": "{target} melden",
"search.placeholder": "Suche", "search.placeholder": "Suche",
"search_popout.search_format": "Fortgeschrittenes Suchformat", "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.hashtag": "Hashtag",
"search_popout.tips.status": "Beitrag", "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_popout.tips.user": "Nutzer",
"search_results.accounts": "Personen", "search_results.accounts": "Personen",
"search_results.hashtags": "Hashtags", "search_results.hashtags": "Hashtags",
"search_results.statuses": "Beiträge", "search_results.statuses": "Beiträge",
"search_results.total": "{count, number} {count, plural, one {Ergebnis} other {Ergebnisse}}", "search_results.total": "{count, number} {count, plural, one {Ergebnis} other {Ergebnisse}}",
"status.admin_account": "Öffne Moderationsoberfläche für @{name}", "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.block": "Blockiere @{name}",
"status.cancel_reblog_private": "Nicht mehr teilen", "status.cancel_reblog_private": "Nicht mehr teilen",
"status.cannot_reblog": "Dieser Beitrag kann nicht geteilt werden", "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.delete": "Löschen",
"status.detailed_status": "Detaillierte Ansicht der Konversation", "status.detailed_status": "Detaillierte Ansicht der Konversation",
"status.direct": "Direktnachricht @{name}", "status.direct": "Direktnachricht @{name}",
@ -332,39 +332,39 @@
"status.mention": "@{name} erwähnen", "status.mention": "@{name} erwähnen",
"status.more": "Mehr", "status.more": "Mehr",
"status.mute": "@{name} stummschalten", "status.mute": "@{name} stummschalten",
"status.mute_conversation": "Thread stummschalten", "status.mute_conversation": "Konversation stummschalten",
"status.open": "Diesen Beitrag öffnen", "status.open": "Diesen Beitrag öffnen",
"status.pin": "Im Profil anheften", "status.pin": "Im Profil anheften",
"status.pinned": "Angehefteter Beitrag", "status.pinned": "Angehefteter Beitrag",
"status.read_more": "Mehr lesen", "status.read_more": "Mehr lesen",
"status.reblog": "Teilen", "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.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.redraft": "Löschen und neu erstellen",
"status.reply": "Antworten", "status.reply": "Antworten",
"status.replyAll": "Auf Thread antworten", "status.replyAll": "Allen antworten",
"status.report": "@{name} melden", "status.report": "@{name} melden",
"status.sensitive_warning": "Heikle Inhalte", "status.sensitive_warning": "Heikle Inhalte",
"status.share": "Teilen", "status.share": "Teilen",
"status.show_less": "Weniger anzeigen", "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": "Mehr anzeigen",
"status.show_more_all": "Zeige mehr für alles", "status.show_more_all": "Alle Inhaltswarnungen aufklappen",
"status.show_thread": "Zeige Thread", "status.show_thread": "Zeige Konversation",
"status.unmute_conversation": "Stummschaltung von Thread aufheben", "status.unmute_conversation": "Stummschaltung von Konversation aufheben",
"status.unpin": "Vom Profil lösen", "status.unpin": "Vom Profil lösen",
"suggestions.dismiss": "Hinweis ausblenden", "suggestions.dismiss": "Empfehlung ausblenden",
"suggestions.header": "Du bist vielleicht interessiert in…", "suggestions.header": "Du bist vielleicht interessiert an…",
"tabs_bar.federated_timeline": "Föderation", "tabs_bar.federated_timeline": "Föderation",
"tabs_bar.home": "Startseite", "tabs_bar.home": "Startseite",
"tabs_bar.local_timeline": "Lokal", "tabs_bar.local_timeline": "Lokal",
"tabs_bar.notifications": "Mitteilungen", "tabs_bar.notifications": "Mitteilungen",
"tabs_bar.search": "Suchen", "tabs_bar.search": "Suche",
"time_remaining.days": "{number, plural, one {# Tag} other {# Tage}} verbleibend", "time_remaining.days": "{number, plural, one {# Tag} other {# Tage}} verbleibend",
"time_remaining.hours": "{number, plural, one {# Stunde} other {# Stunden}} verbleibend", "time_remaining.hours": "{number, plural, one {# Stunde} other {# Stunden}} verbleibend",
"time_remaining.minutes": "{number, plural, one {# Minute} other {# Minuten}} 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", "time_remaining.seconds": "{number, plural, one {# Sekunde} other {# Sekunden}} verbleibend",
"trends.count_by_accounts": "{count} {rawCount, plural, eine {Person} other {Personen}} reden darüber", "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.", "ui.beforeunload": "Dein Entwurf geht verloren, wenn du Mastodon verlässt.",
@ -373,7 +373,7 @@
"upload_error.limit": "Dateiupload-Limit erreicht.", "upload_error.limit": "Dateiupload-Limit erreicht.",
"upload_error.poll": "Dateiuploads sind in Kombination mit Umfragen nicht erlaubt.", "upload_error.poll": "Dateiuploads sind in Kombination mit Umfragen nicht erlaubt.",
"upload_form.description": "Für Menschen mit Sehbehinderung beschreiben", "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_form.undo": "Löschen",
"upload_progress.label": "Wird hochgeladen …", "upload_progress.label": "Wird hochgeladen …",
"video.close": "Video schließen", "video.close": "Video schließen",

View File

@ -1,5 +1,5 @@
{ {
"account.add_or_remove_from_list": "Προσθήκη ή αφαίρεση από λίστες", "account.add_or_remove_from_list": "Προσθήκη ή Αφαίρεση από λίστες",
"account.badges.bot": "Μποτ", "account.badges.bot": "Μποτ",
"account.block": "Απόκλεισε τον/την @{name}", "account.block": "Απόκλεισε τον/την @{name}",
"account.block_domain": "Απόκρυψε τα πάντα από το {domain}", "account.block_domain": "Απόκρυψε τα πάντα από το {domain}",
@ -15,21 +15,21 @@
"account.follows.empty": "Αυτός ο χρήστης δεν ακολουθεί κανέναν ακόμα.", "account.follows.empty": "Αυτός ο χρήστης δεν ακολουθεί κανέναν ακόμα.",
"account.follows_you": "Σε ακολουθεί", "account.follows_you": "Σε ακολουθεί",
"account.hide_reblogs": "Απόκρυψη προωθήσεων από @{name}", "account.hide_reblogs": "Απόκρυψη προωθήσεων από @{name}",
"account.link_verified_on": "Η ιδιοκτησία αυτού του συνδέσμου εκλέχθηκε την {date}", "account.link_verified_on": "Η ιδιοκτησία αυτού του συνδέσμου ελέχθηκε την {date}",
"account.locked_info": "Η κατάσταση απορρήτου αυτού του λογαριασμού είναι κλειδωμένη. Ο ιδιοκτήτης επιβεβαιώνει χειροκίνητα ποιος μπορεί να τον ακολουθήσει.", "account.locked_info": "Η κατάσταση απορρήτου αυτού του λογαριασμού είναι κλειδωμένη. Ο ιδιοκτήτης επιβεβαιώνει χειροκίνητα ποιος μπορεί να τον ακολουθήσει.",
"account.media": "Πολυμέσα", "account.media": "Πολυμέσα",
"account.mention": "Ανάφερε @{name}", "account.mention": "Ανάφερε @{name}",
"account.moved_to": "{name} μεταφέρθηκε στο:", "account.moved_to": "{name} μεταφέρθηκε στο:",
"account.mute": "Σώπασε τον/την @{name}", "account.mute": "Σώπασε @{name}",
"account.mute_notifications": "Σώπασε τις ειδοποιήσεις από τον/την @{name}", "account.mute_notifications": "Σώπασε τις ειδοποιήσεις από @{name}",
"account.muted": "Αποσιωπημένος/η", "account.muted": "Αποσιωπημένος/η",
"account.posts": "Τουτ", "account.posts": "Τουτ",
"account.posts_with_replies": "Τουτ και απαντήσεις", "account.posts_with_replies": "Τουτ και απαντήσεις",
"account.report": "Κατάγγειλε τον/την @{name}", "account.report": "Κατάγγειλε @{name}",
"account.requested": "Εκκρεμεί έγκριση. Κάνε κλικ για να ακυρώσεις το αίτημα παρακολούθησης", "account.requested": "Εκκρεμεί έγκριση. Κάνε κλικ για να ακυρώσεις το αίτημα παρακολούθησης",
"account.share": "Μοιράσου το προφίλ του/της @{name}", "account.share": "Μοιράσου το προφίλ του/της @{name}",
"account.show_reblogs": "Δείξε τις προωθήσεις του/της @{name}", "account.show_reblogs": "Δείξε τις προωθήσεις του/της @{name}",
"account.unblock": "Ξεμπλόκαρε τον/την @{name}", "account.unblock": "Ξεμπλόκαρε @{name}",
"account.unblock_domain": "Αποκάλυψε το {domain}", "account.unblock_domain": "Αποκάλυψε το {domain}",
"account.unendorse": "Άνευ προβολής στο προφίλ", "account.unendorse": "Άνευ προβολής στο προφίλ",
"account.unfollow": "Διακοπή παρακολούθησης", "account.unfollow": "Διακοπή παρακολούθησης",
@ -77,16 +77,16 @@
"compose_form.poll.remove_option": "Αφαίρεση επιλογής", "compose_form.poll.remove_option": "Αφαίρεση επιλογής",
"compose_form.publish": "Τουτ", "compose_form.publish": "Τουτ",
"compose_form.publish_loud": "{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.marked": "Το πολυμέσο έχει σημειωθεί ως ευαίσθητο",
"compose_form.sensitive.unmarked": "Το πολυμέσο δεν έχει σημειωθεί ως ευαίσθητο", "compose_form.sensitive.unmarked": "Το πολυμέσο δεν έχει σημειωθεί ως ευαίσθητο",
"compose_form.spoiler.marked": "Κείμενο κρυμμένο πίσω από προειδοποίηση", "compose_form.spoiler.marked": "Κείμενο κρυμμένο πίσω από προειδοποίηση",
"compose_form.spoiler.unmarked": "Μη κρυμμένο κείμενο", "compose_form.spoiler.unmarked": "Μη κρυμμένο κείμενο",
"compose_form.spoiler_placeholder": "Γράψε την προειδοποίησή σου εδώ", "compose_form.spoiler_placeholder": "Γράψε την προειδοποίησή σου εδώ",
"confirmation_modal.cancel": "Άκυρο", "confirmation_modal.cancel": "Άκυρο",
"confirmations.block.block_and_report": "Block & Report", "confirmations.block.block_and_report": "Αποκλεισμός & Καταγγελία",
"confirmations.block.confirm": "Απόκλεισε", "confirmations.block.confirm": "Απόκλεισε",
"confirmations.block.message": "Σίγουρα θες να αποκλείσεις τον/την {name};", "confirmations.block.message": "Σίγουρα θες να αποκλείσεις {name};",
"confirmations.delete.confirm": "Διέγραψε", "confirmations.delete.confirm": "Διέγραψε",
"confirmations.delete.message": "Σίγουρα θες να διαγράψεις αυτή την κατάσταση;", "confirmations.delete.message": "Σίγουρα θες να διαγράψεις αυτή την κατάσταση;",
"confirmations.delete_list.confirm": "Διέγραψε", "confirmations.delete_list.confirm": "Διέγραψε",
@ -94,7 +94,7 @@
"confirmations.domain_block.confirm": "Απόκρυψη ολόκληρου του τομέα", "confirmations.domain_block.confirm": "Απόκρυψη ολόκληρου του τομέα",
"confirmations.domain_block.message": "Σίγουρα θες να μπλοκάρεις ολόκληρο το {domain}; Συνήθως μερικά εστιασμένα μπλοκ ή αποσιωπήσεις επαρκούν και προτιμούνται. Δεν θα βλέπεις περιεχόμενο από αυτό τον κόμβο σε καμία δημόσια ροή, ούτε στις ειδοποιήσεις σου. Όσους ακόλουθους έχεις αυτό αυτό τον κόμβο θα αφαιρεθούν.", "confirmations.domain_block.message": "Σίγουρα θες να μπλοκάρεις ολόκληρο το {domain}; Συνήθως μερικά εστιασμένα μπλοκ ή αποσιωπήσεις επαρκούν και προτιμούνται. Δεν θα βλέπεις περιεχόμενο από αυτό τον κόμβο σε καμία δημόσια ροή, ούτε στις ειδοποιήσεις σου. Όσους ακόλουθους έχεις αυτό αυτό τον κόμβο θα αφαιρεθούν.",
"confirmations.mute.confirm": "Αποσιώπηση", "confirmations.mute.confirm": "Αποσιώπηση",
"confirmations.mute.message": "Σίγουρα θες να αποσιωπήσεις τον/την {name};", "confirmations.mute.message": "Σίγουρα θες να αποσιωπήσεις {name};",
"confirmations.redraft.confirm": "Διαγραφή & ξαναγράψιμο", "confirmations.redraft.confirm": "Διαγραφή & ξαναγράψιμο",
"confirmations.redraft.message": "Σίγουρα θέλεις να σβήσεις αυτή την κατάσταση και να την ξαναγράψεις; Οι αναφορές και τα αγαπημένα της θα χαθούν ενώ οι απαντήσεις προς αυτή θα μείνουν ορφανές.", "confirmations.redraft.message": "Σίγουρα θέλεις να σβήσεις αυτή την κατάσταση και να την ξαναγράψεις; Οι αναφορές και τα αγαπημένα της θα χαθούν ενώ οι απαντήσεις προς αυτή θα μείνουν ορφανές.",
"confirmations.reply.confirm": "Απάντησε", "confirmations.reply.confirm": "Απάντησε",
@ -204,14 +204,14 @@
"keyboard_shortcuts.search": "εστίαση αναζήτησης", "keyboard_shortcuts.search": "εστίαση αναζήτησης",
"keyboard_shortcuts.start": "άνοιγμα κολώνας \"Ξεκινώντας\"", "keyboard_shortcuts.start": "άνοιγμα κολώνας \"Ξεκινώντας\"",
"keyboard_shortcuts.toggle_hidden": "εμφάνιση/απόκρυψη κειμένου πίσω από την προειδοποίηση", "keyboard_shortcuts.toggle_hidden": "εμφάνιση/απόκρυψη κειμένου πίσω από την προειδοποίηση",
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media", "keyboard_shortcuts.toggle_sensitivity": "εμφάνιση/απόκρυψη πολυμέσων",
"keyboard_shortcuts.toot": "δημιουργία νέου τουτ", "keyboard_shortcuts.toot": "δημιουργία νέου τουτ",
"keyboard_shortcuts.unfocus": "απο-εστίαση του πεδίου σύνθεσης/αναζήτησης", "keyboard_shortcuts.unfocus": "απο-εστίαση του πεδίου σύνθεσης/αναζήτησης",
"keyboard_shortcuts.up": "κίνηση προς την κορυφή της λίστας", "keyboard_shortcuts.up": "κίνηση προς την κορυφή της λίστας",
"lightbox.close": "Κλείσιμο", "lightbox.close": "Κλείσιμο",
"lightbox.next": "Επόμενο", "lightbox.next": "Επόμενο",
"lightbox.previous": "Προηγούμενο", "lightbox.previous": "Προηγούμενο",
"lightbox.view_context": "View context", "lightbox.view_context": "Εμφάνιση πλαισίου",
"lists.account.add": "Πρόσθεσε στη λίστα", "lists.account.add": "Πρόσθεσε στη λίστα",
"lists.account.remove": "Βγάλε από τη λίστα", "lists.account.remove": "Βγάλε από τη λίστα",
"lists.delete": "Διαγραφή λίστας", "lists.delete": "Διαγραφή λίστας",
@ -237,7 +237,7 @@
"navigation_bar.favourites": "Αγαπημένα", "navigation_bar.favourites": "Αγαπημένα",
"navigation_bar.filters": "Αποσιωπημένες λέξεις", "navigation_bar.filters": "Αποσιωπημένες λέξεις",
"navigation_bar.follow_requests": "Αιτήματα ακολούθησης", "navigation_bar.follow_requests": "Αιτήματα ακολούθησης",
"navigation_bar.follows_and_followers": "Follows and followers", "navigation_bar.follows_and_followers": "Ακολουθεί και ακολουθείται",
"navigation_bar.info": "Πληροφορίες κόμβου", "navigation_bar.info": "Πληροφορίες κόμβου",
"navigation_bar.keyboard_shortcuts": "Συντομεύσεις", "navigation_bar.keyboard_shortcuts": "Συντομεύσεις",
"navigation_bar.lists": "Λίστες", "navigation_bar.lists": "Λίστες",
@ -246,7 +246,7 @@
"navigation_bar.personal": "Προσωπικά", "navigation_bar.personal": "Προσωπικά",
"navigation_bar.pins": "Καρφιτσωμένα τουτ", "navigation_bar.pins": "Καρφιτσωμένα τουτ",
"navigation_bar.preferences": "Προτιμήσεις", "navigation_bar.preferences": "Προτιμήσεις",
"navigation_bar.profile_directory": "Profile directory", "navigation_bar.profile_directory": "Κατάλογος λογαριασμών",
"navigation_bar.public_timeline": "Ομοσπονδιακή ροή", "navigation_bar.public_timeline": "Ομοσπονδιακή ροή",
"navigation_bar.security": "Ασφάλεια", "navigation_bar.security": "Ασφάλεια",
"notification.favourite": "Ο/Η {name} σημείωσε ως αγαπημένη την κατάστασή σου", "notification.favourite": "Ο/Η {name} σημείωσε ως αγαπημένη την κατάστασή σου",

View File

@ -77,7 +77,7 @@
"compose_form.poll.remove_option": "Forigi ĉi tiu elekton", "compose_form.poll.remove_option": "Forigi ĉi tiu elekton",
"compose_form.publish": "Hup", "compose_form.publish": "Hup",
"compose_form.publish_loud": "{publish}!", "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.marked": "Aŭdovidaĵo markita tikla",
"compose_form.sensitive.unmarked": "Aŭdovidaĵo ne markita tikla", "compose_form.sensitive.unmarked": "Aŭdovidaĵo ne markita tikla",
"compose_form.spoiler.marked": "Teksto kaŝita malantaŭ averto", "compose_form.spoiler.marked": "Teksto kaŝita malantaŭ averto",
@ -118,7 +118,7 @@
"emoji_button.symbols": "Simboloj", "emoji_button.symbols": "Simboloj",
"emoji_button.travel": "Vojaĝoj kaj lokoj", "emoji_button.travel": "Vojaĝoj kaj lokoj",
"empty_column.account_timeline": "Neniu mesaĝo ĉi tie!", "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.blocks": "Vi ankoraŭ ne blokis uzanton.",
"empty_column.community": "La loka tempolinio estas malplena. Skribu ion por plenigi ĝin!", "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.", "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.search": "por fokusigi la serĉilon",
"keyboard_shortcuts.start": "por malfermi la kolumnon «por komenci»", "keyboard_shortcuts.start": "por malfermi la kolumnon «por komenci»",
"keyboard_shortcuts.toggle_hidden": "por montri/kaŝi tekston malantaŭ enhava averto", "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.toot": "por komenci tute novan mesaĝon",
"keyboard_shortcuts.unfocus": "por malfokusigi la tekstujon aŭ la serĉilon", "keyboard_shortcuts.unfocus": "por malfokusigi la tekstujon aŭ la serĉilon",
"keyboard_shortcuts.up": "por iri supren en la listo", "keyboard_shortcuts.up": "por iri supren en la listo",
"lightbox.close": "Fermi", "lightbox.close": "Fermi",
"lightbox.next": "Sekva", "lightbox.next": "Sekva",
"lightbox.previous": "Antaŭa", "lightbox.previous": "Antaŭa",
"lightbox.view_context": "View context", "lightbox.view_context": "Vidi kontekston",
"lists.account.add": "Aldoni al la listo", "lists.account.add": "Aldoni al la listo",
"lists.account.remove": "Forigi de la listo", "lists.account.remove": "Forigi de la listo",
"lists.delete": "Forigi la liston", "lists.delete": "Forigi la liston",
@ -237,7 +237,7 @@
"navigation_bar.favourites": "Stelumoj", "navigation_bar.favourites": "Stelumoj",
"navigation_bar.filters": "Silentigitaj vortoj", "navigation_bar.filters": "Silentigitaj vortoj",
"navigation_bar.follow_requests": "Petoj de sekvado", "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.info": "Pri ĉi tiu servilo",
"navigation_bar.keyboard_shortcuts": "Rapidklavoj", "navigation_bar.keyboard_shortcuts": "Rapidklavoj",
"navigation_bar.lists": "Listoj", "navigation_bar.lists": "Listoj",
@ -246,7 +246,7 @@
"navigation_bar.personal": "Persone", "navigation_bar.personal": "Persone",
"navigation_bar.pins": "Alpinglitaj mesaĝoj", "navigation_bar.pins": "Alpinglitaj mesaĝoj",
"navigation_bar.preferences": "Preferoj", "navigation_bar.preferences": "Preferoj",
"navigation_bar.profile_directory": "Profile directory", "navigation_bar.profile_directory": "Profilujo",
"navigation_bar.public_timeline": "Fratara tempolinio", "navigation_bar.public_timeline": "Fratara tempolinio",
"navigation_bar.security": "Sekureco", "navigation_bar.security": "Sekureco",
"notification.favourite": "{name} stelumis vian mesaĝon", "notification.favourite": "{name} stelumis vian mesaĝon",

View File

@ -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.badges.bot": "Bot",
"account.block": "Bloquear", "account.block": "Bloquear",
"account.block_domain": "Ocultar todo de {domain}", "account.block_domain": "Ocultar todo de {domain}",
@ -15,8 +15,8 @@
"account.follows.empty": "Este usuario todavía no sigue a nadie.", "account.follows.empty": "Este usuario todavía no sigue a nadie.",
"account.follows_you": "Te sigue", "account.follows_you": "Te sigue",
"account.hide_reblogs": "Ocultar retoots de @{name}", "account.hide_reblogs": "Ocultar retoots de @{name}",
"account.link_verified_on": "Ownership of this link was checked on {date}", "account.link_verified_on": "El proprietario de este link fue verificado el {date}",
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.", "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.media": "Media",
"account.mention": "Mencionar a @{name}", "account.mention": "Mencionar a @{name}",
"account.moved_to": "{name} se ha mudado a:", "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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -1,6 +1,6 @@
{ {
"account.add_or_remove_from_list": "Gehitu edo kendu zerrendetatik", "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": "Blokeatu @{name}",
"account.block_domain": "Ezkutatu {domain} domeinuko guztia", "account.block_domain": "Ezkutatu {domain} domeinuko guztia",
"account.blocked": "Blokeatuta", "account.blocked": "Blokeatuta",
@ -17,7 +17,7 @@
"account.hide_reblogs": "Ezkutatu @{name}(r)en bultzadak", "account.hide_reblogs": "Ezkutatu @{name}(r)en bultzadak",
"account.link_verified_on": "Esteka honen jabetzaren egiaztaketa data: {date}", "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.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.mention": "Aipatu @{name}",
"account.moved_to": "{name} hona lekualdatu da:", "account.moved_to": "{name} hona lekualdatu da:",
"account.mute": "Mututu @{name}", "account.mute": "Mututu @{name}",
@ -40,7 +40,7 @@
"boost_modal.combo": "{combo} sakatu dezakezu hurrengoan hau saltatzeko", "boost_modal.combo": "{combo} sakatu dezakezu hurrengoan hau saltatzeko",
"bundle_column_error.body": "Zerbait okerra gertatu da osagai hau kargatzean.", "bundle_column_error.body": "Zerbait okerra gertatu da osagai hau kargatzean.",
"bundle_column_error.retry": "Saiatu berriro", "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.close": "Itxi",
"bundle_modal_error.message": "Zerbait okerra gertatu da osagai hau kargatzean.", "bundle_modal_error.message": "Zerbait okerra gertatu da osagai hau kargatzean.",
"bundle_modal_error.retry": "Saiatu berriro", "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": "Zure kontua ez dago {locked}. Edonork jarraitu zaitzake zure jarraitzaileentzako soilik diren mezuak ikusteko.",
"compose_form.lock_disclaimer.lock": "giltzapetuta", "compose_form.lock_disclaimer.lock": "giltzapetuta",
"compose_form.placeholder": "Zer duzu buruan?", "compose_form.placeholder": "Zer duzu buruan?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Gehitu aukera bat",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Inkestaren iraupena",
"compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.option_placeholder": "{number}. aukera",
"compose_form.poll.remove_option": "Remove this choice", "compose_form.poll.remove_option": "Kendu aukera hau",
"compose_form.publish": "Toot", "compose_form.publish": "Toot",
"compose_form.publish_loud": "{publish}!", "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.marked": "Multimedia edukia hunkigarri gisa markatu da",
"compose_form.sensitive.unmarked": "Multimedia edukia ez da hunkigarri gisa markatu", "compose_form.sensitive.unmarked": "Multimedia edukia ez da hunkigarri gisa markatu",
"compose_form.spoiler.marked": "Testua abisu batek ezkutatzen du", "compose_form.spoiler.marked": "Testua abisu batek ezkutatzen du",
"compose_form.spoiler.unmarked": "Testua ez dago ezkutatuta", "compose_form.spoiler.unmarked": "Testua ez dago ezkutatuta",
"compose_form.spoiler_placeholder": "Idatzi zure abisua hemen", "compose_form.spoiler_placeholder": "Idatzi zure abisua hemen",
"confirmation_modal.cancel": "Utzi", "confirmation_modal.cancel": "Utzi",
"confirmations.block.block_and_report": "Block & Report", "confirmations.block.block_and_report": "Blokeatu eta salatu",
"confirmations.block.confirm": "Block", "confirmations.block.confirm": "Blokeatu",
"confirmations.block.message": "Ziur {name} blokeatu nahi duzula?", "confirmations.block.message": "Ziur {name} blokeatu nahi duzula?",
"confirmations.delete.confirm": "Ezabatu", "confirmations.delete.confirm": "Ezabatu",
"confirmations.delete.message": "Ziur mezu hau ezabatu nahi duzula?", "confirmations.delete.message": "Ziur mezu hau ezabatu nahi duzula?",
@ -118,7 +118,7 @@
"emoji_button.symbols": "Sinboloak", "emoji_button.symbols": "Sinboloak",
"emoji_button.travel": "Bidaiak eta tokiak", "emoji_button.travel": "Bidaiak eta tokiak",
"empty_column.account_timeline": "Ez dago toot-ik hemen!", "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.blocks": "Ez duzu erabiltzailerik blokeatu oraindik.",
"empty_column.community": "Denbora-lerro lokala hutsik dago. Idatzi zerbait publikoki pilota biraka jartzeko!", "empty_column.community": "Denbora-lerro lokala hutsik dago. Idatzi zerbait publikoki pilota biraka jartzeko!",
"empty_column.direct": "Ez duzu mezu zuzenik oraindik. Baten bat bidali edo jasotzen duzunean, hemen agertuko da.", "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.all": "eta {osagarria}",
"hashtag.column_header.tag_mode.any": "edo {osagarria}", "hashtag.column_header.tag_mode.any": "edo {osagarria}",
"hashtag.column_header.tag_mode.none": "gabe {osagarria}", "hashtag.column_header.tag_mode.none": "gabe {osagarria}",
"hashtag.column_settings.select.no_options_message": "No suggestions found", "hashtag.column_settings.select.no_options_message": "Ez da proposamenik aurkitu",
"hashtag.column_settings.select.placeholder": "Enter hashtags…", "hashtag.column_settings.select.placeholder": "Sartu traolak…",
"hashtag.column_settings.tag_mode.all": "Hauetako guztiak", "hashtag.column_settings.tag_mode.all": "Hauetako guztiak",
"hashtag.column_settings.tag_mode.any": "Hautako edozein", "hashtag.column_settings.tag_mode.any": "Hautako edozein",
"hashtag.column_settings.tag_mode.none": "Hauetako bat ere ez", "hashtag.column_settings.tag_mode.none": "Hauetako bat ere ez",
@ -156,15 +156,15 @@
"home.column_settings.basic": "Oinarrizkoa", "home.column_settings.basic": "Oinarrizkoa",
"home.column_settings.show_reblogs": "Erakutsi bultzadak", "home.column_settings.show_reblogs": "Erakutsi bultzadak",
"home.column_settings.show_replies": "Erakutsi erantzunak", "home.column_settings.show_replies": "Erakutsi erantzunak",
"intervals.full.days": "{number, plural, one {# day} other {# days}}", "intervals.full.days": "{number, plural, one {egun #} other {# egun}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}", "intervals.full.hours": "{number, plural, one {ordu #} other {# ordu}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}", "intervals.full.minutes": "{number, plural, one {minutu #} other {# minutu}}",
"introduction.federation.action": "Hurrengoa", "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.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.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.federation.local.text": "Zure zerbitzari berean dauden horien mezu publikoak denbora-lerro lokalean agertuko dira.",
"introduction.interactions.action": "Amaitu tutoriala!", "introduction.interactions.action": "Amaitu tutoriala!",
"introduction.interactions.favourite.headline": "Gogokoa", "introduction.interactions.favourite.headline": "Gogokoa",
@ -181,10 +181,10 @@
"keyboard_shortcuts.boost": "bultzada ematea", "keyboard_shortcuts.boost": "bultzada ematea",
"keyboard_shortcuts.column": "mezu bat zutabe batean fokatzea", "keyboard_shortcuts.column": "mezu bat zutabe batean fokatzea",
"keyboard_shortcuts.compose": "testua konposatzeko arean fokatzea", "keyboard_shortcuts.compose": "testua konposatzeko arean fokatzea",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Deskripzioa",
"keyboard_shortcuts.direct": "mezu zuzenen zutabea irekitzeko", "keyboard_shortcuts.direct": "mezu zuzenen zutabea irekitzeko",
"keyboard_shortcuts.down": "zerrendan behera mugitzea", "keyboard_shortcuts.down": "zerrendan behera mugitzea",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "mezua irekitzeko",
"keyboard_shortcuts.favourite": "gogoko egitea", "keyboard_shortcuts.favourite": "gogoko egitea",
"keyboard_shortcuts.favourites": "gogokoen zerrenda irekitzeko", "keyboard_shortcuts.favourites": "gogokoen zerrenda irekitzeko",
"keyboard_shortcuts.federated": "federatutako denbora-lerroa irekitzeko", "keyboard_shortcuts.federated": "federatutako denbora-lerroa irekitzeko",
@ -204,19 +204,19 @@
"keyboard_shortcuts.search": "bilaketan fokua jartzea", "keyboard_shortcuts.search": "bilaketan fokua jartzea",
"keyboard_shortcuts.start": "\"Menua\" zutabea irekitzeko", "keyboard_shortcuts.start": "\"Menua\" zutabea irekitzeko",
"keyboard_shortcuts.toggle_hidden": "testua erakustea/ezkutatzea abisu baten atzean", "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.toot": "toot berria hastea",
"keyboard_shortcuts.unfocus": "testua konposatzeko area / bilaketatik fokua kentzea", "keyboard_shortcuts.unfocus": "testua konposatzeko area / bilaketatik fokua kentzea",
"keyboard_shortcuts.up": "zerrendan gora mugitzea", "keyboard_shortcuts.up": "zerrendan gora mugitzea",
"lightbox.close": "Itxi", "lightbox.close": "Itxi",
"lightbox.next": "Hurrengoa", "lightbox.next": "Hurrengoa",
"lightbox.previous": "Aurrekoa", "lightbox.previous": "Aurrekoa",
"lightbox.view_context": "View context", "lightbox.view_context": "Ikusi testuingurua",
"lists.account.add": "Gehitu zerrendara", "lists.account.add": "Gehitu zerrendara",
"lists.account.remove": "Kendu zerrendatik", "lists.account.remove": "Kendu zerrendatik",
"lists.delete": "Ezabatu zerrenda", "lists.delete": "Ezabatu zerrenda",
"lists.edit": "Editatu zerrenda", "lists.edit": "Editatu zerrenda",
"lists.edit.submit": "Change title", "lists.edit.submit": "Aldatu izenburua",
"lists.new.create": "Gehitu zerrenda", "lists.new.create": "Gehitu zerrenda",
"lists.new.title_placeholder": "Zerrenda berriaren izena", "lists.new.title_placeholder": "Zerrenda berriaren izena",
"lists.search": "Bilatu jarraitzen dituzun pertsonen artean", "lists.search": "Bilatu jarraitzen dituzun pertsonen artean",
@ -237,22 +237,22 @@
"navigation_bar.favourites": "Gogokoak", "navigation_bar.favourites": "Gogokoak",
"navigation_bar.filters": "Mutututako hitzak", "navigation_bar.filters": "Mutututako hitzak",
"navigation_bar.follow_requests": "Jarraitzeko eskariak", "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.info": "Zerbitzari honi buruz",
"navigation_bar.keyboard_shortcuts": "Laster-teklak", "navigation_bar.keyboard_shortcuts": "Laster-teklak",
"navigation_bar.lists": "Zerrendak", "navigation_bar.lists": "Zerrendak",
"navigation_bar.logout": "Amaitu saioa", "navigation_bar.logout": "Amaitu saioa",
"navigation_bar.mutes": "Mutututako erabiltzaileak", "navigation_bar.mutes": "Mutututako erabiltzaileak",
"navigation_bar.personal": "Personal", "navigation_bar.personal": "Pertsonala",
"navigation_bar.pins": "Finkatutako toot-ak", "navigation_bar.pins": "Finkatutako toot-ak",
"navigation_bar.preferences": "Hobespenak", "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.public_timeline": "Federatutako denbora-lerroa",
"navigation_bar.security": "Segurtasuna", "navigation_bar.security": "Segurtasuna",
"notification.favourite": "{name}(e)k zure mezua gogoko du", "notification.favourite": "{name}(e)k zure mezua gogoko du",
"notification.follow": "{name}(e)k jarraitzen zaitu", "notification.follow": "{name}(e)k jarraitzen zaitu",
"notification.mention": "{name}(e)k aipatu 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", "notification.reblog": "{name}(e)k bultzada eman dio zure mezuari",
"notifications.clear": "Garbitu jakinarazpenak", "notifications.clear": "Garbitu jakinarazpenak",
"notifications.clear_confirmation": "Ziur zure jakinarazpen guztiak behin betirako garbitu nahi dituzula?", "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.filter_bar.show": "Erakutsi",
"notifications.column_settings.follow": "Jarraitzaile berriak:", "notifications.column_settings.follow": "Jarraitzaile berriak:",
"notifications.column_settings.mention": "Aipamenak:", "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.push": "Push jakinarazpenak",
"notifications.column_settings.reblog": "Bultzadak:", "notifications.column_settings.reblog": "Bultzadak:",
"notifications.column_settings.show": "Erakutsi zutabean", "notifications.column_settings.show": "Erakutsi zutabean",
@ -273,14 +273,14 @@
"notifications.filter.favourites": "Gogokoak", "notifications.filter.favourites": "Gogokoak",
"notifications.filter.follows": "Jarraipenak", "notifications.filter.follows": "Jarraipenak",
"notifications.filter.mentions": "Aipamenak", "notifications.filter.mentions": "Aipamenak",
"notifications.filter.polls": "Poll results", "notifications.filter.polls": "Inkestaren emaitza",
"notifications.group": "{count} jakinarazpen", "notifications.group": "{count} jakinarazpen",
"poll.closed": "Closed", "poll.closed": "Itxita",
"poll.refresh": "Refresh", "poll.refresh": "Berritu",
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}", "poll.total_votes": "{count, plural, one {boto #} other {# boto}}",
"poll.vote": "Vote", "poll.vote": "Bozkatu",
"poll_button.add_poll": "Add a poll", "poll_button.add_poll": "Gehitu inkesta bat",
"poll_button.remove_poll": "Remove poll", "poll_button.remove_poll": "Kendu inkesta",
"privacy.change": "Doitu mezuaren pribatutasuna", "privacy.change": "Doitu mezuaren pribatutasuna",
"privacy.direct.long": "Bidali aipatutako erabiltzaileei besterik ez", "privacy.direct.long": "Bidali aipatutako erabiltzaileei besterik ez",
"privacy.direct.short": "Zuzena", "privacy.direct.short": "Zuzena",
@ -302,22 +302,22 @@
"report.forward_hint": "Kontu hau beste zerbitzari batekoa da. Bidali txostenaren kopia anonimo hara ere?", "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.hint": "Txostena zure zerbitzariaren moderatzaileei bidaliko zaie. Kontu hau zergatik salatzen duzun behean azaldu dezakezu:",
"report.placeholder": "Iruzkin gehigarriak", "report.placeholder": "Iruzkin gehigarriak",
"report.submit": "Submit", "report.submit": "Bidali",
"report.target": "{target} salatzen", "report.target": "{target} salatzen",
"search.placeholder": "Bilatu", "search.placeholder": "Bilatu",
"search_popout.search_format": "Bilaketa aurreratuaren formatua", "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.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.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.text": "Testu hutsak pantaila-izenak, erabiltzaile-izenak eta traolak bilatzen ditu",
"search_popout.tips.user": "erabiltzailea", "search_popout.tips.user": "erabiltzailea",
"search_results.accounts": "Jendea", "search_results.accounts": "Jendea",
"search_results.hashtags": "Traolak", "search_results.hashtags": "Traolak",
"search_results.statuses": "Toot-ak", "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_account": "Ireki @{name} erabiltzailearen moderazio interfazea",
"status.admin_status": "Ireki mezu hau moderazio interfazean", "status.admin_status": "Ireki mezu hau moderazio interfazean",
"status.block": "Block @{name}", "status.block": "Blokeatu @{name}",
"status.cancel_reblog_private": "Kendu bultzada", "status.cancel_reblog_private": "Kendu bultzada",
"status.cannot_reblog": "Mezu honi ezin zaio bultzada eman", "status.cannot_reblog": "Mezu honi ezin zaio bultzada eman",
"status.copy": "Kopiatu mezuaren esteka", "status.copy": "Kopiatu mezuaren esteka",
@ -361,17 +361,17 @@
"tabs_bar.local_timeline": "Lokala", "tabs_bar.local_timeline": "Lokala",
"tabs_bar.notifications": "Jakinarazpenak", "tabs_bar.notifications": "Jakinarazpenak",
"tabs_bar.search": "Bilatu", "tabs_bar.search": "Bilatu",
"time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.days": "{number, plural, one {egun #} other {# egun}} amaitzeko",
"time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", "time_remaining.hours": "{number, plural, one {ordu #} other {# ordu}} amaitzeko",
"time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.minutes": "{number, plural, one {minutu #} other {# minutu}} amaitzeko",
"time_remaining.moments": "Moments remaining", "time_remaining.moments": "Amaitzekotan",
"time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", "time_remaining.seconds": "{number, plural, one {segundo #} other {# segundo}} amaitzeko",
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} hitz egiten", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} hitz egiten",
"ui.beforeunload": "Zure zirriborroa galduko da Mastodon uzten baduzu.", "ui.beforeunload": "Zure zirriborroa galduko da Mastodon uzten baduzu.",
"upload_area.title": "Arrastatu eta jaregin igotzeko", "upload_area.title": "Arrastatu eta jaregin igotzeko",
"upload_button.label": "Gehitu multimedia (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_button.label": "Gehitu multimedia (JPEG, PNG, GIF, WebM, MP4, MOV)",
"upload_error.limit": "Fitxategi igoera muga gaindituta.", "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.description": "Deskribatu ikusmen arazoak dituztenentzat",
"upload_form.focus": "Aldatu aurrebista", "upload_form.focus": "Aldatu aurrebista",
"upload_form.undo": "Ezabatu", "upload_form.undo": "Ezabatu",
@ -379,10 +379,10 @@
"video.close": "Itxi bideoa", "video.close": "Itxi bideoa",
"video.exit_fullscreen": "Irten pantaila osotik", "video.exit_fullscreen": "Irten pantaila osotik",
"video.expand": "Hedatu bideoa", "video.expand": "Hedatu bideoa",
"video.fullscreen": "Full screen", "video.fullscreen": "Pantaila osoa",
"video.hide": "Ezkutatu bideoa", "video.hide": "Ezkutatu bideoa",
"video.mute": "Mututu soinua", "video.mute": "Mututu soinua",
"video.pause": "Pause", "video.pause": "Pausatu",
"video.play": "Jo", "video.play": "Jo",
"video.unmute": "Desmututu soinua" "video.unmute": "Desmututu soinua"
} }

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -1,6 +1,6 @@
{ {
"account.add_or_remove_from_list": "Ajouter ou retirer des listes", "account.add_or_remove_from_list": "Ajouter ou retirer des listes",
"account.badges.bot": "Bot", "account.badges.bot": "Robot",
"account.block": "Bloquer @{name}", "account.block": "Bloquer @{name}",
"account.block_domain": "Tout masquer venant de {domain}", "account.block_domain": "Tout masquer venant de {domain}",
"account.blocked": "Bloqué", "account.blocked": "Bloqué",
@ -84,7 +84,7 @@
"compose_form.spoiler.unmarked": "Le texte nest pas caché", "compose_form.spoiler.unmarked": "Le texte nest pas caché",
"compose_form.spoiler_placeholder": "Écrivez ici votre avertissement", "compose_form.spoiler_placeholder": "Écrivez ici votre avertissement",
"confirmation_modal.cancel": "Annuler", "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.confirm": "Bloquer",
"confirmations.block.message": "Confirmez-vous le blocage de {name}?", "confirmations.block.message": "Confirmez-vous le blocage de {name}?",
"confirmations.delete.confirm": "Supprimer", "confirmations.delete.confirm": "Supprimer",
@ -204,7 +204,7 @@
"keyboard_shortcuts.search": "pour cibler la recherche", "keyboard_shortcuts.search": "pour cibler la recherche",
"keyboard_shortcuts.start": "pour ouvrir la colonne \"pour commencer\"", "keyboard_shortcuts.start": "pour ouvrir la colonne \"pour commencer\"",
"keyboard_shortcuts.toggle_hidden": "pour afficher/cacher un texte derrière CW", "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.toot": "pour démarrer un tout nouveau pouet",
"keyboard_shortcuts.unfocus": "pour quitter la zone de composition/recherche", "keyboard_shortcuts.unfocus": "pour quitter la zone de composition/recherche",
"keyboard_shortcuts.up": "pour remonter dans la liste", "keyboard_shortcuts.up": "pour remonter dans la liste",

View File

@ -13,7 +13,7 @@
"account.followers.empty": "Ninguén está a seguir esta usuaria por agora.", "account.followers.empty": "Ninguén está a seguir esta usuaria por agora.",
"account.follows": "Seguindo", "account.follows": "Seguindo",
"account.follows.empty": "Esta usuaria aínda non segue a ninguén.", "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.hide_reblogs": "Ocultar repeticións de @{name}",
"account.link_verified_on": "A propiedade de esta ligazón foi comprobada en {date}", "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.", "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": "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.lock_disclaimer.lock": "bloqueado",
"compose_form.placeholder": "Qué contas?", "compose_form.placeholder": "Qué contas?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Engadir unha opción",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Duración da sondaxe",
"compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.option_placeholder": "Opción {number}",
"compose_form.poll.remove_option": "Remove this choice", "compose_form.poll.remove_option": "Eliminar esta opción",
"compose_form.publish": "Toot", "compose_form.publish": "Toot",
"compose_form.publish_loud": "{publish}!", "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.marked": "Medios marcados como sensibles",
"compose_form.sensitive.unmarked": "Os medios non están 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.marked": "O texto está agochado tras un aviso",
"compose_form.spoiler.unmarked": "O texto non está agochado", "compose_form.spoiler.unmarked": "O texto non está agochado",
"compose_form.spoiler_placeholder": "Escriba o aviso aquí", "compose_form.spoiler_placeholder": "Escriba o aviso aquí",
"confirmation_modal.cancel": "Cancelar", "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.confirm": "Bloquear",
"confirmations.block.message": "Está segura de querer bloquear a {name}?", "confirmations.block.message": "Está segura de querer bloquear a {name}?",
"confirmations.delete.confirm": "Borrar", "confirmations.delete.confirm": "Borrar",
"confirmations.delete.message": "Está segura de que quere eliminar este estado?", "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.delete_list.message": "Estás seguro de que queres eliminar permanentemente esta lista?",
"confirmations.domain_block.confirm": "Agochar un dominio completo", "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.", "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", "follow_request.reject": "Rexeitar",
"getting_started.developers": "Desenvolvedoras", "getting_started.developers": "Desenvolvedoras",
"getting_started.directory": "Directorio do perfil", "getting_started.directory": "Directorio do perfil",
"getting_started.documentation": "Documentation", "getting_started.documentation": "Documentación",
"getting_started.heading": "Comezando", "getting_started.heading": "Comezando",
"getting_started.invite": "Convide a xente", "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}.", "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.all": "e {additional}",
"hashtag.column_header.tag_mode.any": "ou {additional}", "hashtag.column_header.tag_mode.any": "ou {additional}",
"hashtag.column_header.tag_mode.none": "sen {additional}", "hashtag.column_header.tag_mode.none": "sen {additional}",
"hashtag.column_settings.select.no_options_message": "No suggestions found", "hashtag.column_settings.select.no_options_message": "Non se atopan suxestións",
"hashtag.column_settings.select.placeholder": "Enter hashtags…", "hashtag.column_settings.select.placeholder": "Introducir etiquetas…",
"hashtag.column_settings.tag_mode.all": "Todos estos", "hashtag.column_settings.tag_mode.all": "Todos estos",
"hashtag.column_settings.tag_mode.any": "Calquera de estos", "hashtag.column_settings.tag_mode.any": "Calquera de estos",
"hashtag.column_settings.tag_mode.none": "Ningún 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.basic": "Básico",
"home.column_settings.show_reblogs": "Mostrar repeticións", "home.column_settings.show_reblogs": "Mostrar repeticións",
"home.column_settings.show_replies": "Mostrar respostas", "home.column_settings.show_replies": "Mostrar respostas",
"intervals.full.days": "{number, plural, one {# day} other {# days}}", "intervals.full.days": "{number, plural,one {# día} other {# días}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}", "intervals.full.hours": "{number, plural, one {# hora} other {# horas}}",
"intervals.full.minutes": "{number, plural, one {# minuto} other {# minutos}}", "intervals.full.minutes": "{number, plural, one {# minuto} other {# minutos}}",
"introduction.federation.action": "Seguinte", "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.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.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.headline": "Local",
"introduction.federation.local.text": "Publicacións públicas de xente no seu mesmo servidor aparecerán na liña temporal 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.search": "para centrar a busca",
"keyboard_shortcuts.start": "abrir columna \"comezando\"", "keyboard_shortcuts.start": "abrir columna \"comezando\"",
"keyboard_shortcuts.toggle_hidden": "mostrar/agochar un texto detrás do AC", "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.toot": "escribir un toot novo",
"keyboard_shortcuts.unfocus": "quitar o foco do área de escritura/busca", "keyboard_shortcuts.unfocus": "quitar o foco do área de escritura/busca",
"keyboard_shortcuts.up": "ir hacia arriba na lista", "keyboard_shortcuts.up": "ir hacia arriba na lista",
"lightbox.close": "Fechar", "lightbox.close": "Fechar",
"lightbox.next": "Seguinte", "lightbox.next": "Seguinte",
"lightbox.previous": "Anterior", "lightbox.previous": "Anterior",
"lightbox.view_context": "View context", "lightbox.view_context": "Ver contexto",
"lists.account.add": "Engadir á lista", "lists.account.add": "Engadir á lista",
"lists.account.remove": "Eliminar da lista", "lists.account.remove": "Eliminar da lista",
"lists.delete": "Delete list", "lists.delete": "Eliminar lista",
"lists.edit": "Editar lista", "lists.edit": "Editar lista",
"lists.edit.submit": "Change title", "lists.edit.submit": "Cambiar título",
"lists.new.create": "Engadir lista", "lists.new.create": "Engadir lista",
"lists.new.title_placeholder": "Novo título da lista", "lists.new.title_placeholder": "Novo título da lista",
"lists.search": "Procurar entre a xente que segues", "lists.search": "Procurar entre a xente que segues",
@ -237,7 +237,7 @@
"navigation_bar.favourites": "Favoritas", "navigation_bar.favourites": "Favoritas",
"navigation_bar.filters": "Palabras acaladas", "navigation_bar.filters": "Palabras acaladas",
"navigation_bar.follow_requests": "Peticións de seguimento", "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.info": "Sobre este servidor",
"navigation_bar.keyboard_shortcuts": "Atallos", "navigation_bar.keyboard_shortcuts": "Atallos",
"navigation_bar.lists": "Listas", "navigation_bar.lists": "Listas",
@ -246,7 +246,7 @@
"navigation_bar.personal": "Persoal", "navigation_bar.personal": "Persoal",
"navigation_bar.pins": "Mensaxes fixadas", "navigation_bar.pins": "Mensaxes fixadas",
"navigation_bar.preferences": "Preferencias", "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.public_timeline": "Liña temporal federada",
"navigation_bar.security": "Seguridade", "navigation_bar.security": "Seguridade",
"notification.favourite": "{name} marcou como favorito o seu estado", "notification.favourite": "{name} marcou como favorito o seu estado",
@ -275,12 +275,12 @@
"notifications.filter.mentions": "Mencións", "notifications.filter.mentions": "Mencións",
"notifications.filter.polls": "Resultados da sondaxe", "notifications.filter.polls": "Resultados da sondaxe",
"notifications.group": "{count} notificacións", "notifications.group": "{count} notificacións",
"poll.closed": "Closed", "poll.closed": "Pechado",
"poll.refresh": "Refresh", "poll.refresh": "Actualizar",
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}", "poll.total_votes": "{count, plural, one {# voto} outros {# votos}}",
"poll.vote": "Votar", "poll.vote": "Votar",
"poll_button.add_poll": "Add a poll", "poll_button.add_poll": "Engadir sondaxe",
"poll_button.remove_poll": "Remove poll", "poll_button.remove_poll": "Eliminar sondaxe",
"privacy.change": "Axustar a intimidade do estado", "privacy.change": "Axustar a intimidade do estado",
"privacy.direct.long": "Enviar exclusivamente as usuarias mencionadas", "privacy.direct.long": "Enviar exclusivamente as usuarias mencionadas",
"privacy.direct.short": "Directa", "privacy.direct.short": "Directa",
@ -317,10 +317,10 @@
"search_results.total": "{count, number} {count,plural,one {result} outros {results}}", "search_results.total": "{count, number} {count,plural,one {result} outros {results}}",
"status.admin_account": "Abrir interface de moderación para @{name}", "status.admin_account": "Abrir interface de moderación para @{name}",
"status.admin_status": "Abrir este estado na interface de moderación", "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.cancel_reblog_private": "Non promover",
"status.cannot_reblog": "Esta mensaxe non pode ser promovida", "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.delete": "Eliminar",
"status.detailed_status": "Vista detallada da conversa", "status.detailed_status": "Vista detallada da conversa",
"status.direct": "Mensaxe directa @{name}", "status.direct": "Mensaxe directa @{name}",
@ -361,17 +361,17 @@
"tabs_bar.local_timeline": "Local", "tabs_bar.local_timeline": "Local",
"tabs_bar.notifications": "Notificacións", "tabs_bar.notifications": "Notificacións",
"tabs_bar.search": "Buscar", "tabs_bar.search": "Buscar",
"time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.days": "{number, plural, one {# dia} other {# días}} restantes",
"time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", "time_remaining.hours": "{number, plural, one {# hora} other {# horas}} restantes",
"time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.minutes": "{number, plural, one {# minuto} other {# minutos}} restantes",
"time_remaining.moments": "Moments remaining", "time_remaining.moments": "Está rematando",
"time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", "time_remaining.seconds": "{number, plural, one {# segundo} other {# segundos}} restantes",
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} outras {people}} conversando", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} outras {people}} conversando",
"ui.beforeunload": "O borrador perderase se sae de Mastodon.", "ui.beforeunload": "O borrador perderase se sae de Mastodon.",
"upload_area.title": "Arrastre e solte para subir", "upload_area.title": "Arrastre e solte para subir",
"upload_button.label": "Engadir medios (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_button.label": "Engadir medios (JPEG, PNG, GIF, WebM, MP4, MOV)",
"upload_error.limit": "File upload limit exceeded.", "upload_error.limit": "Excedeu o límite de subida de ficheiros.",
"upload_error.poll": "File upload not allowed with polls.", "upload_error.poll": "Non se poden subir ficheiros nas sondaxes.",
"upload_form.description": "Describa para deficientes visuais", "upload_form.description": "Describa para deficientes visuais",
"upload_form.focus": "Cambiar vista previa", "upload_form.focus": "Cambiar vista previa",
"upload_form.undo": "Eliminar", "upload_form.undo": "Eliminar",

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -250,7 +250,7 @@
"navigation_bar.personal": "個人用", "navigation_bar.personal": "個人用",
"navigation_bar.pins": "固定したトゥート", "navigation_bar.pins": "固定したトゥート",
"navigation_bar.preferences": "ユーザー設定", "navigation_bar.preferences": "ユーザー設定",
"navigation_bar.profile_directory": "Profile directory", "navigation_bar.profile_directory": "ディレクトリ",
"navigation_bar.public_timeline": "連合タイムライン", "navigation_bar.public_timeline": "連合タイムライン",
"navigation_bar.misc": "その他", "navigation_bar.misc": "その他",
"navigation_bar.security": "セキュリティ", "navigation_bar.security": "セキュリティ",

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -77,7 +77,7 @@
"compose_form.poll.remove_option": "이 항목 삭제", "compose_form.poll.remove_option": "이 항목 삭제",
"compose_form.publish": "툿", "compose_form.publish": "툿",
"compose_form.publish_loud": "{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.marked": "미디어가 열람주의로 설정되어 있습니다",
"compose_form.sensitive.unmarked": "미디어가 열람주의로 설정 되어 있지 않습니다", "compose_form.sensitive.unmarked": "미디어가 열람주의로 설정 되어 있지 않습니다",
"compose_form.spoiler.marked": "열람주의가 설정되어 있습니다", "compose_form.spoiler.marked": "열람주의가 설정되어 있습니다",
@ -211,7 +211,7 @@
"lightbox.close": "닫기", "lightbox.close": "닫기",
"lightbox.next": "다음", "lightbox.next": "다음",
"lightbox.previous": "이전", "lightbox.previous": "이전",
"lightbox.view_context": "View context", "lightbox.view_context": "게시물 보기",
"lists.account.add": "리스트에 추가", "lists.account.add": "리스트에 추가",
"lists.account.remove": "리스트에서 제거", "lists.account.remove": "리스트에서 제거",
"lists.delete": "리스트 삭제", "lists.delete": "리스트 삭제",
@ -246,7 +246,7 @@
"navigation_bar.personal": "개인용", "navigation_bar.personal": "개인용",
"navigation_bar.pins": "고정된 툿", "navigation_bar.pins": "고정된 툿",
"navigation_bar.preferences": "사용자 설정", "navigation_bar.preferences": "사용자 설정",
"navigation_bar.profile_directory": "Profile directory", "navigation_bar.profile_directory": "프로필 디렉토리",
"navigation_bar.public_timeline": "연합 타임라인", "navigation_bar.public_timeline": "연합 타임라인",
"navigation_bar.security": "보안", "navigation_bar.security": "보안",
"notification.favourite": "{name}님이 즐겨찾기 했습니다", "notification.favourite": "{name}님이 즐겨찾기 했습니다",

View 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"
}

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -162,14 +162,14 @@
"introduction.federation.action": "Volgende", "introduction.federation.action": "Volgende",
"introduction.federation.federated.headline": "Globaal", "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.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.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.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.action": "Introductie beëindigen!",
"introduction.interactions.favourite.headline": "Favorieten", "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.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.reblog.text": "Je kunt toots van andere mensen met jouw volgers delen door deze te boosten.",
"introduction.interactions.reply.headline": "Reageren", "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.", "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.search": "om het zoekvak te focussen",
"keyboard_shortcuts.start": "om de \"Aan de slag\"-kolom te tonen", "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_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.toot": "om een nieuwe toot te starten",
"keyboard_shortcuts.unfocus": "om het tekst- en zoekvak te ontfocussen", "keyboard_shortcuts.unfocus": "om het tekst- en zoekvak te ontfocussen",
"keyboard_shortcuts.up": "om omhoog te bewegen in de lijst", "keyboard_shortcuts.up": "om omhoog te bewegen in de lijst",
"lightbox.close": "Sluiten", "lightbox.close": "Sluiten",
"lightbox.next": "Volgende", "lightbox.next": "Volgende",
"lightbox.previous": "Vorige", "lightbox.previous": "Vorige",
"lightbox.view_context": "View context", "lightbox.view_context": "Context tonen",
"lists.account.add": "Aan lijst toevoegen", "lists.account.add": "Aan lijst toevoegen",
"lists.account.remove": "Uit lijst verwijderen", "lists.account.remove": "Uit lijst verwijderen",
"lists.delete": "Lijst verwijderen", "lists.delete": "Lijst verwijderen",
@ -237,7 +237,7 @@
"navigation_bar.favourites": "Favorieten", "navigation_bar.favourites": "Favorieten",
"navigation_bar.filters": "Filters", "navigation_bar.filters": "Filters",
"navigation_bar.follow_requests": "Volgverzoeken", "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.info": "Over deze server",
"navigation_bar.keyboard_shortcuts": "Sneltoetsen", "navigation_bar.keyboard_shortcuts": "Sneltoetsen",
"navigation_bar.lists": "Lijsten", "navigation_bar.lists": "Lijsten",
@ -246,7 +246,7 @@
"navigation_bar.personal": "Persoonlijk", "navigation_bar.personal": "Persoonlijk",
"navigation_bar.pins": "Vastgezette toots", "navigation_bar.pins": "Vastgezette toots",
"navigation_bar.preferences": "Instellingen", "navigation_bar.preferences": "Instellingen",
"navigation_bar.profile_directory": "Profile directory", "navigation_bar.profile_directory": "Gebruikersgids",
"navigation_bar.public_timeline": "Globale tijdlijn", "navigation_bar.public_timeline": "Globale tijdlijn",
"navigation_bar.security": "Beveiliging", "navigation_bar.security": "Beveiliging",
"notification.favourite": "{name} voegde jouw toot als favoriet toe", "notification.favourite": "{name} voegde jouw toot als favoriet toe",
@ -293,7 +293,7 @@
"regeneration_indicator.label": "Aan het laden…", "regeneration_indicator.label": "Aan het laden…",
"regeneration_indicator.sublabel": "Jouw tijdlijn wordt aangemaakt!", "regeneration_indicator.sublabel": "Jouw tijdlijn wordt aangemaakt!",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
"relative_time.hours": "{number}h", "relative_time.hours": "{number}u",
"relative_time.just_now": "nu", "relative_time.just_now": "nu",
"relative_time.minutes": "{number}m", "relative_time.minutes": "{number}m",
"relative_time.seconds": "{number}s", "relative_time.seconds": "{number}s",
@ -324,7 +324,7 @@
"status.delete": "Verwijderen", "status.delete": "Verwijderen",
"status.detailed_status": "Uitgebreide gespreksweergave", "status.detailed_status": "Uitgebreide gespreksweergave",
"status.direct": "Directe toot @{name}", "status.direct": "Directe toot @{name}",
"status.embed": "Embed", "status.embed": "Insluiten",
"status.favourite": "Favoriet", "status.favourite": "Favoriet",
"status.filtered": "Gefilterd", "status.filtered": "Gefilterd",
"status.load_more": "Meer laden", "status.load_more": "Meer laden",
@ -337,7 +337,7 @@
"status.pin": "Aan profielpagina vastmaken", "status.pin": "Aan profielpagina vastmaken",
"status.pinned": "Vastgemaakte toot", "status.pinned": "Vastgemaakte toot",
"status.read_more": "Meer lezen", "status.read_more": "Meer lezen",
"status.reblog": "Boost", "status.reblog": "Boosten",
"status.reblog_private": "Boost naar oorspronkelijke ontvangers", "status.reblog_private": "Boost naar oorspronkelijke ontvangers",
"status.reblogged_by": "{name} boostte", "status.reblogged_by": "{name} boostte",
"status.reblogs.empty": "Niemand heeft deze toot nog geboost. Wanneer iemand dit doet, valt dat hier te zien.", "status.reblogs.empty": "Niemand heeft deze toot nog geboost. Wanneer iemand dit doet, valt dat hier te zien.",

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -81,14 +81,14 @@
"compose_form.poll.remove_option": "Usuń tę opcję", "compose_form.poll.remove_option": "Usuń tę opcję",
"compose_form.publish": "Wyślij", "compose_form.publish": "Wyślij",
"compose_form.publish_loud": "{publish}!", "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.marked": "Zawartość multimedia jest oznaczona jako wrażliwa",
"compose_form.sensitive.unmarked": "Zawartość multimedialna nie 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.marked": "Tekst jest ukryty za ostrzeżeniem",
"compose_form.spoiler.unmarked": "Tekst nie jest ukryty", "compose_form.spoiler.unmarked": "Tekst nie jest ukryty",
"compose_form.spoiler_placeholder": "Wprowadź swoje ostrzeżenie o zawartości", "compose_form.spoiler_placeholder": "Wprowadź swoje ostrzeżenie o zawartości",
"confirmation_modal.cancel": "Anuluj", "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.confirm": "Zablokuj",
"confirmations.block.message": "Czy na pewno chcesz zablokować {name}?", "confirmations.block.message": "Czy na pewno chcesz zablokować {name}?",
"confirmations.delete.confirm": "Usuń", "confirmations.delete.confirm": "Usuń",
@ -122,7 +122,7 @@
"emoji_button.symbols": "Symbole", "emoji_button.symbols": "Symbole",
"emoji_button.travel": "Podróże i miejsca", "emoji_button.travel": "Podróże i miejsca",
"empty_column.account_timeline": "Brak wpisów tutaj!", "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.blocks": "Nie zablokowałeś(-aś) jeszcze żadnego użytkownika.",
"empty_column.community": "Lokalna oś czasu jest pusta. Napisz coś publicznie, aby zagaić!", "empty_column.community": "Lokalna oś czasu jest pusta. Napisz coś publicznie, aby zagaić!",
"empty_column.direct": "Nie masz żadnych wiadomości bezpośrednich. Kiedy dostaniesz lub wyślesz jakąś, pojawi się ona tutaj.", "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.search": "aby przejść do pola wyszukiwania",
"keyboard_shortcuts.start": "aby otworzyć kolumnę „Rozpocznij”", "keyboard_shortcuts.start": "aby otworzyć kolumnę „Rozpocznij”",
"keyboard_shortcuts.toggle_hidden": "aby wyświetlić lub ukryć wpis spod CW", "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.toot": "aby utworzyć nowy wpis",
"keyboard_shortcuts.unfocus": "aby opuścić pole wyszukiwania/pisania", "keyboard_shortcuts.unfocus": "aby opuścić pole wyszukiwania/pisania",
"keyboard_shortcuts.up": "aby przejść na górę listy", "keyboard_shortcuts.up": "aby przejść na górę listy",
"lightbox.close": "Zamknij", "lightbox.close": "Zamknij",
"lightbox.next": "Następne", "lightbox.next": "Następne",
"lightbox.previous": "Poprzednie", "lightbox.previous": "Poprzednie",
"lightbox.view_context": "View context", "lightbox.view_context": "Pokaż kontekst",
"lists.account.add": "Dodaj do listy", "lists.account.add": "Dodaj do listy",
"lists.account.remove": "Usunąć z listy", "lists.account.remove": "Usunąć z listy",
"lists.delete": "Usuń listę", "lists.delete": "Usuń listę",
@ -241,7 +241,7 @@
"navigation_bar.favourites": "Ulubione", "navigation_bar.favourites": "Ulubione",
"navigation_bar.filters": "Wyciszone słowa", "navigation_bar.filters": "Wyciszone słowa",
"navigation_bar.follow_requests": "Prośby o śledzenie", "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.info": "Szczegółowe informacje",
"navigation_bar.keyboard_shortcuts": "Skróty klawiszowe", "navigation_bar.keyboard_shortcuts": "Skróty klawiszowe",
"navigation_bar.lists": "Listy", "navigation_bar.lists": "Listy",
@ -251,7 +251,7 @@
"navigation_bar.personal": "Osobiste", "navigation_bar.personal": "Osobiste",
"navigation_bar.pins": "Przypięte wpisy", "navigation_bar.pins": "Przypięte wpisy",
"navigation_bar.preferences": "Preferencje", "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.public_timeline": "Globalna oś czasu",
"navigation_bar.security": "Bezpieczeństwo", "navigation_bar.security": "Bezpieczeństwo",
"notification.favourite": "{name} dodał(a) Twój wpis do ulubionych", "notification.favourite": "{name} dodał(a) Twój wpis do ulubionych",
@ -278,7 +278,7 @@
"notifications.filter.favourites": "Ulubione", "notifications.filter.favourites": "Ulubione",
"notifications.filter.follows": "Śledzenia", "notifications.filter.follows": "Śledzenia",
"notifications.filter.mentions": "Wspomienia", "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ń}}", "notifications.group": "{count, number} {count, plural, one {powiadomienie} few {powiadomienia} many {powiadomień} more {powiadomień}}",
"poll.closed": "Zamknięte", "poll.closed": "Zamknięte",
"poll.refresh": "Odśwież", "poll.refresh": "Odśwież",
@ -312,7 +312,7 @@
"search.placeholder": "Szukaj", "search.placeholder": "Szukaj",
"search_popout.search_format": "Zaawansowane wyszukiwanie", "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.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.status": "wpis",
"search_popout.tips.text": "Proste wyszukiwanie pasujących pseudonimów, nazw użytkowników i hashtagów", "search_popout.tips.text": "Proste wyszukiwanie pasujących pseudonimów, nazw użytkowników i hashtagów",
"search_popout.tips.user": "użytkownik", "search_popout.tips.user": "użytkownik",
@ -376,7 +376,7 @@
"upload_area.title": "Przeciągnij i upuść aby wysłać", "upload_area.title": "Przeciągnij i upuść aby wysłać",
"upload_button.label": "Dodaj zawartość multimedialną (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_button.label": "Dodaj zawartość multimedialną (JPEG, PNG, GIF, WebM, MP4, MOV)",
"upload_error.limit": "Przekroczono limit plików do wysłania.", "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.description": "Wprowadź opis dla niewidomych i niedowidzących",
"upload_form.focus": "Dopasuj podgląd", "upload_form.focus": "Dopasuj podgląd",
"upload_form.undo": "Usuń", "upload_form.undo": "Usuń",

View File

@ -14,7 +14,7 @@
"account.follows": "Подписки", "account.follows": "Подписки",
"account.follows.empty": "Этот пользователь ни на кого не подписан.", "account.follows.empty": "Этот пользователь ни на кого не подписан.",
"account.follows_you": "Подписан(а) на Вас", "account.follows_you": "Подписан(а) на Вас",
"account.hide_reblogs": "Скрыть продвижения от @{name}", "account.hide_reblogs": "Скрыть реблоги от @{name}",
"account.link_verified_on": "Владение этой ссылкой было проверено {date}", "account.link_verified_on": "Владение этой ссылкой было проверено {date}",
"account.locked_info": "Это закрытый аккаунт. Его владелец вручную одобряет подписчиков.", "account.locked_info": "Это закрытый аккаунт. Его владелец вручную одобряет подписчиков.",
"account.media": "Медиа", "account.media": "Медиа",
@ -77,7 +77,7 @@
"compose_form.poll.remove_option": "Удалить этот вариант", "compose_form.poll.remove_option": "Удалить этот вариант",
"compose_form.publish": "Трубить", "compose_form.publish": "Трубить",
"compose_form.publish_loud": "{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.marked": "Медиафайлы не отмечены как чувствительные",
"compose_form.sensitive.unmarked": "Медиафайлы не отмечены как чувствительные", "compose_form.sensitive.unmarked": "Медиафайлы не отмечены как чувствительные",
"compose_form.spoiler.marked": "Текст скрыт за предупреждением", "compose_form.spoiler.marked": "Текст скрыт за предупреждением",
@ -204,14 +204,14 @@
"keyboard_shortcuts.search": "перейти к поиску", "keyboard_shortcuts.search": "перейти к поиску",
"keyboard_shortcuts.start": "перейти к разделу \"добро пожаловать\"", "keyboard_shortcuts.start": "перейти к разделу \"добро пожаловать\"",
"keyboard_shortcuts.toggle_hidden": "показать/скрыть текст за предупреждением", "keyboard_shortcuts.toggle_hidden": "показать/скрыть текст за предупреждением",
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media", "keyboard_shortcuts.toggle_sensitivity": "показать/скрыть медиафайлы",
"keyboard_shortcuts.toot": "начать писать новый пост", "keyboard_shortcuts.toot": "начать писать новый пост",
"keyboard_shortcuts.unfocus": "убрать фокус с поля ввода/поиска", "keyboard_shortcuts.unfocus": "убрать фокус с поля ввода/поиска",
"keyboard_shortcuts.up": "вверх по списку", "keyboard_shortcuts.up": "вверх по списку",
"lightbox.close": "Закрыть", "lightbox.close": "Закрыть",
"lightbox.next": "Далее", "lightbox.next": "Далее",
"lightbox.previous": "Назад", "lightbox.previous": "Назад",
"lightbox.view_context": "View context", "lightbox.view_context": "Контекст",
"lists.account.add": "Добавить в список", "lists.account.add": "Добавить в список",
"lists.account.remove": "Убрать из списка", "lists.account.remove": "Убрать из списка",
"lists.delete": "Удалить список", "lists.delete": "Удалить список",
@ -237,7 +237,7 @@
"navigation_bar.favourites": "Понравившееся", "navigation_bar.favourites": "Понравившееся",
"navigation_bar.filters": "Заглушенные слова", "navigation_bar.filters": "Заглушенные слова",
"navigation_bar.follow_requests": "Запросы на подписку", "navigation_bar.follow_requests": "Запросы на подписку",
"navigation_bar.follows_and_followers": "Follows and followers", "navigation_bar.follows_and_followers": "Подписки и подписчики",
"navigation_bar.info": "Об узле", "navigation_bar.info": "Об узле",
"navigation_bar.keyboard_shortcuts": "Сочетания клавиш", "navigation_bar.keyboard_shortcuts": "Сочетания клавиш",
"navigation_bar.lists": "Списки", "navigation_bar.lists": "Списки",
@ -246,7 +246,7 @@
"navigation_bar.personal": "Личное", "navigation_bar.personal": "Личное",
"navigation_bar.pins": "Закреплённые посты", "navigation_bar.pins": "Закреплённые посты",
"navigation_bar.preferences": "Опции", "navigation_bar.preferences": "Опции",
"navigation_bar.profile_directory": "Profile directory", "navigation_bar.profile_directory": "Каталог профилей",
"navigation_bar.public_timeline": "Глобальная лента", "navigation_bar.public_timeline": "Глобальная лента",
"navigation_bar.security": "Безопасность", "navigation_bar.security": "Безопасность",
"notification.favourite": "{name} понравился Ваш статус", "notification.favourite": "{name} понравился Ваш статус",

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -67,7 +67,7 @@
"community.column_settings.media_only": "Vetëm Media", "community.column_settings.media_only": "Vetëm Media",
"compose_form.direct_message_warning": "Ky mesazh do tu dërgohet përdoruesve të përmendur.", "compose_form.direct_message_warning": "Ky mesazh do tu dërgohet përdoruesve të përmendur.",
"compose_form.direct_message_warning_learn_more": "Mësoni më tepër", "compose_form.direct_message_warning_learn_more": "Mësoni më tepër",
"compose_form.hashtag_warning": "Ky mesazh sdo të paraqitet nën ndonjë hashtag, ngaqë si është caktuar ndonjë. Vetëm mesazhet publike mund të kërkohen sipas hashtagësh.", "compose_form.hashtag_warning": "Ky mesazh sdo të paraqitet nën ndonjë hashtag, ngaqë si është caktuar ndonjë. Vetëm mesazhet publike mund të kërkohen sipas hashtagësh.",
"compose_form.lock_disclaimer": "Llogaria juaj sështë {locked}. Mund ta ndjekë cilido, për të parë postimet tuaja vetëm për ndjekësit.", "compose_form.lock_disclaimer": "Llogaria juaj sështë {locked}. Mund ta ndjekë cilido, për të parë postimet tuaja vetëm për ndjekësit.",
"compose_form.lock_disclaimer.lock": "e bllokuar", "compose_form.lock_disclaimer.lock": "e bllokuar",
"compose_form.placeholder": bluani në mendje?", "compose_form.placeholder": bluani në mendje?",
@ -253,7 +253,7 @@
"notification.follow": "{name} zuri tju ndjekë", "notification.follow": "{name} zuri tju ndjekë",
"notification.mention": "{name} ju ka përmendur", "notification.mention": "{name} ju ka përmendur",
"notification.poll": "A poll you have voted in has ended", "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": "Pastroji njoftimet",
"notifications.clear_confirmation": "Jeni i sigurt se doni të pastrohen përgjithmonë krejt njoftimet tuaja?", "notifications.clear_confirmation": "Jeni i sigurt se doni të pastrohen përgjithmonë krejt njoftimet tuaja?",
"notifications.column_settings.alert": "Njoftime desktopi", "notifications.column_settings.alert": "Njoftime desktopi",
@ -274,7 +274,7 @@
"notifications.filter.follows": "Ndjekje", "notifications.filter.follows": "Ndjekje",
"notifications.filter.mentions": "Përmendje", "notifications.filter.mentions": "Përmendje",
"notifications.filter.polls": "Poll results", "notifications.filter.polls": "Poll results",
"notifications.group": "%(count)s njoftime", "notifications.group": "{count}s njoftime",
"poll.closed": "Closed", "poll.closed": "Closed",
"poll.refresh": "Refresh", "poll.refresh": "Refresh",
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}", "poll.total_votes": "{count, plural, one {# vote} other {# votes}}",

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -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.badges.bot": "Robot",
"account.block": "Blockera @{name}", "account.block": "Blockera @{name}",
"account.block_domain": "Dölj allt från {domain}", "account.block_domain": "Dölj allt från {domain}",
@ -10,7 +10,7 @@
"account.endorse": "Feature on profile", "account.endorse": "Feature on profile",
"account.follow": "Följ", "account.follow": "Följ",
"account.followers": "Följare", "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": "Följer",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "Följer dig", "account.follows_you": "Följer dig",
@ -36,7 +36,7 @@
"account.unmute": "Ta bort tystad @{name}", "account.unmute": "Ta bort tystad @{name}",
"account.unmute_notifications": "Återaktivera notifikationer från @{name}", "account.unmute_notifications": "Återaktivera notifikationer från @{name}",
"alert.unexpected.message": "Ett oväntat fel uppstod.", "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", "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.body": "Något gick fel när du laddade denna komponent.",
"bundle_column_error.retry": "Försök igen", "bundle_column_error.retry": "Försök igen",
@ -151,7 +151,7 @@
"hashtag.column_settings.select.placeholder": "Enter hashtags…", "hashtag.column_settings.select.placeholder": "Enter hashtags…",
"hashtag.column_settings.tag_mode.all": "All of these", "hashtag.column_settings.tag_mode.all": "All of these",
"hashtag.column_settings.tag_mode.any": "Any 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", "hashtag.column_settings.tag_toggle": "Include additional tags in this column",
"home.column_settings.basic": "Grundläggande", "home.column_settings.basic": "Grundläggande",
"home.column_settings.show_reblogs": "Visa knuffar", "home.column_settings.show_reblogs": "Visa knuffar",
@ -159,14 +159,14 @@
"intervals.full.days": "{number, plural, one {# day} other {# days}}", "intervals.full.days": "{number, plural, one {# day} other {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}", "intervals.full.hours": "{number, plural, one {# hour} other {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}", "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.headline": "Federated",
"introduction.federation.federated.text": "Public posts from other servers of the fediverse will appear in the federated timeline.", "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.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": "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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",
@ -216,7 +216,7 @@
"lists.account.remove": "Ta bort från lista", "lists.account.remove": "Ta bort från lista",
"lists.delete": "Radera lista", "lists.delete": "Radera lista",
"lists.edit": "Redigera lista", "lists.edit": "Redigera lista",
"lists.edit.submit": "Change title", "lists.edit.submit": "Ändra titel",
"lists.new.create": "Lägg till lista", "lists.new.create": "Lägg till lista",
"lists.new.title_placeholder": "Ny listrubrik", "lists.new.title_placeholder": "Ny listrubrik",
"lists.search": "Sök bland personer du följer", "lists.search": "Sök bland personer du följer",
@ -226,7 +226,7 @@
"missing_indicator.label": "Hittades inte", "missing_indicator.label": "Hittades inte",
"missing_indicator.sublabel": "Den här resursen kunde inte hittas", "missing_indicator.sublabel": "Den här resursen kunde inte hittas",
"mute_modal.hide_notifications": "Dölj notifikationer från denna användare?", "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.blocks": "Blockerade användare",
"navigation_bar.community_timeline": "Lokal tidslinje", "navigation_bar.community_timeline": "Lokal tidslinje",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "Compose new toot",
@ -270,15 +270,15 @@
"notifications.column_settings.sound": "Spela upp ljud", "notifications.column_settings.sound": "Spela upp ljud",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Boosts", "notifications.filter.boosts": "Boosts",
"notifications.filter.favourites": "Favourites", "notifications.filter.favourites": "Favoriter",
"notifications.filter.follows": "Follows", "notifications.filter.follows": "Follows",
"notifications.filter.mentions": "Mentions", "notifications.filter.mentions": "Mentions",
"notifications.filter.polls": "Poll results", "notifications.filter.polls": "Poll results",
"notifications.group": "{count} aviseringar", "notifications.group": "{count} aviseringar",
"poll.closed": "Closed", "poll.closed": "Closed",
"poll.refresh": "Refresh", "poll.refresh": "Ladda om",
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}", "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.add_poll": "Add a poll",
"poll_button.remove_poll": "Remove poll", "poll_button.remove_poll": "Remove poll",
"privacy.change": "Justera sekretess", "privacy.change": "Justera sekretess",
@ -336,7 +336,7 @@
"status.open": "Utvidga denna status", "status.open": "Utvidga denna status",
"status.pin": "Fäst i profil", "status.pin": "Fäst i profil",
"status.pinned": "Fäst toot", "status.pinned": "Fäst toot",
"status.read_more": "Read more", "status.read_more": "Läs mer",
"status.reblog": "Knuff", "status.reblog": "Knuff",
"status.reblog_private": "Knuffa till de ursprungliga åhörarna", "status.reblog_private": "Knuffa till de ursprungliga åhörarna",
"status.reblogged_by": "{name} knuffade", "status.reblogged_by": "{name} knuffade",
@ -351,7 +351,7 @@
"status.show_less_all": "Visa mindre för alla", "status.show_less_all": "Visa mindre för alla",
"status.show_more": "Visa mer", "status.show_more": "Visa mer",
"status.show_more_all": "Visa mer för alla", "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.unmute_conversation": "Öppna konversation",
"status.unpin": "Ångra fäst i profil", "status.unpin": "Ångra fäst i profil",
"suggestions.dismiss": "Dismiss suggestion", "suggestions.dismiss": "Dismiss suggestion",

View File

@ -1,388 +1,388 @@
{ {
"account.add_or_remove_from_list": "Add or Remove from lists", "account.add_or_remove_from_list": "பட்டியல்களில் இருந்து சேர் அல்லது நீக்குக",
"account.badges.bot": "Bot", "account.badges.bot": "பாட்",
"account.block": "Block @{name}", "account.block": "Block @{name}",
"account.block_domain": "Hide everything from {domain}", "account.block_domain": "எல்லாவற்றையும் மறைக்க {domain}",
"account.blocked": "Blocked", "account.blocked": "தடைமுட்டுகள்",
"account.direct": "Direct message @{name}", "account.direct": "நேரடி செய்தி @{name}",
"account.domain_blocked": "Domain hidden", "account.domain_blocked": "டொமைன் மறைக்கப்பட்டது",
"account.edit_profile": "Edit profile", "account.edit_profile": "சுயவிவரத்தைத் திருத்தவும்",
"account.endorse": "Feature on profile", "account.endorse": "சுயவிவரத்தில் அம்சம்",
"account.follow": "Follow", "account.follow": "பின்பற்று",
"account.followers": "Followers", "account.followers": "பின்பற்றுபவர்கள்",
"account.followers.empty": "No one follows this user yet.", "account.followers.empty": "இதுவரை யாரும் இந்த பயனரைப் பின்தொடரவில்லை.",
"account.follows": "Follows", "account.follows": "பின்பற்று",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "இந்த பயனர் இதுவரை யாரையும் பின்தொடரவில்லை.",
"account.follows_you": "Follows you", "account.follows_you": "நீ பின் தொடர்கிறாய்",
"account.hide_reblogs": "Hide boosts from @{name}", "account.hide_reblogs": "இருந்து ஊக்கியாக மறை @{name}",
"account.link_verified_on": "Ownership of this link was checked on {date}", "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": "Media", "account.media": "Media",
"account.mention": "Mention @{name}", "account.mention": "குறிப்பிடு @{name}",
"account.moved_to": "{name} has moved to:", "account.moved_to": "{name} நகர்த்தப்பட்டது:",
"account.mute": "Mute @{name}", "account.mute": "ஊமையான @{name}",
"account.mute_notifications": "Mute notifications from @{name}", "account.mute_notifications": "அறிவிப்புகளை முடக்கு @{name}",
"account.muted": "Muted", "account.muted": "முடக்கியது",
"account.posts": "Toots", "account.posts": "Toots",
"account.posts_with_replies": "Toots and replies", "account.posts_with_replies": "Toots மற்றும் பதில்கள்",
"account.report": "Report @{name}", "account.report": "Report @{name}",
"account.requested": "Awaiting approval. Click to cancel follow request", "account.requested": "ஒப்புதலுக்காக காத்திருக்கிறது. கோரிக்கையை ரத்துசெய்ய கிளிக் செய்க",
"account.share": "Share @{name}'s profile", "account.share": "பங்கிடு @{name}'s மனித முகத்தின்",
"account.show_reblogs": "Show boosts from @{name}", "account.show_reblogs": "காட்டு boosts இருந்து @{name}",
"account.unblock": "Unblock @{name}", "account.unblock": "விடுவி @{name}",
"account.unblock_domain": "Unhide {domain}", "account.unblock_domain": "காண்பி {domain}",
"account.unendorse": "Don't feature on profile", "account.unendorse": "சுயவிவரத்தில் அம்சம் இல்லை",
"account.unfollow": "Unfollow", "account.unfollow": "பின்தொடராட்",
"account.unmute": "Unmute @{name}", "account.unmute": "தடுப்புநீக்கு @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}", "account.unmute_notifications": "அறிவிப்புகளை அகற்றவும் @{name}",
"alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.message": "எதிர் பாராத பிழை ஏற்பட்டு விட்டது.",
"alert.unexpected.title": "Oops!", "alert.unexpected.title": "அச்சச்சோ!",
"boost_modal.combo": "You can press {combo} to skip this next time", "boost_modal.combo": "நீங்கள் அழுத்தவும் {combo} அடுத்த முறை தவிர்க்கவும்",
"bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.body": "இந்த கூறுகளை ஏற்றும்போது ஏதோ தவறு ஏற்பட்டது.",
"bundle_column_error.retry": "Try again", "bundle_column_error.retry": "மீண்டும் முயற்சி செய்",
"bundle_column_error.title": "Network error", "bundle_column_error.title": "Network error",
"bundle_modal_error.close": "Close", "bundle_modal_error.close": "நெருக்கமாக",
"bundle_modal_error.message": "Something went wrong while loading this component.", "bundle_modal_error.message": "இந்த கூறுகளை ஏற்றும்போது ஏதோ தவறு ஏற்பட்டது.",
"bundle_modal_error.retry": "Try again", "bundle_modal_error.retry": "மீண்டும் முயற்சி செய்",
"column.blocks": "Blocked users", "column.blocks": "தடுக்கப்பட்ட பயனர்கள்",
"column.community": "Local timeline", "column.community": "உள்ளூர் காலக்கெடு",
"column.direct": "Direct messages", "column.direct": "நேரடி செய்திகள்",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "மறைந்த களங்கள்",
"column.favourites": "Favourites", "column.favourites": "விருப்பத்துக்குகந்த",
"column.follow_requests": "Follow requests", "column.follow_requests": "கோரிக்கைகளை பின்பற்றவும்",
"column.home": "Home", "column.home": "Home",
"column.lists": "Lists", "column.lists": "குதிரை வீர்ர்கள்",
"column.mutes": "Muted users", "column.mutes": "முடக்கப்பட்ட பயனர்கள்",
"column.notifications": "Notifications", "column.notifications": "Notifications",
"column.pins": "Pinned toot", "column.pins": "Pinned toot",
"column.public": "Federated timeline", "column.public": "கூட்டாட்சி காலக்கெடு",
"column_back_button.label": "Back", "column_back_button.label": "ஆதரி",
"column_header.hide_settings": "Hide settings", "column_header.hide_settings": "அமைப்புகளை மறை",
"column_header.moveLeft_settings": "Move column to the left", "column_header.moveLeft_settings": "நெடுவரிசையை இடதுபுறமாக நகர்த்தவும்",
"column_header.moveRight_settings": "Move column to the right", "column_header.moveRight_settings": "நெடுவரிசை வலது புறமாக நகர்த்து",
"column_header.pin": "Pin", "column_header.pin": "குண்டூசி",
"column_header.show_settings": "Show settings", "column_header.show_settings": "அமைப்புகளைக் காட்டு",
"column_header.unpin": "Unpin", "column_header.unpin": "பொருத்தப்படாத",
"column_subheading.settings": "Settings", "column_subheading.settings": "அமைப்புகள்",
"community.column_settings.media_only": "Media Only", "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": "This toot will only be sent to all the mentioned users.",
"compose_form.direct_message_warning_learn_more": "Learn more", "compose_form.direct_message_warning_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.hashtag_warning": "இந்த toot பட்டியலிடப்படாதது போல எந்த ஹேஸ்டேக்கின் கீழ் பட்டியலிடப்படாது. ஹேஸ்டேக் மூலம் பொது டோட்டல்கள் மட்டுமே தேட முடியும்.",
"compose_form.lock_disclaimer": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.", "compose_form.lock_disclaimer": "உங்கள் கணக்கு அல்ல {locked}. உங்களுடைய பின்தொடர்பவர் மட்டும் இடுகைகளை யாராவது காணலாம்.",
"compose_form.lock_disclaimer.lock": "locked", "compose_form.lock_disclaimer.lock": "தாழிடு",
"compose_form.placeholder": "What is on your mind?", "compose_form.placeholder": "What is on your mind?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "ஒரு விருப்பத்தைச் சேர்க்கவும்",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "வாக்கெடுப்பு காலம்",
"compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.option_placeholder": "தேர்ந்தெடுப்ப {number}",
"compose_form.poll.remove_option": "Remove this choice", "compose_form.poll.remove_option": "இந்த விருப்பத்தை அகற்றவும்",
"compose_form.publish": "Toot", "compose_form.publish": "Toot",
"compose_form.publish_loud": "{publish}!", "compose_form.publish_loud": "{publish}!",
"compose_form.sensitive.hide": "Mark media as sensitive", "compose_form.sensitive.hide": "Mark media as sensitive",
"compose_form.sensitive.marked": "Media is marked as sensitive", "compose_form.sensitive.marked": "ஊடகம் உணர்திறன் என குறிக்கப்பட்டுள்ளது",
"compose_form.sensitive.unmarked": "Media is not marked as sensitive", "compose_form.sensitive.unmarked": "ஊடகம் உணர்திறன் என குறிக்கப்படவில்லை",
"compose_form.spoiler.marked": "Text is hidden behind warning", "compose_form.spoiler.marked": "எச்சரிக்கை பின்னால் உரை மறைக்கப்பட்டுள்ளது",
"compose_form.spoiler.unmarked": "Text is not hidden", "compose_form.spoiler.unmarked": "உரை மறைக்கப்படவில்லை",
"compose_form.spoiler_placeholder": "Write your warning here", "compose_form.spoiler_placeholder": "இங்கே உங்கள் எச்சரிக்கையை எழுதுங்கள்",
"confirmation_modal.cancel": "Cancel", "confirmation_modal.cancel": "எதிராணை",
"confirmations.block.block_and_report": "Block & Report", "confirmations.block.block_and_report": "Block & Report",
"confirmations.block.confirm": "Block", "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.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.confirm": "Delete",
"confirmations.delete_list.message": "Are you sure you want to permanently delete this list?", "confirmations.delete_list.message": "இந்த பட்டியலில் நிரந்தரமாக நீக்க விரும்புகிறீர்களா?",
"confirmations.domain_block.confirm": "Hide entire domain", "confirmations.domain_block.confirm": "முழு டொமைனை மறை",
"confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain in any public timelines or your notifications. Your followers from that domain will be removed.", "confirmations.domain_block.message": "நீங்கள் உண்மையில், நிச்சயமாக நீங்கள் முழு தடுக்க வேண்டும் நிச்சயமாக {domain}? பெரும்பாலான சந்தர்ப்பங்களில் ஒரு சில இலக்குகள் அல்லது மியூட்கள் போதுமானவை மற்றும் சிறந்தவை. எந்த பொது நேரத்திலும் அல்லது உங்கள் அறிவிப்புகளிலும் அந்தக் களத்திலிருந்து உள்ளடக்கத்தை நீங்கள் பார்க்க மாட்டீர்கள். அந்த களத்தில் இருந்து உங்கள் ஆதரவாளர்கள் அகற்றப்படுவார்கள்.",
"confirmations.mute.confirm": "Mute", "confirmations.mute.confirm": "ஊமையான",
"confirmations.mute.message": "Are you sure you want to mute {name}?", "confirmations.mute.message": "நிச்சயமாக நீங்கள் முடக்க விரும்புகிறீர்களா {name}?",
"confirmations.redraft.confirm": "Delete & redraft", "confirmations.redraft.confirm": "நீக்கு & 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.redraft.message": "நிச்சயமாக இந்த நிலையை நீக்கி, அதை மறுபடியும் உருவாக்க வேண்டுமா? பிடித்தவை மற்றும் ஊக்கங்கள் இழக்கப்படும், மற்றும் அசல் இடுகையில் பதில்கள் அனாதையான இருக்கும்.",
"confirmations.reply.confirm": "Reply", "confirmations.reply.confirm": "பதில்",
"confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?", "confirmations.reply.message": "இப்போது பதில், தற்போது நீங்கள் உருவாக்கும் செய்தி மேலெழுதப்படும். நீங்கள் தொடர விரும்புகிறீர்களா?",
"confirmations.unfollow.confirm": "Unfollow", "confirmations.unfollow.confirm": "பின்தொடராட்",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?", "confirmations.unfollow.message": "நிச்சயமாக நீங்கள் பின்தொடர விரும்புகிறீர்களா {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.", "embed.instructions": "கீழே உள்ள குறியீட்டை நகலெடுப்பதன் மூலம் உங்கள் இணையதளத்தில் இந்த நிலையை உட்பொதிக்கவும்.",
"embed.preview": "Here is what it will look like:", "embed.preview": "இது போன்ற தோற்றத்தை இங்கு காணலாம்:",
"emoji_button.activity": "Activity", "emoji_button.activity": "நடவடிக்கை",
"emoji_button.custom": "Custom", "emoji_button.custom": "வழக்கம்",
"emoji_button.flags": "Flags", "emoji_button.flags": "கொடி",
"emoji_button.food": "Food & Drink", "emoji_button.food": "உணவு மற்றும் பானம்",
"emoji_button.label": "Insert emoji", "emoji_button.label": "Insert emoji",
"emoji_button.nature": "Nature", "emoji_button.nature": "இயற்கை",
"emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻", "emoji_button.not_found": "எமோஜோஸ் இல்லை! (╯°□°)╯︵ ┻━┻",
"emoji_button.objects": "Objects", "emoji_button.objects": "மறுப்ப கூறு",
"emoji_button.people": "People", "emoji_button.people": "People",
"emoji_button.recent": "Frequently used", "emoji_button.recent": "அடிக்கடி பயன்படுத்தப்படும்",
"emoji_button.search": "Search...", "emoji_button.search": "தேடல்...",
"emoji_button.search_results": "Search results", "emoji_button.search_results": "தேடல் முடிவுகள்",
"emoji_button.symbols": "Symbols", "emoji_button.symbols": "Symbols",
"emoji_button.travel": "Travel & Places", "emoji_button.travel": "சுற்றுலா மற்றும் இடங்கள்",
"empty_column.account_timeline": "No toots here!", "empty_column.account_timeline": "இல்லை toots இங்கே!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "சுயவிவரம் கிடைக்கவில்லை",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "இதுவரை எந்த பயனர்களும் தடுக்கவில்லை.",
"empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", "empty_column.community": "உள்ளூர் காலக்கெடு காலியாக உள்ளது. பந்தை உருட்டிக்கொள்வதற்கு பகிரங்கமாக ஒன்றை எழுதுங்கள்!",
"empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.", "empty_column.direct": "உங்களிடம் நேரடியான செய்திகள் எதுவும் இல்லை. நீங்கள் ஒன்றை அனுப்பி அல்லது பெறும் போது, அது இங்கே காண்பிக்கும்.",
"empty_column.domain_blocks": "There are no hidden domains yet.", "empty_column.domain_blocks": "இன்னும் மறைந்த களங்கள் இல்லை.",
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.", "empty_column.favourited_statuses": "இதுவரை உங்களுக்கு பிடித்த டோட்டுகள் இல்லை. உங்களுக்கு பிடித்த ஒரு போது, அது இங்கே காண்பிக்கும்.",
"empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.", "empty_column.favourites": "இதுவரை யாரும் இந்தத் தட்டுக்கு ஆதரவில்லை. யாராவது செய்தால், அவர்கள் இங்கே காண்பார்கள்.",
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.", "empty_column.follow_requests": "உங்களுக்கு இன்னும் எந்தவொரு கோரிக்கைகளும் இல்லை. நீங்கள் ஒன்றைப் பெற்றுக்கொண்டால், அது இங்கே காண்பிக்கும்.",
"empty_column.hashtag": "There is nothing in this hashtag yet.", "empty_column.hashtag": "இன்னும் இந்த ஹேஸ்டேக்கில் எதுவும் இல்லை.",
"empty_column.home": "Your home timeline is empty! Visit {public} or use search to get started and meet other users.", "empty_column.home": "உங்கள் வீட்டுக் காலம் காலியாக உள்ளது! வருகை {public} அல்லது தொடங்குவதற்கு தேடலைப் பயன்படுத்தலாம் மற்றும் பிற பயனர்களை சந்திக்கவும்.",
"empty_column.home.public_timeline": "the public timeline", "empty_column.home.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.list": "இந்த பட்டியலில் இதுவரை எதுவும் இல்லை. இந்த பட்டியலின் உறுப்பினர்கள் புதிய நிலைகளை இடுகையிடுகையில், அவை இங்கே தோன்றும்.",
"empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.", "empty_column.lists": "உங்களுக்கு இதுவரை எந்த பட்டியலும் இல்லை. நீங்கள் ஒன்றை உருவாக்கினால், அது இங்கே காண்பிக்கும்.",
"empty_column.mutes": "You haven't muted any users yet.", "empty_column.mutes": "நீங்கள் இதுவரை எந்த பயனர்களையும் முடக்கியிருக்கவில்லை.",
"empty_column.notifications": "You don't have any notifications yet. Interact with others to start the conversation.", "empty_column.notifications": "உங்களிடம் எந்த அறிவிப்புகளும் இல்லை. உரையாடலைத் தொடங்க பிறருடன் தொடர்புகொள்ளவும்.",
"empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other instances to fill it up", "empty_column.public": "இங்கே எதுவும் இல்லை! பகிரங்கமாக ஒன்றை எழுதவும் அல்லது மற்ற நிகழ்வுகளிலிருந்து பயனர்களை அதை நிரப்புவதற்கு கைமுறையாக பின்பற்றவும்",
"follow_request.authorize": "Authorize", "follow_request.authorize": "அதிகாரமளி",
"follow_request.reject": "Reject", "follow_request.reject": "விலக்கு",
"getting_started.developers": "Developers", "getting_started.developers": "உருவாக்குநர்கள்",
"getting_started.directory": "Profile directory", "getting_started.directory": "சுயவிவர அடைவு",
"getting_started.documentation": "Documentation", "getting_started.documentation": "Documentation",
"getting_started.heading": "Getting started", "getting_started.heading": "தொடங்குதல்",
"getting_started.invite": "Invite people", "getting_started.invite": "நபர்களை அழைக்கவும்",
"getting_started.open_source_notice": "Mastodon is open source software. You can contribute or report issues on GitHub at {github}.", "getting_started.open_source_notice": "Mastodon திறந்த மூல மென்பொருள். GitHub இல் நீங்கள் பங்களிக்கவோ அல்லது புகார் அளிக்கவோ முடியும் {github}.",
"getting_started.security": "Security", "getting_started.security": "பத்திரம்",
"getting_started.terms": "Terms of service", "getting_started.terms": "சேவை விதிமுறைகள்",
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "மற்றும் {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "அல்லது {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "இல்லாமல் {additional}",
"hashtag.column_settings.select.no_options_message": "No suggestions found", "hashtag.column_settings.select.no_options_message": "பரிந்துரைகள் எதுவும் இல்லை",
"hashtag.column_settings.select.placeholder": "Enter hashtags…", "hashtag.column_settings.select.placeholder": "ஹாஷ்டேகுகளை உள்ளிடவும் …",
"hashtag.column_settings.tag_mode.all": "All of these", "hashtag.column_settings.tag_mode.all": "இவை அனைத்தும்",
"hashtag.column_settings.tag_mode.any": "Any of these", "hashtag.column_settings.tag_mode.any": "இவை எதையும்",
"hashtag.column_settings.tag_mode.none": "None of these", "hashtag.column_settings.tag_mode.none": "இவற்றில் ஏதுமில்லை",
"hashtag.column_settings.tag_toggle": "Include additional tags in this column", "hashtag.column_settings.tag_toggle": "இந்த நெடுவரிசையில் கூடுதல் குறிச்சொற்களை சேர்க்கவும்",
"home.column_settings.basic": "Basic", "home.column_settings.basic": "அடிப்படையான",
"home.column_settings.show_reblogs": "Show boosts", "home.column_settings.show_reblogs": "காட்டு boosts",
"home.column_settings.show_replies": "Show replies", "home.column_settings.show_replies": "பதில்களைக் காண்பி",
"intervals.full.days": "{number, plural, one {# day} other {# days}}", "intervals.full.days": "{number, plural, one {# day} மற்ற {# days}}",
"intervals.full.hours": "{number, plural, one {# hour} other {# hours}}", "intervals.full.hours": "{number, plural, one {# hour} மற்ற {# hours}}",
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}", "intervals.full.minutes": "{number, plural, one {# minute} மற்ற {# minutes}}",
"introduction.federation.action": "Next", "introduction.federation.action": "அடுத்த",
"introduction.federation.federated.headline": "Federated", "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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "introduction.federation.local.text": "உள்ளூர் சேவையகத்தில் தோன்றும் அதே சர்வரில் உள்ளவர்களின் பொது இடுகைகள்.",
"introduction.interactions.action": "Finish tutorial!", "introduction.interactions.action": "பயிற்சி முடிக்க!",
"introduction.interactions.favourite.headline": "Favourite", "introduction.interactions.favourite.headline": "விருப்பத்துக்குகந்த",
"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": "நீங்கள் ஒரு காப்பாற்ற முடியும் toot பின்னர், மற்றும் ஆசிரியர் அதை நீங்கள் பிடித்திருக்கிறது என்று, அதை பிடித்திருக்கிறது என்று தெரியப்படுத்துங்கள்.",
"introduction.interactions.reblog.headline": "Boost", "introduction.interactions.reblog.headline": "மதிப்பை உயர்த்து",
"introduction.interactions.reblog.text": "You can share other people's toots with your followers by boosting them.", "introduction.interactions.reblog.text": "மற்றவர்களின் பகிர்ந்து கொள்ளலாம் toots உங்கள் ஆதரவாளர்களுடன் அவர்களை அதிகரிக்கும்.",
"introduction.interactions.reply.headline": "Reply", "introduction.interactions.reply.headline": "மறுமொழி கூறு",
"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": "நீங்கள் மற்றவர்களுக்கும் உங்கள் சொந்த டோட்ட்களிற்கும் பதிலளிப்பீர்கள், இது ஒரு உரையாடலில் சங்கிலி ஒன்றாகச் சேரும்.",
"introduction.welcome.action": "Let's go!", "introduction.welcome.action": "போகலாம்!",
"introduction.welcome.headline": "First steps", "introduction.welcome.headline": "முதல் படிகள்",
"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": "கூட்டாளிக்கு வருக! ஒரு சில நிமிடங்களில், பலவிதமான சேவையகங்களில் செய்திகளை உரையாட மற்றும் உங்கள் நண்பர்களிடம் பேச முடியும். ஆனால் இந்த சர்வர், {domain}, சிறப்பு - இது உங்கள் சுயவிவரத்தை வழங்குகிறது, எனவே அதன் பெயரை நினைவில் கொள்ளுங்கள்.",
"keyboard_shortcuts.back": "to navigate back", "keyboard_shortcuts.back": "மீண்டும் செல்லவும்",
"keyboard_shortcuts.blocked": "to open blocked users list", "keyboard_shortcuts.blocked": "தடுக்கப்பட்ட பயனர்களின் பட்டியலைத் திறக்க",
"keyboard_shortcuts.boost": "to boost", "keyboard_shortcuts.boost": "அதிகரிக்கும்",
"keyboard_shortcuts.column": "to focus a status in one of the columns", "keyboard_shortcuts.column": "நெடுவரிசைகளில் ஒன்றில் நிலைக்கு கவனம் செலுத்த வேண்டும்",
"keyboard_shortcuts.compose": "to focus the compose textarea", "keyboard_shortcuts.compose": "தொகு உரைப்பகுதியை கவனத்தில் கொள்ளவும்",
"keyboard_shortcuts.description": "Description", "keyboard_shortcuts.description": "Description",
"keyboard_shortcuts.direct": "to open direct messages column", "keyboard_shortcuts.direct": "நேரடி செய்திகள் பத்தி திறக்க",
"keyboard_shortcuts.down": "to move down in the list", "keyboard_shortcuts.down": "பட்டியலில் கீழே நகர்த்த",
"keyboard_shortcuts.enter": "to open status", "keyboard_shortcuts.enter": "to open status",
"keyboard_shortcuts.favourite": "to favourite", "keyboard_shortcuts.favourite": "பிடித்தது",
"keyboard_shortcuts.favourites": "to open favourites list", "keyboard_shortcuts.favourites": "பிடித்தவை பட்டியலை திறக்க",
"keyboard_shortcuts.federated": "to open federated timeline", "keyboard_shortcuts.federated": "ஒருங்கிணைந்த நேரத்தை திறக்க",
"keyboard_shortcuts.heading": "Keyboard Shortcuts", "keyboard_shortcuts.heading": "Keyboard Shortcuts",
"keyboard_shortcuts.home": "to open home timeline", "keyboard_shortcuts.home": "வீட்டு நேரத்தை திறக்க",
"keyboard_shortcuts.hotkey": "Hotkey", "keyboard_shortcuts.hotkey": "ஹாட் கீ",
"keyboard_shortcuts.legend": "to display this legend", "keyboard_shortcuts.legend": "இந்த புராணத்தை காட்சிப்படுத்த",
"keyboard_shortcuts.local": "to open local timeline", "keyboard_shortcuts.local": "உள்ளூர் காலவரிசை திறக்க",
"keyboard_shortcuts.mention": "to mention author", "keyboard_shortcuts.mention": "எழுத்தாளர் குறிப்பிட வேண்டும்",
"keyboard_shortcuts.muted": "to open muted users list", "keyboard_shortcuts.muted": "முடக்கப்பட்ட பயனர்களின் பட்டியலைத் திறக்க",
"keyboard_shortcuts.my_profile": "to open your profile", "keyboard_shortcuts.my_profile": "உங்கள் சுயவிவரத்தை திறக்க",
"keyboard_shortcuts.notifications": "to open notifications column", "keyboard_shortcuts.notifications": "அறிவிப்பு நெடுவரிசையைத் திறக்க",
"keyboard_shortcuts.pinned": "to open pinned toots list", "keyboard_shortcuts.pinned": "திறக்க பொருத்தப்பட்டன toots பட்டியல்",
"keyboard_shortcuts.profile": "to open author's profile", "keyboard_shortcuts.profile": "ஆசிரியரின் சுயவிவரத்தைத் திறக்க",
"keyboard_shortcuts.reply": "to reply", "keyboard_shortcuts.reply": "பதிலளிக்க",
"keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.requests": "கோரிக்கைகள் பட்டியலைத் திறக்க",
"keyboard_shortcuts.search": "to focus search", "keyboard_shortcuts.search": "தேடல் கவனம் செலுத்த",
"keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.start": "'தொடங்குவதற்கு' நெடுவரிசை திறக்க",
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_hidden": "CW க்கு பின்னால் உரையை மறைக்க / மறைக்க",
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
"keyboard_shortcuts.toot": "to start a brand new toot", "keyboard_shortcuts.toot": "தொடங்க ஒரு புதிய toot",
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search", "keyboard_shortcuts.unfocus": "உரை பகுதியை / தேடலை கவனம் செலுத்த வேண்டும்",
"keyboard_shortcuts.up": "to move up in the list", "keyboard_shortcuts.up": "பட்டியலில் மேலே செல்ல",
"lightbox.close": "Close", "lightbox.close": "நெருக்கமாக",
"lightbox.next": "Next", "lightbox.next": "அடுத்த",
"lightbox.previous": "Previous", "lightbox.previous": "சென்ற",
"lightbox.view_context": "View context", "lightbox.view_context": "View context",
"lists.account.add": "Add to list", "lists.account.add": "பட்டியலில் சேர்",
"lists.account.remove": "Remove from list", "lists.account.remove": "பட்டியலில் இருந்து அகற்று",
"lists.delete": "Delete list", "lists.delete": "Delete list",
"lists.edit": "Edit list", "lists.edit": "பட்டியலை திருத்து",
"lists.edit.submit": "Change title", "lists.edit.submit": "தலைப்பு மாற்றவும்",
"lists.new.create": "Add list", "lists.new.create": "பட்டியலில் சேர்",
"lists.new.title_placeholder": "New list title", "lists.new.title_placeholder": "புதிய பட்டியல் தலைப்பு",
"lists.search": "Search among people you follow", "lists.search": "நீங்கள் பின்தொடரும் நபர்கள் மத்தியில் தேடுதல்",
"lists.subheading": "Your lists", "lists.subheading": "உங்கள் பட்டியல்கள்",
"loading_indicator.label": "Loading...", "loading_indicator.label": "ஏற்றுதல்...",
"media_gallery.toggle_visible": "Toggle visibility", "media_gallery.toggle_visible": "நிலைமாற்று தெரியும்",
"missing_indicator.label": "Not found", "missing_indicator.label": "கிடைக்கவில்லை",
"missing_indicator.sublabel": "This resource could not be found", "missing_indicator.sublabel": "இந்த ஆதாரத்தை காண முடியவில்லை",
"mute_modal.hide_notifications": "Hide notifications from this user?", "mute_modal.hide_notifications": "இந்த பயனரின் அறிவிப்புகளை மறைக்கவா?",
"navigation_bar.apps": "Mobile apps", "navigation_bar.apps": "மொபைல் பயன்பாடுகள்",
"navigation_bar.blocks": "Blocked users", "navigation_bar.blocks": "தடுக்கப்பட்ட பயனர்கள்",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "உள்ளூர் காலக்கெடு",
"navigation_bar.compose": "Compose new toot", "navigation_bar.compose": "புதியவற்றை எழுதுக toot",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "நேரடி செய்திகள்",
"navigation_bar.discover": "Discover", "navigation_bar.discover": "கண்டு பிடி",
"navigation_bar.domain_blocks": "Hidden domains", "navigation_bar.domain_blocks": "மறைந்த களங்கள்",
"navigation_bar.edit_profile": "Edit profile", "navigation_bar.edit_profile": "சுயவிவரத்தைத் திருத்தவும்",
"navigation_bar.favourites": "Favourites", "navigation_bar.favourites": "விருப்பத்துக்குகந்த",
"navigation_bar.filters": "Muted words", "navigation_bar.filters": "முடக்கப்பட்ட வார்த்தைகள்",
"navigation_bar.follow_requests": "Follow requests", "navigation_bar.follow_requests": "கோரிக்கைகளை பின்பற்றவும்",
"navigation_bar.follows_and_followers": "Follows and followers", "navigation_bar.follows_and_followers": "Follows and followers",
"navigation_bar.info": "About this instance", "navigation_bar.info": "இந்த நிகழ்வு பற்றி",
"navigation_bar.keyboard_shortcuts": "Hotkeys", "navigation_bar.keyboard_shortcuts": "சுருக்குவிசைகள்",
"navigation_bar.lists": "Lists", "navigation_bar.lists": "குதிரை வீர்ர்கள்",
"navigation_bar.logout": "Logout", "navigation_bar.logout": "விடு பதிகை",
"navigation_bar.mutes": "Muted users", "navigation_bar.mutes": "முடக்கப்பட்ட பயனர்கள்",
"navigation_bar.personal": "Personal", "navigation_bar.personal": "Personal",
"navigation_bar.pins": "Pinned toots", "navigation_bar.pins": "பொருத்தப்பட்டன toots",
"navigation_bar.preferences": "Preferences", "navigation_bar.preferences": "விருப்பங்கள்",
"navigation_bar.profile_directory": "Profile directory", "navigation_bar.profile_directory": "Profile directory",
"navigation_bar.public_timeline": "Federated timeline", "navigation_bar.public_timeline": "கூட்டாட்சி காலக்கெடு",
"navigation_bar.security": "Security", "navigation_bar.security": "பத்திரம்",
"notification.favourite": "{name} favourited your status", "notification.favourite": "{name} ஆர்வம் கொண்டவர், உங்கள் நிலை",
"notification.follow": "{name} followed you", "notification.follow": "{name} நீங்கள் தொடர்ந்து வந்தீர்கள்",
"notification.mention": "{name} mentioned you", "notification.mention": "{name} நீங்கள் குறிப்பிட்டுள்ளீர்கள்",
"notification.poll": "A poll you have voted in has ended", "notification.poll": "நீங்கள் வாக்களித்த வாக்கெடுப்பு முடிவடைந்தது",
"notification.reblog": "{name} boosted your status", "notification.reblog": "{name} உங்கள் நிலை அதிகரித்தது",
"notifications.clear": "Clear notifications", "notifications.clear": "அறிவிப்புகளை அழிக்கவும்",
"notifications.clear_confirmation": "Are you sure you want to permanently clear all your notifications?", "notifications.clear_confirmation": "உங்கள் எல்லா அறிவிப்புகளையும் நிரந்தரமாக அழிக்க விரும்புகிறீர்களா?",
"notifications.column_settings.alert": "Desktop notifications", "notifications.column_settings.alert": "டெஸ்க்டாப் அறிவிப்புகள்",
"notifications.column_settings.favourite": "Favourites:", "notifications.column_settings.favourite": "பிடித்தவை:",
"notifications.column_settings.filter_bar.advanced": "Display all categories", "notifications.column_settings.filter_bar.advanced": "எல்லா வகைகளையும் காட்டு",
"notifications.column_settings.filter_bar.category": "Quick filter bar", "notifications.column_settings.filter_bar.category": "விரைவு வடிகட்டி பட்டை",
"notifications.column_settings.filter_bar.show": "Show", "notifications.column_settings.filter_bar.show": "காட்டு",
"notifications.column_settings.follow": "New followers:", "notifications.column_settings.follow": "புதிய பின்பற்றுபவர்கள்:",
"notifications.column_settings.mention": "Mentions:", "notifications.column_settings.mention": "குறிப்பிடுகிறது:",
"notifications.column_settings.poll": "Poll results:", "notifications.column_settings.poll": "கருத்துக்கணிப்பு முடிவுகள்:",
"notifications.column_settings.push": "Push notifications", "notifications.column_settings.push": "Push notifications",
"notifications.column_settings.reblog": "Boosts:", "notifications.column_settings.reblog": "மதிப்பை உயர்த்து:",
"notifications.column_settings.show": "Show in column", "notifications.column_settings.show": "பத்தியில் காண்பி",
"notifications.column_settings.sound": "Play sound", "notifications.column_settings.sound": "ஒலி விளையாட",
"notifications.filter.all": "All", "notifications.filter.all": "எல்லா",
"notifications.filter.boosts": "Boosts", "notifications.filter.boosts": "மதிப்பை உயர்த்து",
"notifications.filter.favourites": "Favourites", "notifications.filter.favourites": "விருப்பத்துக்குகந்த",
"notifications.filter.follows": "Follows", "notifications.filter.follows": "பின்பற்று",
"notifications.filter.mentions": "Mentions", "notifications.filter.mentions": "குறிப்பிடுகிறார்",
"notifications.filter.polls": "Poll results", "notifications.filter.polls": "கருத்துக்கணிப்பு முடிவுகள்",
"notifications.group": "{count} notifications", "notifications.group": "{count} notifications",
"poll.closed": "Closed", "poll.closed": "மூடிய",
"poll.refresh": "Refresh", "poll.refresh": "பத்துயிர்ப்ப?ட்டு",
"poll.total_votes": "{count, plural, one {# vote} other {# votes}}", "poll.total_votes": "{count, plural, one {# vote} மற்ற {# votes}}",
"poll.vote": "Vote", "poll.vote": "வாக்களி",
"poll_button.add_poll": "Add a poll", "poll_button.add_poll": "வாக்கெடுப்பைச் சேர்க்கவும்",
"poll_button.remove_poll": "Remove poll", "poll_button.remove_poll": "வாக்கெடுப்பை அகற்று",
"privacy.change": "Adjust status privacy", "privacy.change": "நிலை தனியுரிமை",
"privacy.direct.long": "Post to mentioned users only", "privacy.direct.long": "குறிப்பிடப்பட்ட பயனர்களுக்கு மட்டுமே இடுகையிடவும்",
"privacy.direct.short": "Direct", "privacy.direct.short": "நடத்து",
"privacy.private.long": "Post to followers only", "privacy.private.long": "பின்தொடர்பவர்களுக்கு மட்டுமே இடுகை",
"privacy.private.short": "Followers-only", "privacy.private.short": "பின்பற்றுபவர்கள் மட்டும்",
"privacy.public.long": "Post to public timelines", "privacy.public.long": "பொது நேரங்களுக்கான இடுகை",
"privacy.public.short": "Public", "privacy.public.short": "Public",
"privacy.unlisted.long": "Do not show in public timelines", "privacy.unlisted.long": "Do not show in public timelines",
"privacy.unlisted.short": "Unlisted", "privacy.unlisted.short": "பட்டியலிடப்படாத",
"regeneration_indicator.label": "Loading…", "regeneration_indicator.label": "சுமையேற்றம்…",
"regeneration_indicator.sublabel": "Your home feed is being prepared!", "regeneration_indicator.sublabel": "உங்கள் வீட்டு ஊட்டம் தயார் செய்யப்படுகிறது!",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
"relative_time.hours": "{number}h", "relative_time.hours": "{number}h",
"relative_time.just_now": "now", "relative_time.just_now": "இப்பொழுது",
"relative_time.minutes": "{number}m", "relative_time.minutes": "{number}m",
"relative_time.seconds": "{number}s", "relative_time.seconds": "{number}s",
"reply_indicator.cancel": "Cancel", "reply_indicator.cancel": "எதிராணை",
"report.forward": "Forward to {target}", "report.forward": "முன்னோக்கி {target}",
"report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?", "report.forward_hint": "கணக்கு மற்றொரு சேவையகத்திலிருந்து வருகிறது. அறிக்கையின் அநாமதேய பிரதி ஒன்றை அனுப்பவும்.?",
"report.hint": "The report will be sent to your instance moderators. You can provide an explanation of why you are reporting this account below:", "report.hint": "அறிக்கை உங்கள் மாதிரியாக மாற்றியமைக்கப்படும். கீழே உள்ள கணக்கை நீங்கள் ஏன் புகாரளிக்கிறீர்கள் என்பதற்கான விளக்கத்தை வழங்கலாம்:",
"report.placeholder": "Additional comments", "report.placeholder": "கூடுதல் கருத்துரைகள்",
"report.submit": "Submit", "report.submit": "Submit",
"report.target": "Report {target}", "report.target": "Report {target}",
"search.placeholder": "Search", "search.placeholder": "தேடு",
"search_popout.search_format": "Advanced search format", "search_popout.search_format": "மேம்பட்ட தேடல் வடிவம்",
"search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", "search_popout.tips.full_text": "எளிமையான உரை நீங்கள் எழுதப்பட்ட, புகழ், அதிகரித்தது, அல்லது குறிப்பிட்டுள்ள, அதே போல் பயனர் பெயர்கள், காட்சி பெயர்கள், மற்றும் ஹேஸ்டேகைகளை கொண்டுள்ளது என்று நிலைகளை கொடுக்கிறது.",
"search_popout.tips.hashtag": "hashtag", "search_popout.tips.hashtag": "ஹேஸ்டேக்",
"search_popout.tips.status": "status", "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_popout.tips.user": "user",
"search_results.accounts": "People", "search_results.accounts": "People",
"search_results.hashtags": "Hashtags", "search_results.hashtags": "ஹாஷ்டேக்குகளைச்",
"search_results.statuses": "Toots", "search_results.statuses": "Toots",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} மற்ற {results}}",
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "மிதமான இடைமுகத்தை திறக்க @{name}",
"status.admin_status": "Open this status in the moderation interface", "status.admin_status": "மிதமான இடைமுகத்தில் இந்த நிலையை திறக்கவும்",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.cancel_reblog_private": "Unboost", "status.cancel_reblog_private": "இல்லை பூஸ்ட்",
"status.cannot_reblog": "This post cannot be boosted", "status.cannot_reblog": "இந்த இடுகை அதிகரிக்க முடியாது",
"status.copy": "Copy link to status", "status.copy": "நிலைக்கு இணைப்பை நகலெடு",
"status.delete": "Delete", "status.delete": "Delete",
"status.detailed_status": "Detailed conversation view", "status.detailed_status": "விரிவான உரையாடல் காட்சி",
"status.direct": "Direct message @{name}", "status.direct": "நேரடி செய்தி @{name}",
"status.embed": "Embed", "status.embed": "கிடத்து",
"status.favourite": "Favourite", "status.favourite": "விருப்பத்துக்குகந்த",
"status.filtered": "Filtered", "status.filtered": "வடிகட்டு",
"status.load_more": "Load more", "status.load_more": "அதிகமாய் ஏற்று",
"status.media_hidden": "Media hidden", "status.media_hidden": "மீடியா மறைக்கப்பட்டது",
"status.mention": "Mention @{name}", "status.mention": "குறிப்பிடு @{name}",
"status.more": "More", "status.more": "அதிக",
"status.mute": "Mute @{name}", "status.mute": "ஊமையான @{name}",
"status.mute_conversation": "Mute conversation", "status.mute_conversation": "ஒலிதடு உரையாடல்",
"status.open": "Expand this status", "status.open": "இந்த நிலையை விரிவாக்கு",
"status.pin": "Pin on profile", "status.pin": "சுயவிவரத்தில் முள்",
"status.pinned": "Pinned toot", "status.pinned": "பொருத்தப்பட்டன toot",
"status.read_more": "Read more", "status.read_more": "மேலும் வாசிக்க",
"status.reblog": "Boost", "status.reblog": "மதிப்பை உயர்த்து",
"status.reblog_private": "Boost to original audience", "status.reblog_private": "Boost அசல் பார்வையாளர்களுக்கு",
"status.reblogged_by": "{name} boosted", "status.reblogged_by": "{name} மதிப்பை உயர்த்து",
"status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.", "status.reblogs.empty": "இதுவரை யாரும் இந்த மோதலை அதிகரிக்கவில்லை. யாராவது செய்தால், அவர்கள் இங்கே காண்பார்கள்.",
"status.redraft": "Delete & re-draft", "status.redraft": "நீக்கு மற்றும் மீண்டும் வரைவு",
"status.reply": "Reply", "status.reply": "பதில்",
"status.replyAll": "Reply to thread", "status.replyAll": "நூலுக்கு பதிலளிக்கவும்",
"status.report": "Report @{name}", "status.report": "Report @{name}",
"status.sensitive_warning": "Sensitive content", "status.sensitive_warning": "உணர்திறன் உள்ளடக்கம்",
"status.share": "Share", "status.share": "பங்கிடு",
"status.show_less": "Show less", "status.show_less": "குறைவாகக் காண்பி",
"status.show_less_all": "Show less for all", "status.show_less_all": "அனைத்தையும் குறைவாக காட்டு",
"status.show_more": "Show more", "status.show_more": "மேலும் காட்ட",
"status.show_more_all": "Show more for all", "status.show_more_all": "அனைவருக்கும் மேலும் காட்டு",
"status.show_thread": "Show thread", "status.show_thread": "நூல் காட்டு",
"status.unmute_conversation": "Unmute conversation", "status.unmute_conversation": "ஊமையாக உரையாடல் இல்லை",
"status.unpin": "Unpin from profile", "status.unpin": "சுயவிவரத்திலிருந்து நீக்கவும்",
"suggestions.dismiss": "Dismiss suggestion", "suggestions.dismiss": "பரிந்துரை விலக்க",
"suggestions.header": "You might be interested in…", "suggestions.header": "நீங்கள் ஆர்வமாக இருக்கலாம் …",
"tabs_bar.federated_timeline": "Federated", "tabs_bar.federated_timeline": "Federated",
"tabs_bar.home": "Home", "tabs_bar.home": "Home",
"tabs_bar.local_timeline": "Local", "tabs_bar.local_timeline": "Local",
"tabs_bar.notifications": "Notifications", "tabs_bar.notifications": "Notifications",
"tabs_bar.search": "Search", "tabs_bar.search": "தேடு",
"time_remaining.days": "{number, plural, one {# day} other {# days}} left", "time_remaining.days": "{number, plural, one {# day} மற்ற {# days}} left",
"time_remaining.hours": "{number, plural, one {# hour} other {# hours}} left", "time_remaining.hours": "{number, plural, one {# hour} மற்ற {# hours}} left",
"time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.minutes": "{number, plural, one {# minute} மற்ற {# minutes}} left",
"time_remaining.moments": "Moments remaining", "time_remaining.moments": "தருணங்கள் மீதமுள்ளன",
"time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", "time_remaining.seconds": "{number, plural, one {# second} மற்ற {# seconds}} left",
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} மற்ற {people}} உரையாடு",
"ui.beforeunload": "Your draft will be lost if you leave Mastodon.", "ui.beforeunload": "நீங்கள் வெளியே சென்றால் உங்கள் வரைவு இழக்கப்படும் மஸ்தோடோன்.",
"upload_area.title": "Drag & drop to upload", "upload_area.title": "பதிவேற்ற & இழுக்கவும்",
"upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_button.label": "மீடியாவைச் சேர்க்கவும் (JPEG, PNG, GIF, WebM, MP4, MOV)",
"upload_error.limit": "File upload limit exceeded.", "upload_error.limit": "கோப்பு பதிவேற்ற வரம்பு மீறப்பட்டது.",
"upload_error.poll": "File upload not allowed with polls.", "upload_error.poll": "கோப்பு பதிவேற்றம் அனுமதிக்கப்படவில்லை.",
"upload_form.description": "Describe for the visually impaired", "upload_form.description": "பார்வையற்ற விவரிக்கவும்",
"upload_form.focus": "Crop", "upload_form.focus": "மாற்றம் முன்னோட்டம்",
"upload_form.undo": "Delete", "upload_form.undo": "Delete",
"upload_progress.label": "Uploading...", "upload_progress.label": "ஏற்றுகிறது ...",
"video.close": "Close video", "video.close": "வீடியோவை மூடு",
"video.exit_fullscreen": "Exit full screen", "video.exit_fullscreen": "முழு திரையில் இருந்து வெளியேறவும்",
"video.expand": "Expand video", "video.expand": "வீடியோவை விரிவாக்கு",
"video.fullscreen": "Full screen", "video.fullscreen": "Full screen",
"video.hide": "Hide video", "video.hide": "வீடியோவை மறை",
"video.mute": "Mute sound", "video.mute": "ஒலி முடக்கவும்",
"video.pause": "Pause", "video.pause": "Pause",
"video.play": "Play", "video.play": "விளையாடு",
"video.unmute": "Unmute sound" "video.unmute": "ஒலி மெளனமாக இல்லை"
} }

View File

@ -16,7 +16,7 @@
"account.follows_you": "ติดตามคุณ", "account.follows_you": "ติดตามคุณ",
"account.hide_reblogs": "ซ่อนการดันจาก @{name}", "account.hide_reblogs": "ซ่อนการดันจาก @{name}",
"account.link_verified_on": "ตรวจสอบความเป็นเจ้าของของลิงก์นี้เมื่อ {date}", "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.media": "สื่อ",
"account.mention": "กล่าวถึง @{name}", "account.mention": "กล่าวถึง @{name}",
"account.moved_to": "{name} ได้ย้ายไปยัง:", "account.moved_to": "{name} ได้ย้ายไปยัง:",
@ -37,7 +37,7 @@
"account.unmute_notifications": "เลิกปิดเสียงการแจ้งเตือนจาก @{name}", "account.unmute_notifications": "เลิกปิดเสียงการแจ้งเตือนจาก @{name}",
"alert.unexpected.message": "เกิดข้อผิดพลาดที่ไม่คาดคิด", "alert.unexpected.message": "เกิดข้อผิดพลาดที่ไม่คาดคิด",
"alert.unexpected.title": "อุปส์!", "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.body": "มีบางอย่างผิดพลาดขณะโหลดส่วนประกอบนี้",
"bundle_column_error.retry": "ลองอีกครั้ง", "bundle_column_error.retry": "ลองอีกครั้ง",
"bundle_column_error.title": "ข้อผิดพลาดเครือข่าย", "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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

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

View File

@ -345,7 +345,6 @@
"status.reply": "回复", "status.reply": "回复",
"status.replyAll": "回复所有人", "status.replyAll": "回复所有人",
"status.report": "举报 @{name}", "status.report": "举报 @{name}",
"status.sensitive_toggle": "点击显示",
"status.sensitive_warning": "敏感内容", "status.sensitive_warning": "敏感内容",
"status.share": "分享", "status.share": "分享",
"status.show_less": "隐藏内容", "status.show_less": "隐藏内容",

View File

@ -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.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.headline": "Local",
"introduction.federation.local.text": "Public posts from people on the same server as you will appear in the local timeline.", "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.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.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.headline": "Boost",

View File

@ -337,7 +337,6 @@
position: absolute; position: absolute;
top: 5px; top: 5px;
right: 5px; right: 5px;
z-index: 1;
} }
.compose-form__autosuggest-wrapper { .compose-form__autosuggest-wrapper {
@ -413,15 +412,6 @@
height: 0; height: 0;
} }
.emoji-picker-wrapper {
position: relative;
height: 0;
&.emoji-picker-wrapper--hidden {
display: none;
}
}
.autosuggest-textarea__suggestions { .autosuggest-textarea__suggestions {
box-sizing: border-box; box-sizing: border-box;
display: none; display: none;
@ -1965,11 +1955,6 @@ a.account__display-name {
font-size: 16px; font-size: 16px;
} }
&.active {
border-bottom: 2px solid $highlight-text-color;
color: $highlight-text-color;
}
&:hover, &:hover,
&:focus, &:focus,
&:active { &:active {
@ -1979,6 +1964,11 @@ a.account__display-name {
} }
} }
&.active {
border-bottom: 2px solid $highlight-text-color;
color: $highlight-text-color;
}
span { span {
margin-left: 5px; margin-left: 5px;
display: none; display: none;

View File

@ -1,4 +1,7 @@
.form-container .form-container
.flash-message .flash-message.simple_form
%p= t('doorkeeper.authorizations.show.title') %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')

View File

@ -1,6 +1,10 @@
--- ---
ar: ar:
activerecord: activerecord:
attributes:
poll:
expires_at: آخر أجل
options: الخيارات
errors: errors:
models: models:
account: account:

View File

@ -0,0 +1 @@
bg:

View File

@ -0,0 +1 @@
bn:

View File

@ -2,8 +2,9 @@
ca: ca:
activerecord: activerecord:
attributes: attributes:
status: poll:
owned_poll: Enquesta expires_at: Data límit
options: Opcions
errors: errors:
models: models:
account: account:

View File

@ -1,9 +1,6 @@
--- ---
da: da:
activerecord: activerecord:
attributes:
status:
owned_poll: Afstemning
errors: errors:
models: models:
account: account:

View File

@ -4,9 +4,7 @@ de:
attributes: attributes:
poll: poll:
expires_at: Frist expires_at: Frist
options: Wahlen options: Wahlmöglichkeiten
status:
owned_poll: Umfrage
errors: errors:
models: models:
account: account:
@ -16,4 +14,4 @@ de:
status: status:
attributes: attributes:
reblog: reblog:
taken: des Status existiert schon taken: des Beitrags existiert schon

View File

@ -5,8 +5,6 @@ el:
poll: poll:
expires_at: Προθεσμία expires_at: Προθεσμία
options: Επιλογές options: Επιλογές
status:
owned_poll: Ψηφοφορία
errors: errors:
models: models:
account: account:

View 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

View File

@ -1,12 +1,16 @@
--- ---
es: es:
activerecord: activerecord:
attributes:
poll:
expires_at: Vencimiento
options: Opciones
errors: errors:
models: models:
account: account:
attributes: attributes:
username: username:
invalid: solo letras, números y guiones bajos invalid: sólo letras, números y guiones bajos
status: status:
attributes: attributes:
reblog: reblog:

View File

@ -1,6 +1,10 @@
--- ---
eu: eu:
activerecord: activerecord:
attributes:
poll:
expires_at: Epemuga
options: Aukerak
errors: errors:
models: models:
account: account:

View File

@ -1,9 +1,6 @@
--- ---
fa: fa:
activerecord: activerecord:
attributes:
status:
owned_poll: رأی‌گیری
errors: errors:
models: models:
account: account:

View File

@ -0,0 +1 @@
fi:

View File

@ -5,8 +5,6 @@ gl:
poll: poll:
expires_at: Caducidade expires_at: Caducidade
options: Opcións options: Opcións
status:
owned_poll: Sondaxe
errors: errors:
models: models:
account: account:

View File

@ -0,0 +1 @@
hr:

View File

@ -0,0 +1 @@
hu:

View File

@ -0,0 +1 @@
hy:

View File

@ -0,0 +1 @@
io:

View File

@ -5,8 +5,6 @@ ja:
poll: poll:
expires_at: 期限 expires_at: 期限
options: 項目 options: 項目
user:
email: メールアドレス
errors: errors:
models: models:
account: account:

View File

@ -0,0 +1,17 @@
---
ko:
activerecord:
attributes:
poll:
expires_at: 마감 기한
options: 선택
errors:
models:
account:
attributes:
username:
invalid: 영문자, 숫자, _만 사용 가능
status:
attributes:
reblog:
taken: 이미 게시물이 존재합니다

View File

@ -0,0 +1 @@
lt:

View File

@ -0,0 +1 @@
lv:

View File

@ -0,0 +1 @@
ms:

View File

@ -5,8 +5,6 @@ nl:
poll: poll:
expires_at: Deadline expires_at: Deadline
options: Keuzes options: Keuzes
status:
owned_poll: Poll
errors: errors:
models: models:
account: account:

View File

@ -2,8 +2,9 @@
pl: pl:
activerecord: activerecord:
attributes: attributes:
user: poll:
email: adres e-mail expires_at: Ostateczny termin
options: Opcje
errors: errors:
models: models:
account: account:

View File

@ -0,0 +1 @@
ro:

View File

@ -5,8 +5,6 @@ sk:
poll: poll:
expires_at: Trvá do expires_at: Trvá do
options: Voľby options: Voľby
status:
owned_poll: Anketa
errors: errors:
models: models:
account: account:

View File

@ -0,0 +1 @@
ta:

View File

@ -0,0 +1 @@
te:

View File

@ -0,0 +1 @@
zh-TW:

View File

@ -2,22 +2,27 @@
ar: ar:
about: about:
about_hashtag_html: هذه تبويقات متاحة للجمهور تحتوي على الكلمات الدلالية <strong>#%{hashtag}</strong>. يمكنك التفاعل معها إن كان لديك حساب في أي مكان على الفديفرس. about_hashtag_html: هذه تبويقات متاحة للجمهور تحتوي على الكلمات الدلالية <strong>#%{hashtag}</strong>. يمكنك التفاعل معها إن كان لديك حساب في أي مكان على الفديفرس.
about_mastodon_html: ماستدون شبكة إجتماعية مبنية على أسُس بروتوكولات برمجيات الويب الحرة و مفتوحة المصدر. و هو لامركزي تمامًا كالبريد الإلكتروني. about_mastodon_html: ماستدون شبكة اجتماعية مبنية على أسُس بروتوكولات برمجيات الويب الحرة و مفتوحة المصدر. و هو لامركزي تمامًا كالبريد الإلكتروني.
about_this: عن مثيل الخادوم هذا about_this: عن مثيل الخادوم هذا
administered_by: 'يُديره :' active_count_after: نشط
administered_by: 'يُديره:'
api: واجهة برمجة التطبيقات api: واجهة برمجة التطبيقات
apps: تطبيقات الأجهزة المحمولة apps: تطبيقات الأجهزة المحمولة
contact: للتواصل معنا contact: للتواصل معنا
contact_missing: لم يتم تعيينه contact_missing: لم يتم تعيينه
contact_unavailable: غير متوفر contact_unavailable: غير متوفر
discover_users: اكتشف مستخدِمين
documentation: الدليل documentation: الدليل
extended_description_html: | extended_description_html: |
<h3>مكان جيد للقواعد</h3> <h3>مكان جيد للقواعد</h3>
<p>لم يتم بعد إدخال الوصف الطويل.</p> <p>لم يتم بعد إدخال الوصف الطويل.</p>
generic_description: "%{domain} هو سيرفر من بين سيرفرات الشبكة" generic_description: "%{domain} هو سيرفر من بين سيرفرات الشبكة"
get_apps: جرّب تطبيقا على الموبايل
hosted_on: ماستدون مُستضاف على %{domain} hosted_on: ماستدون مُستضاف على %{domain}
learn_more: تعلم المزيد learn_more: تعلم المزيد
privacy_policy: سياسة الخصوصية privacy_policy: سياسة الخصوصية
see_whats_happening: اطّلع على ما يجري
server_stats: 'إحصائيات الخادم:'
source_code: الشفرة المصدرية source_code: الشفرة المصدرية
status_count_after: status_count_after:
few: منشورات few: منشورات
@ -27,6 +32,7 @@ ar:
two: منشورات two: منشورات
zero: منشورات zero: منشورات
status_count_before: نشروا status_count_before: نشروا
tagline: اتبع أصدقائك وصديقاتك واكتشف آخرين وأخريات
terms: شروط الخدمة terms: شروط الخدمة
user_count_after: user_count_after:
few: مستخدمين few: مستخدمين
@ -38,8 +44,8 @@ ar:
user_count_before: يستضيف user_count_before: يستضيف
what_is_mastodon: ما هو ماستدون ؟ what_is_mastodon: ما هو ماستدون ؟
accounts: accounts:
choices_html: 'توصيات %{name} :' choices_html: 'توصيات %{name}:'
follow: إتبع follow: اتبع
followers: followers:
few: متابِعون few: متابِعون
many: متابِعون many: متابِعون
@ -54,7 +60,7 @@ ar:
media: الوسائط media: الوسائط
moved_html: "%{name} إنتقلَ إلى %{new_profile_link} :" moved_html: "%{name} إنتقلَ إلى %{new_profile_link} :"
network_hidden: إنّ المعطيات غير متوفرة network_hidden: إنّ المعطيات غير متوفرة
nothing_here: لا يوجد أي شيء هنا ! nothing_here: لا يوجد أي شيء هنا!
people_followed_by: الأشخاص الذين يتبعهم %{name} people_followed_by: الأشخاص الذين يتبعهم %{name}
people_who_follow: الأشخاص الذين يتبعون %{name} people_who_follow: الأشخاص الذين يتبعون %{name}
pin_errors: pin_errors:
@ -68,27 +74,30 @@ ar:
zero: تبويقات zero: تبويقات
posts_tab_heading: تبويقات posts_tab_heading: تبويقات
posts_with_replies: التبويقات و الردود posts_with_replies: التبويقات و الردود
reserved_username: إسم المستخدم محجوز reserved_username: اسم المستخدم محجوز
roles: roles:
admin: المدير admin: المدير
bot: روبوت bot: روبوت
moderator: مُشرِف moderator: مُشرِف
unavailable: الحساب غير متوفر
unfollow: إلغاء المتابعة unfollow: إلغاء المتابعة
admin: admin:
account_actions: account_actions:
action: تنفيذ الاجراء action: تنفيذ الإجراء
title: اتخاذ إجراء إشراف على %{acct} title: اتخاذ إجراء إشراف على %{acct}
account_moderation_notes: account_moderation_notes:
create: إترك ملاحظة create: اترك ملاحظة
created_msg: تم إنشاء ملاحظة الإشراف بنجاح ! created_msg: تم إنشاء ملاحظة الإشراف بنجاح!
delete: حذف delete: حذف
destroyed_msg: تم تدمير ملاحظة الإشراف بنجاح ! destroyed_msg: تم تدمير ملاحظة الإشراف بنجاح!
accounts: accounts:
approve: صادِق عليه
approve_all: الموافقة على الكل
are_you_sure: متأكد ؟ are_you_sure: متأكد ؟
avatar: الصورة الرمزية avatar: الصورة الرمزية
by_domain: النطاق by_domain: النطاق
change_email: change_email:
changed_msg: تم تعديل عنوان البريد الإلكتروني الخاص بالحساب بنجاح ! changed_msg: تم تعديل عنوان البريد الإلكتروني الخاص بالحساب بنجاح!
current_email: عنوان البريد الإلكتروني الحالي current_email: عنوان البريد الإلكتروني الحالي
label: تعديل عنوان البريد الإلكتروني label: تعديل عنوان البريد الإلكتروني
new_email: عنوان البريد الإلكتروني الجديد new_email: عنوان البريد الإلكتروني الجديد
@ -102,7 +111,7 @@ ar:
disable: تعطيل disable: تعطيل
disable_two_factor_authentication: تعطيل المصادقة بخطوتين disable_two_factor_authentication: تعطيل المصادقة بخطوتين
disabled: معطَّل disabled: معطَّل
display_name: عرض الإسم display_name: عرض الاسم
domain: النطاق domain: النطاق
edit: تعديل edit: تعديل
email: البريد الإلكتروني email: البريد الإلكتروني
@ -129,15 +138,18 @@ ar:
moderation: moderation:
active: نشِط active: نشِط
all: الكل all: الكل
pending: قيد المراجعة
silenced: تم كتمه silenced: تم كتمه
suspended: مُجَمَّد suspended: مُجَمَّد
title: الإشراف title: الإشراف
moderation_notes: ملاحظات الإشراف moderation_notes: ملاحظات الإشراف
most_recent_activity: آخر نشاط حديث most_recent_activity: آخر نشاط حديث
most_recent_ip: أحدث عنوان إيبي most_recent_ip: أحدث عنوان إيبي
no_account_selected: لم يطرأ أي تغيير على أي حساب بما أنه لم يتم اختيار أي واحد
no_limits_imposed: مِن دون حدود مشروطة no_limits_imposed: مِن دون حدود مشروطة
not_subscribed: غير مشترك not_subscribed: غير مشترك
outbox_url: رابط صندوق الصادر outbox_url: رابط صندوق الصادر
pending: في انتظار المراجعة
perform_full_suspension: تعليق الحساب perform_full_suspension: تعليق الحساب
profile_url: رابط الملف الشخصي profile_url: رابط الملف الشخصي
promote: ترقية promote: ترقية
@ -145,15 +157,17 @@ ar:
public: عمومي public: عمومي
push_subscription_expires: انتهاء الاشتراك ”PuSH“ push_subscription_expires: انتهاء الاشتراك ”PuSH“
redownload: تحديث الصفحة الشخصية redownload: تحديث الصفحة الشخصية
reject: ارفض
reject_all: ارفض الكل
remove_avatar: حذف الصورة الرمزية remove_avatar: حذف الصورة الرمزية
remove_header: حذف الرأسية remove_header: حذف الرأسية
resend_confirmation: resend_confirmation:
already_confirmed: هذا المستخدم مؤكد بالفعل already_confirmed: هذا المستخدم مؤكد بالفعل
send: أعد إرسال رسالة البريد الالكتروني الخاصة بالتأكيد send: أعد إرسال رسالة البريد الإلكتروني الخاصة بالتأكيد
success: تم إرسال رسالة التأكيد بنجاح! success: تم إرسال رسالة التأكيد بنجاح!
reset: إعادة التعيين reset: إعادة التعيين
reset_password: إعادة ضبط كلمة السر reset_password: إعادة ضبط كلمة السر
resubscribe: إعادة الإشتراك resubscribe: إعادة الاشتراك
role: الصلاحيات role: الصلاحيات
roles: roles:
admin: مدير admin: مدير
@ -165,18 +179,19 @@ ar:
shared_inbox_url: رابط الصندوق المُشترَك للبريد الوارد shared_inbox_url: رابط الصندوق المُشترَك للبريد الوارد
show: show:
created_reports: البلاغات التي أنشأها هذا الحساب created_reports: البلاغات التي أنشأها هذا الحساب
targeted_reports: الشكاوي التي أُنشِأت مِن طرف الآخَرين targeted_reports: الشكاوى التي أُنشِأت مِن طرف الآخَرين
silence: كتم silence: كتم
silenced: تم كتمه silenced: تم كتمه
statuses: المنشورات statuses: المنشورات
subscribe: اشترك subscribe: اشترك
suspended: تم تعليقه suspended: تم تعليقه
time_in_queue: في قائمة الانتظار %{time}
title: الحسابات title: الحسابات
unconfirmed_email: البريد الإلكتروني غير مؤكد unconfirmed_email: البريد الإلكتروني غير مؤكد
undo_silenced: رفع الصمت undo_silenced: رفع الصمت
undo_suspension: إلغاء تعليق الحساب undo_suspension: إلغاء تعليق الحساب
unsubscribe: إلغاء الاشتراك unsubscribe: إلغاء الاشتراك
username: إسم المستخدم username: اسم المستخدم
warn: تحذير warn: تحذير
web: الويب web: الويب
action_logs: action_logs:
@ -193,7 +208,7 @@ ar:
destroy_domain_block: "%{name} قام بإلغاء الحجب عن النطاق %{target}" destroy_domain_block: "%{name} قام بإلغاء الحجب عن النطاق %{target}"
destroy_email_domain_block: قام %{name} بإضافة نطاق البريد الإلكتروني %{target} إلى اللائحة البيضاء destroy_email_domain_block: قام %{name} بإضافة نطاق البريد الإلكتروني %{target} إلى اللائحة البيضاء
destroy_status: لقد قام %{name} بحذف منشور %{target} destroy_status: لقد قام %{name} بحذف منشور %{target}
disable_2fa_user: "%{name} لقد قام بتعطيل ميزة المصادقة بخطوتين للمستخدم %{target}" disable_2fa_user: "%{name} لقد قام بتعطيل ميزة المصادقة بخطوتين للمستخدم %{target}"
disable_custom_emoji: "%{name} قام بتعطيل الإيموجي %{target}" disable_custom_emoji: "%{name} قام بتعطيل الإيموجي %{target}"
disable_user: "%{name} لقد قام بتعطيل تسجيل الدخول للمستخدِم %{target}" disable_user: "%{name} لقد قام بتعطيل تسجيل الدخول للمستخدِم %{target}"
enable_custom_emoji: "%{name} قام بتنشيط الإيموجي %{target}" enable_custom_emoji: "%{name} قام بتنشيط الإيموجي %{target}"
@ -218,9 +233,9 @@ ar:
copied_msg: تم إنشاء نسخة محلية للإيموجي بنجاح copied_msg: تم إنشاء نسخة محلية للإيموجي بنجاح
copy: نسخ copy: نسخ
copy_failed_msg: فشلت عملية إنشاء نسخة محلية لهذا الإيموجي copy_failed_msg: فشلت عملية إنشاء نسخة محلية لهذا الإيموجي
created_msg: تم إنشاء الإيموجي بنجاح ! created_msg: تم إنشاء الإيموجي بنجاح!
delete: حذف delete: حذف
destroyed_msg: تمت عملية تدمير الإيموجي بنجاح ! destroyed_msg: تمت عملية تدمير الإيموجي بنجاح!
disable: تعطيل disable: تعطيل
disabled_msg: تمت عملية تعطيل ذلك الإيموجي بنجاح disabled_msg: تمت عملية تعطيل ذلك الإيموجي بنجاح
emoji: إيموجي emoji: إيموجي
@ -235,8 +250,8 @@ ar:
shortcode_hint: على الأقل حرفين، و فقط رموز أبجدية عددية و أسطر سفلية shortcode_hint: على الأقل حرفين، و فقط رموز أبجدية عددية و أسطر سفلية
title: الإيموجي الخاصة title: الإيموجي الخاصة
unlisted: غير مدرج unlisted: غير مدرج
update_failed_msg: تعذرت عملية تحذيث ذاك الإيموجي update_failed_msg: تعذرت عملية تحديث ذاك الإيموجي
updated_msg: تم تحديث الإيموجي بنجاح ! updated_msg: تم تحديث الإيموجي بنجاح!
upload: رفع upload: رفع
dashboard: dashboard:
backlog: الأعمال المتراكمة backlog: الأعمال المتراكمة
@ -246,9 +261,10 @@ ar:
feature_profile_directory: دليل الحسابات feature_profile_directory: دليل الحسابات
feature_registrations: التسجيلات feature_registrations: التسجيلات
feature_relay: المُرحّل الفديرالي feature_relay: المُرحّل الفديرالي
feature_timeline_preview: معاينة الخيط الزمني
features: الميّزات features: الميّزات
hidden_service: الفيديرالية مع الخدمات الخفية hidden_service: الفيديرالية مع الخدمات الخفية
open_reports: فتح الشكاوي open_reports: فتح الشكاوى
recent_users: أحدث المستخدِمين recent_users: أحدث المستخدِمين
search: البحث النصي الكامل search: البحث النصي الكامل
single_user_mode: وضع المستخدِم الأوحد single_user_mode: وضع المستخدِم الأوحد
@ -286,8 +302,8 @@ ar:
many: "%{count} حسابات معنية في قاعدة البيانات" many: "%{count} حسابات معنية في قاعدة البيانات"
one: حساب واحد معني في قاعدة البيانات one: حساب واحد معني في قاعدة البيانات
other: "%{count} حسابات معنية في قاعدة البيانات" other: "%{count} حسابات معنية في قاعدة البيانات"
two: حسابات معنية في قاعدة البيانات two: "%{count} حسابات معنية في قاعدة البيانات"
zero: حسابات معنية في قاعدة البيانات zero: "%{count} حسابات معنية في قاعدة البيانات"
retroactive: retroactive:
silence: إلغاء الكتم عن كافة الحسابات المتواجدة على هذا النطاق silence: إلغاء الكتم عن كافة الحسابات المتواجدة على هذا النطاق
suspend: إلغاء التعليق المفروض على كافة حسابات هذا النطاق suspend: إلغاء التعليق المفروض على كافة حسابات هذا النطاق
@ -319,6 +335,7 @@ ar:
zero: "%{count} حسابات معروفة" zero: "%{count} حسابات معروفة"
moderation: moderation:
all: كافتها all: كافتها
limited: محدود
title: الإشراف title: الإشراف
title: الفديرالية title: الفديرالية
total_blocked_by_us: المحجوبة مِن طرفنا total_blocked_by_us: المحجوبة مِن طرفنا
@ -334,13 +351,15 @@ ar:
expired: المنتهي صلاحيتها expired: المنتهي صلاحيتها
title: التصفية title: التصفية
title: الدعوات title: الدعوات
pending_accounts:
title: الحسابات المعلقة (%{count})
relays: relays:
add_new: إضافة مُرحّل جديد add_new: إضافة مُرحّل جديد
delete: حذف delete: حذف
disable: تعطيل disable: تعطيل
disabled: مُعطَّل disabled: مُعطَّل
enable: تشغيل enable: تشغيل
enable_hint: عندما تقوم بتنشيط هذه الميزة، سوف يشترك خادومك في جميع التبويقات القادمة مِن هذا المُرحِّل و سيشرع كذلك بإرسال كافة التبويقات العمومية إليه. enable_hint: عندما تقوم بتنشيط هذه الميزة، سوف يشترك خادومكم في جميع التبويقات القادمة مِن هذا المُرحِّل و سيشرع كذلك بإرسال كافة التبويقات العمومية إليه.
enabled: مُشغَّل enabled: مُشغَّل
inbox_url: رابط المُرحّل inbox_url: رابط المُرحّل
pending: في انتظار تسريح المُرحِّل pending: في انتظار تسريح المُرحِّل
@ -362,14 +381,14 @@ ar:
comment: comment:
none: لا شيء none: لا شيء
created_at: ذكرت created_at: ذكرت
mark_as_resolved: إعتبار الشكوى كمحلولة mark_as_resolved: اعتبار الشكوى كمحلولة
mark_as_unresolved: علام كغير محلولة mark_as_unresolved: علم كغير محلولة
notes: notes:
create: اضف ملاحظة create: اضف ملاحظة
create_and_resolve: الحل مع ملاحظة create_and_resolve: الحل مع ملاحظة
create_and_unresolve: إعادة فتح مع ملاحظة create_and_unresolve: إعادة فتح مع ملاحظة
delete: حذف delete: حذف
placeholder: قم بوصف الإجراءات التي تم اتخاذها أو أي تحديثات أخرى ذات علاقة placeholder: قم بوصف الإجراءات التي تم اتخاذها أو أي تحديثات أخرى ذات علاقة...
reopen: إعادة فتح الشكوى reopen: إعادة فتح الشكوى
report: 'الشكوى #%{id}' report: 'الشكوى #%{id}'
reported_account: حساب مُبلّغ عنه reported_account: حساب مُبلّغ عنه
@ -377,20 +396,20 @@ ar:
resolved: معالجة resolved: معالجة
resolved_msg: تم حل تقرير بنجاح! resolved_msg: تم حل تقرير بنجاح!
status: الحالة status: الحالة
title: الشكاوي title: الشكاوى
unassign: إلغاء تعيين unassign: إلغاء تعيين
unresolved: غير معالجة unresolved: غير معالجة
updated_at: محدث updated_at: محدث
settings: settings:
activity_api_enabled: activity_api_enabled:
desc_html: عدد المنشورات المحلية و المستخدمين النشطين و التسجيلات الأسبوعية الجديدة desc_html: عدد المنشورات المحلية و المستخدمين الناشطين و التسجيلات الأسبوعية الجديدة
title: نشر مُجمل الإحصائيات عن نشاط المستخدمين title: نشر مُجمل الإحصائيات عن نشاط المستخدمين
bootstrap_timeline_accounts: bootstrap_timeline_accounts:
desc_html: افصل بين أسماء المستخدمين المتعددة بواسطة الفاصلة. استعمل الحسابات المحلية والمفتوحة فقط. الافتراضي عندما تكون فارغة كل المسؤولين المحليين. desc_html: افصل بين أسماء المستخدمين المتعددة بواسطة الفاصلة. استعمل الحسابات المحلية والمفتوحة فقط. الافتراضي عندما تكون فارغة كل المسؤولين المحليين.
title: الإشتراكات الإفتراضية للمستخدمين الجدد title: الاشتراكات الافتراضية للمستخدمين الجدد
contact_information: contact_information:
email: البريد الإلكتروني المهني email: البريد الإلكتروني المهني
username: الإتصال بالمستخدِم username: الاتصال بالمستخدِم
custom_css: custom_css:
desc_html: يقوم بتغيير المظهر بواسطة سي أس أس يُحمَّل على كافة الصفحات desc_html: يقوم بتغيير المظهر بواسطة سي أس أس يُحمَّل على كافة الصفحات
title: سي أس أس مخصص title: سي أس أس مخصص
@ -398,7 +417,7 @@ ar:
desc_html: معروض على الصفحة الأولى. لا يقل عن 600 × 100 بكسل. عند عدم التعيين ، تعود الصورة إلى النسخة المصغرة على سبيل المثال desc_html: معروض على الصفحة الأولى. لا يقل عن 600 × 100 بكسل. عند عدم التعيين ، تعود الصورة إلى النسخة المصغرة على سبيل المثال
title: الصورة الرأسية title: الصورة الرأسية
peers_api_enabled: peers_api_enabled:
desc_html: أسماء النطاقات التي إلتقى بها مثيل الخادوم على البيئة الموحَّدة فيديفرس desc_html: أسماء النطاقات التي التقى بها مثيل الخادوم على البيئة الموحَّدة فديفرس
title: نشر عدد مثيلات الخوادم التي تم مصادفتها title: نشر عدد مثيلات الخوادم التي تم مصادفتها
preview_sensitive_media: preview_sensitive_media:
desc_html: روابط المُعَاينة على مواقع الويب الأخرى ستقوم بعرض صُوَر مصغّرة حتى و إن كانت الوسائط حساسة desc_html: روابط المُعَاينة على مواقع الويب الأخرى ستقوم بعرض صُوَر مصغّرة حتى و إن كانت الوسائط حساسة
@ -416,9 +435,13 @@ ar:
min_invite_role: min_invite_role:
disabled: لا أحد disabled: لا أحد
title: المستخدِمون المصرح لهم لإرسال الدعوات title: المستخدِمون المصرح لهم لإرسال الدعوات
registrations_mode:
modes:
none: لا أحد يمكنه إنشاء حساب
open: يمكن للجميع إنشاء حساب
title: طريقة إنشاء الحسابات
show_known_fediverse_at_about_page: show_known_fediverse_at_about_page:
desc_html: عند التثبت ، سوف تظهر toots من جميع fediverse المعروفة على عرض مسبق. وإلا فإنه سيعرض فقط toots المحلية. title: إظهار الفديفرس الموحَّد في خيط المُعايَنة
title: إظهار الفيديفرس الموحَّد في خيط المُعايَنة
show_staff_badge: show_staff_badge:
desc_html: عرض شارة الموظفين على صفحة المستخدم desc_html: عرض شارة الموظفين على صفحة المستخدم
title: إظهار شارة الموظفين title: إظهار شارة الموظفين
@ -429,17 +452,17 @@ ar:
desc_html: مكان جيد لمدونة قواعد السلوك والقواعد والإرشادات وغيرها من الأمور التي تحدد حالتك. يمكنك استخدام علامات HTML desc_html: مكان جيد لمدونة قواعد السلوك والقواعد والإرشادات وغيرها من الأمور التي تحدد حالتك. يمكنك استخدام علامات HTML
title: الوصف المُفصّل للموقع title: الوصف المُفصّل للموقع
site_short_description: site_short_description:
desc_html: يتم عرضه في لوحة جانبية و في البيانات الوصفية. قم بوصف ماستدون و ما يميز هذا السيرفر عن الآخرين في فقرة موجزة. إن تركت الحقل فارغا فسوف يتم عرض الوصف الإفتراضي لمثيل الخادوم. desc_html: يتم عرضه في لوحة جانبية و في البيانات الوصفية. قم بوصف ماستدون و ما يميز هذا السيرفر عن الآخرين في فقرة موجزة. إن تركت الحقل فارغا فسوف يتم عرض الوصف الافتراضي لمثيل الخادوم.
title: مقدمة وصفية قصيرة عن مثيل الخادوم title: مقدمة وصفية قصيرة عن مثيل الخادوم
site_terms: site_terms:
desc_html: يمكنك كتابة سياسة الخصوصية الخاصة بك ، شروط الخدمة أو غيرها من القوانين. يمكنك استخدام علامات HTML desc_html: يمكنك كتابة سياسة الخصوصية الخاصة بك ، شروط الخدمة أو غيرها من القوانين. يمكنك استخدام علامات HTML
title: شروط الخدمة المخصصة title: شروط الخدمة المخصصة
site_title: إسم مثيل الخادم site_title: اسم مثيل الخادم
thumbnail: thumbnail:
desc_html: يستخدم للعروض السابقة عبر Open Graph و API. 1200x630px موصى به desc_html: يستخدم للعروض السابقة عبر Open Graph و API. 1200x630px موصى به
title: الصورة الرمزية المصغرة لمثيل الخادوم title: الصورة الرمزية المصغرة لمثيل الخادوم
timeline_preview: timeline_preview:
desc_html: عرض الخيط العمومي على صفحة الإستقبال desc_html: عرض الخيط العمومي على صفحة الاستقبال
title: مُعاينة الخيط العام title: مُعاينة الخيط العام
title: إعدادات الموقع title: إعدادات الموقع
statuses: statuses:
@ -460,7 +483,6 @@ ar:
confirmed: مؤكَّد confirmed: مؤكَّد
expires_in: تنتهي مدة صلاحيتها في expires_in: تنتهي مدة صلاحيتها في
last_delivery: آخر إيداع last_delivery: آخر إيداع
title: WebSub
topic: الموضوع topic: الموضوع
tags: tags:
accounts: الحسابات accounts: الحسابات
@ -478,15 +500,20 @@ ar:
edit_preset: تعديل نموذج التحذير edit_preset: تعديل نموذج التحذير
title: إدارة نماذج التحذير title: إدارة نماذج التحذير
admin_mailer: admin_mailer:
new_pending_account:
subject: حساب جديد في انتظار مراجعة على %{instance} (%{username})
new_report: new_report:
body: قام %{reporter} بالإبلاغ عن %{target} body: قام %{reporter} بالإبلاغ عن %{target}
body_remote: أبلغ شخص ما من %{domain} عن %{target} body_remote: أبلغ شخص ما من %{domain} عن %{target}
subject: تقرير جديد ل%{instance} (#%{id}) subject: تقرير جديد ل%{instance} (#%{id})
appearance:
advanced_web_interface: واجهة الويب المتقدمة
confirmation_dialogs: نوافذ التأكيد
sensitive_content: محتوى حساس
application_mailer: application_mailer:
notification_preferences: تعديل خيارات البريد الإلكتروني notification_preferences: تعديل خيارات البريد الإلكتروني
salutation: "%{name}،" salutation: "%{name}،"
settings: 'تغيير تفضيلات البريد الإلكتروني : %{link}' settings: 'تغيير تفضيلات البريد الإلكتروني: %{link}'
view: 'View:'
view_profile: عرض الملف الشخصي view_profile: عرض الملف الشخصي
view_status: عرض المنشور view_status: عرض المنشور
applications: applications:
@ -495,10 +522,12 @@ ar:
invalid_url: إن الرابط المقدم غير صالح invalid_url: إن الرابط المقدم غير صالح
regenerate_token: إعادة توليد رمز النفاذ regenerate_token: إعادة توليد رمز النفاذ
token_regenerated: تم إعادة إنشاء الرمز الوصول بنجاح token_regenerated: تم إعادة إنشاء الرمز الوصول بنجاح
warning: كن حذرا مع هذه البيانات. لا تقم أبدا بمشاركتها مع الآخَرين ! warning: كن حذرا مع هذه البيانات. لا تقم أبدا بمشاركتها مع الآخَرين!
your_token: رمز نفاذك your_token: رمز نفاذك
auth: auth:
apply_for_account: اطلب دعوة
change_password: الكلمة السرية change_password: الكلمة السرية
checkbox_agreement_html: أوافق على <a href="%{rules_path}" target="_blank">قواعد الخادم</a> و <a href="%{terms_path}" target="_blank">شروط الخدمة</a>
confirm_email: تأكيد عنوان البريد الإلكتروني confirm_email: تأكيد عنوان البريد الإلكتروني
delete_account: حذف حساب delete_account: حذف حساب
delete_account_html: إن كنت ترغب في حذف حسابك يُمكنك <a href="%{path}">المواصلة هنا</a>. سوف يُطلَبُ منك التأكيد قبل الحذف. delete_account_html: إن كنت ترغب في حذف حسابك يُمكنك <a href="%{path}">المواصلة هنا</a>. سوف يُطلَبُ منك التأكيد قبل الحذف.
@ -507,23 +536,25 @@ ar:
invalid_reset_password_token: رمز إعادة تعيين كلمة المرور غير صالح أو منتهي الصلاحية. يرجى طلب واحد جديد. invalid_reset_password_token: رمز إعادة تعيين كلمة المرور غير صالح أو منتهي الصلاحية. يرجى طلب واحد جديد.
login: تسجيل الدخول login: تسجيل الدخول
logout: خروج logout: خروج
migrate_account: الإنتقال إلى حساب آخر migrate_account: الانتقال إلى حساب آخر
migrate_account_html: إن كنت ترغب في تحويل هذا الحساب نحو حساب آخَر، يُمكِنُك <a href="%{path}">إعداده هنا</a>. migrate_account_html: إن كنت ترغب في تحويل هذا الحساب نحو حساب آخَر، يُمكِنُك <a href="%{path}">إعداده هنا</a>.
or_log_in_with: أو قم بتسجيل الدخول بواسطة or_log_in_with: أو قم بتسجيل الدخول بواسطة
providers: providers:
cas: CAS cas: CAS
saml: SAML saml: SAML
register: إنشاء حساب register: إنشاء حساب
registration_closed: لا يقبل %{instance} استقبال أعضاء جدد
resend_confirmation: إعادة إرسال تعليمات التأكيد resend_confirmation: إعادة إرسال تعليمات التأكيد
reset_password: إعادة تعيين كلمة المرور reset_password: إعادة تعيين كلمة المرور
security: الأمان security: الأمان
set_new_password: إدخال كلمة مرور جديدة set_new_password: إدخال كلمة مرور جديدة
trouble_logging_in: هل صادفتكم مشكلة في الولوج؟
authorize_follow: authorize_follow:
already_following: أنت تتابع بالفعل هذا الحساب already_following: أنت تتابع بالفعل هذا الحساب
error: يا للأسف، وقع هناك خطأ إثر عملية البحث عن الحساب عن بعد error: يا للأسف، وقع هناك خطأ إثر عملية البحث عن الحساب عن بعد
follow: إتبع follow: اتبع
follow_request: 'لقد قمت بإرسال طلب متابعة إلى :' follow_request: 'لقد قمت بإرسال طلب متابعة إلى:'
following: 'مرحى ! أنت الآن تتبع :' following: 'مرحى! أنت الآن تتبع:'
post_follow: post_follow:
close: أو يمكنك إغلاق هذه النافذة. close: أو يمكنك إغلاق هذه النافذة.
return: عرض الملف الشخصي للمستخدم return: عرض الملف الشخصي للمستخدم
@ -566,19 +597,21 @@ ar:
'404': إنّ الصفحة التي تبحث عنها لا وجود لها أصلا. '404': إنّ الصفحة التي تبحث عنها لا وجود لها أصلا.
'410': إنّ الصفحة التي تبحث عنها لم تعد موجودة. '410': إنّ الصفحة التي تبحث عنها لم تعد موجودة.
'422': '422':
content: فشل التحقق الآمن. ربما منعتَ كعكات الكوكيز ؟ content: فشل التحقق الآمن. ربما منعتَ كعكات الكوكيز؟
title: فشِل التحقق الآمن title: فشِل التحقق الآمن
'429': طلبات كثيرة جدا '429': طلبات كثيرة جدا
'500': '500':
content: نحن متأسفون، لقد حدث خطأ ما مِن جانبنا. content: نحن متأسفون، لقد حدث خطأ ما مِن جانبنا.
title: هذه الصفحة خاطئة title: هذه الصفحة خاطئة
noscript_html: يرجى تفعيل الجافا سكريبت لاستخدام تطبيق الويب لماستدون، أو عِوض ذلك قوموا بتجريب إحدى <a href="%{apps_path}">التطبيقات الأصلية</a> الدّاعمة لماستدون على منصّتكم. noscript_html: يرجى تفعيل الجافا سكريبت لاستخدام تطبيق الويب لماستدون، أو عِوض ذلك قوموا بتجريب إحدى <a href="%{apps_path}">التطبيقات الأصلية</a> الدّاعمة لماستدون على منصّتكم.
existing_username_validator:
not_found_multiple: تعذر العثور على %{usernames}
exports: exports:
archive_takeout: archive_takeout:
date: التاريخ date: التاريخ
download: تنزيل نسخة لحسابك download: تنزيل نسخة لحسابك
hint_html: بإمكانك طلب نسخة كاملة لـ <strong>كافة تبويقاتك و الوسائط التي قمت بنشرها</strong>. البيانات المُصدَّرة ستكون محفوظة على شكل نسق ActivityPub و باستطاعتك قراءتها بأي برنامج يدعم هذا النسق. يُمكنك طلب نسخة كل 7 أيام. hint_html: بإمكانك طلب نسخة كاملة لـ <strong>كافة تبويقاتك و الوسائط التي قمت بنشرها</strong>. البيانات المُصدَّرة ستكون محفوظة على شكل نسق ActivityPub و باستطاعتك قراءتها بأي برنامج يدعم هذا النسق. يُمكنك طلب نسخة كل 7 أيام.
in_progress: عملية جمع نسخة لبيانات حسابك جارية in_progress: عملية جمع نسخة لبيانات حسابك جارية...
request: طلب نسخة لحسابك request: طلب نسخة لحسابك
size: الحجم size: الحجم
blocks: قمت بحظر blocks: قمت بحظر
@ -608,11 +641,13 @@ ar:
title: إضافة عامل تصفية جديد title: إضافة عامل تصفية جديد
footer: footer:
developers: المطورون developers: المطورون
more: المزيد more: المزيد
resources: الموارد resources: الموارد
generic: generic:
changes_saved_msg: تم حفظ التعديلات بنجاح ! all: الكل
changes_saved_msg: تم حفظ التعديلات بنجاح!
copy: نسخ copy: نسخ
order_by: ترتيب بحسب
save_changes: حفظ التغييرات save_changes: حفظ التغييرات
validation_errors: validation_errors:
few: هناك شيء ما ليس على ما يرام! يُرجى مراجعة الأخطاء الـ %{count} أدناه few: هناك شيء ما ليس على ما يرام! يُرجى مراجعة الأخطاء الـ %{count} أدناه
@ -621,6 +656,17 @@ ar:
other: هناك شيء ما ليس على ما يرام! يُرجى مراجعة الأخطاء الـ %{count} أدناه other: هناك شيء ما ليس على ما يرام! يُرجى مراجعة الأخطاء الـ %{count} أدناه
two: هناك شيء ما ليس على ما يرام! يُرجى مراجعة الأخطاء الـ %{count} أدناه two: هناك شيء ما ليس على ما يرام! يُرجى مراجعة الأخطاء الـ %{count} أدناه
zero: هناك شيء ما ليس على ما يرام! يُرجى مراجعة الأخطاء الـ %{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: imports:
modes: modes:
merge: دمج merge: دمج
@ -638,7 +684,7 @@ ar:
in_memoriam_html: في ذكرى. in_memoriam_html: في ذكرى.
invites: invites:
delete: تعطيل delete: تعطيل
expired: إنتهت صلاحيتها expired: انتهت صلاحيتها
expires_in: expires_in:
'1800': 30 دقيقة '1800': 30 دقيقة
'21600': 6 ساعات '21600': 6 ساعات
@ -648,14 +694,14 @@ ar:
'86400': يوم واحد '86400': يوم واحد
expires_in_prompt: أبدا expires_in_prompt: أبدا
generate: توليد generate: توليد
invited_by: 'تمت دعوتك من طرف :' invited_by: 'تمت دعوتك من طرف:'
max_uses: max_uses:
few: "%{count} استخدامات" few: "%{count} استخدامات"
many: "%{count} استخدامات" many: "%{count} استخدامات"
one: استخدام واحد one: استخدام واحد
other: "%{count} استخدامات" other: "%{count} استخدامات"
two: استخدامات two: "%{count} استخدامات"
zero: استخدامات zero: "%{count} استخدامات"
max_uses_prompt: بلا حدود max_uses_prompt: بلا حدود
prompt: توليد و مشاركة روابط للسماح للآخَرين بالنفاذ إلى مثيل الخادوم هذا prompt: توليد و مشاركة روابط للسماح للآخَرين بالنفاذ إلى مثيل الخادوم هذا
table: table:
@ -671,16 +717,16 @@ ar:
too_many: لا يمكن إرفاق أكثر من 4 ملفات too_many: لا يمكن إرفاق أكثر من 4 ملفات
migrations: migrations:
acct: username@domain للحساب الجديد acct: username@domain للحساب الجديد
currently_redirecting: 'تم تحويل رابط ملفك الشخصي إلى :' currently_redirecting: 'تم تحويل رابط ملفك الشخصي إلى:'
proceed: حفظ proceed: حفظ
updated_msg: تم تحديث إعدادات ترحيل حسابك بنجاح ! updated_msg: تم تحديث إعدادات ترحيل حسابك بنجاح!
moderation: moderation:
title: الإشراف title: الإشراف
notification_mailer: notification_mailer:
digest: digest:
action: معاينة كافة الإشعارات action: معاينة كافة الإشعارات
body: هذا هو مُلَخَّص الرسائل التي فاتتك وذلك منذ آخر زيارة لك في %{since} body: هذا هو مُلَخَّص الرسائل التي فاتتك وذلك منذ آخر زيارة لك في %{since}
mention: "%{name} أشار إليك في :" mention: "%{name} أشار إليك في:"
new_followers_summary: new_followers_summary:
few: رائع، لقد قام بمتابَعتك %{count} مُتابِعون جُدد أثناء فترة غيابك عن ماستدون! few: رائع، لقد قام بمتابَعتك %{count} مُتابِعون جُدد أثناء فترة غيابك عن ماستدون!
many: رائع، لقد قام بمتابَعتك %{count} مُتابِعون جُدد أثناء فترة غيابك عن ماستدون! many: رائع، لقد قام بمتابَعتك %{count} مُتابِعون جُدد أثناء فترة غيابك عن ماستدون!
@ -693,15 +739,15 @@ ar:
many: "%{count} إشعارات جديدة منذ آخر زيارة لك إلى \U0001F418" many: "%{count} إشعارات جديدة منذ آخر زيارة لك إلى \U0001F418"
one: "إشعار واحد 1 منذ آخر زيارة لك لـ \U0001F418" one: "إشعار واحد 1 منذ آخر زيارة لك لـ \U0001F418"
other: "%{count} إشعارات جديدة منذ آخر زيارة لك إلى \U0001F418" other: "%{count} إشعارات جديدة منذ آخر زيارة لك إلى \U0001F418"
two: "إشعارات جديدة منذ آخر زيارة لك إلى \U0001F418" two: "%{count} إشعارات جديدة منذ آخر زيارة لك إلى \U0001F418"
zero: "إشعارات جديدة منذ آخر زيارة لك إلى \U0001F418" zero: "%{count} إشعارات جديدة منذ آخر زيارة لك إلى \U0001F418"
title: أثناء فترة غيابك title: أثناء فترة غيابك...
favourite: favourite:
body: 'أُعجب %{name} بمنشورك :' body: 'أُعجب %{name} بمنشورك:'
subject: أُعجِب %{name} بمنشورك subject: أُعجِب %{name} بمنشورك
title: مفضّلة جديدة title: مفضّلة جديدة
follow: follow:
body: "%{name} من متتبعيك الآن !" body: "%{name} من متتبعيك الآن!"
subject: "%{name} من متتبعيك الآن" subject: "%{name} من متتبعيك الآن"
title: متابِع جديد title: متابِع جديد
follow_request: follow_request:
@ -723,26 +769,45 @@ ar:
decimal_units: decimal_units:
format: "%n%u" format: "%n%u"
units: units:
billion: B billion: بل
million: M million: ملي
quadrillion: كواد quadrillion: كواد
thousand: ألف thousand: ألف
trillion: T trillion: ترل
unit: ''
pagination: pagination:
newer: الأحدَث newer: الأحدَث
next: التالي next: التالي
older: الأقدَم older: الأقدَم
prev: السابق prev: السابق
truncate: و truncate: و
polls:
errors:
already_voted: لقد قمت بالتصويت على استطلاع الرأي هذا مِن قبل
duplicate_options: يحتوي على عناصر مكررة
duration_too_short: مبكّر جدا
expired: لقد انتهى استطلاع الرأي
preferences: preferences:
other: إعدادات أخرى 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: remote_follow:
acct: قم بإدخال عنوان حسابك username@domain الذي من خلاله تود النشاط acct: قم بإدخال عنوان حسابك username@domain الذي من خلاله تود النشاط
missing_resource: تعذر العثور على رابط التحويل المطلوب الخاص بحسابك missing_resource: تعذر العثور على رابط التحويل المطلوب الخاص بحسابك
no_account_html: أليس عندك حساب بعدُ ؟ يُمْكنك <a href='%{sign_up_path}' target='_blank'>التسجيل مِن هنا</a> no_account_html: أليس عندك حساب بعدُ ؟ يُمْكنك <a href='%{sign_up_path}' target='_blank'>التسجيل مِن هنا</a>
proceed: أكمل المتابعة proceed: أكمل المتابعة
prompt: 'إنك بصدد متابعة :' prompt: 'إنك بصدد متابعة:'
remote_interaction: remote_interaction:
favourite: favourite:
proceed: المواصلة إلى المفضلة proceed: المواصلة إلى المفضلة
@ -770,7 +835,7 @@ ar:
generic: متصفح مجهول generic: متصفح مجهول
ie: إنترنت إكسبلورر ie: إنترنت إكسبلورر
micro_messenger: مايكرو ميسنجر micro_messenger: مايكرو ميسنجر
nokia: متصفح Nokia S40 Ovi nokia: متصفح Nokia S40 Ovi
opera: أوبرا opera: أوبرا
otter: أوتر otter: أوتر
phantom_js: فانتوم جي آس phantom_js: فانتوم جي آس
@ -780,7 +845,7 @@ ar:
weibo: وايبو weibo: وايبو
current_session: الجلسة الحالية current_session: الجلسة الحالية
description: "%{browser} على %{platform}" description: "%{browser} على %{platform}"
explanation: ها هي قائمة مُتصفِّحات الويب التي تستخدِم حاليًا حساب ماستدون الخاص بك. explanation: ها هي قائمة مُتصفِّحات الويب التي تستخدِم حاليًا حساب ماستدون الخاص بك.
ip: عنوان الإيبي ip: عنوان الإيبي
platforms: platforms:
adobe_air: أدوبي إيير adobe_air: أدوبي إيير
@ -799,36 +864,44 @@ ar:
revoke_success: تم إبطال الجلسة بنجاح revoke_success: تم إبطال الجلسة بنجاح
title: الجلسات title: الجلسات
settings: settings:
account: الحساب
account_settings: إعدادات الحساب
appearance: المظهر
authorized_apps: التطبيقات المرخص لها authorized_apps: التطبيقات المرخص لها
back: عودة إلى ماستدون back: عودة إلى ماستدون
delete: حذف الحسابات delete: حذف الحسابات
development: التطوير development: التطوير
edit_profile: تعديل الملف الشخصي edit_profile: تعديل الملف الشخصي
export: تصدير البيانات export: تصدير البيانات
import: إستيراد featured_tags: الوسوم الشائعة
identity_proofs: دلائل الهوية
import: استيراد
import_and_export: استيراد وتصدير
migrate: تهجير الحساب migrate: تهجير الحساب
notifications: الإخطارات notifications: الإخطارات
preferences: التفضيلات preferences: التفضيلات
profile: الملف الشخصي
relationships: المتابِعون والمتابَعون
two_factor_authentication: المُصادقة بخُطوَتَيْن two_factor_authentication: المُصادقة بخُطوَتَيْن
statuses: statuses:
attached: attached:
description: 'مُرفَق : %{attached}' description: 'مُرفَق: %{attached}'
image: image:
few: "%{count} صور" few: "%{count} صور"
many: "%{count} صور" many: "%{count} صور"
one: صورة %{count} one: صورة %{count}
other: "%{count} صور" other: "%{count} صور"
two: صور two: "%{count} صورة"
zero: صور zero: "%{count} صورة"
video: video:
few: "%{count} فيديوهات" few: "%{count} فيديوهات"
many: "%{count} فيديوهات" many: "%{count} فيديوهات"
one: فيديو %{count} one: فيديو %{count}
other: "%{count} فيديوهات" other: "%{count} فيديوهات"
two: فيديوهات two: "%{count} فيديوهات"
zero: فيديوهات zero: "%{count} فيديوهات"
boosted_from_html: تم إعادة ترقيته مِن %{acct_link} boosted_from_html: تم إعادة ترقيته مِن %{acct_link}
content_warning: 'تحذير عن المحتوى : %{warning}' content_warning: 'تحذير عن المحتوى: %{warning}'
disallowed_hashtags: disallowed_hashtags:
few: 'يحتوي على وسوم غير مسموح بها: %{tags}' few: 'يحتوي على وسوم غير مسموح بها: %{tags}'
many: 'يحتوي على وسوم غير مسموح بها: %{tags}' many: 'يحتوي على وسوم غير مسموح بها: %{tags}'
@ -837,18 +910,20 @@ ar:
two: 'يحتوي على وسوم غير مسموح بها: %{tags}' two: 'يحتوي على وسوم غير مسموح بها: %{tags}'
zero: 'يحتوي على وسوم غير مسموح بها: %{tags}' zero: 'يحتوي على وسوم غير مسموح بها: %{tags}'
language_detection: اكتشاف اللغة تلقائيا language_detection: اكتشاف اللغة تلقائيا
open_in_web: إفتح في الويب open_in_web: افتح في الويب
over_character_limit: تم تجاوز حد الـ %{max} حرف المسموح بها over_character_limit: تم تجاوز حد الـ %{max} حرف المسموح بها
pin_errors: pin_errors:
limit: لقد بلغت الحد الأقصى للتبويقات المدبسة limit: لقد بلغت الحد الأقصى للتبويقات المدبسة
ownership: لا يمكن تدبيس تبويق نشره شخص آخر ownership: لا يمكن تدبيس تبويق نشره شخص آخر
private: لا يمكن تدبيس تبويق لم يُنشر للعامة private: لا يمكن تدبيس تبويق لم يُنشر للعامة
reblog: لا يمكن تثبيت ترقية reblog: لا يمكن تثبيت ترقية
poll:
vote: صوّت
show_more: أظهر المزيد show_more: أظهر المزيد
sign_in_to_participate: قم بتسجيل الدخول للمشاركة في هذه المحادثة sign_in_to_participate: قم بتسجيل الدخول للمشاركة في هذه المحادثة
title: '%{name} : "%{quote}"' title: '%{name}: "%{quote}"'
visibilities: visibilities:
private: إعرض فقط لمتتبعيك private: اعرض فقط لمتتبعيك
private_long: إعرضه لمتتبعيك فقط private_long: إعرضه لمتتبعيك فقط
public: للعامة public: للعامة
public_long: يمكن للجميع رؤيته public_long: يمكن للجميع رؤيته
@ -861,13 +936,9 @@ ar:
terms: terms:
title: شروط الخدمة وسياسة الخصوصية على %{instance} title: شروط الخدمة وسياسة الخصوصية على %{instance}
themes: themes:
contrast: تباين عالٍ contrast: ماستدون (تباين عالٍ)
default: ماستدون default: ماستدون (داكن)
mastodon-light: ماستدون (فاتح) mastodon-light: ماستدون (فاتح)
time:
formats:
default: "%b %d, %Y, %H:%M"
month: "%b %Y"
two_factor_authentication: two_factor_authentication:
code_hint: قم بإدخال الرمز المُوَلّد عبر تطبيق المصادقة للتأكيد code_hint: قم بإدخال الرمز المُوَلّد عبر تطبيق المصادقة للتأكيد
description_html: في حال تفعيل <strong>المصادقة بخطوتين </strong>، فتسجيل الدخول يتطلب منك أن يكون بحوزتك هاتفك النقال قصد توليد الرمز الذي سيتم إدخاله. description_html: في حال تفعيل <strong>المصادقة بخطوتين </strong>، فتسجيل الدخول يتطلب منك أن يكون بحوزتك هاتفك النقال قصد توليد الرمز الذي سيتم إدخاله.
@ -875,17 +946,17 @@ ar:
enable: تفعيل enable: تفعيل
enabled: نظام المصادقة بخطوتين مُفعَّل enabled: نظام المصادقة بخطوتين مُفعَّل
enabled_success: تم تفعيل المصادقة بخطوتين بنجاح enabled_success: تم تفعيل المصادقة بخطوتين بنجاح
generate_recovery_codes: توليد رموز الإسترجاع generate_recovery_codes: توليد رموز الاسترجاع
instructions_html: "<strong>قم بمسح رمز الكيو آر عبر Google Authenticator أو أي تطبيق TOTP على جهازك</strong>. من الآن فصاعدا سوف يقوم ذاك التطبيق بتوليد رموز يجب عليك إدخالها عند تسجيل الدخول." instructions_html: "<strong>قم بمسح رمز الكيو آر عبر Google Authenticator أو أي تطبيق TOTP على جهازك</strong>. من الآن فصاعدا سوف يقوم ذاك التطبيق بتوليد رموز يجب عليك إدخالها عند تسجيل الدخول."
lost_recovery_codes: تُمكّنك رموز الإسترجاع الإحتاطية مِن استرجاع النفاذ إلى حسابك في حالة فقدان جهازك المحمول. إن ضاعت منك هذه الرموز فبإمكانك إعادة توليدها مِن هنا و إبطال الرموز القديمة. lost_recovery_codes: تُمكّنك رموز الاسترجاع الاحتياطية مِن استرجاع النفاذ إلى حسابك في حالة فقدان جهازك المحمول. إن ضاعت منك هذه الرموز فبإمكانك إعادة توليدها مِن هنا و إبطال الرموز القديمة.
manual_instructions: 'في حالة تعذّر مسح رمز الكيو آر أو طُلب منك إدخال يدوي، يُمْكِنك إدخال هذا النص السري على التطبيق :' manual_instructions: 'في حالة تعذّر مسح رمز الكيو آر أو طُلب منك إدخال يدوي، يُمْكِنك إدخال هذا النص السري على التطبيق:'
recovery_codes: النسخ الإحتياطي لرموز الإسترجاع recovery_codes: النسخ الاحتياطي لرموز الاسترجاع
recovery_codes_regenerated: تم إعادة توليد رموز الإسترجاع الإحتياطية بنجاح recovery_codes_regenerated: تم إعادة توليد رموز الاسترجاع الاحتياطية بنجاح
setup: تنشيط setup: تنشيط
wrong_code: الرمز الذي أدخلته غير صالح ! تحقق من صحة الوقت على الخادم و الجهاز ؟ wrong_code: الرمز الذي أدخلته غير صالح! تحقق من صحة الوقت على الخادم و الجهاز؟
user_mailer: user_mailer:
backup_ready: backup_ready:
explanation: لقد قمت بطلب نسخة كاملة لحسابك على ماستدون. إنها متوفرة الآن للتنزيل ! explanation: لقد قمت بطلب نسخة كاملة لحسابك على ماستدون. إنها متوفرة الآن للتنزيل!
subject: نسخة بيانات حسابك جاهزة للتنزيل subject: نسخة بيانات حسابك جاهزة للتنزيل
title: المغادرة بأرشيف الحساب title: المغادرة بأرشيف الحساب
warning: warning:
@ -900,12 +971,12 @@ ar:
suspend: الحساب مُعلَّق suspend: الحساب مُعلَّق
welcome: welcome:
edit_profile_action: تهيئة الملف الشخصي edit_profile_action: تهيئة الملف الشخصي
edit_profile_step: يُمكنك·كي تخصيص ملفك الشخصي عن طريق تحميل صورة رمزية ورأسية و بتعديل إسمك·كي العلني وأكثر. و إن أردت·تي معاينة المتابِعين و المتابعات الجُدد قبيل السماح لهم·ن بمتابَعتك فيمكنك·كي تأمين حسابك·كي. edit_profile_step: يُمكنك·كي تخصيص ملفك الشخصي عن طريق تحميل صورة رمزية ورأسية و بتعديل اسمك·كي العلني وأكثر. و إن أردت·تي معاينة المتابِعين و المتابعات الجُدد قبيل السماح لهم·ن بمتابَعتك فيمكنك·كي تأمين حسابك·كي.
explanation: ها هي بعض النصائح قبل بداية الإستخدام explanation: ها هي بعض النصائح قبل بداية الاستخدام
final_action: اشرَع في النشر final_action: اشرَع في النشر
final_step: |- final_step: |-
يمكنك الشروع في النشر في الحين ! حتى و إن لم كنت لا تمتلك متابِعين بعدُ، يمكن للآخرين الإطلاع على منشوراتك الموجهة للجمهور على الخيط المحلي أو إن قمت باستخدام وسوم. يمكنك الشروع في النشر في الحين! حتى و إن لم كنت لا تمتلك متابِعين بعدُ، يمكن للآخرين الإطلاع على منشوراتك الموجهة للجمهور على الخيط المحلي أو إن قمت باستخدام وسوم.
إبدأ بتقديم نفسك باستعمال وسم #introductions. ابدأ بتقديم نفسك باستعمال وسم #introductions.
full_handle: عنوانك الكامل full_handle: عنوانك الكامل
full_handle_hint: هذا هو ما يجب تقديمه لأصدقائك قصد أن يكون بإمكانهم متابَعتك أو مُراسَلتك حتى و إن كانت حساباتهم على خوادم أخرى. full_handle_hint: هذا هو ما يجب تقديمه لأصدقائك قصد أن يكون بإمكانهم متابَعتك أو مُراسَلتك حتى و إن كانت حساباتهم على خوادم أخرى.
review_preferences_action: تعديل التفضيلات review_preferences_action: تعديل التفضيلات
@ -914,13 +985,13 @@ ar:
tip_following: أنت تتبع تلقائيا مديري و مديرات الخادم. للعثور على أشخاص مميزين أو قد تهمك حساباتهم بإمكانك الإطلاع على الخيوط المحلية و كذا الفدرالية. tip_following: أنت تتبع تلقائيا مديري و مديرات الخادم. للعثور على أشخاص مميزين أو قد تهمك حساباتهم بإمكانك الإطلاع على الخيوط المحلية و كذا الفدرالية.
tip_local_timeline: الخيط الزمني المحلي هو بمثابة نظرة سريعة على الأشخاص المتواجدين على %{instance} يمكن اعتبارهم كجيرانك وجاراتك الأقرب إليك! tip_local_timeline: الخيط الزمني المحلي هو بمثابة نظرة سريعة على الأشخاص المتواجدين على %{instance} يمكن اعتبارهم كجيرانك وجاراتك الأقرب إليك!
tips: نصائح tips: نصائح
title: أهلاً بك، %{name} ! title: أهلاً بك، %{name}!
users: users:
follow_limit_reached: لا يمكنك متابعة أكثر مِن %{limit} أشخاص follow_limit_reached: لا يمكنك متابعة أكثر مِن %{limit} أشخاص
invalid_email: عنوان البريد الإلكتروني غير صالح invalid_email: عنوان البريد الإلكتروني غير صالح
invalid_otp_token: رمز المصادقة بخطوتين غير صالح invalid_otp_token: رمز المصادقة بخطوتين غير صالح
otp_lost_help_html: إن فقدتَهُما ، يمكنك الإتصال بـ %{email} otp_lost_help_html: إن فقدتَهُما ، يمكنك الاتصال بـ %{email}
seamless_external_login: لقد قمت بتسجيل الدخول عبر خدمة خارجية، إنّ إعدادات الكلمة السرية و البريد الإلكتروني غير متوفرة. seamless_external_login: لقد قمت بتسجيل الدخول عبر خدمة خارجية، إنّ إعدادات الكلمة السرية و البريد الإلكتروني غير متوفرة.
signed_in_as: 'تم تسجيل دخولك بصفة :' signed_in_as: 'تم تسجيل دخولك بصفة:'
verification: verification:
verification: التحقق verification: التحقق

View File

@ -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_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 about_this: Tocante a
administered_by: 'Alministráu por:' administered_by: 'Alministráu por:'
api: API
contact: Contautu contact: Contautu
contact_missing: Nun s'afitó contact_missing: Nun s'afitó
contact_unavailable: N/D contact_unavailable: N/D
@ -15,7 +14,6 @@ ast:
hosted_on: Mastodon ta agospiáu en %{domain} hosted_on: Mastodon ta agospiáu en %{domain}
learn_more: Deprendi más learn_more: Deprendi más
source_code: Códigu fonte source_code: Códigu fonte
status_count_after: estaos
status_count_before: Que crearon status_count_before: Que crearon
terms: Términos del serviciu terms: Términos del serviciu
user_count_after: user_count_after:
@ -33,10 +31,6 @@ ast:
nothing_here: "¡Equí nun hai nada!" nothing_here: "¡Equí nun hai nada!"
people_followed_by: Persones a les que sigue %{name} people_followed_by: Persones a les que sigue %{name}
people_who_follow: Persones que siguen a %{name} people_who_follow: Persones que siguen a %{name}
posts:
one: Toot
other: Toots
posts_tab_heading: Toots
posts_with_replies: Toots y rempuestes posts_with_replies: Toots y rempuestes
reserved_username: El nome d'usuariu ta acutáu reserved_username: El nome d'usuariu ta acutáu
roles: roles:
@ -44,12 +38,10 @@ ast:
admin: admin:
accounts: accounts:
are_you_sure: "¿De xuru?" are_you_sure: "¿De xuru?"
avatar: Avatar
by_domain: Dominiu by_domain: Dominiu
domain: Dominiu domain: Dominiu
email: Corréu email: Corréu
followers: Siguidores followers: Siguidores
ip: IP
location: location:
local: Llocal local: Llocal
title: Allugamientu title: Allugamientu
@ -64,7 +56,6 @@ ast:
statuses: Estaos statuses: Estaos
title: Cuentes title: Cuentes
username: Nome d'usuariu username: Nome d'usuariu
web: Web
action_logs: action_logs:
actions: actions:
create_domain_block: "%{name} bloquió'l dominiu %{target}" create_domain_block: "%{name} bloquió'l dominiu %{target}"
@ -81,7 +72,6 @@ ast:
features: Carauterístiques features: Carauterístiques
hidden_service: Federación con servicios anubríos hidden_service: Federación con servicios anubríos
recent_users: Usuarios recientes recent_users: Usuarios recientes
software: Software
total_users: usuarios en total total_users: usuarios en total
week_interactions: interaiciones d'esta selmana week_interactions: interaiciones d'esta selmana
week_users_new: usuarios d'esta selmana week_users_new: usuarios d'esta selmana
@ -111,14 +101,10 @@ ast:
title: Axustes del sitiu title: Axustes del sitiu
statuses: statuses:
failed_to_execute: Fallu al executar failed_to_execute: Fallu al executar
subscriptions:
title: WebSub
title: Alministración title: Alministración
admin_mailer: admin_mailer:
new_report: new_report:
body_remote: Daquién dende %{domain} informó de %{target} body_remote: Daquién dende %{domain} informó de %{target}
application_mailer:
salutation: "%{name},"
applications: applications:
invalid_url: La URL apurrida nun ye válida invalid_url: La URL apurrida nun ye válida
warning: Ten curiáu con estos datos, ¡enxamás nun los compartas con naide! warning: Ten curiáu con estos datos, ¡enxamás nun los compartas con naide!
@ -130,9 +116,6 @@ ast:
login: Aniciar sesión login: Aniciar sesión
migrate_account: Mudase a otra cuenta migrate_account: Mudase a otra cuenta
migrate_account_html: Si deseyes redirixir esta cuenta a otra, pues <a href="%{path}"> configuralo equí</a>. migrate_account_html: Si deseyes redirixir esta cuenta a otra, pues <a href="%{path}"> configuralo equí</a>.
providers:
cas: CAS
saml: SAML
register: Rexistrase register: Rexistrase
security: Seguranza security: Seguranza
authorize_follow: authorize_follow:
@ -162,6 +145,7 @@ ast:
content: Falló la verificación de seguranza. ¿Tas bloquiando les cookies? content: Falló la verificación de seguranza. ¿Tas bloquiando les cookies?
title: Falló la verificación de seguranza title: Falló la verificación de seguranza
'429': Ficiéronse milenta solicitúes '429': Ficiéronse milenta solicitúes
'500':
exports: exports:
archive_takeout: archive_takeout:
date: Data date: Data
@ -169,7 +153,6 @@ ast:
request: Solicitar l'archivu request: Solicitar l'archivu
size: Tamañu size: Tamañu
blocks: Xente que bloquiesti blocks: Xente que bloquiesti
csv: CSV
follows: Xente que sigues follows: Xente que sigues
mutes: Xente que silenciesti mutes: Xente que silenciesti
filters: filters:
@ -223,8 +206,6 @@ ast:
digest: digest:
body: Equí hai un resume de los mensaxes que nun viesti dende la última visita'l %{since} body: Equí hai un resume de los mensaxes que nun viesti dende la última visita'l %{since}
mention: "%{name} mentóte en:" mention: "%{name} mentóte en:"
subject:
other: "%{count} avisos nuevos dende la última visita \U0001F418"
follow: follow:
body: "¡Agora %{name} ta siguiéndote!" body: "¡Agora %{name} ta siguiéndote!"
title: Siguidor nuevu title: Siguidor nuevu
@ -239,10 +220,6 @@ ast:
body: "%{name} compartió'l to estáu:" body: "%{name} compartió'l to estáu:"
subject: "%{name} compartió'l to estáu" subject: "%{name} compartió'l to estáu"
title: Compartición nueva de toot title: Compartición nueva de toot
number:
human:
decimal_units:
format: "%n%u"
pagination: pagination:
next: Siguiente next: Siguiente
remote_follow: remote_follow:
@ -255,38 +232,11 @@ ast:
sessions: sessions:
browser: Restolador browser: Restolador
browsers: browsers:
alipay: Alipay
blackberry: Blackberry
chrome: Chrome
edge: Microsoft Edge
electron: Electron
firefox: Firefox
generic: Restolador desconocíu 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 current_session: Sesión actual
description: "%{browser} en %{platform}" description: "%{browser} en %{platform}"
ip: IP
platforms: 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 other: plataforma desconocida
windows: Windows
windows_mobile: Windows Mobile
windows_phone: Windows Phone
title: Sesiones title: Sesiones
settings: settings:
authorized_apps: Aplicaciones autorizaes authorized_apps: Aplicaciones autorizaes

View File

@ -5,18 +5,14 @@ bg:
about_this: За тази инстанция about_this: За тази инстанция
contact: За контакти contact: За контакти
source_code: Програмен код source_code: Програмен код
status_count_after: публикации
status_count_before: Написали status_count_before: Написали
user_count_after: потребители
user_count_before: Дом на user_count_before: Дом на
accounts: accounts:
follow: Последвай follow: Последвай
followers: Последователи
following: Следва following: Следва
nothing_here: Тук няма никого! nothing_here: Тук няма никого!
people_followed_by: Хора, които %{name} следва people_followed_by: Хора, които %{name} следва
people_who_follow: Хора, които следват %{name} people_who_follow: Хора, които следват %{name}
posts: Публикации
unfollow: Не следвай unfollow: Не следвай
application_mailer: application_mailer:
settings: 'Промяна на предпочитанията за e-mail: %{link}' settings: 'Промяна на предпочитанията за e-mail: %{link}'
@ -51,15 +47,20 @@ bg:
x_minutes: "%{count} мин" x_minutes: "%{count} мин"
x_months: "%{count} м" x_months: "%{count} м"
x_seconds: "%{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: exports:
blocks: Вашите блокирания blocks: Вашите блокирания
csv: CSV
follows: Вашите следвания follows: Вашите следвания
storage: Съхранение на мултимедия storage: Съхранение на мултимедия
generic: generic:
changes_saved_msg: Успешно запазване на промените! changes_saved_msg: Успешно запазване на промените!
save_changes: Запази промените save_changes: Запази промените
validation_errors: Нещо все още не е наред! Моля, прегледай грешките по-долу
imports: imports:
preface: Можеш да импортираш някои данни, като например всички хора, които следваш или блокираш в акаунта си на тази инстанция, от файлове, създадени чрез експорт в друга инстанция. preface: Можеш да импортираш някои данни, като например всички хора, които следваш или блокираш в акаунта си на тази инстанция, от файлове, създадени чрез експорт в друга инстанция.
success: Твоите данни бяха успешно качени и ще бъдат обработени впоследствие success: Твоите данни бяха успешно качени и ще бъдат обработени впоследствие
@ -67,6 +68,14 @@ bg:
blocking: Списък на блокираните blocking: Списък на блокираните
following: Списък на последователите following: Списък на последователите
upload: Качване upload: Качване
invites:
expires_in:
'1800': 30 minutes
'21600': 6 hours
'3600': 1 hour
'43200': 12 hours
'604800': 1 week
'86400': 1 day
media_attachments: media_attachments:
validations: validations:
images_and_video: Не мога да прикача видеоклип към публикация, която вече съдържа изображения images_and_video: Не мога да прикача видеоклип към публикация, която вече съдържа изображения
@ -96,17 +105,6 @@ bg:
reblog: reblog:
body: 'Твоята публикация беше споделена от %{name}:' body: 'Твоята публикация беше споделена от %{name}:'
subject: "%{name} сподели публикацията ти" subject: "%{name} сподели публикацията ти"
number:
human:
decimal_units:
format: "%n%u"
units:
billion: B
million: M
quadrillion: Q
thousand: K
trillion: T
unit: ''
pagination: pagination:
next: Напред next: Напред
prev: Назад prev: Назад

View File

@ -68,6 +68,7 @@ bn:
admin: পরিচালক admin: পরিচালক
bot: রোবট bot: রোবট
moderator: পরিচালক moderator: পরিচালক
unavailable: প্রোফাইল অনুপলব্ধ
unfollow: অনুসরণ বাদ unfollow: অনুসরণ বাদ
admin: admin:
account_actions: account_actions:
@ -80,6 +81,7 @@ bn:
destroyed_msg: প্রশাসনবস্তুত লেখাটি সঠিকভাবে মুছে ফেলা হয়েছে! destroyed_msg: প্রশাসনবস্তুত লেখাটি সঠিকভাবে মুছে ফেলা হয়েছে!
accounts: accounts:
approve: অনুমোদন দিন approve: অনুমোদন দিন
approve_all: প্রত্যেক কে অনুমতি দিন
are_you_sure: আপনি কি নিশ্চিত ? are_you_sure: আপনি কি নিশ্চিত ?
avatar: অবতার avatar: অবতার
by_domain: ওয়েবসাইট/কার্যক্ষেত্র by_domain: ওয়েবসাইট/কার্যক্ষেত্র
@ -137,5 +139,20 @@ bn:
outbox_url: চিঠি পাঠানোর বাক্স লিংক outbox_url: চিঠি পাঠানোর বাক্স লিংক
pending: পয্র্যবেক্ষণের অপেক্ষায় আছে pending: পয্র্যবেক্ষণের অপেক্ষায় আছে
perform_full_suspension: বাতিল করা 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:
verification: সত্যতা নির্ধারণ verification: সত্যতা নির্ধারণ

View File

@ -8,7 +8,7 @@ ca:
active_footnote: Usuaris actius mensuals (UAM) active_footnote: Usuaris actius mensuals (UAM)
administered_by: 'Administrat per:' administered_by: 'Administrat per:'
api: API api: API
apps: Apps mòbil apps: Apps mòbils
apps_platforms: Utilitza Mastodon des de iOS, Android i altres plataformes apps_platforms: Utilitza Mastodon des de iOS, Android i altres plataformes
browse_directory: Navega per el directori de perfils i filtra segons interessos 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 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:' server_stats: 'Estadístiques del servidor:'
source_code: Codi font source_code: Codi font
status_count_after: status_count_after:
one: estat one: toot
other: estats other: toots
status_count_before: Que han escrit status_count_before: Que han escrit
tagline: Segueix els teus amics i descobreix-ne de nous tagline: Segueix els teus amics i descobreix-ne de nous
terms: Termes del servei terms: Termes del servei
@ -210,7 +210,7 @@ ca:
resolve_report: "%{name} ha resolt l'informe %{target}" resolve_report: "%{name} ha resolt l'informe %{target}"
silence_account: "%{name} ha silenciat el compte de %{target}" silence_account: "%{name} ha silenciat el compte de %{target}"
suspend_account: "%{name} ha suspès el compte de %{target}" suspend_account: "%{name} ha suspès el compte de %{target}"
unassigned_report: "%{name} ha des-assignat l'informe %{target}" unassigned_report: "%{name} ha des-assignat l'informe %{target}"
unsilence_account: "%{name} ha silenciat el compte de %{target}" unsilence_account: "%{name} ha silenciat el compte de %{target}"
unsuspend_account: "%{name} ha llevat la suspensió del compte de %{target}" unsuspend_account: "%{name} ha llevat la suspensió del compte de %{target}"
update_custom_emoji: "%{name} ha actualitzat l'emoji %{target}" update_custom_emoji: "%{name} ha actualitzat l'emoji %{target}"
@ -533,7 +533,7 @@ ca:
login: Inicia sessió login: Inicia sessió
logout: Tanca sessió logout: Tanca sessió
migrate_account: Mou a un compte diferent migrate_account: Mou a un compte diferent
migrate_account_html: Si vols redirigir aquest compte a un altre diferent, el pots <a href="%{path}">configurar aquí</a>. migrate_account_html: Si vols redirigir aquest compte a un altre diferent, el pots <a href="%{path}">configurar aquí</a>.
or_log_in_with: O inicia sessió amb or_log_in_with: O inicia sessió amb
providers: providers:
cas: CAS cas: CAS
@ -563,7 +563,7 @@ ca:
about_x_years: "%{count} anys" about_x_years: "%{count} anys"
almost_x_years: "%{count}anys" almost_x_years: "%{count}anys"
half_a_minute: Ara mateix half_a_minute: Ara mateix
less_than_x_minutes: "%{count}m" less_than_x_minutes: fa %{count} minuts
less_than_x_seconds: Ara mateix less_than_x_seconds: Ara mateix
over_x_years: "%{count} anys" over_x_years: "%{count} anys"
x_days: "%{count} dies" x_days: "%{count} dies"
@ -766,7 +766,6 @@ ca:
quadrillion: Q quadrillion: Q
thousand: m thousand: m
trillion: T trillion: T
unit: " "
pagination: pagination:
newer: Més recent newer: Més recent
next: Endavant next: Endavant
@ -776,7 +775,7 @@ ca:
polls: polls:
errors: errors:
already_voted: Ja has votat en aquesta enquesta 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_long: està massa lluny en el futur
duration_too_short: és massa aviat duration_too_short: és massa aviat
expired: L'enquesta ja ha finalitzat expired: L'enquesta ja ha finalitzat
@ -933,10 +932,10 @@ ca:
<h3 id="collect">Quina informació recollim?</h3> <h3 id="collect">Quina informació recollim?</h3>
<ul> <ul>
<li><em>Informació bàsica del compte</em>: Si et registres en aquest servidor, se´t pot demanar que introdueixis un nom d'usuari, una adreça de correu electrònic i una contrasenya. També pots introduir informació de perfil addicional, com ara un nom de visualització i una biografia, i carregar una imatge de perfil i de capçalera. El nom d'usuari, el nom de visualització, la biografia, la imatge de perfil i la imatge de capçalera sempre apareixen públicament.</li> <li><em>Informació bàsica del compte</em>: Si et registres en aquest servidor, se´t pot demanar que introdueixis un nom d'usuari, una adreça de correu electrònic i una contrasenya. També pots introduir informació de perfil addicional, com ara un nom de visualització i una biografia, i carregar una imatge de perfil i de capçalera. El nom d'usuari, el nom de visualització, la biografia, la imatge de perfil i la imatge de capçalera sempre apareixen públicament.</li>
<li><em>Publicacions, seguiment i altra informació pública</em>: La llista de persones que segueixes s'enumeren públicament i el mateix passa amb els teus seguidors. Quan envies un missatge, la data i l'hora s'emmagatzemen, així com l'aplicació que va enviar el missatge. Els missatges poden contenir multimèdia, com ara imatges i vídeos. Els toots públics i no llistats estan disponibles públicament. En quan tinguis un toot en el teu perfil, aquest també és informació pública. Les teves entrades es lliuren als teus seguidors que en alguns casos significa que es lliuren a diferents servidors en els quals s'hi emmagatzemen còpies. Quan suprimeixes publicacions, també es lliuraran als teus seguidors. L'acció d'impulsar o marcar com a favorit una publicació sempre és pública.</li> <li><em>Publicacions, seguiment i altra informació pública</em>: La llista de persones que segueixes s'enumeren públicament i el mateix passa amb els teus seguidors. Quan envies un missatge, la data i l'hora s'emmagatzemen, així com l'aplicació que va enviar el missatge. Els missatges poden contenir multimèdia, com ara imatges i vídeos. Els toots públics i no llistats estan disponibles públicament. En quan tinguis un toot en el teu perfil, aquest també és informació pública. Les teves entrades es lliuren als teus seguidors que en alguns casos significa que es lliuren a diferents servidors en els quals s'hi emmagatzemen còpies. Quan suprimeixes publicacions, també es lliuraran als teus seguidors. L'acció d'impulsar o marcar com a favorit una publicació sempre és pública.</li>
<li><em>Toots directes i per a només seguidors</em>: Totes les publicacions s'emmagatzemen i processen al servidor. Els toots per a només seguidors només es lliuren als teus seguidors i als usuaris que s'esmenten en ells i els toots directes només es lliuren als usuaris esmentats. En alguns casos, significa que es lliuren a diferents servidors i s'hi emmagatzemen còpies. Fem un esforç de bona fe per limitar l'accés a aquestes publicacions només a les persones autoritzades, però és possible que altres servidors no ho facin. Per tant, és important revisar els servidors als quals pertanyen els teus seguidors. Pots canviar la opció de aprovar o rebutjar els nous seguidors manualment a la configuració. <em>Tingues en compte que els operadors del servidor i qualsevol servidor receptor poden visualitzar aquests missatges</em> i els destinataris poden fer una captura de pantalla, copiar-los o tornar-los a compartir. <em>No comparteixis cap informació perillosa a Mastodon.</em></li> <li><em>Toots directes i per a només seguidors</em>: Totes les publicacions s'emmagatzemen i processen al servidor. Els toots per a només seguidors només es lliuren als teus seguidors i als usuaris que s'esmenten en ells i els toots directes només es lliuren als usuaris esmentats. En alguns casos, significa que es lliuren a diferents servidors i s'hi emmagatzemen còpies. Fem un esforç de bona fe per limitar l'accés a aquestes publicacions només a les persones autoritzades, però és possible que altres servidors no ho facin. Per tant, és important revisar els servidors als quals pertanyen els teus seguidors. Pots canviar la opció de aprovar o rebutjar els nous seguidors manualment a la configuració. <em>Tingues en compte que els operadors del servidor i qualsevol servidor receptor poden visualitzar aquests missatges</em> i els destinataris poden fer una captura de pantalla, copiar-los o tornar-los a compartir. <em>No comparteixis cap informació perillosa a Mastodon.</em></li>
<li><em>IPs i altres metadades</em>: Quan inicies sessió registrem l'adreça IP en que l'has iniciat, així com el nom de l'aplicació o navegador. Totes les sessions registrades estan disponibles per a la teva revisió i revocació a la configuració. L'última adreça IP utilitzada s'emmagatzema durant un màxim de 12 mesos. També podrem conservar els registres que inclouen l'adreça IP de cada sol·licitud al nostre servidor.</li> <li><em>IPs i altres metadades</em>: Quan inicies sessió registrem l'adreça IP en que l'has iniciat, així com el nom de l'aplicació o navegador. Totes les sessions registrades estan disponibles per a la teva revisió i revocació a la configuració. L'última adreça IP utilitzada s'emmagatzema durant un màxim de 12 mesos. També podrem conservar els registres que inclouen l'adreça IP de cada sol·licitud al nostre servidor.</li>
</ul> </ul>
<hr class="spacer" /> <hr class="spacer" />
@ -946,9 +945,9 @@ ca:
<p>Qualsevol de la informació que recopilem de tu es pot utilitzar de la manera següent:</p> <p>Qualsevol de la informació que recopilem de tu es pot utilitzar de la manera següent:</p>
<ul> <ul>
<li>Per proporcionar la funcionalitat bàsica de Mastodon. Només pots interactuar amb el contingut d'altres persones i publicar el teu propi contingut quan hàgis iniciat la sessió. Per exemple, pots seguir altres persones per veure les publicacions combinades a la teva pròpia línia de temps personalitzada.</li> <li>Per proporcionar la funcionalitat bàsica de Mastodon. Només pots interactuar amb el contingut d'altres persones i publicar el teu propi contingut quan hàgis iniciat la sessió. Per exemple, pots seguir altres persones per veure les publicacions combinades a la teva pròpia línia de temps personalitzada.</li>
<li>Per ajudar a la moderació de la comunitat, per exemple comparar la teva adreça IP amb altres conegudes per determinar l'evasió de prohibicions o altres infraccions.</li> <li>Per ajudar a la moderació de la comunitat, per exemple comparar la teva adreça IP amb altres conegudes per determinar l'evasió de prohibicions o altres infraccions.</li>
<li>L'adreça electrònica que ens proporciones pot utilitzar-se per enviar-te informació, notificacions sobre altres persones que interactuen amb el teu contingut o t'envien missatges, i per respondre a les consultes i / o altres sol·licituds o preguntes.</li> <li>L'adreça electrònica que ens proporciones pot utilitzar-se per enviar-te informació, notificacions sobre altres persones que interactuen amb el teu contingut o t'envien missatges, i per respondre a les consultes i / o altres sol·licituds o preguntes.</li>
</ul> </ul>
<hr class="spacer" /> <hr class="spacer" />
@ -964,8 +963,8 @@ ca:
<p>Farem un esforç de bona fe per:</p> <p>Farem un esforç de bona fe per:</p>
<ul> <ul>
<li>Conservar els registres del servidor que continguin l'adreça IP de totes les sol·licituds que rebi, tenint em compte que aquests registres es mantenen no més de 90 dies.</li> <li>Conservar els registres del servidor que continguin l'adreça IP de totes les sol·licituds que rebi, tenint em compte que aquests registres es mantenen no més de 90 dies.</li>
<li>Conservar les adreces IP associades als usuaris registrats no més de 12 mesos.</li> <li>Conservar les adreces IP associades als usuaris registrats no més de 12 mesos.</li>
</ul> </ul>
<p>Pots sol·licitar i descarregar un arxiu del teu contingut incloses les publicacions, els fitxers adjunts multimèdia, la imatge de perfil i la imatge de capçalera.</p> <p>Pots sol·licitar i descarregar un arxiu del teu contingut incloses les publicacions, els fitxers adjunts multimèdia, la imatge de perfil i la imatge de capçalera.</p>
@ -1006,7 +1005,7 @@ ca:
<p>Si decidim canviar la nostra política de privadesa, publicarem aquests canvis en aquesta pàgina.</p> <p>Si decidim canviar la nostra política de privadesa, publicarem aquests canvis en aquesta pàgina.</p>
<p> Aquest document és CC-BY-SA. Actualitzat per darrera vegada el 7 de Març del 2018.</p> <p>Aquest document és CC-BY-SA. Actualitzat per darrera vegada el 7 de Març del 2018.</p>
<p>Originalment adaptat des del <a href="https://github.com/discourse/discourse">Discourse privacy policy</a>.</p> <p>Originalment adaptat des del <a href="https://github.com/discourse/discourse">Discourse privacy policy</a>.</p>
title: "%{instance} Condicions del servei i política de privadesa" title: "%{instance} Condicions del servei i política de privadesa"

View File

@ -154,7 +154,7 @@ co:
already_confirmed: Stutilizatore hè digià cunfirmatu already_confirmed: Stutilizatore hè digià cunfirmatu
send: Rimandà une-mail di cunfirmazione send: Rimandà une-mail di cunfirmazione
success: Le-mail di cunfirmazione hè statu mandatu! success: Le-mail di cunfirmazione hè statu mandatu!
reset: Reset reset: Riinizializà
reset_password: Riinizializà a chjave daccessu reset_password: Riinizializà a chjave daccessu
resubscribe: Riabbunassi resubscribe: Riabbunassi
role: Auturizazione role: Auturizazione
@ -259,7 +259,7 @@ co:
single_user_mode: Modu utilizatore unicu single_user_mode: Modu utilizatore unicu
software: Lugiziale software: Lugiziale
space: Usu di u spaziu space: Usu di u spaziu
title: Dashboard title: Quatru di strumenti
total_users: utilizatori in tutale total_users: utilizatori in tutale
trends: Tindenze trends: Tindenze
week_interactions: interazzione sta settimana week_interactions: interazzione sta settimana
@ -558,17 +558,17 @@ co:
title: Siguità %{acct} title: Siguità %{acct}
datetime: datetime:
distance_in_words: distance_in_words:
about_x_hours: "%{count}h" about_x_hours: "%{count}o"
about_x_months: "%{count}mo" about_x_months: "%{count}Me"
about_x_years: "%{count}y" about_x_years: "%{count}A"
almost_x_years: "%{count}y" almost_x_years: "%{count}A"
half_a_minute: Avà half_a_minute: Avà
less_than_x_minutes: "%{count}m" less_than_x_minutes: "%{count}m"
less_than_x_seconds: Avà less_than_x_seconds: Avà
over_x_years: "%{count}y" over_x_years: "%{count}A"
x_days: "%{count}d" x_days: "%{count}ghj"
x_minutes: "%{count}m" x_minutes: "%{count}m"
x_months: "%{count}mo" x_months: "%{count}Me"
x_seconds: "%{count}s" x_seconds: "%{count}s"
deletes: deletes:
bad_password_msg: È nò! Sta chjave ùn hè curretta bad_password_msg: È nò! Sta chjave ùn hè curretta
@ -766,7 +766,6 @@ co:
quadrillion: P quadrillion: P
thousand: K thousand: K
trillion: T trillion: T
unit: ''
pagination: pagination:
newer: Più ricente newer: Più ricente
next: Dopu next: Dopu
@ -933,10 +932,10 @@ co:
<h3 id="collect">Quelles informations collectons-nous?</h3> <h3 id="collect">Quelles informations collectons-nous?</h3>
<ul> <ul>
<li><em>Informations de base sur votre compte</em>: Si vous vous inscrivez sur ce serveur, il vous sera demandé de rentrer un identifiant, une adresse électronique et un mot de passe. Vous pourrez également ajouter des informations additionnelles sur votre profil, telles quun nom public et une biographie, ainsi que téléverser une image de profil et une image den-tête. Vos identifiant, nom public, biographie, image de profil et image den-tête seront toujours affichés publiquement.</li> <li><em>Informations de base sur votre compte</em>: Si vous vous inscrivez sur ce serveur, il vous sera demandé de rentrer un identifiant, une adresse électronique et un mot de passe. Vous pourrez également ajouter des informations additionnelles sur votre profil, telles quun nom public et une biographie, ainsi que téléverser une image de profil et une image den-tête. Vos identifiant, nom public, biographie, image de profil et image den-tête seront toujours affichés publiquement.</li>
<li><em>Posts, liste dabonnements et autres informations publiques</em>: La liste de vos abonnements ainsi que la liste de vos abonné·e·s sont publiques. Quand vous postez un message, la date et lheure denvoi ainsi que le nom de lapplication utilisée pour sa transmission sont enregistré·e·s. Des médias, tels que des images ou des vidéos, peuvent être joints aux messages. Les posts publics et non listés sont affichés publiquement. Quand vous mettez en avant un post sur votre profil, ce post est également affiché publiquement. Vos messages sont délivrés à vos abonné·e·s, ce qui, dans certains cas, signifie quils sont délivrés à des serveurs tiers et que ces derniers en stockent une copie. Quand vous supprimer un post, il est probable que vos abonné·e·s en soient informé·e·s. Partager un message ou le marquer comme favori est toujours une action publique.</li> <li><em>Posts, liste dabonnements et autres informations publiques</em>: La liste de vos abonnements ainsi que la liste de vos abonné·e·s sont publiques. Quand vous postez un message, la date et lheure denvoi ainsi que le nom de lapplication utilisée pour sa transmission sont enregistré·e·s. Des médias, tels que des images ou des vidéos, peuvent être joints aux messages. Les posts publics et non listés sont affichés publiquement. Quand vous mettez en avant un post sur votre profil, ce post est également affiché publiquement. Vos messages sont délivrés à vos abonné·e·s, ce qui, dans certains cas, signifie quils sont délivrés à des serveurs tiers et que ces derniers en stockent une copie. Quand vous supprimer un post, il est probable que vos abonné·e·s en soient informé·e·s. Partager un message ou le marquer comme favori est toujours une action publique.</li>
<li><em>Posts directs et abonné·e·s uniquement</em>: Tous les posts sont stockés et traités par le serveur. Les messages abonné·e·s uniquement ne sont transmis quà vos abonné·e·s et aux personnes mentionnées dans le corps du message, tandis que les messages directs ne sont transmis quaux personnes mentionnées. Dans certains cas, cela signifie quils sont délivrés à des serveurs tiers et que ces derniers en stockent une copie. Nous faisons un effort de bonne fois pour en limiter laccès uniquement aux personnes autorisées, mais ce nest pas nécessairement le cas des autres serveurs. Il est donc très important que vous vérifiiez les serveurs auxquels appartiennent vos abonné·e·s. Il vous est possible dactiver une option dans les paramètres afin dapprouver et de rejeter manuellement les nouveaux·lles abonné·e·s. <em>Gardez sil-vous-plaît en mémoire que les opérateur·rice·s du serveur ainsi que celles et ceux de nimporte quel serveur récepteur peuvent voir ces messages</em> et quil est possible pour les destinataires de faire des captures décran, de copier et plus généralement de repartager ces messages. <em>Ne partager aucune information sensible à laide de Mastodon.</em></li> <li><em>Posts directs et abonné·e·s uniquement</em>: Tous les posts sont stockés et traités par le serveur. Les messages abonné·e·s uniquement ne sont transmis quà vos abonné·e·s et aux personnes mentionnées dans le corps du message, tandis que les messages directs ne sont transmis quaux personnes mentionnées. Dans certains cas, cela signifie quils sont délivrés à des serveurs tiers et que ces derniers en stockent une copie. Nous faisons un effort de bonne fois pour en limiter laccès uniquement aux personnes autorisées, mais ce nest pas nécessairement le cas des autres serveurs. Il est donc très important que vous vérifiiez les serveurs auxquels appartiennent vos abonné·e·s. Il vous est possible dactiver une option dans les paramètres afin dapprouver et de rejeter manuellement les nouveaux·lles abonné·e·s. <em>Gardez sil-vous-plaît en mémoire que les opérateur·rice·s du serveur ainsi que celles et ceux de nimporte quel serveur récepteur peuvent voir ces messages</em> et quil est possible pour les destinataires de faire des captures décran, de copier et plus généralement de repartager ces messages. <em>Ne partager aucune information sensible à laide de Mastodon.</em></li>
<li><em>IP et autres métadonnées</em>: Quand vous vous connectez, nous enregistrons votre adresse IP ainsi que le nom de votre navigateur web. Toutes les sessions enregistrées peuvent être consultées dans les paramètres, afin que vous puissiez les surveiller et éventuellement les révoquer. La dernière adresse IP utilisée est conservée pour une durée de 12 mois. Nous sommes également susceptibles de conserver les journaux du serveur, ce qui inclut ladresse IP de chaque requête reçue.</li> <li><em>IP et autres métadonnées</em>: Quand vous vous connectez, nous enregistrons votre adresse IP ainsi que le nom de votre navigateur web. Toutes les sessions enregistrées peuvent être consultées dans les paramètres, afin que vous puissiez les surveiller et éventuellement les révoquer. La dernière adresse IP utilisée est conservée pour une durée de 12 mois. Nous sommes également susceptibles de conserver les journaux du serveur, ce qui inclut ladresse IP de chaque requête reçue.</li>
</ul> </ul>
<hr class="spacer" /> <hr class="spacer" />
@ -946,9 +945,9 @@ co:
<p>Toutes les informations que nous collectons sur vous peuvent être utilisées dune des manières suivantes:</p> <p>Toutes les informations que nous collectons sur vous peuvent être utilisées dune des manières suivantes:</p>
<ul> <ul>
<li>Pour vous fournir les fonctionnalités de base de Mastodon. Vous ne pouvez interagir avec le contenu des autres et poster votre propre contenu que lorsque vous êtes connecté·e. Par exemple, vous pouvez vous abonner à plusieurs autres comptes pour voir lensemble de leurs posts dans votre fil daccueil personnalisé.</li> <li>Pour vous fournir les fonctionnalités de base de Mastodon. Vous ne pouvez interagir avec le contenu des autres et poster votre propre contenu que lorsque vous êtes connecté·e. Par exemple, vous pouvez vous abonner à plusieurs autres comptes pour voir lensemble de leurs posts dans votre fil daccueil personnalisé.</li>
<li>Pour aider à la modération de la communauté, par exemple, comparer votre adresse IP à dautres afin de déterminer si un bannissement a été contourné ou si une autre violation aux règles a été commise.</li> <li>Pour aider à la modération de la communauté, par exemple, comparer votre adresse IP à dautres afin de déterminer si un bannissement a été contourné ou si une autre violation aux règles a été commise.</li>
<li>Ladresse électronique que vous nous avez fournie peut être utilisée pour vous envoyez des informations, des notifications lorsque dautres personnes interagissent avec votre contenu ou vous envoient des messages, pour répondre à des demandes de votre part ainsi que pour tout autres requêtes ou questions.</li> <li>Ladresse électronique que vous nous avez fournie peut être utilisée pour vous envoyez des informations, des notifications lorsque dautres personnes interagissent avec votre contenu ou vous envoient des messages, pour répondre à des demandes de votre part ainsi que pour tout autres requêtes ou questions.</li>
</ul> </ul>
<hr class="spacer" /> <hr class="spacer" />
@ -964,8 +963,8 @@ co:
<p>Nous ferons un effort de bonne foi:</p> <p>Nous ferons un effort de bonne foi:</p>
<ul> <ul>
<li>Pour ne pas conserver plus de 90 jours les journaux systèmes contenant les adresses IP de toutes les requêtes reçues par ce serveur.</li> <li>Pour ne pas conserver plus de 90 jours les journaux systèmes contenant les adresses IP de toutes les requêtes reçues par ce serveur.</li>
<li>Pour ne pas conserver plus de 12 mois les adresses IP associées aux utilisateur·ice·s enregistré·e·s.</li> <li>Pour ne pas conserver plus de 12 mois les adresses IP associées aux utilisateur·ice·s enregistré·e·s.</li>
</ul> </ul>
<p>Vous pouvez demander une archive de votre contenu, incluant vos posts, vos médias joints, votre image de profil et votre image den-tête.</p> <p>Vous pouvez demander une archive de votre contenu, incluant vos posts, vos médias joints, votre image de profil et votre image den-tête.</p>

View File

@ -30,14 +30,16 @@ cs:
server_stats: 'Statistika serveru:' server_stats: 'Statistika serveru:'
source_code: Zdrojový kód source_code: Zdrojový kód
status_count_after: status_count_after:
few: tooty few: příspěvky
one: toot many: příspěvků
other: tootů one: příspěvek
other: příspěvků
status_count_before: Kteří napsali status_count_before: Kteří napsali
tagline: Sledujte své přátele a objevujte nové tagline: Sledujte své přátele a objevujte nové
terms: Podmínky používání terms: Podmínky používání
user_count_after: user_count_after:
few: uživatelé few: uživatelé
many: uživatelů
one: uživatel one: uživatel
other: uživatelů other: uživatelů
user_count_before: Domov user_count_before: Domov
@ -47,6 +49,7 @@ cs:
follow: Sledovat follow: Sledovat
followers: followers:
few: Sledující few: Sledující
many: Sledujících
one: Sledující one: Sledující
other: Sledujících other: Sledujících
following: Sledovaných following: Sledovaných
@ -63,6 +66,7 @@ cs:
following: Musíte již sledovat osobu, kterou chcete podpořit following: Musíte již sledovat osobu, kterou chcete podpořit
posts: posts:
few: Tooty few: Tooty
many: Tootů
one: Toot one: Toot
other: Tootů other: Tootů
posts_tab_heading: Tooty posts_tab_heading: Tooty
@ -118,7 +122,7 @@ cs:
header: Záhlaví header: Záhlaví
inbox_url: URL příchozí schránky inbox_url: URL příchozí schránky
invited_by: Pozván/a uživatelem invited_by: Pozván/a uživatelem
ip: IP ip: IP adresa
joined: Připojil/a se joined: Připojil/a se
location: location:
all: Všechny all: Všechny
@ -296,6 +300,7 @@ cs:
show: show:
affected_accounts: affected_accounts:
few: "%{count} účty v databázi byly ovlivněny" 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 one: Jeden účet v databázi byl ovlivněn
other: "%{count} účtů v databázi bylo ovlivněno" other: "%{count} účtů v databázi bylo ovlivněno"
retroactive: retroactive:
@ -322,6 +327,7 @@ cs:
delivery_available: Doručení je k dispozici delivery_available: Doručení je k dispozici
known_accounts: known_accounts:
few: "%{count} známé účty" few: "%{count} známé účty"
many: "%{count} známých účtů"
one: "%{count} známý účet" one: "%{count} známý účet"
other: "%{count} známých účtů" other: "%{count} známých účtů"
moderation: 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! 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: people:
few: "%{count} lidé" few: "%{count} lidé"
many: "%{count} lidí"
one: "%{count} člověk" one: "%{count} člověk"
other: "%{count} lidí" other: "%{count} lidí"
errors: errors:
@ -657,6 +664,7 @@ cs:
save_changes: Uložit změny save_changes: Uložit změny
validation_errors: validation_errors:
few: Něco ještě není úplně v pořádku! Prosím zkontrolujte %{count} chyby níže 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 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 other: Něco ještě není úplně v pořádku! Prosím zkontrolujte %{count} chyb níže
html_validator: html_validator:
@ -709,6 +717,7 @@ cs:
invited_by: 'Byl/a jste pozván/a uživatelem:' invited_by: 'Byl/a jste pozván/a uživatelem:'
max_uses: max_uses:
few: "%{count} použití" few: "%{count} použití"
many: "%{count} použití"
one: 1 použití one: 1 použití
other: "%{count} použití" other: "%{count} použití"
max_uses_prompt: Bez limitu max_uses_prompt: Bez limitu
@ -738,10 +747,12 @@ cs:
mention: "%{name} vás zmínil/a v:" mention: "%{name} vás zmínil/a v:"
new_followers_summary: new_followers_summary:
few: Navíc jste získal/a %{count} nové sledující, zatímco jste byl/a pryč! Skvělé! 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á! 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é! other: Navíc jste získal/a %{count} nových sledujících, zatímco jste byl/a pryč! Úžasné!
subject: subject:
few: "%{count} nová oznámení od vaší poslední návštěvy \U0001F418" 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" 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" other: "%{count} nových oznámení od vaší poslední návštěvy \U0001F418"
title: Ve vaší nepřítomnosti… title: Ve vaší nepřítomnosti…
@ -777,7 +788,6 @@ cs:
quadrillion: bld quadrillion: bld
thousand: tis thousand: tis
trillion: bil trillion: bil
unit: ''
pagination: pagination:
newer: Novější newer: Novější
next: Další next: Další
@ -860,7 +870,7 @@ cs:
current_session: Aktuální relace current_session: Aktuální relace
description: "%{browser} na %{platform}" description: "%{browser} na %{platform}"
explanation: Tohle jsou webové prohlížeče aktuálně přihlášené na váš účet Mastodon. explanation: Tohle jsou webové prohlížeče aktuálně přihlášené na váš účet Mastodon.
ip: IP ip: IP adresa
platforms: platforms:
adobe_air: Adobe Air adobe_air: Adobe Air
android: Androidu android: Androidu
@ -902,16 +912,19 @@ cs:
description: 'Přiloženo: %{attached}' description: 'Přiloženo: %{attached}'
image: image:
few: "%{count} obrázky" few: "%{count} obrázky"
many: "%{count} obrázků"
one: "%{count} obrázek" one: "%{count} obrázek"
other: "%{count} obrázků" other: "%{count} obrázků"
video: video:
few: "%{count} videa" few: "%{count} videa"
many: "%{count} videí"
one: "%{count} video" one: "%{count} video"
other: "%{count} videí" other: "%{count} videí"
boosted_from_html: Boostnuto z %{acct_link} boosted_from_html: Boostnuto z %{acct_link}
content_warning: 'Varování o obsahu: %{warning}' content_warning: 'Varování o obsahu: %{warning}'
disallowed_hashtags: disallowed_hashtags:
few: 'obsahoval nepovolené hashtagy: %{tags}' few: 'obsahoval nepovolené hashtagy: %{tags}'
many: 'obsahoval nepovolené hashtagy: %{tags}'
one: 'obsahoval nepovolený hashtag: %{tags}' one: 'obsahoval nepovolený hashtag: %{tags}'
other: 'obsahoval nepovolené hashtagy: %{tags}' other: 'obsahoval nepovolené hashtagy: %{tags}'
language_detection: Zjistit jazyk automaticky language_detection: Zjistit jazyk automaticky
@ -925,6 +938,7 @@ cs:
poll: poll:
total_votes: total_votes:
few: "%{count} hlasy" few: "%{count} hlasy"
many: "%{count} hlasů"
one: "%{count} hlas" one: "%{count} hlas"
other: "%{count} hlasů" other: "%{count} hlasů"
vote: Hlasovat vote: Hlasovat
@ -948,10 +962,10 @@ cs:
<h3 id="collect">Jaké informace sbíráme?</h3> <h3 id="collect">Jaké informace sbíráme?</h3>
<ul> <ul>
<li><em>Základní informace o účtu</em>: Pokud se na tomto serveru zaregistrujete, můžeme vás požádat o zadání uživatelského jména, e-mailové adresy a hesla. Můžete také zadat dodatečné profilové informace, jako například zobrazované jméno a krátký životopis, a nahrát si profilovou fotografii a obrázek záhlaví. Uživatelské i zobrazované jméno, životopis, profilová fotografie a obrázek záhlaví jsou vždy uvedeny veřejně.</li> <li><em>Základní informace o účtu</em>: Pokud se na tomto serveru zaregistrujete, můžeme vás požádat o zadání uživatelského jména, e-mailové adresy a hesla. Můžete také zadat dodatečné profilové informace, jako například zobrazované jméno a krátký životopis, a nahrát si profilovou fotografii a obrázek záhlaví. Uživatelské i zobrazované jméno, životopis, profilová fotografie a obrázek záhlaví jsou vždy uvedeny veřejně.</li>
<li><em>Příspěvky, sledující a další veřejné informace</em>: Seznam lidí, které sledujete, je uveden veřejně, totéž platí i pro vaše sledující. Když sem nahrajete zprávu, bude uloženo datum a čas, společně s aplikací, ze které jste zprávu odeslali. Zprávy mohou obsahovat mediální přílohy, jako jsou obrázky a videa. Veřejné a neuvedené příspěvky jsou dostupné veřejně. Pokud na vašem profilu uvedete příspěvek, je to také veřejně dostupná informace. Vaše příspěvky jsou doručeny vašim sledujícím, což v některých případech znamená, že budou doručeny na různé servery, na kterých budou ukládány kopie. Pokud příspěvky smažete, bude tohle taktéž doručeno vašim sledujícím. Akce znovusdílení nebo oblíbení jiného příspěvku je vždy veřejná.</li> <li><em>Příspěvky, sledující a další veřejné informace</em>: Seznam lidí, které sledujete, je uveden veřejně, totéž platí i pro vaše sledující. Když sem nahrajete zprávu, bude uloženo datum a čas, společně s aplikací, ze které jste zprávu odeslali. Zprávy mohou obsahovat mediální přílohy, jako jsou obrázky a videa. Veřejné a neuvedené příspěvky jsou dostupné veřejně. Pokud na vašem profilu uvedete příspěvek, je to také veřejně dostupná informace. Vaše příspěvky jsou doručeny vašim sledujícím, což v některých případech znamená, že budou doručeny na různé servery, na kterých budou ukládány kopie. Pokud příspěvky smažete, bude tohle taktéž doručeno vašim sledujícím. Akce znovusdílení nebo oblíbení jiného příspěvku je vždy veřejná.</li>
<li><em>Příspěvky přímé a pouze pro sledující</em>: Všechny příspěvky jsou uloženy a zpracovány na serveru. Příspěvky pouze pro sledující jsou doručeny vašim sledujícím a uživatelům v nich zmíněným a přímé příspěvky jsou doručeny pouze uživatelům v nich zmíněným. V některých případech tohle znamená, že budou doručeny na různé servery, na kterých budou ukládány kopie. Upřímně se snažíme omezit přístup k těmto příspěvkům pouze na autorizované uživatele, ovšem jiné servery tak nemusejí učinit. Proto je důležité posoudit servery, ke kterým vaši sledující patří. V nastavení si můžete zapnout volbu pro manuální schvalování či odmítnutí nových sledujících. <em>Prosím mějte na paměti, že operátoři tohoto serveru a kteréhokoliv přijímacího serveru mohou tyto zprávy vidět</em> a příjemci mohou vytvořit jejich snímek, zkopírovat je, nebo je jinak sdílet. <em>Nesdílejte přes Mastodon jakékoliv nebezpečné informace.</em></li> <li><em>Příspěvky přímé a pouze pro sledující</em>: Všechny příspěvky jsou uloženy a zpracovány na serveru. Příspěvky pouze pro sledující jsou doručeny vašim sledujícím a uživatelům v nich zmíněným a přímé příspěvky jsou doručeny pouze uživatelům v nich zmíněným. V některých případech tohle znamená, že budou doručeny na různé servery, na kterých budou ukládány kopie. Upřímně se snažíme omezit přístup k těmto příspěvkům pouze na autorizované uživatele, ovšem jiné servery tak nemusejí učinit. Proto je důležité posoudit servery, ke kterým vaši sledující patří. V nastavení si můžete zapnout volbu pro manuální schvalování či odmítnutí nových sledujících. <em>Prosím mějte na paměti, že operátoři tohoto serveru a kteréhokoliv přijímacího serveru mohou tyto zprávy vidět</em> a příjemci mohou vytvořit jejich snímek, zkopírovat je, nebo je jinak sdílet. <em>Nesdílejte přes Mastodon jakékoliv nebezpečné informace.</em></li>
<li><em>IP adresy a další metadata</em>: Když se přihlásíte, zaznamenáváme IP adresu, ze které se přihlašujete, jakožto i název vašeho webového prohlížeče. Všechny vaše webové relace jsou v nastavení přístupné k vašemu posouzení a odvolání. Nejpozdější IP adresa použita je uložena maximálně do 12 měsíců. Můžeme také uchovávat serverové záznamy, které obsahují IP adresy každého požadavku odeslaného na náš server.</li> <li><em>IP adresy a další metadata</em>: Když se přihlásíte, zaznamenáváme IP adresu, ze které se přihlašujete, jakožto i název vašeho webového prohlížeče. Všechny vaše webové relace jsou v nastavení přístupné k vašemu posouzení a odvolání. Nejpozdější IP adresa použita je uložena maximálně do 12 měsíců. Můžeme také uchovávat serverové záznamy, které obsahují IP adresy každého požadavku odeslaného na náš server.</li>
</ul> </ul>
<hr class="spacer" /> <hr class="spacer" />
@ -961,9 +975,9 @@ cs:
<p>Jakékoliv informace, které sbíráme, mohou být použity následujícími způsoby:</p> <p>Jakékoliv informace, které sbíráme, mohou být použity následujícími způsoby:</p>
<ul> <ul>
<li>K poskytnutí základních funkcí Mastodonu. Interagovat s obsahem od jiných lidí a přispívat svým vlastním obsahem můžete pouze, pokud jste přihlášeni. Můžete například sledovat jiné lidi a zobrazit si jejich kombinované příspěvky ve vaší vlastní personalizované časové ose.</li> <li>K poskytnutí základních funkcí Mastodonu. Interagovat s obsahem od jiných lidí a přispívat svým vlastním obsahem můžete pouze, pokud jste přihlášeni. Můžete například sledovat jiné lidi a zobrazit si jejich kombinované příspěvky ve vaší vlastní personalizované časové ose.</li>
<li>Pro pomoc moderování komunity, například porovnáním vaší IP adresy s dalšími známými adresami pro určení vyhýbání se zákazům či jiných přestupků.</li> <li>Pro pomoc moderování komunity, například porovnáním vaší IP adresy s dalšími známými adresami pro určení vyhýbání se zákazům či jiných přestupků.</li>
<li>E-mailová adresa, kterou nám poskytnete, může být použita pro zasílání informací, oznámení o interakcích jiných uživatelů s vaším obsahem nebo přijatých zprávách a k odpovědím na dotazy a/nebo další požadavky či otázky.</li> <li>E-mailová adresa, kterou nám poskytnete, může být použita pro zasílání informací, oznámení o interakcích jiných uživatelů s vaším obsahem nebo přijatých zprávách a k odpovědím na dotazy a/nebo další požadavky či otázky.</li>
</ul> </ul>
<hr class="spacer" /> <hr class="spacer" />
@ -979,8 +993,8 @@ cs:
<p>Budeme se upřímně snažit:</p> <p>Budeme se upřímně snažit:</p>
<ul> <ul>
<li>Uchovávat serverové záznamy obsahující IP adresy všech požadavků pro tento server, pokud se takové záznamy uchovávají, maximálně 90 dní.</li> <li>Uchovávat serverové záznamy obsahující IP adresy všech požadavků pro tento server, pokud se takové záznamy uchovávají, maximálně 90 dní.</li>
<li>Uchovávat IP adresy související s registrovanými uživateli maximálně 12 měsíců.</li> <li>Uchovávat IP adresy související s registrovanými uživateli maximálně 12 měsíců.</li>
</ul> </ul>
<p>Kdykoliv si můžete vyžádat a stáhnout archiv vašeho obsahu, včetně vašich příspěvků, mediálních příloh, profilové fotografie a obrázku záhlaví.</p> <p>Kdykoliv si můžete vyžádat a stáhnout archiv vašeho obsahu, včetně vašich příspěvků, mediálních příloh, profilové fotografie a obrázku záhlaví.</p>

View File

@ -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_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_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 about_this: Ynghylch
active_count_after: yn weithredol
active_footnote: Defnyddwyr Gweithredol Misol (DGM)
administered_by: 'Gweinyddir gan:' administered_by: 'Gweinyddir gan:'
api: API api: API
apps: Apiau symudol 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: Cyswllt
contact_missing: Heb ei osod contact_missing: Heb ei osod
contact_unavailable: Ddim yn berthnasol contact_unavailable: Ddim yn berthnasol
discover_users: Darganfod defnyddwyr
documentation: Dogfennaeth documentation: Dogfennaeth
extended_description_html: | extended_description_html: |
<h3>Lle da ar gyfer rheolau</h3> <h3>Lle da ar gyfer rheolau</h3>
<p>Nid yw'r disgrifiad estynedig wedi ei osod eto.</p> <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 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} hosted_on: Mastodon wedi ei weinyddu ar %{domain}
learn_more: Dysu mwy learn_more: Dysu mwy
privacy_policy: Polisi preifatrwydd privacy_policy: Polisi preifatrwydd
see_whats_happening: Gweld beth sy'n digwydd
server_stats: 'Ystadegau gweinydd:'
source_code: Cod ffynhonnell source_code: Cod ffynhonnell
status_count_after: status_count_after:
few: statwsau few: statwsau
@ -27,6 +37,7 @@ cy:
two: statwsau two: statwsau
zero: statwsau zero: statwsau
status_count_before: Ysgriffennwyd gan status_count_before: Ysgriffennwyd gan
tagline: Dilyn ffrindiau a darganfod rhai newydd
terms: Telerau gwasanaeth terms: Telerau gwasanaeth
user_count_after: user_count_after:
few: defnyddwyr few: defnyddwyr
@ -73,17 +84,20 @@ cy:
admin: Gweinyddwr admin: Gweinyddwr
bot: Bot bot: Bot
moderator: Safonwr moderator: Safonwr
unavailable: Proffil ddim ar gael
unfollow: Dad-ddilyn unfollow: Dad-ddilyn
admin: admin:
account_actions: account_actions:
action: Cyflawni gweithred action: Cyflawni gweithred
title: Perfformio cymedroli ar %{acct} title: Perfformio gweithrediad goruwchwylio ar %{acct}
account_moderation_notes: account_moderation_notes:
create: Gadael nodyn create: Gadael nodyn
created_msg: Crewyd nodyn cymedroli yn llwyddiannus! created_msg: Crewyd nodyn goruwchwylio yn llwyddiannus!
delete: Dileu delete: Dileu
destroyed_msg: Dinistrwyd nodyn cymedroli yn llwyddiannus! destroyed_msg: Dinistrwyd nodyn goruwchwylio yn llwyddiannus!
accounts: accounts:
approve: Cymeradwyo
approve_all: Cymeradwyo pob un
are_you_sure: Ydych chi'n siŵr? are_you_sure: Ydych chi'n siŵr?
avatar: Afatar avatar: Afatar
by_domain: Parth by_domain: Parth
@ -129,15 +143,18 @@ cy:
moderation: moderation:
active: Yn weithredol active: Yn weithredol
all: Popeth all: Popeth
pending: Yn aros
silenced: Wedi ei dawelu silenced: Wedi ei dawelu
suspended: Wedi ei atal suspended: Wedi ei atal
title: Cymedroli title: Goruwchwyliad
moderation_notes: Nodiadau cymedroli moderation_notes: Nodiadau goruwchwylio
most_recent_activity: Gweithgarwch diweddaraf most_recent_activity: Gweithgarwch diweddaraf
most_recent_ip: IP 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 no_limits_imposed: Dim terfynau wedi'i gosod
not_subscribed: Heb danysgrifio not_subscribed: Heb danysgrifio
outbox_url: Allflwch URL outbox_url: Allflwch URL
pending: Yn aros am adolygiad
perform_full_suspension: Atal perform_full_suspension: Atal
profile_url: URL proffil profile_url: URL proffil
promote: Hyrwyddo promote: Hyrwyddo
@ -145,6 +162,8 @@ cy:
public: Cyhoeddus public: Cyhoeddus
push_subscription_expires: Tanysgrifiad PuSH yn dod i ben push_subscription_expires: Tanysgrifiad PuSH yn dod i ben
redownload: Adnewyddu proffil redownload: Adnewyddu proffil
reject: Gwrthod
reject_all: Gwrthod pob un
remove_avatar: Dileu afatar remove_avatar: Dileu afatar
remove_header: Dileu pennawd remove_header: Dileu pennawd
resend_confirmation: resend_confirmation:
@ -157,7 +176,7 @@ cy:
role: Caniatâd role: Caniatâd
roles: roles:
admin: Gweinyddwr admin: Gweinyddwr
moderator: Safonwr moderator: Aroglygydd
staff: Staff staff: Staff
user: Defnyddiwr user: Defnyddiwr
salmon_url: URL Eog salmon_url: URL Eog
@ -171,6 +190,7 @@ cy:
statuses: Statysau statuses: Statysau
subscribe: Tanysgrifio subscribe: Tanysgrifio
suspended: Ataliwyd suspended: Ataliwyd
time_in_queue: Yn aros yn y rhestr am %{time}
title: Cyfrifon title: Cyfrifon
unconfirmed_email: E-bost heb ei gadarnhau unconfirmed_email: E-bost heb ei gadarnhau
undo_silenced: Dadwneud tawelu undo_silenced: Dadwneud tawelu
@ -246,6 +266,7 @@ cy:
feature_profile_directory: Cyfeiriadur proffil feature_profile_directory: Cyfeiriadur proffil
feature_registrations: Cofrestriadau feature_registrations: Cofrestriadau
feature_relay: Relái ffederasiwn feature_relay: Relái ffederasiwn
feature_timeline_preview: Rhagolwg o'r ffrwd
features: Nodweddion features: Nodweddion
hidden_service: Ffederasiwn a gwasanaethau cudd hidden_service: Ffederasiwn a gwasanaethau cudd
open_reports: adroddiadau agored open_reports: adroddiadau agored
@ -265,9 +286,10 @@ cy:
created_msg: Mae'r bloc parth nawr yn cael ei brosesu created_msg: Mae'r bloc parth nawr yn cael ei brosesu
destroyed_msg: Mae'r bloc parth wedi ei ddadwneud destroyed_msg: Mae'r bloc parth wedi ei ddadwneud
domain: Parth 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: new:
create: Creu bloc 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: 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. 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 noop: Dim
@ -323,7 +345,7 @@ cy:
moderation: moderation:
all: Pob all: Pob
limited: Gyfyngedig limited: Gyfyngedig
title: Cymedroli title: Goruwchwyliad
title: Ffederasiwn title: Ffederasiwn
total_blocked_by_us: Wedi'i bloc gan ni total_blocked_by_us: Wedi'i bloc gan ni
total_followed_by_them: Yn dilyn ganynt total_followed_by_them: Yn dilyn ganynt
@ -338,6 +360,8 @@ cy:
expired: Wedi dod i ben expired: Wedi dod i ben
title: Hidlo title: Hidlo
title: Gwahoddiadau title: Gwahoddiadau
pending_accounts:
title: Cyfrifau yn aros (%{count})
relays: relays:
add_new: Ychwanegau relái newydd add_new: Ychwanegau relái newydd
delete: Dileu delete: Dileu
@ -363,7 +387,7 @@ cy:
action_taken_by: Gwnaethpwyd hyn gan action_taken_by: Gwnaethpwyd hyn gan
are_you_sure: Ydych chi'n sicr? are_you_sure: Ydych chi'n sicr?
assign_to_self: Aseinio i mi assign_to_self: Aseinio i mi
assigned: Cymedrolwr wedi'i aseinio assigned: Arolygwr wedi'i aseinio
comment: comment:
none: Dim none: Dim
created_at: Adroddwyd created_at: Adroddwyd
@ -424,6 +448,12 @@ cy:
min_invite_role: min_invite_role:
disabled: Neb disabled: Neb
title: Caniatau gwahoddiadau gan 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: 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. 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 title: Dangos ffedysawd hysbys ar ragolwg y ffrwd
@ -486,10 +516,19 @@ cy:
edit_preset: Golygu rhagosodiad rhybudd edit_preset: Golygu rhagosodiad rhybudd
title: Rheoli rhagosodiadau rhybudd title: Rheoli rhagosodiadau rhybudd
admin_mailer: 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: new_report:
body: Mae %{reporter} wedi cwyno am %{target} body: Mae %{reporter} wedi cwyno am %{target}
body_remote: Mae rhywun o %{domain} 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: application_mailer:
notification_preferences: Newid gosodiadau e-bost notification_preferences: Newid gosodiadau e-bost
salutation: "%{name}," salutation: "%{name},"
@ -506,7 +545,9 @@ cy:
warning: Byddwch yn ofalus a'r data hyn. Peidiwch a'i rannu byth! warning: Byddwch yn ofalus a'r data hyn. Peidiwch a'i rannu byth!
your_token: Eich tocyn mynediad your_token: Eich tocyn mynediad
auth: auth:
apply_for_account: Gofyn am wahoddiad
change_password: Cyfrinair 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 confirm_email: Cadarnhau e-bost
delete_account: Dileu cyfrif 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. 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 cas: CAS
saml: SAML saml: SAML
register: Cofrestru register: Cofrestru
registration_closed: Nid yw %{instance} yn derbyn aelodau newydd
resend_confirmation: Ailanfon cyfarwyddiadau cadarnhau resend_confirmation: Ailanfon cyfarwyddiadau cadarnhau
reset_password: Ailosod cyfrinair reset_password: Ailosod cyfrinair
security: Diogelwch security: Diogelwch
set_new_password: Gosod cyfrinair newydd set_new_password: Gosod cyfrinair newydd
trouble_logging_in: Trafferdd mewngofnodi?
authorize_follow: authorize_follow:
already_following: Yr ydych yn dilyn y cyfrif hwn yn barod already_following: Yr ydych yn dilyn y cyfrif hwn yn barod
error: Yn anffodus, roedd gwall tra'n edrych am y cyfrif anghysbell error: Yn anffodus, roedd gwall tra'n edrych am y cyfrif anghysbell
@ -544,11 +587,11 @@ cy:
about_x_years: "%{count}blwyddyn" about_x_years: "%{count}blwyddyn"
almost_x_years: "%{count}blwyddyn" almost_x_years: "%{count}blwyddyn"
half_a_minute: Newydd fod half_a_minute: Newydd fod
less_than_x_minutes: "%{count}m" less_than_x_minutes: "%{count}munud"
less_than_x_seconds: Newydd fod less_than_x_seconds: Newydd fod
over_x_years: "%{count}blwyddyn" over_x_years: "%{count}blwyddyn"
x_days: "%{count}dydd" x_days: "%{count}dydd"
x_minutes: "%{count}m" x_minutes: "%{count}munud"
x_months: "%{count}mis" x_months: "%{count}mis"
x_seconds: "%{count}eiliad" x_seconds: "%{count}eiliad"
deletes: deletes:
@ -566,13 +609,6 @@ cy:
explanation: Darganfod defnyddwyr yn seiliedig ar eu diddordebau explanation: Darganfod defnyddwyr yn seiliedig ar eu diddordebau
explore_mastodon: Archwilio %{title} 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! 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: errors:
'403': Nid oes gennych ganiatad i weld y dudalen hon. '403': Nid oes gennych ganiatad i weld y dudalen hon.
'404': Nid yw'r dudalen yr oeddech yn chwilio amdani'n bodoli. '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. 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 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. 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: exports:
archive_takeout: archive_takeout:
date: Dyddiad date: Dyddiad
@ -625,8 +664,10 @@ cy:
more: Mwy… more: Mwy…
resources: Adnoddau resources: Adnoddau
generic: generic:
all: Popeth
changes_saved_msg: Llwyddwyd i gadw y newidiadau! changes_saved_msg: Llwyddwyd i gadw y newidiadau!
copy: Copïo copy: Copïo
order_by: Trefnu wrth
save_changes: Cadw newidiadau save_changes: Cadw newidiadau
validation_errors: validation_errors:
few: Mae rhywbeth o'i le o hyd! Edrychwch ar y %{count} gwall isod os gwelwch yn dda 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 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 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 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: imports:
modes: modes:
merge: Cyfuno merge: Cyfuno
merge_long: Cadw'r cofnodau presennol ac ychwanegu rhai newydd 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. 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 success: Uwchlwythwyd eich data yn llwyddiannus ac fe fydd yn cael ei brosesu mewn da bryd
types: types:
blocking: Rhestr blocio blocking: Rhestr blocio
domain_blocking: Rhestr rhwystro parth
following: Rhestr dilyn following: Rhestr dilyn
muting: Rhestr tawelu muting: Rhestr tawelu
upload: Uwchlwytho upload: Uwchlwytho
in_memoriam_html: In Memoriam. in_memoriam_html: Mewn Cofiad.
invites: invites:
delete: Dadactifadu delete: Dadactifadu
expired: Wedi darfod expired: Wedi darfod
@ -686,7 +750,7 @@ cy:
proceed: Cadw proceed: Cadw
updated_msg: Diweddarwyd gosodiad mudo eich cyfrif yn llwyddiannus! updated_msg: Diweddarwyd gosodiad mudo eich cyfrif yn llwyddiannus!
moderation: moderation:
title: Cymedroli title: Goruwchwyliad
notification_mailer: notification_mailer:
digest: digest:
action: Gweld holl hysbysiadau action: Gweld holl hysbysiadau
@ -734,19 +798,44 @@ cy:
decimal_units: decimal_units:
format: "%n%u" format: "%n%u"
units: units:
billion: B billion: Biliwn
million: M million: Miliwn
quadrillion: Q quadrillion: Cwadriliwn
thousand: K thousand: Mil
trillion: T trillion: Triliwn
pagination: pagination:
newer: Diweddarach newer: Diweddarach
next: Nesaf next: Nesaf
older: Hŷn older: Hŷn
prev: Blaenorol prev: Blaenorol
truncate: "&hellip;" truncate: "&hellip;"
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: preferences:
other: Arall 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: remote_follow:
acct: Mewnbynnwch eich enwdefnyddiwr@parth yr ydych eisiau gweithredu ohonno acct: Mewnbynnwch eich enwdefnyddiwr@parth yr ydych eisiau gweithredu ohonno
missing_resource: Ni ellir canfod yr URL ailgyferio angenrheidiol i'ch cyfrif missing_resource: Ni ellir canfod yr URL ailgyferio angenrheidiol i'ch cyfrif
@ -761,40 +850,14 @@ cy:
activity: Gweithgaredd ddiwethaf activity: Gweithgaredd ddiwethaf
browser: Porwr browser: Porwr
browsers: browsers:
alipay: Alipay
blackberry: Blackberry
chrome: Chrome
edge: Microsoft Edge
electron: Electron
firefox: Firefox
generic: Porwr anhysbys generic: Porwr anhysbys
ie: Internet Explorer
micro_messenger: MicroMessenger
nokia: Porwr Nokia S40 Ovi nokia: Porwr Nokia S40 Ovi
opera: Opera
otter: Otter
phantom_js: PhantomJS
qq: Porwr QQ qq: Porwr QQ
safari: Safari
uc_browser: UCBrowser
weibo: Weibo
current_session: Sesiwn cyfredol current_session: Sesiwn cyfredol
description: "%{browser} ar %{platform}" description: "%{browser} ar %{platform}"
explanation: Dyma'r porwyr gwê sydd wedi mewngofnodi i'ch cyfrif Mastododon ar hyn o bryd. explanation: Dyma'r porwyr gwê sydd wedi mewngofnodi i'ch cyfrif Mastododon ar hyn o bryd.
ip: IP
platforms: 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 other: platfform anhysbys
windows: Windows
windows_mobile: Windows Mobile
windows_phone: Windows Phone
revoke: Diddymu revoke: Diddymu
revoke_success: Sesiwn wedi ei ddiddymu yn llwyddiannus revoke_success: Sesiwn wedi ei ddiddymu yn llwyddiannus
title: Sesiynau title: Sesiynau
@ -846,7 +909,6 @@ cy:
reblog: Ni ellir pinio bŵstiau reblog: Ni ellir pinio bŵstiau
show_more: Dangos mwy show_more: Dangos mwy
sign_in_to_participate: Mengofnodwch i gymryd rhan yn y sgwrs sign_in_to_participate: Mengofnodwch i gymryd rhan yn y sgwrs
title: '%{name}: "%{quote}"'
visibilities: visibilities:
private: Dilynwyr yn unig private: Dilynwyr yn unig
private_long: Dangos i ddilynwyr yn unig private_long: Dangos i ddilynwyr yn unig
@ -864,10 +926,10 @@ cy:
<h3 id="collect">Pa wybodaeth ydyn ni'n ei gasglu?</h3> <h3 id="collect">Pa wybodaeth ydyn ni'n ei gasglu?</h3>
<ul> <ul>
<li><em>Gwybodaeth cyfrif sylfaenol</em>: Os ydych yn cofrestru ar y gweinydd hwn, mae'n bosib y byddwch yn cael eich gofyn i fewnbynnu enw defnyddiwr, cyfeiriad e-bost a chyfrinair. Mae modd i chi hefyd fewnbynnu gwybodaeth ychwanegol megis enw arddangos a bywgraffiad ac uwchlwytho llun proffil a llun pennawd. Mae'r enw defnyddiwr, enw arddangos, bywgraffiad, llun proffil a'r llun pennawd wedi eu rhestru'n gyhoeddus bob tro.</li> <li><em>Gwybodaeth cyfrif sylfaenol</em>: Os ydych yn cofrestru ar y gweinydd hwn, mae'n bosib y byddwch yn cael eich gofyn i fewnbynnu enw defnyddiwr, cyfeiriad e-bost a chyfrinair. Mae modd i chi hefyd fewnbynnu gwybodaeth ychwanegol megis enw arddangos a bywgraffiad ac uwchlwytho llun proffil a llun pennawd. Mae'r enw defnyddiwr, enw arddangos, bywgraffiad, llun proffil a'r llun pennawd wedi eu rhestru'n gyhoeddus bob tro.</li>
<li><em>Postio, dilyn a gwybodaeth gyhoeddus arall</em>: Mae'r rhestr o bobl yr ydych yn dilyn wedi ei restru'n gyhoeddus, mae'r un peth yn wir am eich dilynwyr. Pan yr ydych yn mewnosod neges, mae'r dyddiad a'r amser yn cael ei gofnodi ynghyd a'r rhaglen y wnaethoch anfon y neges ohonni. Gall negeseuon gynnwys atodiadau cyfryngau, megis lluniau neu fideo. Mae negeseuon cyhoeddus a negeseuon heb eu rhestru ar gael yn gyhoeddus. Pan yr ydych yn nodweddu neges ar eich proffil, mae hynny hefyd yn wybodaeth sydd ar gael yn gyhoeddus. Mae eich negeseuon yn cael eu hanfon i'ch dilynwyr, mewn rhai achosion mae hyn yn golygu eu bod yn cael eu hanfon i amryw o weinyddwyr ac fe fydd copiau yn cael eu cadw yno. Pan yr ydych yn dileu negeseuon, mae hyn hefyd yn cael ei hanfon i'ch dilynwyr. Mae'r weithred o rannu neu hoffi neges arall yn gyhoeddus bob tro.</li> <li><em>Postio, dilyn a gwybodaeth gyhoeddus arall</em>: Mae'r rhestr o bobl yr ydych yn dilyn wedi ei restru'n gyhoeddus, mae'r un peth yn wir am eich dilynwyr. Pan yr ydych yn mewnosod neges, mae'r dyddiad a'r amser yn cael ei gofnodi ynghyd a'r rhaglen y wnaethoch anfon y neges ohonni. Gall negeseuon gynnwys atodiadau cyfryngau, megis lluniau neu fideo. Mae negeseuon cyhoeddus a negeseuon heb eu rhestru ar gael yn gyhoeddus. Pan yr ydych yn nodweddu neges ar eich proffil, mae hynny hefyd yn wybodaeth sydd ar gael yn gyhoeddus. Mae eich negeseuon yn cael eu hanfon i'ch dilynwyr, mewn rhai achosion mae hyn yn golygu eu bod yn cael eu hanfon i amryw o weinyddwyr ac fe fydd copiau yn cael eu cadw yno. Pan yr ydych yn dileu negeseuon, mae hyn hefyd yn cael ei hanfon i'ch dilynwyr. Mae'r weithred o rannu neu hoffi neges arall yn gyhoeddus bob tro.</li>
<li><em>Negeseuon uniongyrchol a dilynwyr yn unig</em>: Mae pob neges yn cael eu cadw a'u prosesu ar y gweinydd. Mae negeseuon dilynwyr yn unig yn cael eu hanfon i'ch dilynwyr a'r defnyddwyr sy'n cael eu crybwyll ynddynt tra bod negeseuon uniongyrchol yn cael eu hanfon at rheini sy'n cael crybwyll ynddynt yn unig. Mewn rhai achostion golyga hyn eu bod yn cael eu hanfon i weinyddwyr gwahanol a'u cadw yno. yr ydym yn gnweud ymgais ewyllys da i gyfyngu'r mynediad at y negeseuon yna i bobl ac awdurdod yn unig, ond mae'n bosib y bydd gweinyddwyr eraill yn methu a gwneud hyn. Mae'n bwysig felly i chi fod yn wyliadwrus o ba weinyddwyr y mae eich dilynwyr yn perthyn iddynt. Mae modd i chi osod y dewis i ganiatau a gwrthod dilynwyr newydd a llaw yn y gosodiadau. <em>Cofiwch gall gweithredwyr y gweinydd ac unrhyw weinydd derbyn weld unrhyw negeseuon o'r fath</em>, ac fe all y derbynwyr gymryd sgrinlin, copïo neu drwy ddulliau eraill rannu rhain. <em>Peidiwch a rhannu unrhyw wybodaeth beryglus dros Mastodon.</em></li> <li><em>Negeseuon uniongyrchol a dilynwyr yn unig</em>: Mae pob neges yn cael eu cadw a'u prosesu ar y gweinydd. Mae negeseuon dilynwyr yn unig yn cael eu hanfon i'ch dilynwyr a'r defnyddwyr sy'n cael eu crybwyll ynddynt tra bod negeseuon uniongyrchol yn cael eu hanfon at rheini sy'n cael crybwyll ynddynt yn unig. Mewn rhai achostion golyga hyn eu bod yn cael eu hanfon i weinyddwyr gwahanol a'u cadw yno. yr ydym yn gnweud ymgais ewyllys da i gyfyngu'r mynediad at y negeseuon yna i bobl ac awdurdod yn unig, ond mae'n bosib y bydd gweinyddwyr eraill yn methu a gwneud hyn. Mae'n bwysig felly i chi fod yn wyliadwrus o ba weinyddwyr y mae eich dilynwyr yn perthyn iddynt. Mae modd i chi osod y dewis i ganiatau a gwrthod dilynwyr newydd a llaw yn y gosodiadau. <em>Cofiwch gall gweithredwyr y gweinydd ac unrhyw weinydd derbyn weld unrhyw negeseuon o'r fath</em>, ac fe all y derbynwyr gymryd sgrinlin, copïo neu drwy ddulliau eraill rannu rhain. <em>Peidiwch a rhannu unrhyw wybodaeth beryglus dros Mastodon.</em></li>
<li><em>IPs a mathau eraill o metadata</em>: Pan yr ydych yn mewngofnodi, yr ydym yn cofnodi y cyfeiriad IP yr ydych yn mewngofnodi ohonno, ynghyd a enw eich rhaglen pori. Mae pob un sesiwn mewngofnodi ar gael i chi adolygu a gwrthod yn y gosodiadau. Mae'r cyfeiriad IP diweddaraf yn cael ei storio hyd at 12 mis. Mae'n bosib y byddwn hefyd yn cadw cofnodion gweinydd sy'n cynnwys y cyfeiriad IP am bob cais sy'n cael ei wneud i'n gweinydd.</li> <li><em>IPs a mathau eraill o metadata</em>: Pan yr ydych yn mewngofnodi, yr ydym yn cofnodi y cyfeiriad IP yr ydych yn mewngofnodi ohonno, ynghyd a enw eich rhaglen pori. Mae pob un sesiwn mewngofnodi ar gael i chi adolygu a gwrthod yn y gosodiadau. Mae'r cyfeiriad IP diweddaraf yn cael ei storio hyd at 12 mis. Mae'n bosib y byddwn hefyd yn cadw cofnodion gweinydd sy'n cynnwys y cyfeiriad IP am bob cais sy'n cael ei wneud i'n gweinydd.</li>
</ul> </ul>
<hr class="spacer" /> <hr class="spacer" />
@ -877,9 +939,9 @@ cy:
<p>Gall unrhyw wybodaeth yr ydym yn ei gasglu oddi wrthych gael ei ddefnyddio yn y ffyrdd canlynol:</p> <p>Gall unrhyw wybodaeth yr ydym yn ei gasglu oddi wrthych gael ei ddefnyddio yn y ffyrdd canlynol:</p>
<ul> <ul>
<li>I ddarparu prif weithgaredd Mastodon. Gallwch ond rhyngweithio a chynnwys pobl eraill pan yr ydych wedi'ch mewngofnodi. Er enghraifft, gallwch ddilyn pobl eraill i weld eu negeseuon wedi cyfuno ar ffrwd gartref bersonol.</li> <li>I ddarparu prif weithgaredd Mastodon. Gallwch ond rhyngweithio a chynnwys pobl eraill pan yr ydych wedi'ch mewngofnodi. Er enghraifft, gallwch ddilyn pobl eraill i weld eu negeseuon wedi cyfuno ar ffrwd gartref bersonol.</li>
<li>I helpu gyda goruwchwylio'r gymuned, er enghraifft drwy gymharu eich cyfeiriad IP gyda rhai eraill hysbys er mwyn sefydlu ymgais i geisio hepgor gwaharddiad neu droseddau eraill.</li> <li>I helpu gyda goruwchwylio'r gymuned, er enghraifft drwy gymharu eich cyfeiriad IP gyda rhai eraill hysbys er mwyn sefydlu ymgais i geisio hepgor gwaharddiad neu droseddau eraill.</li>
<li>Gall y cyfeiriad e-bost yr ydych yn ei ddarparu gael ei ddefnyddio i anfon gwybodaeth atoch, hsybysiadau am bobl eraill yn rhyngweithio a'ch cynnwys neu'n anfon negeseuon atoch a/neu geisiadau neu gwestiynnau eraill.</li> <li>Gall y cyfeiriad e-bost yr ydych yn ei ddarparu gael ei ddefnyddio i anfon gwybodaeth atoch, hsybysiadau am bobl eraill yn rhyngweithio a'ch cynnwys neu'n anfon negeseuon atoch a/neu geisiadau neu gwestiynnau eraill.</li>
</ul> </ul>
<hr class="spacer" /> <hr class="spacer" />
@ -895,8 +957,8 @@ cy:
<p>Gwnawn ymdrech ewyllys da i:</p> <p>Gwnawn ymdrech ewyllys da i:</p>
<ul> <ul>
<li>Gadw cofnod gweinydd yn cynnwys y cyfeiriad IP o bob cais i'r gweinydd hwn, i'r graddau y mae cofnodion o'r fath yn cael eu cadw, am ddim mwy na 90 diwrnod.</li> <li>Gadw cofnod gweinydd yn cynnwys y cyfeiriad IP o bob cais i'r gweinydd hwn, i'r graddau y mae cofnodion o'r fath yn cael eu cadw, am ddim mwy na 90 diwrnod.</li>
<li>Gadw cyfeiriadau IP a chysylltiad i ddefnyddwyr cofrestredig am ddim mwy na 12 mis.</li> <li>Gadw cyfeiriadau IP a chysylltiad i ddefnyddwyr cofrestredig am ddim mwy na 12 mis.</li>
</ul> </ul>
<p>Mae modd i chi wneud cais am, a lawrlwytho archif o'ch cynnwys, gan gynnwys eich tŵtiau, atodiadau cyfryngau, llun proffil a llun pennawd.</p> <p>Mae modd i chi wneud cais am, a lawrlwytho archif o'ch cynnwys, gan gynnwys eich tŵtiau, atodiadau cyfryngau, llun proffil a llun pennawd.</p>
@ -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> <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" title: "%{instance} Termau Gwasanaeth a Polisi Preifatrwydd"
themes: themes:
contrast: Cyferbyniad uchel contrast: Mastodon (Cyferbyniad uchel)
default: Mastodon default: Mastodon (Tywyll)
mastodon-light: Mastodon (golau) mastodon-light: Mastodon (golau)
time:
formats:
default: "%b %d, %Y, %H:%M"
month: "%b %Y"
two_factor_authentication: two_factor_authentication:
code_hint: Mewnbynwch y côd a grewyd gan eich ap dilysu i gadarnhau 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. 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.

View File

@ -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_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 about_this: Om
administered_by: 'Administreret af:' administered_by: 'Administreret af:'
api: API
apps: Apps til mobilen apps: Apps til mobilen
apps_platforms: Brug Mastodon på iOS, Android og andre platformer apps_platforms: Brug Mastodon på iOS, Android og andre platformer
contact: Kontakt contact: Kontakt
@ -20,9 +19,6 @@ da:
learn_more: Lær mere learn_more: Lær mere
privacy_policy: Privatlivspolitik privacy_policy: Privatlivspolitik
source_code: Kildekode source_code: Kildekode
status_count_after:
one: status
other: statusser
status_count_before: Som har skrevet status_count_before: Som har skrevet
terms: Vilkår for service terms: Vilkår for service
user_count_after: user_count_after:
@ -87,8 +83,6 @@ da:
display_name: Visningsnavn display_name: Visningsnavn
domain: Domæne domain: Domæne
edit: Rediger edit: Rediger
email: Email
email_status: Email status
enable: Aktiver enable: Aktiver
enabled: Aktiveret enabled: Aktiveret
feed_url: Link til feed feed_url: Link til feed
@ -153,7 +147,6 @@ da:
undo_suspension: Fortryd udelukkelse undo_suspension: Fortryd udelukkelse
unsubscribe: Abonner ikke længere unsubscribe: Abonner ikke længere
username: Brugernavn username: Brugernavn
web: Web
action_logs: action_logs:
actions: actions:
assigned_to_self_report: "%{name} tildelte anmeldelsen %{target} til sig selv" assigned_to_self_report: "%{name} tildelte anmeldelsen %{target} til sig selv"
@ -224,7 +217,6 @@ da:
recent_users: Seneste brugere recent_users: Seneste brugere
search: Søg på fuld tekst search: Søg på fuld tekst
single_user_mode: Enkelt bruger mode single_user_mode: Enkelt bruger mode
software: Software
space: Brugt lagerplads space: Brugt lagerplads
title: Betjeningspanel title: Betjeningspanel
total_users: samlede antal brugere total_users: samlede antal brugere
@ -294,7 +286,6 @@ da:
pending: Venter på godkendelse fra relæet pending: Venter på godkendelse fra relæet
save_and_enable: Gem og aktiver save_and_enable: Gem og aktiver
setup: Opsæt en videresendelses forbindelse setup: Opsæt en videresendelses forbindelse
status: Status
title: Videresendelser title: Videresendelser
report_notes: report_notes:
created_msg: Anmeldelse note blev oprettet! created_msg: Anmeldelse note blev oprettet!
@ -324,7 +315,6 @@ da:
reported_by: Anmeldt af reported_by: Anmeldt af
resolved: Løst resolved: Løst
resolved_msg: Anmeldelse er sat til at være løst! resolved_msg: Anmeldelse er sat til at være løst!
status: Status
title: Anmeldelser title: Anmeldelser
unassign: Utildel unassign: Utildel
unresolved: Uløst unresolved: Uløst
@ -410,7 +400,6 @@ da:
tags: tags:
accounts: Kontoer accounts: Kontoer
hidden: Skjult hidden: Skjult
title: Administration
admin_mailer: admin_mailer:
new_report: new_report:
body: "%{reporter} har anmeldt %{target}" body: "%{reporter} har anmeldt %{target}"
@ -418,7 +407,6 @@ da:
subject: Ny anmeldelse for %{instance} (#%{id}) subject: Ny anmeldelse for %{instance} (#%{id})
application_mailer: application_mailer:
notification_preferences: Ændre email præferencer notification_preferences: Ændre email præferencer
salutation: "%{name},"
settings: 'Ændre email præferencer: %{link}' settings: 'Ændre email præferencer: %{link}'
view: 'Se:' view: 'Se:'
view_profile: Se profil view_profile: Se profil
@ -444,9 +432,6 @@ da:
migrate_account: Flyt til en anden konto 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>. 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 or_log_in_with: Eller log in med
providers:
cas: CAS
saml: SAML
register: Opret dig register: Opret dig
resend_confirmation: Gensend bekræftelses instrukser resend_confirmation: Gensend bekræftelses instrukser
reset_password: Nulstil kodeord reset_password: Nulstil kodeord
@ -470,13 +455,9 @@ da:
about_x_years: "%{count}år" about_x_years: "%{count}år"
almost_x_years: "%{count}år" almost_x_years: "%{count}år"
half_a_minute: Lige nu half_a_minute: Lige nu
less_than_x_minutes: "%{count}m"
less_than_x_seconds: Lige nu less_than_x_seconds: Lige nu
over_x_years: "%{count}år" over_x_years: "%{count}år"
x_days: "%{count}d"
x_minutes: "%{count}m"
x_months: "%{count}md" x_months: "%{count}md"
x_seconds: "%{count}s"
deletes: deletes:
bad_password_msg: Godt forsøg, hackere! Forkert kodeord bad_password_msg: Godt forsøg, hackere! Forkert kodeord
confirm_password: Indtast dit nuværende kodeord for at bekræfte din identitet confirm_password: Indtast dit nuværende kodeord for at bekræfte din identitet
@ -506,7 +487,6 @@ da:
request: Anmod om dit arkiv request: Anmod om dit arkiv
size: Størrelse size: Størrelse
blocks: Du blokerer blocks: Du blokerer
csv: CSV
follows: Du følger follows: Du følger
mutes: Du dæmper mutes: Du dæmper
storage: Medie lager storage: Medie lager
@ -619,14 +599,9 @@ da:
number: number:
human: human:
decimal_units: decimal_units:
format: "%n%u"
units: units:
billion: mia. billion: mia.
million: mio. million: mio.
quadrillion: Q
thousand: K
trillion: T
unit: "\n"
pagination: pagination:
newer: Nyere newer: Nyere
next: Næste next: Næste
@ -647,7 +622,6 @@ da:
unfollowed: Følger ikke længere unfollowed: Følger ikke længere
sessions: sessions:
activity: Sidste aktivitet activity: Sidste aktivitet
browser: Browser
browsers: browsers:
alipay: Ali-pay alipay: Ali-pay
blackberry: Blackberry OS blackberry: Blackberry OS
@ -669,15 +643,11 @@ da:
current_session: Nuværrende session current_session: Nuværrende session
description: "%{browser} på %{platform}" description: "%{browser} på %{platform}"
explanation: Disse er de web browsere der på nuværende tidspunkt er logget ind på din Mastodon konto. explanation: Disse er de web browsere der på nuværende tidspunkt er logget ind på din Mastodon konto.
ip: IP
platforms: platforms:
adobe_air: Adobe air adobe_air: Adobe air
android: Android
blackberry: Blackberry OS blackberry: Blackberry OS
chrome_os: Chromeos chrome_os: Chromeos
firefox_os: Firefox Os firefox_os: Firefox Os
ios: iOS
linux: Linux
mac: Mac. mac: Mac.
other: ukendt platform other: ukendt platform
windows: Microsoft windows windows: Microsoft windows
@ -704,9 +674,6 @@ da:
image: image:
one: "%{count} billede" one: "%{count} billede"
other: "%{count} billeder" other: "%{count} billeder"
video:
one: "%{count} video"
other: "%{count} videoer"
boosted_from_html: Fremhævet fra %{acct_link} boosted_from_html: Fremhævet fra %{acct_link}
content_warning: 'Advarsel om indhold: %{warning}' content_warning: 'Advarsel om indhold: %{warning}'
disallowed_hashtags: disallowed_hashtags:
@ -722,7 +689,6 @@ da:
reblog: Fremhævede trut kan ikke fastgøres reblog: Fremhævede trut kan ikke fastgøres
show_more: Vis mere show_more: Vis mere
sign_in_to_participate: Log ind for at deltage i samtalen sign_in_to_participate: Log ind for at deltage i samtalen
title: '%{name}: "%{quote}"'
visibilities: visibilities:
private: Kun-følgere private: Kun-følgere
private_long: Vis kun til følgere private_long: Vis kun til følgere
@ -741,10 +707,6 @@ da:
contrast: Mastodon (Høj kontrast) contrast: Mastodon (Høj kontrast)
default: Mastodont (Mørk) default: Mastodont (Mørk)
mastodon-light: Mastodon (Lys) mastodon-light: Mastodon (Lys)
time:
formats:
default: "%b %d, %Y, %H:%M"
month: "%b %Y"
two_factor_authentication: two_factor_authentication:
code_hint: Indtast koden der er genereret af din app for at bekræfte 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. 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.

View File

@ -1,51 +1,51 @@
--- ---
de: de:
about: 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_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 about_this: Über diesen Server
active_count_after: aktiv active_count_after: aktiv
active_footnote: Monatlich Aktive User (MAU) active_footnote: Monatlich Aktive Nutzer_innen (MAU)
administered_by: 'Administriert von:' administered_by: 'Betrieben von:'
api: API api: API
apps: Mobile Apps apps: Mobile Apps
apps_platforms: Benutze Mastodon auf iOS, Android und anderen Plattformen apps_platforms: Benutze Mastodon auf iOS, Android und anderen Plattformen
browse_directory: Durchsuche ein Profilverzeichnis und filtere nach Interessen browse_directory: Durchsuche das Profilverzeichnis und filtere nach Interessen
browse_public_posts: Durchsuche eine Zeitleiste an öffentlichen Beiträgen auf Mastodon browse_public_posts: Stöbere durch öffentliche Beiträge auf Mastodon
contact: Kontakt contact: Kontakt
contact_missing: Nicht angegeben contact_missing: Nicht angegeben
contact_unavailable: N/A contact_unavailable: Nicht verfügbar
discover_users: Benutzer entdecken discover_users: Benutzer_innen entdecken
documentation: Dokumentation documentation: Dokumentation
extended_description_html: | extended_description_html: |
<h3>Ein guter Platz für Regeln</h3> <h3>Ein hervorragender Ort für Regeln</h3>
<p>Die erweiterte Beschreibung wurde noch nicht aufgesetzt.</p> <p>Die erweiterte Beschreibung wurde von dem Administrator noch nicht eingestellt.</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. 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 Netzwerk" generic_description: "%{domain} ist ein Server im Fediversum"
get_apps: Versuche eine mobile App get_apps: Versuche eine mobile App
hosted_on: Mastodon, beherbergt auf %{domain} hosted_on: Mastodon, gehostet auf %{domain}
learn_more: Mehr erfahren learn_more: Mehr erfahren
privacy_policy: Datenschutzerklärung privacy_policy: Datenschutzerklärung
see_whats_happening: Finde heraus, was gerade in der Welt los ist see_whats_happening: Finde heraus, was gerade in der Welt los ist
server_stats: 'Serverstatistiken:' server_stats: 'Serverstatistiken:'
source_code: Quellcode source_code: Quellcode
status_count_after: status_count_after:
one: Statusmeldung one: Beitrag
other: Statusmeldungen other: Beiträge
status_count_before: mit status_count_before: mit
tagline: Finde Freunde und entdecke neue tagline: Finde deine Freunde und entdecke neue
terms: Nutzungsbedingungen terms: Nutzungsbedingungen
user_count_after: user_count_after:
one: Benutzer:in one: Profil
other: Benutzer:innen other: Profile
user_count_before: Zuhause für user_count_before: Hostet
what_is_mastodon: Was ist Mastodon? what_is_mastodon: Was ist Mastodon?
accounts: accounts:
choices_html: "%{name} empfiehlt:" choices_html: "%{name} empfiehlt:"
follow: Folgen follow: Folgen
followers: followers:
one: Folgender one: Folger_innen
other: Folgende other: Folger_innen
following: Folgt following: Folgt
joined: Beigetreten am %{date} joined: Beigetreten am %{date}
last_active: zuletzt aktiv last_active: zuletzt aktiv
@ -65,7 +65,7 @@ de:
posts_with_replies: Beiträge mit Antworten posts_with_replies: Beiträge mit Antworten
reserved_username: Dieser Profilname ist belegt reserved_username: Dieser Profilname ist belegt
roles: roles:
admin: Admin admin: Administrator
bot: Bot bot: Bot
moderator: Moderator moderator: Moderator
unavailable: Profil nicht verfügbar unavailable: Profil nicht verfügbar
@ -80,8 +80,8 @@ de:
delete: Löschen delete: Löschen
destroyed_msg: Moderationsnotiz erfolgreich gelöscht! destroyed_msg: Moderationsnotiz erfolgreich gelöscht!
accounts: accounts:
approve: Aktzeptieren approve: Akzeptieren
approve_all: Alle aktzeptieren approve_all: Alle akzeptieren
are_you_sure: Bist du sicher? are_you_sure: Bist du sicher?
avatar: Profilbild avatar: Profilbild
by_domain: Domain by_domain: Domain
@ -108,10 +108,10 @@ de:
enable: Freischalten enable: Freischalten
enabled: Freigegeben enabled: Freigegeben
feed_url: Feed-URL feed_url: Feed-URL
followers: Folgende followers: Folger_innen
followers_url: URL des Folgenden followers_url: URL der Folger_innen
follows: Folgt follows: Folgt
header: Header header: Titelbild
inbox_url: Posteingangs-URL inbox_url: Posteingangs-URL
invited_by: Eingeladen von invited_by: Eingeladen von
ip: IP-Adresse ip: IP-Adresse
@ -119,27 +119,27 @@ de:
location: location:
all: Alle all: Alle
local: Lokal local: Lokal
remote: Entfernt remote: Fern
title: Ort title: Ursprung
login_status: Loginstatus login_status: Loginstatus
media_attachments: Medienanhänge media_attachments: Dateien
memorialize: In Gedenkmal verwandeln memorialize: In Gedenkmal verwandeln
moderation: moderation:
active: Aktiv active: Aktiv
all: Alle all: Alle
pending: Ausstehend pending: In Warteschlange
silenced: Stummgeschaltet silenced: Stummgeschaltet
suspended: Gesperrt suspended: Gesperrt
title: Moderation title: Moderation
moderation_notes: Moderationsnotizen moderation_notes: Moderationsnotizen
most_recent_activity: Letzte Aktivität most_recent_activity: Letzte Aktivität
most_recent_ip: Letzte IP-Adresse most_recent_ip: Letzte IP-Adresse
no_account_selected: Keine Konten wurden verändert, da keine ausgewählt wurden no_account_selected: Keine Konten wurden geändert, da keine ausgewählt wurden
no_limits_imposed: Keine Limits eingesetzt no_limits_imposed: Keine Beschränkungen
not_subscribed: Nicht abonniert not_subscribed: Nicht abonniert
outbox_url: Postausgangs-URL outbox_url: Postausgangs-URL
pending: Ausstehender Review pending: In Warteschlange
perform_full_suspension: Sperren perform_full_suspension: Verbannen
profile_url: Profil-URL profile_url: Profil-URL
promote: Befördern promote: Befördern
protocol: Protokoll protocol: Protokoll
@ -149,10 +149,10 @@ de:
reject: Ablehnen reject: Ablehnen
reject_all: Alle ablehnen reject_all: Alle ablehnen
remove_avatar: Profilbild entfernen remove_avatar: Profilbild entfernen
remove_header: Header entfernen remove_header: Titelbild entfernen
resend_confirmation: resend_confirmation:
already_confirmed: Diese:r Benutzer:in wurde bereits bestätigt already_confirmed: Diese_r Benutzer_in wurde bereits bestätigt
send: Bestätigungsmail erneut senden send: Bestätigungs-E-Mail erneut senden
success: Bestätigungs-E-Mail erfolgreich gesendet! success: Bestätigungs-E-Mail erfolgreich gesendet!
reset: Zurücksetzen reset: Zurücksetzen
reset_password: Passwort zurücksetzen reset_password: Passwort zurücksetzen
@ -160,25 +160,25 @@ de:
role: Berechtigungen role: Berechtigungen
roles: roles:
admin: Administrator admin: Administrator
moderator: Moderator:in moderator: Moderator_in
staff: Mitarbeiter staff: Mitarbeiter
user: Nutzer user: Nutzer
salmon_url: Salmon-URL salmon_url: Salmon-URL
search: Suche search: Suche
shared_inbox_url: Geteilte Posteingang-URL shared_inbox_url: Geteilte Posteingang-URL
show: show:
created_reports: Erstellte Beschwerdemeldungen created_reports: Erstellte Meldungen
targeted_reports: Beschwerdemeldungen von anderen targeted_reports: Von anderen gemeldet
silence: Stummschalten silence: Stummschalten
silenced: Stummgeschaltet silenced: Stummgeschaltet
statuses: Beiträge statuses: Beiträge
subscribe: Abonnieren subscribe: Abonnieren
suspended: Gesperrt suspended: Verbannt
time_in_queue: "%{time} in der Warteschlange" time_in_queue: "%{time} in der Warteschlange"
title: Konten title: Konten
unconfirmed_email: Unbestätigte E-Mail-Adresse unconfirmed_email: Unbestätigte E-Mail-Adresse
undo_silenced: Stummschaltung zurücknehmen undo_silenced: Stummschaltung aufheben
undo_suspension: Sperre zurücknehmen undo_suspension: Verbannung aufheben
unsubscribe: Abbestellen unsubscribe: Abbestellen
username: Profilname username: Profilname
warn: Warnen warn: Warnen
@ -192,29 +192,29 @@ de:
create_custom_emoji: "%{name} hat neues Emoji %{target} hochgeladen" create_custom_emoji: "%{name} hat neues Emoji %{target} hochgeladen"
create_domain_block: "%{name} hat die Domain %{target} blockiert" create_domain_block: "%{name} hat die Domain %{target} blockiert"
create_email_domain_block: "%{name} hat die E-Mail-Domain %{target} geblacklistet" 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_custom_emoji: "%{name} zerstörte Emoji %{target}"
destroy_domain_block: "%{name} hat die Domain %{target} entblockt" destroy_domain_block: "%{name} hat die Domain %{target} entblockt"
destroy_email_domain_block: "%{name} hat die E-Mail-Domain %{target} gewhitelistet" destroy_email_domain_block: "%{name} hat die E-Mail-Domain %{target} gewhitelistet"
destroy_status: "%{name} hat Status von %{target} entfernt" destroy_status: "%{name} hat einen Beitrag von %{target} entfernt"
disable_2fa_user: "%{name} hat Zwei-Faktor-Anforderung für Benutzer:in %{target} deaktiviert" disable_2fa_user: "%{name} hat Zwei-Faktor-Anforderung für Benutzer_in %{target} deaktiviert"
disable_custom_emoji: "%{name} hat das %{target} Emoji 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_custom_emoji: "%{name} hat das %{target} Emoji aktiviert"
enable_user: "%{name} hat die Anmeldung für di:en Benutzer:in %{target} aktiviert" enable_user: "%{name} hat Zugang von Benutzer_in %{target} aktiviert"
memorialize_account: "%{name} hat %{target}s Konto in eine Gedenkseite umgewandelt" memorialize_account: "%{name} hat das Konto von %{target} in eine Gedenkseite umgewandelt"
promote_user: "%{name} hat %{target} befördert" promote_user: "%{name} hat %{target} befördert"
remove_avatar_user: "%{name} hat das Profilbild von %{target} entfernt" remove_avatar_user: "%{name} hat das Profilbild von %{target} entfernt"
reopen_report: "%{name} hat die Meldung %{target} wieder geöffnet" 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" resolve_report: "%{name} hat die Meldung %{target} bearbeitet"
silence_account: "%{name} hat %{target}s Konto stummgeschaltet" silence_account: "%{name} hat das Konto von %{target} stummgeschaltet"
suspend_account: "%{name} hat %{target}s Konto gesperrt" suspend_account: "%{name} hat das Konto von %{target} verbannt"
unassigned_report: "%{name} hat die Zuweisung der Meldung %{target} entfernt" unassigned_report: "%{name} hat die Zuweisung der Meldung %{target} entfernt"
unsilence_account: "%{name} hat die Stummschaltung von %{target}s Konto aufgehoben" unsilence_account: "%{name} hat die Stummschaltung von %{target} aufgehoben"
unsuspend_account: "%{name} hat die Sperrung von %{target}s Konto aufgehoben" unsuspend_account: "%{name} hat die Verbannung von %{target} aufgehoben"
update_custom_emoji: "%{name} hat das %{target} Emoji aktualisiert" update_custom_emoji: "%{name} hat das %{target} Emoji geändert"
update_status: "%{name} hat den Status von %{target} aktualisiert" update_status: "%{name} hat einen Beitrag von %{target} aktualisiert"
deleted_status: "(gelöschter Beitrag)" deleted_status: "(gelöschter Beitrag)"
title: Überprüfungsprotokoll title: Überprüfungsprotokoll
custom_emojis: custom_emojis:
@ -230,7 +230,7 @@ de:
emoji: Emoji emoji: Emoji
enable: Aktivieren enable: Aktivieren
enabled_msg: Das Emoji wurde aktiviert enabled_msg: Das Emoji wurde aktiviert
image_hint: PNG bis 50 kB image_hint: PNG bis zu 50 kB
listed: Gelistet listed: Gelistet
new: new:
title: Eigenes Emoji hinzufügen title: Eigenes Emoji hinzufügen
@ -243,28 +243,28 @@ de:
updated_msg: Emoji erfolgreich aktualisiert! updated_msg: Emoji erfolgreich aktualisiert!
upload: Hochladen upload: Hochladen
dashboard: dashboard:
backlog: Unerledigte Jobs backlog: Rückständige Jobs
config: Konfiguration config: Konfiguration
feature_deletions: Kontolöschung feature_deletions: Kontolöschung
feature_invites: Einladungslinks feature_invites: Einladungen
feature_profile_directory: Profilverzeichnis feature_profile_directory: Profilverzeichnis
feature_registrations: Registrierung feature_registrations: Offene Anmeldung
feature_relay: Föderations-Relay feature_relay: Föderationsrelais
feature_timeline_preview: Zeitleistenvorschau feature_timeline_preview: Zeitleistenvorschau
features: Eigenschaften features: Funktionen
hidden_service: Föderation mit versteckten Diensten hidden_service: Föderation mit versteckten Diensten
open_reports: Offene Meldungen open_reports: Ausstehende Meldungen
recent_users: Neueste Nutzer recent_users: Neueste Nutzer
search: Volltextsuche search: Volltextsuche
single_user_mode: Einzelnutzermodus single_user_mode: Einzelnutzermodus
software: Software software: Software
space: Speicherverbrauch space: Speicherverbrauch
title: Übersicht title: Übersicht
total_users: Benutzer:innen insgesamt total_users: Benutzer_innen insgesamt
trends: Trends trends: Trends
week_interactions: Interaktionen diese Woche week_interactions: Interaktionen diese Woche
week_users_active: Aktiv diese Woche week_users_active: Aktiv diese Woche
week_users_new: Benutzer:innen diese Woche week_users_new: Benutzer_innen diese Woche
domain_blocks: domain_blocks:
add_new: Neue Domainblockade hinzufügen add_new: Neue Domainblockade hinzufügen
created_msg: Die Domain-Blockade wird nun durchgeführt 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_media_hint: Entfernt lokal gespeicherte Mediendateien und verhindert deren künftiges Herunterladen. Für Sperren irrelevant
reject_reports: Meldungen ablehnen reject_reports: Meldungen ablehnen
reject_reports_hint: Ignoriere alle Meldungen von dieser Domain. Irrelevant für Sperrungen reject_reports_hint: Ignoriere alle Meldungen von dieser Domain. Irrelevant für Sperrungen
rejecting_media: Mediendateien ablehnen rejecting_media: Mediendateien werden nicht gespeichert
rejecting_reports: Beschwerdemeldungen ablehnen rejecting_reports: Meldungen werden ignoriert
severity: severity:
silence: stummgeschaltet silence: stummgeschaltet
suspend: gesperrt suspend: gesperrt
@ -311,22 +311,22 @@ de:
title: E-Mail-Domain-Blockade title: E-Mail-Domain-Blockade
followers: followers:
back_to_account: Zurück zum Konto back_to_account: Zurück zum Konto
title: "%{acct}'s Follower" title: "%{acct}'s Folger_innen"
instances: instances:
by_domain: Domain by_domain: Domain
delivery_available: Zustellung ist verfügbar delivery_available: Zustellung funktioniert
known_accounts: known_accounts:
one: "%{count} bekanntes Konto" one: "%{count} bekanntes Konto"
other: "%{count} bekannte Accounts" other: "%{count} bekannte Konten"
moderation: moderation:
all: Alle all: Alle
limited: Limitiert limited: Beschränkt
title: Moderation title: Moderation
title: Föderation 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_them: Gefolgt von denen
total_followed_by_us: Gefolgt von uns total_followed_by_us: Gefolgt von uns
total_reported: Beschwerdemeldungen über sie total_reported: Beschwerden über sie
total_storage: Medienanhänge total_storage: Medienanhänge
invites: invites:
deactivate_all: Alle deaktivieren deactivate_all: Alle deaktivieren
@ -350,9 +350,9 @@ de:
inbox_url: Relay-URL inbox_url: Relay-URL
pending: Warte auf Zustimmung des Relays pending: Warte auf Zustimmung des Relays
save_and_enable: Speichern und aktivieren save_and_enable: Speichern und aktivieren
setup: Relayverbindung einrichten setup: Relaisverbindung einrichten
status: Status status: Zustand
title: Relays title: Relais
report_notes: report_notes:
created_msg: Meldungs-Kommentar erfolgreich erstellt! created_msg: Meldungs-Kommentar erfolgreich erstellt!
destroyed_msg: Meldungs-Kommentar erfolgreich gelöscht! destroyed_msg: Meldungs-Kommentar erfolgreich gelöscht!
@ -375,13 +375,13 @@ de:
create_and_unresolve: Mit Kommentar wieder öffnen create_and_unresolve: Mit Kommentar wieder öffnen
delete: Löschen delete: Löschen
placeholder: Beschreibe, welche Maßnahmen ergriffen wurden oder irgendwelche andere Neuigkeiten… placeholder: Beschreibe, welche Maßnahmen ergriffen wurden oder irgendwelche andere Neuigkeiten…
reopen: Meldung wieder öffnen reopen: Meldung wieder eröffnen
report: 'Meldung #%{id}' report: 'Meldung #%{id}'
reported_account: Gemeldetes Konto reported_account: Gemeldetes Konto
reported_by: Gemeldet von reported_by: Gemeldet von
resolved: Gelöst resolved: Gelöst
resolved_msg: Meldung erfolgreich gelöst! resolved_msg: Meldung erfolgreich gelöst!
status: Status status: Zustand
title: Meldungen title: Meldungen
unassign: Zuweisung entfernen unassign: Zuweisung entfernen
unresolved: Ungelöst unresolved: Ungelöst
@ -401,22 +401,22 @@ de:
title: Benutzerdefiniertes CSS title: Benutzerdefiniertes CSS
hero: hero:
desc_html: Wird auf der Startseite angezeigt. Mindestens 600x100px sind empfohlen. Wenn es nicht gesetzt wurde, wird das Server-Thumbnail dafür verwendet 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: mascot:
desc_html: Angezeigt auf mehreren Seiten. Mehr als 293x205px empfohlen. Wenn es nicht gesetzt wurde wird es auf das Standard-Maskottchen zurückfallen 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 title: Maskottchen-Bild
peers_api_enabled: peers_api_enabled:
desc_html: Domain-Namen, die der Server im Fediverse gefunden hat desc_html: Domain-Namen, die der Server im Fediversum gefunden hat
title: Veröffentliche Liste von gefundenen Servern title: Veröffentliche entdeckte Server durch die API
preview_sensitive_media: preview_sensitive_media:
desc_html: Linkvorschauen auf anderen Webseiten werden ein Vorschaubild anzeigen, obwohl die Medien als heikel gekennzeichnet sind 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: profile_directory:
desc_html: Erlaube Benutzer auffindbar zu sein desc_html: Erlaube Benutzer auffindbar zu sein
title: Aktiviere Profilverzeichnis title: Aktiviere Profilverzeichnis
registrations: registrations:
closed_message: 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 title: Nachricht über geschlossene Registrierung
deletion: deletion:
desc_html: Allen erlauben, ihr Konto eigenmächtig zu löschen desc_html: Allen erlauben, ihr Konto eigenmächtig zu löschen
@ -432,7 +432,7 @@ de:
title: Registrierungsmodus title: Registrierungsmodus
show_known_fediverse_at_about_page: 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. 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: show_staff_badge:
desc_html: Zeige Mitarbeiter-Badge auf Benutzerseite desc_html: Zeige Mitarbeiter-Badge auf Benutzerseite
title: Zeige Mitarbeiter-Badge 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 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 title: Erweiterte Beschreibung des Servers
site_short_description: 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. 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 Server-Beschreibung title: Kurze Beschreibung des Servers
site_terms: site_terms:
desc_html: Hier kannst du deine eigenen Geschäftsbedingungen, Datenschutzerklärung und anderes rechtlich Relevante eintragen. Du kannst HTML-Tags benutzen desc_html: Hier kannst du deine eigenen Geschäftsbedingungen, Datenschutzerklärung und anderes rechtlich Relevante eintragen. Du kannst HTML-Tags nutzen
title: Eigene Geschäftsbedingungen title: Benutzerdefinierte Geschäftsbedingungen
site_title: Name des Servers site_title: Name des Servers
thumbnail: thumbnail:
desc_html: Wird für die Vorschau via OpenGraph und API verwendet. 1200×630 px wird empfohlen 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: timeline_preview:
desc_html: Auf der Frontseite die öffentliche Zeitleiste anzeigen desc_html: Auf der Einstiegsseite die öffentliche Zeitleiste anzeigen
title: Zeitleisten-Vorschau title: Zeitleisten-Vorschau
title: Server-Einstellungen title: Server-Einstellungen
statuses: statuses:
@ -466,7 +466,7 @@ de:
media: media:
title: Medien title: Medien
no_media: Keine 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 title: Beiträge des Kontos
with_media: Mit Medien with_media: Mit Medien
subscriptions: subscriptions:
@ -479,7 +479,7 @@ de:
tags: tags:
accounts: Konten accounts: Konten
hidden: Versteckt hidden: Versteckt
hide: Vor Verzeichnis verstecken hide: Vom Profilverzeichnis verstecken
name: Hashtag name: Hashtag
title: Hashtags title: Hashtags
unhide: Zeige in Verzeichnis unhide: Zeige in Verzeichnis
@ -511,7 +511,7 @@ de:
settings: 'E-Mail-Einstellungen ändern: %{link}' settings: 'E-Mail-Einstellungen ändern: %{link}'
view: 'Ansehen:' view: 'Ansehen:'
view_profile: Zeige Profil view_profile: Zeige Profil
view_status: Zeige Status view_status: Beitrag öffnen
applications: applications:
created: Anwendung erfolgreich erstellt created: Anwendung erfolgreich erstellt
destroyed: Anwendung erfolgreich gelöscht destroyed: Anwendung erfolgreich gelöscht
@ -553,8 +553,8 @@ de:
following: 'Erfolg! Du folgst nun:' following: 'Erfolg! Du folgst nun:'
post_follow: post_follow:
close: Oder du schließt einfach dieses Fenster. close: Oder du schließt einfach dieses Fenster.
return: Zeige Profil des Benutzers return: Zeige das Profil
web: Das Web öffnen web: In der Benutzeroberfläche öffnen
title: "%{acct} folgen" title: "%{acct} folgen"
datetime: datetime:
distance_in_words: distance_in_words:
@ -565,8 +565,8 @@ de:
half_a_minute: Gerade eben half_a_minute: Gerade eben
less_than_x_minutes: "%{count}m" less_than_x_minutes: "%{count}m"
less_than_x_seconds: Gerade eben less_than_x_seconds: Gerade eben
over_x_years: "%{count}y" over_x_years: "%{count}J"
x_days: "%{count}d" x_days: "%{count}T"
x_minutes: "%{count}m" x_minutes: "%{count}m"
x_months: "%{count}mo" x_months: "%{count}mo"
x_seconds: "%{count}s" x_seconds: "%{count}s"
@ -581,8 +581,8 @@ de:
directories: directories:
directory: Profilverzeichnis directory: Profilverzeichnis
enabled: Du bist gerade in dem Verzeichnis gelistet. 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. 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 basierend auf deren Interessen explanation: Entdecke Benutzer_innen basierend auf deren Interessen
explore_mastodon: Entdecke %{title} 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! 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: people:
@ -714,7 +714,7 @@ de:
media_attachments: media_attachments:
validations: validations:
images_and_video: Es kann kein Video an einen Beitrag, der bereits Bilder enthält, angehängt werden 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: migrations:
acct: benutzername@domain des neuen Kontos acct: benutzername@domain des neuen Kontos
currently_redirecting: 'Deine Profilweiterleitung wurde gesetzt auf:' currently_redirecting: 'Deine Profilweiterleitung wurde gesetzt auf:'
@ -766,7 +766,6 @@ de:
quadrillion: Q quadrillion: Q
thousand: K thousand: K
trillion: T trillion: T
unit: ''
pagination: pagination:
newer: Neuer newer: Neuer
next: Vorwärts next: Vorwärts
@ -869,7 +868,7 @@ de:
settings: settings:
account: Konto account: Konto
account_settings: Konto & Sicherheit account_settings: Konto & Sicherheit
appearance: Bearbeiten appearance: Aussehen
authorized_apps: Autorisierte Anwendungen authorized_apps: Autorisierte Anwendungen
back: Zurück zu Mastodon back: Zurück zu Mastodon
delete: Konto löschen delete: Konto löschen
@ -884,7 +883,7 @@ de:
notifications: Benachrichtigungen notifications: Benachrichtigungen
preferences: Einstellungen preferences: Einstellungen
profile: Profil profile: Profil
relationships: Folgende und Follower relationships: Folger_innen und Gefolgte
two_factor_authentication: Zwei-Faktor-Auth two_factor_authentication: Zwei-Faktor-Auth
statuses: statuses:
attached: attached:
@ -898,8 +897,8 @@ de:
boosted_from_html: Geteilt von %{acct_link} boosted_from_html: Geteilt von %{acct_link}
content_warning: 'Inhaltswarnung: %{warning}' content_warning: 'Inhaltswarnung: %{warning}'
disallowed_hashtags: disallowed_hashtags:
one: 'Enthält den unerlaubten Hashtag: %{tags}' one: 'enthält einen verbotenen Hashtag: %{tags}'
other: 'Enthält die unerlaubten Hashtags: %{tags}' other: 'enthält verbotene Hashtags: %{tags}'
language_detection: Sprache automatisch erkennen language_detection: Sprache automatisch erkennen
open_in_web: Im Web öffnen open_in_web: Im Web öffnen
over_character_limit: Zeichenlimit von %{max} überschritten over_character_limit: Zeichenlimit von %{max} überschritten
@ -926,17 +925,17 @@ de:
stream_entries: stream_entries:
pinned: Angehefteter Beitrag pinned: Angehefteter Beitrag
reblogged: teilte reblogged: teilte
sensitive_content: Sensible Inhalte sensitive_content: Heikle Inhalte
terms: terms:
body_html: | body_html: |
<h2>Datenschutzerklärung</h2> <h2>Datenschutzerklärung</h2>
<h3 id="collect">Welche Informationen sammeln wir?</h3> <h3 id="collect">Welche Informationen sammeln wir?</h3>
<ul> <ul>
<li><em>Grundlegende Kontoinformationen</em>: Wenn du dich auf diesem Server registrierst, wirst du darum gebeten, einen Benutzer:innen-Namen, eine E-Mail-Adresse und ein Passwort einzugeben. Du kannst auch zusätzliche Profilinformationen wie etwa einen Anzeigenamen oder eine Biografie eingeben und ein Profilbild oder ein Headerbild hochladen. Der Benutzer:innen-Name, der Anzeigename, die Biografie, das Profilbild und das Headerbild werden immer öffentlich angezeigt.</li> <li><em>Grundlegende Kontoinformationen</em>: Wenn du dich auf diesem Server registrierst, wirst du darum gebeten, einen Benutzer:innen-Namen, eine E-Mail-Adresse und ein Passwort einzugeben. Du kannst auch zusätzliche Profilinformationen wie etwa einen Anzeigenamen oder eine Biografie eingeben und ein Profilbild oder ein Headerbild hochladen. Der Benutzer:innen-Name, der Anzeigename, die Biografie, das Profilbild und das Headerbild werden immer öffentlich angezeigt.</li>
<li><em>Beiträge, Folge- und andere öffentliche Informationen</em>: Die Liste der Leute, denen du folgst, wird öffentlich gezeigt, das gleiche gilt für deine Folgenden (Follower). Sobald du eine Nachricht übermittelst, wird das Datum und die Uhrzeit gemeinsam mit der Information, welche Anwendung du dafür verwendet hast, gespeichert. Nachricht können Medienanhänge enthalten, etwa Bilder und Videos. Öffentliche und ungelistete Beiträge sind öffentlich verfügbar. Sobald du einen Beitrag auf deinem Profil anpinnst, sind dies auch öffentlich verfügbare Informationen. Deine Beiträge werden an deine Folgenden ausgeliefert, was in manchen Fällen bedeutet, dass sie an andere Server ausgeliefert werden und dort Kopien gespeichert werden. Sobald du Beiträge löschst, wird dies ebenso an deine Follower ausgeliefert. Die Handlungen des Teilens und Favorisieren eines anderen Beitrages ist immer öffentlich.</li> <li><em>Beiträge, Folge- und andere öffentliche Informationen</em>: Die Liste der Leute, denen du folgst, wird öffentlich gezeigt, das gleiche gilt für deine Folgenden (Follower). Sobald du eine Nachricht übermittelst, wird das Datum und die Uhrzeit gemeinsam mit der Information, welche Anwendung du dafür verwendet hast, gespeichert. Nachricht können Medienanhänge enthalten, etwa Bilder und Videos. Öffentliche und ungelistete Beiträge sind öffentlich verfügbar. Sobald du einen Beitrag auf deinem Profil anpinnst, sind dies auch öffentlich verfügbare Informationen. Deine Beiträge werden an deine Folgenden ausgeliefert, was in manchen Fällen bedeutet, dass sie an andere Server ausgeliefert werden und dort Kopien gespeichert werden. Sobald du Beiträge löschst, wird dies ebenso an deine Follower ausgeliefert. Die Handlungen des Teilens und Favorisieren eines anderen Beitrages ist immer öffentlich.</li>
<li><em>Direkte und "Nur Folgende"-Beiträge</em>: Alle Beiträge werden auf dem Server gespeichert und verarbeitet. "Nur Folgende"-Beiträge werden an deine Folgenden und an Benutzer:innen, die du in ihnen erwähnst, ausgeliefert, direkte Beiträge nur an in ihnen erwähnte Benutzer:innen. In manchen Fällen bedeutet dass, dass sie an andere Server ausgeliefert werden und dort Kopien gespeichert werden. Wir bemühen uns nach bestem Wissen und Gewissen, den Zugriff auf diese Beiträge auf nur autorisierte Personen einzuschränken, jedoch könnten andere Server dabei scheitern. Deswegen ist es wichtig, die Server, zu denen deine Folgenden gehören, zu überprüfen. Du kannst eine Option in den Einstellungen umschalten, um neue Folgenden manuell anzunehmen oder abzuweisen. <em>Bitte beachte, dass die Betreiber des Server und jedes empfangenden Servers solche Nachrichten anschauen könnten</em> und dass Empfänger von diesen eine Bildschirmkopie erstellen könnten, sie kopieren oder anderweitig weiterverteilen könnten. <em>Teile nicht irgendwelche gefährlichen Informationen über Mastodon.</em></li> <li><em>Direkte und "Nur Folgende"-Beiträge</em>: Alle Beiträge werden auf dem Server gespeichert und verarbeitet. "Nur Folgende"-Beiträge werden an deine Folgenden und an Benutzer:innen, die du in ihnen erwähnst, ausgeliefert, direkte Beiträge nur an in ihnen erwähnte Benutzer:innen. In manchen Fällen bedeutet dass, dass sie an andere Server ausgeliefert werden und dort Kopien gespeichert werden. Wir bemühen uns nach bestem Wissen und Gewissen, den Zugriff auf diese Beiträge auf nur autorisierte Personen einzuschränken, jedoch könnten andere Server dabei scheitern. Deswegen ist es wichtig, die Server, zu denen deine Folgenden gehören, zu überprüfen. Du kannst eine Option in den Einstellungen umschalten, um neue Folgenden manuell anzunehmen oder abzuweisen. <em>Bitte beachte, dass die Betreiber des Server und jedes empfangenden Servers solche Nachrichten anschauen könnten</em> und dass Empfänger von diesen eine Bildschirmkopie erstellen könnten, sie kopieren oder anderweitig weiterverteilen könnten. <em>Teile nicht irgendwelche gefährlichen Informationen über Mastodon.</em></li>
<li><em>Internet Protocol-Adressen (IP-Adressen) und andere Metadaten</em>: Sobald du dich anmeldest, erfassen wir sowohl die IP-Adresse, von der aus du dich anmeldest, als auch den Namen deine Browseranwendung. Alle angemeldeten Sitzungen (Sessions) sind für deine Überprüfung und Widerruf in den Einstellungen verfügbar. Die letzte verwendete IP-Adresse wird bis zu 12 Monate lang gespeichert. Wir könnten auch Serverprotokoll behalten, welche die IP-Adresse von jeder Anfrage an unseren Server enthalten.</li> <li><em>Internet Protocol-Adressen (IP-Adressen) und andere Metadaten</em>: Sobald du dich anmeldest, erfassen wir sowohl die IP-Adresse, von der aus du dich anmeldest, als auch den Namen deine Browseranwendung. Alle angemeldeten Sitzungen (Sessions) sind für deine Überprüfung und Widerruf in den Einstellungen verfügbar. Die letzte verwendete IP-Adresse wird bis zu 12 Monate lang gespeichert. Wir könnten auch Serverprotokoll behalten, welche die IP-Adresse von jeder Anfrage an unseren Server enthalten.</li>
</ul> </ul>
<hr class="spacer" /> <hr class="spacer" />
@ -946,9 +945,9 @@ de:
<p>Jede der von dir gesammelten Information kann in den folgenden Weisen verwendet werden:</p> <p>Jede der von dir gesammelten Information kann in den folgenden Weisen verwendet werden:</p>
<ul> <ul>
<li>Um die Kernfunktionalität von Mastodon bereitzustellen. Du kannst du mit dem Inhalt anderer Leute interagieren und deine eigenen Inhalte beitragen, wenn du angemeldet bist. Zum Beispiel kannst du anderen folgen, um deren kombinierten Beiträge in deine personalisierten Start-Timeline zu sehen.</li> <li>Um die Kernfunktionalität von Mastodon bereitzustellen. Du kannst du mit dem Inhalt anderer Leute interagieren und deine eigenen Inhalte beitragen, wenn du angemeldet bist. Zum Beispiel kannst du anderen folgen, um deren kombinierten Beiträge in deine personalisierten Start-Timeline zu sehen.</li>
<li>Um Moderation der Community zu ermöglichen, zum Beispiel beim Vergleichen deiner IP-Adresse mit anderen bekannten, um Verbotsumgehung oder andere Vergehen festzustellen.</li> <li>Um Moderation der Community zu ermöglichen, zum Beispiel beim Vergleichen deiner IP-Adresse mit anderen bekannten, um Verbotsumgehung oder andere Vergehen festzustellen.</li>
<li>Die E-Mail-Adresse, die du bereitstellst, kann dazu verwendet werden, dir Informationen, Benachrichtigungen über andere Leute, die mit deinen Inhalten interagieren oder dir Nachrichten senden, und auf Anfragen, Wünsche und/oder Fragen zu antworten.</li> <li>Die E-Mail-Adresse, die du bereitstellst, kann dazu verwendet werden, dir Informationen, Benachrichtigungen über andere Leute, die mit deinen Inhalten interagieren oder dir Nachrichten senden, und auf Anfragen, Wünsche und/oder Fragen zu antworten.</li>
</ul> </ul>
<hr class="spacer" /> <hr class="spacer" />
@ -964,8 +963,8 @@ de:
<p>Wir werden mit bestem Wissen und Gewissen:</p> <p>Wir werden mit bestem Wissen und Gewissen:</p>
<ul> <ul>
<li>Serverprotokolle, die IP-Adressen von allen deinen Anfragen an diesen Server, falls solche Protokolle behalten werden, für nicht mehr als 90 Tage behalten.</li> <li>Serverprotokolle, die IP-Adressen von allen deinen Anfragen an diesen Server, falls solche Protokolle behalten werden, für nicht mehr als 90 Tage behalten.</li>
<li>registrierten Benutzer:innen zugeordnete IP-Adressen nicht länger als 12 Monate behalten.</li> <li>registrierten Benutzer:innen zugeordnete IP-Adressen nicht länger als 12 Monate behalten.</li>
</ul> </ul>
<p>Du kannst ein Archiv deines Inhalts anfordern und herunterladen, inkludierend deiner Beiträge, Medienanhänge, Profilbilder und Headerbilder.</p> <p>Du kannst ein Archiv deines Inhalts anfordern und herunterladen, inkludierend deiner Beiträge, Medienanhänge, Profilbilder und Headerbilder.</p>
@ -1022,7 +1021,7 @@ de:
month: "%b %Y" month: "%b %Y"
two_factor_authentication: two_factor_authentication:
code_hint: Gib zur Bestätigung den Code ein, den deine Authenticator-App generiert hat 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 disable: Deaktivieren
enable: Aktivieren enable: Aktivieren
enabled: Zwei-Faktor-Authentisierung ist aktiviert enabled: Zwei-Faktor-Authentisierung ist aktiviert

View File

@ -12,52 +12,53 @@ ar:
last_attempt: بإمكانك إعادة المحاولة مرة واحدة قبل أن يتم قفل حسابك. last_attempt: بإمكانك إعادة المحاولة مرة واحدة قبل أن يتم قفل حسابك.
locked: إن حسابك مقفل. locked: إن حسابك مقفل.
not_found_in_database: "%{authentication_keys} أو كلمة سر خاطئة." not_found_in_database: "%{authentication_keys} أو كلمة سر خاطئة."
timeout: لقد إنتهت مدة صلاحية جلستك. قم بتسجيل الدخول من جديد للمواصلة. pending: إنّ حسابك في انتظار مراجعة.
timeout: لقد انتهت مدة صلاحية جلستك. قم بتسجيل الدخول من جديد للمواصلة.
unauthenticated: يجب عليك تسجيل الدخول أو إنشاء حساب قبل المواصلة. unauthenticated: يجب عليك تسجيل الدخول أو إنشاء حساب قبل المواصلة.
unconfirmed: يجب عليك تأكيد عنوان بريدك الإلكتروني قبل المواصلة. unconfirmed: يجب عليك تأكيد عنوان بريدك الإلكتروني قبل المواصلة.
mailer: mailer:
confirmation_instructions: confirmation_instructions:
action: للتحقق من عنوان البريد الإلكتروني action: للتحقق من عنوان البريد الإلكتروني
action_with_app: تأكيد ثم العودة إلى %{app} action_with_app: تأكيد ثم العودة إلى %{app}
explanation: لقد قمت بإنشاء حساب على %{host} بواسطة عنوان البريد الإلكتروني الحالي. إنك على بعد خطوات قليلة من تفعليه. إن لم تكن من طلب ذلك، يرجى ألّا تولي إهتماما بهذه الرسالة. explanation: لقد قمت بإنشاء حساب على %{host} بواسطة عنوان البريد الإلكتروني الحالي. إنك على بعد خطوات قليلة من تفعليه. إن لم تكن من طلب ذلك، يرجى ألّا تولي اهتماما بهذه الرسالة.
extra_html: ندعوك إلى الإطلاع على <a href="%{terms_path}">القواعد الخاصة بمثيل الخادوم هذا</a> and <a href="%{policy_path}">و شروط الخدمة الخاصة بنا</a>. extra_html: ندعوك إلى الإطلاع على <a href="%{terms_path}">القواعد الخاصة بمثيل الخادوم هذا</a> and <a href="%{policy_path}">و شروط الخدمة الخاصة بنا</a>.
subject: 'ماستدون : تعليمات التأكيد لمثيل الخادوم %{instance}' subject: 'ماستدون: تعليمات التأكيد لمثيل الخادوم %{instance}'
title: للتحقق من عنوان البريد الإلكتروني title: للتحقق من عنوان البريد الإلكتروني
email_changed: email_changed:
explanation: 'لقد تم تغيير عنوان البريد الإلكتروني الخاص بحسابك إلى :' explanation: 'لقد تم تغيير عنوان البريد الإلكتروني الخاص بحسابك إلى :'
extra: إن لم تقم شخصيًا بتعديل عنوان بريدك الإلكتروني ، ذلك يعني أنّ شخصا آخر قد نَفِذَ إلى حسابك. فالرجاء قم بتعديل كلمتك السرية في الحال أو قم بالإتصال بمدير مثيل الخادوم إن كنت غير قادر على استعمال حسابك. extra: إن لم تقم شخصيًا بتعديل عنوان بريدك الإلكتروني ، ذلك يعني أنّ شخصا آخر قد نَفِذَ إلى حسابك. فالرجاء قم بتعديل كلمتك السرية في الحال أو قم بالإتصال بمدير مثيل الخادوم إن كنت غير قادر على استعمال حسابك.
subject: 'ماستدون : تم استبدال عنوان بريدك الإلكتروني' subject: 'ماستدون: تم استبدال عنوان بريدك الإلكتروني'
title: عنوان البريد الإلكتروني الجديد title: عنوان البريد الإلكتروني الجديد
password_change: password_change:
explanation: تم تغيير كلمة السر الخاصة بحسابك. explanation: تم تغيير كلمة السر الخاصة بحسابك.
extra: إن لم تقم شخصيًا بتعديل كلمتك السرية، ذلك يعني أنّ شخصا آخر قد سيطر على حسابك. فالرجاء قم بتعديل كلمتك السرية في الحال أو قم بالإتصال بمدير مثيل الخادوم إن كنت غير قادر على استعمال حسابك. extra: إن لم تقم شخصيًا بتعديل كلمتك السرية، ذلك يعني أنّ شخصا آخر قد سيطر على حسابك. فالرجاء قم بتعديل كلمتك السرية في الحال أو قم بالاتصال بمدير مثيل الخادوم إن كنت غير قادر على استعمال حسابك.
subject: 'ماستدون : تم تغيير كلمة المرور' subject: 'ماستدون: تم تغيير كلمة المرور'
title: تم تغيير كلمة السر title: تم تغيير كلمة السر
reconfirmation_instructions: reconfirmation_instructions:
explanation: ندعوك لتأكيد العنوان الجديد قصد تعديله في بريدك. explanation: ندعوك لتأكيد العنوان الجديد قصد تعديله في بريدك.
extra: إن لم تكن صاحب هذا الطلب ، يُرجى عدم إعارة الإهتمام لهذه الرسالة. فعنوان البريد الإلكتروني المتعلق بحساب ماستدون سوف يبقى هو مِن غير أي تعديل إلّا و فقط إن قمت بالنقر على الرابط أعلاه قصد تعديله. extra: إن لم تكن صاحب هذا الطلب ، يُرجى عدم إعارة الاهتمام لهذه الرسالة. فعنوان البريد الإلكتروني المتعلق بحساب ماستدون سوف يبقى هو مِن غير أي تعديل إلّا و فقط إن قمت بالنقر على الرابط أعلاه قصد تعديله.
subject: 'ماستدون : تأكيد كلمة السر الخاصة بـ %{instance}' subject: 'ماستدون: تأكيد كلمة السر الخاصة بـ %{instance}'
title: التحقق من عنوان البريد الإلكتروني title: التحقق من عنوان البريد الإلكتروني
reset_password_instructions: reset_password_instructions:
action: تغيير كلمة السر action: تغيير كلمة السر
explanation: لقد قمت بطلب تغيير كلمة السر الخاصة بحسابك. explanation: لقد قمت بطلب تغيير كلمة السر الخاصة بحسابك.
extra: إن لم تكن صاحب هذا الطلب ، يُرجى عدم إعارة الإهتمام لهذه الرسالة. فكلِمَتُك السرية تبقى هي مِن غير أي تعديل إلّا و فقط إن قمت بالنقر على الرابط أعلاه قصد إنشاء كلمة سرية جديدة. extra: إن لم تكن صاحب هذا الطلب ، يُرجى عدم إعارة الاهتمام لهذه الرسالة. فكلِمَتُك السرية تبقى هي مِن غير أي تعديل إلّا و فقط إن قمت بالنقر على الرابط أعلاه قصد إنشاء كلمة سرية جديدة.
subject: 'ماستدون : تعليمات إستعادة كلمة المرور' subject: 'ماستدون: تعليمات استعادة كلمة المرور'
title: إعادة تعيين كلمة السر title: إعادة تعيين كلمة السر
unlock_instructions: unlock_instructions:
subject: 'ماستدون : تعليمات فك القفل' subject: 'ماستدون: تعليمات فك القفل'
omniauth_callbacks: omniauth_callbacks:
failure: تعذرت المصادقة من %{kind} بسبب "%{reason}". failure: تعذرت المصادقة من %{kind} بسبب "%{reason}".
success: تمت المصادقة بنجاح عبر حساب %{kind}. success: تمت المصادقة بنجاح عبر حساب %{kind}.
passwords: passwords:
no_token: ليس بإمكانك النفاذ إلى هذه الصفحة إن لم تقم بالنقر على الرابط المتواجد في الرسالة الإلكترونية. الرجاء التحقق مِن أنك قمت بإدخال عنوان الرابط كاملا كما هو مذكور في رسالة إعادة تعيين الكلمة السرية. no_token: ليس بإمكانك النفاذ إلى هذه الصفحة إن لم تقم بالنقر على الرابط المتواجد في الرسالة الإلكترونية. الرجاء التحقق مِن أنك قمت بإدخال عنوان الرابط كاملا كما هو مذكور في رسالة إعادة تعيين الكلمة السرية.
send_instructions: إن كان عنوان بريدك الإلكتروني ضمن قاعدة بياناتنا، فسوف تتلقّى في غضون دقائق رابطا يُمكّنُك مِن استعادة كلمتك السرية على عنوان علبة البريد الإلكتروني الخاصة بك.إن لم تجد هذه الرسالة، يرجى تفقد مجلّد البريد المزعج. send_instructions: إن كان عنوان بريدك الإلكتروني ضمن قاعدة بياناتنا، فسوف تتلقّى في غضون دقائق رابطا يُمكّنُك مِن استعادة كلمتك السرية على عنوان علبة البريد الإلكتروني الخاصة بك. إن لم تجد هذه الرسالة، يرجى تفقد مجلّد البريد المزعج.
send_paranoid_instructions: إن كان عنوان بريدك الإلكتروني ضمن قاعدة بياناتنا، فسوف تتلقّى في غضون دقائق رابطا يُمكّنُك مِن استعادة كلمتك السرية على عنوان علبة البريد الإلكتروني الخاصة بك.إن لم تجد هذه الرسالة، يرجى تفقد مجلّد البريد المزعج. send_paranoid_instructions: إن كان عنوان بريدك الإلكتروني ضمن قاعدة بياناتنا، فسوف تتلقّى في غضون دقائق رابطا يُمكّنُك مِن استعادة كلمتك السرية على عنوان علبة البريد الإلكتروني الخاصة بك. إن لم تجد هذه الرسالة، يرجى تفقد مجلّد البريد المزعج.
updated: تم تغيير كلمة المرور بنجاح. أنت مسجل الآن. updated: تم تغيير كلمة المرور بنجاح. أنت مسجل الآن.
updated_not_active: تم تغيير كلمة المرور بنجاح. updated_not_active: تم تغيير كلمة المرور بنجاح.
registrations: registrations:
destroyed: إلى اللقاء ! لقد تم إلغاء حسابك. نتمنى أن نراك مجددا. destroyed: إلى اللقاء! لقد تم إلغاء حسابك. نتمنى أن نراك مجددا.
signed_up: أهلا وسهلا ! تم تسجيل دخولك بنجاح. signed_up: أهلا وسهلا! تم تسجيل دخولك بنجاح.
signed_up_but_inactive: لقد تمت عملية إنشاء حسابك بنجاح إلاّ أنه لا يمكننا تسجيل دخولك إلاّ بعد قيامك بتفعيله. signed_up_but_inactive: لقد تمت عملية إنشاء حسابك بنجاح إلاّ أنه لا يمكننا تسجيل دخولك إلاّ بعد قيامك بتفعيله.
signed_up_but_locked: لقد تم تسجيل حسابك بنجاح إلّا أنه لا يمكنك تسجيل الدخول لأن حسابك مجمد. signed_up_but_locked: لقد تم تسجيل حسابك بنجاح إلّا أنه لا يمكنك تسجيل الدخول لأن حسابك مجمد.
signed_up_but_unconfirmed: لقد تم إرسال رسالة تحتوي على رابط للتفعيل إلى عنوان بريدك الإلكتروني. بالضغط على الرابط سوف يتم تفعيل حسابك. لذا يُرجى إلقاء نظرة على ملف الرسائل غير المرغوب فيها إنْ لم تَعثُر على الرسالة السالفة الذِكر. signed_up_but_unconfirmed: لقد تم إرسال رسالة تحتوي على رابط للتفعيل إلى عنوان بريدك الإلكتروني. بالضغط على الرابط سوف يتم تفعيل حسابك. لذا يُرجى إلقاء نظرة على ملف الرسائل غير المرغوب فيها إنْ لم تَعثُر على الرسالة السالفة الذِكر.
@ -70,12 +71,12 @@ ar:
unlocks: unlocks:
send_instructions: سوف تتلقى خلال بضع دقائق رسالة إلكترونية تحتوي على التعليمات اللازمة لفك القفل عن حسابك. إن لم تتلقى تلك الرسالة ، ندعوك إلى تفقُّد مجلد البريد المزعج. send_instructions: سوف تتلقى خلال بضع دقائق رسالة إلكترونية تحتوي على التعليمات اللازمة لفك القفل عن حسابك. إن لم تتلقى تلك الرسالة ، ندعوك إلى تفقُّد مجلد البريد المزعج.
send_paranoid_instructions: إن كان حسابك موجود فعليًا فسوف تتلقى في غضون دقائق رسالة إلكترونية تحتوي على تعليمات تدُلُّك على كيفية فك القفل عن حسابك. إن لم تتلقى تلك الرسالة ، ندعوك إلى تفقُّد مجلد البريد المزعج. send_paranoid_instructions: إن كان حسابك موجود فعليًا فسوف تتلقى في غضون دقائق رسالة إلكترونية تحتوي على تعليمات تدُلُّك على كيفية فك القفل عن حسابك. إن لم تتلقى تلك الرسالة ، ندعوك إلى تفقُّد مجلد البريد المزعج.
unlocked: لقد تمت عملية إلغاء تجميد حسابك بنجاح. للمواصلة، يُرجى تسجيل الدخول. unlocked: لقد تمت عملية إلغاء تجميد حسابك بنجاح. للمواصلة ، يُرجى تسجيل الدخول.
errors: errors:
messages: messages:
already_confirmed: قمت بتأكيده من قبل، يرجى إعادة محاولة تسجيل الدخول already_confirmed: قمت بتأكيده من قبل ، يرجى إعادة محاولة تسجيل الدخول
confirmation_period_expired: يجب التأكد منه قبل انقضاء مدة %{period}، يرجى إعادة طلب جديد confirmation_period_expired: يجب التأكد منه قبل انقضاء مدة %{period}، يرجى إعادة طلب جديد
expired: إنتهت مدة صلاحيته، الرجاء طلب واحد جديد expired: انتهت مدة صلاحيته، الرجاء طلب واحد جديد
not_found: لا يوجد not_found: لا يوجد
not_locked: ليس مقفلاً not_locked: ليس مقفلاً
not_saved: not_saved:
@ -84,4 +85,4 @@ ar:
one: 'خطأ واحد منع هذا %{resource} من الحفظ:' one: 'خطأ واحد منع هذا %{resource} من الحفظ:'
other: "%{count} أخطاء منعت هذا %{resource} من الحفظ:" other: "%{count} أخطاء منعت هذا %{resource} من الحفظ:"
two: 'أخطاء منعت هذا %{resource} من الحفظ:' two: 'أخطاء منعت هذا %{resource} من الحفظ:'
zero: 'أخطاء منعت هذا %{resource} من الحفظ:' zero: "%{count} أخطاء منعت هذا %{resource} من الحفظ:"

View File

@ -0,0 +1 @@
bn:

View File

@ -3,15 +3,17 @@ ca:
devise: devise:
confirmations: confirmations:
confirmed: L'adreça de correu s'ha confirmat correctament. 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_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. 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: failure:
already_authenticated: Ja estàs registrat. already_authenticated: Ja estàs registrat.
inactive: El teu compte encara no s'ha activat. inactive: El teu compte encara no s'ha activat.
invalid: "%{authentication_keys} o contrasenya no són vàlids." invalid: "%{authentication_keys} o contrasenya no són vàlids."
last_attempt: Tens un intent més, abans que es bloqui el compte. last_attempt: Tens un intent més, abans que es bloqueji el compte.
locked: El compte s'ha blocat. locked: El compte s'ha bloquejat.
not_found_in_database: "%{authentication_keys} o contrasenya no vàlids." not_found_in_database: "%{authentication_keys} o contrasenya no són vàlids."
pending: El teu compte encara està en revisió. pending: El teu compte encara està en revisió.
timeout: La sessió ha expirat. Inicia sessió una altra vegada per a continuar. timeout: La sessió ha expirat. Inicia sessió una altra vegada per a continuar.
unauthenticated: Cal iniciar sessió o registrar-se abans de continuar. unauthenticated: Cal iniciar sessió o registrar-se abans de continuar.
@ -50,7 +52,7 @@ ca:
subject: 'Mastodon: Instruccions per a desblocar' subject: 'Mastodon: Instruccions per a desblocar'
omniauth_callbacks: omniauth_callbacks:
failure: No podem autentificar-te desde %{kind} degut a "%{reason}". failure: No podem autentificar-te desde %{kind} degut a "%{reason}".
success: Autentificat amb èxit des del compte %{kind} . success: Autentificat amb èxit des del compte %{kind}.
passwords: passwords:
no_token: No pots accedir a aquesta pàgina sense provenir des del correu de restabliment de la contrasenya. Si vens des del correu de restabliment de contrasenya, assegura't que estàs emprant l'adreça completa proporcionada. no_token: No pots accedir a aquesta pàgina sense provenir des del correu de restabliment de la contrasenya. Si vens des del correu de restabliment de contrasenya, assegura't que estàs emprant l'adreça completa proporcionada.
send_instructions: Rebràs un correu electrònic amb instruccions sobre com reiniciar la contrasenya en pocs minuts. send_instructions: Rebràs un correu electrònic amb instruccions sobre com reiniciar la contrasenya en pocs minuts.
@ -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_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. 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. 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: sessions:
already_signed_out: Has tancat la sessió amb èxit. already_signed_out: Has tancat la sessió amb èxit.
signed_in: T'has registrat amb èxit. signed_in: T'has registrat amb èxit.

View File

@ -83,5 +83,6 @@ cs:
not_locked: nebyl uzamčen not_locked: nebyl uzamčen
not_saved: not_saved:
few: "%{count} chyby zabránily uložení tohoto %{resource}:" few: "%{count} chyby zabránily uložení tohoto %{resource}:"
many: "%{count} chyb zabránilo uložení tohoto %{resource}:"
one: '1 chyba zabránila uložení tohoto %{resource}:' one: '1 chyba zabránila uložení tohoto %{resource}:'
other: "%{count} chyb zabránilo uložení tohoto %{resource}:" other: "%{count} chyb zabránilo uložení tohoto %{resource}:"

View File

@ -12,6 +12,7 @@ eo:
last_attempt: Vi ankoraŭ povas provi unufoje antaŭ ol via konto estos ŝlosita. last_attempt: Vi ankoraŭ povas provi unufoje antaŭ ol via konto estos ŝlosita.
locked: Via konto estas ŝlosita. locked: Via konto estas ŝlosita.
not_found_in_database: Nevalida %{authentication_keys} aŭ pasvorto. 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. timeout: Via seanco eksvalidiĝis. Bonvolu ensaluti denove por daŭrigi.
unauthenticated: Vi devas ensaluti aŭ registriĝi antaŭ ol daŭrigi. unauthenticated: Vi devas ensaluti aŭ registriĝi antaŭ ol daŭrigi.
unconfirmed: Vi devas konfirmi vian retadreson antaŭ ol daŭrigi. unconfirmed: Vi devas konfirmi vian retadreson antaŭ ol daŭrigi.
@ -20,6 +21,7 @@ eo:
action: Konfirmi retadreson action: Konfirmi retadreson
action_with_app: Konfirmi kaj reveni al %{app} 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: 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>. 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}' subject: 'Mastodon: Konfirmaj instrukcioj por %{instance}'
title: Konfirmi retadreson title: Konfirmi retadreson
@ -60,6 +62,7 @@ eo:
signed_up: Bonvenon! Vi sukcese registriĝis. 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_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_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. 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. 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. updated: Via konto estis sukcese ĝisdatigita.

View File

@ -2,7 +2,7 @@
es: es:
devise: devise:
confirmations: 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_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. 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: failure:
@ -12,19 +12,22 @@ es:
last_attempt: Tiene un intento más antes de que su cuenta sea bloqueada. last_attempt: Tiene un intento más antes de que su cuenta sea bloqueada.
locked: Su cuenta está bloqueada. locked: Su cuenta está bloqueada.
not_found_in_database: Inválido %{authentication_keys} o contraseña. 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. 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. unauthenticated: Necesita iniciar sesión o registrarse antes de continuar.
unconfirmed: Tiene que confirmar su dirección de correo electrónico antes de continuar. unconfirmed: Tiene que confirmar su dirección de correo electrónico antes de continuar.
mailer: mailer:
confirmation_instructions: confirmation_instructions:
action: Verificar dirección de correo electrónico 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: 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>. extra_html: Por favor revise <a href="%{terms_path}">las reglas de la instancia</a> y <a href="%{policy_path}">nuestros términos de servicio</a>.
subject: 'Mastodon: Instrucciones de confirmación para %{instance}' subject: 'Mastodon: Instrucciones de confirmación para %{instance}'
title: Verificar dirección de correo electrónico title: Verificar dirección de correo electrónico
email_changed: email_changed:
explanation: 'El correo electrónico para su cuenta esta siendo cambiada a:' 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' subject: 'Mastodon: Correo electrónico cambiado'
title: Nueva dirección de correo electrónico title: Nueva dirección de correo electrónico
password_change: password_change:
@ -59,6 +62,7 @@ es:
signed_up: "¡Bienvenido! Se ha registrado con éxito." 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_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_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. 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. 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. updated: su cuenta ha sido actualizada con éxito.

View File

@ -12,6 +12,7 @@ eu:
last_attempt: Saiakera bat geratzen zaizu zure kontua giltzapetu aurretik. last_attempt: Saiakera bat geratzen zaizu zure kontua giltzapetu aurretik.
locked: Zure kontua giltzapetuta dago. locked: Zure kontua giltzapetuta dago.
not_found_in_database: Baliogabeko %{authentication_keys} edo pasahitza. not_found_in_database: Baliogabeko %{authentication_keys} edo pasahitza.
pending: Zure kontua oraindik berrikusteke dago.
timeout: Zure saioa iraungitu da. Hasi saioa berriro jarraitzeko. timeout: Zure saioa iraungitu da. Hasi saioa berriro jarraitzeko.
unauthenticated: Saioa hasi edo izena eman behar duzu jarraitu aurretik. unauthenticated: Saioa hasi edo izena eman behar duzu jarraitu aurretik.
unconfirmed: Zure e-mail helbidea baieztatu 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: Baieztatu e-mail helbidea
action_with_app: Berretsi eta itzuli %{app} aplikaziora 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: 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>. 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' subject: 'Mastodon: %{instance} instantziaren argibideak baieztapenerako'
title: Baieztatu e-mail helbidea title: Baieztatu e-mail helbidea
@ -60,6 +62,7 @@ eu:
signed_up: Ongi etorri! Ongi hasi duzu saioa. 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_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_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. 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. 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. updated: Zure kontua ongi eguneratu da.

View File

@ -56,6 +56,3 @@ he:
expired: פג תוקפו. נא לבקש חדש expired: פג תוקפו. נא לבקש חדש
not_found: לא נמצא not_found: לא נמצא
not_locked: לא היה נעול not_locked: לא היה נעול
not_saved:
one: 'שגיאה אחת מנעה את שמירת %{resource} זה:'
other: "%{count} שגיאות מנעו את שמירת %{resource} זה:"

View File

@ -2,18 +2,9 @@
hr: hr:
devise: devise:
confirmations: confirmations:
already_authenticated: Već si prijavljen.
confirmed: Tvoja email adresa je uspješno potvrđena. 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_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. 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: mailer:
confirmation_instructions: confirmation_instructions:
subject: 'Mastodon: Upute za potvrđivanje %{instance}' subject: 'Mastodon: Upute za potvrđivanje %{instance}'
@ -58,4 +49,3 @@ hr:
expired: je istekao, zatraži novu expired: je istekao, zatraži novu
not_found: nije nađen not_found: nije nađen
not_locked: nije zaključan not_locked: nije zaključan
not_saved: "%{count} greške su zabranile da ovaj %{resource} bude sačuvan:"

View File

@ -0,0 +1 @@
hy:

View File

@ -57,5 +57,4 @@ id:
not_found: tidak ditemukan not_found: tidak ditemukan
not_locked: tidak dikunci not_locked: tidak dikunci
not_saved: not_saved:
one: '1 error yang membuat %{resource} ini tidak dapat disimpan:'
other: "%{count} 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