Merge commit 'cfa71a4d16e71b04a42dda564ed8e188bd1badd9' into glitch-soc/merge-upstream
|
@ -793,7 +793,7 @@ GEM
|
||||||
webfinger (1.2.0)
|
webfinger (1.2.0)
|
||||||
activesupport
|
activesupport
|
||||||
httpclient (>= 2.4)
|
httpclient (>= 2.4)
|
||||||
webmock (3.21.2)
|
webmock (3.22.0)
|
||||||
addressable (>= 2.8.0)
|
addressable (>= 2.8.0)
|
||||||
crack (>= 0.3.2)
|
crack (>= 0.3.2)
|
||||||
hashdiff (>= 0.4.0, < 2.0.0)
|
hashdiff (>= 0.4.0, < 2.0.0)
|
||||||
|
|
|
@ -6,9 +6,9 @@ import { Link } from 'react-router-dom';
|
||||||
|
|
||||||
import { useDispatch, useSelector } from 'react-redux';
|
import { useDispatch, useSelector } from 'react-redux';
|
||||||
|
|
||||||
import BarChart4BarsIcon from 'mastodon/../material-icons/400-24px/bar_chart_4_bars.svg?react';
|
import BarChart4BarsIcon from '@/material-icons/400-24px/bar_chart_4_bars.svg?react';
|
||||||
import CloseIcon from 'mastodon/../material-icons/400-24px/close.svg?react';
|
import CloseIcon from '@/material-icons/400-24px/close.svg?react';
|
||||||
import PhotoLibraryIcon from 'mastodon/../material-icons/400-24px/photo_library.svg?react';
|
import PhotoLibraryIcon from '@/material-icons/400-24px/photo_library.svg?react';
|
||||||
import { cancelReplyCompose } from 'mastodon/actions/compose';
|
import { cancelReplyCompose } from 'mastodon/actions/compose';
|
||||||
import { Icon } from 'mastodon/components/icon';
|
import { Icon } from 'mastodon/components/icon';
|
||||||
import { IconButton } from 'mastodon/components/icon_button';
|
import { IconButton } from 'mastodon/components/icon_button';
|
||||||
|
|
|
@ -10,7 +10,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||||
import { supportsPassiveEvents } from 'detect-passive-events';
|
import { supportsPassiveEvents } from 'detect-passive-events';
|
||||||
import Overlay from 'react-overlays/Overlay';
|
import Overlay from 'react-overlays/Overlay';
|
||||||
|
|
||||||
import MoodIcon from 'mastodon/../material-icons/400-24px/mood.svg?react';
|
import MoodIcon from '@/material-icons/400-20px/mood.svg?react';
|
||||||
import { IconButton } from 'mastodon/components/icon_button';
|
import { IconButton } from 'mastodon/components/icon_button';
|
||||||
import { assetHost } from 'mastodon/utils/config';
|
import { assetHost } from 'mastodon/utils/config';
|
||||||
|
|
||||||
|
|
|
@ -9,9 +9,9 @@ import { supportsPassiveEvents } from 'detect-passive-events';
|
||||||
import fuzzysort from 'fuzzysort';
|
import fuzzysort from 'fuzzysort';
|
||||||
import Overlay from 'react-overlays/Overlay';
|
import Overlay from 'react-overlays/Overlay';
|
||||||
|
|
||||||
import CancelIcon from 'mastodon/../material-icons/400-24px/cancel-fill.svg?react';
|
import CancelIcon from '@/material-icons/400-24px/cancel-fill.svg?react';
|
||||||
import SearchIcon from 'mastodon/../material-icons/400-24px/search.svg?react';
|
import SearchIcon from '@/material-icons/400-24px/search.svg?react';
|
||||||
import TranslateIcon from 'mastodon/../material-icons/400-24px/translate.svg?react';
|
import TranslateIcon from '@/material-icons/400-24px/translate.svg?react';
|
||||||
import { Icon } from 'mastodon/components/icon';
|
import { Icon } from 'mastodon/components/icon';
|
||||||
import { languages as preloadedLanguages } from 'mastodon/initial_state';
|
import { languages as preloadedLanguages } from 'mastodon/initial_state';
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ import { useIntl, defineMessages } from 'react-intl';
|
||||||
|
|
||||||
import { useSelector, useDispatch } from 'react-redux';
|
import { useSelector, useDispatch } from 'react-redux';
|
||||||
|
|
||||||
import CloseIcon from 'mastodon/../material-icons/400-24px/close.svg?react';
|
import CloseIcon from '@/material-icons/400-24px/close.svg?react';
|
||||||
import { cancelReplyCompose } from 'mastodon/actions/compose';
|
import { cancelReplyCompose } from 'mastodon/actions/compose';
|
||||||
import Account from 'mastodon/components/account';
|
import Account from 'mastodon/components/account';
|
||||||
import { IconButton } from 'mastodon/components/icon_button';
|
import { IconButton } from 'mastodon/components/icon_button';
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { PureComponent } from 'react';
|
||||||
|
|
||||||
import { defineMessages, injectIntl } from 'react-intl';
|
import { defineMessages, injectIntl } from 'react-intl';
|
||||||
|
|
||||||
import BarChart4BarsIcon from '@/material-icons/400-24px/bar_chart_4_bars.svg?react';
|
import BarChart4BarsIcon from '@/material-icons/400-20px/bar_chart_4_bars.svg?react';
|
||||||
|
|
||||||
import { IconButton } from '../../../components/icon_button';
|
import { IconButton } from '../../../components/icon_button';
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||||
|
|
||||||
import spring from 'react-motion/lib/spring';
|
import spring from 'react-motion/lib/spring';
|
||||||
|
|
||||||
import CloseIcon from '@/material-icons/400-24px/close.svg?react';
|
import CloseIcon from '@/material-icons/400-20px/close.svg?react';
|
||||||
import EditIcon from '@/material-icons/400-24px/edit.svg?react';
|
import EditIcon from '@/material-icons/400-24px/edit.svg?react';
|
||||||
import WarningIcon from '@/material-icons/400-24px/warning.svg?react';
|
import WarningIcon from '@/material-icons/400-24px/warning.svg?react';
|
||||||
import { Blurhash } from 'mastodon/components/blurhash';
|
import { Blurhash } from 'mastodon/components/blurhash';
|
||||||
|
|
|
@ -6,7 +6,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
|
|
||||||
import PhotoLibraryIcon from '@/material-icons/400-24px/photo_library.svg?react';
|
import PhotoLibraryIcon from '@/material-icons/400-20px/photo_library.svg?react';
|
||||||
import { IconButton } from 'mastodon/components/icon_button';
|
import { IconButton } from 'mastodon/components/icon_button';
|
||||||
|
|
||||||
const messages = defineMessages({
|
const messages = defineMessages({
|
||||||
|
|
|
@ -2,7 +2,7 @@ import { injectIntl, defineMessages } from 'react-intl';
|
||||||
|
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
|
|
||||||
import WarningIcon from 'mastodon/../material-icons/400-24px/warning.svg?react';
|
import WarningIcon from '@/material-icons/400-20px/warning.svg?react';
|
||||||
import { IconButton } from 'mastodon/components/icon_button';
|
import { IconButton } from 'mastodon/components/icon_button';
|
||||||
|
|
||||||
import { changeComposeSpoilerness } from '../../../actions/compose';
|
import { changeComposeSpoilerness } from '../../../actions/compose';
|
||||||
|
|
|
@ -17,9 +17,11 @@
|
||||||
"account.badges.group": "گرووپ",
|
"account.badges.group": "گرووپ",
|
||||||
"account.block": "بلۆکی @{name}",
|
"account.block": "بلۆکی @{name}",
|
||||||
"account.block_domain": "بلۆکی هەموو شتێک لە {domain}",
|
"account.block_domain": "بلۆکی هەموو شتێک لە {domain}",
|
||||||
|
"account.block_short": "بلۆک",
|
||||||
"account.blocked": "بلۆککرا",
|
"account.blocked": "بلۆککرا",
|
||||||
"account.browse_more_on_origin_server": "گەڕانی فرەتر لە سەر پرۆفایلی سەرەکی",
|
"account.browse_more_on_origin_server": "گەڕانی فرەتر لە سەر پرۆفایلی سەرەکی",
|
||||||
"account.cancel_follow_request": "داواکاری فۆڵۆو بکشێنەوە",
|
"account.cancel_follow_request": "داواکاری فۆڵۆو بکشێنەوە",
|
||||||
|
"account.copy": "ڕوونووسی بەستەر بۆ توت",
|
||||||
"account.direct": "بە شێوەیەکی تایبەت باسی @{name} بکە",
|
"account.direct": "بە شێوەیەکی تایبەت باسی @{name} بکە",
|
||||||
"account.disable_notifications": "ئاگانامە مەنێرە بۆم کاتێک @{name} پۆست دەکرێت",
|
"account.disable_notifications": "ئاگانامە مەنێرە بۆم کاتێک @{name} پۆست دەکرێت",
|
||||||
"account.domain_blocked": "دۆمەین قەپاتکرا",
|
"account.domain_blocked": "دۆمەین قەپاتکرا",
|
||||||
|
@ -30,6 +32,7 @@
|
||||||
"account.featured_tags.last_status_never": "هیچ پۆستێک نییە",
|
"account.featured_tags.last_status_never": "هیچ پۆستێک نییە",
|
||||||
"account.featured_tags.title": "هاشتاگە تایبەتەکانی {name}",
|
"account.featured_tags.title": "هاشتاگە تایبەتەکانی {name}",
|
||||||
"account.follow": "بەدواداچوون",
|
"account.follow": "بەدواداچوون",
|
||||||
|
"account.follow_back": "فۆڵۆو بکەنەوە",
|
||||||
"account.followers": "شوێنکەوتووان",
|
"account.followers": "شوێنکەوتووان",
|
||||||
"account.followers.empty": "کەسێک شوێن ئەم بەکارهێنەرە نەکەوتووە",
|
"account.followers.empty": "کەسێک شوێن ئەم بەکارهێنەرە نەکەوتووە",
|
||||||
"account.followers_counter": "{count, plural, one {{counter} شوێنکەوتوو} other {{counter} شوێنکەوتوو}}",
|
"account.followers_counter": "{count, plural, one {{counter} شوێنکەوتوو} other {{counter} شوێنکەوتوو}}",
|
||||||
|
@ -38,6 +41,7 @@
|
||||||
"account.follows.empty": "ئەم بەکارهێنەرە تا ئێستا شوێن کەس نەکەوتووە.",
|
"account.follows.empty": "ئەم بەکارهێنەرە تا ئێستا شوێن کەس نەکەوتووە.",
|
||||||
"account.go_to_profile": "بڕۆ بۆ پڕۆفایلی",
|
"account.go_to_profile": "بڕۆ بۆ پڕۆفایلی",
|
||||||
"account.hide_reblogs": "داشاردنی بووستەکان لە @{name}",
|
"account.hide_reblogs": "داشاردنی بووستەکان لە @{name}",
|
||||||
|
"account.in_memoriam": "لە یادەوەریدا.",
|
||||||
"account.joined_short": "بەشداری کردووە",
|
"account.joined_short": "بەشداری کردووە",
|
||||||
"account.languages": "گۆڕینی زمانە بەشداربووەکان",
|
"account.languages": "گۆڕینی زمانە بەشداربووەکان",
|
||||||
"account.link_verified_on": "خاوەنداریەتی ئەم لینکە لە {date} چێک کراوە",
|
"account.link_verified_on": "خاوەنداریەتی ئەم لینکە لە {date} چێک کراوە",
|
||||||
|
@ -46,7 +50,11 @@
|
||||||
"account.mention": "ئاماژە @{name}",
|
"account.mention": "ئاماژە @{name}",
|
||||||
"account.moved_to": "{name} ئاماژەی بەوە کردووە کە ئەکاونتە نوێیەکەیان ئێستا:",
|
"account.moved_to": "{name} ئاماژەی بەوە کردووە کە ئەکاونتە نوێیەکەیان ئێستا:",
|
||||||
"account.mute": "بێدەنگکردن @{name}",
|
"account.mute": "بێدەنگکردن @{name}",
|
||||||
|
"account.mute_notifications_short": "پاڵ بە ئاگادارکردنەوەکانەوە بنێ",
|
||||||
|
"account.mute_short": "بێدەنگ",
|
||||||
"account.muted": "بێ دەنگ",
|
"account.muted": "بێ دەنگ",
|
||||||
|
"account.mutual": "دوولایەنە",
|
||||||
|
"account.no_bio": "هیچ وەسفێک نەخراوەتەڕوو.",
|
||||||
"account.open_original_page": "لاپەڕەی ئەسڵی بکەرەوە",
|
"account.open_original_page": "لاپەڕەی ئەسڵی بکەرەوە",
|
||||||
"account.posts": "نووسراوەکان",
|
"account.posts": "نووسراوەکان",
|
||||||
"account.posts_with_replies": "توتس و وەڵامەکان",
|
"account.posts_with_replies": "توتس و وەڵامەکان",
|
||||||
|
@ -62,6 +70,7 @@
|
||||||
"account.unendorse": "تایبەتمەندی لەسەر پرۆفایلەکە نیە",
|
"account.unendorse": "تایبەتمەندی لەسەر پرۆفایلەکە نیە",
|
||||||
"account.unfollow": "بەدوادانەچو",
|
"account.unfollow": "بەدوادانەچو",
|
||||||
"account.unmute": "بێدەنگکردنی @{name}",
|
"account.unmute": "بێدەنگکردنی @{name}",
|
||||||
|
"account.unmute_notifications_short": "ئاگادارکردنەوەکان بێدەنگ بکەرەوە",
|
||||||
"account.unmute_short": "بێدەنگی مەکە",
|
"account.unmute_short": "بێدەنگی مەکە",
|
||||||
"account_note.placeholder": "کرتەبکە بۆ زیادکردنی تێبینی",
|
"account_note.placeholder": "کرتەبکە بۆ زیادکردنی تێبینی",
|
||||||
"admin.dashboard.daily_retention": "ڕێژەی مانەوەی بەکارهێنەر بەپێی ڕۆژ دوای ناو تۆمارکردن",
|
"admin.dashboard.daily_retention": "ڕێژەی مانەوەی بەکارهێنەر بەپێی ڕۆژ دوای ناو تۆمارکردن",
|
||||||
|
@ -69,6 +78,10 @@
|
||||||
"admin.dashboard.retention.average": "ڕێژە",
|
"admin.dashboard.retention.average": "ڕێژە",
|
||||||
"admin.dashboard.retention.cohort": "چوونەژوورەوەی مانگانە",
|
"admin.dashboard.retention.cohort": "چوونەژوورەوەی مانگانە",
|
||||||
"admin.dashboard.retention.cohort_size": "ئەندامی نوێ",
|
"admin.dashboard.retention.cohort_size": "ئەندامی نوێ",
|
||||||
|
"admin.impact_report.instance_accounts": "پڕۆفایلی هەژمارەکان ئەمە دەسڕێتەوە",
|
||||||
|
"admin.impact_report.instance_followers": "فۆڵۆوەرەکان بەکارهێنەران لەدەست دەدەن",
|
||||||
|
"admin.impact_report.instance_follows": "فۆڵۆوەرەکان ئەمبەکارهێنەرە لەدەست دەدەن",
|
||||||
|
"admin.impact_report.title": "پوختەی کاریگەرییەکان",
|
||||||
"alert.rate_limited.message": "تکایە هەوڵبدەرەوە دوای {retry_time, time, medium}.",
|
"alert.rate_limited.message": "تکایە هەوڵبدەرەوە دوای {retry_time, time, medium}.",
|
||||||
"alert.rate_limited.title": "ڕێژەی سنووردار",
|
"alert.rate_limited.title": "ڕێژەی سنووردار",
|
||||||
"alert.unexpected.message": "هەڵەیەکی چاوەڕوان نەکراو ڕوویدا.",
|
"alert.unexpected.message": "هەڵەیەکی چاوەڕوان نەکراو ڕوویدا.",
|
||||||
|
@ -101,6 +114,8 @@
|
||||||
"column.direct": "ئاماژەی تایبەت",
|
"column.direct": "ئاماژەی تایبەت",
|
||||||
"column.directory": "گەڕان لە پرۆفایلەکان",
|
"column.directory": "گەڕان لە پرۆفایلەکان",
|
||||||
"column.domain_blocks": "دۆمەینە داخراوەکان",
|
"column.domain_blocks": "دۆمەینە داخراوەکان",
|
||||||
|
"column.favourites": "دڵخوازەکان",
|
||||||
|
"column.firehose": "فیدی ڕاستەوخۆ",
|
||||||
"column.follow_requests": "بەدواداچوی داواکاریەکان بکە",
|
"column.follow_requests": "بەدواداچوی داواکاریەکان بکە",
|
||||||
"column.home": "سەرەتا",
|
"column.home": "سەرەتا",
|
||||||
"column.lists": "پێرست",
|
"column.lists": "پێرست",
|
||||||
|
@ -121,6 +136,9 @@
|
||||||
"community.column_settings.remote_only": "تەنها بۆ دوور",
|
"community.column_settings.remote_only": "تەنها بۆ دوور",
|
||||||
"compose.language.change": "گۆڕینی زمان",
|
"compose.language.change": "گۆڕینی زمان",
|
||||||
"compose.language.search": "گەڕان بە زمانەکان...",
|
"compose.language.search": "گەڕان بە زمانەکان...",
|
||||||
|
"compose.published.body": "پۆست بڵاوکراوەتەوە.",
|
||||||
|
"compose.published.open": "بیکەوە",
|
||||||
|
"compose.saved.body": "پۆستەکە سەیڤ کراوە.",
|
||||||
"compose_form.direct_message_warning_learn_more": "زیاتر فێربه",
|
"compose_form.direct_message_warning_learn_more": "زیاتر فێربه",
|
||||||
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.",
|
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.",
|
||||||
"compose_form.hashtag_warning": "ئەم بڵاوکراوەیە لە ژێر هیچ هاشتاگێکدا دا نانرێت وەک ئەوەیە، کە گشتی نەبێت. تەنها بڵاوکراوە گشتیەکان دەتوانرێ بە هاشتاگ گەڕانی بۆ بکرێت.",
|
"compose_form.hashtag_warning": "ئەم بڵاوکراوەیە لە ژێر هیچ هاشتاگێکدا دا نانرێت وەک ئەوەیە، کە گشتی نەبێت. تەنها بڵاوکراوە گشتیەکان دەتوانرێ بە هاشتاگ گەڕانی بۆ بکرێت.",
|
||||||
|
@ -128,11 +146,19 @@
|
||||||
"compose_form.lock_disclaimer.lock": "قفڵ دراوە",
|
"compose_form.lock_disclaimer.lock": "قفڵ دراوە",
|
||||||
"compose_form.placeholder": "چی لە مێشکتدایە?",
|
"compose_form.placeholder": "چی لە مێشکتدایە?",
|
||||||
"compose_form.poll.duration": "ماوەی ڕاپرسی",
|
"compose_form.poll.duration": "ماوەی ڕاپرسی",
|
||||||
|
"compose_form.poll.multiple": "فرە هەڵبژاردە",
|
||||||
|
"compose_form.poll.option_placeholder": "بژاردەی {number}",
|
||||||
|
"compose_form.poll.single": "یەکێك هەلبژێرە",
|
||||||
"compose_form.poll.switch_to_multiple": "ڕاپرسی بگۆڕە بۆ ڕێگەدان بە چەند هەڵبژاردنێک",
|
"compose_form.poll.switch_to_multiple": "ڕاپرسی بگۆڕە بۆ ڕێگەدان بە چەند هەڵبژاردنێک",
|
||||||
"compose_form.poll.switch_to_single": "گۆڕینی ڕاپرسی بۆ ڕێگەدان بە تاکە هەڵبژاردنێک",
|
"compose_form.poll.switch_to_single": "گۆڕینی ڕاپرسی بۆ ڕێگەدان بە تاکە هەڵبژاردنێک",
|
||||||
|
"compose_form.poll.type": "ستایڵ",
|
||||||
|
"compose_form.publish": "پۆست",
|
||||||
"compose_form.publish_form": "بڵاوی بکەوە",
|
"compose_form.publish_form": "بڵاوی بکەوە",
|
||||||
|
"compose_form.reply": "وەڵام",
|
||||||
|
"compose_form.save_changes": "نوێکردنەوە",
|
||||||
"compose_form.spoiler.marked": "دەق لە پشت ئاگاداریدا شاراوەتەوە",
|
"compose_form.spoiler.marked": "دەق لە پشت ئاگاداریدا شاراوەتەوە",
|
||||||
"compose_form.spoiler.unmarked": "دەق شاراوە نییە",
|
"compose_form.spoiler.unmarked": "دەق شاراوە نییە",
|
||||||
|
"compose_form.spoiler_placeholder": "ئاگادارکردنەوەی ناوەڕۆک (ئیختیاری)",
|
||||||
"confirmation_modal.cancel": "هەڵوەشاندنەوه",
|
"confirmation_modal.cancel": "هەڵوەشاندنەوه",
|
||||||
"confirmations.block.block_and_report": "بلۆک & گوزارشت",
|
"confirmations.block.block_and_report": "بلۆک & گوزارشت",
|
||||||
"confirmations.block.confirm": "بلۆک",
|
"confirmations.block.confirm": "بلۆک",
|
||||||
|
@ -155,6 +181,7 @@
|
||||||
"confirmations.mute.explanation": "ئەمەش دەبێتە هۆی شاردنەوەی پۆستەکان یان ئەو بابەتانەی کە ئاماژەیان پێ دەکات ، بەڵام هێشتا ڕێگەیان پێ دەدات کە پۆستەکانتان ببینن و شوێنتان بکەون.",
|
"confirmations.mute.explanation": "ئەمەش دەبێتە هۆی شاردنەوەی پۆستەکان یان ئەو بابەتانەی کە ئاماژەیان پێ دەکات ، بەڵام هێشتا ڕێگەیان پێ دەدات کە پۆستەکانتان ببینن و شوێنتان بکەون.",
|
||||||
"confirmations.mute.message": "ئایا دڵنیایت لەوەی دەتەوێت بیلێیت {name}?",
|
"confirmations.mute.message": "ئایا دڵنیایت لەوەی دەتەوێت بیلێیت {name}?",
|
||||||
"confirmations.redraft.confirm": "سڕینەوە & دووبارە ڕەشکردنەوە",
|
"confirmations.redraft.confirm": "سڕینەوە & دووبارە ڕەشکردنەوە",
|
||||||
|
"confirmations.redraft.message": "دڵنیای دەتەوێت ئەم پۆستە بسڕیتەوە و دووبارە دایبڕێژیتەوە؟ فەڤۆریت و بووستەکان لەدەست دەچن، وەڵامەکانی پۆستە ئەسڵیەکەش هەتیو دەبن.",
|
||||||
"confirmations.reply.confirm": "وەڵام",
|
"confirmations.reply.confirm": "وەڵام",
|
||||||
"confirmations.reply.message": "وەڵامدانەوە ئێستا ئەو نامەیە ی کە تۆ ئێستا دایڕشتووە، دەنووسێتەوە. ئایا دڵنیایت کە دەتەوێت بەردەوام بیت?",
|
"confirmations.reply.message": "وەڵامدانەوە ئێستا ئەو نامەیە ی کە تۆ ئێستا دایڕشتووە، دەنووسێتەوە. ئایا دڵنیایت کە دەتەوێت بەردەوام بیت?",
|
||||||
"confirmations.unfollow.confirm": "بەدوادانەچو",
|
"confirmations.unfollow.confirm": "بەدوادانەچو",
|
||||||
|
@ -163,7 +190,9 @@
|
||||||
"conversation.mark_as_read": "نیشانەکردن وەک خوێندراوە",
|
"conversation.mark_as_read": "نیشانەکردن وەک خوێندراوە",
|
||||||
"conversation.open": "نیشاندان گفتوگۆ",
|
"conversation.open": "نیشاندان گفتوگۆ",
|
||||||
"conversation.with": "لەگەڵ{names}",
|
"conversation.with": "لەگەڵ{names}",
|
||||||
|
"copy_icon_button.copied": "کۆپی کراوە بۆ کلیپبۆرد",
|
||||||
"copypaste.copied": "کۆپی کراوە",
|
"copypaste.copied": "کۆپی کراوە",
|
||||||
|
"copypaste.copy_to_clipboard": "کۆپی کراوە بۆ کلیپبۆرد",
|
||||||
"directory.federated": "لە ڕاژەکانی ناسراو",
|
"directory.federated": "لە ڕاژەکانی ناسراو",
|
||||||
"directory.local": "تەنها لە {domain}",
|
"directory.local": "تەنها لە {domain}",
|
||||||
"directory.new_arrivals": "تازە گەیشتنەکان",
|
"directory.new_arrivals": "تازە گەیشتنەکان",
|
||||||
|
@ -173,6 +202,7 @@
|
||||||
"dismissable_banner.community_timeline": "ئەمانە دوایین پۆستی گشتی ئەو کەسانەن کە ئەکاونتەکانیان لەلایەن {domain}ەوە هۆست کراوە.",
|
"dismissable_banner.community_timeline": "ئەمانە دوایین پۆستی گشتی ئەو کەسانەن کە ئەکاونتەکانیان لەلایەن {domain}ەوە هۆست کراوە.",
|
||||||
"dismissable_banner.dismiss": "بەلاوە نان",
|
"dismissable_banner.dismiss": "بەلاوە نان",
|
||||||
"dismissable_banner.explore_links": "ئەم هەواڵانە لە ئێستادا لەلایەن کەسانێکەوە لەسەر ئەم سێرڤەرە و سێرڤەرەکانی تری تۆڕی لامەرکەزی باس دەکرێن.",
|
"dismissable_banner.explore_links": "ئەم هەواڵانە لە ئێستادا لەلایەن کەسانێکەوە لەسەر ئەم سێرڤەرە و سێرڤەرەکانی تری تۆڕی لامەرکەزی باس دەکرێن.",
|
||||||
|
"dismissable_banner.explore_statuses": "ئەمانە پۆستەکانن لە سەرانسەری وێبی کۆمەڵایەتی کە ئەمڕۆ کێشکردنیان بەدەستهێناوە. پۆستە نوێیەکان کە بووست و فەڤریتی زیاتریان هەیە ڕیزبەندی بەرزتریان هەیە.",
|
||||||
"dismissable_banner.explore_tags": "ئەم هاشتاگانە لە ئێستادا لە نێو خەڵکی سەر ئەم سێرڤەرە و سێرڤەرەکانی تری تۆڕی لامەرکەزیدا جێگەی خۆیان دەگرن.",
|
"dismissable_banner.explore_tags": "ئەم هاشتاگانە لە ئێستادا لە نێو خەڵکی سەر ئەم سێرڤەرە و سێرڤەرەکانی تری تۆڕی لامەرکەزیدا جێگەی خۆیان دەگرن.",
|
||||||
"embed.instructions": "ئەم توتە بنچین بکە لەسەر وێب سایتەکەت بە کۆپیکردنی کۆدەکەی خوارەوە.",
|
"embed.instructions": "ئەم توتە بنچین بکە لەسەر وێب سایتەکەت بە کۆپیکردنی کۆدەکەی خوارەوە.",
|
||||||
"embed.preview": "ئەمە ئەو شتەیە کە لە شێوەی خۆی دەچێت:",
|
"embed.preview": "ئەمە ئەو شتەیە کە لە شێوەی خۆی دەچێت:",
|
||||||
|
@ -216,6 +246,7 @@
|
||||||
"errors.unexpected_crash.copy_stacktrace": "کۆپیکردنی ستێکتراسی بۆ کلیپ بۆرد",
|
"errors.unexpected_crash.copy_stacktrace": "کۆپیکردنی ستێکتراسی بۆ کلیپ بۆرد",
|
||||||
"errors.unexpected_crash.report_issue": "کێشەی گوزارشت",
|
"errors.unexpected_crash.report_issue": "کێشەی گوزارشت",
|
||||||
"explore.search_results": "ئەنجامەکانی گەڕان",
|
"explore.search_results": "ئەنجامەکانی گەڕان",
|
||||||
|
"explore.suggested_follows": "خەڵک",
|
||||||
"explore.title": "گەڕان",
|
"explore.title": "گەڕان",
|
||||||
"explore.trending_links": "هەواڵەکان",
|
"explore.trending_links": "هەواڵەکان",
|
||||||
"explore.trending_statuses": "بڵاوکراوەکان",
|
"explore.trending_statuses": "بڵاوکراوەکان",
|
||||||
|
@ -236,9 +267,16 @@
|
||||||
"filter_modal.select_filter.subtitle": "بەکارهێنانی پۆلێنی بەردەست یان دروستکردنی پۆلێنێکی نوێ",
|
"filter_modal.select_filter.subtitle": "بەکارهێنانی پۆلێنی بەردەست یان دروستکردنی پۆلێنێکی نوێ",
|
||||||
"filter_modal.select_filter.title": "ئەم بڵاوکراوەیە بپاڵێوە",
|
"filter_modal.select_filter.title": "ئەم بڵاوکراوەیە بپاڵێوە",
|
||||||
"filter_modal.title.status": "بڵاوکراوەیەک بپاڵێوە",
|
"filter_modal.title.status": "بڵاوکراوەیەک بپاڵێوە",
|
||||||
|
"firehose.all": "هەموو",
|
||||||
|
"firehose.local": "لەسەر ئەم ڕاژەیە",
|
||||||
|
"firehose.remote": "ڕاژەکانی دی",
|
||||||
"follow_request.authorize": "دهسهڵاتپێدراو",
|
"follow_request.authorize": "دهسهڵاتپێدراو",
|
||||||
"follow_request.reject": "ڕەتکردنەوە",
|
"follow_request.reject": "ڕەتکردنەوە",
|
||||||
"follow_requests.unlocked_explanation": "هەرچەندە هەژمارەکەت داخراو نییە، ستافی {domain} وا بیریان کردەوە کە لەوانەیە بتانەوێت پێداچوونەوە بە داواکاریەکانی ئەم هەژمارەدا بکەن بە دەستی.",
|
"follow_requests.unlocked_explanation": "هەرچەندە هەژمارەکەت داخراو نییە، ستافی {domain} وا بیریان کردەوە کە لەوانەیە بتانەوێت پێداچوونەوە بە داواکاریەکانی ئەم هەژمارەدا بکەن بە دەستی.",
|
||||||
|
"follow_suggestions.curated_suggestion": "ستاف هەڵبژاردنی",
|
||||||
|
"follow_suggestions.dismiss": "دوبارە پشانی مەدە",
|
||||||
|
"follow_suggestions.view_all": "بینینی هەموو",
|
||||||
|
"follow_suggestions.who_to_follow": "دواکەوتنی کێ",
|
||||||
"followed_tags": "هاشتاگە شوێنکەوتووەکان",
|
"followed_tags": "هاشتاگە شوێنکەوتووەکان",
|
||||||
"footer.about": "دەربارە",
|
"footer.about": "دەربارە",
|
||||||
"footer.directory": "ڕابەری پەڕەی ناساندن",
|
"footer.directory": "ڕابەری پەڕەی ناساندن",
|
||||||
|
@ -259,6 +297,7 @@
|
||||||
"hashtag.column_settings.tag_mode.any": "هەر کام لەمانە",
|
"hashtag.column_settings.tag_mode.any": "هەر کام لەمانە",
|
||||||
"hashtag.column_settings.tag_mode.none": "هیچ کام لەمانە",
|
"hashtag.column_settings.tag_mode.none": "هیچ کام لەمانە",
|
||||||
"hashtag.column_settings.tag_toggle": "تاگی زیادە ی ئەم ستوونە لەخۆ بنووسە",
|
"hashtag.column_settings.tag_toggle": "تاگی زیادە ی ئەم ستوونە لەخۆ بنووسە",
|
||||||
|
"hashtag.counter_by_accounts": "{count, plural, one {{counter} participant} other {{counter} participants}}",
|
||||||
"hashtag.follow": "شوێنکەوتنی هاشتاگ",
|
"hashtag.follow": "شوێنکەوتنی هاشتاگ",
|
||||||
"hashtag.unfollow": "شوێن نەکەوتنی هاشتاگ",
|
"hashtag.unfollow": "شوێن نەکەوتنی هاشتاگ",
|
||||||
"home.column_settings.basic": "بنەڕەتی",
|
"home.column_settings.basic": "بنەڕەتی",
|
||||||
|
|
|
@ -171,21 +171,21 @@
|
||||||
"confirmations.delete_list.message": "¿Seguro que quieres borrar esta lista permanentemente?",
|
"confirmations.delete_list.message": "¿Seguro que quieres borrar esta lista permanentemente?",
|
||||||
"confirmations.discard_edit_media.confirm": "Descartar",
|
"confirmations.discard_edit_media.confirm": "Descartar",
|
||||||
"confirmations.discard_edit_media.message": "Tienes cambios sin guardar en la descripción o vista previa del archivo audiovisual, ¿descartarlos de todos modos?",
|
"confirmations.discard_edit_media.message": "Tienes cambios sin guardar en la descripción o vista previa del archivo audiovisual, ¿descartarlos de todos modos?",
|
||||||
"confirmations.domain_block.confirm": "Bloquear dominio entero",
|
"confirmations.domain_block.confirm": "Bloquear todo el dominio",
|
||||||
"confirmations.domain_block.message": "¿Seguro de que quieres bloquear al dominio {domain} entero? En general unos cuantos bloqueos y silenciados concretos es suficiente y preferible.",
|
"confirmations.domain_block.message": "¿Seguro que quieres bloquear todo el dominio {domain}? En general, unos cuantos bloqueos y silenciados concretos es suficiente y preferible. No verás contenido del dominio en ninguna cronología pública ni en tus notificaciones. Se eliminarán tus seguidores procedentes de ese dominio.",
|
||||||
"confirmations.edit.confirm": "Editar",
|
"confirmations.edit.confirm": "Editar",
|
||||||
"confirmations.edit.message": "Editar ahora reemplazará el mensaje que está escribiendo. ¿Está seguro que quiere proceder?",
|
"confirmations.edit.message": "Editar ahora reemplazará el mensaje que estás escribiendo. ¿Seguro que quieres proceder?",
|
||||||
"confirmations.logout.confirm": "Cerrar sesión",
|
"confirmations.logout.confirm": "Cerrar sesión",
|
||||||
"confirmations.logout.message": "¿Estás seguro de querer cerrar la sesión?",
|
"confirmations.logout.message": "¿Seguro que quieres cerrar la sesión?",
|
||||||
"confirmations.mute.confirm": "Silenciar",
|
"confirmations.mute.confirm": "Silenciar",
|
||||||
"confirmations.mute.explanation": "Esto esconderá las publicaciones de ellos y en las que los has mencionado, pero les permitirá ver tus mensajes y seguirte.",
|
"confirmations.mute.explanation": "Esto esconderá sus publicaciones y las publicaciones que los mencionen, pero podrán seguir viendo tus mensajes y seguirte.",
|
||||||
"confirmations.mute.message": "¿Estás seguro de que quieres silenciar a {name}?",
|
"confirmations.mute.message": "¿Seguro que quieres silenciar a {name}?",
|
||||||
"confirmations.redraft.confirm": "Borrar y volver a borrador",
|
"confirmations.redraft.confirm": "Borrar y volver a borrador",
|
||||||
"confirmations.redraft.message": "¿Estás seguro de querer borrar esta publicación y reescribirla? Los favoritos e impulsos se perderán, y las respuestas a la publicación original quedarán sin contexto.",
|
"confirmations.redraft.message": "¿Estás seguro de querer borrar esta publicación y reescribirla? Los favoritos e impulsos se perderán, y las respuestas a la publicación original quedarán sin contexto.",
|
||||||
"confirmations.reply.confirm": "Responder",
|
"confirmations.reply.confirm": "Responder",
|
||||||
"confirmations.reply.message": "Responder sobrescribirá el mensaje que estás escribiendo. ¿Seguro que deseas continuar?",
|
"confirmations.reply.message": "Responder sobrescribirá el mensaje que estás escribiendo. ¿Seguro que deseas continuar?",
|
||||||
"confirmations.unfollow.confirm": "Dejar de seguir",
|
"confirmations.unfollow.confirm": "Dejar de seguir",
|
||||||
"confirmations.unfollow.message": "¿Estás seguro de que quieres dejar de seguir a {name}?",
|
"confirmations.unfollow.message": "¿Seguro que quieres dejar de seguir a {name}?",
|
||||||
"conversation.delete": "Borrar conversación",
|
"conversation.delete": "Borrar conversación",
|
||||||
"conversation.mark_as_read": "Marcar como leído",
|
"conversation.mark_as_read": "Marcar como leído",
|
||||||
"conversation.open": "Ver conversación",
|
"conversation.open": "Ver conversación",
|
||||||
|
@ -194,7 +194,7 @@
|
||||||
"copypaste.copied": "Copiado",
|
"copypaste.copied": "Copiado",
|
||||||
"copypaste.copy_to_clipboard": "Copiar al portapapeles",
|
"copypaste.copy_to_clipboard": "Copiar al portapapeles",
|
||||||
"directory.federated": "Desde el fediverso conocido",
|
"directory.federated": "Desde el fediverso conocido",
|
||||||
"directory.local": "Sólo de {domain}",
|
"directory.local": "Solo de {domain}",
|
||||||
"directory.new_arrivals": "Recién llegados",
|
"directory.new_arrivals": "Recién llegados",
|
||||||
"directory.recently_active": "Recientemente activo",
|
"directory.recently_active": "Recientemente activo",
|
||||||
"disabled_account_banner.account_settings": "Ajustes de la cuenta",
|
"disabled_account_banner.account_settings": "Ajustes de la cuenta",
|
||||||
|
@ -210,11 +210,11 @@
|
||||||
"emoji_button.activity": "Actividad",
|
"emoji_button.activity": "Actividad",
|
||||||
"emoji_button.clear": "Limpiar",
|
"emoji_button.clear": "Limpiar",
|
||||||
"emoji_button.custom": "Personalizado",
|
"emoji_button.custom": "Personalizado",
|
||||||
"emoji_button.flags": "Marcas",
|
"emoji_button.flags": "Banderas",
|
||||||
"emoji_button.food": "Comida y bebida",
|
"emoji_button.food": "Comida y bebida",
|
||||||
"emoji_button.label": "Insertar emoji",
|
"emoji_button.label": "Insertar emoji",
|
||||||
"emoji_button.nature": "Naturaleza",
|
"emoji_button.nature": "Naturaleza",
|
||||||
"emoji_button.not_found": "No hay emojis!! ¯\\_(ツ)_/¯",
|
"emoji_button.not_found": "No se encontró ningún emoji coincidente",
|
||||||
"emoji_button.objects": "Objetos",
|
"emoji_button.objects": "Objetos",
|
||||||
"emoji_button.people": "Personas",
|
"emoji_button.people": "Personas",
|
||||||
"emoji_button.recent": "Usados frecuentemente",
|
"emoji_button.recent": "Usados frecuentemente",
|
||||||
|
@ -230,8 +230,8 @@
|
||||||
"empty_column.bookmarked_statuses": "Aún no tienes ninguna publicación guardada como marcador. Cuando guardes una, se mostrará aquí.",
|
"empty_column.bookmarked_statuses": "Aún no tienes ninguna publicación guardada como marcador. Cuando guardes una, se mostrará aquí.",
|
||||||
"empty_column.community": "La línea de tiempo local está vacía. ¡Escribe algo para empezar la fiesta!",
|
"empty_column.community": "La línea de tiempo local está vacía. ¡Escribe algo para empezar la fiesta!",
|
||||||
"empty_column.direct": "Aún no tienes menciones privadas. Cuando envíes o recibas una, aparecerán aquí.",
|
"empty_column.direct": "Aún no tienes menciones privadas. Cuando envíes o recibas una, aparecerán aquí.",
|
||||||
"empty_column.domain_blocks": "Todavía no hay dominios ocultos.",
|
"empty_column.domain_blocks": "Todavía no hay dominios bloqueados.",
|
||||||
"empty_column.explore_statuses": "Nada está en tendencia en este momento. ¡Revisa más tarde!",
|
"empty_column.explore_statuses": "No hay nada en tendencia en este momento. ¡Revisa más tarde!",
|
||||||
"empty_column.favourited_statuses": "Todavía no tienes publicaciones favoritas. Cuando marques una publicación como favorita, se mostrarán aquí.",
|
"empty_column.favourited_statuses": "Todavía no tienes publicaciones favoritas. Cuando marques una publicación como favorita, se mostrarán aquí.",
|
||||||
"empty_column.favourites": "Todavía nadie marcó esta publicación como favorita. Cuando alguien lo haga, se mostrarán aquí.",
|
"empty_column.favourites": "Todavía nadie marcó esta publicación como favorita. Cuando alguien lo haga, se mostrarán aquí.",
|
||||||
"empty_column.follow_requests": "No tienes ninguna petición de seguidor. Cuando recibas una, se mostrará aquí.",
|
"empty_column.follow_requests": "No tienes ninguna petición de seguidor. Cuando recibas una, se mostrará aquí.",
|
||||||
|
@ -555,6 +555,7 @@
|
||||||
"relative_time.minutes": "{number} m",
|
"relative_time.minutes": "{number} m",
|
||||||
"relative_time.seconds": "{number} s",
|
"relative_time.seconds": "{number} s",
|
||||||
"relative_time.today": "hoy",
|
"relative_time.today": "hoy",
|
||||||
|
"reply_indicator.attachments": "{count, plural, one {# adjunto} other {# adjuntos}}",
|
||||||
"reply_indicator.cancel": "Cancelar",
|
"reply_indicator.cancel": "Cancelar",
|
||||||
"reply_indicator.poll": "Encuesta",
|
"reply_indicator.poll": "Encuesta",
|
||||||
"report.block": "Bloquear",
|
"report.block": "Bloquear",
|
||||||
|
|
|
@ -276,11 +276,18 @@
|
||||||
"firehose.remote": "Andra servrar",
|
"firehose.remote": "Andra servrar",
|
||||||
"follow_request.authorize": "Godkänn",
|
"follow_request.authorize": "Godkänn",
|
||||||
"follow_request.reject": "Avvisa",
|
"follow_request.reject": "Avvisa",
|
||||||
"follow_requests.unlocked_explanation": "Även om ditt konto inte är låst tror {domain} personalen att du kanske vill granska dessa följares förfrågningar manuellt.",
|
"follow_requests.unlocked_explanation": "Även om ditt konto inte är låst tror {domain}-personalen att du kanske vill granska dessa följares förfrågningar manuellt.",
|
||||||
|
"follow_suggestions.curated_suggestion": "Utvald av personalen",
|
||||||
"follow_suggestions.dismiss": "Visa inte igen",
|
"follow_suggestions.dismiss": "Visa inte igen",
|
||||||
|
"follow_suggestions.hints.featured": "Denna profil är handplockad av {domain}-teamet.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Denna profil är populär bland de personer du följer.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Denna profil är en av de mest följda på {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Denna profil har nyligen fått mycket uppmärksamhet på {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Denna profil liknar de profiler som du nyligen har följt.",
|
||||||
"follow_suggestions.personalized_suggestion": "Personligt förslag",
|
"follow_suggestions.personalized_suggestion": "Personligt förslag",
|
||||||
"follow_suggestions.popular_suggestion": "Populärt förslag",
|
"follow_suggestions.popular_suggestion": "Populärt förslag",
|
||||||
"follow_suggestions.view_all": "Visa alla",
|
"follow_suggestions.view_all": "Visa alla",
|
||||||
|
"follow_suggestions.who_to_follow": "Rekommenderade profiler",
|
||||||
"followed_tags": "Följda hashtags",
|
"followed_tags": "Följda hashtags",
|
||||||
"footer.about": "Om",
|
"footer.about": "Om",
|
||||||
"footer.directory": "Profilkatalog",
|
"footer.directory": "Profilkatalog",
|
||||||
|
@ -486,7 +493,9 @@
|
||||||
"onboarding.profile.note": "Bio",
|
"onboarding.profile.note": "Bio",
|
||||||
"onboarding.profile.note_hint": "Du kan @nämna andra personer eller #hashtags…",
|
"onboarding.profile.note_hint": "Du kan @nämna andra personer eller #hashtags…",
|
||||||
"onboarding.profile.save_and_continue": "Spara och fortsätt",
|
"onboarding.profile.save_and_continue": "Spara och fortsätt",
|
||||||
|
"onboarding.profile.title": "Konfiguration av profil",
|
||||||
"onboarding.profile.upload_avatar": "Ladda upp profilbild",
|
"onboarding.profile.upload_avatar": "Ladda upp profilbild",
|
||||||
|
"onboarding.profile.upload_header": "Ladda upp profilbanner",
|
||||||
"onboarding.share.lead": "Låt folk veta hur de kan hitta dig på Mastodon!",
|
"onboarding.share.lead": "Låt folk veta hur de kan hitta dig på Mastodon!",
|
||||||
"onboarding.share.message": "Jag är {username} på #Mastodon! Följ mig på {url}",
|
"onboarding.share.message": "Jag är {username} på #Mastodon! Följ mig på {url}",
|
||||||
"onboarding.share.next_steps": "Möjliga nästa steg:",
|
"onboarding.share.next_steps": "Möjliga nästa steg:",
|
||||||
|
@ -521,10 +530,14 @@
|
||||||
"poll_button.remove_poll": "Ta bort omröstning",
|
"poll_button.remove_poll": "Ta bort omröstning",
|
||||||
"privacy.change": "Ändra inläggsintegritet",
|
"privacy.change": "Ändra inläggsintegritet",
|
||||||
"privacy.direct.long": "Alla som nämns i inlägget",
|
"privacy.direct.long": "Alla som nämns i inlägget",
|
||||||
|
"privacy.direct.short": "Särskilda personer",
|
||||||
"privacy.private.long": "Endast dina följare",
|
"privacy.private.long": "Endast dina följare",
|
||||||
"privacy.private.short": "Följare",
|
"privacy.private.short": "Följare",
|
||||||
"privacy.public.long": "Alla på och utanför Mastodon",
|
"privacy.public.long": "Alla på och utanför Mastodon",
|
||||||
"privacy.public.short": "Publik",
|
"privacy.public.short": "Offentlig",
|
||||||
|
"privacy.unlisted.additional": "Detta fungerar precis som offentlig, förutom att inlägget inte visas i liveflöden eller hashtaggar, utforska eller Mastodon-sökning, även om du har valt detta för hela kontot.",
|
||||||
|
"privacy.unlisted.long": "Mindre beaktat av algoritmen",
|
||||||
|
"privacy.unlisted.short": "Offentlig (begränsad)",
|
||||||
"privacy_policy.last_updated": "Senast uppdaterad {date}",
|
"privacy_policy.last_updated": "Senast uppdaterad {date}",
|
||||||
"privacy_policy.title": "Integritetspolicy",
|
"privacy_policy.title": "Integritetspolicy",
|
||||||
"recommended": "Rekommenderas",
|
"recommended": "Rekommenderas",
|
||||||
|
|
|
@ -277,7 +277,13 @@
|
||||||
"follow_request.authorize": "อนุญาต",
|
"follow_request.authorize": "อนุญาต",
|
||||||
"follow_request.reject": "ปฏิเสธ",
|
"follow_request.reject": "ปฏิเสธ",
|
||||||
"follow_requests.unlocked_explanation": "แม้ว่าไม่มีการล็อคบัญชีของคุณ พนักงานของ {domain} คิดว่าคุณอาจต้องการตรวจทานคำขอติดตามจากบัญชีเหล่านี้ด้วยตนเอง",
|
"follow_requests.unlocked_explanation": "แม้ว่าไม่มีการล็อคบัญชีของคุณ พนักงานของ {domain} คิดว่าคุณอาจต้องการตรวจทานคำขอติดตามจากบัญชีเหล่านี้ด้วยตนเอง",
|
||||||
|
"follow_suggestions.curated_suggestion": "คัดสรรโดยพนักงาน",
|
||||||
"follow_suggestions.dismiss": "ไม่ต้องแสดงอีก",
|
"follow_suggestions.dismiss": "ไม่ต้องแสดงอีก",
|
||||||
|
"follow_suggestions.hints.featured": "โปรไฟล์นี้ได้รับการคัดสรรโดยทีม {domain}",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "โปรไฟล์นี้ได้รับความนิยมในหมู่ผู้คนที่คุณติดตาม",
|
||||||
|
"follow_suggestions.hints.most_followed": "โปรไฟล์นี้เป็นหนึ่งในโปรไฟล์ที่ได้รับการติดตามมากที่สุดใน {domain}",
|
||||||
|
"follow_suggestions.hints.most_interactions": "โปรไฟล์นี้เพิ่งได้รับความสนใจอย่างมากใน {domain}",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "โปรไฟล์นี้คล้ายกับโปรไฟล์ที่คุณได้ติดตามล่าสุด",
|
||||||
"follow_suggestions.personalized_suggestion": "ข้อเสนอแนะเฉพาะบุคคล",
|
"follow_suggestions.personalized_suggestion": "ข้อเสนอแนะเฉพาะบุคคล",
|
||||||
"follow_suggestions.popular_suggestion": "ข้อเสนอแนะยอดนิยม",
|
"follow_suggestions.popular_suggestion": "ข้อเสนอแนะยอดนิยม",
|
||||||
"follow_suggestions.view_all": "ดูทั้งหมด",
|
"follow_suggestions.view_all": "ดูทั้งหมด",
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" width="20"><path d="M96-144v-72h768v72H96Zm48-120v-264h96v264h-96Zm192 0v-456h96v456h-96Zm192 0v-336h96v336h-96Zm192 0v-552h96v552h-96Z"/></svg>
|
After Width: | Height: | Size: 221 B |
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" width="20"><path d="M96-144v-72h768v72H96Zm48-120v-264h96v264h-96Zm192 0v-456h96v456h-96Zm192 0v-336h96v336h-96Zm192 0v-552h96v552h-96Z"/></svg>
|
After Width: | Height: | Size: 221 B |
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" width="20"><path d="m291-240-51-51 189-189-189-189 51-51 189 189 189-189 51 51-189 189 189 189-51 51-189-189-189 189Z"/></svg>
|
After Width: | Height: | Size: 203 B |
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" width="20"><path d="m291-240-51-51 189-189-189-189 51-51 189 189 189-189 51 51-189 189 189 189-51 51-189-189-189 189Z"/></svg>
|
After Width: | Height: | Size: 203 B |
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" width="20"><path d="M612-516q25 0 42.5-17.5T672-576q0-25-17.5-42.5T612-636q-25 0-42.5 17.5T552-576q0 25 17.5 42.5T612-516Zm-264 0q25 0 42.5-17.5T408-576q0-25-17.5-42.5T348-636q-25 0-42.5 17.5T288-576q0 25 17.5 42.5T348-516Zm132 228q62 0 114.5-29t75.5-86H290q23 57 75.5 86T480-288Zm.276 192Q401-96 331-126q-70-30-122.5-82.5T126-330.958q-30-69.959-30-149.5Q96-560 126-629.5t82.5-122Q261-804 330.958-834q69.959-30 149.5-30Q560-864 629.5-834t122 82.5Q804-699 834-629.276q30 69.725 30 149Q864-401 834-331q-30 70-82.5 122.5T629.276-126q-69.725 30-149 30Z"/></svg>
|
After Width: | Height: | Size: 634 B |
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" width="20"><path d="M612-516q25 0 42.5-17.5T672-576q0-25-17.5-42.5T612-636q-25 0-42.5 17.5T552-576q0 25 17.5 42.5T612-516Zm-264 0q25 0 42.5-17.5T408-576q0-25-17.5-42.5T348-636q-25 0-42.5 17.5T288-576q0 25 17.5 42.5T348-516Zm132 228q60 0 110.5-31t79.5-84H290q29 53 79.5 84T480-288Zm.276 192Q401-96 331-126q-70-30-122.5-82.5T126-330.958q-30-69.959-30-149.5Q96-560 126-629.5t82.5-122Q261-804 330.958-834q69.959-30 149.5-30Q560-864 629.5-834t122 82.5Q804-699 834-629.276q30 69.725 30 149Q864-401 834-331q-30 70-82.5 122.5T629.276-126q-69.725 30-149 30ZM480-480Zm0 312q130 0 221-91t91-221q0-130-91-221t-221-91q-130 0-221 91t-91 221q0 130 91 221t221 91Z"/></svg>
|
After Width: | Height: | Size: 733 B |
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" width="20"><path d="M360-384h384L618-552l-90 120-66-88-102 136Zm-48 144q-29.7 0-50.85-21.15Q240-282.3 240-312v-480q0-29.7 21.15-50.85Q282.3-864 312-864h480q29.7 0 50.85 21.15Q864-821.7 864-792v480q0 29.7-21.15 50.85Q821.7-240 792-240H312ZM168-96q-29.7 0-50.85-21.15Q96-138.3 96-168v-552h72v552h552v72H168Z"/></svg>
|
After Width: | Height: | Size: 391 B |
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" width="20"><path d="M360-384h384L618-552l-90 120-66-88-102 136Zm-48 144q-29.7 0-50.85-21.15Q240-282.3 240-312v-480q0-29.7 21.15-50.85Q282.3-864 312-864h480q29.7 0 50.85 21.15Q864-821.7 864-792v480q0 29.7-21.15 50.85Q821.7-240 792-240H312Zm0-72h480v-480H312v480ZM168-96q-29.7 0-50.85-21.15Q96-138.3 96-168v-552h72v552h552v72H168Zm144-696v480-480Z"/></svg>
|
After Width: | Height: | Size: 431 B |
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" width="20"><path d="m48-144 432-720 432 720H48Zm431.789-120Q495-264 505.5-274.289q10.5-10.29 10.5-25.5Q516-315 505.711-325.5q-10.29-10.5-25.5-10.5Q465-336 454.5-325.711q-10.5 10.29-10.5 25.5Q444-285 454.289-274.5q10.29 10.5 25.5 10.5ZM444-384h72v-192h-72v192Z"/></svg>
|
After Width: | Height: | Size: 345 B |
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 -960 960 960" width="20"><path d="m48-144 432-720 432 720H48Zm127-72h610L480-724 175-216Zm304.789-48Q495-264 505.5-274.289q10.5-10.29 10.5-25.5Q516-315 505.711-325.5q-10.29-10.5-25.5-10.5Q465-336 454.5-325.711q-10.5 10.29-10.5 25.5Q444-285 454.289-274.5q10.29 10.5 25.5 10.5ZM444-384h72v-192h-72v192Zm36-86Z"/></svg>
|
After Width: | Height: | Size: 379 B |
|
@ -1 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M620-520q25 0 42.5-17.5T680-580q0-25-17.5-42.5T620-640q-25 0-42.5 17.5T560-580q0 25 17.5 42.5T620-520Zm-280 0q25 0 42.5-17.5T400-580q0-25-17.5-42.5T340-640q-25 0-42.5 17.5T280-580q0 25 17.5 42.5T340-520Zm140 260q68 0 123.5-38.5T684-400H276q25 63 80.5 101.5T480-260Zm0 180q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z"/></svg>
|
|
Before Width: | Height: | Size: 559 B |
|
@ -1 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M620-520q25 0 42.5-17.5T680-580q0-25-17.5-42.5T620-640q-25 0-42.5 17.5T560-580q0 25 17.5 42.5T620-520Zm-280 0q25 0 42.5-17.5T400-580q0-25-17.5-42.5T340-640q-25 0-42.5 17.5T280-580q0 25 17.5 42.5T340-520Zm140 260q68 0 123.5-38.5T684-400H276q25 63 80.5 101.5T480-260Zm0 180q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-400Zm0 320q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Z"/></svg>
|
|
Before Width: | Height: | Size: 656 B |
|
@ -669,12 +669,12 @@ body > [data-popper-placement] {
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-button.compose-form__upload__delete {
|
.icon-button.compose-form__upload__delete {
|
||||||
padding: 3px;
|
padding: 2px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
width: 18px;
|
width: 20px;
|
||||||
height: 18px;
|
height: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -720,12 +720,12 @@ body > [data-popper-placement] {
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-button {
|
.icon-button {
|
||||||
padding: 3px;
|
padding: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-button .icon {
|
.icon-button .icon {
|
||||||
width: 18px;
|
width: 20px;
|
||||||
height: 18px;
|
height: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -56,4 +56,4 @@ es:
|
||||||
webhook:
|
webhook:
|
||||||
attributes:
|
attributes:
|
||||||
events:
|
events:
|
||||||
invalid_permissions: no se pueden incluir eventos para los que no tienes derechos
|
invalid_permissions: no puede incluir eventos para los que no tienes permisos
|
||||||
|
|
|
@ -767,6 +767,7 @@ ca:
|
||||||
disabled: Per a ningú
|
disabled: Per a ningú
|
||||||
users: Per als usuaris locals en línia
|
users: Per als usuaris locals en línia
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: Assegureu-vos de tenir un equip de moderadors adient i actiu abans d'obrir l'alta de comptes al públic!
|
||||||
preamble: Controla qui pot crear un compte en el teu servidor.
|
preamble: Controla qui pot crear un compte en el teu servidor.
|
||||||
title: Registres
|
title: Registres
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -774,6 +775,7 @@ ca:
|
||||||
approved: Cal l’aprovació per a registrar-se
|
approved: Cal l’aprovació per a registrar-se
|
||||||
none: No es pot registrar ningú
|
none: No es pot registrar ningú
|
||||||
open: Qualsevol pot registrar-se
|
open: Qualsevol pot registrar-se
|
||||||
|
warning_hint: Recomanem utilitzar l'opció "Es requereix aprovació per a donar-se d'alta" si no teniu un equip de moderadors que puguin gestionar els enviaments de brossa o maliciosos en un temps raonable.
|
||||||
security:
|
security:
|
||||||
authorized_fetch: Requereix autenticació dels servidors federats
|
authorized_fetch: Requereix autenticació dels servidors federats
|
||||||
authorized_fetch_hint: Requerir l'autenticació dels servidors federats permet una aplicació més estricta dels bloqueigs a nivell d'usuari i a nivell de servidor. Tanmateix, això provoca una penalització del rendiment, redueix l'abast de les seves respostes i pot introduir problemes de compatibilitat amb alguns serveis federats. A més, això no impedirà que els actors dedicats busquin les teves publicacions i comptes públics.
|
authorized_fetch_hint: Requerir l'autenticació dels servidors federats permet una aplicació més estricta dels bloqueigs a nivell d'usuari i a nivell de servidor. Tanmateix, això provoca una penalització del rendiment, redueix l'abast de les seves respostes i pot introduir problemes de compatibilitat amb alguns serveis federats. A més, això no impedirà que els actors dedicats busquin les teves publicacions i comptes públics.
|
||||||
|
@ -966,6 +968,9 @@ ca:
|
||||||
title: Webhooks
|
title: Webhooks
|
||||||
webhook: Webhook
|
webhook: Webhook
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
|
auto_close_registrations:
|
||||||
|
body: A causa de la manca d'activitat recent dels moderadors, les altes a %{instance} han passat automàticament a necessitar una revisió manual, per tal d'evitar que %{instance} es faci servir com a plataforma de potencials mals actuants. Podeu revertir-ho a altes obertes en qualsevol moment.
|
||||||
|
subject: Les altes a %{instance} han passat automàticament a necessitar aprovació
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
delete_statuses: eliminar els seus tuts
|
delete_statuses: eliminar els seus tuts
|
||||||
|
|
|
@ -521,11 +521,14 @@ ckb:
|
||||||
all: بۆ هەموو کەسێک
|
all: بۆ هەموو کەسێک
|
||||||
disabled: بۆ هیچ کەسێک
|
disabled: بۆ هیچ کەسێک
|
||||||
users: بۆ چوونە ژوورەوەی بەکارهێنەرانی ناوخۆ
|
users: بۆ چوونە ژوورەوەی بەکارهێنەرانی ناوخۆ
|
||||||
|
registrations:
|
||||||
|
moderation_recommandation: تکایە دڵنیابە پێش ئەوەی ناو تۆمارکردن بۆ هەمووان بکەیتەوە، تیمێکی میانڕەوی گونجاو و کاردانەوەتان هەیە!
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
modes:
|
modes:
|
||||||
approved: پەسەندکردنی داواکراو بۆ ناوتۆمارکردن
|
approved: پەسەندکردنی داواکراو بۆ ناوتۆمارکردن
|
||||||
none: کەس ناتوانێت خۆی تۆمار بکات
|
none: کەس ناتوانێت خۆی تۆمار بکات
|
||||||
open: هەر کەسێک دەتوانێت خۆی تۆمار بکات
|
open: هەر کەسێک دەتوانێت خۆی تۆمار بکات
|
||||||
|
warning_hint: پێشنیار دەکەین "ڕەزامەندی پێویستە بۆ ناو تۆمارکردن" بەکاربهێنیت مەگەر دڵنیا بیت کە تیمی بەڕێوەبردنەکەت دەتوانێت لە کاتی خۆیدا مامەڵە لەگەڵ سپام و تۆمارکردنی زیانبەخشدا بکات.
|
||||||
site_uploads:
|
site_uploads:
|
||||||
delete: سڕینەوەی فایلی بارکراو
|
delete: سڕینەوەی فایلی بارکراو
|
||||||
destroyed_msg: بارکردنی ماڵپەڕ بە سەرکەوتوویی سڕدراوەتەوە!
|
destroyed_msg: بارکردنی ماڵپەڕ بە سەرکەوتوویی سڕدراوەتەوە!
|
||||||
|
|
|
@ -795,13 +795,15 @@ cs:
|
||||||
disabled: Nikomu
|
disabled: Nikomu
|
||||||
users: Přihlášeným místním uživatelům
|
users: Přihlášeným místním uživatelům
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: Před otevřením registrací všem se ujistěte, že máte vhodný a reaktivní moderační tým!
|
||||||
preamble: Mějte pod kontrolou, kdo může vytvořit účet na vašem serveru.
|
preamble: Mějte pod kontrolou, kdo může vytvořit účet na vašem serveru.
|
||||||
title: Registrace
|
title: Registrace
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
modes:
|
modes:
|
||||||
approved: Pro registraci je vyžadováno schválení
|
approved: Schválení požadované pro registraci
|
||||||
none: Nikdo se nemůže registrovat
|
none: Nikdo se nemůže registrovat
|
||||||
open: Kdokoliv se může registrovat
|
open: Kdokoliv se může registrovat
|
||||||
|
warning_hint: Doporučujeme použít "Schválení požadované pro registraci", pokud si nejste jistí, že váš moderační tým dokáže včas zpracovat spam a škodlivé registrace.
|
||||||
security:
|
security:
|
||||||
authorized_fetch: Vyžadovat autentizaci od federovaných serverů
|
authorized_fetch: Vyžadovat autentizaci od federovaných serverů
|
||||||
authorized_fetch_hint: Vyžadování ověřování pravosti od federalizovaných serverů umožňuje přísnější prosazování uživatelských i serverních bloků. K tomu však dochází k snížení výkonu, snižení dosah vašich odpovědí a můžou se zavést problémy s kompatibilitou s některými federálními službami. Kromě toho to nebude bránit oddaným uživatelům či robotům v načítání vašich veřejných příspěvků a účtů.
|
authorized_fetch_hint: Vyžadování ověřování pravosti od federalizovaných serverů umožňuje přísnější prosazování uživatelských i serverních bloků. K tomu však dochází k snížení výkonu, snižení dosah vašich odpovědí a můžou se zavést problémy s kompatibilitou s některými federálními službami. Kromě toho to nebude bránit oddaným uživatelům či robotům v načítání vašich veřejných příspěvků a účtů.
|
||||||
|
@ -1002,6 +1004,9 @@ cs:
|
||||||
title: Webhooky
|
title: Webhooky
|
||||||
webhook: Webhook
|
webhook: Webhook
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
|
auto_close_registrations:
|
||||||
|
body: Kvůli nedostatku nedávných aktivit od moderátorů byly registrace na %{instance} automaticky přepnuty na vyžadující manuální kontrolu. aby se zabránilo použití %{instance} jako platformy pro potenciálně škodlivých hráčů. Můžete ji kdykoliv přepnout zpět na otevřené registrace.
|
||||||
|
subject: Registrace pro %{instance} byly automaticky přepnuty na vyžadující schválení
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
delete_statuses: smazání jeho příspěvků
|
delete_statuses: smazání jeho příspěvků
|
||||||
|
|
|
@ -767,6 +767,7 @@ da:
|
||||||
disabled: Til ingen
|
disabled: Til ingen
|
||||||
users: Til indloggede lokale brugere
|
users: Til indloggede lokale brugere
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: Sørg for, at der er et tilstrækkeligt og reaktivt moderationsteam, før registrering åbnes for alle!
|
||||||
preamble: Styr, hvem der kan oprette en konto på serveren.
|
preamble: Styr, hvem der kan oprette en konto på serveren.
|
||||||
title: Registreringer
|
title: Registreringer
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -774,6 +775,7 @@ da:
|
||||||
approved: Tilmeldingsgodkendelse kræves
|
approved: Tilmeldingsgodkendelse kræves
|
||||||
none: Ingen kan tilmelde sig
|
none: Ingen kan tilmelde sig
|
||||||
open: Alle kan tilmelde sig
|
open: Alle kan tilmelde sig
|
||||||
|
warning_hint: Brug af "Godkendelse kræves ved tilmelding" anbefales, medmindre man er sikker på, at moderationsteamet kan håndtere spam og ondsindede registreringer i tide.
|
||||||
security:
|
security:
|
||||||
authorized_fetch: Kræver godkendelse fra fødererede servere
|
authorized_fetch: Kræver godkendelse fra fødererede servere
|
||||||
authorized_fetch_hint: Krav om godkendelse fra fødererede servere muliggør strengere håndhævelse af både bruger- og serverniveaublokeringer. Omkostningen er dog en ydelsesreduktion, reduceret udstrækning af dine svar samt potentielle kompatibilitetsproblemer med visse fødererede tjenester. Derudover vil dette ikke hindre målrettede aktører i at hente dine offentlige indlæg og konti.
|
authorized_fetch_hint: Krav om godkendelse fra fødererede servere muliggør strengere håndhævelse af både bruger- og serverniveaublokeringer. Omkostningen er dog en ydelsesreduktion, reduceret udstrækning af dine svar samt potentielle kompatibilitetsproblemer med visse fødererede tjenester. Derudover vil dette ikke hindre målrettede aktører i at hente dine offentlige indlæg og konti.
|
||||||
|
|
|
@ -767,6 +767,7 @@ de:
|
||||||
disabled: Niemandem
|
disabled: Niemandem
|
||||||
users: Für angemeldete lokale Benutzer*innen
|
users: Für angemeldete lokale Benutzer*innen
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: Bitte vergewissere dich, dass du ein geeignetes und reaktionsschnelles Moderationsteam hast, bevor du die Registrierungen uneingeschränkt zulässt!
|
||||||
preamble: Lege fest, wer auf deinem Server ein Konto erstellen darf.
|
preamble: Lege fest, wer auf deinem Server ein Konto erstellen darf.
|
||||||
title: Registrierungen
|
title: Registrierungen
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -774,6 +775,7 @@ de:
|
||||||
approved: Registrierung muss genehmigt werden
|
approved: Registrierung muss genehmigt werden
|
||||||
none: Niemand darf sich registrieren
|
none: Niemand darf sich registrieren
|
||||||
open: Alle können sich registrieren
|
open: Alle können sich registrieren
|
||||||
|
warning_hint: Wir empfehlen die Einstellung „Registrierung muss genehmigt werden“ zu verwenden, es sei denn, du bist dir sicher, dass dein Moderationsteam Spam und böswillige Registrierungen rechtzeitig bearbeiten kann.
|
||||||
security:
|
security:
|
||||||
authorized_fetch: Authentisierung von föderierten Servern erforderlich machen
|
authorized_fetch: Authentisierung von föderierten Servern erforderlich machen
|
||||||
authorized_fetch_hint: Das Anfordern einer Authentisierung von föderierten Servern ermöglicht ein strengeres Durchsetzen von Sperren sowohl auf Ebene der Benutzer*innen als auch des Servers. Allerdings ist das mit Leistungseinbußen verbunden, reduziert die Reichweite deiner Antworten und kann zu Kompatibilitätsproblemen mit einigen föderierten Diensten führen. Darüber hinaus wird das Abrufen deiner öffentlichen Beiträge und Konten durch spezialisierte Akteur*innen nicht verhindert.
|
authorized_fetch_hint: Das Anfordern einer Authentisierung von föderierten Servern ermöglicht ein strengeres Durchsetzen von Sperren sowohl auf Ebene der Benutzer*innen als auch des Servers. Allerdings ist das mit Leistungseinbußen verbunden, reduziert die Reichweite deiner Antworten und kann zu Kompatibilitätsproblemen mit einigen föderierten Diensten führen. Darüber hinaus wird das Abrufen deiner öffentlichen Beiträge und Konten durch spezialisierte Akteur*innen nicht verhindert.
|
||||||
|
@ -968,7 +970,7 @@ de:
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
auto_close_registrations:
|
auto_close_registrations:
|
||||||
body: Aufgrund fehlender Aktivität von Moderator*innen müssen neue Registrierungen auf %{instance} jetzt manuell genehmigt werden. Dies wurde automatisch umgestellt, damit %{instance} nicht als Plattform für Böswillige missbraucht werden kann. Du kannst jederzeit auf uneingeschränkte Registrierungen zurückwechseln.
|
body: Aufgrund fehlender Aktivität von Moderator*innen müssen neue Registrierungen auf %{instance} jetzt manuell genehmigt werden. Dies wurde automatisch umgestellt, damit %{instance} nicht als Plattform für Böswillige missbraucht werden kann. Du kannst jederzeit auf uneingeschränkte Registrierungen zurückwechseln.
|
||||||
subject: Registrierungen auf %{instance} erfordern jetzt eine manuelle Genehmigung (automatisch umgestellt)
|
subject: Registrierungen auf %{instance} müssen ab jetzt manuell genehmigt werden (automatisch umgestellt)
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
delete_statuses: das Löschen der Beiträge
|
delete_statuses: das Löschen der Beiträge
|
||||||
|
|
|
@ -77,6 +77,7 @@ sv:
|
||||||
subject: 'Mastodon: Autentisering med säkerhetsnycklar är inaktiverat'
|
subject: 'Mastodon: Autentisering med säkerhetsnycklar är inaktiverat'
|
||||||
title: Säkerhetsnycklar inaktiverade
|
title: Säkerhetsnycklar inaktiverade
|
||||||
webauthn_enabled:
|
webauthn_enabled:
|
||||||
|
explanation: Autentisering med säkerhetsnyckel har aktiverats för ditt konto.
|
||||||
extra: Din säkerhetsnyckel kan nu användas för inloggning.
|
extra: Din säkerhetsnyckel kan nu användas för inloggning.
|
||||||
subject: 'Mastodon: Autentisering med säkerhetsnyckel är aktiverat'
|
subject: 'Mastodon: Autentisering med säkerhetsnyckel är aktiverat'
|
||||||
title: Säkerhetsnycklar aktiverade
|
title: Säkerhetsnycklar aktiverade
|
||||||
|
|
|
@ -97,7 +97,7 @@ eu:
|
||||||
unknown: Sarbide token-a baliogabea da
|
unknown: Sarbide token-a baliogabea da
|
||||||
resource_owner_authenticator_not_configured: Baliabidearen jabearen bilaketak huts egin du Doorkeeper.configure.resource_owner_authenticator konfiguratu gabe dagoelako.
|
resource_owner_authenticator_not_configured: Baliabidearen jabearen bilaketak huts egin du Doorkeeper.configure.resource_owner_authenticator konfiguratu gabe dagoelako.
|
||||||
server_error: Autorizatze zerbitzariak eskaera betetzea eragotzi duen ustekabeko baldintza bat aurkitu du.
|
server_error: Autorizatze zerbitzariak eskaera betetzea eragotzi duen ustekabeko baldintza bat aurkitu du.
|
||||||
temporarily_unavailable: Autorizatze zerbitzariak ezin du orain eskaera bete une batez zerbitzariak gainezka egin duelako edo mantentze lanetan dagoelako.
|
temporarily_unavailable: Baimen-zerbitzariak ezin du orain eskaera bete, une batez zerbitzariak gainezka egin duelako edo mantentze lanetan dagoelako.
|
||||||
unauthorized_client: Bezeroak ez du eskaera hau metodo hau erabiliz egiteko baimenik.
|
unauthorized_client: Bezeroak ez du eskaera hau metodo hau erabiliz egiteko baimenik.
|
||||||
unsupported_grant_type: Autorizatze mota ez da onartzen autorizatze zerbitzarian.
|
unsupported_grant_type: Autorizatze mota ez da onartzen autorizatze zerbitzarian.
|
||||||
unsupported_response_type: Autorizatze zerbitzari honek ez du onartzen erantzun mota hau.
|
unsupported_response_type: Autorizatze zerbitzari honek ez du onartzen erantzun mota hau.
|
||||||
|
|
|
@ -767,6 +767,7 @@ es-AR:
|
||||||
disabled: A nadie
|
disabled: A nadie
|
||||||
users: A usuarios locales con sesiones abiertas
|
users: A usuarios locales con sesiones abiertas
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: Por favor, ¡asegurate de tener un equipo de moderación adecuado y reactivo antes de abrir los registros a todos!
|
||||||
preamble: Controlá quién puede crear una cuenta en tu servidor.
|
preamble: Controlá quién puede crear una cuenta en tu servidor.
|
||||||
title: Registros
|
title: Registros
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -774,6 +775,7 @@ es-AR:
|
||||||
approved: Se requiere aprobación para registrarse
|
approved: Se requiere aprobación para registrarse
|
||||||
none: Nadie puede registrarse
|
none: Nadie puede registrarse
|
||||||
open: Cualquiera puede registrarse
|
open: Cualquiera puede registrarse
|
||||||
|
warning_hint: Recomendamos el uso de la opción “Se requiere aprobación para registrarse”, a menos que estés seguro de que tu equipo de moderación puede manejar el spam y los registros maliciosos de forma oportuna.
|
||||||
security:
|
security:
|
||||||
authorized_fetch: Requiere autenticación de servidores federados
|
authorized_fetch: Requiere autenticación de servidores federados
|
||||||
authorized_fetch_hint: Requerir autenticación de servidores federados permite un cumplimiento más estricto tanto de los bloques de nivel de usuario como de nivel de servidor. Sin embargo, esto se produce a costa de una penalidad en el rendimiento, reduce el alcance de tus respuestas y puede introducir problemas de compatibilidad con algunos servicios federados. Además, esto no impedirá que actores dedicados obtengan tus mensajes y cuentas públicas.
|
authorized_fetch_hint: Requerir autenticación de servidores federados permite un cumplimiento más estricto tanto de los bloques de nivel de usuario como de nivel de servidor. Sin embargo, esto se produce a costa de una penalidad en el rendimiento, reduce el alcance de tus respuestas y puede introducir problemas de compatibilidad con algunos servicios federados. Además, esto no impedirá que actores dedicados obtengan tus mensajes y cuentas públicas.
|
||||||
|
|
|
@ -767,6 +767,7 @@ es-MX:
|
||||||
disabled: A nadie
|
disabled: A nadie
|
||||||
users: Para los usuarios locales que han iniciado sesión
|
users: Para los usuarios locales que han iniciado sesión
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: Por favor, ¡asegúrate de tener un equipo de moderación adecuado y reactivo antes de abrir los registros a todo el mundo!
|
||||||
preamble: Controla quién puede crear una cuenta en tu servidor.
|
preamble: Controla quién puede crear una cuenta en tu servidor.
|
||||||
title: Registros
|
title: Registros
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -774,6 +775,7 @@ es-MX:
|
||||||
approved: Se requiere aprobación para registrarse
|
approved: Se requiere aprobación para registrarse
|
||||||
none: Nadie puede registrarse
|
none: Nadie puede registrarse
|
||||||
open: Cualquiera puede registrarse
|
open: Cualquiera puede registrarse
|
||||||
|
warning_hint: Recomendamos el uso de “Se requiere aprobación para registrarse” a menos que estés seguro de que tu equipo de moderación puede manejar el spam y los registros maliciosos en un tiempo razonable.
|
||||||
security:
|
security:
|
||||||
authorized_fetch: Requerir autenticación de servidores federados
|
authorized_fetch: Requerir autenticación de servidores federados
|
||||||
authorized_fetch_hint: Requerir autenticación de servidores federados permite un cumplimiento más estricto tanto de los bloqueos a nivel de usuario como a nivel de servidor. Sin embargo, esto se produce a costa de una penalización en el rendimiento, reduce el alcance de tus respuestas y puede introducir problemas de compatibilidad con algunos servicios federados. Además, esto no impedirá que actores dedicados obtengan tus cuentas y publicaciones públicas.
|
authorized_fetch_hint: Requerir autenticación de servidores federados permite un cumplimiento más estricto tanto de los bloqueos a nivel de usuario como a nivel de servidor. Sin embargo, esto se produce a costa de una penalización en el rendimiento, reduce el alcance de tus respuestas y puede introducir problemas de compatibilidad con algunos servicios federados. Además, esto no impedirá que actores dedicados obtengan tus cuentas y publicaciones públicas.
|
||||||
|
@ -967,7 +969,7 @@ es-MX:
|
||||||
webhook: Webhook
|
webhook: Webhook
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
auto_close_registrations:
|
auto_close_registrations:
|
||||||
body: Debido a la falta de actividad reciente de los moderadores, se ha cambiado automáticamente el registro en %{instance} para requerir revisión manual, para evitar que la instancia %{instance} sea usada como plataforma para malos actores potenciales. Puedes volver a cambiarlo en cualquier momento para abrir de nuevo los registros.
|
body: Debido a la falta de moderadores activos, los registros en %{instance} han sido cambiados automáticamente para requerir revisión manual, para evitar que %{instance} se utilice potencialmente como plataforma por malos actores. Puedes volver a cambiarlo para abrir los registros en cualquier momento.
|
||||||
subject: Se ha cambiado automáticamente el registro de %{instance} para requerir aprobación
|
subject: Se ha cambiado automáticamente el registro de %{instance} para requerir aprobación
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
|
|
|
@ -31,7 +31,7 @@ es:
|
||||||
created_msg: "¡Nota de moderación creada con éxito!"
|
created_msg: "¡Nota de moderación creada con éxito!"
|
||||||
destroyed_msg: "¡Nota de moderación destruida con éxito!"
|
destroyed_msg: "¡Nota de moderación destruida con éxito!"
|
||||||
accounts:
|
accounts:
|
||||||
add_email_domain_block: Poner en lista negra el dominio del correo
|
add_email_domain_block: Bloquear el dominio del correo
|
||||||
approve: Aprobar
|
approve: Aprobar
|
||||||
approved_msg: La solicitud de registro de %{username} ha sido aprobada correctamente
|
approved_msg: La solicitud de registro de %{username} ha sido aprobada correctamente
|
||||||
are_you_sure: "¿Estás seguro?"
|
are_you_sure: "¿Estás seguro?"
|
||||||
|
@ -767,6 +767,7 @@ es:
|
||||||
disabled: A nadie
|
disabled: A nadie
|
||||||
users: Para los usuarios locales que han iniciado sesión
|
users: Para los usuarios locales que han iniciado sesión
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: Por favor, ¡asegúrate de tener un equipo de moderación adecuado y reactivo antes de abrir los registros a todo el mundo!
|
||||||
preamble: Controla quién puede crear una cuenta en tu servidor.
|
preamble: Controla quién puede crear una cuenta en tu servidor.
|
||||||
title: Registros
|
title: Registros
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -774,6 +775,7 @@ es:
|
||||||
approved: Se requiere aprobación para registrarse
|
approved: Se requiere aprobación para registrarse
|
||||||
none: Nadie puede registrarse
|
none: Nadie puede registrarse
|
||||||
open: Cualquiera puede registrarse
|
open: Cualquiera puede registrarse
|
||||||
|
warning_hint: Recomendamos el uso de “Se requiere aprobación para registrarse” a menos que estés seguro de que tu equipo de moderación puede manejar el spam y los registros maliciosos en un tiempo razonable.
|
||||||
security:
|
security:
|
||||||
authorized_fetch: Requerir autenticación de servidores federados
|
authorized_fetch: Requerir autenticación de servidores federados
|
||||||
authorized_fetch_hint: Requerir autenticación de servidores federados permite un cumplimiento más estricto tanto de los bloqueos a nivel de usuario como a nivel de servidor. Sin embargo, esto se produce a costa de una penalización en el rendimiento, reduce el alcance de tus respuestas y puede introducir problemas de compatibilidad con algunos servicios federados. Además, esto no impedirá que actores dedicados obtengan tus cuentas y publicaciones públicas.
|
authorized_fetch_hint: Requerir autenticación de servidores federados permite un cumplimiento más estricto tanto de los bloqueos a nivel de usuario como a nivel de servidor. Sin embargo, esto se produce a costa de una penalización en el rendimiento, reduce el alcance de tus respuestas y puede introducir problemas de compatibilidad con algunos servicios federados. Además, esto no impedirá que actores dedicados obtengan tus cuentas y publicaciones públicas.
|
||||||
|
@ -967,7 +969,7 @@ es:
|
||||||
webhook: Webhook
|
webhook: Webhook
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
auto_close_registrations:
|
auto_close_registrations:
|
||||||
body: Debido a la falta de actividad reciente de los moderadores, se ha cambiado automáticamente el registro en %{instance} para requerir revisión manual, para evitar que la instancia %{instance} sea usada como plataforma para malos actores potenciales. Puedes volver a cambiarlo en cualquier momento para abrir de nuevo los registros.
|
body: Debido a la falta de moderadores activos, los registros en %{instance} han sido cambiados automáticamente para requerir revisión manual, para evitar que %{instance} se utilice potencialmente como plataforma por malos actores. Puedes volver a cambiarlo para abrir los registros en cualquier momento.
|
||||||
subject: Se ha cambiado automáticamente el registro de %{instance} para requerir aprobación
|
subject: Se ha cambiado automáticamente el registro de %{instance} para requerir aprobación
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
|
|
|
@ -597,7 +597,7 @@ eu:
|
||||||
silence_description_html: Kontua soilik honen jarraitzaile edo espresuki bilatzen dutenentzat izango da ikusgarri, kontuaren irisgarritasuna gogorki mugatzen delarik.
|
silence_description_html: Kontua soilik honen jarraitzaile edo espresuki bilatzen dutenentzat izango da ikusgarri, kontuaren irisgarritasuna gogorki mugatzen delarik.
|
||||||
suspend_description_html: Kontua bera eta honen edukiak eskuraezinak izango dira, eta azkenean, ezabatuak. Kontu honekin erlazionatzea ezinezkoa izango da. Prozesua 30 egunez itzulgarria izango da. Kontu honen aurkako txosten guztiak baztertuko lirateke.
|
suspend_description_html: Kontua bera eta honen edukiak eskuraezinak izango dira, eta azkenean, ezabatuak. Kontu honekin erlazionatzea ezinezkoa izango da. Prozesua 30 egunez itzulgarria izango da. Kontu honen aurkako txosten guztiak baztertuko lirateke.
|
||||||
actions_description_html: Erabaki txosten hau konpontzeko ze ekintza hartu. Salatutako kontuaren aurka zigor ekintza bat hartzen baduzu, eposta jakinarazpen bat bidaliko zaie, <strong>Spam</strong> kategoria hautatzean ezik.
|
actions_description_html: Erabaki txosten hau konpontzeko ze ekintza hartu. Salatutako kontuaren aurka zigor ekintza bat hartzen baduzu, eposta jakinarazpen bat bidaliko zaie, <strong>Spam</strong> kategoria hautatzean ezik.
|
||||||
actions_description_remote_html: Txosten honi konponbidea aurkitzeko zein ekintza egin hautatu. Hau soilik <strong>zure</strong> zerbitzaria kontu honekin nola komunikatu eta bere edukia nola maneiatzeko da.
|
actions_description_remote_html: Hautatu txosten honi konponbidea aurkitzeko zein neurri hartu. Hau soilik <strong>zure</strong> zerbitzaria urruneko kontu honekin nola komunikatu eta bere edukia nola maneiatzeko da.
|
||||||
add_to_report: Gehitu gehiago txostenera
|
add_to_report: Gehitu gehiago txostenera
|
||||||
are_you_sure: Ziur zaude?
|
are_you_sure: Ziur zaude?
|
||||||
assign_to_self: Esleitu niri
|
assign_to_self: Esleitu niri
|
||||||
|
@ -1847,7 +1847,7 @@ eu:
|
||||||
explanation: Hona hasteko aholku batzuk
|
explanation: Hona hasteko aholku batzuk
|
||||||
final_action: Hasi bidalketak argitaratzen
|
final_action: Hasi bidalketak argitaratzen
|
||||||
final_step: 'Hasi argitaratzen! Jarraitzailerik ez baduzu ere zure bidalketa publikoak besteek ikusi ditzakete, esaterako denbora-lerro lokalean eta traoletan. Zure burua aurkeztu nahi baduzu #aurkezpenak traola erabili zenezake.'
|
final_step: 'Hasi argitaratzen! Jarraitzailerik ez baduzu ere zure bidalketa publikoak besteek ikusi ditzakete, esaterako denbora-lerro lokalean eta traoletan. Zure burua aurkeztu nahi baduzu #aurkezpenak traola erabili zenezake.'
|
||||||
full_handle: Zure erabiltzaile-izen osoa
|
full_handle: Helbide osoa
|
||||||
full_handle_hint: Hau da lagunei esango zeniekeena beste zerbitzari batetik zu jarraitzeko edo zuri mezuak bidaltzeko.
|
full_handle_hint: Hau da lagunei esango zeniekeena beste zerbitzari batetik zu jarraitzeko edo zuri mezuak bidaltzeko.
|
||||||
subject: Ongi etorri Mastodon-era
|
subject: Ongi etorri Mastodon-era
|
||||||
title: Ongi etorri, %{name}!
|
title: Ongi etorri, %{name}!
|
||||||
|
|
|
@ -767,6 +767,7 @@ gl:
|
||||||
disabled: Para ninguén
|
disabled: Para ninguén
|
||||||
users: Para usuarias locais conectadas
|
users: Para usuarias locais conectadas
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: Por favor, pon interese en crear un equipo de moderación competente e reactivo antes de permitir que calquera poida crear unha conta!
|
||||||
preamble: Xestiona quen pode crear unha conta no teu servidor.
|
preamble: Xestiona quen pode crear unha conta no teu servidor.
|
||||||
title: Rexistros
|
title: Rexistros
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -774,6 +775,7 @@ gl:
|
||||||
approved: Precisa aprobación para rexistrarse
|
approved: Precisa aprobación para rexistrarse
|
||||||
none: Rexistro pechado
|
none: Rexistro pechado
|
||||||
open: Rexistro aberto
|
open: Rexistro aberto
|
||||||
|
warning_hint: Recomendamos utilizar "Requerir aprobación para o rexistro" a menos que confíes en que o equipo de moderación é quen de xestionar áxilmente o spam e a creación de contas maliciosas.
|
||||||
security:
|
security:
|
||||||
authorized_fetch: Require autenticación desde os servidores federados
|
authorized_fetch: Require autenticación desde os servidores federados
|
||||||
authorized_fetch_hint: Ao requerir autenticación desde os servidores federados activas un reforzamento das políticas de bloqueo a nivel usuaria e nivel servidor. Este proceder ten un custo no rendemento, reducindo o alcance das túas respostas e podería introducir problemas de compatibilidade con algúns servizos federados. Ademais, non evitará que contas con tal propósito vexan as túas publicacións públicas e contas.
|
authorized_fetch_hint: Ao requerir autenticación desde os servidores federados activas un reforzamento das políticas de bloqueo a nivel usuaria e nivel servidor. Este proceder ten un custo no rendemento, reducindo o alcance das túas respostas e podería introducir problemas de compatibilidade con algúns servizos federados. Ademais, non evitará que contas con tal propósito vexan as túas publicacións públicas e contas.
|
||||||
|
@ -966,6 +968,9 @@ gl:
|
||||||
title: Webhooks
|
title: Webhooks
|
||||||
webhook: Webhook
|
webhook: Webhook
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
|
auto_close_registrations:
|
||||||
|
body: Debido á falta de actividade recente de moderación, a creación de contas en %{instance} mudou ao modo de revisión manual das solicitudes, para evitar que %{instance} sexa usada como plataforma por actores maliciosos. Podes volver ao rexistro aberto en calquera momento.
|
||||||
|
subject: O modo de creación de contas en %{instance} mudou automáticamente a aprobación manual
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
delete_statuses: borrar as súas publicacións
|
delete_statuses: borrar as súas publicacións
|
||||||
|
|
|
@ -1002,6 +1002,9 @@ he:
|
||||||
title: התליות רשת
|
title: התליות רשת
|
||||||
webhook: התליית רשת
|
webhook: התליית רשת
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
|
auto_close_registrations:
|
||||||
|
body: עקב חוסר פעילות מנחים, הרשמות אל %{instance} עברו אוטומטית למצב אישור ידני, כדי למנוע משרת %{instance} לשמש לכר פעילות לגורמים עוינים. ניתן תמיד לחזור להרשמה פתוחה.
|
||||||
|
subject: הרשמות אל %{instance} הועברו אוטומטית לדרישה לאישור ידני
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
delete_statuses: כדי למחוק את הודעותיהם
|
delete_statuses: כדי למחוק את הודעותיהם
|
||||||
|
|
|
@ -767,6 +767,7 @@ hu:
|
||||||
disabled: Senkinek
|
disabled: Senkinek
|
||||||
users: Bejelentkezett helyi felhasználóknak
|
users: Bejelentkezett helyi felhasználóknak
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: Győződjünk meg arról, hogy megfelelő és reaktív moderátor csapatunk van, mielőtt mindenki számára megnyitjuk a regisztrációt!
|
||||||
preamble: Szabályozd, hogy ki hozhat létre fiókot a kiszolgálón.
|
preamble: Szabályozd, hogy ki hozhat létre fiókot a kiszolgálón.
|
||||||
title: Regisztrációk
|
title: Regisztrációk
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -774,6 +775,7 @@ hu:
|
||||||
approved: A regisztráció engedélyhez kötött
|
approved: A regisztráció engedélyhez kötött
|
||||||
none: Senki sem regisztrálhat
|
none: Senki sem regisztrálhat
|
||||||
open: Bárki regisztrálhat
|
open: Bárki regisztrálhat
|
||||||
|
warning_hint: Célszerű a "Jóváhagyás szükséges a regisztrációhoz” lehetőség használata, hkivéve, ha biztos vagyunk abban, hogy a moderátor csapat időben tudja kezelni a szemetet és a rosszindulatú regisztrációkat.
|
||||||
security:
|
security:
|
||||||
authorized_fetch: Hitelesítés szükséges a föderációs kiszolgálóktól
|
authorized_fetch: Hitelesítés szükséges a föderációs kiszolgálóktól
|
||||||
authorized_fetch_hint: A föderációs szerverek hitelesítésének szükségessége lehetővé teszi mind a felhasználói mind a szerver szintű blokkok szigorúbb végrehajtását. Ez azonban a teljesítménybüntetés árán jár, csökkenti a válaszok elérhetőségét és kompatibilitási problémákat vethet fel egyes föderációs szolgáltatásokkal. Emellett ez nem akadályozza meg a dedikált szereplőket abban, hogy nyilvános bejegyzéseiket és fiókjaikat letöltsék.
|
authorized_fetch_hint: A föderációs szerverek hitelesítésének szükségessége lehetővé teszi mind a felhasználói mind a szerver szintű blokkok szigorúbb végrehajtását. Ez azonban a teljesítménybüntetés árán jár, csökkenti a válaszok elérhetőségét és kompatibilitási problémákat vethet fel egyes föderációs szolgáltatásokkal. Emellett ez nem akadályozza meg a dedikált szereplőket abban, hogy nyilvános bejegyzéseiket és fiókjaikat letöltsék.
|
||||||
|
@ -967,8 +969,8 @@ hu:
|
||||||
webhook: Webhook
|
webhook: Webhook
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
auto_close_registrations:
|
auto_close_registrations:
|
||||||
body: A közelmúlt moderátori tevékenységnek hiánya miatt %{instance} regisztráció automatikusan kézi ellenőrzést igénylőre vált, hogy megakadályozz, hogy a %{instance} platformot potenciális rossz szereplők számára használhasson. Bármikor visszakapcsolhatjuk a nyitott regisztrációkhoz.
|
body: A közelmúlt moderátori tevékenységének hiánya miatt a %{instance} regisztrációja automatikusan kézi ellenőrzést igénylőre váltott azért, hogy megakadályozzuk, hogy a %{instance} potenciálisan rossz szándékú szereplők számára szolgálhasson platformként. A nyílt regisztrációt bármikor visszakapcsolhatod.
|
||||||
subject: "%{instance} regisztráció automatikusan átállt jóváhagyást igénylőre."
|
subject: "%{instance} regisztrációja automatikusan átállt jóváhagyást igénylőre"
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
delete_statuses: bejegyzések törléséről
|
delete_statuses: bejegyzések törléséről
|
||||||
|
|
|
@ -767,6 +767,7 @@ it:
|
||||||
disabled: A nessuno
|
disabled: A nessuno
|
||||||
users: Agli utenti locali connessi
|
users: Agli utenti locali connessi
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: Assicurati di avere un team di moderazione adeguato e reattivo prima di aprire le registrazioni a tutti!
|
||||||
preamble: Controlla chi può creare un account sul tuo server.
|
preamble: Controlla chi può creare un account sul tuo server.
|
||||||
title: Registrazioni
|
title: Registrazioni
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -774,6 +775,7 @@ it:
|
||||||
approved: Approvazione richiesta per le iscrizioni
|
approved: Approvazione richiesta per le iscrizioni
|
||||||
none: Nessuno può iscriversi
|
none: Nessuno può iscriversi
|
||||||
open: Chiunque può iscriversi
|
open: Chiunque può iscriversi
|
||||||
|
warning_hint: Ti consigliamo di utilizzare “Approvazione richiesta per la registrazione” a meno che tu non sia sicuro che il tuo team di moderazione possa gestire lo spam e le registrazioni dannose in modo tempestivo.
|
||||||
security:
|
security:
|
||||||
authorized_fetch: Richiede l'autenticazione dai server federati
|
authorized_fetch: Richiede l'autenticazione dai server federati
|
||||||
authorized_fetch_hint: La richiesta di autenticazione da server federati consente un'applicazione più rigorosa dei blocchi sia a livello di utente che a livello di server. Tuttavia, ciò comporta una riduzione delle prestazioni, riduce la portata delle tue risposte e potrebbe introdurre problemi di compatibilità con alcuni servizi federati. Inoltre, ciò non impedirà agli attori dedicati di recuperare i tuoi post pubblici e account.
|
authorized_fetch_hint: La richiesta di autenticazione da server federati consente un'applicazione più rigorosa dei blocchi sia a livello di utente che a livello di server. Tuttavia, ciò comporta una riduzione delle prestazioni, riduce la portata delle tue risposte e potrebbe introdurre problemi di compatibilità con alcuni servizi federati. Inoltre, ciò non impedirà agli attori dedicati di recuperare i tuoi post pubblici e account.
|
||||||
|
|
|
@ -753,6 +753,7 @@ ja:
|
||||||
disabled: 誰にも許可しない
|
disabled: 誰にも許可しない
|
||||||
users: ログイン済みローカルユーザーのみ許可
|
users: ログイン済みローカルユーザーのみ許可
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: 登録受付を開始する前に、迅速かつ適切にモデレーションを行うチームを編成しましょう!
|
||||||
preamble: あなたのサーバー上でアカウントを作成できるユーザーを制御します。
|
preamble: あなたのサーバー上でアカウントを作成できるユーザーを制御します。
|
||||||
title: アカウント作成
|
title: アカウント作成
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -760,6 +761,7 @@ ja:
|
||||||
approved: 登録には承認が必要
|
approved: 登録には承認が必要
|
||||||
none: 誰にも許可しない
|
none: 誰にも許可しない
|
||||||
open: 誰でも登録可
|
open: 誰でも登録可
|
||||||
|
warning_hint: モデレーションチームがスパムや悪意のある登録を迅速に処理できる自信がない限り、サインアップを承認制にすることをお勧めします。
|
||||||
security:
|
security:
|
||||||
authorized_fetch: 連合サーバーによる署名なしでの情報取得を拒否する
|
authorized_fetch: 連合サーバーによる署名なしでの情報取得を拒否する
|
||||||
authorized_fetch_hint: ほかの連合サーバーから受け付けるリクエストに署名を必須にすることで、ユーザーによるブロックおよびドメインブロック両方の効果をより強力にします。ただし連合の処理コストが増えてパフォーマンス面で不利になるほか、このサーバーから送られた反応が届く範囲が狭まったり、連合における互換性の問題を招く可能性もあります。また、この機能は公開投稿やプロフィールへのアクセスをブロックした相手から完全に遮断できるものではありません。
|
authorized_fetch_hint: ほかの連合サーバーから受け付けるリクエストに署名を必須にすることで、ユーザーによるブロックおよびドメインブロック両方の効果をより強力にします。ただし連合の処理コストが増えてパフォーマンス面で不利になるほか、このサーバーから送られた反応が届く範囲が狭まったり、連合における互換性の問題を招く可能性もあります。また、この機能は公開投稿やプロフィールへのアクセスをブロックした相手から完全に遮断できるものではありません。
|
||||||
|
|
|
@ -589,11 +589,13 @@ kab:
|
||||||
'604800': 1 umalas
|
'604800': 1 umalas
|
||||||
'86400': 1 wass
|
'86400': 1 wass
|
||||||
expires_in_prompt: Werǧin
|
expires_in_prompt: Werǧin
|
||||||
|
generate: Slaled aseɣwen n uɛraḍ
|
||||||
invited_by: 'Tettwaɛraḍeḍ s ɣur:'
|
invited_by: 'Tettwaɛraḍeḍ s ɣur:'
|
||||||
max_uses:
|
max_uses:
|
||||||
one: 1 uuseqdec
|
one: 1 uuseqdec
|
||||||
other: "%{count} yiseqdac"
|
other: "%{count} yiseqdac"
|
||||||
max_uses_prompt: Ulac talast
|
max_uses_prompt: Ulac talast
|
||||||
|
prompt: Slaled rnu bḍu assaɣen d wiyaḍ akken ad kecmen ɣer uqeddac-a
|
||||||
table:
|
table:
|
||||||
expires_at: Ad ifat di
|
expires_at: Ad ifat di
|
||||||
title: Ɛreḍ-d kra n yimdanen
|
title: Ɛreḍ-d kra n yimdanen
|
||||||
|
|
|
@ -767,6 +767,7 @@ nl:
|
||||||
disabled: Aan niemand
|
disabled: Aan niemand
|
||||||
users: Aan ingelogde lokale gebruikers
|
users: Aan ingelogde lokale gebruikers
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: Zorg ervoor dat je een adequaat en responsief moderatieteam hebt voordat je registraties voor iedereen openstelt!
|
||||||
preamble: Toezicht houden op wie een account op deze server kan registreren.
|
preamble: Toezicht houden op wie een account op deze server kan registreren.
|
||||||
title: Registraties
|
title: Registraties
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -774,6 +775,7 @@ nl:
|
||||||
approved: Goedkeuring vereist om te kunnen registreren
|
approved: Goedkeuring vereist om te kunnen registreren
|
||||||
none: Niemand kan zich registreren
|
none: Niemand kan zich registreren
|
||||||
open: Iedereen kan zich registreren
|
open: Iedereen kan zich registreren
|
||||||
|
warning_hint: We raden je aan om “Goedkeuring vereist om te kunnen registreren” te gebruiken, tenzij je er zeker van bent dat jouw moderatieteam spam en kwaadwillende registraties tijdig kan afhandelen.
|
||||||
security:
|
security:
|
||||||
authorized_fetch: Verificatie van gefedeerde servers vereisen
|
authorized_fetch: Verificatie van gefedeerde servers vereisen
|
||||||
authorized_fetch_hint: Verificatie vereisen van gefedereerde servers maakt een striktere handhaving van blokkades op gebruikersniveau en serverniveau mogelijk. Dit gaat echter ten koste van de prestaties, vermindert het bereik van je reacties en kan compatibiliteitsproblemen met sommige gefedereerde services opleveren. Bovendien zal dit niet voorkomen dat personen met slechte bedoelingen je openbare berichten en accounts kunnen ophalen.
|
authorized_fetch_hint: Verificatie vereisen van gefedereerde servers maakt een striktere handhaving van blokkades op gebruikersniveau en serverniveau mogelijk. Dit gaat echter ten koste van de prestaties, vermindert het bereik van je reacties en kan compatibiliteitsproblemen met sommige gefedereerde services opleveren. Bovendien zal dit niet voorkomen dat personen met slechte bedoelingen je openbare berichten en accounts kunnen ophalen.
|
||||||
|
|
|
@ -795,6 +795,7 @@ pl:
|
||||||
disabled: Nikomu
|
disabled: Nikomu
|
||||||
users: Zalogowanym lokalnym użytkownikom
|
users: Zalogowanym lokalnym użytkownikom
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: Upewnij się, że masz adekwatny i szybko reagujący zespół moderacyjny przed otwarciem rejestracji!
|
||||||
preamble: Kontroluj, kto może utworzyć konto na Twoim serwerze.
|
preamble: Kontroluj, kto może utworzyć konto na Twoim serwerze.
|
||||||
title: Rejestracje
|
title: Rejestracje
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -802,6 +803,7 @@ pl:
|
||||||
approved: Przyjęcie jest wymagane do rejestracji
|
approved: Przyjęcie jest wymagane do rejestracji
|
||||||
none: Nikt nie może się zarejestrować
|
none: Nikt nie może się zarejestrować
|
||||||
open: Każdy może się zarejestrować
|
open: Każdy może się zarejestrować
|
||||||
|
warning_hint: Polecamy "Przyjęcie jest wymagane do rejestracji" chyba że masz pewność, że twój zespół moderacyjny może szybko obsłużyć spam i złośliwe rejestracje.
|
||||||
security:
|
security:
|
||||||
authorized_fetch: Wymagaj uwierzytelnienia od sfederowanych serwerów
|
authorized_fetch: Wymagaj uwierzytelnienia od sfederowanych serwerów
|
||||||
authorized_fetch_hint: Wymaganie uwierzytelnienia ze sfederowanych serwerów pozwala na ściślejsze wymuszanie bloków z poziomu użytkowników i serwera, ale jest wolniejsze, redukuje zasięg odpowiedzi, i może być niekompatybilne z niektórymi sfederowanymi usługami. Nie chroni również publicznych kont i wpisów przed oddanymi użytkownikami.
|
authorized_fetch_hint: Wymaganie uwierzytelnienia ze sfederowanych serwerów pozwala na ściślejsze wymuszanie bloków z poziomu użytkowników i serwera, ale jest wolniejsze, redukuje zasięg odpowiedzi, i może być niekompatybilne z niektórymi sfederowanymi usługami. Nie chroni również publicznych kont i wpisów przed oddanymi użytkownikami.
|
||||||
|
|
|
@ -767,6 +767,7 @@ pt-PT:
|
||||||
disabled: Para ninguém
|
disabled: Para ninguém
|
||||||
users: Para utilizadores locais que se encontrem autenticados
|
users: Para utilizadores locais que se encontrem autenticados
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: Por favor, certifique-se de que você tem uma equipe de moderação adequada e reativa antes de abrir os registros para todos!
|
||||||
preamble: Controle quem pode criar uma conta no seu servidor.
|
preamble: Controle quem pode criar uma conta no seu servidor.
|
||||||
title: Inscrições
|
title: Inscrições
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -774,6 +775,7 @@ pt-PT:
|
||||||
approved: Registo sujeito a aprovação
|
approved: Registo sujeito a aprovação
|
||||||
none: Ninguém se pode registar
|
none: Ninguém se pode registar
|
||||||
open: Qualquer pessoa se pode registar
|
open: Qualquer pessoa se pode registar
|
||||||
|
warning_hint: Recomendamos o uso de "Aprovação necessária para se cadastrar", a menos que você esteja confiante de que sua equipe de moderação pode lidar com spam e registros maliciosos em tempo hábil.
|
||||||
security:
|
security:
|
||||||
authorized_fetch: Exigir autenticação de servidores federados
|
authorized_fetch: Exigir autenticação de servidores federados
|
||||||
authorized_fetch_hint: Exigir autenticação de servidores federados permite uma aplicação mais rigorosa de bloqueios tanto ao nível do utilizador como do servidor. No entanto, isso é feito à custa de uma diminuição de desempenho, reduz o alcance das suas respostas e pode introduzir problemas de compatibilidade com alguns serviços federados. Além disso, isso não impede os atores mais empenhados de aceder às suas publicações e contas públicas.
|
authorized_fetch_hint: Exigir autenticação de servidores federados permite uma aplicação mais rigorosa de bloqueios tanto ao nível do utilizador como do servidor. No entanto, isso é feito à custa de uma diminuição de desempenho, reduz o alcance das suas respostas e pode introduzir problemas de compatibilidade com alguns serviços federados. Além disso, isso não impede os atores mais empenhados de aceder às suas publicações e contas públicas.
|
||||||
|
|
|
@ -55,6 +55,7 @@ kab:
|
||||||
data: Isefka
|
data: Isefka
|
||||||
display_name: Isem ara d-yettwaskanen
|
display_name: Isem ara d-yettwaskanen
|
||||||
email: Tansa imayl
|
email: Tansa imayl
|
||||||
|
expires_in: Ad yemmet
|
||||||
header: Ixef
|
header: Ixef
|
||||||
locale: Tutlayt n wegrudem
|
locale: Tutlayt n wegrudem
|
||||||
max_uses: Amḍan afellay n iseqdacen
|
max_uses: Amḍan afellay n iseqdacen
|
||||||
|
|
|
@ -634,6 +634,7 @@ sk:
|
||||||
approved: Pre registráciu je nutné povolenie
|
approved: Pre registráciu je nutné povolenie
|
||||||
none: Nikto sa nemôže registrovať
|
none: Nikto sa nemôže registrovať
|
||||||
open: Ktokoľvek sa môže zaregistrovať
|
open: Ktokoľvek sa môže zaregistrovať
|
||||||
|
warning_hint: Odporúčame používať "Pre registráciu je potrebné schválenie", pokiaľ si niesi istý/á, že tvoj moderovací tím vie zvládnuť spam a záškodné registrácie včas.
|
||||||
title: Nastavenia servera
|
title: Nastavenia servera
|
||||||
site_uploads:
|
site_uploads:
|
||||||
delete: Vymaž nahratý súbor
|
delete: Vymaž nahratý súbor
|
||||||
|
@ -739,6 +740,8 @@ sk:
|
||||||
enabled: Aktívne
|
enabled: Aktívne
|
||||||
status: Stav
|
status: Stav
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
|
auto_close_registrations:
|
||||||
|
subject: Registrácie na %{instance} boli automaticky prepnuté na vyžadujúce schválenie
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
none: varovanie
|
none: varovanie
|
||||||
|
|
|
@ -795,6 +795,7 @@ sl:
|
||||||
disabled: Nikomur
|
disabled: Nikomur
|
||||||
users: Prijavljenim krajevnim uporabnikom
|
users: Prijavljenim krajevnim uporabnikom
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: Preden prijave odprete za vse poskrbite, da imate v ekipi moderatorjev zadosti aktivnih članov.
|
||||||
preamble: Nadzirajte, kdo lahko ustvari račun na vašem strežniku.
|
preamble: Nadzirajte, kdo lahko ustvari račun na vašem strežniku.
|
||||||
title: Registracije
|
title: Registracije
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -802,6 +803,7 @@ sl:
|
||||||
approved: Potrebna je odobritev za prijavo
|
approved: Potrebna je odobritev za prijavo
|
||||||
none: Nihče se ne more prijaviti
|
none: Nihče se ne more prijaviti
|
||||||
open: Vsakdo se lahko prijavi
|
open: Vsakdo se lahko prijavi
|
||||||
|
warning_hint: Priporočamo uporabo možnosti »Potrebna je odobritev za prijavo«, razen če ste gotovi, da se bo vaša ekipa moderatorjev res zmožna hitro odzvati na neželene vsebine in škodoželjne prijave.
|
||||||
security:
|
security:
|
||||||
authorized_fetch: Od drugih strežnikov v federaciji zahtevaj overitev pristnosti
|
authorized_fetch: Od drugih strežnikov v federaciji zahtevaj overitev pristnosti
|
||||||
authorized_fetch_hint: Zahtevanje overitve pristnosti od drugih strežnikov v federaciji omogoči strožje uveljavljanje uporabniških in strežniških blokad. Vendar je cena za to počasnejše delovanje, zmanjšanje dosega vaših odgovorov in morebitne težave z združljivostjo z nekaterimi storitvami v federaciji. Poleg tega to odločenim akterjem ne bo preprečilo pridobivanja vaših javnih objav in računov.
|
authorized_fetch_hint: Zahtevanje overitve pristnosti od drugih strežnikov v federaciji omogoči strožje uveljavljanje uporabniških in strežniških blokad. Vendar je cena za to počasnejše delovanje, zmanjšanje dosega vaših odgovorov in morebitne težave z združljivostjo z nekaterimi storitvami v federaciji. Poleg tega to odločenim akterjem ne bo preprečilo pridobivanja vaših javnih objav in računov.
|
||||||
|
|
|
@ -767,6 +767,7 @@ tr:
|
||||||
disabled: Hiç kimseye
|
disabled: Hiç kimseye
|
||||||
users: Oturum açan yerel kullanıcılara
|
users: Oturum açan yerel kullanıcılara
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: Lütfen kayıtları herkese açmadan önce yeterli ve duyarlı bir denetleyici ekibine sahip olduğunuzdan emin olun!
|
||||||
preamble: Sunucunuzda kimin hesap oluşturabileceğini denetleyin.
|
preamble: Sunucunuzda kimin hesap oluşturabileceğini denetleyin.
|
||||||
title: Kayıtlar
|
title: Kayıtlar
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -774,6 +775,7 @@ tr:
|
||||||
approved: Kayıt için onay gerekli
|
approved: Kayıt için onay gerekli
|
||||||
none: Hiç kimse kayıt olamaz
|
none: Hiç kimse kayıt olamaz
|
||||||
open: Herkes kaydolabilir
|
open: Herkes kaydolabilir
|
||||||
|
warning_hint: Denetleyici ekibinizin istenmeyen ve kötü niyetli kayıtları ele alabilecekleri konusunda emin değilseniz "Kayıt için onay gerekli" seçeneğini kullanmanızı öneririz.
|
||||||
security:
|
security:
|
||||||
authorized_fetch: Dağıtık sunuculardan kimlik doğrulama gerektir
|
authorized_fetch: Dağıtık sunuculardan kimlik doğrulama gerektir
|
||||||
authorized_fetch_hint: Dağıtık sunuculardan kimlik doğrulaması istemek, hem kullanıcı düzeyinde hem de sunucu düzeyinde blokların daha sıkı bir şekilde uygulanmasını sağlar. Ancak bu performans kaybına sebep olur, yanıtlarınızın erişimini azaltır ve bazı dağıtık hizmetlerle uyumluluk sorunları ortaya çıkarabilir. Ayrıca bu, özel aktörlerin herkese açık gönderilerinizi ve hesaplarınızı getirilmesini engellemez.
|
authorized_fetch_hint: Dağıtık sunuculardan kimlik doğrulaması istemek, hem kullanıcı düzeyinde hem de sunucu düzeyinde blokların daha sıkı bir şekilde uygulanmasını sağlar. Ancak bu performans kaybına sebep olur, yanıtlarınızın erişimini azaltır ve bazı dağıtık hizmetlerle uyumluluk sorunları ortaya çıkarabilir. Ayrıca bu, özel aktörlerin herkese açık gönderilerinizi ve hesaplarınızı getirilmesini engellemez.
|
||||||
|
@ -966,6 +968,9 @@ tr:
|
||||||
title: Web kancaları
|
title: Web kancaları
|
||||||
webhook: Web kancası
|
webhook: Web kancası
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
|
auto_close_registrations:
|
||||||
|
body: Son zamanlardaki denetleyi faaliyeti eksikliğinden dolayı, %{instance} üzerindeki kayıtlar, %{instance} sunucusunun olası kötü aktörler tarafından bir platform olarak kullanımını engellemek için otomatik olarak elle onay gerektirecek şekilde değiştirilmiştir. İstediğiniz zaman açık kayıtlara çevirebilirsiniz.
|
||||||
|
subject: "%{instance} üzerindeki kayıtlar otomatik olarak onay gerektirecek şekilde değiştirilmiştir"
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
delete_statuses: gönderilerini silme
|
delete_statuses: gönderilerini silme
|
||||||
|
|
|
@ -795,6 +795,7 @@ uk:
|
||||||
disabled: Нікого
|
disabled: Нікого
|
||||||
users: Для авторизованих локальних користувачів
|
users: Для авторизованих локальних користувачів
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: Переконайтеся, що у вас є адекватна і швидка команда модерації, перш ніж ви відкриєте реєстрацію для всіх!
|
||||||
preamble: Контролюйте, хто може створити обліковий запис на вашому сервері.
|
preamble: Контролюйте, хто може створити обліковий запис на вашому сервері.
|
||||||
title: Реєстрації
|
title: Реєстрації
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -802,6 +803,7 @@ uk:
|
||||||
approved: Для входу потрібне схвалення
|
approved: Для входу потрібне схвалення
|
||||||
none: Ніхто не може увійти
|
none: Ніхто не може увійти
|
||||||
open: Будь-хто може увійти
|
open: Будь-хто може увійти
|
||||||
|
warning_hint: Радимо використовувати "Обов'язкове затвердження", якщо ви не впевнені, що ваша команда модерації може вчасно обробляти спам та зловмисні реєстрації.
|
||||||
security:
|
security:
|
||||||
authorized_fetch: Вимагати аутентифікацію з федеративних серверів
|
authorized_fetch: Вимагати аутентифікацію з федеративних серверів
|
||||||
authorized_fetch_hint: Вимога автентифікації від федеративних серверів забезпечує суворіше застосування блокування як на рівні користувача, так і на рівні сервера. Однак це призводить до зниження продуктивності, зменшує охоплення ваших відповідей і може спричинити проблеми сумісності з деякими федеративними сервісами. Крім того, це не завадить зловмисникам отримувати ваші загальнодоступні дописи та облікові записи.
|
authorized_fetch_hint: Вимога автентифікації від федеративних серверів забезпечує суворіше застосування блокування як на рівні користувача, так і на рівні сервера. Однак це призводить до зниження продуктивності, зменшує охоплення ваших відповідей і може спричинити проблеми сумісності з деякими федеративними сервісами. Крім того, це не завадить зловмисникам отримувати ваші загальнодоступні дописи та облікові записи.
|
||||||
|
@ -1003,7 +1005,7 @@ uk:
|
||||||
webhook: Вебхук
|
webhook: Вебхук
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
auto_close_registrations:
|
auto_close_registrations:
|
||||||
body: Через нестачу нещодавньої активності модератора реєстрація на %{instance} автоматично переключена на вимагу ручного відгуку, для запобігання використанню %{instance} як платформи для потенційних поганих гравців. Ви можете будь-коли переключитися на відкриті реєстрації.
|
body: Через нестачу нещодавньої активності модератора реєстрація на %{instance} автоматично перемкнута на обов'язковий розгляд вручну, для запобігання використанню %{instance} платформою для потенційних зловмисників. Ви можете будь-коли перемкнутися на відкриту реєстрацію.
|
||||||
subject: Реєстрації для %{instance} автоматично перейшли на такі, що вимагають схвалення
|
subject: Реєстрації для %{instance} автоматично перейшли на такі, що вимагають схвалення
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
|
|
|
@ -753,6 +753,7 @@ zh-CN:
|
||||||
disabled: 不对任何人
|
disabled: 不对任何人
|
||||||
users: 对本地已登录用户
|
users: 对本地已登录用户
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: 在向所有人开放注册之前,请确保您拥有一个人手足够且反应迅速的管理团队!
|
||||||
preamble: 控制谁可以在你的服务器上创建账号。
|
preamble: 控制谁可以在你的服务器上创建账号。
|
||||||
title: 注册
|
title: 注册
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -760,6 +761,7 @@ zh-CN:
|
||||||
approved: 注册时需要批准
|
approved: 注册时需要批准
|
||||||
none: 关闭注册
|
none: 关闭注册
|
||||||
open: 开放注册
|
open: 开放注册
|
||||||
|
warning_hint: 我们建议使用“注册必须经过批准”,除非您确信您的管理团队能够及时处理骚扰和恶意注册。
|
||||||
security:
|
security:
|
||||||
authorized_fetch: 需要跨站认证
|
authorized_fetch: 需要跨站认证
|
||||||
authorized_fetch_hint: 要求外站请求通过验证能够使用户级别与服务器级别的封锁更为严格。然而,这将带来额外的性能负担、减少回复触达范围、并可能导致与一些联邦宇宙服务的兼容性问题。此外,这并不能阻止他人针对性地获取公开嘟文与账户。
|
authorized_fetch_hint: 要求外站请求通过验证能够使用户级别与服务器级别的封锁更为严格。然而,这将带来额外的性能负担、减少回复触达范围、并可能导致与一些联邦宇宙服务的兼容性问题。此外,这并不能阻止他人针对性地获取公开嘟文与账户。
|
||||||
|
|
|
@ -755,6 +755,7 @@ zh-TW:
|
||||||
disabled: 給沒有人
|
disabled: 給沒有人
|
||||||
users: 套用至所有登入的本站使用者
|
users: 套用至所有登入的本站使用者
|
||||||
registrations:
|
registrations:
|
||||||
|
moderation_recommandation: 對所有人開放註冊之前,請確保您有人手充足且反應靈敏的管理員團隊!
|
||||||
preamble: 控制誰能於您伺服器上建立帳號。
|
preamble: 控制誰能於您伺服器上建立帳號。
|
||||||
title: 註冊
|
title: 註冊
|
||||||
registrations_mode:
|
registrations_mode:
|
||||||
|
@ -762,6 +763,7 @@ zh-TW:
|
||||||
approved: 註冊需要審核
|
approved: 註冊需要審核
|
||||||
none: 沒有人可註冊
|
none: 沒有人可註冊
|
||||||
open: 任何人皆能註冊
|
open: 任何人皆能註冊
|
||||||
|
warning_hint: 建議您使用「需要審核註冊」除非您相信您的管理員團隊能即時處理垃圾訊息與惡意帳號註冊。
|
||||||
security:
|
security:
|
||||||
authorized_fetch: 要求自聯邦宇宙伺服器之驗證
|
authorized_fetch: 要求自聯邦宇宙伺服器之驗證
|
||||||
authorized_fetch_hint: 要求聯邦宇宙伺服器進行驗證將更嚴格地執行使用者層級及伺服器層級之封鎖。然而,這將會帶來一些性能損失、減少您的回嘟觸及量、並可能會引入與某些聯邦宇宙伺服器之相容性問題。 此外,這無法阻止專門服務抓取您的公開嘟文及帳號資料。
|
authorized_fetch_hint: 要求聯邦宇宙伺服器進行驗證將更嚴格地執行使用者層級及伺服器層級之封鎖。然而,這將會帶來一些性能損失、減少您的回嘟觸及量、並可能會引入與某些聯邦宇宙伺服器之相容性問題。 此外,這無法阻止專門服務抓取您的公開嘟文及帳號資料。
|
||||||
|
|
|
@ -544,6 +544,7 @@ namespace :mastodon do
|
||||||
owner_role = UserRole.find_by(name: 'Owner')
|
owner_role = UserRole.find_by(name: 'Owner')
|
||||||
user = User.new(email: email, password: password, confirmed_at: Time.now.utc, account_attributes: { username: username }, bypass_invite_request_check: true, role: owner_role)
|
user = User.new(email: email, password: password, confirmed_at: Time.now.utc, account_attributes: { username: username }, bypass_invite_request_check: true, role: owner_role)
|
||||||
user.save(validate: false)
|
user.save(validate: false)
|
||||||
|
user.approve!
|
||||||
|
|
||||||
Setting.site_contact_username = username
|
Setting.site_contact_username = username
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
"@formatjs/intl-pluralrules": "^5.2.2",
|
"@formatjs/intl-pluralrules": "^5.2.2",
|
||||||
"@gamestdio/websocket": "^0.3.2",
|
"@gamestdio/websocket": "^0.3.2",
|
||||||
"@github/webauthn-json": "^2.1.1",
|
"@github/webauthn-json": "^2.1.1",
|
||||||
"@rails/ujs": "^7.1.1",
|
"@rails/ujs": "7.1.3-2",
|
||||||
"@reduxjs/toolkit": "^2.0.1",
|
"@reduxjs/toolkit": "^2.0.1",
|
||||||
"@svgr/webpack": "^5.5.0",
|
"@svgr/webpack": "^5.5.0",
|
||||||
"arrow-key-navigation": "^1.2.0",
|
"arrow-key-navigation": "^1.2.0",
|
||||||
|
|
|
@ -0,0 +1,48 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
RSpec.describe MoveService do
|
||||||
|
subject { described_class.new.call(migration) }
|
||||||
|
|
||||||
|
context 'with a valid migration record' do
|
||||||
|
let(:migration) { Fabricate(:account_migration, account: source_account, target_account: target_account) }
|
||||||
|
let(:source_account) { Fabricate(:account) }
|
||||||
|
let(:target_account) { Fabricate(:account, also_known_as: [source_account_uri]) }
|
||||||
|
|
||||||
|
it 'migrates the account to a new account' do
|
||||||
|
expect { subject }
|
||||||
|
.to change_source_moved_value
|
||||||
|
.and process_local_updates
|
||||||
|
.and distribute_updates
|
||||||
|
.and distribute_move
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def source_account_uri
|
||||||
|
ActivityPub::TagManager
|
||||||
|
.instance
|
||||||
|
.uri_for(source_account)
|
||||||
|
end
|
||||||
|
|
||||||
|
def change_source_moved_value
|
||||||
|
change(source_account.reload, :moved_to_account)
|
||||||
|
.from(nil)
|
||||||
|
.to(target_account)
|
||||||
|
end
|
||||||
|
|
||||||
|
def process_local_updates
|
||||||
|
enqueue_sidekiq_job(MoveWorker)
|
||||||
|
.with(source_account.id, target_account.id)
|
||||||
|
end
|
||||||
|
|
||||||
|
def distribute_updates
|
||||||
|
enqueue_sidekiq_job(ActivityPub::UpdateDistributionWorker)
|
||||||
|
.with(source_account.id)
|
||||||
|
end
|
||||||
|
|
||||||
|
def distribute_move
|
||||||
|
enqueue_sidekiq_job(ActivityPub::MoveDistributionWorker)
|
||||||
|
.with(migration.id)
|
||||||
|
end
|
||||||
|
end
|
|
@ -77,11 +77,11 @@ RSpec.describe VerifyLinkService, type: :service do
|
||||||
|
|
||||||
context 'when a document is truncated but the link back is valid' do
|
context 'when a document is truncated but the link back is valid' do
|
||||||
let(:html) do
|
let(:html) do
|
||||||
"
|
<<-HTML
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<body>
|
<body>
|
||||||
<a rel=\"me\" href=\"#{ActivityPub::TagManager.instance.url_for(account)}\">
|
<a rel="me" href="#{ActivityPub::TagManager.instance.url_for(account)}">
|
||||||
"
|
HTML
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'marks the field as verified' do
|
it 'marks the field as verified' do
|
||||||
|
@ -91,11 +91,11 @@ RSpec.describe VerifyLinkService, type: :service do
|
||||||
|
|
||||||
context 'when a link tag might be truncated' do
|
context 'when a link tag might be truncated' do
|
||||||
let(:html) do
|
let(:html) do
|
||||||
"
|
<<-HTML_TRUNCATED
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<body>
|
<body>
|
||||||
<a rel=\"me\" href=\"#{ActivityPub::TagManager.instance.url_for(account)}\"
|
<a rel="me" href="#{ActivityPub::TagManager.instance.url_for(account)}"
|
||||||
"
|
HTML_TRUNCATED
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'marks the field as not verified' do
|
it 'marks the field as not verified' do
|
||||||
|
@ -166,7 +166,11 @@ RSpec.describe VerifyLinkService, type: :service do
|
||||||
#
|
#
|
||||||
# apparently github allows the user to enter website URLs with a single
|
# apparently github allows the user to enter website URLs with a single
|
||||||
# slash and makes no attempts to correct that.
|
# slash and makes no attempts to correct that.
|
||||||
let(:html) { '<a href="http:/unrelated.example">Hello</a>' }
|
let(:html) do
|
||||||
|
<<-HTML
|
||||||
|
<a href="http:/unrelated.example">Hello</a>
|
||||||
|
HTML
|
||||||
|
end
|
||||||
|
|
||||||
it 'does not crash' do
|
it 'does not crash' do
|
||||||
# We could probably put more effort into perhaps auto-correcting the
|
# We could probably put more effort into perhaps auto-correcting the
|
||||||
|
|
67
yarn.lock
|
@ -2299,7 +2299,7 @@ __metadata:
|
||||||
"@formatjs/intl-pluralrules": "npm:^5.2.2"
|
"@formatjs/intl-pluralrules": "npm:^5.2.2"
|
||||||
"@gamestdio/websocket": "npm:^0.3.2"
|
"@gamestdio/websocket": "npm:^0.3.2"
|
||||||
"@github/webauthn-json": "npm:^2.1.1"
|
"@github/webauthn-json": "npm:^2.1.1"
|
||||||
"@rails/ujs": "npm:^7.1.1"
|
"@rails/ujs": "npm:7.1.3-2"
|
||||||
"@reduxjs/toolkit": "npm:^2.0.1"
|
"@reduxjs/toolkit": "npm:^2.0.1"
|
||||||
"@svgr/webpack": "npm:^5.5.0"
|
"@svgr/webpack": "npm:^5.5.0"
|
||||||
"@testing-library/jest-dom": "npm:^6.0.0"
|
"@testing-library/jest-dom": "npm:^6.0.0"
|
||||||
|
@ -2603,10 +2603,10 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@rails/ujs@npm:^7.1.1":
|
"@rails/ujs@npm:7.1.3-2":
|
||||||
version: 7.1.3
|
version: 7.1.3-2
|
||||||
resolution: "@rails/ujs@npm:7.1.3"
|
resolution: "@rails/ujs@npm:7.1.3-2"
|
||||||
checksum: 10c0/68112d9add9dbc59b40c2ec1bc095a67445c57d20d0ab7d817ce3de0cd90374e2690af8ad54ce6ecc2d1c748b34c0c44d0fbd2f515ce2c443d7c5d23d00b9ce5
|
checksum: 10c0/8bd5b3a409c62f53790ed7e914f1f48235f461a472da7b4ce1d9ad57356fcdeaa7891c946298f7f620ff0ff7c6d5b995bf44057929c4fce796867a8cf4f27c99
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
@ -6258,18 +6258,18 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"cssnano-preset-default@npm:^6.0.3":
|
"cssnano-preset-default@npm:^6.0.4":
|
||||||
version: 6.0.3
|
version: 6.0.4
|
||||||
resolution: "cssnano-preset-default@npm:6.0.3"
|
resolution: "cssnano-preset-default@npm:6.0.4"
|
||||||
dependencies:
|
dependencies:
|
||||||
css-declaration-sorter: "npm:^7.1.1"
|
css-declaration-sorter: "npm:^7.1.1"
|
||||||
cssnano-utils: "npm:^4.0.1"
|
cssnano-utils: "npm:^4.0.1"
|
||||||
postcss-calc: "npm:^9.0.1"
|
postcss-calc: "npm:^9.0.1"
|
||||||
postcss-colormin: "npm:^6.0.2"
|
postcss-colormin: "npm:^6.0.2"
|
||||||
postcss-convert-values: "npm:^6.0.2"
|
postcss-convert-values: "npm:^6.0.3"
|
||||||
postcss-discard-comments: "npm:^6.0.1"
|
postcss-discard-comments: "npm:^6.0.1"
|
||||||
postcss-discard-duplicates: "npm:^6.0.1"
|
postcss-discard-duplicates: "npm:^6.0.2"
|
||||||
postcss-discard-empty: "npm:^6.0.1"
|
postcss-discard-empty: "npm:^6.0.2"
|
||||||
postcss-discard-overridden: "npm:^6.0.1"
|
postcss-discard-overridden: "npm:^6.0.1"
|
||||||
postcss-merge-longhand: "npm:^6.0.2"
|
postcss-merge-longhand: "npm:^6.0.2"
|
||||||
postcss-merge-rules: "npm:^6.0.3"
|
postcss-merge-rules: "npm:^6.0.3"
|
||||||
|
@ -6293,7 +6293,7 @@ __metadata:
|
||||||
postcss-unique-selectors: "npm:^6.0.2"
|
postcss-unique-selectors: "npm:^6.0.2"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
postcss: ^8.4.31
|
postcss: ^8.4.31
|
||||||
checksum: 10c0/d100a1f8ab71adbb6df85e00f4a9e5d04ac06fc50343157eef853aded3f75dd0489dd845a5b2fb43ca701bd88c39c5aa88673f842bc1f94f4318c7b38ced1963
|
checksum: 10c0/8a1569756c2189d9db91b2bbd7bc44b39ec6c0bac8cb1a34ab37801b40626b372c2341e696f3a4dfe03ee0490f033299b5e5f9511e2d3572b9b5a2edb7a76e3b
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
@ -6307,14 +6307,14 @@ __metadata:
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"cssnano@npm:^6.0.1":
|
"cssnano@npm:^6.0.1":
|
||||||
version: 6.0.3
|
version: 6.0.4
|
||||||
resolution: "cssnano@npm:6.0.3"
|
resolution: "cssnano@npm:6.0.4"
|
||||||
dependencies:
|
dependencies:
|
||||||
cssnano-preset-default: "npm:^6.0.3"
|
cssnano-preset-default: "npm:^6.0.4"
|
||||||
lilconfig: "npm:^3.0.0"
|
lilconfig: "npm:^3.1.1"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
postcss: ^8.4.31
|
postcss: ^8.4.31
|
||||||
checksum: 10c0/d1669eb987fd96159bae262ef2f76c1a64fffefe8fa593918a6bda377977798b60fb4a6a871a9b9a9deb11258130ee254fdb8c3144769b3060ad9f2a95a4ed0a
|
checksum: 10c0/734b8d1a925288a707fa73087b7ae340a93c59a1838ac897f470104bbebf8aa4fb2a24e190e50a4eea592b595bca0a2f25e8aedcf237ea1675c8d1e636f587a5
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
@ -10905,13 +10905,20 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"lilconfig@npm:3.0.0, lilconfig@npm:^3.0.0":
|
"lilconfig@npm:3.0.0":
|
||||||
version: 3.0.0
|
version: 3.0.0
|
||||||
resolution: "lilconfig@npm:3.0.0"
|
resolution: "lilconfig@npm:3.0.0"
|
||||||
checksum: 10c0/7f5ee7a658dc016cacf146815e8d88b06f06f4402823b8b0934e305a57a197f55ccc9c5cd4fb5ea1b2b821c8ccaf2d54abd59602a4931af06eabda332388d3e6
|
checksum: 10c0/7f5ee7a658dc016cacf146815e8d88b06f06f4402823b8b0934e305a57a197f55ccc9c5cd4fb5ea1b2b821c8ccaf2d54abd59602a4931af06eabda332388d3e6
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"lilconfig@npm:^3.1.1":
|
||||||
|
version: 3.1.1
|
||||||
|
resolution: "lilconfig@npm:3.1.1"
|
||||||
|
checksum: 10c0/311b559794546894e3fe176663427326026c1c644145be9e8041c58e268aa9328799b8dfe7e4dd8c6a4ae305feae95a1c9e007db3569f35b42b6e1bc8274754c
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"lines-and-columns@npm:^1.1.6":
|
"lines-and-columns@npm:^1.1.6":
|
||||||
version: 1.2.4
|
version: 1.2.4
|
||||||
resolution: "lines-and-columns@npm:1.2.4"
|
resolution: "lines-and-columns@npm:1.2.4"
|
||||||
|
@ -12830,15 +12837,15 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"postcss-convert-values@npm:^6.0.2":
|
"postcss-convert-values@npm:^6.0.3":
|
||||||
version: 6.0.2
|
version: 6.0.3
|
||||||
resolution: "postcss-convert-values@npm:6.0.2"
|
resolution: "postcss-convert-values@npm:6.0.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
browserslist: "npm:^4.22.2"
|
browserslist: "npm:^4.22.2"
|
||||||
postcss-value-parser: "npm:^4.2.0"
|
postcss-value-parser: "npm:^4.2.0"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
postcss: ^8.4.31
|
postcss: ^8.4.31
|
||||||
checksum: 10c0/882d0b7839ef07ac8ffbf9cb48db0f610939a3496bd0321c7f23096ead676f13e09ab3d9c20ff3dbe2c887e855826051ca7dffeaffce5068cfdc9aaa573a3842
|
checksum: 10c0/614a24d4bc9142f277ed12eefe556eae6ad8292092953c8ebfcf518ef52e8de5dd337a9e915b64e712b8b95175ca0fd8d1b1e9e806d25a8e4f01c75d784f3118
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
@ -12851,21 +12858,21 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"postcss-discard-duplicates@npm:^6.0.1":
|
"postcss-discard-duplicates@npm:^6.0.2":
|
||||||
version: 6.0.1
|
version: 6.0.2
|
||||||
resolution: "postcss-discard-duplicates@npm:6.0.1"
|
resolution: "postcss-discard-duplicates@npm:6.0.2"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
postcss: ^8.4.31
|
postcss: ^8.4.31
|
||||||
checksum: 10c0/b9ea10a3c7528bb1630613c11756f809a95da634822d943fa91b28f2a37787e7cdb9ff96deed9776e2c3753d35e42c8afd5074b630930df7b5150573d4beda23
|
checksum: 10c0/316b8263c3a06d3303288d99e093ed2922757222fe5ea457b70d8d3fccadf0a1a452a6cc3b8296e749e70b0a231b68a742f9e01c606baa7fe3e14327bae3094b
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"postcss-discard-empty@npm:^6.0.1":
|
"postcss-discard-empty@npm:^6.0.2":
|
||||||
version: 6.0.1
|
version: 6.0.2
|
||||||
resolution: "postcss-discard-empty@npm:6.0.1"
|
resolution: "postcss-discard-empty@npm:6.0.2"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
postcss: ^8.4.31
|
postcss: ^8.4.31
|
||||||
checksum: 10c0/6b95e588a3e8fb262e56bd313060daf29d7c9d44184bb6c4c5858ae81d6cd2907b15b3e3023b6621d50a67cfc10e6077920ff1e908892b207dee29477376498f
|
checksum: 10c0/abae41eecf93ed7b2b34bb77d319d70093e663ee4b23dc0b1e0007044bbf4315d980539bb67466a8ed24a475afdd52bd465f92433466cf3bf2057591c7124ab1
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
|