Merge pull request #603 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
This commit is contained in:
commit
b156fc4b4d
72 changed files with 741 additions and 85 deletions
|
@ -4,6 +4,7 @@ module SettingsHelper
|
||||||
HUMAN_LOCALES = {
|
HUMAN_LOCALES = {
|
||||||
en: 'English',
|
en: 'English',
|
||||||
ar: 'العربية',
|
ar: 'العربية',
|
||||||
|
ast: 'l\'asturianu',
|
||||||
bg: 'Български',
|
bg: 'Български',
|
||||||
ca: 'Català',
|
ca: 'Català',
|
||||||
co: 'Corsu',
|
co: 'Corsu',
|
||||||
|
|
|
@ -40,6 +40,10 @@ export default class KeyboardShortcuts extends ImmutablePureComponent {
|
||||||
<td><kbd>m</kbd></td>
|
<td><kbd>m</kbd></td>
|
||||||
<td><FormattedMessage id='keyboard_shortcuts.mention' defaultMessage='to mention author' /></td>
|
<td><FormattedMessage id='keyboard_shortcuts.mention' defaultMessage='to mention author' /></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><kbd>p</kbd></td>
|
||||||
|
<td><FormattedMessage id='keyboard_shortcuts.profile' defaultMessage="to open author's profile" /></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><kbd>f</kbd></td>
|
<td><kbd>f</kbd></td>
|
||||||
<td><FormattedMessage id='keyboard_shortcuts.favourite' defaultMessage='to favourite' /></td>
|
<td><FormattedMessage id='keyboard_shortcuts.favourite' defaultMessage='to favourite' /></td>
|
||||||
|
@ -49,7 +53,7 @@ export default class KeyboardShortcuts extends ImmutablePureComponent {
|
||||||
<td><FormattedMessage id='keyboard_shortcuts.boost' defaultMessage='to boost' /></td>
|
<td><FormattedMessage id='keyboard_shortcuts.boost' defaultMessage='to boost' /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><kbd>enter</kbd></td>
|
<td><kbd>enter</kbd>, <kbd>o</kbd></td>
|
||||||
<td><FormattedMessage id='keyboard_shortcuts.enter' defaultMessage='to open status' /></td>
|
<td><FormattedMessage id='keyboard_shortcuts.enter' defaultMessage='to open status' /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -57,11 +61,11 @@ export default class KeyboardShortcuts extends ImmutablePureComponent {
|
||||||
<td><FormattedMessage id='keyboard_shortcuts.toggle_hidden' defaultMessage='to show/hide text behind CW' /></td>
|
<td><FormattedMessage id='keyboard_shortcuts.toggle_hidden' defaultMessage='to show/hide text behind CW' /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><kbd>up</kbd></td>
|
<td><kbd>up</kbd>, <kbd>k</kbd></td>
|
||||||
<td><FormattedMessage id='keyboard_shortcuts.up' defaultMessage='to move up in the list' /></td>
|
<td><FormattedMessage id='keyboard_shortcuts.up' defaultMessage='to move up in the list' /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><kbd>down</kbd></td>
|
<td><kbd>down</kbd>, <kbd>j</kbd></td>
|
||||||
<td><FormattedMessage id='keyboard_shortcuts.down' defaultMessage='to move down in the list' /></td>
|
<td><FormattedMessage id='keyboard_shortcuts.down' defaultMessage='to move down in the list' /></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -54,19 +54,23 @@ export default class MediaModal extends ImmutablePureComponent {
|
||||||
this.setState({ index: index % this.props.media.size });
|
this.setState({ index: index % this.props.media.size });
|
||||||
}
|
}
|
||||||
|
|
||||||
handleKeyUp = (e) => {
|
handleKeyDown = (e) => {
|
||||||
switch(e.key) {
|
switch(e.key) {
|
||||||
case 'ArrowLeft':
|
case 'ArrowLeft':
|
||||||
this.handlePrevClick();
|
this.handlePrevClick();
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
break;
|
break;
|
||||||
case 'ArrowRight':
|
case 'ArrowRight':
|
||||||
this.handleNextClick();
|
this.handleNextClick();
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount () {
|
componentDidMount () {
|
||||||
window.addEventListener('keyup', this.handleKeyUp, false);
|
window.addEventListener('keydown', this.handleKeyDown, false);
|
||||||
if (this.context.router) {
|
if (this.context.router) {
|
||||||
const history = this.context.router.history;
|
const history = this.context.router.history;
|
||||||
history.push(history.location.pathname, previewState);
|
history.push(history.location.pathname, previewState);
|
||||||
|
@ -77,7 +81,7 @@ export default class MediaModal extends ImmutablePureComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillUnmount () {
|
componentWillUnmount () {
|
||||||
window.removeEventListener('keyup', this.handleKeyUp);
|
window.removeEventListener('keydown', this.handleKeyDown);
|
||||||
if (this.context.router) {
|
if (this.context.router) {
|
||||||
this.unlistenHistory();
|
this.unlistenHistory();
|
||||||
|
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "مفتاح الإختصار",
|
"keyboard_shortcuts.hotkey": "مفتاح الإختصار",
|
||||||
"keyboard_shortcuts.legend": "لعرض هذا المفتاح",
|
"keyboard_shortcuts.legend": "لعرض هذا المفتاح",
|
||||||
"keyboard_shortcuts.mention": "لذِكر الناشر",
|
"keyboard_shortcuts.mention": "لذِكر الناشر",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "للردّ",
|
"keyboard_shortcuts.reply": "للردّ",
|
||||||
"keyboard_shortcuts.search": "للتركيز على البحث",
|
"keyboard_shortcuts.search": "للتركيز على البحث",
|
||||||
"keyboard_shortcuts.toggle_hidden": "لعرض أو إخفاء النص مِن وراء التحذير",
|
"keyboard_shortcuts.toggle_hidden": "لعرض أو إخفاء النص مِن وراء التحذير",
|
||||||
|
|
309
app/javascript/mastodon/locales/ast.json
Normal file
309
app/javascript/mastodon/locales/ast.json
Normal file
|
@ -0,0 +1,309 @@
|
||||||
|
{
|
||||||
|
"account.badges.bot": "Bot",
|
||||||
|
"account.block": "Block @{name}",
|
||||||
|
"account.block_domain": "Hide everything from {domain}",
|
||||||
|
"account.blocked": "Blocked",
|
||||||
|
"account.direct": "Direct message @{name}",
|
||||||
|
"account.disclaimer_full": "Information below may reflect the user's profile incompletely.",
|
||||||
|
"account.domain_blocked": "Domain hidden",
|
||||||
|
"account.edit_profile": "Edit profile",
|
||||||
|
"account.follow": "Follow",
|
||||||
|
"account.followers": "Followers",
|
||||||
|
"account.follows": "Follows",
|
||||||
|
"account.follows_you": "Follows you",
|
||||||
|
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||||
|
"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.unfollow": "Unfollow",
|
||||||
|
"account.unmute": "Unmute @{name}",
|
||||||
|
"account.unmute_notifications": "Unmute notifications from @{name}",
|
||||||
|
"account.view_full_profile": "View full profile",
|
||||||
|
"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.publish": "Toot",
|
||||||
|
"compose_form.publish_loud": "{publish}!",
|
||||||
|
"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.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? You will lose all replies, boosts and favourites to it.",
|
||||||
|
"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.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.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.notifications": "You don't have any notifications yet. Interact with others to start the conversation.",
|
||||||
|
"empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other instances to fill it up",
|
||||||
|
"follow_request.authorize": "Authorize",
|
||||||
|
"follow_request.reject": "Reject",
|
||||||
|
"getting_started.developers": "Developers",
|
||||||
|
"getting_started.documentation": "Documentation",
|
||||||
|
"getting_started.find_friends": "Find friends from Twitter",
|
||||||
|
"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",
|
||||||
|
"home.column_settings.basic": "Basic",
|
||||||
|
"home.column_settings.show_reblogs": "Show boosts",
|
||||||
|
"home.column_settings.show_replies": "Show replies",
|
||||||
|
"keyboard_shortcuts.back": "to navigate back",
|
||||||
|
"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.down": "to move down in the list",
|
||||||
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
|
"keyboard_shortcuts.favourite": "to favourite",
|
||||||
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
"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",
|
||||||
|
"lists.account.add": "Add to list",
|
||||||
|
"lists.account.remove": "Remove from list",
|
||||||
|
"lists.delete": "Delete list",
|
||||||
|
"lists.edit": "Edit list",
|
||||||
|
"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.blocks": "Blocked users",
|
||||||
|
"navigation_bar.community_timeline": "Local timeline",
|
||||||
|
"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.info": "About this instance",
|
||||||
|
"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.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.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.follow": "New followers:",
|
||||||
|
"notifications.column_settings.mention": "Mentions:",
|
||||||
|
"notifications.column_settings.push": "Push notifications",
|
||||||
|
"notifications.column_settings.push_meta": "This device",
|
||||||
|
"notifications.column_settings.reblog": "Boosts:",
|
||||||
|
"notifications.column_settings.show": "Show in column",
|
||||||
|
"notifications.column_settings.sound": "Play sound",
|
||||||
|
"notifications.group": "{count} notifications",
|
||||||
|
"onboarding.done": "Done",
|
||||||
|
"onboarding.next": "Next",
|
||||||
|
"onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.",
|
||||||
|
"onboarding.page_four.home": "The home timeline shows posts from people you follow.",
|
||||||
|
"onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.",
|
||||||
|
"onboarding.page_one.federation": "Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.",
|
||||||
|
"onboarding.page_one.full_handle": "Your full handle",
|
||||||
|
"onboarding.page_one.handle_hint": "This is what you would tell your friends to search for.",
|
||||||
|
"onboarding.page_one.welcome": "Welcome to Mastodon!",
|
||||||
|
"onboarding.page_six.admin": "Your instance's admin is {admin}.",
|
||||||
|
"onboarding.page_six.almost_done": "Almost done...",
|
||||||
|
"onboarding.page_six.appetoot": "Bon Appetoot!",
|
||||||
|
"onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.",
|
||||||
|
"onboarding.page_six.github": "Mastodon is free open-source software. You can report bugs, request features, or contribute to the code on {github}.",
|
||||||
|
"onboarding.page_six.guidelines": "community guidelines",
|
||||||
|
"onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!",
|
||||||
|
"onboarding.page_six.various_app": "mobile apps",
|
||||||
|
"onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.",
|
||||||
|
"onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.",
|
||||||
|
"onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.",
|
||||||
|
"onboarding.skip": "Skip",
|
||||||
|
"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 instance 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}}",
|
||||||
|
"standalone.public_title": "A look inside...",
|
||||||
|
"status.block": "Block @{name}",
|
||||||
|
"status.cancel_reblog_private": "Unboost",
|
||||||
|
"status.cannot_reblog": "This post cannot be boosted",
|
||||||
|
"status.delete": "Delete",
|
||||||
|
"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.reblog": "Boost",
|
||||||
|
"status.reblog_private": "Boost to original audience",
|
||||||
|
"status.reblogged_by": "{name} boosted",
|
||||||
|
"status.redraft": "Delete & re-draft",
|
||||||
|
"status.reply": "Reply",
|
||||||
|
"status.replyAll": "Reply to thread",
|
||||||
|
"status.report": "Report @{name}",
|
||||||
|
"status.sensitive_toggle": "Click to view",
|
||||||
|
"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.unmute_conversation": "Unmute conversation",
|
||||||
|
"status.unpin": "Unpin from profile",
|
||||||
|
"tabs_bar.federated_timeline": "Federated",
|
||||||
|
"tabs_bar.home": "Home",
|
||||||
|
"tabs_bar.local_timeline": "Local",
|
||||||
|
"tabs_bar.notifications": "Notifications",
|
||||||
|
"tabs_bar.search": "Search",
|
||||||
|
"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",
|
||||||
|
"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"
|
||||||
|
}
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"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.mention": "per esmentar l'autor",
|
"keyboard_shortcuts.mention": "per esmentar l'autor",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "respondre",
|
"keyboard_shortcuts.reply": "respondre",
|
||||||
"keyboard_shortcuts.search": "per centrar la cerca",
|
"keyboard_shortcuts.search": "per centrar la cerca",
|
||||||
"keyboard_shortcuts.toggle_hidden": "per a mostrar/amagar text sota CW",
|
"keyboard_shortcuts.toggle_hidden": "per a mostrar/amagar text sota CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Accorta",
|
"keyboard_shortcuts.hotkey": "Accorta",
|
||||||
"keyboard_shortcuts.legend": "vede a legenda",
|
"keyboard_shortcuts.legend": "vede a legenda",
|
||||||
"keyboard_shortcuts.mention": "mintuvà l'autore",
|
"keyboard_shortcuts.mention": "mintuvà l'autore",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "risponde",
|
"keyboard_shortcuts.reply": "risponde",
|
||||||
"keyboard_shortcuts.search": "fucalizà nant'à l'area di circata",
|
"keyboard_shortcuts.search": "fucalizà nant'à l'area di circata",
|
||||||
"keyboard_shortcuts.toggle_hidden": "vede/piattà u testu daretu à l'avertimentu CW",
|
"keyboard_shortcuts.toggle_hidden": "vede/piattà u testu daretu à l'avertimentu CW",
|
||||||
|
|
|
@ -24,67 +24,67 @@
|
||||||
"account.requested": "Požadavek čeká na schválení. Kliknutím zrušíte požadavek o sledování",
|
"account.requested": "Požadavek čeká na schválení. Kliknutím zrušíte požadavek o sledování",
|
||||||
"account.share": "Sdílet profil uživatele @{name}",
|
"account.share": "Sdílet profil uživatele @{name}",
|
||||||
"account.show_reblogs": "Zobrazit povýšení od uživatele @{name}",
|
"account.show_reblogs": "Zobrazit povýšení od uživatele @{name}",
|
||||||
"account.unblock": "Unblock @{name}",
|
"account.unblock": "Odblokovat uživatele @{name}",
|
||||||
"account.unblock_domain": "Unhide {domain}",
|
"account.unblock_domain": "Odkrýt doménu {domain}",
|
||||||
"account.unfollow": "Unfollow",
|
"account.unfollow": "Přestat sledovat",
|
||||||
"account.unmute": "Unmute @{name}",
|
"account.unmute": "Přestat ignorovat uživatele @{name}",
|
||||||
"account.unmute_notifications": "Unmute notifications from @{name}",
|
"account.unmute_notifications": "Odtišit oznámení od uživatele @{name}",
|
||||||
"account.view_full_profile": "View full profile",
|
"account.view_full_profile": "Zobrazit celý profil",
|
||||||
"alert.unexpected.message": "An unexpected error occurred.",
|
"alert.unexpected.message": "Objevila se neočekávaná chyba.",
|
||||||
"alert.unexpected.title": "Oops!",
|
"alert.unexpected.title": "Jejda!",
|
||||||
"boost_modal.combo": "You can press {combo} to skip this next time",
|
"boost_modal.combo": "Příště můžete pro přeskočení kliknout na {combo}",
|
||||||
"bundle_column_error.body": "Something went wrong while loading this component.",
|
"bundle_column_error.body": "Při načtení tohoto prvku se něco pokazilo.",
|
||||||
"bundle_column_error.retry": "Try again",
|
"bundle_column_error.retry": "Zkuste to znovu",
|
||||||
"bundle_column_error.title": "Network error",
|
"bundle_column_error.title": "Chyba sítě",
|
||||||
"bundle_modal_error.close": "Close",
|
"bundle_modal_error.close": "Zavřít",
|
||||||
"bundle_modal_error.message": "Something went wrong while loading this component.",
|
"bundle_modal_error.message": "Při načítání tohoto komponentu se něco pokazilo.",
|
||||||
"bundle_modal_error.retry": "Try again",
|
"bundle_modal_error.retry": "Zkusit znovu",
|
||||||
"column.blocks": "Blocked users",
|
"column.blocks": "Blokovaní uživatelé",
|
||||||
"column.community": "Local timeline",
|
"column.community": "Místní časová osa",
|
||||||
"column.direct": "Direct messages",
|
"column.direct": "Přímé zprávy",
|
||||||
"column.domain_blocks": "Hidden domains",
|
"column.domain_blocks": "Skryté domény",
|
||||||
"column.favourites": "Favourites",
|
"column.favourites": "Oblíbené",
|
||||||
"column.follow_requests": "Follow requests",
|
"column.follow_requests": "Žádosti o sledování",
|
||||||
"column.home": "Home",
|
"column.home": "Domů",
|
||||||
"column.lists": "Lists",
|
"column.lists": "Seznamy",
|
||||||
"column.mutes": "Muted users",
|
"column.mutes": "Ignorovaní uživatelé",
|
||||||
"column.notifications": "Notifications",
|
"column.notifications": "Oznámení",
|
||||||
"column.pins": "Pinned toot",
|
"column.pins": "Připnuté tooty",
|
||||||
"column.public": "Federated timeline",
|
"column.public": "Federovaná časová osa",
|
||||||
"column_back_button.label": "Back",
|
"column_back_button.label": "Zpět",
|
||||||
"column_header.hide_settings": "Hide settings",
|
"column_header.hide_settings": "Skrýt nastavení",
|
||||||
"column_header.moveLeft_settings": "Move column to the left",
|
"column_header.moveLeft_settings": "Přesunout sloupec doleva",
|
||||||
"column_header.moveRight_settings": "Move column to the right",
|
"column_header.moveRight_settings": "Přesunout sloupec doprava",
|
||||||
"column_header.pin": "Pin",
|
"column_header.pin": "Připnout",
|
||||||
"column_header.show_settings": "Show settings",
|
"column_header.show_settings": "Zobrazit nastavení",
|
||||||
"column_header.unpin": "Unpin",
|
"column_header.unpin": "Odepnout",
|
||||||
"column_subheading.settings": "Settings",
|
"column_subheading.settings": "Nastavení",
|
||||||
"community.column_settings.media_only": "Media Only",
|
"community.column_settings.media_only": "Pouze média",
|
||||||
"compose_form.direct_message_warning": "This toot will only be sent to all the mentioned users.",
|
"compose_form.direct_message_warning": "Tento toot bude vidielný pouze zmíněným uživatelům.",
|
||||||
"compose_form.direct_message_warning_learn_more": "Learn more",
|
"compose_form.direct_message_warning_learn_more": "Zjistit více",
|
||||||
"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": "Tento toot nebude zobrazen pod žádným hashtagem, neboť je neuvedený. Pouze veřejné tooty mohou být vyhledány podle hashtagu.",
|
||||||
"compose_form.lock_disclaimer": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
|
"compose_form.lock_disclaimer": "Váš účet není {locked}. Kdokoliv vás může sledovat a vidět vaše příspěvky pouze pro sledovatele.",
|
||||||
"compose_form.lock_disclaimer.lock": "locked",
|
"compose_form.lock_disclaimer.lock": "zamknutý",
|
||||||
"compose_form.placeholder": "What is on your mind?",
|
"compose_form.placeholder": "Co máte na mysli?",
|
||||||
"compose_form.publish": "Toot",
|
"compose_form.publish": "Tootnout",
|
||||||
"compose_form.publish_loud": "{publish}!",
|
"compose_form.publish_loud": "{publish}!",
|
||||||
"compose_form.sensitive.marked": "Media is marked as sensitive",
|
"compose_form.sensitive.marked": "Mediální obsah je označen jako citlivý",
|
||||||
"compose_form.sensitive.unmarked": "Media is not marked as sensitive",
|
"compose_form.sensitive.unmarked": "Mediální obsah není označen jako citlivý",
|
||||||
"compose_form.spoiler.marked": "Text is hidden behind warning",
|
"compose_form.spoiler.marked": "Text je ukrytý za varováním",
|
||||||
"compose_form.spoiler.unmarked": "Text is not hidden",
|
"compose_form.spoiler.unmarked": "Text není ukrytý",
|
||||||
"compose_form.spoiler_placeholder": "Write your warning here",
|
"compose_form.spoiler_placeholder": "Sem napište vaše varování",
|
||||||
"confirmation_modal.cancel": "Cancel",
|
"confirmation_modal.cancel": "Zrušit",
|
||||||
"confirmations.block.confirm": "Block",
|
"confirmations.block.confirm": "Blokovat",
|
||||||
"confirmations.block.message": "Are you sure you want to block {name}?",
|
"confirmations.block.message": "Jste si jistý/á, že chcete zablokovat uživatele {name}?",
|
||||||
"confirmations.delete.confirm": "Delete",
|
"confirmations.delete.confirm": "Smazat",
|
||||||
"confirmations.delete.message": "Are you sure you want to delete this status?",
|
"confirmations.delete.message": "Jste si jistý/á, že chcete smazat tento status?",
|
||||||
"confirmations.delete_list.confirm": "Delete",
|
"confirmations.delete_list.confirm": "Smazat",
|
||||||
"confirmations.delete_list.message": "Are you sure you want to permanently delete this list?",
|
"confirmations.delete_list.message": "Jste si jistý/á, že chcete tento seznam navždy vymazat?",
|
||||||
"confirmations.domain_block.confirm": "Hide entire domain",
|
"confirmations.domain_block.confirm": "Skrýt celou doménu",
|
||||||
"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": "Jste si opravdu, opravdu jistý/á, že chcete blokovat celou {domain}? Ve většině případů stačí zablokovat nebo ignorovat pár konkrétních uživatelů, což se doporučuje. Z této domény neuvidíte obsah v žádné veřejné časové ose ani v oznámeních. Vaši sledovatelé z této domény budou odstraněni.",
|
||||||
"confirmations.mute.confirm": "Mute",
|
"confirmations.mute.confirm": "Ignorovat",
|
||||||
"confirmations.mute.message": "Are you sure you want to mute {name}?",
|
"confirmations.mute.message": "Jste si jistý/á, že chcete ignorovat uživatele {name}?",
|
||||||
"confirmations.redraft.confirm": "Delete & redraft",
|
"confirmations.redraft.confirm": "Vymazat a přepsat",
|
||||||
"confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? You will lose all replies, boosts and favourites to it.",
|
"confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? You will lose all replies, boosts and favourites to it.",
|
||||||
"confirmations.unfollow.confirm": "Unfollow",
|
"confirmations.unfollow.confirm": "Unfollow",
|
||||||
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
|
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
|
||||||
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Hurtigtast",
|
"keyboard_shortcuts.hotkey": "Hurtigtast",
|
||||||
"keyboard_shortcuts.legend": "for at vise denne legende",
|
"keyboard_shortcuts.legend": "for at vise denne legende",
|
||||||
"keyboard_shortcuts.mention": "for at nævne forfatteren",
|
"keyboard_shortcuts.mention": "for at nævne forfatteren",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "for at svare",
|
"keyboard_shortcuts.reply": "for at svare",
|
||||||
"keyboard_shortcuts.search": "for at fokusere søgningen",
|
"keyboard_shortcuts.search": "for at fokusere søgningen",
|
||||||
"keyboard_shortcuts.toggle_hidden": "for at vise/skjule tekst bag CW",
|
"keyboard_shortcuts.toggle_hidden": "for at vise/skjule tekst bag CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Tastenkürzel",
|
"keyboard_shortcuts.hotkey": "Tastenkürzel",
|
||||||
"keyboard_shortcuts.legend": "um diese Übersicht anzuzeigen",
|
"keyboard_shortcuts.legend": "um diese Übersicht anzuzeigen",
|
||||||
"keyboard_shortcuts.mention": "um Autor_in zu erwähnen",
|
"keyboard_shortcuts.mention": "um Autor_in zu erwähnen",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "um zu antworten",
|
"keyboard_shortcuts.reply": "um zu antworten",
|
||||||
"keyboard_shortcuts.search": "um die Suche zu fokussieren",
|
"keyboard_shortcuts.search": "um die Suche zu fokussieren",
|
||||||
"keyboard_shortcuts.toggle_hidden": "um den Text hinter einer Inhaltswarnung zu verstecken oder ihn anzuzeigen",
|
"keyboard_shortcuts.toggle_hidden": "um den Text hinter einer Inhaltswarnung zu verstecken oder ihn anzuzeigen",
|
||||||
|
|
|
@ -1254,6 +1254,10 @@
|
||||||
"defaultMessage": "to mention author",
|
"defaultMessage": "to mention author",
|
||||||
"id": "keyboard_shortcuts.mention"
|
"id": "keyboard_shortcuts.mention"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"defaultMessage": "to open author's profile",
|
||||||
|
"id": "keyboard_shortcuts.profile"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"defaultMessage": "to favourite",
|
"defaultMessage": "to favourite",
|
||||||
"id": "keyboard_shortcuts.favourite"
|
"id": "keyboard_shortcuts.favourite"
|
||||||
|
|
|
@ -114,9 +114,9 @@
|
||||||
"empty_column.public": "Δεν υπάρχει τίποτα εδώ! Γράψε κάτι δημόσιο, ή ακολούθησε χειροκίνητα χρήστες από άλλα instances για να τη γεμίσεις",
|
"empty_column.public": "Δεν υπάρχει τίποτα εδώ! Γράψε κάτι δημόσιο, ή ακολούθησε χειροκίνητα χρήστες από άλλα instances για να τη γεμίσεις",
|
||||||
"follow_request.authorize": "Ενέκρινε",
|
"follow_request.authorize": "Ενέκρινε",
|
||||||
"follow_request.reject": "Απέρριψε",
|
"follow_request.reject": "Απέρριψε",
|
||||||
"getting_started.developers": "Προγραμματιστές",
|
"getting_started.developers": "Ανάπτυξη",
|
||||||
"getting_started.documentation": "Documentation",
|
"getting_started.documentation": "Τεκμηρίωση",
|
||||||
"getting_started.find_friends": "Βρες φίλους/ες από το Twitter",
|
"getting_started.find_friends": "Βρες φίλους από το Twitter",
|
||||||
"getting_started.heading": "Αφετηρία",
|
"getting_started.heading": "Αφετηρία",
|
||||||
"getting_started.invite": "Προσκάλεσε κόσμο",
|
"getting_started.invite": "Προσκάλεσε κόσμο",
|
||||||
"getting_started.open_source_notice": "Το Mastodon είναι ελεύθερο λογισμικό. Μπορείς να συνεισφέρεις ή να αναφέρεις ζητήματα στο GitHub στο {github}.",
|
"getting_started.open_source_notice": "Το Mastodon είναι ελεύθερο λογισμικό. Μπορείς να συνεισφέρεις ή να αναφέρεις ζητήματα στο GitHub στο {github}.",
|
||||||
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Συντόμευση",
|
"keyboard_shortcuts.hotkey": "Συντόμευση",
|
||||||
"keyboard_shortcuts.legend": "για να εμφανίσεις αυτόν τον οδηγό",
|
"keyboard_shortcuts.legend": "για να εμφανίσεις αυτόν τον οδηγό",
|
||||||
"keyboard_shortcuts.mention": "για να αναφέρεις το συγγραφέα",
|
"keyboard_shortcuts.mention": "για να αναφέρεις το συγγραφέα",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "για απάντηση",
|
"keyboard_shortcuts.reply": "για απάντηση",
|
||||||
"keyboard_shortcuts.search": "για εστίαση αναζήτησης",
|
"keyboard_shortcuts.search": "για εστίαση αναζήτησης",
|
||||||
"keyboard_shortcuts.toggle_hidden": "για εμφάνιση/απόκρυψη κειμένου πίσω από την προειδοποίηση",
|
"keyboard_shortcuts.toggle_hidden": "για εμφάνιση/απόκρυψη κειμένου πίσω από την προειδοποίηση",
|
||||||
|
@ -163,17 +164,17 @@
|
||||||
"navigation_bar.community_timeline": "Τοπική ροή",
|
"navigation_bar.community_timeline": "Τοπική ροή",
|
||||||
"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.info": "Extended information",
|
"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.public_timeline": "Ομοσπονδιακή ροή",
|
"navigation_bar.public_timeline": "Ομοσπονδιακή ροή",
|
||||||
|
@ -222,7 +223,7 @@
|
||||||
"privacy.private.short": "Μόνο ακόλουθοι",
|
"privacy.private.short": "Μόνο ακόλουθοι",
|
||||||
"privacy.public.long": "Δημοσίευσε στις δημόσιες ροές",
|
"privacy.public.long": "Δημοσίευσε στις δημόσιες ροές",
|
||||||
"privacy.public.short": "Δημόσιο",
|
"privacy.public.short": "Δημόσιο",
|
||||||
"privacy.unlisted.long": "Do not show in public timelines",
|
"privacy.unlisted.long": "Μην δημοσιεύσεις στις δημόσιες ροές",
|
||||||
"privacy.unlisted.short": "Μη καταχωρημένα",
|
"privacy.unlisted.short": "Μη καταχωρημένα",
|
||||||
"regeneration_indicator.label": "Φορτώνει…",
|
"regeneration_indicator.label": "Φορτώνει…",
|
||||||
"regeneration_indicator.sublabel": "Η αρχική σου ροή ετοιμάζεται!",
|
"regeneration_indicator.sublabel": "Η αρχική σου ροή ετοιμάζεται!",
|
||||||
|
@ -243,7 +244,7 @@
|
||||||
"search_popout.tips.full_text": "Απλό κείμενο που επιστρέφει καταστάσεις που έχεις γράψει, σημειώσει ως αγαπημένες, προωθήσει ή έχεις αναφερθεί σε αυτές, καθώς και όσα ονόματα χρηστών και ταμπέλες ταιριάζουν.",
|
"search_popout.tips.full_text": "Απλό κείμενο που επιστρέφει καταστάσεις που έχεις γράψει, σημειώσει ως αγαπημένες, προωθήσει ή έχεις αναφερθεί σε αυτές, καθώς και όσα ονόματα χρηστών και ταμπέλες ταιριάζουν.",
|
||||||
"search_popout.tips.hashtag": "ταμπέλα",
|
"search_popout.tips.hashtag": "ταμπέλα",
|
||||||
"search_popout.tips.status": "status",
|
"search_popout.tips.status": "status",
|
||||||
"search_popout.tips.text": "Απλό κείμενο που επιστρέφει ταιριαστά ονόματα και ταμπέλες",
|
"search_popout.tips.text": "Απλό κείμενο που επιστρέφει ονόματα και ταμπέλες που ταιριάζουν",
|
||||||
"search_popout.tips.user": "χρήστης",
|
"search_popout.tips.user": "χρήστης",
|
||||||
"search_results.accounts": "Άνθρωποι",
|
"search_results.accounts": "Άνθρωποι",
|
||||||
"search_results.hashtags": "Ταμπέλες",
|
"search_results.hashtags": "Ταμπέλες",
|
||||||
|
@ -273,7 +274,7 @@
|
||||||
"status.redraft": "Σβήσε & ξαναγράψε",
|
"status.redraft": "Σβήσε & ξαναγράψε",
|
||||||
"status.reply": "Απάντησε",
|
"status.reply": "Απάντησε",
|
||||||
"status.replyAll": "Απάντησε στην συζήτηση",
|
"status.replyAll": "Απάντησε στην συζήτηση",
|
||||||
"status.report": "Καταγγελία @{name}",
|
"status.report": "Κατάγγειλε @{name}",
|
||||||
"status.sensitive_toggle": "Κλικ για να δεις",
|
"status.sensitive_toggle": "Κλικ για να δεις",
|
||||||
"status.sensitive_warning": "Ευαίσθητο περιεχόμενο",
|
"status.sensitive_warning": "Ευαίσθητο περιεχόμενο",
|
||||||
"status.share": "Μοιράσου",
|
"status.share": "Μοιράσου",
|
||||||
|
|
|
@ -141,6 +141,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Rapidklavo",
|
"keyboard_shortcuts.hotkey": "Rapidklavo",
|
||||||
"keyboard_shortcuts.legend": "por montri ĉi tiun noton",
|
"keyboard_shortcuts.legend": "por montri ĉi tiun noton",
|
||||||
"keyboard_shortcuts.mention": "por mencii la aŭtoron",
|
"keyboard_shortcuts.mention": "por mencii la aŭtoron",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "por respondi",
|
"keyboard_shortcuts.reply": "por respondi",
|
||||||
"keyboard_shortcuts.search": "por fokusigi la serĉilon",
|
"keyboard_shortcuts.search": "por fokusigi la serĉilon",
|
||||||
"keyboard_shortcuts.toggle_hidden": "por montri/kaŝi tekston malantaŭ enhava averto",
|
"keyboard_shortcuts.toggle_hidden": "por montri/kaŝi tekston malantaŭ enhava averto",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Tecla caliente",
|
"keyboard_shortcuts.hotkey": "Tecla caliente",
|
||||||
"keyboard_shortcuts.legend": "para mostrar esta leyenda",
|
"keyboard_shortcuts.legend": "para mostrar esta leyenda",
|
||||||
"keyboard_shortcuts.mention": "para mencionar al autor",
|
"keyboard_shortcuts.mention": "para mencionar al autor",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "para responder",
|
"keyboard_shortcuts.reply": "para responder",
|
||||||
"keyboard_shortcuts.search": "para poner el foco en la búsqueda",
|
"keyboard_shortcuts.search": "para poner el foco en la búsqueda",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Laster-tekla",
|
"keyboard_shortcuts.hotkey": "Laster-tekla",
|
||||||
"keyboard_shortcuts.legend": "legenda hau bistaratzea",
|
"keyboard_shortcuts.legend": "legenda hau bistaratzea",
|
||||||
"keyboard_shortcuts.mention": "egilea aipatzea",
|
"keyboard_shortcuts.mention": "egilea aipatzea",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "erantzutea",
|
"keyboard_shortcuts.reply": "erantzutea",
|
||||||
"keyboard_shortcuts.search": "bilaketan fokua jartzea",
|
"keyboard_shortcuts.search": "bilaketan fokua jartzea",
|
||||||
"keyboard_shortcuts.toggle_hidden": "testua erakustea/ezkutatzea abisu baten atzean",
|
"keyboard_shortcuts.toggle_hidden": "testua erakustea/ezkutatzea abisu baten atzean",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "میانبر",
|
"keyboard_shortcuts.hotkey": "میانبر",
|
||||||
"keyboard_shortcuts.legend": "برای نمایش این راهنما",
|
"keyboard_shortcuts.legend": "برای نمایش این راهنما",
|
||||||
"keyboard_shortcuts.mention": "برای نامبردن از نویسنده",
|
"keyboard_shortcuts.mention": "برای نامبردن از نویسنده",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "برای پاسخدادن",
|
"keyboard_shortcuts.reply": "برای پاسخدادن",
|
||||||
"keyboard_shortcuts.search": "برای فعالکردن جستجو",
|
"keyboard_shortcuts.search": "برای فعالکردن جستجو",
|
||||||
"keyboard_shortcuts.toggle_hidden": "برای نمایش/نهفتن نوشتهٔ پشت هشدار محتوا",
|
"keyboard_shortcuts.toggle_hidden": "برای نمایش/نهفتن نوشتهٔ پشت هشدار محتوا",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Pikanäppäin",
|
"keyboard_shortcuts.hotkey": "Pikanäppäin",
|
||||||
"keyboard_shortcuts.legend": "näytä tämä selite",
|
"keyboard_shortcuts.legend": "näytä tämä selite",
|
||||||
"keyboard_shortcuts.mention": "mainitse julkaisija",
|
"keyboard_shortcuts.mention": "mainitse julkaisija",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "vastaa",
|
"keyboard_shortcuts.reply": "vastaa",
|
||||||
"keyboard_shortcuts.search": "siirry hakukenttään",
|
"keyboard_shortcuts.search": "siirry hakukenttään",
|
||||||
"keyboard_shortcuts.toggle_hidden": "näytä/piilota sisältövaroituksella merkitty teksti",
|
"keyboard_shortcuts.toggle_hidden": "näytä/piilota sisältövaroituksella merkitty teksti",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Raccourci",
|
"keyboard_shortcuts.hotkey": "Raccourci",
|
||||||
"keyboard_shortcuts.legend": "pour afficher cette légende",
|
"keyboard_shortcuts.legend": "pour afficher cette légende",
|
||||||
"keyboard_shortcuts.mention": "pour mentionner l'auteur",
|
"keyboard_shortcuts.mention": "pour mentionner l'auteur",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "pour répondre",
|
"keyboard_shortcuts.reply": "pour répondre",
|
||||||
"keyboard_shortcuts.search": "pour cibler la recherche",
|
"keyboard_shortcuts.search": "pour cibler la recherche",
|
||||||
"keyboard_shortcuts.toggle_hidden": "pour afficher/cacher un texte derrière CW",
|
"keyboard_shortcuts.toggle_hidden": "pour afficher/cacher un texte derrière CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Tecla de acceso directo",
|
"keyboard_shortcuts.hotkey": "Tecla de acceso directo",
|
||||||
"keyboard_shortcuts.legend": "para mostrar esta lenda",
|
"keyboard_shortcuts.legend": "para mostrar esta lenda",
|
||||||
"keyboard_shortcuts.mention": "para mencionar o autor",
|
"keyboard_shortcuts.mention": "para mencionar o autor",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "para responder",
|
"keyboard_shortcuts.reply": "para responder",
|
||||||
"keyboard_shortcuts.search": "para centrar a busca",
|
"keyboard_shortcuts.search": "para centrar a busca",
|
||||||
"keyboard_shortcuts.toggle_hidden": "mostrar/agochar un texto detrás do AC",
|
"keyboard_shortcuts.toggle_hidden": "mostrar/agochar un texto detrás do AC",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "מקש קיצור",
|
"keyboard_shortcuts.hotkey": "מקש קיצור",
|
||||||
"keyboard_shortcuts.legend": "להציג את הפירוש",
|
"keyboard_shortcuts.legend": "להציג את הפירוש",
|
||||||
"keyboard_shortcuts.mention": "לאזכר את המחבר(ת)",
|
"keyboard_shortcuts.mention": "לאזכר את המחבר(ת)",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "לענות",
|
"keyboard_shortcuts.reply": "לענות",
|
||||||
"keyboard_shortcuts.search": "להתמקד בחלון החיפוש",
|
"keyboard_shortcuts.search": "להתמקד בחלון החיפוש",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Gyorsbillentyű",
|
"keyboard_shortcuts.hotkey": "Gyorsbillentyű",
|
||||||
"keyboard_shortcuts.legend": "jelmagyarázat megjelenítése",
|
"keyboard_shortcuts.legend": "jelmagyarázat megjelenítése",
|
||||||
"keyboard_shortcuts.mention": "szerző megjelenítése",
|
"keyboard_shortcuts.mention": "szerző megjelenítése",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "válaszolás",
|
"keyboard_shortcuts.reply": "válaszolás",
|
||||||
"keyboard_shortcuts.search": "kereső kiemelése",
|
"keyboard_shortcuts.search": "kereső kiemelése",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Հատուկ ստեղն",
|
"keyboard_shortcuts.hotkey": "Հատուկ ստեղն",
|
||||||
"keyboard_shortcuts.legend": "այս ձեռնարկը ցուցադրելու համար",
|
"keyboard_shortcuts.legend": "այս ձեռնարկը ցուցադրելու համար",
|
||||||
"keyboard_shortcuts.mention": "հեղինակին նշելու համար",
|
"keyboard_shortcuts.mention": "հեղինակին նշելու համար",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "պատասխանելու համար",
|
"keyboard_shortcuts.reply": "պատասխանելու համար",
|
||||||
"keyboard_shortcuts.search": "որոնման դաշտին սեւեռվելու համար",
|
"keyboard_shortcuts.search": "որոնման դաշտին սեւեռվելու համար",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
"keyboard_shortcuts.search": "untuk fokus mencari",
|
"keyboard_shortcuts.search": "untuk fokus mencari",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Tasto di scelta rapida",
|
"keyboard_shortcuts.hotkey": "Tasto di scelta rapida",
|
||||||
"keyboard_shortcuts.legend": "per mostrare questa spiegazione",
|
"keyboard_shortcuts.legend": "per mostrare questa spiegazione",
|
||||||
"keyboard_shortcuts.mention": "per menzionare l'autore",
|
"keyboard_shortcuts.mention": "per menzionare l'autore",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "per rispondere",
|
"keyboard_shortcuts.reply": "per rispondere",
|
||||||
"keyboard_shortcuts.search": "per spostare il focus sulla ricerca",
|
"keyboard_shortcuts.search": "per spostare il focus sulla ricerca",
|
||||||
"keyboard_shortcuts.toggle_hidden": "per mostrare/nascondere il testo dei CW",
|
"keyboard_shortcuts.toggle_hidden": "per mostrare/nascondere il testo dei CW",
|
||||||
|
|
|
@ -141,6 +141,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "ホットキー",
|
"keyboard_shortcuts.hotkey": "ホットキー",
|
||||||
"keyboard_shortcuts.legend": "この一覧を表示",
|
"keyboard_shortcuts.legend": "この一覧を表示",
|
||||||
"keyboard_shortcuts.mention": "メンション",
|
"keyboard_shortcuts.mention": "メンション",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "返信",
|
"keyboard_shortcuts.reply": "返信",
|
||||||
"keyboard_shortcuts.search": "検索欄に移動",
|
"keyboard_shortcuts.search": "検索欄に移動",
|
||||||
"keyboard_shortcuts.toggle_hidden": "CWで隠れた文を見る/隠す",
|
"keyboard_shortcuts.toggle_hidden": "CWで隠れた文を見る/隠す",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "핫키",
|
"keyboard_shortcuts.hotkey": "핫키",
|
||||||
"keyboard_shortcuts.legend": "이 도움말 표시",
|
"keyboard_shortcuts.legend": "이 도움말 표시",
|
||||||
"keyboard_shortcuts.mention": "멘션",
|
"keyboard_shortcuts.mention": "멘션",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "답장",
|
"keyboard_shortcuts.reply": "답장",
|
||||||
"keyboard_shortcuts.search": "검색창에 포커스",
|
"keyboard_shortcuts.search": "검색창에 포커스",
|
||||||
"keyboard_shortcuts.toggle_hidden": "CW로 가려진 텍스트를 표시/비표시",
|
"keyboard_shortcuts.toggle_hidden": "CW로 가려진 텍스트를 표시/비표시",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Sneltoets",
|
"keyboard_shortcuts.hotkey": "Sneltoets",
|
||||||
"keyboard_shortcuts.legend": "om deze legenda te tonen",
|
"keyboard_shortcuts.legend": "om deze legenda te tonen",
|
||||||
"keyboard_shortcuts.mention": "om de auteur te vermelden",
|
"keyboard_shortcuts.mention": "om de auteur te vermelden",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "om te reageren",
|
"keyboard_shortcuts.reply": "om te reageren",
|
||||||
"keyboard_shortcuts.search": "om het zoekvak te focussen",
|
"keyboard_shortcuts.search": "om het zoekvak te focussen",
|
||||||
"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",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Lyntast",
|
"keyboard_shortcuts.hotkey": "Lyntast",
|
||||||
"keyboard_shortcuts.legend": "å vise denne forklaringen",
|
"keyboard_shortcuts.legend": "å vise denne forklaringen",
|
||||||
"keyboard_shortcuts.mention": "å nevne forfatter",
|
"keyboard_shortcuts.mention": "å nevne forfatter",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "for å svare",
|
"keyboard_shortcuts.reply": "for å svare",
|
||||||
"keyboard_shortcuts.search": "å fokusere søk",
|
"keyboard_shortcuts.search": "å fokusere søk",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Acorchis",
|
"keyboard_shortcuts.hotkey": "Acorchis",
|
||||||
"keyboard_shortcuts.legend": "mostrar aquesta legenda",
|
"keyboard_shortcuts.legend": "mostrar aquesta legenda",
|
||||||
"keyboard_shortcuts.mention": "mencionar l’autor",
|
"keyboard_shortcuts.mention": "mencionar l’autor",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "respondre",
|
"keyboard_shortcuts.reply": "respondre",
|
||||||
"keyboard_shortcuts.search": "anar a la recèrca",
|
"keyboard_shortcuts.search": "anar a la recèrca",
|
||||||
"keyboard_shortcuts.toggle_hidden": "mostrar/amagar lo tèxte dels avertiments",
|
"keyboard_shortcuts.toggle_hidden": "mostrar/amagar lo tèxte dels avertiments",
|
||||||
|
|
|
@ -141,6 +141,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Klawisz",
|
"keyboard_shortcuts.hotkey": "Klawisz",
|
||||||
"keyboard_shortcuts.legend": "aby wyświetlić tą legendę",
|
"keyboard_shortcuts.legend": "aby wyświetlić tą legendę",
|
||||||
"keyboard_shortcuts.mention": "aby wspomnieć o autorze",
|
"keyboard_shortcuts.mention": "aby wspomnieć o autorze",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "aby odpowiedzieć",
|
"keyboard_shortcuts.reply": "aby odpowiedzieć",
|
||||||
"keyboard_shortcuts.search": "aby przejść do pola wyszukiwania",
|
"keyboard_shortcuts.search": "aby przejść do pola wyszukiwania",
|
||||||
"keyboard_shortcuts.toggle_hidden": "aby wyświetlić lub ukryć wpis spod CW",
|
"keyboard_shortcuts.toggle_hidden": "aby wyświetlić lub ukryć wpis spod CW",
|
||||||
|
@ -239,7 +240,7 @@
|
||||||
"reply_indicator.cancel": "Anuluj",
|
"reply_indicator.cancel": "Anuluj",
|
||||||
"report.forward": "Przekaż na {target}",
|
"report.forward": "Przekaż na {target}",
|
||||||
"report.forward_hint": "To konto znajduje się na innej instancji. Czy chcesz wysłać anonimową kopię zgłoszenia rnież na nią?",
|
"report.forward_hint": "To konto znajduje się na innej instancji. Czy chcesz wysłać anonimową kopię zgłoszenia rnież na nią?",
|
||||||
"report.hint": "Zgłoszenie zostanie wysłane moderatorom Twojej instancji. Poniżej możesz też umieścić wyjaśnieni dlaczego zgłaszasz to konto:",
|
"report.hint": "Zgłoszenie zostanie wysłane moderatorom Twojej instancji. Poniżej możesz też umieścić wyjaśnienie dlaczego zgłaszasz to konto:",
|
||||||
"report.placeholder": "Dodatkowe komentarze",
|
"report.placeholder": "Dodatkowe komentarze",
|
||||||
"report.submit": "Wyślij",
|
"report.submit": "Wyślij",
|
||||||
"report.target": "Zgłaszanie {target}",
|
"report.target": "Zgłaszanie {target}",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Atalho",
|
"keyboard_shortcuts.hotkey": "Atalho",
|
||||||
"keyboard_shortcuts.legend": "para mostrar essa legenda",
|
"keyboard_shortcuts.legend": "para mostrar essa legenda",
|
||||||
"keyboard_shortcuts.mention": "para mencionar o autor",
|
"keyboard_shortcuts.mention": "para mencionar o autor",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "para responder",
|
"keyboard_shortcuts.reply": "para responder",
|
||||||
"keyboard_shortcuts.search": "para focar a pesquisa",
|
"keyboard_shortcuts.search": "para focar a pesquisa",
|
||||||
"keyboard_shortcuts.toggle_hidden": "mostrar/esconder o texto com aviso de conteúdo",
|
"keyboard_shortcuts.toggle_hidden": "mostrar/esconder o texto com aviso de conteúdo",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Atalho",
|
"keyboard_shortcuts.hotkey": "Atalho",
|
||||||
"keyboard_shortcuts.legend": "para mostrar esta legenda",
|
"keyboard_shortcuts.legend": "para mostrar esta legenda",
|
||||||
"keyboard_shortcuts.mention": "para mencionar o autor",
|
"keyboard_shortcuts.mention": "para mencionar o autor",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "para responder",
|
"keyboard_shortcuts.reply": "para responder",
|
||||||
"keyboard_shortcuts.search": "para focar na pesquisa",
|
"keyboard_shortcuts.search": "para focar na pesquisa",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Гор. клавиша",
|
"keyboard_shortcuts.hotkey": "Гор. клавиша",
|
||||||
"keyboard_shortcuts.legend": "показать это окно",
|
"keyboard_shortcuts.legend": "показать это окно",
|
||||||
"keyboard_shortcuts.mention": "упомянуть автора поста",
|
"keyboard_shortcuts.mention": "упомянуть автора поста",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "ответить",
|
"keyboard_shortcuts.reply": "ответить",
|
||||||
"keyboard_shortcuts.search": "перейти к поиску",
|
"keyboard_shortcuts.search": "перейти к поиску",
|
||||||
"keyboard_shortcuts.toggle_hidden": "показать/скрыть текст за предупреждением",
|
"keyboard_shortcuts.toggle_hidden": "показать/скрыть текст за предупреждением",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Klávesa",
|
"keyboard_shortcuts.hotkey": "Klávesa",
|
||||||
"keyboard_shortcuts.legend": "zobraziť túto legendu",
|
"keyboard_shortcuts.legend": "zobraziť túto legendu",
|
||||||
"keyboard_shortcuts.mention": "spomenúť autora",
|
"keyboard_shortcuts.mention": "spomenúť autora",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "odpovedať",
|
"keyboard_shortcuts.reply": "odpovedať",
|
||||||
"keyboard_shortcuts.search": "zamerať sa na vyhľadávanie",
|
"keyboard_shortcuts.search": "zamerať sa na vyhľadávanie",
|
||||||
"keyboard_shortcuts.toggle_hidden": "ukáž/skry text za CW",
|
"keyboard_shortcuts.toggle_hidden": "ukáž/skry text za CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Hitra tipka",
|
"keyboard_shortcuts.hotkey": "Hitra tipka",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Prečica",
|
"keyboard_shortcuts.hotkey": "Prečica",
|
||||||
"keyboard_shortcuts.legend": "da prikažete ovaj podsetnik",
|
"keyboard_shortcuts.legend": "da prikažete ovaj podsetnik",
|
||||||
"keyboard_shortcuts.mention": "da pomenete autora",
|
"keyboard_shortcuts.mention": "da pomenete autora",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "da odgovorite",
|
"keyboard_shortcuts.reply": "da odgovorite",
|
||||||
"keyboard_shortcuts.search": "da se prebacite na pretragu",
|
"keyboard_shortcuts.search": "da se prebacite na pretragu",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Пречица",
|
"keyboard_shortcuts.hotkey": "Пречица",
|
||||||
"keyboard_shortcuts.legend": "да прикажете овај подсетник",
|
"keyboard_shortcuts.legend": "да прикажете овај подсетник",
|
||||||
"keyboard_shortcuts.mention": "да поменете аутора",
|
"keyboard_shortcuts.mention": "да поменете аутора",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "да одговорите",
|
"keyboard_shortcuts.reply": "да одговорите",
|
||||||
"keyboard_shortcuts.search": "да се пребаците на претрагу",
|
"keyboard_shortcuts.search": "да се пребаците на претрагу",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Snabbvalstangent",
|
"keyboard_shortcuts.hotkey": "Snabbvalstangent",
|
||||||
"keyboard_shortcuts.legend": "att visa denna översikt",
|
"keyboard_shortcuts.legend": "att visa denna översikt",
|
||||||
"keyboard_shortcuts.mention": "att nämna författaren",
|
"keyboard_shortcuts.mention": "att nämna författaren",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "att svara",
|
"keyboard_shortcuts.reply": "att svara",
|
||||||
"keyboard_shortcuts.search": "att fokusera sökfältet",
|
"keyboard_shortcuts.search": "att fokusera sökfältet",
|
||||||
"keyboard_shortcuts.toggle_hidden": "att visa/gömma text bakom CW",
|
"keyboard_shortcuts.toggle_hidden": "att visa/gömma text bakom CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "హాట్ కీ",
|
"keyboard_shortcuts.hotkey": "హాట్ కీ",
|
||||||
"keyboard_shortcuts.legend": "ఈ లెజెండ్ ప్రదర్శించడానికి",
|
"keyboard_shortcuts.legend": "ఈ లెజెండ్ ప్రదర్శించడానికి",
|
||||||
"keyboard_shortcuts.mention": "రచయితను ప్రస్తావించడానికి",
|
"keyboard_shortcuts.mention": "రచయితను ప్రస్తావించడానికి",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "ప్రత్యుత్తరం ఇవ్వడానికి",
|
"keyboard_shortcuts.reply": "ప్రత్యుత్తరం ఇవ్వడానికి",
|
||||||
"keyboard_shortcuts.search": "శోధనపై దృష్టి పెట్టండి",
|
"keyboard_shortcuts.search": "శోధనపై దృష్టి పెట్టండి",
|
||||||
"keyboard_shortcuts.toggle_hidden": "CW వెనుక ఉన్న పాఠ్యాన్ని చూపడానికి / దాచడానికి",
|
"keyboard_shortcuts.toggle_hidden": "CW వెనుక ఉన్న పాఠ్యాన్ని చూపడానికి / దాచడానికి",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
|
2
app/javascript/mastodon/locales/whitelist_ast.json
Normal file
2
app/javascript/mastodon/locales/whitelist_ast.json
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[
|
||||||
|
]
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "快捷键",
|
"keyboard_shortcuts.hotkey": "快捷键",
|
||||||
"keyboard_shortcuts.legend": "显示此列表",
|
"keyboard_shortcuts.legend": "显示此列表",
|
||||||
"keyboard_shortcuts.mention": "提及嘟文作者",
|
"keyboard_shortcuts.mention": "提及嘟文作者",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "回复嘟文",
|
"keyboard_shortcuts.reply": "回复嘟文",
|
||||||
"keyboard_shortcuts.search": "选择搜索框",
|
"keyboard_shortcuts.search": "选择搜索框",
|
||||||
"keyboard_shortcuts.toggle_hidden": "显示或隐藏被折叠的正文",
|
"keyboard_shortcuts.toggle_hidden": "显示或隐藏被折叠的正文",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "快速鍵",
|
"keyboard_shortcuts.hotkey": "快速鍵",
|
||||||
"keyboard_shortcuts.legend": "顯示這個說明",
|
"keyboard_shortcuts.legend": "顯示這個說明",
|
||||||
"keyboard_shortcuts.mention": "提及作者",
|
"keyboard_shortcuts.mention": "提及作者",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "回覆",
|
"keyboard_shortcuts.reply": "回覆",
|
||||||
"keyboard_shortcuts.search": "把標示移動到搜索",
|
"keyboard_shortcuts.search": "把標示移動到搜索",
|
||||||
"keyboard_shortcuts.toggle_hidden": "顯示或隱藏被標為敏感的文字",
|
"keyboard_shortcuts.toggle_hidden": "顯示或隱藏被標為敏感的文字",
|
||||||
|
|
|
@ -137,6 +137,7 @@
|
||||||
"keyboard_shortcuts.hotkey": "快速鍵",
|
"keyboard_shortcuts.hotkey": "快速鍵",
|
||||||
"keyboard_shortcuts.legend": "顯示這個說明",
|
"keyboard_shortcuts.legend": "顯示這個說明",
|
||||||
"keyboard_shortcuts.mention": "到提到的作者",
|
"keyboard_shortcuts.mention": "到提到的作者",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "到回應",
|
"keyboard_shortcuts.reply": "到回應",
|
||||||
"keyboard_shortcuts.search": "把滑鼠移動到搜尋",
|
"keyboard_shortcuts.search": "把滑鼠移動到搜尋",
|
||||||
"keyboard_shortcuts.toggle_hidden": "顯示或隱藏被標為敏感的嘟文",
|
"keyboard_shortcuts.toggle_hidden": "顯示或隱藏被標為敏感的嘟文",
|
||||||
|
|
|
@ -2011,6 +2011,7 @@ a.account__display-name {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
flex: 0 0 auto;
|
flex: 0 0 auto;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
line-height: inherit;
|
||||||
border: 0;
|
border: 0;
|
||||||
text-align: unset;
|
text-align: unset;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
|
|
|
@ -16,7 +16,7 @@ class EmailMxValidator < ActiveModel::Validator
|
||||||
return true if domain.nil?
|
return true if domain.nil?
|
||||||
|
|
||||||
records = Resolv::DNS.new.getresources(domain, Resolv::DNS::Resource::IN::MX).to_a.map { |e| e.exchange.to_s }
|
records = Resolv::DNS.new.getresources(domain, Resolv::DNS::Resource::IN::MX).to_a.map { |e| e.exchange.to_s }
|
||||||
records = Resolv::DNS.new.getresources(domain, Resolv::DNS::Resource::IN::A).to_a.map { |e| e.exchange.to_s } if records.empty?
|
records = Resolv::DNS.new.getresources(domain, Resolv::DNS::Resource::IN::A).to_a.map { |e| e.address.to_s } if records.empty?
|
||||||
|
|
||||||
records.empty? || on_blacklist?(records)
|
records.empty? || on_blacklist?(records)
|
||||||
end
|
end
|
||||||
|
|
|
@ -39,6 +39,7 @@ module Mastodon
|
||||||
config.i18n.available_locales = [
|
config.i18n.available_locales = [
|
||||||
:en,
|
:en,
|
||||||
:ar,
|
:ar,
|
||||||
|
:ast,
|
||||||
:bg,
|
:bg,
|
||||||
:ca,
|
:ca,
|
||||||
:co,
|
:co,
|
||||||
|
|
|
@ -9,6 +9,7 @@ Warden::Manager.after_set_user except: :fetch do |user, warden|
|
||||||
value: session_id,
|
value: session_id,
|
||||||
expires: 1.year.from_now,
|
expires: 1.year.from_now,
|
||||||
httponly: true,
|
httponly: true,
|
||||||
|
secure: (Rails.env.production? || ENV['LOCAL_HTTPS'] == 'true'),
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -18,6 +19,7 @@ Warden::Manager.after_fetch do |user, warden|
|
||||||
value: warden.cookies.signed['_session_id'] || warden.raw_session['auth_id'],
|
value: warden.cookies.signed['_session_id'] || warden.raw_session['auth_id'],
|
||||||
expires: 1.year.from_now,
|
expires: 1.year.from_now,
|
||||||
httponly: true,
|
httponly: true,
|
||||||
|
secure: (Rails.env.production? || ENV['LOCAL_HTTPS'] == 'true'),
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
warden.logout
|
warden.logout
|
||||||
|
|
1
config/locales/activerecord.ast.yml
Normal file
1
config/locales/activerecord.ast.yml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{}
|
|
@ -206,6 +206,18 @@ ar:
|
||||||
update_failed_msg: تعذرت عملية تحذيث ذاك الإيموجي
|
update_failed_msg: تعذرت عملية تحذيث ذاك الإيموجي
|
||||||
updated_msg: تم تحديث الإيموجي بنجاح !
|
updated_msg: تم تحديث الإيموجي بنجاح !
|
||||||
upload: رفع
|
upload: رفع
|
||||||
|
dashboard:
|
||||||
|
feature_invites: روابط الدعوات
|
||||||
|
feature_registrations: التسجيلات
|
||||||
|
feature_relay: المُرحّل الفديرالي
|
||||||
|
features: الميّزات
|
||||||
|
hidden_service: الفيديرالية مع الخدمات الخفية
|
||||||
|
search: البحث النصي الكامل
|
||||||
|
software: البرنامج
|
||||||
|
space: المساحة المستخدَمة
|
||||||
|
title: لوح المراقبة
|
||||||
|
week_users_active: نشط هذا الأسبوع
|
||||||
|
week_users_new: مستخدِمين هذا الأسبوع
|
||||||
domain_blocks:
|
domain_blocks:
|
||||||
add_new: إضافة نطاق جديد
|
add_new: إضافة نطاق جديد
|
||||||
created_msg: إنّ حجب النطاق حيز التشغيل
|
created_msg: إنّ حجب النطاق حيز التشغيل
|
||||||
|
@ -261,6 +273,12 @@ ar:
|
||||||
expired: المنتهي صلاحيتها
|
expired: المنتهي صلاحيتها
|
||||||
title: التصفية
|
title: التصفية
|
||||||
title: الدعوات
|
title: الدعوات
|
||||||
|
relays:
|
||||||
|
add_new: إضافة مُرحّل جديد
|
||||||
|
inbox_url: رابط المُرحّل
|
||||||
|
setup: إعداد اتصال بمُرحّل
|
||||||
|
status: الحالة
|
||||||
|
title: المُرحّلات
|
||||||
report_notes:
|
report_notes:
|
||||||
created_msg: |-
|
created_msg: |-
|
||||||
41/5000
|
41/5000
|
||||||
|
|
199
config/locales/ast.yml
Normal file
199
config/locales/ast.yml
Normal file
|
@ -0,0 +1,199 @@
|
||||||
|
---
|
||||||
|
ast:
|
||||||
|
about:
|
||||||
|
about_mastodon_html: Mastodon ye una rede social basada en protocolos abiertos y software de códigu llibre. Ye descentralizada, como'l corréu electrónicu.
|
||||||
|
contact_unavailable: N/D
|
||||||
|
description_headline: "¿Qué ye %{domain}?"
|
||||||
|
domain_count_after: otres instancies
|
||||||
|
features:
|
||||||
|
not_a_product_title: Yes una persona, non un productu
|
||||||
|
source_code: Códigu fonte
|
||||||
|
status_count_after: estaos
|
||||||
|
user_count_after: usuarios
|
||||||
|
what_is_mastodon: "¿Qué ye Mastodon?"
|
||||||
|
accounts:
|
||||||
|
followers: Siguidores
|
||||||
|
network_hidden: Esta información nun ta disponible
|
||||||
|
nothing_here: "¡Equí nun hai nada!"
|
||||||
|
people_followed_by: Persones a les que sigue %{name}
|
||||||
|
people_who_follow: Persones que siguen a %{name}
|
||||||
|
reserved_username: El nome d'usuariu ta acutáu
|
||||||
|
roles:
|
||||||
|
bot: Robó
|
||||||
|
admin:
|
||||||
|
accounts:
|
||||||
|
avatar: Avatar
|
||||||
|
by_domain: Dominiu
|
||||||
|
domain: Dominiu
|
||||||
|
followers: Siguidores
|
||||||
|
ip: IP
|
||||||
|
protocol: Protocolu
|
||||||
|
resend_confirmation:
|
||||||
|
already_confirmed: Esti usuariu yá ta confirmáu
|
||||||
|
role: Permisos
|
||||||
|
roles:
|
||||||
|
moderator: Llendador
|
||||||
|
username: Nome d'usuariu
|
||||||
|
web: Web
|
||||||
|
custom_emojis:
|
||||||
|
by_domain: Dominiu
|
||||||
|
copy_failed_msg: Nun pudo facese una copia llocal d'esi fustaxe
|
||||||
|
emoji: Fustaxe
|
||||||
|
update_failed_msg: Nun pudo anovase esi fustaxe
|
||||||
|
dashboard:
|
||||||
|
config: Configuración
|
||||||
|
features: Carauterístiques
|
||||||
|
hidden_service: Federación con servicios anubríos
|
||||||
|
software: Software
|
||||||
|
total_users: usuarios en total
|
||||||
|
domain_blocks:
|
||||||
|
domain: Dominiu
|
||||||
|
email_domain_blocks:
|
||||||
|
domain: Dominiu
|
||||||
|
instances:
|
||||||
|
account_count: Cuentes conocíes
|
||||||
|
domain_name: Dominiu
|
||||||
|
title: Instancies conocíes
|
||||||
|
invites:
|
||||||
|
filter:
|
||||||
|
available: Disponible
|
||||||
|
reports:
|
||||||
|
id: ID
|
||||||
|
statuses:
|
||||||
|
failed_to_execute: Fallu al executar
|
||||||
|
subscriptions:
|
||||||
|
title: WebSub
|
||||||
|
admin_mailer:
|
||||||
|
new_report:
|
||||||
|
body_remote: Daquién dende %{domain} informó de %{target}
|
||||||
|
application_mailer:
|
||||||
|
salutation: "%{name},"
|
||||||
|
applications:
|
||||||
|
invalid_url: La URL apurrida nun ye válida
|
||||||
|
auth:
|
||||||
|
change_password: Contraseña
|
||||||
|
forgot_password: "¿Escaeciesti la contraseña?"
|
||||||
|
providers:
|
||||||
|
cas: CAS
|
||||||
|
saml: SAML
|
||||||
|
security: Seguranza
|
||||||
|
authorize_follow:
|
||||||
|
already_following: Yá tas siguiendo a esta cuenta
|
||||||
|
error: Desafortunadamente, hebo un fallu guetando la cuenta remota
|
||||||
|
deletes:
|
||||||
|
confirm_password: Introduz la contraseña pa verificar la to identidá
|
||||||
|
errors:
|
||||||
|
'403': Nun tienes permisu pa ver esta páxina.
|
||||||
|
'404': La páxina que tabes guetando nun esiste.
|
||||||
|
'410': La páxina que tabes guetando yá nun esiste.
|
||||||
|
exports:
|
||||||
|
archive_takeout:
|
||||||
|
size: Tamañu
|
||||||
|
csv: CSV
|
||||||
|
filters:
|
||||||
|
contexts:
|
||||||
|
public: Llinies temporales públiques
|
||||||
|
followers:
|
||||||
|
domain: Dominiu
|
||||||
|
followers_count: Númberu de siguidores
|
||||||
|
generic:
|
||||||
|
powered_by: cola potencia de %{link}
|
||||||
|
invites:
|
||||||
|
expires_in:
|
||||||
|
'1800': 30 minutos
|
||||||
|
'21600': 6 hores
|
||||||
|
'3600': 1 hora
|
||||||
|
'43200': 12 hores
|
||||||
|
'604800': 1 selmana
|
||||||
|
'86400': 1 día
|
||||||
|
expires_in_prompt: Enxamás
|
||||||
|
max_uses:
|
||||||
|
one: 1 usu
|
||||||
|
other: "%{count} usos"
|
||||||
|
table:
|
||||||
|
uses: Usos
|
||||||
|
lists:
|
||||||
|
errors:
|
||||||
|
limit: Algamesti la cantidá máxima de llistes
|
||||||
|
media_attachments:
|
||||||
|
validations:
|
||||||
|
images_and_video: Nun pue axuntase un videu a un estáu que yá contién imáxenes
|
||||||
|
too_many: Nun puen axuntase más de 4 ficheros
|
||||||
|
migrations:
|
||||||
|
acct: nome_usuariu@dominiu de la cuenta nueva
|
||||||
|
notification_mailer:
|
||||||
|
digest:
|
||||||
|
mention: "%{name} mentóte en:"
|
||||||
|
follow:
|
||||||
|
title: Siguidor nuevu
|
||||||
|
follow_request:
|
||||||
|
body: "%{name} solicitó siguite"
|
||||||
|
title: Petición nueva de siguimientu
|
||||||
|
mention:
|
||||||
|
body: "%{name} mentóte en:"
|
||||||
|
subject: "%{name} mentóte"
|
||||||
|
title: Mención nueva
|
||||||
|
number:
|
||||||
|
human:
|
||||||
|
decimal_units:
|
||||||
|
format: "%n%u"
|
||||||
|
preferences:
|
||||||
|
languages: Llingües
|
||||||
|
web: Web
|
||||||
|
remote_follow:
|
||||||
|
prompt: 'Vas siguir a:'
|
||||||
|
remote_unfollow:
|
||||||
|
error: Fallu
|
||||||
|
sessions:
|
||||||
|
browser: Restolador
|
||||||
|
browsers:
|
||||||
|
blackberry: Blackberry
|
||||||
|
chrome: Chrome
|
||||||
|
edge: Microsoft Edge
|
||||||
|
electron: Electron
|
||||||
|
ie: Internet Explorer
|
||||||
|
micro_messenger: MicroMessenger
|
||||||
|
opera: Opera
|
||||||
|
phantom_js: PhantomJS
|
||||||
|
safari: Safari
|
||||||
|
uc_browser: UCBrowser
|
||||||
|
weibo: Weibo
|
||||||
|
description: "%{browser} en %{platform}"
|
||||||
|
ip: IP
|
||||||
|
platforms:
|
||||||
|
blackberry: Blackberry
|
||||||
|
chrome_os: ChromeOS
|
||||||
|
firefox_os: Firefox OS
|
||||||
|
ios: iOS
|
||||||
|
linux: Linux
|
||||||
|
mac: Mac
|
||||||
|
windows: Windows
|
||||||
|
windows_mobile: Windows Mobile
|
||||||
|
windows_phone: Windows Phone
|
||||||
|
title: Sesiones
|
||||||
|
settings:
|
||||||
|
preferences: Preferencies
|
||||||
|
statuses:
|
||||||
|
attached:
|
||||||
|
image:
|
||||||
|
one: "%{count} imaxe"
|
||||||
|
other: "%{count} imáxenes"
|
||||||
|
video:
|
||||||
|
one: "%{count} videu"
|
||||||
|
other: "%{count} vídeos"
|
||||||
|
title: "%{name}: «%{quote}»"
|
||||||
|
stream_entries:
|
||||||
|
click_to_show: Primi p'amosar
|
||||||
|
sensitive_content: Conteníu sensible
|
||||||
|
themes:
|
||||||
|
default: Mastodon
|
||||||
|
two_factor_authentication:
|
||||||
|
code_hint: Introduz el códigu xeneráu pola aplicación autenticadora pa confirmar
|
||||||
|
enabled: L'autenticación en dos pasos ta activada
|
||||||
|
user_mailer:
|
||||||
|
welcome:
|
||||||
|
full_handle_hint: Esto ye lo que-yos diríes a los collacios pa que puean unviate mensaxes o siguite dende otra instancia.
|
||||||
|
subject: Afáyate en Mastodon
|
||||||
|
tips: Conseyos
|
||||||
|
users:
|
||||||
|
invalid_email: La direición de corréu nun ye válida
|
|
@ -215,10 +215,12 @@ da:
|
||||||
features: Funktioner
|
features: Funktioner
|
||||||
open_reports: åbne anmeldelser
|
open_reports: åbne anmeldelser
|
||||||
recent_users: Seneste brugere
|
recent_users: Seneste brugere
|
||||||
|
search: Søg på fuld tekst
|
||||||
software: Software
|
software: Software
|
||||||
space: Brugt lagerplads
|
space: Brugt lagerplads
|
||||||
title: Betjeningspanel
|
title: Betjeningspanel
|
||||||
total_users: samlede antal brugere
|
total_users: samlede antal brugere
|
||||||
|
trends: Tendenser
|
||||||
week_interactions: interaktioner denne uge
|
week_interactions: interaktioner denne uge
|
||||||
week_users_active: aktive denne uge
|
week_users_active: aktive denne uge
|
||||||
week_users_new: brugere denne uge
|
week_users_new: brugere denne uge
|
||||||
|
|
|
@ -206,6 +206,17 @@ de:
|
||||||
update_failed_msg: Konnte dieses Emoji nicht aktualisieren
|
update_failed_msg: Konnte dieses Emoji nicht aktualisieren
|
||||||
updated_msg: Emoji erfolgreich aktualisiert!
|
updated_msg: Emoji erfolgreich aktualisiert!
|
||||||
upload: Hochladen
|
upload: Hochladen
|
||||||
|
dashboard:
|
||||||
|
backlog: Unerledigte Jobs
|
||||||
|
config: Konfiguration
|
||||||
|
feature_invites: Einladungslinks
|
||||||
|
feature_registrations: Registrierung
|
||||||
|
features: Eigenschaften
|
||||||
|
open_reports: Offene Meldungen
|
||||||
|
search: Volltextsuche
|
||||||
|
space: Speicherverbrauch
|
||||||
|
title: Übersicht
|
||||||
|
total_users: Benutzer Insgesamt
|
||||||
domain_blocks:
|
domain_blocks:
|
||||||
add_new: Neu hinzufügen
|
add_new: Neu hinzufügen
|
||||||
created_msg: Die Domain-Blockade wird nun durchgeführt
|
created_msg: Die Domain-Blockade wird nun durchgeführt
|
||||||
|
@ -261,6 +272,8 @@ de:
|
||||||
expired: Ausgelaufen
|
expired: Ausgelaufen
|
||||||
title: Filter
|
title: Filter
|
||||||
title: Einladungen
|
title: Einladungen
|
||||||
|
relays:
|
||||||
|
add_new: Neues Relay hinzufügen
|
||||||
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!
|
||||||
|
|
1
config/locales/devise.ast.yml
Normal file
1
config/locales/devise.ast.yml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{}
|
1
config/locales/doorkeeper.ast.yml
Normal file
1
config/locales/doorkeeper.ast.yml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{}
|
|
@ -1 +1,6 @@
|
||||||
{}
|
---
|
||||||
|
sl:
|
||||||
|
activerecord:
|
||||||
|
attributes:
|
||||||
|
doorkeeper/application:
|
||||||
|
name: Ime programa
|
||||||
|
|
|
@ -629,7 +629,7 @@ el:
|
||||||
units:
|
units:
|
||||||
billion: Δις.
|
billion: Δις.
|
||||||
million: Εκ.
|
million: Εκ.
|
||||||
quadrillion: Τετρ.
|
quadrillion: Τετράκις.
|
||||||
thousand: Χ.
|
thousand: Χ.
|
||||||
trillion: Τρις.
|
trillion: Τρις.
|
||||||
pagination:
|
pagination:
|
||||||
|
|
|
@ -222,6 +222,7 @@ gl:
|
||||||
space: Uso de espazo
|
space: Uso de espazo
|
||||||
title: Taboleiro
|
title: Taboleiro
|
||||||
total_users: total de usuarias
|
total_users: total de usuarias
|
||||||
|
trends: Tendencias
|
||||||
week_interactions: interaccións en esta semana
|
week_interactions: interaccións en esta semana
|
||||||
week_users_active: activas estas semana
|
week_users_active: activas estas semana
|
||||||
week_users_new: usuarias esta semana
|
week_users_new: usuarias esta semana
|
||||||
|
|
|
@ -213,6 +213,7 @@ ja:
|
||||||
feature_registrations: 新規登録
|
feature_registrations: 新規登録
|
||||||
feature_relay: 連合リレー
|
feature_relay: 連合リレー
|
||||||
features: 機能
|
features: 機能
|
||||||
|
hidden_service: 秘匿サービスとの連合
|
||||||
open_reports: 未解決のレポート
|
open_reports: 未解決のレポート
|
||||||
recent_users: 最近登録したユーザー
|
recent_users: 最近登録したユーザー
|
||||||
search: 全文検索
|
search: 全文検索
|
||||||
|
@ -221,7 +222,7 @@ ja:
|
||||||
space: ディスク使用量
|
space: ディスク使用量
|
||||||
title: ダッシュボード
|
title: ダッシュボード
|
||||||
total_users: 全ユーザー
|
total_users: 全ユーザー
|
||||||
trends: トレンド
|
trends: トレンドタグ
|
||||||
week_interactions: 今週の交流数
|
week_interactions: 今週の交流数
|
||||||
week_users_active: 今週活動した人数
|
week_users_active: 今週活動した人数
|
||||||
week_users_new: 今週登録した人数
|
week_users_new: 今週登録した人数
|
||||||
|
|
|
@ -206,6 +206,27 @@ nl:
|
||||||
update_failed_msg: Deze emoji kon niet worden bijgewerkt
|
update_failed_msg: Deze emoji kon niet worden bijgewerkt
|
||||||
updated_msg: Bijwerken van emoji is geslaagd!
|
updated_msg: Bijwerken van emoji is geslaagd!
|
||||||
upload: Uploaden
|
upload: Uploaden
|
||||||
|
dashboard:
|
||||||
|
backlog: achterstallige taken
|
||||||
|
config: Configuratie
|
||||||
|
feature_deletions: Verwijderen van account
|
||||||
|
feature_invites: Uitnodigingen
|
||||||
|
feature_registrations: Registraties
|
||||||
|
feature_relay: Federatierelay
|
||||||
|
features: Functies
|
||||||
|
hidden_service: Federatie met verborgen diensten
|
||||||
|
open_reports: onopgeloste gerapporteerde toots
|
||||||
|
recent_users: Recente gebruikers
|
||||||
|
search: In volledige tekst zoeken
|
||||||
|
single_user_mode: Modus voor één gebruiker
|
||||||
|
software: Software
|
||||||
|
space: Ruimtegebruik
|
||||||
|
title: Dashboard
|
||||||
|
total_users: gebruikers in totaal
|
||||||
|
trends: Trends
|
||||||
|
week_interactions: interacties deze week
|
||||||
|
week_users_active: actieve gebruikers deze week
|
||||||
|
week_users_new: nieuwe gebruikers deze week
|
||||||
domain_blocks:
|
domain_blocks:
|
||||||
add_new: Nieuwe toevoegen
|
add_new: Nieuwe toevoegen
|
||||||
created_msg: Domeinblokkade wordt nu verwerkt
|
created_msg: Domeinblokkade wordt nu verwerkt
|
||||||
|
@ -263,7 +284,7 @@ nl:
|
||||||
title: Uitnodigingen
|
title: Uitnodigingen
|
||||||
relays:
|
relays:
|
||||||
add_new: Nieuwe relayserver toevoegen
|
add_new: Nieuwe relayserver toevoegen
|
||||||
description_html: Een <strong>federatie-relay</strong> is een tussenliggende server die grote hoeveelheden openbare toots uitwisselt tussen servers die zich hierop hebben geabonneerd. <strong>Het kan kleine en middelgrote servers helpen om content uit de fediverse te ontdekken</strong>, waarvoor anders lokale gebruikers handmatig mensen van externe servers moeten volgen.
|
description_html: Een <strong>federatierelay</strong> is een tussenliggende server die grote hoeveelheden openbare toots uitwisselt tussen servers die zich hierop hebben geabonneerd. <strong>Het kan kleine en middelgrote servers helpen om content uit de fediverse te ontdekken</strong>, waarvoor anders lokale gebruikers handmatig mensen van externe servers moeten volgen.
|
||||||
enable_hint: Eenmaal ingeschakeld gaat jouw server zich op alle openbare toots van deze relayserver abonneren en stuurt het de openbare toots van jouw server naar de relayserver.
|
enable_hint: Eenmaal ingeschakeld gaat jouw server zich op alle openbare toots van deze relayserver abonneren en stuurt het de openbare toots van jouw server naar de relayserver.
|
||||||
inbox_url: Relay-URL
|
inbox_url: Relay-URL
|
||||||
setup: Een verbinding met een relayserver maken
|
setup: Een verbinding met een relayserver maken
|
||||||
|
|
|
@ -208,6 +208,7 @@ oc:
|
||||||
updated_msg: Emoji ben mes a jorn !
|
updated_msg: Emoji ben mes a jorn !
|
||||||
upload: Enviar
|
upload: Enviar
|
||||||
dashboard:
|
dashboard:
|
||||||
|
backlog: Accions en retard
|
||||||
config: Configuracion
|
config: Configuracion
|
||||||
feature_deletions: Supressions de comptes
|
feature_deletions: Supressions de comptes
|
||||||
feature_invites: Ligams convidat
|
feature_invites: Ligams convidat
|
||||||
|
@ -823,7 +824,23 @@ oc:
|
||||||
<ul>
|
<ul>
|
||||||
<li>Per provesir la foncionament màger de Mastodon. Podètz pas qu’interagir amb lo contengut del monde e de vòstras publicacions quand sètz connectat. Per exemple, avètz la possibilitat de sègre de monde per veire lors publicacions amassadas dins vòstre flux d’actualitat personalizat.</li>
|
<li>Per provesir la foncionament màger de Mastodon. Podètz pas qu’interagir amb lo contengut del monde e de vòstras publicacions quand sètz connectat. Per exemple, avètz la possibilitat de sègre de monde per veire lors publicacions amassadas dins vòstre flux d’actualitat personalizat.</li>
|
||||||
<li>Per ajudar la moderacion de la comunitat, per exemple en comparant vòstra adreça IP amb d’autras per determinar d’ensages de contornament de bandiment e d’autras violéncias.</li>
|
<li>Per ajudar la moderacion de la comunitat, per exemple en comparant vòstra adreça IP amb d’autras per determinar d’ensages de contornament de bandiment e d’autras violéncias.</li>
|
||||||
<li>Per enviar periodicament de corrièls — Podèm utilizar l’adreça qu’avètz donada per vos enviar d’informacions e de notificacions que demandatz tocant de cambiaments dins los subjèctes del forum o en responsa a vòstre nom d’utilizaire, en responsa a una demanda, e/o tota autra question.</li>
|
<li>Podèm utilizar l’adreça qu’avètz donada per vos enviar d’informacions e de notificacions que demandatz tocant de cambiaments dins los subjèctes del forum o en responsa a vòstre nom d’utilizaire, en responsa a una demanda, e/o tota autra question.</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<hr class="spacer" />
|
||||||
|
|
||||||
|
<h3 id="protect">Cossí protegèm vòstras informacions ?</h3>
|
||||||
|
|
||||||
|
<p>Apliquem tota una mena de mesuras de seguretat per manténer la fisança de vòstras informacions personalas quand las picatz, mandatz, o i accedètz. Entre aquelas, vòstre session de navigacion, coma lo trafic entre vòstra aplicacion e l’API, son securizats amb SSL e lo senhal es copat en tròces en emplegar un algorisme fòrt a sens unic. Podètz activar l’autentificacion en dos temps pels accèsses futurs a vòstre compte.</p>
|
||||||
|
<hr class="spacer" />
|
||||||
|
|
||||||
|
<h3 id="data-retention">Quala es nòstra politica de conservacion de donadas ?</h3>
|
||||||
|
|
||||||
|
<p>Farem esfòrces per :</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>Gardar los jornals del servidor que contenon las adreças IP de totas las demandas al servidor pas mai de 90 jorns.</li>
|
||||||
|
<li>Gardar las adreças IP ligadas als utilizaires e lors publicacions pas mai de 12 messes.</li>
|
||||||
</ul>
|
</ul>
|
||||||
title: Condicions d’utilizacion e politica de confidencialitat de %{instance}
|
title: Condicions d’utilizacion e politica de confidencialitat de %{instance}
|
||||||
time:
|
time:
|
||||||
|
|
|
@ -76,6 +76,7 @@ ar:
|
||||||
type: صيغة الإستيراد
|
type: صيغة الإستيراد
|
||||||
username: إسم المستخدم
|
username: إسم المستخدم
|
||||||
username_or_email: إسم المستخدم أو كلمة السر
|
username_or_email: إسم المستخدم أو كلمة السر
|
||||||
|
whole_word: الكلمة كاملة
|
||||||
interactions:
|
interactions:
|
||||||
must_be_follower: حظر الإخطارات القادمة من حسابات لا تتبعك
|
must_be_follower: حظر الإخطارات القادمة من حسابات لا تتبعك
|
||||||
must_be_following: حظر الإخطارات القادمة من الحسابات التي لا تتابعها
|
must_be_following: حظر الإخطارات القادمة من الحسابات التي لا تتابعها
|
||||||
|
|
1
config/locales/simple_form.ast.yml
Normal file
1
config/locales/simple_form.ast.yml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{}
|
|
@ -39,7 +39,7 @@ de:
|
||||||
defaults:
|
defaults:
|
||||||
autofollow: Einladen, um deinen Account zu folgen
|
autofollow: Einladen, um deinen Account zu folgen
|
||||||
avatar: Profilbild
|
avatar: Profilbild
|
||||||
bot: Dies ist ein bot Benutzer
|
bot: Dieser Benutzer ist ein Bot
|
||||||
chosen_languages: Sprachen filtern
|
chosen_languages: Sprachen filtern
|
||||||
confirm_new_password: Neues Passwort bestätigen
|
confirm_new_password: Neues Passwort bestätigen
|
||||||
confirm_password: Passwort bestätigen
|
confirm_password: Passwort bestätigen
|
||||||
|
|
|
@ -4,7 +4,7 @@ el:
|
||||||
hints:
|
hints:
|
||||||
defaults:
|
defaults:
|
||||||
autofollow: Όσοι εγγραφούν μέσω της πρόσκλησης θα σε ακολουθούν αυτόματα
|
autofollow: Όσοι εγγραφούν μέσω της πρόσκλησης θα σε ακολουθούν αυτόματα
|
||||||
avatar: PNG, GIF ή JPG. Έως 2MB. Θα μειωθεί σε διάσταση 400x400px
|
avatar: PNG, GIF ή JPG. Έως 2MB. Θα περιοριστεί σε διάσταση 400x400px
|
||||||
bot: Ο λογαριασμός αυτός εκτελεί κυρίως αυτοματοποιημένες ενέργειες και ίσως να μην παρακολουθείται
|
bot: Ο λογαριασμός αυτός εκτελεί κυρίως αυτοματοποιημένες ενέργειες και ίσως να μην παρακολουθείται
|
||||||
context: Ένα ή περισσότερα πλαίσια στα οποία μπορεί να εφαρμόζεται αυτό το φίλτρο
|
context: Ένα ή περισσότερα πλαίσια στα οποία μπορεί να εφαρμόζεται αυτό το φίλτρο
|
||||||
digest: Αποστέλλεται μόνο μετά από μακρά περίοδο αδράνειας και μόνο αν έχεις λάβει προσωπικά μηνύματα κατά την απουσία σου
|
digest: Αποστέλλεται μόνο μετά από μακρά περίοδο αδράνειας και μόνο αν έχεις λάβει προσωπικά μηνύματα κατά την απουσία σου
|
||||||
|
@ -12,7 +12,7 @@ el:
|
||||||
one: απομένει <span class="name-counter">1</span> χαρακτήρας
|
one: απομένει <span class="name-counter">1</span> χαρακτήρας
|
||||||
other: απομένουν <span class="name-counter">%{count}</span> χαρακτήρες
|
other: απομένουν <span class="name-counter">%{count}</span> χαρακτήρες
|
||||||
fields: Μπορείς να έχεις έως 4 σημειώσεις σε μορφή πίνακα στο προφίλ σου
|
fields: Μπορείς να έχεις έως 4 σημειώσεις σε μορφή πίνακα στο προφίλ σου
|
||||||
header: PNG, GIF ή JPG. Έως 2MB. Θα μειωθεί σε διάσταση 700x335px
|
header: PNG, GIF ή JPG. Έως 2MB. Θα περιοριστεί σε διάσταση 700x335px
|
||||||
inbox_url: Αντέγραψε το URL της αρχικής σελίδας του ανταποκριτή (relay) που θέλεις να χρησιμοποιήσεις
|
inbox_url: Αντέγραψε το URL της αρχικής σελίδας του ανταποκριτή (relay) που θέλεις να χρησιμοποιήσεις
|
||||||
irreversible: Τα φιλτραρισμένα τουτ θα εξαφανιστούν αμετάκλητα, ακόμα και αν το φίλτρο αργότερα αφαιρεθεί
|
irreversible: Τα φιλτραρισμένα τουτ θα εξαφανιστούν αμετάκλητα, ακόμα και αν το φίλτρο αργότερα αφαιρεθεί
|
||||||
locale: Η γλώσσα του περιβάλλοντος χρήσης, των email και των ειδοποιήσεων ώθησης
|
locale: Η γλώσσα του περιβάλλοντος χρήσης, των email και των ειδοποιήσεων ώθησης
|
||||||
|
|
|
@ -13,6 +13,7 @@ it:
|
||||||
other: <span class="name-counter">%{count}</span> caratteri rimanenti
|
other: <span class="name-counter">%{count}</span> caratteri rimanenti
|
||||||
fields: Puoi avere fino a 4 voci visualizzate come una tabella sul tuo profilo
|
fields: Puoi avere fino a 4 voci visualizzate come una tabella sul tuo profilo
|
||||||
header: PNG, GIF o JPG. Al massimo 2MB. Verranno scalate a 700x335px
|
header: PNG, GIF o JPG. Al massimo 2MB. Verranno scalate a 700x335px
|
||||||
|
inbox_url: Copia la URL dalla pagina iniziale del ripetitore che vuoi usare
|
||||||
irreversible: I toot filtrati scompariranno in modo irreversibile, anche se il filtro viene eliminato
|
irreversible: I toot filtrati scompariranno in modo irreversibile, anche se il filtro viene eliminato
|
||||||
locale: La lingua dell'interfaccia utente, di email e notifiche push
|
locale: La lingua dell'interfaccia utente, di email e notifiche push
|
||||||
locked: Richiede che approvi i follower manualmente
|
locked: Richiede che approvi i follower manualmente
|
||||||
|
@ -52,6 +53,7 @@ it:
|
||||||
expires_in: Scade dopo
|
expires_in: Scade dopo
|
||||||
fields: Metadati del profilo
|
fields: Metadati del profilo
|
||||||
header: Header
|
header: Header
|
||||||
|
inbox_url: URL della inbox del ripetitore
|
||||||
irreversible: Elimina invece di nascondere
|
irreversible: Elimina invece di nascondere
|
||||||
locale: Lingua dell'interfaccia
|
locale: Lingua dell'interfaccia
|
||||||
locked: Blocca account
|
locked: Blocca account
|
||||||
|
|
Loading…
Reference in a new issue