Merge commit '08342ad40c1b92caf873282190efe8533a7d6e2e' into glitch-soc/merge-upstream
This commit is contained in:
commit
d2cfc6e5e2
|
@ -210,11 +210,6 @@ Style/RedundantBegin:
|
||||||
Style/RescueStandardError:
|
Style/RescueStandardError:
|
||||||
EnforcedStyle: implicit
|
EnforcedStyle: implicit
|
||||||
|
|
||||||
# Reason: Simplify some spec layouts
|
|
||||||
# https://docs.rubocop.org/rubocop/cops_style.html#stylesemicolon
|
|
||||||
Style/Semicolon:
|
|
||||||
AllowAsExpressionSeparator: true
|
|
||||||
|
|
||||||
# Reason: Originally disabled for CodeClimate, and no config consensus has been found
|
# Reason: Originally disabled for CodeClimate, and no config consensus has been found
|
||||||
# https://docs.rubocop.org/rubocop/cops_style.html#stylesymbolarray
|
# https://docs.rubocop.org/rubocop/cops_style.html#stylesymbolarray
|
||||||
Style/SymbolArray:
|
Style/SymbolArray:
|
||||||
|
|
|
@ -16,6 +16,6 @@ class CustomCssController < ActionController::Base # rubocop:disable Rails/Appli
|
||||||
helper_method :custom_css_styles
|
helper_method :custom_css_styles
|
||||||
|
|
||||||
def set_user_roles
|
def set_user_roles
|
||||||
@user_roles = UserRole.where(highlighted: true).where.not(color: [nil, ''])
|
@user_roles = UserRole.providing_styles
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -8,8 +8,8 @@ import { NavLink, Switch, Route } from 'react-router-dom';
|
||||||
|
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
|
|
||||||
|
import ExploreIcon from '@/material-icons/400-24px/explore.svg?react';
|
||||||
import SearchIcon from '@/material-icons/400-24px/search.svg?react';
|
import SearchIcon from '@/material-icons/400-24px/search.svg?react';
|
||||||
import TagIcon from '@/material-icons/400-24px/tag.svg?react';
|
|
||||||
import Column from 'mastodon/components/column';
|
import Column from 'mastodon/components/column';
|
||||||
import ColumnHeader from 'mastodon/components/column_header';
|
import ColumnHeader from 'mastodon/components/column_header';
|
||||||
import Search from 'mastodon/features/compose/containers/search_container';
|
import Search from 'mastodon/features/compose/containers/search_container';
|
||||||
|
@ -59,7 +59,7 @@ class Explore extends PureComponent {
|
||||||
<Column bindToDocument={!multiColumn} ref={this.setRef} label={intl.formatMessage(messages.title)}>
|
<Column bindToDocument={!multiColumn} ref={this.setRef} label={intl.formatMessage(messages.title)}>
|
||||||
<ColumnHeader
|
<ColumnHeader
|
||||||
icon={isSearching ? 'search' : 'hashtag'}
|
icon={isSearching ? 'search' : 'hashtag'}
|
||||||
iconComponent={isSearching ? SearchIcon : TagIcon}
|
iconComponent={isSearching ? SearchIcon : ExploreIcon}
|
||||||
title={intl.formatMessage(isSearching ? messages.searchResults : messages.title)}
|
title={intl.formatMessage(isSearching ? messages.searchResults : messages.title)}
|
||||||
onClick={this.handleHeaderClick}
|
onClick={this.handleHeaderClick}
|
||||||
multiColumn={multiColumn}
|
multiColumn={multiColumn}
|
||||||
|
|
|
@ -7,6 +7,7 @@ import { Link } from 'react-router-dom';
|
||||||
|
|
||||||
import AlternateEmailIcon from '@/material-icons/400-24px/alternate_email.svg?react';
|
import AlternateEmailIcon from '@/material-icons/400-24px/alternate_email.svg?react';
|
||||||
import BookmarksIcon from '@/material-icons/400-24px/bookmarks-fill.svg?react';
|
import BookmarksIcon from '@/material-icons/400-24px/bookmarks-fill.svg?react';
|
||||||
|
import ExploreIcon from '@/material-icons/400-24px/explore.svg?react';
|
||||||
import HomeIcon from '@/material-icons/400-24px/home-fill.svg?react';
|
import HomeIcon from '@/material-icons/400-24px/home-fill.svg?react';
|
||||||
import ListAltIcon from '@/material-icons/400-24px/list_alt.svg?react';
|
import ListAltIcon from '@/material-icons/400-24px/list_alt.svg?react';
|
||||||
import MoreHorizIcon from '@/material-icons/400-24px/more_horiz.svg?react';
|
import MoreHorizIcon from '@/material-icons/400-24px/more_horiz.svg?react';
|
||||||
|
@ -14,7 +15,6 @@ import PublicIcon from '@/material-icons/400-24px/public.svg?react';
|
||||||
import SearchIcon from '@/material-icons/400-24px/search.svg?react';
|
import SearchIcon from '@/material-icons/400-24px/search.svg?react';
|
||||||
import SettingsIcon from '@/material-icons/400-24px/settings-fill.svg?react';
|
import SettingsIcon from '@/material-icons/400-24px/settings-fill.svg?react';
|
||||||
import StarIcon from '@/material-icons/400-24px/star-fill.svg?react';
|
import StarIcon from '@/material-icons/400-24px/star-fill.svg?react';
|
||||||
import TagIcon from '@/material-icons/400-24px/tag.svg?react';
|
|
||||||
import { WordmarkLogo } from 'mastodon/components/logo';
|
import { WordmarkLogo } from 'mastodon/components/logo';
|
||||||
import { NavigationPortal } from 'mastodon/components/navigation_portal';
|
import { NavigationPortal } from 'mastodon/components/navigation_portal';
|
||||||
import { timelinePreview, trendsEnabled } from 'mastodon/initial_state';
|
import { timelinePreview, trendsEnabled } from 'mastodon/initial_state';
|
||||||
|
@ -94,7 +94,7 @@ class NavigationPanel extends Component {
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{trendsEnabled ? (
|
{trendsEnabled ? (
|
||||||
<ColumnLink transparent to='/explore' icon='hashtag' iconComponent={TagIcon} text={intl.formatMessage(messages.explore)} />
|
<ColumnLink transparent to='/explore' icon='hashtag' iconComponent={ExploreIcon} text={intl.formatMessage(messages.explore)} />
|
||||||
) : (
|
) : (
|
||||||
<ColumnLink transparent to='/search' icon='search' iconComponent={SearchIcon} text={intl.formatMessage(messages.search)} />
|
<ColumnLink transparent to='/search' icon='search' iconComponent={SearchIcon} text={intl.formatMessage(messages.search)} />
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -277,7 +277,6 @@
|
||||||
"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.personalized_suggestion": "توصية مخصصة",
|
"follow_suggestions.personalized_suggestion": "توصية مخصصة",
|
||||||
"follow_suggestions.popular_suggestion": "توصية رائجة",
|
"follow_suggestions.popular_suggestion": "توصية رائجة",
|
||||||
|
|
|
@ -199,7 +199,6 @@
|
||||||
"follow_request.authorize": "Autorizar",
|
"follow_request.authorize": "Autorizar",
|
||||||
"follow_request.reject": "Refugar",
|
"follow_request.reject": "Refugar",
|
||||||
"follow_requests.unlocked_explanation": "Magar que la to cuenta nun seya privada, el personal del dominiu «{domain}» pensó qu'a lo meyor quies revisar manualmente les solicitúes de siguimientu d'estes cuentes.",
|
"follow_requests.unlocked_explanation": "Magar que la to cuenta nun seya privada, el personal del dominiu «{domain}» pensó qu'a lo meyor quies revisar manualmente les solicitúes de siguimientu d'estes cuentes.",
|
||||||
"follow_suggestions.curated_suggestion": "Escoyeta del sirvidor",
|
|
||||||
"follow_suggestions.dismiss": "Nun volver amosar",
|
"follow_suggestions.dismiss": "Nun volver amosar",
|
||||||
"follow_suggestions.personalized_suggestion": "Suxerencia personalizada",
|
"follow_suggestions.personalized_suggestion": "Suxerencia personalizada",
|
||||||
"follow_suggestions.popular_suggestion": "Suxerencia popular",
|
"follow_suggestions.popular_suggestion": "Suxerencia popular",
|
||||||
|
|
|
@ -277,8 +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.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": "Праглядзець усё",
|
||||||
|
|
|
@ -277,8 +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.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": "Преглед на всички",
|
||||||
|
@ -471,7 +476,7 @@
|
||||||
"notifications.permission_required": "Известията на работния плот ги няма, щото няма дадено нужното позволение.",
|
"notifications.permission_required": "Известията на работния плот ги няма, щото няма дадено нужното позволение.",
|
||||||
"notifications_permission_banner.enable": "Включване на известията на работния плот",
|
"notifications_permission_banner.enable": "Включване на известията на работния плот",
|
||||||
"notifications_permission_banner.how_to_control": "За да получавате известия, когато Mastodon не е отворен, включете известията на работния плот. Може да управлявате точно кои видове взаимодействия пораждат известия на работния плот чрез бутона {icon} по-горе, след като бъдат включени.",
|
"notifications_permission_banner.how_to_control": "За да получавате известия, когато Mastodon не е отворен, включете известията на работния плот. Може да управлявате точно кои видове взаимодействия пораждат известия на работния плот чрез бутона {icon} по-горе, след като бъдат включени.",
|
||||||
"notifications_permission_banner.title": "Никога не пропускате нещо",
|
"notifications_permission_banner.title": "Никога не пропускайте нищо",
|
||||||
"onboarding.action.back": "Върнете ме обратно",
|
"onboarding.action.back": "Върнете ме обратно",
|
||||||
"onboarding.actions.back": "Върнете ме обратно",
|
"onboarding.actions.back": "Върнете ме обратно",
|
||||||
"onboarding.actions.go_to_explore": "Виж тенденции",
|
"onboarding.actions.go_to_explore": "Виж тенденции",
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
"account.enable_notifications": "Ma c'hemenn pa vez embannet traoù gant @{name}",
|
"account.enable_notifications": "Ma c'hemenn pa vez embannet traoù gant @{name}",
|
||||||
"account.endorse": "Lakaat war-wel war ar profil",
|
"account.endorse": "Lakaat war-wel war ar profil",
|
||||||
"account.featured_tags.last_status_at": "Toud diwezhañ : {date}",
|
"account.featured_tags.last_status_at": "Toud diwezhañ : {date}",
|
||||||
"account.featured_tags.last_status_never": "Toud ebet",
|
"account.featured_tags.last_status_never": "Embannadur ebet",
|
||||||
"account.featured_tags.title": "Hashtagoù pennañ {name}",
|
"account.featured_tags.title": "Hashtagoù pennañ {name}",
|
||||||
"account.follow": "Heuliañ",
|
"account.follow": "Heuliañ",
|
||||||
"account.follow_back": "Heuliañ d'ho tro",
|
"account.follow_back": "Heuliañ d'ho tro",
|
||||||
|
@ -62,7 +62,7 @@
|
||||||
"account.requested_follow": "Gant {name} eo bet goulennet ho heuliañ",
|
"account.requested_follow": "Gant {name} eo bet goulennet ho heuliañ",
|
||||||
"account.share": "Skignañ profil @{name}",
|
"account.share": "Skignañ profil @{name}",
|
||||||
"account.show_reblogs": "Diskouez skignadennoù @{name}",
|
"account.show_reblogs": "Diskouez skignadennoù @{name}",
|
||||||
"account.statuses_counter": "{count, plural, one {{counter} Toud} two {{counter} Doud} other {{counter} a Doudoù}}",
|
"account.statuses_counter": "{count, plural, one {{counter} C'hannad} two {{counter} Gannad} other {{counter} a Gannadoù}}",
|
||||||
"account.unblock": "Diverzañ @{name}",
|
"account.unblock": "Diverzañ @{name}",
|
||||||
"account.unblock_domain": "Diverzañ an domani {domain}",
|
"account.unblock_domain": "Diverzañ an domani {domain}",
|
||||||
"account.unblock_short": "Distankañ",
|
"account.unblock_short": "Distankañ",
|
||||||
|
@ -118,9 +118,9 @@
|
||||||
"column.lists": "Listennoù",
|
"column.lists": "Listennoù",
|
||||||
"column.mutes": "Implijer·ion·ezed kuzhet",
|
"column.mutes": "Implijer·ion·ezed kuzhet",
|
||||||
"column.notifications": "Kemennoù",
|
"column.notifications": "Kemennoù",
|
||||||
"column.pins": "Toudoù spilhennet",
|
"column.pins": "Embannadurioù spilhennet",
|
||||||
"column.public": "Red-amzer kevredet",
|
"column.public": "Red-amzer kevredet",
|
||||||
"column_back_button.label": "Distro",
|
"column_back_button.label": "Distreiñ",
|
||||||
"column_header.hide_settings": "Kuzhat an arventennoù",
|
"column_header.hide_settings": "Kuzhat an arventennoù",
|
||||||
"column_header.moveLeft_settings": "Dilec'hiañ ar bannad a-gleiz",
|
"column_header.moveLeft_settings": "Dilec'hiañ ar bannad a-gleiz",
|
||||||
"column_header.moveRight_settings": "Dilec'hiañ ar bannad a-zehou",
|
"column_header.moveRight_settings": "Dilec'hiañ ar bannad a-zehou",
|
||||||
|
@ -199,9 +199,9 @@
|
||||||
"embed.preview": "Setu penaos e teuio war wel :",
|
"embed.preview": "Setu penaos e teuio war wel :",
|
||||||
"emoji_button.activity": "Obererezh",
|
"emoji_button.activity": "Obererezh",
|
||||||
"emoji_button.clear": "Diverkañ",
|
"emoji_button.clear": "Diverkañ",
|
||||||
"emoji_button.custom": "Kempennet",
|
"emoji_button.custom": "Personelaet",
|
||||||
"emoji_button.flags": "Bannieloù",
|
"emoji_button.flags": "Bannieloù",
|
||||||
"emoji_button.food": "Boued hag Evaj",
|
"emoji_button.food": "Boued & Evajoù",
|
||||||
"emoji_button.label": "Enlakaat un emoji",
|
"emoji_button.label": "Enlakaat un emoji",
|
||||||
"emoji_button.nature": "Natur",
|
"emoji_button.nature": "Natur",
|
||||||
"emoji_button.not_found": "Emoji ebet !! (╯°□°)╯︵ ┻━┻",
|
"emoji_button.not_found": "Emoji ebet !! (╯°□°)╯︵ ┻━┻",
|
||||||
|
@ -211,12 +211,12 @@
|
||||||
"emoji_button.search": "O klask...",
|
"emoji_button.search": "O klask...",
|
||||||
"emoji_button.search_results": "Disoc'hoù an enklask",
|
"emoji_button.search_results": "Disoc'hoù an enklask",
|
||||||
"emoji_button.symbols": "Arouezioù",
|
"emoji_button.symbols": "Arouezioù",
|
||||||
"emoji_button.travel": "Lec'hioù ha Beajoù",
|
"emoji_button.travel": "Beajiñ & Lec'hioù",
|
||||||
"empty_column.account_suspended": "Kont ehanet",
|
"empty_column.account_suspended": "Kont ehanet",
|
||||||
"empty_column.account_timeline": "Toud ebet amañ !",
|
"empty_column.account_timeline": "Toud ebet amañ !",
|
||||||
"empty_column.account_unavailable": "Profil dihegerz",
|
"empty_column.account_unavailable": "Profil dihegerz",
|
||||||
"empty_column.blocks": "N'eus ket bet berzet implijer·ez ganeoc'h c'hoazh.",
|
"empty_column.blocks": "N'eus ket bet berzet implijer·ez ganeoc'h c'hoazh.",
|
||||||
"empty_column.bookmarked_statuses": "N'ho peus toud ebet enrollet en ho sinedoù c'hoazh. Pa vo ouzhpennet unan e teuio war wel amañ.",
|
"empty_column.bookmarked_statuses": "N'ho peus embannadur ebet enrollet en ho sinedoù c'hoazh. Pa vo ouzhpennet unan e teuio war wel amañ.",
|
||||||
"empty_column.community": "Goulo eo ar red-amzer lec'hel. Skrivit'ta un dra evit lakaat tan dezhi !",
|
"empty_column.community": "Goulo eo ar red-amzer lec'hel. Skrivit'ta un dra evit lakaat tan dezhi !",
|
||||||
"empty_column.domain_blocks": "N'eus domani kuzh ebet c'hoazh.",
|
"empty_column.domain_blocks": "N'eus domani kuzh ebet c'hoazh.",
|
||||||
"empty_column.explore_statuses": "N'eus tuadur ebet evit c'hoazh. Distroit diwezhatoc'h !",
|
"empty_column.explore_statuses": "N'eus tuadur ebet evit c'hoazh. Distroit diwezhatoc'h !",
|
||||||
|
@ -260,6 +260,7 @@
|
||||||
"follow_request.authorize": "Aotren",
|
"follow_request.authorize": "Aotren",
|
||||||
"follow_request.reject": "Nac'hañ",
|
"follow_request.reject": "Nac'hañ",
|
||||||
"follow_requests.unlocked_explanation": "Daoust ma n'eo ket ho kont prennet, skipailh {domain} a soñj e fellfe deoc'h gwiriekaat pedadennoù heuliañ deus ar c'hontoù-se diwar-zorn.",
|
"follow_requests.unlocked_explanation": "Daoust ma n'eo ket ho kont prennet, skipailh {domain} a soñj e fellfe deoc'h gwiriekaat pedadennoù heuliañ deus ar c'hontoù-se diwar-zorn.",
|
||||||
|
"follow_suggestions.view_all": "Gwelet pep tra",
|
||||||
"followed_tags": "Hashtagoù o heuliañ",
|
"followed_tags": "Hashtagoù o heuliañ",
|
||||||
"footer.about": "Diwar-benn",
|
"footer.about": "Diwar-benn",
|
||||||
"footer.directory": "Kavlec'h ar profiloù",
|
"footer.directory": "Kavlec'h ar profiloù",
|
||||||
|
@ -267,7 +268,7 @@
|
||||||
"footer.invite": "Pediñ tud",
|
"footer.invite": "Pediñ tud",
|
||||||
"footer.keyboard_shortcuts": "Berradennoù klavier",
|
"footer.keyboard_shortcuts": "Berradennoù klavier",
|
||||||
"footer.privacy_policy": "Reolennoù prevezded",
|
"footer.privacy_policy": "Reolennoù prevezded",
|
||||||
"footer.source_code": "Gwelet kod mammenn",
|
"footer.source_code": "Gwelet ar c'hod mammenn",
|
||||||
"footer.status": "Statud",
|
"footer.status": "Statud",
|
||||||
"generic.saved": "Enrollet",
|
"generic.saved": "Enrollet",
|
||||||
"getting_started.heading": "Loc'hañ",
|
"getting_started.heading": "Loc'hañ",
|
||||||
|
@ -295,7 +296,7 @@
|
||||||
"interaction_modal.description.follow": "Gant ur gont Mastodon e c'hellit heuliañ {name} evit resev an toudoù a embann war ho red degemer.",
|
"interaction_modal.description.follow": "Gant ur gont Mastodon e c'hellit heuliañ {name} evit resev an toudoù a embann war ho red degemer.",
|
||||||
"interaction_modal.description.reblog": "Gant ur gont Mastodon e c'hellit skignañ an toud-mañ evit rannañ anezhañ gant ho heulierien·ezed.",
|
"interaction_modal.description.reblog": "Gant ur gont Mastodon e c'hellit skignañ an toud-mañ evit rannañ anezhañ gant ho heulierien·ezed.",
|
||||||
"interaction_modal.description.reply": "Gant ur gont Mastodon e c'hellit respont d'an toud-mañ.",
|
"interaction_modal.description.reply": "Gant ur gont Mastodon e c'hellit respont d'an toud-mañ.",
|
||||||
"interaction_modal.no_account_yet": "N'eo ket war vMastodon?",
|
"interaction_modal.no_account_yet": "N'emañ ket war vMastodon?",
|
||||||
"interaction_modal.on_another_server": "War ur servijer all",
|
"interaction_modal.on_another_server": "War ur servijer all",
|
||||||
"interaction_modal.on_this_server": "War ar servijer-mañ",
|
"interaction_modal.on_this_server": "War ar servijer-mañ",
|
||||||
"interaction_modal.title.favourite": "Ouzhpennañ embannadur {name} d'ar re vuiañ-karet",
|
"interaction_modal.title.favourite": "Ouzhpennañ embannadur {name} d'ar re vuiañ-karet",
|
||||||
|
@ -463,7 +464,7 @@
|
||||||
"onboarding.steps.setup_profile.body": "Others are more likely to interact with you with a filled out profile.",
|
"onboarding.steps.setup_profile.body": "Others are more likely to interact with you with a filled out profile.",
|
||||||
"onboarding.steps.setup_profile.title": "Customize your profile",
|
"onboarding.steps.setup_profile.title": "Customize your profile",
|
||||||
"onboarding.steps.share_profile.body": "Let your friends know how to find you on Mastodon!",
|
"onboarding.steps.share_profile.body": "Let your friends know how to find you on Mastodon!",
|
||||||
"onboarding.steps.share_profile.title": "Share your profile",
|
"onboarding.steps.share_profile.title": "Rannit ho kont Mastodon",
|
||||||
"password_confirmation.mismatching": "Disheñvel eo an daou c'her-termen-se",
|
"password_confirmation.mismatching": "Disheñvel eo an daou c'her-termen-se",
|
||||||
"picture_in_picture.restore": "Adlakaat",
|
"picture_in_picture.restore": "Adlakaat",
|
||||||
"poll.closed": "Serret",
|
"poll.closed": "Serret",
|
||||||
|
@ -476,7 +477,8 @@
|
||||||
"poll.votes": "{votes, plural,one {#votadenn} other {# votadenn}}",
|
"poll.votes": "{votes, plural,one {#votadenn} other {# votadenn}}",
|
||||||
"poll_button.add_poll": "Ouzhpennañ ur sontadeg",
|
"poll_button.add_poll": "Ouzhpennañ ur sontadeg",
|
||||||
"poll_button.remove_poll": "Dilemel ar sontadeg",
|
"poll_button.remove_poll": "Dilemel ar sontadeg",
|
||||||
"privacy.change": "Cheñch prevezded an toud",
|
"privacy.change": "Cheñch prevezded an embannadur",
|
||||||
|
"privacy.direct.short": "Tud resis",
|
||||||
"privacy.private.short": "Heulierien",
|
"privacy.private.short": "Heulierien",
|
||||||
"privacy.public.short": "Publik",
|
"privacy.public.short": "Publik",
|
||||||
"privacy_policy.last_updated": "Hizivadenn ziwezhañ {date}",
|
"privacy_policy.last_updated": "Hizivadenn ziwezhañ {date}",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Autoritza",
|
"follow_request.authorize": "Autoritza",
|
||||||
"follow_request.reject": "Rebutja",
|
"follow_request.reject": "Rebutja",
|
||||||
"follow_requests.unlocked_explanation": "Tot i que el teu compte no està blocat, el personal de {domain} ha pensat que és possible que vulguis revisar manualment les sol·licituds de seguiment d’aquests comptes.",
|
"follow_requests.unlocked_explanation": "Tot i que el teu compte no està blocat, el personal de {domain} ha pensat que és possible que vulguis revisar manualment les sol·licituds de seguiment d’aquests comptes.",
|
||||||
"follow_suggestions.curated_suggestion": "Tria de l'editor",
|
"follow_suggestions.curated_suggestion": "Tria de l'equip",
|
||||||
"follow_suggestions.dismiss": "No ho tornis a mostrar",
|
"follow_suggestions.dismiss": "No ho tornis a mostrar",
|
||||||
|
"follow_suggestions.hints.featured": "L'equip de {domain} ha seleccionat aquest perfil.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Aquest perfil és popular entre la gent que seguiu.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Aquest perfil és un dels més seguits a {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Aquest perfil ha estat rebent un munt d'atenció recentment a {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Aquest perfil és similar a d'altres que heu seguit recentment.",
|
||||||
"follow_suggestions.personalized_suggestion": "Suggeriment personalitzat",
|
"follow_suggestions.personalized_suggestion": "Suggeriment personalitzat",
|
||||||
"follow_suggestions.popular_suggestion": "Suggeriment popular",
|
"follow_suggestions.popular_suggestion": "Suggeriment popular",
|
||||||
"follow_suggestions.view_all": "Mostra-ho tot",
|
"follow_suggestions.view_all": "Mostra-ho tot",
|
||||||
|
|
|
@ -276,9 +276,14 @@
|
||||||
"firehose.remote": "Ostatní servery",
|
"firehose.remote": "Ostatní servery",
|
||||||
"follow_request.authorize": "Autorizovat",
|
"follow_request.authorize": "Autorizovat",
|
||||||
"follow_request.reject": "Zamítnout",
|
"follow_request.reject": "Zamítnout",
|
||||||
"follow_requests.unlocked_explanation": "Přestože váš účet není zamčený, administrátor {domain} usoudil, že byste mohli chtít tyto žádosti o sledování zkontrolovat ručně.",
|
"follow_requests.unlocked_explanation": "Přestože váš účet není uzamčen, personál {domain} usoudil, že byste mohli chtít tyto požadavky na sledování zkontrolovat ručně.",
|
||||||
"follow_suggestions.curated_suggestion": "Návrh serveru",
|
"follow_suggestions.curated_suggestion": "Výběr personálů",
|
||||||
"follow_suggestions.dismiss": "Znovu nezobrazovat",
|
"follow_suggestions.dismiss": "Znovu nezobrazovat",
|
||||||
|
"follow_suggestions.hints.featured": "Tento profil byl ručně vybrán týmem {domain}.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Tento profil je populární mezi lidmi, které sledujete.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Tento profil je jedním z nejvíce sledovaných na {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Tento profil nedávno dostalo velkou pozornost na {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Tento profil je podobný profilům, které jste nedávno sledovali.",
|
||||||
"follow_suggestions.personalized_suggestion": "Přizpůsobený návrh",
|
"follow_suggestions.personalized_suggestion": "Přizpůsobený návrh",
|
||||||
"follow_suggestions.popular_suggestion": "Populární návrh",
|
"follow_suggestions.popular_suggestion": "Populární návrh",
|
||||||
"follow_suggestions.view_all": "Zobrazit vše",
|
"follow_suggestions.view_all": "Zobrazit vše",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Awdurdodi",
|
"follow_request.authorize": "Awdurdodi",
|
||||||
"follow_request.reject": "Gwrthod",
|
"follow_request.reject": "Gwrthod",
|
||||||
"follow_requests.unlocked_explanation": "Er nid yw eich cyfrif wedi'i gloi, roedd y staff {domain} yn meddwl efallai hoffech adolygu ceisiadau dilyn o'r cyfrifau rhain wrth law.",
|
"follow_requests.unlocked_explanation": "Er nid yw eich cyfrif wedi'i gloi, roedd y staff {domain} yn meddwl efallai hoffech adolygu ceisiadau dilyn o'r cyfrifau rhain wrth law.",
|
||||||
"follow_suggestions.curated_suggestion": "Dewis y Golygydd",
|
"follow_suggestions.curated_suggestion": "Dewis staff",
|
||||||
"follow_suggestions.dismiss": "Peidio â dangos hwn eto",
|
"follow_suggestions.dismiss": "Peidio â dangos hwn eto",
|
||||||
|
"follow_suggestions.hints.featured": "Mae'r proffil hwn wedi'i ddewis yn arbennig gan dîm {domain}.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Mae'r proffil hwn yn boblogaidd ymhlith y bobl rydych chi'n eu dilyn.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Mae'r proffil hwn yn un o'r rhai sy'n cael ei ddilyn fwyaf ar {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Mae'r proffil hwn wedi bod yn cael llawer o sylw yn ddiweddar ar {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Mae'r proffil hwn yn debyg i'r proffiliau rydych chi wedi'u dilyn yn fwyaf diweddar.",
|
||||||
"follow_suggestions.personalized_suggestion": "Awgrym personol",
|
"follow_suggestions.personalized_suggestion": "Awgrym personol",
|
||||||
"follow_suggestions.popular_suggestion": "Awgrym poblogaidd",
|
"follow_suggestions.popular_suggestion": "Awgrym poblogaidd",
|
||||||
"follow_suggestions.view_all": "Gweld y cyfan",
|
"follow_suggestions.view_all": "Gweld y cyfan",
|
||||||
|
|
|
@ -277,7 +277,13 @@
|
||||||
"follow_request.authorize": "Godkend",
|
"follow_request.authorize": "Godkend",
|
||||||
"follow_request.reject": "Afvis",
|
"follow_request.reject": "Afvis",
|
||||||
"follow_requests.unlocked_explanation": "Selvom din konto ikke er låst, synes {domain}-personalet, du måske bør gennemgå disse anmodninger manuelt.",
|
"follow_requests.unlocked_explanation": "Selvom din konto ikke er låst, synes {domain}-personalet, du måske bør gennemgå disse anmodninger manuelt.",
|
||||||
|
"follow_suggestions.curated_suggestion": "Personaleudvalgt",
|
||||||
"follow_suggestions.dismiss": "Vis ikke igen",
|
"follow_suggestions.dismiss": "Vis ikke igen",
|
||||||
|
"follow_suggestions.hints.featured": "Denne profil er håndplukket af {domain}-teamet.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Denne profil er populær blandt de personer, som følges.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Denne profil er en af de mest fulgte på {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Denne profil har for nylig fået stor opmærksomhed på {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Denne profil svarer til de profiler, som senest er blevet fulgt.",
|
||||||
"follow_suggestions.personalized_suggestion": "Personligt forslag",
|
"follow_suggestions.personalized_suggestion": "Personligt forslag",
|
||||||
"follow_suggestions.popular_suggestion": "Populært forslag",
|
"follow_suggestions.popular_suggestion": "Populært forslag",
|
||||||
"follow_suggestions.view_all": "Vis alle",
|
"follow_suggestions.view_all": "Vis alle",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Genehmigen",
|
"follow_request.authorize": "Genehmigen",
|
||||||
"follow_request.reject": "Ablehnen",
|
"follow_request.reject": "Ablehnen",
|
||||||
"follow_requests.unlocked_explanation": "Auch wenn dein Konto öffentlich bzw. nicht geschützt ist, haben die Moderator*innen von {domain} gedacht, dass du diesen Follower lieber manuell bestätigen solltest.",
|
"follow_requests.unlocked_explanation": "Auch wenn dein Konto öffentlich bzw. nicht geschützt ist, haben die Moderator*innen von {domain} gedacht, dass du diesen Follower lieber manuell bestätigen solltest.",
|
||||||
"follow_suggestions.curated_suggestion": "Auswahl des Herausgebers",
|
"follow_suggestions.curated_suggestion": "Vom Server empfohlen",
|
||||||
"follow_suggestions.dismiss": "Nicht mehr anzeigen",
|
"follow_suggestions.dismiss": "Nicht mehr anzeigen",
|
||||||
|
"follow_suggestions.hints.featured": "Dieses Profil wurde vom {domain}-Team ausgewählt.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Dieses Profil ist bei deinen Followern beliebt.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Dieses Profil wird von den meisten auf {domain} gefolgt.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Dieses Profil erhielt auf {domain} in letzter Zeit viel Aufmerksamkeit.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Dieses Profil ähnelt den Profilen, denen du in letzter Zeit gefolgt hast.",
|
||||||
"follow_suggestions.personalized_suggestion": "Persönliche Empfehlung",
|
"follow_suggestions.personalized_suggestion": "Persönliche Empfehlung",
|
||||||
"follow_suggestions.popular_suggestion": "Beliebte Empfehlung",
|
"follow_suggestions.popular_suggestion": "Beliebte Empfehlung",
|
||||||
"follow_suggestions.view_all": "Alle anzeigen",
|
"follow_suggestions.view_all": "Alle anzeigen",
|
||||||
|
|
|
@ -277,7 +277,6 @@
|
||||||
"follow_request.authorize": "Authorise",
|
"follow_request.authorize": "Authorise",
|
||||||
"follow_request.reject": "Reject",
|
"follow_request.reject": "Reject",
|
||||||
"follow_requests.unlocked_explanation": "Even though your account is not locked, the {domain} staff thought you might want to review follow requests from these accounts manually.",
|
"follow_requests.unlocked_explanation": "Even though your account is not locked, the {domain} staff thought you might want to review follow requests from these accounts manually.",
|
||||||
"follow_suggestions.curated_suggestion": "Editors' Choice",
|
|
||||||
"follow_suggestions.dismiss": "Don't show again",
|
"follow_suggestions.dismiss": "Don't show again",
|
||||||
"follow_suggestions.personalized_suggestion": "Personalised suggestion",
|
"follow_suggestions.personalized_suggestion": "Personalised suggestion",
|
||||||
"follow_suggestions.popular_suggestion": "Popular suggestion",
|
"follow_suggestions.popular_suggestion": "Popular suggestion",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Autorizar",
|
"follow_request.authorize": "Autorizar",
|
||||||
"follow_request.reject": "Rechazar",
|
"follow_request.reject": "Rechazar",
|
||||||
"follow_requests.unlocked_explanation": "A pesar de que tu cuenta no es privada, el equipo de {domain} pensó que podrías querer revisar manualmente las solicitudes de seguimiento de estas cuentas.",
|
"follow_requests.unlocked_explanation": "A pesar de que tu cuenta no es privada, el equipo de {domain} pensó que podrías querer revisar manualmente las solicitudes de seguimiento de estas cuentas.",
|
||||||
"follow_suggestions.curated_suggestion": "Cuentas elegidas del servidor",
|
"follow_suggestions.curated_suggestion": "Selección del equipo",
|
||||||
"follow_suggestions.dismiss": "No mostrar de nuevo",
|
"follow_suggestions.dismiss": "No mostrar de nuevo",
|
||||||
|
"follow_suggestions.hints.featured": "Este perfil fue seleccionado a mano por el equipo de {domain}.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Este perfil es popular entre las cuentas que seguís.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Este perfil es uno de los más seguidos en {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Este perfil ha estado recibiendo recientemente mucha atención en {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Este perfil es similar a los que comenzaste a seguir.",
|
||||||
"follow_suggestions.personalized_suggestion": "Sugerencia personalizada",
|
"follow_suggestions.personalized_suggestion": "Sugerencia personalizada",
|
||||||
"follow_suggestions.popular_suggestion": "Sugerencia popular",
|
"follow_suggestions.popular_suggestion": "Sugerencia popular",
|
||||||
"follow_suggestions.view_all": "Ver todo",
|
"follow_suggestions.view_all": "Ver todo",
|
||||||
|
|
|
@ -279,6 +279,11 @@
|
||||||
"follow_requests.unlocked_explanation": "A pesar de que tu cuenta no es privada, el personal de {domain} ha pensado que quizás deberías revisar manualmente las solicitudes de seguimiento de estas cuentas.",
|
"follow_requests.unlocked_explanation": "A pesar de que tu cuenta no es privada, el personal de {domain} ha pensado que quizás deberías revisar manualmente las solicitudes de seguimiento de estas cuentas.",
|
||||||
"follow_suggestions.curated_suggestion": "Recomendaciones del equipo",
|
"follow_suggestions.curated_suggestion": "Recomendaciones del equipo",
|
||||||
"follow_suggestions.dismiss": "No mostrar de nuevo",
|
"follow_suggestions.dismiss": "No mostrar de nuevo",
|
||||||
|
"follow_suggestions.hints.featured": "Este perfil ha sido elegido a mano por el equipo de {domain}.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Este perfil es popular entre las personas que sigues.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Este perfil es uno de los más seguidos en {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Este perfil ha estado recibiendo recientemente mucha atención en {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Este perfil es similar a los perfiles que has seguido recientemente.",
|
||||||
"follow_suggestions.personalized_suggestion": "Sugerencia personalizada",
|
"follow_suggestions.personalized_suggestion": "Sugerencia personalizada",
|
||||||
"follow_suggestions.popular_suggestion": "Sugerencia popular",
|
"follow_suggestions.popular_suggestion": "Sugerencia popular",
|
||||||
"follow_suggestions.view_all": "Ver todo",
|
"follow_suggestions.view_all": "Ver todo",
|
||||||
|
|
|
@ -279,6 +279,11 @@
|
||||||
"follow_requests.unlocked_explanation": "A pesar de que tu cuenta no es privada, el personal de {domain} ha pensado que quizás deberías revisar manualmente las solicitudes de seguimiento de estas cuentas.",
|
"follow_requests.unlocked_explanation": "A pesar de que tu cuenta no es privada, el personal de {domain} ha pensado que quizás deberías revisar manualmente las solicitudes de seguimiento de estas cuentas.",
|
||||||
"follow_suggestions.curated_suggestion": "Recomendaciones del equipo",
|
"follow_suggestions.curated_suggestion": "Recomendaciones del equipo",
|
||||||
"follow_suggestions.dismiss": "No mostrar de nuevo",
|
"follow_suggestions.dismiss": "No mostrar de nuevo",
|
||||||
|
"follow_suggestions.hints.featured": "Este perfil ha sido elegido a mano por el equipo de {domain}.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Este perfil es popular entre las personas que sigues.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Este perfil es uno de los más seguidos en {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Este perfil ha estado recibiendo recientemente mucha atención en {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Este perfil es similar a los perfiles que has seguido recientemente.",
|
||||||
"follow_suggestions.personalized_suggestion": "Sugerencia personalizada",
|
"follow_suggestions.personalized_suggestion": "Sugerencia personalizada",
|
||||||
"follow_suggestions.popular_suggestion": "Sugerencia popular",
|
"follow_suggestions.popular_suggestion": "Sugerencia popular",
|
||||||
"follow_suggestions.view_all": "Ver todo",
|
"follow_suggestions.view_all": "Ver todo",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Baimendu",
|
"follow_request.authorize": "Baimendu",
|
||||||
"follow_request.reject": "Ukatu",
|
"follow_request.reject": "Ukatu",
|
||||||
"follow_requests.unlocked_explanation": "Zure kontua blokeatuta ez badago ere, {domain} domeinuko arduradunek uste dute kontu hauetako jarraipen eskaerak agian eskuz begiratu nahiko dituzula.",
|
"follow_requests.unlocked_explanation": "Zure kontua blokeatuta ez badago ere, {domain} domeinuko arduradunek uste dute kontu hauetako jarraipen eskaerak agian eskuz begiratu nahiko dituzula.",
|
||||||
"follow_suggestions.curated_suggestion": "Zerbitzariaren iradokizunak",
|
"follow_suggestions.curated_suggestion": "Domeinuaren iradokizuna",
|
||||||
"follow_suggestions.dismiss": "Ez erakutsi berriro",
|
"follow_suggestions.dismiss": "Ez erakutsi berriro",
|
||||||
|
"follow_suggestions.hints.featured": "Profil hau {domain} domeinuko taldeak eskuz aukeratu du.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Profil hau ezaguna da jarraitzen duzun jendearen artean.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Profil hau {domain} domeinuan gehien jarraitzen den profiletako bat da.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Profil hau arreta handia jasotzen ari da berriki {domain} domeinuan.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Profil hau duela gutxi jarraitu dituzun profil askoren antzekoa da.",
|
||||||
"follow_suggestions.personalized_suggestion": "Iradokizun pertsonalizatua",
|
"follow_suggestions.personalized_suggestion": "Iradokizun pertsonalizatua",
|
||||||
"follow_suggestions.popular_suggestion": "Iradokizun ezaguna",
|
"follow_suggestions.popular_suggestion": "Iradokizun ezaguna",
|
||||||
"follow_suggestions.view_all": "Ikusi denak",
|
"follow_suggestions.view_all": "Ikusi denak",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Valtuuta",
|
"follow_request.authorize": "Valtuuta",
|
||||||
"follow_request.reject": "Hylkää",
|
"follow_request.reject": "Hylkää",
|
||||||
"follow_requests.unlocked_explanation": "Vaikkei tiliäsi ole lukittu, palvelimen {domain} ylläpito on arvioinut, että saatat olla halukas tarkistamaan nämä seuraamispyynnöt erikseen.",
|
"follow_requests.unlocked_explanation": "Vaikkei tiliäsi ole lukittu, palvelimen {domain} ylläpito on arvioinut, että saatat olla halukas tarkistamaan nämä seuraamispyynnöt erikseen.",
|
||||||
"follow_suggestions.curated_suggestion": "Päätoimittajan valinta",
|
"follow_suggestions.curated_suggestion": "Ylläpidon valinta",
|
||||||
"follow_suggestions.dismiss": "Älä näytä uudelleen",
|
"follow_suggestions.dismiss": "Älä näytä uudelleen",
|
||||||
|
"follow_suggestions.hints.featured": "Tämän profiilin on valinnut palvelimen {domain} tiimi.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Tämä profiili on suosittu seuraamiesi henkilöiden parissa.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Tämä profiili on yksi seuratuimmista palvelimella {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Tämä profiili on viime aikoina saanut paljon huomiota palvelimella {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Tämä profiili on samankaltainen kuin profiilit, joita olet viimeksi seurannut.",
|
||||||
"follow_suggestions.personalized_suggestion": "Personoitu ehdotus",
|
"follow_suggestions.personalized_suggestion": "Personoitu ehdotus",
|
||||||
"follow_suggestions.popular_suggestion": "Suosittu ehdotus",
|
"follow_suggestions.popular_suggestion": "Suosittu ehdotus",
|
||||||
"follow_suggestions.view_all": "Näytä kaikki",
|
"follow_suggestions.view_all": "Näytä kaikki",
|
||||||
|
|
|
@ -49,6 +49,7 @@
|
||||||
"account.unendorse": "Huwag itampok sa profile",
|
"account.unendorse": "Huwag itampok sa profile",
|
||||||
"admin.dashboard.retention.cohort_size": "Mga bagong tagagamit",
|
"admin.dashboard.retention.cohort_size": "Mga bagong tagagamit",
|
||||||
"alert.rate_limited.message": "Mangyaring subukan muli pagkatapos ng {retry_time, time, medium}.",
|
"alert.rate_limited.message": "Mangyaring subukan muli pagkatapos ng {retry_time, time, medium}.",
|
||||||
|
"audio.hide": "Itago ang tunog",
|
||||||
"bundle_column_error.error.title": "Naku!",
|
"bundle_column_error.error.title": "Naku!",
|
||||||
"bundle_column_error.network.body": "Nagkaroon ng kamalian habang sinusubukang i-karga ang pahinang ito. Maaaring dahil ito sa pansamantalang problema ng iyong koneksyon sa internet o ang server na ito.",
|
"bundle_column_error.network.body": "Nagkaroon ng kamalian habang sinusubukang i-karga ang pahinang ito. Maaaring dahil ito sa pansamantalang problema ng iyong koneksyon sa internet o ang server na ito.",
|
||||||
"bundle_column_error.network.title": "Kamaliang network",
|
"bundle_column_error.network.title": "Kamaliang network",
|
||||||
|
@ -100,6 +101,7 @@
|
||||||
"compose_form.encryption_warning": "Ang mga post sa Mastodon ay hindi naka-encrypt nang dulo-dulo. Huwag magbahagi ng anumang sensitibong impormasyon sa Mastodon.",
|
"compose_form.encryption_warning": "Ang mga post sa Mastodon ay hindi naka-encrypt nang dulo-dulo. Huwag magbahagi ng anumang sensitibong impormasyon sa Mastodon.",
|
||||||
"compose_form.hashtag_warning": "Hindi maililista ang post na ito sa anumang hashtag dahil hindi ito nakapubliko. Mga nakapublikong post lamang ang mahahanap ayon sa hashtag.",
|
"compose_form.hashtag_warning": "Hindi maililista ang post na ito sa anumang hashtag dahil hindi ito nakapubliko. Mga nakapublikong post lamang ang mahahanap ayon sa hashtag.",
|
||||||
"compose_form.placeholder": "Anong nangyari?",
|
"compose_form.placeholder": "Anong nangyari?",
|
||||||
|
"compose_form.poll.multiple": "Maraming pagpipilian",
|
||||||
"compose_form.poll.single": "Piliin ang isa",
|
"compose_form.poll.single": "Piliin ang isa",
|
||||||
"compose_form.reply": "Tumugon",
|
"compose_form.reply": "Tumugon",
|
||||||
"compose_form.spoiler.unmarked": "Idagdag ang babala sa nilalaman",
|
"compose_form.spoiler.unmarked": "Idagdag ang babala sa nilalaman",
|
||||||
|
@ -109,6 +111,9 @@
|
||||||
"confirmations.block.message": "Sigurado ka bang gusto mong harangan si {name}?",
|
"confirmations.block.message": "Sigurado ka bang gusto mong harangan si {name}?",
|
||||||
"confirmations.cancel_follow_request.confirm": "Bawiin ang kahilingan",
|
"confirmations.cancel_follow_request.confirm": "Bawiin ang kahilingan",
|
||||||
"confirmations.cancel_follow_request.message": "Sigurdo ka bang gusto mong bawiin ang kahilingang sundan si/ang {name}?",
|
"confirmations.cancel_follow_request.message": "Sigurdo ka bang gusto mong bawiin ang kahilingang sundan si/ang {name}?",
|
||||||
|
"confirmations.delete.message": "Sigurado ka bang gusto mong burahin ang post na ito?",
|
||||||
|
"confirmations.delete_list.confirm": "Tanggalin",
|
||||||
|
"confirmations.delete_list.message": "Sigurado ka bang gusto mong burahin ang listahang ito?",
|
||||||
"confirmations.discard_edit_media.confirm": "Ipagpaliban",
|
"confirmations.discard_edit_media.confirm": "Ipagpaliban",
|
||||||
"confirmations.domain_block.confirm": "Harangan ang buong domain",
|
"confirmations.domain_block.confirm": "Harangan ang buong domain",
|
||||||
"confirmations.edit.confirm": "Baguhin",
|
"confirmations.edit.confirm": "Baguhin",
|
||||||
|
@ -188,6 +193,7 @@
|
||||||
"intervals.full.minutes": "{number, plural, one {# minuto} other {# na minuto}}",
|
"intervals.full.minutes": "{number, plural, one {# minuto} other {# na minuto}}",
|
||||||
"keyboard_shortcuts.description": "Paglalarawan",
|
"keyboard_shortcuts.description": "Paglalarawan",
|
||||||
"keyboard_shortcuts.down": "Ilipat pababa sa talaan",
|
"keyboard_shortcuts.down": "Ilipat pababa sa talaan",
|
||||||
|
"keyboard_shortcuts.mention": "Banggitin ang may-akda",
|
||||||
"keyboard_shortcuts.requests": "Buksan ang talaan ng mga kahilingan sa pagsunod",
|
"keyboard_shortcuts.requests": "Buksan ang talaan ng mga kahilingan sa pagsunod",
|
||||||
"keyboard_shortcuts.up": "Ilipat pataas sa talaan",
|
"keyboard_shortcuts.up": "Ilipat pataas sa talaan",
|
||||||
"lightbox.close": "Isara",
|
"lightbox.close": "Isara",
|
||||||
|
@ -203,24 +209,35 @@
|
||||||
"loading_indicator.label": "Kumakarga…",
|
"loading_indicator.label": "Kumakarga…",
|
||||||
"navigation_bar.about": "Tungkol dito",
|
"navigation_bar.about": "Tungkol dito",
|
||||||
"navigation_bar.blocks": "Nakaharang na mga tagagamit",
|
"navigation_bar.blocks": "Nakaharang na mga tagagamit",
|
||||||
|
"navigation_bar.direct": "Mga palihim na banggit",
|
||||||
"navigation_bar.favourites": "Mga paborito",
|
"navigation_bar.favourites": "Mga paborito",
|
||||||
|
"navigation_bar.follows_and_followers": "Mga sinusundan at tagasunod",
|
||||||
"navigation_bar.lists": "Mga listahan",
|
"navigation_bar.lists": "Mga listahan",
|
||||||
"navigation_bar.search": "Maghanap",
|
"navigation_bar.search": "Maghanap",
|
||||||
"notification.admin.report": "Iniulat ni {name} si {target}",
|
"notification.admin.report": "Iniulat ni {name} si {target}",
|
||||||
"notification.follow": "Sinundan ka ni {name}",
|
"notification.follow": "Sinundan ka ni {name}",
|
||||||
"notification.follow_request": "Hinihiling ni {name} na sundan ka",
|
"notification.follow_request": "Hinihiling ni {name} na sundan ka",
|
||||||
"notification.mention": "Binanggit ka ni {name}",
|
"notification.mention": "Binanggit ka ni {name}",
|
||||||
|
"notifications.clear": "Burahin mga abiso",
|
||||||
"notifications.column_settings.admin.report": "Mga bagong ulat:",
|
"notifications.column_settings.admin.report": "Mga bagong ulat:",
|
||||||
"notifications.column_settings.favourite": "Mga paborito:",
|
"notifications.column_settings.favourite": "Mga paborito:",
|
||||||
"notifications.column_settings.follow": "Mga bagong tagasunod:",
|
"notifications.column_settings.follow": "Mga bagong tagasunod:",
|
||||||
|
"notifications.column_settings.unread_notifications.category": "Hindi Nabasang mga Abiso",
|
||||||
"notifications.column_settings.update": "Mga pagbago:",
|
"notifications.column_settings.update": "Mga pagbago:",
|
||||||
"notifications.filter.all": "Lahat",
|
"notifications.filter.all": "Lahat",
|
||||||
|
"notifications.mark_as_read": "Markahan lahat ng abiso bilang nabasa na",
|
||||||
"onboarding.action.back": "Ibalik mo ako",
|
"onboarding.action.back": "Ibalik mo ako",
|
||||||
"onboarding.actions.back": "Ibalik mo ako",
|
"onboarding.actions.back": "Ibalik mo ako",
|
||||||
|
"onboarding.profile.note_hint": "Maaari mong @bangitin ang ibang mga tao o mga #hashtag…",
|
||||||
"onboarding.profile.save_and_continue": "Iimbak at magpatuloy",
|
"onboarding.profile.save_and_continue": "Iimbak at magpatuloy",
|
||||||
"onboarding.share.next_steps": "Mga posibleng susunod na hakbang:",
|
"onboarding.share.next_steps": "Mga posibleng susunod na hakbang:",
|
||||||
|
"poll.closed": "Sarado",
|
||||||
|
"poll.reveal": "Ipakita ang mga resulta",
|
||||||
"poll.voted": "Binoto mo para sa sagot na ito",
|
"poll.voted": "Binoto mo para sa sagot na ito",
|
||||||
"poll_button.remove_poll": "Tanggalin ang boto",
|
"poll_button.remove_poll": "Tanggalin ang boto",
|
||||||
|
"privacy.direct.long": "Lahat ng mga binanggit sa post",
|
||||||
|
"privacy.private.long": "Mga tagasunod mo lamang",
|
||||||
|
"privacy.private.short": "Mga tagasunod",
|
||||||
"relative_time.days": "{number}a",
|
"relative_time.days": "{number}a",
|
||||||
"relative_time.full.days": "{number, plural, one {# araw} other {# na araw}} ang nakalipas",
|
"relative_time.full.days": "{number, plural, one {# araw} other {# na araw}} ang nakalipas",
|
||||||
"relative_time.full.hours": "{number, plural, one {# oras} other {# na oras}} ang nakalipas",
|
"relative_time.full.hours": "{number, plural, one {# oras} other {# na oras}} ang nakalipas",
|
||||||
|
@ -247,15 +264,24 @@
|
||||||
"report.thanks.title_actionable": "Salamat sa pag-uulat, titingnan namin ito.",
|
"report.thanks.title_actionable": "Salamat sa pag-uulat, titingnan namin ito.",
|
||||||
"report_notification.categories.other": "Iba pa",
|
"report_notification.categories.other": "Iba pa",
|
||||||
"search_results.all": "Lahat",
|
"search_results.all": "Lahat",
|
||||||
|
"search_results.see_all": "Ipakita lahat",
|
||||||
"server_banner.learn_more": "Matuto nang higit pa",
|
"server_banner.learn_more": "Matuto nang higit pa",
|
||||||
|
"server_banner.server_stats": "Katayuan ng serbiro:",
|
||||||
|
"status.block": "Harangan si @{name}",
|
||||||
|
"status.delete": "Tanggalin",
|
||||||
|
"status.direct": "Palihim na banggitin si/ang @{name}",
|
||||||
"status.direct_indicator": "Palihim na banggit",
|
"status.direct_indicator": "Palihim na banggit",
|
||||||
"status.edit": "Baguhin",
|
"status.edit": "Baguhin",
|
||||||
"status.edited": "Binago noong {date}",
|
"status.edited": "Binago noong {date}",
|
||||||
"status.edited_x_times": "Binago {count, plural, one {{count} beses} other {{count} na beses}}",
|
"status.edited_x_times": "Binago {count, plural, one {{count} beses} other {{count} na beses}}",
|
||||||
"status.history.created": "Nilikha ni/ng {name} {date}",
|
"status.history.created": "Nilikha ni/ng {name} {date}",
|
||||||
"status.history.edited": "Binago ni/ng {name} {date}",
|
"status.history.edited": "Binago ni/ng {name} {date}",
|
||||||
|
"status.media.open": "Pindutin upang buksan",
|
||||||
|
"status.media.show": "Pindutin upang ipakita",
|
||||||
"status.mention": "Banggitin ang/si @{name}",
|
"status.mention": "Banggitin ang/si @{name}",
|
||||||
"status.more": "Higit pa",
|
"status.more": "Higit pa",
|
||||||
|
"status.read_more": "Basahin ang higit pa",
|
||||||
|
"status.reblogs.empty": "Wala pang nagpalakas ng post na ito. Kung may sinumang nagpalakas, makikita sila rito.",
|
||||||
"status.reply": "Tumugon",
|
"status.reply": "Tumugon",
|
||||||
"status.report": "I-ulat si/ang @{name}",
|
"status.report": "I-ulat si/ang @{name}",
|
||||||
"status.sensitive_warning": "Sensitibong nilalaman",
|
"status.sensitive_warning": "Sensitibong nilalaman",
|
||||||
|
@ -267,6 +293,7 @@
|
||||||
"status.translate": "Isalin",
|
"status.translate": "Isalin",
|
||||||
"status.translated_from_with": "Isalin mula sa {lang} gamit ang {provider}",
|
"status.translated_from_with": "Isalin mula sa {lang} gamit ang {provider}",
|
||||||
"status.uncached_media_warning": "Hindi makuha ang paunang tigin",
|
"status.uncached_media_warning": "Hindi makuha ang paunang tigin",
|
||||||
|
"tabs_bar.notifications": "Mga abiso",
|
||||||
"time_remaining.days": "{number, plural, one {# araw} other {# na araw}} ang natitira",
|
"time_remaining.days": "{number, plural, one {# araw} other {# na araw}} ang natitira",
|
||||||
"time_remaining.hours": "{number, plural, one {# oras} other {# na oras}} ang natitira",
|
"time_remaining.hours": "{number, plural, one {# oras} other {# na oras}} ang natitira",
|
||||||
"time_remaining.minutes": "{number, plural, one {# minuto} other {# na minuto}} ang natitira",
|
"time_remaining.minutes": "{number, plural, one {# minuto} other {# na minuto}} ang natitira",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Veit myndugleika",
|
"follow_request.authorize": "Veit myndugleika",
|
||||||
"follow_request.reject": "Nokta",
|
"follow_request.reject": "Nokta",
|
||||||
"follow_requests.unlocked_explanation": "Sjálvt um konta tín ikki er læst, so hugsa {domain} starvsfólkini, at tú kanska hevur hug at kanna umbønir um at fylgja frá hesum kontum við hond.",
|
"follow_requests.unlocked_explanation": "Sjálvt um konta tín ikki er læst, so hugsa {domain} starvsfólkini, at tú kanska hevur hug at kanna umbønir um at fylgja frá hesum kontum við hond.",
|
||||||
"follow_suggestions.curated_suggestion": "Val umsjónarfólksins",
|
"follow_suggestions.curated_suggestion": "Val hjá ábyrgdarfólki",
|
||||||
"follow_suggestions.dismiss": "Lat vera við at vísa",
|
"follow_suggestions.dismiss": "Lat vera við at vísa",
|
||||||
|
"follow_suggestions.hints.featured": "Hesin vangin er úrvaldur av toyminum handan {domain}.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Hesin vangin er vælumtóktur millum tey, tú fylgir.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Hesin vangin er ein av teimum, sum er mest fylgdur á {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Nýliga hava nógv lagt merki til hendan vangan á {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Hesin vangin líkist teimum, sum tú nýliga hevur fylgt.",
|
||||||
"follow_suggestions.personalized_suggestion": "Persónligt uppskot",
|
"follow_suggestions.personalized_suggestion": "Persónligt uppskot",
|
||||||
"follow_suggestions.popular_suggestion": "Vælumtókt uppskot",
|
"follow_suggestions.popular_suggestion": "Vælumtókt uppskot",
|
||||||
"follow_suggestions.view_all": "Vís øll",
|
"follow_suggestions.view_all": "Vís øll",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Goedkarre",
|
"follow_request.authorize": "Goedkarre",
|
||||||
"follow_request.reject": "Wegerje",
|
"follow_request.reject": "Wegerje",
|
||||||
"follow_requests.unlocked_explanation": "Ek al is jo account net besletten, de meiwurkers fan {domain} tinke dat jo miskien de folgjende folchfersiken hânmjittich kontrolearje.",
|
"follow_requests.unlocked_explanation": "Ek al is jo account net besletten, de meiwurkers fan {domain} tinke dat jo miskien de folgjende folchfersiken hânmjittich kontrolearje.",
|
||||||
"follow_suggestions.curated_suggestion": "Kar fan de moderator",
|
"follow_suggestions.curated_suggestion": "Spesjaal selektearre",
|
||||||
"follow_suggestions.dismiss": "Net mear werjaan",
|
"follow_suggestions.dismiss": "Net mear werjaan",
|
||||||
|
"follow_suggestions.hints.featured": "Dit profyl is hânmjittich troch it {domain}-team selektearre.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Dit profyl is populêr ûnder de minsken dy’t jo folgje.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Dit profyl is ien fan de meast folge op {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Dit profyl hat de lêste tiid in protte oandacht krigen op {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Dit profyl is hast lyk oan de profilen dy’t jo koartlyn folge hawwe.",
|
||||||
"follow_suggestions.personalized_suggestion": "Personalisearre suggestje",
|
"follow_suggestions.personalized_suggestion": "Personalisearre suggestje",
|
||||||
"follow_suggestions.popular_suggestion": "Populêre suggestje",
|
"follow_suggestions.popular_suggestion": "Populêre suggestje",
|
||||||
"follow_suggestions.view_all": "Alles werjaan",
|
"follow_suggestions.view_all": "Alles werjaan",
|
||||||
|
|
|
@ -226,7 +226,6 @@
|
||||||
"follow_request.authorize": "Ceadaigh",
|
"follow_request.authorize": "Ceadaigh",
|
||||||
"follow_request.reject": "Diúltaigh",
|
"follow_request.reject": "Diúltaigh",
|
||||||
"follow_requests.unlocked_explanation": "Cé nach bhfuil do chuntas faoi ghlas, cheap foireann {domain} gur mhaith leat súil siar ar iarratais leanúnaí as na cuntais seo.",
|
"follow_requests.unlocked_explanation": "Cé nach bhfuil do chuntas faoi ghlas, cheap foireann {domain} gur mhaith leat súil siar ar iarratais leanúnaí as na cuntais seo.",
|
||||||
"follow_suggestions.curated_suggestion": "Rogha an eagarthóra",
|
|
||||||
"follow_suggestions.dismiss": "Ná taispeáin arís",
|
"follow_suggestions.dismiss": "Ná taispeáin arís",
|
||||||
"follow_suggestions.personalized_suggestion": "Nod pearsantaithe",
|
"follow_suggestions.personalized_suggestion": "Nod pearsantaithe",
|
||||||
"follow_suggestions.popular_suggestion": "Nod coiteann",
|
"follow_suggestions.popular_suggestion": "Nod coiteann",
|
||||||
|
|
|
@ -277,7 +277,6 @@
|
||||||
"follow_request.authorize": "Ùghdarraich",
|
"follow_request.authorize": "Ùghdarraich",
|
||||||
"follow_request.reject": "Diùlt",
|
"follow_request.reject": "Diùlt",
|
||||||
"follow_requests.unlocked_explanation": "Ged nach eil an cunntas agad glaiste, tha sgioba {domain} dhen bheachd gum b’ fheàirrde thu lèirmheas a dhèanamh air na h-iarrtasan leantainn o na cunntasan seo a làimh.",
|
"follow_requests.unlocked_explanation": "Ged nach eil an cunntas agad glaiste, tha sgioba {domain} dhen bheachd gum b’ fheàirrde thu lèirmheas a dhèanamh air na h-iarrtasan leantainn o na cunntasan seo a làimh.",
|
||||||
"follow_suggestions.curated_suggestion": "Roghainn an deasaiche",
|
|
||||||
"follow_suggestions.dismiss": "Na seall seo a-rithist",
|
"follow_suggestions.dismiss": "Na seall seo a-rithist",
|
||||||
"follow_suggestions.personalized_suggestion": "Moladh pearsanaichte",
|
"follow_suggestions.personalized_suggestion": "Moladh pearsanaichte",
|
||||||
"follow_suggestions.popular_suggestion": "Moladh air a bheil fèill mhòr",
|
"follow_suggestions.popular_suggestion": "Moladh air a bheil fèill mhòr",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Autorizar",
|
"follow_request.authorize": "Autorizar",
|
||||||
"follow_request.reject": "Rexeitar",
|
"follow_request.reject": "Rexeitar",
|
||||||
"follow_requests.unlocked_explanation": "Malia que a túa conta non é privada, a administración de {domain} pensou que quizabes terías que revisar de xeito manual as solicitudes de seguiminto.",
|
"follow_requests.unlocked_explanation": "Malia que a túa conta non é privada, a administración de {domain} pensou que quizabes terías que revisar de xeito manual as solicitudes de seguiminto.",
|
||||||
"follow_suggestions.curated_suggestion": "O servidor suxíreche",
|
"follow_suggestions.curated_suggestion": "Suxestións do Servidor",
|
||||||
"follow_suggestions.dismiss": "Non mostrar máis",
|
"follow_suggestions.dismiss": "Non mostrar máis",
|
||||||
|
"follow_suggestions.hints.featured": "Este perfil foi escollido pola administración de {domain}.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Este perfil é popular entre as persoas que segues.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Este perfil é un dos máis seguidos en {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Este perfil tivo moitas interaccións últimamente en {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Este perfil ten semellanzas cos perfís que ti seguiches últimamente.",
|
||||||
"follow_suggestions.personalized_suggestion": "Suxestión personalizada",
|
"follow_suggestions.personalized_suggestion": "Suxestión personalizada",
|
||||||
"follow_suggestions.popular_suggestion": "Suxestión popular",
|
"follow_suggestions.popular_suggestion": "Suxestión popular",
|
||||||
"follow_suggestions.view_all": "Ver todas",
|
"follow_suggestions.view_all": "Ver todas",
|
||||||
|
|
|
@ -277,8 +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.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": "צפיה בכל",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Hitelesítés",
|
"follow_request.authorize": "Hitelesítés",
|
||||||
"follow_request.reject": "Elutasítás",
|
"follow_request.reject": "Elutasítás",
|
||||||
"follow_requests.unlocked_explanation": "Bár a fiókod nincs zárolva, a(z) {domain} csapata úgy gondolta, hogy talán kézzel szeretnéd ellenőrizni ezen fiókok követési kéréseit.",
|
"follow_requests.unlocked_explanation": "Bár a fiókod nincs zárolva, a(z) {domain} csapata úgy gondolta, hogy talán kézzel szeretnéd ellenőrizni ezen fiókok követési kéréseit.",
|
||||||
"follow_suggestions.curated_suggestion": "Szerkesztői ajánlat",
|
"follow_suggestions.curated_suggestion": "A stáb választása",
|
||||||
"follow_suggestions.dismiss": "Ne jelenjen meg újra",
|
"follow_suggestions.dismiss": "Ne jelenjen meg újra",
|
||||||
|
"follow_suggestions.hints.featured": "Ezt a profilt a(z) {domain} csapata választotta ki.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Ez a profil népszerű az általad követett emberek körében.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Ez a profil a leginkább követett a(z) {domain} oldalon.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Ez a profil mostanában sok figyelmet kap a(z) {domain} oldalon.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Ez a profil hasonló azokhoz a profilokhoz, melyeket nemrég kezdtél el követni.",
|
||||||
"follow_suggestions.personalized_suggestion": "Személyre szabott javaslat",
|
"follow_suggestions.personalized_suggestion": "Személyre szabott javaslat",
|
||||||
"follow_suggestions.popular_suggestion": "Népszerű javaslat",
|
"follow_suggestions.popular_suggestion": "Népszerű javaslat",
|
||||||
"follow_suggestions.view_all": "Összes megtekintése",
|
"follow_suggestions.view_all": "Összes megtekintése",
|
||||||
|
|
|
@ -197,7 +197,6 @@
|
||||||
"firehose.all": "Toto",
|
"firehose.all": "Toto",
|
||||||
"firehose.local": "Iste servitor",
|
"firehose.local": "Iste servitor",
|
||||||
"firehose.remote": "Altere servitores",
|
"firehose.remote": "Altere servitores",
|
||||||
"follow_suggestions.curated_suggestion": "Selection del editores",
|
|
||||||
"follow_suggestions.dismiss": "Non monstrar novemente",
|
"follow_suggestions.dismiss": "Non monstrar novemente",
|
||||||
"follow_suggestions.personalized_suggestion": "Suggestion personalisate",
|
"follow_suggestions.personalized_suggestion": "Suggestion personalisate",
|
||||||
"follow_suggestions.popular_suggestion": "Suggestion personalisate",
|
"follow_suggestions.popular_suggestion": "Suggestion personalisate",
|
||||||
|
|
|
@ -277,7 +277,6 @@
|
||||||
"follow_request.authorize": "Autorisar",
|
"follow_request.authorize": "Autorisar",
|
||||||
"follow_request.reject": "Rejecter",
|
"follow_request.reject": "Rejecter",
|
||||||
"follow_requests.unlocked_explanation": "Benque tu conto ne es cludet, li administratores de {domain} pensat que tu fórsan vell voler tractar seque-petitiones de tis-ci contos manualmen.",
|
"follow_requests.unlocked_explanation": "Benque tu conto ne es cludet, li administratores de {domain} pensat que tu fórsan vell voler tractar seque-petitiones de tis-ci contos manualmen.",
|
||||||
"follow_suggestions.curated_suggestion": "Selection del Servitor",
|
|
||||||
"follow_suggestions.dismiss": "Ne monstrar plu",
|
"follow_suggestions.dismiss": "Ne monstrar plu",
|
||||||
"follow_suggestions.personalized_suggestion": "Personalisat suggestion",
|
"follow_suggestions.personalized_suggestion": "Personalisat suggestion",
|
||||||
"follow_suggestions.popular_suggestion": "Populari suggestion",
|
"follow_suggestions.popular_suggestion": "Populari suggestion",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Heimila",
|
"follow_request.authorize": "Heimila",
|
||||||
"follow_request.reject": "Hafna",
|
"follow_request.reject": "Hafna",
|
||||||
"follow_requests.unlocked_explanation": "Jafnvel þótt aðgangurinn þinn sé ekki læstur, hafa umsjónarmenn {domain} ímyndað sér að þú gætir viljað yfirfara handvirkt fylgjendabeiðnir frá þessum notendum.",
|
"follow_requests.unlocked_explanation": "Jafnvel þótt aðgangurinn þinn sé ekki læstur, hafa umsjónarmenn {domain} ímyndað sér að þú gætir viljað yfirfara handvirkt fylgjendabeiðnir frá þessum notendum.",
|
||||||
"follow_suggestions.curated_suggestion": "Úrval umsjónarfólks",
|
"follow_suggestions.curated_suggestion": "Úrval starfsfólks",
|
||||||
"follow_suggestions.dismiss": "Ekki birta þetta aftur",
|
"follow_suggestions.dismiss": "Ekki birta þetta aftur",
|
||||||
|
"follow_suggestions.hints.featured": "Þetta notandasnið hefur verið handvalið af {domain}-teyminu.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Þetta notandasnið er vinsælt hjá fólki sem þú fylgist með.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Þetta notandasnið er eitt af þeim sem mest er fylgst með á {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Þetta notandasnið hefur vakið mikla athygli að undanförnu á {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Þetta notandasnið er líkt þeim sniðum sem þú hefur valið að fylgjast með að undanförnu.",
|
||||||
"follow_suggestions.personalized_suggestion": "Persónuaðlöguð tillaga",
|
"follow_suggestions.personalized_suggestion": "Persónuaðlöguð tillaga",
|
||||||
"follow_suggestions.popular_suggestion": "Vinsæl tillaga",
|
"follow_suggestions.popular_suggestion": "Vinsæl tillaga",
|
||||||
"follow_suggestions.view_all": "Skoða allt",
|
"follow_suggestions.view_all": "Skoða allt",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Autorizza",
|
"follow_request.authorize": "Autorizza",
|
||||||
"follow_request.reject": "Rifiuta",
|
"follow_request.reject": "Rifiuta",
|
||||||
"follow_requests.unlocked_explanation": "Anche se il tuo profilo non è privato, lo staff di {domain} ha pensato che potresti voler revisionare manualmente le richieste di seguirti da questi profili.",
|
"follow_requests.unlocked_explanation": "Anche se il tuo profilo non è privato, lo staff di {domain} ha pensato che potresti voler revisionare manualmente le richieste di seguirti da questi profili.",
|
||||||
"follow_suggestions.curated_suggestion": "Scelta dell'editore",
|
"follow_suggestions.curated_suggestion": "Scelta personale",
|
||||||
"follow_suggestions.dismiss": "Non visualizzare più",
|
"follow_suggestions.dismiss": "Non visualizzare più",
|
||||||
|
"follow_suggestions.hints.featured": "Questo profilo è stato selezionato personalmente dal team di {domain}.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Questo profilo è popolare tra le persone che segui.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Questo profilo è uno dei più seguiti su {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Recentemente, questo profilo ha ricevuto molta attenzione su {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Questo profilo è simile ai profili che hai seguito più recentemente.",
|
||||||
"follow_suggestions.personalized_suggestion": "Suggerimenti personalizzati",
|
"follow_suggestions.personalized_suggestion": "Suggerimenti personalizzati",
|
||||||
"follow_suggestions.popular_suggestion": "Suggerimento frequente",
|
"follow_suggestions.popular_suggestion": "Suggerimento frequente",
|
||||||
"follow_suggestions.view_all": "Vedi tutto",
|
"follow_suggestions.view_all": "Vedi tutto",
|
||||||
|
|
|
@ -277,7 +277,17 @@
|
||||||
"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.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.popular_suggestion": "人気のアカウント",
|
||||||
"follow_suggestions.view_all": "すべて表示",
|
"follow_suggestions.view_all": "すべて表示",
|
||||||
|
"follow_suggestions.who_to_follow": "フォローを増やしてみませんか?",
|
||||||
"followed_tags": "フォロー中のハッシュタグ",
|
"followed_tags": "フォロー中のハッシュタグ",
|
||||||
"footer.about": "概要",
|
"footer.about": "概要",
|
||||||
"footer.directory": "ディレクトリ",
|
"footer.directory": "ディレクトリ",
|
||||||
|
|
|
@ -277,8 +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.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": "모두 보기",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Autoriza",
|
"follow_request.authorize": "Autoriza",
|
||||||
"follow_request.reject": "Refuza",
|
"follow_request.reject": "Refuza",
|
||||||
"follow_requests.unlocked_explanation": "Aunke tu kuento no esta serrado, la taifa de {domain} kreye ke talvez keres revizar manualmente las solisitudes de segimento de estos kuentos.",
|
"follow_requests.unlocked_explanation": "Aunke tu kuento no esta serrado, la taifa de {domain} kreye ke talvez keres revizar manualmente las solisitudes de segimento de estos kuentos.",
|
||||||
"follow_suggestions.curated_suggestion": "Sujestion del sirvidor",
|
"follow_suggestions.curated_suggestion": "Seleksyon de la taifa",
|
||||||
"follow_suggestions.dismiss": "No amostra mas",
|
"follow_suggestions.dismiss": "No amostra mas",
|
||||||
|
"follow_suggestions.hints.featured": "Este profil tiene sido eskojido por la taifa de {domain}.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Este profil es popular entre las personas ke siges.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Este profil es uno de los mas segidos en {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Este profil tiene resivido muncha atansion resientemente en {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Este profil es similar a otros ke tienes segido resientemente.",
|
||||||
"follow_suggestions.personalized_suggestion": "Sujestion personalizada",
|
"follow_suggestions.personalized_suggestion": "Sujestion personalizada",
|
||||||
"follow_suggestions.popular_suggestion": "Sujestion populara",
|
"follow_suggestions.popular_suggestion": "Sujestion populara",
|
||||||
"follow_suggestions.view_all": "Ve todos",
|
"follow_suggestions.view_all": "Ve todos",
|
||||||
|
|
|
@ -269,8 +269,12 @@
|
||||||
"follow_request.authorize": "Autorizuoti",
|
"follow_request.authorize": "Autorizuoti",
|
||||||
"follow_request.reject": "Atmesti",
|
"follow_request.reject": "Atmesti",
|
||||||
"follow_requests.unlocked_explanation": "Nors tavo paskyra neužrakinta, {domain} personalas mano, kad galbūt norėsi rankiniu būdu patikrinti šių paskyrų sekimo užklausas.",
|
"follow_requests.unlocked_explanation": "Nors tavo paskyra neužrakinta, {domain} personalas mano, kad galbūt norėsi rankiniu būdu patikrinti šių paskyrų sekimo užklausas.",
|
||||||
"follow_suggestions.curated_suggestion": "Redaktorių pasirinkimas",
|
"follow_suggestions.curated_suggestion": "Personalo pasirinkimai",
|
||||||
"follow_suggestions.dismiss": "Daugiau nerodyti",
|
"follow_suggestions.dismiss": "Daugiau nerodyti",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Šis profilis yra populiarus tarp žmonių, kuriuos sekei.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Šis profilis yra vienas iš labiausiai sekamų {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Pastaruoju metu šis profilis sulaukia daug dėmesio šiame {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Šis profilis panašus į profilius, kuriuos neseniai sekei.",
|
||||||
"follow_suggestions.personalized_suggestion": "Suasmenintas pasiūlymas",
|
"follow_suggestions.personalized_suggestion": "Suasmenintas pasiūlymas",
|
||||||
"follow_suggestions.popular_suggestion": "Populiarus pasiūlymas",
|
"follow_suggestions.popular_suggestion": "Populiarus pasiūlymas",
|
||||||
"follow_suggestions.view_all": "Peržiūrėti viską",
|
"follow_suggestions.view_all": "Peržiūrėti viską",
|
||||||
|
|
|
@ -277,7 +277,6 @@
|
||||||
"follow_request.authorize": "Benarkan",
|
"follow_request.authorize": "Benarkan",
|
||||||
"follow_request.reject": "Tolak",
|
"follow_request.reject": "Tolak",
|
||||||
"follow_requests.unlocked_explanation": "Walaupun akaun anda tidak dikunci, kakitangan {domain} merasakan anda mungkin ingin menyemak permintaan ikutan daripada akaun ini secara manual.",
|
"follow_requests.unlocked_explanation": "Walaupun akaun anda tidak dikunci, kakitangan {domain} merasakan anda mungkin ingin menyemak permintaan ikutan daripada akaun ini secara manual.",
|
||||||
"follow_suggestions.curated_suggestion": "Pilihan Editor",
|
|
||||||
"follow_suggestions.dismiss": "Jangan papar lagi",
|
"follow_suggestions.dismiss": "Jangan papar lagi",
|
||||||
"follow_suggestions.personalized_suggestion": "Cadangan peribadi",
|
"follow_suggestions.personalized_suggestion": "Cadangan peribadi",
|
||||||
"follow_suggestions.popular_suggestion": "Cadangan terkenal",
|
"follow_suggestions.popular_suggestion": "Cadangan terkenal",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Goedkeuren",
|
"follow_request.authorize": "Goedkeuren",
|
||||||
"follow_request.reject": "Afwijzen",
|
"follow_request.reject": "Afwijzen",
|
||||||
"follow_requests.unlocked_explanation": "Ook al is jouw account niet besloten, de medewerkers van {domain} denken dat jij misschien de volgende volgverzoeken handmatig wil controleren.",
|
"follow_requests.unlocked_explanation": "Ook al is jouw account niet besloten, de medewerkers van {domain} denken dat jij misschien de volgende volgverzoeken handmatig wil controleren.",
|
||||||
"follow_suggestions.curated_suggestion": "Keuze van de moderator(en)",
|
"follow_suggestions.curated_suggestion": "Speciaal geselecteerd",
|
||||||
"follow_suggestions.dismiss": "Niet meer weergeven",
|
"follow_suggestions.dismiss": "Niet meer weergeven",
|
||||||
|
"follow_suggestions.hints.featured": "Deze gebruiker is geselecteerd door het team van {domain}.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Deze gebruiker is populair onder de mensen die jij volgt.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Deze gebruiker is een van de meest gevolgde gebruikers op {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Deze gebruiker is de laatste tijd erg populair op {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Deze gebruiker is vergelijkbaar met gebruikers die je recentelijk hebt gevolgd.",
|
||||||
"follow_suggestions.personalized_suggestion": "Gepersonaliseerde aanbeveling",
|
"follow_suggestions.personalized_suggestion": "Gepersonaliseerde aanbeveling",
|
||||||
"follow_suggestions.popular_suggestion": "Populaire aanbeveling",
|
"follow_suggestions.popular_suggestion": "Populaire aanbeveling",
|
||||||
"follow_suggestions.view_all": "Alles weergeven",
|
"follow_suggestions.view_all": "Alles weergeven",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Autoryzuj",
|
"follow_request.authorize": "Autoryzuj",
|
||||||
"follow_request.reject": "Odrzuć",
|
"follow_request.reject": "Odrzuć",
|
||||||
"follow_requests.unlocked_explanation": "Mimo że Twoje konto nie jest zablokowane, zespół {domain} uznał że możesz chcieć ręcznie przejrzeć prośby o możliwość obserwacji.",
|
"follow_requests.unlocked_explanation": "Mimo że Twoje konto nie jest zablokowane, zespół {domain} uznał że możesz chcieć ręcznie przejrzeć prośby o możliwość obserwacji.",
|
||||||
"follow_suggestions.curated_suggestion": "Wybór redakcji",
|
"follow_suggestions.curated_suggestion": "Wybrane przez personel",
|
||||||
"follow_suggestions.dismiss": "Nie pokazuj ponownie",
|
"follow_suggestions.dismiss": "Nie pokazuj ponownie",
|
||||||
|
"follow_suggestions.hints.featured": "Ten profil został wybrany przez zespół {domain}.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Ten profil jest popularny w gronie użytkowników, których obserwujesz.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Ten profil jest jednym z najczęściej obserwowanych na {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Ten profil otrzymuje dużo interakcji na {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Ten profil jest podobny do profili ostatnio przez ciebie zaobserwowanych.",
|
||||||
"follow_suggestions.personalized_suggestion": "Sugestia spersonalizowana",
|
"follow_suggestions.personalized_suggestion": "Sugestia spersonalizowana",
|
||||||
"follow_suggestions.popular_suggestion": "Sugestia popularna",
|
"follow_suggestions.popular_suggestion": "Sugestia popularna",
|
||||||
"follow_suggestions.view_all": "Pokaż wszystkie",
|
"follow_suggestions.view_all": "Pokaż wszystkie",
|
||||||
|
|
|
@ -277,7 +277,6 @@
|
||||||
"follow_request.authorize": "Aprovar",
|
"follow_request.authorize": "Aprovar",
|
||||||
"follow_request.reject": "Recusar",
|
"follow_request.reject": "Recusar",
|
||||||
"follow_requests.unlocked_explanation": "Apesar de seu perfil não ser trancado, {domain} exige que você revise a solicitação para te seguir destes perfis manualmente.",
|
"follow_requests.unlocked_explanation": "Apesar de seu perfil não ser trancado, {domain} exige que você revise a solicitação para te seguir destes perfis manualmente.",
|
||||||
"follow_suggestions.curated_suggestion": "Escolha dos editores",
|
|
||||||
"follow_suggestions.dismiss": "Não mostrar novamente",
|
"follow_suggestions.dismiss": "Não mostrar novamente",
|
||||||
"follow_suggestions.personalized_suggestion": "Sugestão personalizada",
|
"follow_suggestions.personalized_suggestion": "Sugestão personalizada",
|
||||||
"follow_suggestions.popular_suggestion": "Sugestão popular",
|
"follow_suggestions.popular_suggestion": "Sugestão popular",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Autorizar",
|
"follow_request.authorize": "Autorizar",
|
||||||
"follow_request.reject": "Rejeitar",
|
"follow_request.reject": "Rejeitar",
|
||||||
"follow_requests.unlocked_explanation": "Apesar de a sua não ser privada, a administração de {domain} pensa que poderá querer rever manualmente os pedidos de seguimento dessas contas.",
|
"follow_requests.unlocked_explanation": "Apesar de a sua não ser privada, a administração de {domain} pensa que poderá querer rever manualmente os pedidos de seguimento dessas contas.",
|
||||||
"follow_suggestions.curated_suggestion": "Escolha dos Editores",
|
"follow_suggestions.curated_suggestion": "Escolha da equipe",
|
||||||
"follow_suggestions.dismiss": "Não mostrar novamente",
|
"follow_suggestions.dismiss": "Não mostrar novamente",
|
||||||
|
"follow_suggestions.hints.featured": "Este perfil foi escolhido a dedo pela equipe {domain}.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Este perfil é popular entre as pessoas que você segue.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Este perfil é um dos mais seguidos no {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Este perfil tem recebido recentemente muita atenção no {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Este perfil é semelhante aos perfis que você seguiu mais recentemente.",
|
||||||
"follow_suggestions.personalized_suggestion": "Sugestão personalizada",
|
"follow_suggestions.personalized_suggestion": "Sugestão personalizada",
|
||||||
"follow_suggestions.popular_suggestion": "Sugestão popular",
|
"follow_suggestions.popular_suggestion": "Sugestão popular",
|
||||||
"follow_suggestions.view_all": "Ver tudo",
|
"follow_suggestions.view_all": "Ver tudo",
|
||||||
|
|
|
@ -265,7 +265,6 @@
|
||||||
"follow_request.authorize": "Acceptă",
|
"follow_request.authorize": "Acceptă",
|
||||||
"follow_request.reject": "Respinge",
|
"follow_request.reject": "Respinge",
|
||||||
"follow_requests.unlocked_explanation": "Chiar dacă contul tău nu este blocat, personalul {domain} a considerat că ai putea prefera să consulți manual cererile de abonare de la aceste conturi.",
|
"follow_requests.unlocked_explanation": "Chiar dacă contul tău nu este blocat, personalul {domain} a considerat că ai putea prefera să consulți manual cererile de abonare de la aceste conturi.",
|
||||||
"follow_suggestions.curated_suggestion": "Alegerile Editorilor",
|
|
||||||
"follow_suggestions.dismiss": "Nu mai afișa din nou",
|
"follow_suggestions.dismiss": "Nu mai afișa din nou",
|
||||||
"follow_suggestions.personalized_suggestion": "Sugestie personalizată",
|
"follow_suggestions.personalized_suggestion": "Sugestie personalizată",
|
||||||
"follow_suggestions.popular_suggestion": "Sugestie populară",
|
"follow_suggestions.popular_suggestion": "Sugestie populară",
|
||||||
|
|
|
@ -277,7 +277,6 @@
|
||||||
"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.personalized_suggestion": "Персонализированное предложение",
|
"follow_suggestions.personalized_suggestion": "Персонализированное предложение",
|
||||||
"follow_suggestions.popular_suggestion": "Популярное предложение",
|
"follow_suggestions.popular_suggestion": "Популярное предложение",
|
||||||
|
|
|
@ -277,7 +277,6 @@
|
||||||
"follow_request.authorize": "Povoľ prístup",
|
"follow_request.authorize": "Povoľ prístup",
|
||||||
"follow_request.reject": "Odmietni",
|
"follow_request.reject": "Odmietni",
|
||||||
"follow_requests.unlocked_explanation": "Síce Váš učet nie je uzamknutý, ale {domain} tím si myslel že môžete chcieť skontrolovať žiadosti o sledovanie z týchto účtov manuálne.",
|
"follow_requests.unlocked_explanation": "Síce Váš učet nie je uzamknutý, ale {domain} tím si myslel že môžete chcieť skontrolovať žiadosti o sledovanie z týchto účtov manuálne.",
|
||||||
"follow_suggestions.curated_suggestion": "Výber zo servera",
|
|
||||||
"follow_suggestions.dismiss": "Znovu nezobrazuj",
|
"follow_suggestions.dismiss": "Znovu nezobrazuj",
|
||||||
"follow_suggestions.personalized_suggestion": "Prispôsobené odporúčania",
|
"follow_suggestions.personalized_suggestion": "Prispôsobené odporúčania",
|
||||||
"follow_suggestions.popular_suggestion": "Populárne návrhy",
|
"follow_suggestions.popular_suggestion": "Populárne návrhy",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Overi",
|
"follow_request.authorize": "Overi",
|
||||||
"follow_request.reject": "Zavrni",
|
"follow_request.reject": "Zavrni",
|
||||||
"follow_requests.unlocked_explanation": "Čeprav vaš račun ni zaklenjen, zaposleni pri {domain} menijo, da bi morda želeli pregledati zahteve za sledenje teh računov ročno.",
|
"follow_requests.unlocked_explanation": "Čeprav vaš račun ni zaklenjen, zaposleni pri {domain} menijo, da bi morda želeli pregledati zahteve za sledenje teh računov ročno.",
|
||||||
"follow_suggestions.curated_suggestion": "Izbor urednikov",
|
"follow_suggestions.curated_suggestion": "Izbor osebja",
|
||||||
"follow_suggestions.dismiss": "Ne pokaži več",
|
"follow_suggestions.dismiss": "Ne pokaži več",
|
||||||
|
"follow_suggestions.hints.featured": "Ta profil so izbrali skrbniki strežnika {domain}.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Ta profil je priljubljen med osebami, ki jim sledite.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Ta profil na strežniku {domain} je en izmed najbolj sledenih.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Ta profil na strežniku {domain} je nedavno prejel veliko pozornosti.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Ta profil je podoben profilom, ki ste jim nedavno začeli slediti.",
|
||||||
"follow_suggestions.personalized_suggestion": "Osebno prilagojen predlog",
|
"follow_suggestions.personalized_suggestion": "Osebno prilagojen predlog",
|
||||||
"follow_suggestions.popular_suggestion": "Priljubljen predlog",
|
"follow_suggestions.popular_suggestion": "Priljubljen predlog",
|
||||||
"follow_suggestions.view_all": "Pokaži vse",
|
"follow_suggestions.view_all": "Pokaži vse",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Autorizoje",
|
"follow_request.authorize": "Autorizoje",
|
||||||
"follow_request.reject": "Hidhe tej",
|
"follow_request.reject": "Hidhe tej",
|
||||||
"follow_requests.unlocked_explanation": "Edhe pse llogaria juaj s’është e kyçur, ekipi i {domain} mendoi se mund të donit të shqyrtonit dorazi kërkesa ndjekjeje prej këtyre llogarive.",
|
"follow_requests.unlocked_explanation": "Edhe pse llogaria juaj s’është e kyçur, ekipi i {domain} mendoi se mund të donit të shqyrtonit dorazi kërkesa ndjekjeje prej këtyre llogarive.",
|
||||||
"follow_suggestions.curated_suggestion": "Zgjedhur nga Ekipi",
|
"follow_suggestions.curated_suggestion": "Zgjedhur nga ekipi",
|
||||||
"follow_suggestions.dismiss": "Mos shfaq më",
|
"follow_suggestions.dismiss": "Mos shfaq më",
|
||||||
|
"follow_suggestions.hints.featured": "Ky profil është zgjedhur nga ekipi {domain}.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Ky profil është popullor mes personave që ndiqni.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Ky profil është një nga më të ndjekur në {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Ky profil ka tërhequr mjaft vëmendjen së fundi në {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Ky profil është i ngjashëm me profile që keni ndjekur tani afër.",
|
||||||
"follow_suggestions.personalized_suggestion": "Sugjerim i personalizuar",
|
"follow_suggestions.personalized_suggestion": "Sugjerim i personalizuar",
|
||||||
"follow_suggestions.popular_suggestion": "Sugjerim popullor",
|
"follow_suggestions.popular_suggestion": "Sugjerim popullor",
|
||||||
"follow_suggestions.view_all": "Shihni krejt",
|
"follow_suggestions.view_all": "Shihni krejt",
|
||||||
|
|
|
@ -277,7 +277,6 @@
|
||||||
"follow_request.authorize": "Odobri",
|
"follow_request.authorize": "Odobri",
|
||||||
"follow_request.reject": "Odbij",
|
"follow_request.reject": "Odbij",
|
||||||
"follow_requests.unlocked_explanation": "Iako vaš nalog nije zaključan, osoblje {domain} smatra da biste možda želeli da ručno pregledate zahteve za praćenje sa ovih naloga.",
|
"follow_requests.unlocked_explanation": "Iako vaš nalog nije zaključan, osoblje {domain} smatra da biste možda želeli da ručno pregledate zahteve za praćenje sa ovih naloga.",
|
||||||
"follow_suggestions.curated_suggestion": "Izbor urednika",
|
|
||||||
"follow_suggestions.dismiss": "Ne prikazuj ponovo",
|
"follow_suggestions.dismiss": "Ne prikazuj ponovo",
|
||||||
"follow_suggestions.personalized_suggestion": "Personalizovani predlog",
|
"follow_suggestions.personalized_suggestion": "Personalizovani predlog",
|
||||||
"follow_suggestions.popular_suggestion": "Popularni predlog",
|
"follow_suggestions.popular_suggestion": "Popularni predlog",
|
||||||
|
|
|
@ -277,8 +277,12 @@
|
||||||
"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": "Прикажи све",
|
||||||
|
|
|
@ -277,7 +277,6 @@
|
||||||
"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.personalized_suggestion": "ข้อเสนอแนะเฉพาะบุคคล",
|
"follow_suggestions.personalized_suggestion": "ข้อเสนอแนะเฉพาะบุคคล",
|
||||||
"follow_suggestions.popular_suggestion": "ข้อเสนอแนะยอดนิยม",
|
"follow_suggestions.popular_suggestion": "ข้อเสนอแนะยอดนิยม",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "İzin Ver",
|
"follow_request.authorize": "İzin Ver",
|
||||||
"follow_request.reject": "Reddet",
|
"follow_request.reject": "Reddet",
|
||||||
"follow_requests.unlocked_explanation": "Hesabınız kilitli olmasa da, {domain} personeli bu hesaplardan gelen takip isteklerini gözden geçirmek isteyebileceğinizi düşündü.",
|
"follow_requests.unlocked_explanation": "Hesabınız kilitli olmasa da, {domain} personeli bu hesaplardan gelen takip isteklerini gözden geçirmek isteyebileceğinizi düşündü.",
|
||||||
"follow_suggestions.curated_suggestion": "Editörün Seçimi",
|
"follow_suggestions.curated_suggestion": "Çalışanların seçtikleri",
|
||||||
"follow_suggestions.dismiss": "Tekrar gösterme",
|
"follow_suggestions.dismiss": "Tekrar gösterme",
|
||||||
|
"follow_suggestions.hints.featured": "Bu profil {domain} ekibi tarafından elle seçilmiştir.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Bu profil takip ettiğiniz insanlar arasında popülerdir.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Bu, {domain} sunucusunda en fazla izlenen profildir.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Bu, {domain} sunucusunda son zamanlarda oldukça fazla dikkat çeken bir profildir.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Bu profil, son zamanlarda takip ettiğiniz profillere benziyor.",
|
||||||
"follow_suggestions.personalized_suggestion": "Kişiselleşmiş öneriler",
|
"follow_suggestions.personalized_suggestion": "Kişiselleşmiş öneriler",
|
||||||
"follow_suggestions.popular_suggestion": "Popüler öneriler",
|
"follow_suggestions.popular_suggestion": "Popüler öneriler",
|
||||||
"follow_suggestions.view_all": "Tümünü gör",
|
"follow_suggestions.view_all": "Tümünü gör",
|
||||||
|
|
|
@ -277,8 +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.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": "Переглянути все",
|
||||||
|
|
|
@ -277,8 +277,13 @@
|
||||||
"follow_request.authorize": "Chấp nhận",
|
"follow_request.authorize": "Chấp nhận",
|
||||||
"follow_request.reject": "Từ chối",
|
"follow_request.reject": "Từ chối",
|
||||||
"follow_requests.unlocked_explanation": "Mặc dù tài khoản của bạn đang ở chế độ công khai, quản trị viên của {domain} vẫn tin rằng bạn sẽ muốn xem lại yêu cầu theo dõi từ những người khác.",
|
"follow_requests.unlocked_explanation": "Mặc dù tài khoản của bạn đang ở chế độ công khai, quản trị viên của {domain} vẫn tin rằng bạn sẽ muốn xem lại yêu cầu theo dõi từ những người khác.",
|
||||||
"follow_suggestions.curated_suggestion": "Lựa chọn của máy chủ",
|
"follow_suggestions.curated_suggestion": "Gợi ý từ máy chủ",
|
||||||
"follow_suggestions.dismiss": "Không hiện lại",
|
"follow_suggestions.dismiss": "Không hiện lại",
|
||||||
|
"follow_suggestions.hints.featured": "Người này được đội ngũ {domain} đề xuất.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Người này nổi tiếng với những người bạn theo dõi.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Người này được theo dõi nhiều nhất trên {domain}.",
|
||||||
|
"follow_suggestions.hints.most_interactions": "Người này đang thu hút sự chú ý trên {domain}.",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "Người này có nét giống những người mà bạn theo dõi gần đây.",
|
||||||
"follow_suggestions.personalized_suggestion": "Gợi ý cá nhân hóa",
|
"follow_suggestions.personalized_suggestion": "Gợi ý cá nhân hóa",
|
||||||
"follow_suggestions.popular_suggestion": "Những người nổi tiếng",
|
"follow_suggestions.popular_suggestion": "Những người nổi tiếng",
|
||||||
"follow_suggestions.view_all": "Xem tất cả",
|
"follow_suggestions.view_all": "Xem tất cả",
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
"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.copy": "复制个人资料链接",
|
||||||
"account.direct": "私下提及 @{name}",
|
"account.direct": "私下提及 @{name}",
|
||||||
"account.disable_notifications": "当 @{name} 发布嘟文时不要通知我",
|
"account.disable_notifications": "当 @{name} 发布嘟文时不要通知我",
|
||||||
"account.domain_blocked": "域名已屏蔽",
|
"account.domain_blocked": "域名已屏蔽",
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
"account.mute_notifications_short": "关闭通知",
|
"account.mute_notifications_short": "关闭通知",
|
||||||
"account.mute_short": "隐藏",
|
"account.mute_short": "隐藏",
|
||||||
"account.muted": "已隐藏",
|
"account.muted": "已隐藏",
|
||||||
"account.mutual": "互粉好友",
|
"account.mutual": "互相关注",
|
||||||
"account.no_bio": "未提供描述。",
|
"account.no_bio": "未提供描述。",
|
||||||
"account.open_original_page": "打开原始页面",
|
"account.open_original_page": "打开原始页面",
|
||||||
"account.posts": "嘟文",
|
"account.posts": "嘟文",
|
||||||
|
@ -277,8 +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.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": "查看全部",
|
||||||
|
@ -442,7 +447,7 @@
|
||||||
"notifications.column_settings.alert": "桌面通知",
|
"notifications.column_settings.alert": "桌面通知",
|
||||||
"notifications.column_settings.favourite": "喜欢:",
|
"notifications.column_settings.favourite": "喜欢:",
|
||||||
"notifications.column_settings.filter_bar.advanced": "显示所有类别",
|
"notifications.column_settings.filter_bar.advanced": "显示所有类别",
|
||||||
"notifications.column_settings.filter_bar.category": "快速过滤栏",
|
"notifications.column_settings.filter_bar.category": "快速筛选栏",
|
||||||
"notifications.column_settings.filter_bar.show_bar": "显示过滤栏",
|
"notifications.column_settings.filter_bar.show_bar": "显示过滤栏",
|
||||||
"notifications.column_settings.follow": "新粉丝:",
|
"notifications.column_settings.follow": "新粉丝:",
|
||||||
"notifications.column_settings.follow_request": "新关注请求:",
|
"notifications.column_settings.follow_request": "新关注请求:",
|
||||||
|
|
|
@ -277,7 +277,6 @@
|
||||||
"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.personalized_suggestion": "個人化推薦",
|
"follow_suggestions.personalized_suggestion": "個人化推薦",
|
||||||
"follow_suggestions.popular_suggestion": "熱門推薦",
|
"follow_suggestions.popular_suggestion": "熱門推薦",
|
||||||
|
|
|
@ -279,6 +279,11 @@
|
||||||
"follow_requests.unlocked_explanation": "即便您的帳號未被鎖定,{domain} 的管理員認為您可能想要自己審核這些帳號的跟隨請求。",
|
"follow_requests.unlocked_explanation": "即便您的帳號未被鎖定,{domain} 的管理員認為您可能想要自己審核這些帳號的跟隨請求。",
|
||||||
"follow_suggestions.curated_suggestion": "精選內容",
|
"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="24" viewBox="0 -960 960 960" width="24"><path d="m260-260 300-140 140-300-300 140-140 300Zm220-180q-17 0-28.5-11.5T440-480q0-17 11.5-28.5T480-520q17 0 28.5 11.5T520-480q0 17-11.5 28.5T480-440Zm0 360q-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>
|
After Width: | Height: | Size: 437 B |
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="m260-260 300-140 140-300-300 140-140 300Zm220-180q-17 0-28.5-11.5T440-480q0-17 11.5-28.5T480-520q17 0 28.5 11.5T520-480q0 17-11.5 28.5T480-440Zm0 360q-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-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/></svg>
|
After Width: | Height: | Size: 533 B |
|
@ -210,12 +210,6 @@ html {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Change the background colors of media and video spoilers
|
|
||||||
.media-spoiler,
|
|
||||||
.video-player__spoiler {
|
|
||||||
background: $ui-base-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.account-gallery__item a {
|
.account-gallery__item a {
|
||||||
background-color: $ui-base-color;
|
background-color: $ui-base-color;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4325,35 +4325,6 @@ a.status-card {
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
.media-spoiler {
|
|
||||||
background: $base-overlay-background;
|
|
||||||
color: $darker-text-color;
|
|
||||||
border: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
border-radius: 4px;
|
|
||||||
appearance: none;
|
|
||||||
|
|
||||||
&:hover,
|
|
||||||
&:active,
|
|
||||||
&:focus {
|
|
||||||
padding: 0;
|
|
||||||
color: lighten($darker-text-color, 8%);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.media-spoiler__warning {
|
|
||||||
display: block;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.media-spoiler__trigger {
|
|
||||||
display: block;
|
|
||||||
font-size: 11px;
|
|
||||||
font-weight: 700;
|
|
||||||
}
|
|
||||||
|
|
||||||
.spoiler-button {
|
.spoiler-button {
|
||||||
top: 0;
|
top: 0;
|
||||||
inset-inline-start: 0;
|
inset-inline-start: 0;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
class AccountSuggestions::FriendsOfFriendsSource < AccountSuggestions::Source
|
class AccountSuggestions::FriendsOfFriendsSource < AccountSuggestions::Source
|
||||||
def get(account, limit: 10)
|
def get(account, limit: DEFAULT_LIMIT)
|
||||||
Account.find_by_sql([<<~SQL.squish, { id: account.id, limit: limit }]).map { |row| [row.id, key] }
|
Account.find_by_sql([<<~SQL.squish, { id: account.id, limit: limit }]).map { |row| [row.id, key] }
|
||||||
WITH first_degree AS (
|
WITH first_degree AS (
|
||||||
SELECT target_account_id
|
SELECT target_account_id
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
class AccountSuggestions::GlobalSource < AccountSuggestions::Source
|
class AccountSuggestions::GlobalSource < AccountSuggestions::Source
|
||||||
def get(account, limit: 10)
|
def get(account, limit: DEFAULT_LIMIT)
|
||||||
FollowRecommendation.localized(content_locale).joins(:account).merge(base_account_scope(account)).order(rank: :desc).limit(limit).pluck(:account_id, :reason)
|
FollowRecommendation.localized(content_locale).joins(:account).merge(base_account_scope(account)).order(rank: :desc).limit(limit).pluck(:account_id, :reason)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
class AccountSuggestions::SettingSource < AccountSuggestions::Source
|
class AccountSuggestions::SettingSource < AccountSuggestions::Source
|
||||||
def get(account, limit: 10)
|
def get(account, limit: DEFAULT_LIMIT)
|
||||||
if setting_enabled?
|
if setting_enabled?
|
||||||
base_account_scope(account).where(setting_to_where_condition).limit(limit).pluck(:id).zip([key].cycle)
|
base_account_scope(account).where(setting_to_where_condition).limit(limit).pluck(:id).zip([key].cycle)
|
||||||
else
|
else
|
||||||
|
|
|
@ -47,7 +47,7 @@ class AccountSuggestions::SimilarProfilesSource < AccountSuggestions::Source
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def get(account, limit: 10)
|
def get(account, limit: DEFAULT_LIMIT)
|
||||||
recently_followed_account_ids = account.active_relationships.recent.limit(5).pluck(:target_account_id)
|
recently_followed_account_ids = account.active_relationships.recent.limit(5).pluck(:target_account_id)
|
||||||
|
|
||||||
if Chewy.enabled? && !recently_followed_account_ids.empty?
|
if Chewy.enabled? && !recently_followed_account_ids.empty?
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
class AccountSuggestions::Source
|
class AccountSuggestions::Source
|
||||||
|
DEFAULT_LIMIT = 10
|
||||||
|
|
||||||
def get(_account, **kwargs)
|
def get(_account, **kwargs)
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
end
|
end
|
||||||
|
|
|
@ -97,6 +97,9 @@ class UserRole < ApplicationRecord
|
||||||
before_validation :set_position
|
before_validation :set_position
|
||||||
|
|
||||||
scope :assignable, -> { where.not(id: EVERYONE_ROLE_ID).order(position: :asc) }
|
scope :assignable, -> { where.not(id: EVERYONE_ROLE_ID).order(position: :asc) }
|
||||||
|
scope :highlighted, -> { where(highlighted: true) }
|
||||||
|
scope :with_color, -> { where.not(color: [nil, '']) }
|
||||||
|
scope :providing_styles, -> { highlighted.with_color }
|
||||||
|
|
||||||
has_many :users, inverse_of: :role, foreign_key: 'role_id', dependent: :nullify
|
has_many :users, inverse_of: :role, foreign_key: 'role_id', dependent: :nullify
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,32 @@ class TagSearchService < BaseService
|
||||||
private
|
private
|
||||||
|
|
||||||
def from_elasticsearch
|
def from_elasticsearch
|
||||||
query = {
|
definition = TagsIndex.query(elastic_search_query)
|
||||||
|
definition = definition.filter(elastic_search_filter) if @options[:exclude_unreviewed]
|
||||||
|
|
||||||
|
ensure_exact_match(definition.limit(@limit).offset(@offset).objects.compact)
|
||||||
|
rescue Faraday::ConnectionFailed, Parslet::ParseFailed
|
||||||
|
nil
|
||||||
|
end
|
||||||
|
|
||||||
|
# Since the ElasticSearch Query doesn't guarantee the exact match will be the
|
||||||
|
# first result or that it will even be returned, patch the results accordingly
|
||||||
|
def ensure_exact_match(results)
|
||||||
|
return results unless @offset.nil? || @offset.zero?
|
||||||
|
|
||||||
|
normalized_query = Tag.normalize(@query)
|
||||||
|
exact_match = results.find { |tag| tag.name.downcase == normalized_query }
|
||||||
|
exact_match ||= Tag.find_normalized(normalized_query)
|
||||||
|
unless exact_match.nil?
|
||||||
|
results.delete(exact_match)
|
||||||
|
results = [exact_match] + results
|
||||||
|
end
|
||||||
|
|
||||||
|
results
|
||||||
|
end
|
||||||
|
|
||||||
|
def elastic_search_query
|
||||||
|
{
|
||||||
function_score: {
|
function_score: {
|
||||||
query: {
|
query: {
|
||||||
multi_match: {
|
multi_match: {
|
||||||
|
@ -50,8 +75,10 @@ class TagSearchService < BaseService
|
||||||
boost_mode: 'multiply',
|
boost_mode: 'multiply',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
end
|
||||||
|
|
||||||
filter = {
|
def elastic_search_filter
|
||||||
|
{
|
||||||
bool: {
|
bool: {
|
||||||
should: [
|
should: [
|
||||||
{
|
{
|
||||||
|
@ -72,29 +99,6 @@ class TagSearchService < BaseService
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
definition = TagsIndex.query(query)
|
|
||||||
definition = definition.filter(filter) if @options[:exclude_unreviewed]
|
|
||||||
|
|
||||||
ensure_exact_match(definition.limit(@limit).offset(@offset).objects.compact)
|
|
||||||
rescue Faraday::ConnectionFailed, Parslet::ParseFailed
|
|
||||||
nil
|
|
||||||
end
|
|
||||||
|
|
||||||
# Since the ElasticSearch Query doesn't guarantee the exact match will be the
|
|
||||||
# first result or that it will even be returned, patch the results accordingly
|
|
||||||
def ensure_exact_match(results)
|
|
||||||
return results unless @offset.nil? || @offset.zero?
|
|
||||||
|
|
||||||
normalized_query = Tag.normalize(@query)
|
|
||||||
exact_match = results.find { |tag| tag.name.downcase == normalized_query }
|
|
||||||
exact_match ||= Tag.find_normalized(normalized_query)
|
|
||||||
unless exact_match.nil?
|
|
||||||
results.delete(exact_match)
|
|
||||||
results = [exact_match] + results
|
|
||||||
end
|
|
||||||
|
|
||||||
results
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def from_database
|
def from_database
|
||||||
|
|
|
@ -3,6 +3,7 @@ br:
|
||||||
about:
|
about:
|
||||||
contact_missing: Andermenet
|
contact_missing: Andermenet
|
||||||
contact_unavailable: N'eus ket
|
contact_unavailable: N'eus ket
|
||||||
|
hosted_on: Servijer Mastodon herberc'hiet war %{domain}
|
||||||
title: Diwar-benn
|
title: Diwar-benn
|
||||||
accounts:
|
accounts:
|
||||||
follow: Heuliañ
|
follow: Heuliañ
|
||||||
|
@ -135,6 +136,9 @@ br:
|
||||||
disputes:
|
disputes:
|
||||||
appeals:
|
appeals:
|
||||||
title: Galvoù
|
title: Galvoù
|
||||||
|
domain_allows:
|
||||||
|
export: Ezporzhiañ
|
||||||
|
import: Enporzhiañ
|
||||||
domain_blocks:
|
domain_blocks:
|
||||||
domain: Domani
|
domain: Domani
|
||||||
new:
|
new:
|
||||||
|
@ -151,6 +155,8 @@ br:
|
||||||
domain: Domani
|
domain: Domani
|
||||||
new:
|
new:
|
||||||
create: Ouzhpenniñ un domani
|
create: Ouzhpenniñ un domani
|
||||||
|
export_domain_allows:
|
||||||
|
no_file: Restr ebet diuzet
|
||||||
follow_recommendations:
|
follow_recommendations:
|
||||||
status: Statud
|
status: Statud
|
||||||
suppressed: Dilamet
|
suppressed: Dilamet
|
||||||
|
@ -265,10 +271,12 @@ br:
|
||||||
delete_statuses: Dilamet eo bet toudoù %{target} gant %{name}
|
delete_statuses: Dilamet eo bet toudoù %{target} gant %{name}
|
||||||
trends:
|
trends:
|
||||||
allow: Aotren
|
allow: Aotren
|
||||||
|
approved: Aprouet
|
||||||
links:
|
links:
|
||||||
allow: Aotren al liamm
|
allow: Aotren al liamm
|
||||||
preview_card_providers:
|
preview_card_providers:
|
||||||
title: Embannerien·ezed
|
title: Embannerien·ezed
|
||||||
|
rejected: Nac'het
|
||||||
statuses:
|
statuses:
|
||||||
allow: Aotren ar c'hannad
|
allow: Aotren ar c'hannad
|
||||||
tags:
|
tags:
|
||||||
|
@ -297,6 +305,9 @@ br:
|
||||||
title: Hashtagoù diouzh ar c'hiz
|
title: Hashtagoù diouzh ar c'hiz
|
||||||
appearance:
|
appearance:
|
||||||
discovery: Dizoloadur
|
discovery: Dizoloadur
|
||||||
|
localization:
|
||||||
|
body: Gant tud a-youl vat eo troet Mastodon.
|
||||||
|
guide_link: https://crowdin.com/project/mastodon
|
||||||
application_mailer:
|
application_mailer:
|
||||||
view: 'Sellet :'
|
view: 'Sellet :'
|
||||||
view_status: Gwelet ar c'hannad
|
view_status: Gwelet ar c'hannad
|
||||||
|
@ -373,10 +384,12 @@ br:
|
||||||
title: Toudoù silet
|
title: Toudoù silet
|
||||||
generic:
|
generic:
|
||||||
all: Pep tra
|
all: Pep tra
|
||||||
|
changes_saved_msg: Enrollet eo bet ar cheñchamantoù gant berzh!
|
||||||
copy: Eilañ
|
copy: Eilañ
|
||||||
delete: Dilemel
|
delete: Dilemel
|
||||||
none: Hini ebet
|
none: Hini ebet
|
||||||
order_by: Urzhiañ dre
|
order_by: Urzhiañ dre
|
||||||
|
save_changes: Enrollañ ar cheñchamantoù
|
||||||
today: hiziv
|
today: hiziv
|
||||||
imports:
|
imports:
|
||||||
modes:
|
modes:
|
||||||
|
@ -488,6 +501,7 @@ br:
|
||||||
settings:
|
settings:
|
||||||
account: Kont
|
account: Kont
|
||||||
account_settings: Arventennoù ar gont
|
account_settings: Arventennoù ar gont
|
||||||
|
back: Distreiñ da vMastodon
|
||||||
development: Diorren
|
development: Diorren
|
||||||
edit_profile: Kemmañ ar profil
|
edit_profile: Kemmañ ar profil
|
||||||
featured_tags: Hashtagoù pennañ
|
featured_tags: Hashtagoù pennañ
|
||||||
|
@ -521,13 +535,14 @@ br:
|
||||||
'604800': 1 sizhunvezh
|
'604800': 1 sizhunvezh
|
||||||
'63113904': 2 vloavezh
|
'63113904': 2 vloavezh
|
||||||
themes:
|
themes:
|
||||||
default: Mastodoñ (Teñval)
|
default: Mastodon (Teñval)
|
||||||
mastodon-light: Mastodoñ (Sklaer)
|
mastodon-light: Mastodon (Sklaer)
|
||||||
time:
|
time:
|
||||||
formats:
|
formats:
|
||||||
default: "%d a viz %b %Y, %H:%M"
|
default: "%d a viz %b %Y, %H:%M"
|
||||||
month: Miz %b %Y
|
month: Miz %b %Y
|
||||||
time: "%H:%M"
|
time: "%H:%M"
|
||||||
|
with_time_zone: "%d a viz %b %Y, %H:%M %Z"
|
||||||
two_factor_authentication:
|
two_factor_authentication:
|
||||||
add: Ouzhpennañ
|
add: Ouzhpennañ
|
||||||
disable: Diweredekaat
|
disable: Diweredekaat
|
||||||
|
@ -546,7 +561,7 @@ br:
|
||||||
none: Diwall
|
none: Diwall
|
||||||
welcome:
|
welcome:
|
||||||
edit_profile_action: Kefluniañ ar profil
|
edit_profile_action: Kefluniañ ar profil
|
||||||
subject: Donemat e Mastodoñ
|
subject: Donemat e Mastodon
|
||||||
title: Degemer mat e bourzh, %{name}!
|
title: Degemer mat e bourzh, %{name}!
|
||||||
users:
|
users:
|
||||||
follow_limit_reached: N'hallit ket heulian muioc'h eget %{limit} a zen
|
follow_limit_reached: N'hallit ket heulian muioc'h eget %{limit} a zen
|
||||||
|
|
|
@ -1077,7 +1077,7 @@ cs:
|
||||||
hint_html: Ještě jedna věc! Musíme potvrdit, že jste člověk (to proto, abychom drželi stranou spam!). Vyřešte CAPTCHA níže a klikněte na "Pokračovat".
|
hint_html: Ještě jedna věc! Musíme potvrdit, že jste člověk (to proto, abychom drželi stranou spam!). Vyřešte CAPTCHA níže a klikněte na "Pokračovat".
|
||||||
title: Bezpečnostní kontrola
|
title: Bezpečnostní kontrola
|
||||||
confirmations:
|
confirmations:
|
||||||
awaiting_review: Vaše e-mailová adresa je potvrzena! Pracovníci %{domain} nyní kontrolují vaši registraci. Pokud váš účet schválí, obdržíte e-mail!
|
awaiting_review: Vaše e-mailová adresa je potvrzena! Personál %{domain} nyní kontrolují vaši registraci. Pokud váš účet schválí, obdržíte e-mail!
|
||||||
awaiting_review_title: Vaše registrace se ověřuje
|
awaiting_review_title: Vaše registrace se ověřuje
|
||||||
clicking_this_link: kliknutím na tento odkaz
|
clicking_this_link: kliknutím na tento odkaz
|
||||||
login_link: přihlásit se
|
login_link: přihlásit se
|
||||||
|
|
|
@ -19,7 +19,7 @@ br:
|
||||||
mailer:
|
mailer:
|
||||||
confirmation_instructions:
|
confirmation_instructions:
|
||||||
action: Gwiriekaat ar chomlec'h postel
|
action: Gwiriekaat ar chomlec'h postel
|
||||||
action_with_app: Kadarnaat ha distroiñ da %{app}
|
action_with_app: Kadarnaat ha distreiñ da %{app}
|
||||||
explanation: Krouet ho peus ur c'hont war %{host} gant ar chomlec'h-postel-mañ. N'eus nemet ur c'hlik evit bevaat anezhañ. Ma ne oa ket krouet ganeoc'h, dianavezit ar postel-se.
|
explanation: Krouet ho peus ur c'hont war %{host} gant ar chomlec'h-postel-mañ. N'eus nemet ur c'hlik evit bevaat anezhañ. Ma ne oa ket krouet ganeoc'h, dianavezit ar postel-se.
|
||||||
explanation_when_pending: Enskrivañ ho peus d'ur c'hemennad da %{host} gant ar chomlec'h-postel-se. Pa vo kadarnaet ho chomlec'h-postel, hoc'h enskrivadur a vo asantet. Gallout a rit mont-tre evit kemmañ munudoù ho kont pe skarzhañ anezhañ, met ne c'hellit ket implijout ul lod eus an aezamantoù par ma n'eo ket asantet ho kont. Ma vefe hoc'h enskrivadur nac'het, ho keloù a vefe skarzhet, neuze ne vo ket ret deoc'h ober netra ken. Ma ne oa ket ac'hanoc'h, dianavezit ar postel-se.
|
explanation_when_pending: Enskrivañ ho peus d'ur c'hemennad da %{host} gant ar chomlec'h-postel-se. Pa vo kadarnaet ho chomlec'h-postel, hoc'h enskrivadur a vo asantet. Gallout a rit mont-tre evit kemmañ munudoù ho kont pe skarzhañ anezhañ, met ne c'hellit ket implijout ul lod eus an aezamantoù par ma n'eo ket asantet ho kont. Ma vefe hoc'h enskrivadur nac'het, ho keloù a vefe skarzhet, neuze ne vo ket ret deoc'h ober netra ken. Ma ne oa ket ac'hanoc'h, dianavezit ar postel-se.
|
||||||
extra_html: Mar plij, gwiriit ivez <a href="%{terms_path}"> reolennoù ar servijer</a> ha <a href="%{policy_path}"> hon divizoù-implij</a>.
|
extra_html: Mar plij, gwiriit ivez <a href="%{terms_path}"> reolennoù ar servijer</a> ha <a href="%{policy_path}"> hon divizoù-implij</a>.
|
||||||
|
|
|
@ -12,6 +12,7 @@ es-MX:
|
||||||
last_attempt: Tiene un intento más antes de que tu cuenta sea bloqueada.
|
last_attempt: Tiene un intento más antes de que tu cuenta sea bloqueada.
|
||||||
locked: Tu cuenta está bloqueada.
|
locked: Tu cuenta está bloqueada.
|
||||||
not_found_in_database: Incorrecto %{authentication_keys} o contraseña.
|
not_found_in_database: Incorrecto %{authentication_keys} o contraseña.
|
||||||
|
omniauth_user_creation_failure: Error al crear una cuenta para esta identidad.
|
||||||
pending: Su cuenta aun se encuentra bajo revisión.
|
pending: Su cuenta aun se encuentra bajo revisión.
|
||||||
timeout: Su sesión ha expirado. Por favor inicie sesión de nuevo para continuar.
|
timeout: Su sesión ha expirado. Por favor inicie sesión de nuevo para continuar.
|
||||||
unauthenticated: Necesita iniciar sesión o registrarse antes de continuar.
|
unauthenticated: Necesita iniciar sesión o registrarse antes de continuar.
|
||||||
|
|
|
@ -12,6 +12,7 @@ es:
|
||||||
last_attempt: Tiene un intento más antes de que tu cuenta sea bloqueada.
|
last_attempt: Tiene un intento más antes de que tu cuenta sea bloqueada.
|
||||||
locked: Tu cuenta está bloqueada.
|
locked: Tu cuenta está bloqueada.
|
||||||
not_found_in_database: Incorrecto %{authentication_keys} o contraseña.
|
not_found_in_database: Incorrecto %{authentication_keys} o contraseña.
|
||||||
|
omniauth_user_creation_failure: Error al crear una cuenta para esta identidad.
|
||||||
pending: Su cuenta aun se encuentra bajo revisión.
|
pending: Su cuenta aun se encuentra bajo revisión.
|
||||||
timeout: Tu sesión expiró. Por favor, inicia sesión nuevamente para continuar.
|
timeout: Tu sesión expiró. Por favor, inicia sesión nuevamente para continuar.
|
||||||
unauthenticated: Necesitas iniciar sesión o registrarte antes de continuar.
|
unauthenticated: Necesitas iniciar sesión o registrarte antes de continuar.
|
||||||
|
|
|
@ -12,6 +12,7 @@ ja:
|
||||||
last_attempt: あと1回失敗するとアカウントがロックされます。
|
last_attempt: あと1回失敗するとアカウントがロックされます。
|
||||||
locked: アカウントはロックされました。
|
locked: アカウントはロックされました。
|
||||||
not_found_in_database: "%{authentication_keys}かパスワードが誤っています。"
|
not_found_in_database: "%{authentication_keys}かパスワードが誤っています。"
|
||||||
|
omniauth_user_creation_failure: 指定されたIDに対応するアカウントを作成できませんでした。
|
||||||
pending: あなたのアカウントはまだ承認待ちです。
|
pending: あなたのアカウントはまだ承認待ちです。
|
||||||
timeout: セッションの有効期限が切れました。続行するには再度ログインしてください。
|
timeout: セッションの有効期限が切れました。続行するには再度ログインしてください。
|
||||||
unauthenticated: 続行するにはログインするか、アカウントを作成してください。
|
unauthenticated: 続行するにはログインするか、アカウントを作成してください。
|
||||||
|
|
|
@ -151,9 +151,9 @@ gl:
|
||||||
admin:read:accounts: ler información sensible de todas as contas
|
admin:read:accounts: ler información sensible de todas as contas
|
||||||
admin:read:canonical_email_blocks: ler a información sensíbel de tódolos bloqueos de correos electrónicos canónicos
|
admin:read:canonical_email_blocks: ler a información sensíbel de tódolos bloqueos de correos electrónicos canónicos
|
||||||
admin:read:domain_allows: ler a información sensible de todos os dominios permitidos
|
admin:read:domain_allows: ler a información sensible de todos os dominios permitidos
|
||||||
admin:read:domain_blocks: ler a información sensible de tódolos bloqueos de dominio
|
admin:read:domain_blocks: ler a información sensible de todos os bloqueos de dominio
|
||||||
admin:read:email_domain_blocks: ler a información sensible de tódolos dominios de correo electrónico
|
admin:read:email_domain_blocks: ler a información sensible de tódolos dominios de correo electrónico
|
||||||
admin:read:ip_blocks: ler a información sensible de tódolos bloqueos de IP
|
admin:read:ip_blocks: ler a información sensible de todos os bloqueos de IP
|
||||||
admin:read:reports: ler información sensible de todos os informes e contas denunciadas
|
admin:read:reports: ler información sensible de todos os informes e contas denunciadas
|
||||||
admin:write: modificar todos os datos no servidor
|
admin:write: modificar todos os datos no servidor
|
||||||
admin:write:accounts: executar accións de moderación nas contas
|
admin:write:accounts: executar accións de moderación nas contas
|
||||||
|
|
|
@ -41,7 +41,7 @@ br:
|
||||||
email: Chomlec'h postel
|
email: Chomlec'h postel
|
||||||
expires_in: Mont war e dermen goude
|
expires_in: Mont war e dermen goude
|
||||||
header: Talbenn
|
header: Talbenn
|
||||||
locale: Yezh ar c'hetal
|
locale: Yezh an etrefas
|
||||||
new_password: Ger-tremen nevez
|
new_password: Ger-tremen nevez
|
||||||
note: Kinnig
|
note: Kinnig
|
||||||
password: Ger-tremen
|
password: Ger-tremen
|
||||||
|
@ -49,6 +49,7 @@ br:
|
||||||
setting_display_media_default: Dre ziouer
|
setting_display_media_default: Dre ziouer
|
||||||
setting_display_media_hide_all: Kuzhat pep tra
|
setting_display_media_hide_all: Kuzhat pep tra
|
||||||
setting_display_media_show_all: Diskouez pep tra
|
setting_display_media_show_all: Diskouez pep tra
|
||||||
|
setting_theme: Neuz al lec'hienn
|
||||||
setting_use_pending_items: Mod gorrek
|
setting_use_pending_items: Mod gorrek
|
||||||
title: Titl
|
title: Titl
|
||||||
username: Anv
|
username: Anv
|
||||||
|
@ -73,6 +74,7 @@ br:
|
||||||
usable: Aotren an embannadurioù da implijout an hashtag-mañ
|
usable: Aotren an embannadurioù da implijout an hashtag-mañ
|
||||||
user:
|
user:
|
||||||
role: Roll
|
role: Roll
|
||||||
|
time_zone: Gwerzhid eur
|
||||||
user_role:
|
user_role:
|
||||||
name: Anv
|
name: Anv
|
||||||
'no': Ket
|
'no': Ket
|
||||||
|
|
|
@ -772,13 +772,13 @@ zh-CN:
|
||||||
software_updates:
|
software_updates:
|
||||||
critical_update: 紧急 — 请尽快更新
|
critical_update: 紧急 — 请尽快更新
|
||||||
description: 建议您及时更新Mastodon实例,以便获得最新修复和功能。此外,为避免安全问题,有时候及时更新Mastodon是至关重要的。出于这些原因,Mastodon每30分钟检查一次更新,并根据您的电子邮件通知偏好向您发送通知。
|
description: 建议您及时更新Mastodon实例,以便获得最新修复和功能。此外,为避免安全问题,有时候及时更新Mastodon是至关重要的。出于这些原因,Mastodon每30分钟检查一次更新,并根据您的电子邮件通知偏好向您发送通知。
|
||||||
documentation_link: 了解详情
|
documentation_link: 详细了解
|
||||||
release_notes: 更新日志
|
release_notes: 发行说明
|
||||||
title: 可用的更新
|
title: 可用的更新
|
||||||
type: 类型
|
type: 类型
|
||||||
types:
|
types:
|
||||||
major: 大版本更新
|
major: 重大更新
|
||||||
minor: 小版本更新
|
minor: 次要更新
|
||||||
patch: 补丁级更新 - 修复了错误并进行了易于应用的更改
|
patch: 补丁级更新 - 修复了错误并进行了易于应用的更改
|
||||||
version: 版本
|
version: 版本
|
||||||
statuses:
|
statuses:
|
||||||
|
|
|
@ -779,7 +779,7 @@ zh-TW:
|
||||||
title: 可取得的更新
|
title: 可取得的更新
|
||||||
type: 類型
|
type: 類型
|
||||||
types:
|
types:
|
||||||
major: 主要版本更新 (major release)
|
major: 主要版本更新
|
||||||
minor: 次要版本更新 (minor release)
|
minor: 次要版本更新 (minor release)
|
||||||
patch: 修正版本 (patch release) — 錯誤修正及易於套用之變更
|
patch: 修正版本 (patch release) — 錯誤修正及易於套用之變更
|
||||||
version: 版本
|
version: 版本
|
||||||
|
|
|
@ -35,7 +35,7 @@ RSpec.describe Admin::Disputes::AppealsController do
|
||||||
let(:current_user) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
|
let(:current_user) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
|
||||||
|
|
||||||
it 'redirects back to the strike page and notifies target account about approved appeal', :sidekiq_inline do
|
it 'redirects back to the strike page and notifies target account about approved appeal', :sidekiq_inline do
|
||||||
subject
|
emails = capture_emails { subject }
|
||||||
|
|
||||||
expect(response)
|
expect(response)
|
||||||
.to redirect_to(disputes_strike_path(appeal.strike))
|
.to redirect_to(disputes_strike_path(appeal.strike))
|
||||||
|
@ -43,9 +43,13 @@ RSpec.describe Admin::Disputes::AppealsController do
|
||||||
expect(target_account.reload)
|
expect(target_account.reload)
|
||||||
.to_not be_suspended
|
.to_not be_suspended
|
||||||
|
|
||||||
expect(UserMailer.deliveries.size).to eq(1)
|
expect(emails.size)
|
||||||
expect(UserMailer.deliveries.first.to.first).to eq(target_account.user.email)
|
.to eq(1)
|
||||||
expect(UserMailer.deliveries.first.subject).to eq(I18n.t('user_mailer.appeal_approved.subject', date: I18n.l(appeal.created_at)))
|
expect(emails.first)
|
||||||
|
.to have_attributes(
|
||||||
|
to: contain_exactly(target_account.user.email),
|
||||||
|
subject: eq(I18n.t('user_mailer.appeal_approved.subject', date: I18n.l(appeal.created_at)))
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -55,14 +59,19 @@ RSpec.describe Admin::Disputes::AppealsController do
|
||||||
let(:current_user) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
|
let(:current_user) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
|
||||||
|
|
||||||
it 'redirects back to the strike page and notifies target account about rejected appeal', :sidekiq_inline do
|
it 'redirects back to the strike page and notifies target account about rejected appeal', :sidekiq_inline do
|
||||||
subject
|
emails = capture_emails { subject }
|
||||||
|
|
||||||
expect(response)
|
expect(response)
|
||||||
.to redirect_to(disputes_strike_path(appeal.strike))
|
.to redirect_to(disputes_strike_path(appeal.strike))
|
||||||
|
|
||||||
expect(UserMailer.deliveries.size).to eq(1)
|
expect(emails.size)
|
||||||
expect(UserMailer.deliveries.first.to.first).to eq(target_account.user.email)
|
.to eq(1)
|
||||||
expect(UserMailer.deliveries.first.subject).to eq(I18n.t('user_mailer.appeal_rejected.subject', date: I18n.l(appeal.created_at)))
|
|
||||||
|
expect(emails.first)
|
||||||
|
.to have_attributes(
|
||||||
|
to: contain_exactly(target_account.user.email),
|
||||||
|
subject: eq(I18n.t('user_mailer.appeal_rejected.subject', date: I18n.l(appeal.created_at)))
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -5,6 +5,8 @@ require 'rails_helper'
|
||||||
describe Admin::ResetsController do
|
describe Admin::ResetsController do
|
||||||
render_views
|
render_views
|
||||||
|
|
||||||
|
subject { post :create, params: { account_id: account.id } }
|
||||||
|
|
||||||
let(:account) { Fabricate(:account) }
|
let(:account) { Fabricate(:account) }
|
||||||
|
|
||||||
before do
|
before do
|
||||||
|
@ -13,11 +15,11 @@ describe Admin::ResetsController do
|
||||||
|
|
||||||
describe 'POST #create', :sidekiq_inline do
|
describe 'POST #create', :sidekiq_inline do
|
||||||
it 'redirects to admin accounts page' do
|
it 'redirects to admin accounts page' do
|
||||||
expect do
|
emails = capture_emails { subject }
|
||||||
post :create, params: { account_id: account.id }
|
|
||||||
end.to change(Devise.mailer.deliveries, :size).by(2)
|
|
||||||
|
|
||||||
expect(Devise.mailer.deliveries).to have_attributes(
|
expect(emails.size)
|
||||||
|
.to eq(2)
|
||||||
|
expect(emails).to have_attributes(
|
||||||
first: have_attributes(
|
first: have_attributes(
|
||||||
to: include(account.user.email),
|
to: include(account.user.email),
|
||||||
subject: I18n.t('devise.mailer.password_change.subject')
|
subject: I18n.t('devise.mailer.password_change.subject')
|
||||||
|
|
|
@ -124,7 +124,7 @@ RSpec.describe Auth::SessionsController do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'logs the user in and sends suspicious email and redirects home', :sidekiq_inline do
|
it 'logs the user in and sends suspicious email and redirects home', :sidekiq_inline do
|
||||||
subject
|
emails = capture_emails { subject }
|
||||||
|
|
||||||
expect(response)
|
expect(response)
|
||||||
.to redirect_to(root_path)
|
.to redirect_to(root_path)
|
||||||
|
@ -132,9 +132,13 @@ RSpec.describe Auth::SessionsController do
|
||||||
expect(controller.current_user)
|
expect(controller.current_user)
|
||||||
.to eq user
|
.to eq user
|
||||||
|
|
||||||
expect(UserMailer.deliveries.size).to eq(1)
|
expect(emails.size)
|
||||||
expect(UserMailer.deliveries.first.to.first).to eq(user.email)
|
.to eq(1)
|
||||||
expect(UserMailer.deliveries.first.subject).to eq(I18n.t('user_mailer.suspicious_sign_in.subject'))
|
expect(emails.first)
|
||||||
|
.to have_attributes(
|
||||||
|
to: contain_exactly(user.email),
|
||||||
|
subject: eq(I18n.t('user_mailer.suspicious_sign_in.subject'))
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -260,21 +264,27 @@ RSpec.describe Auth::SessionsController do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'does not log the user in, sets a flash message, and sends a suspicious sign in email', :sidekiq_inline do
|
it 'does not log the user in, sets a flash message, and sends a suspicious sign in email', :sidekiq_inline do
|
||||||
Auth::SessionsController::MAX_2FA_ATTEMPTS_PER_HOUR.times do
|
emails = capture_emails do
|
||||||
post :create, params: { user: { otp_attempt: '1234' } }, session: { attempt_user_id: user.id, attempt_user_updated_at: user.updated_at.to_s }
|
Auth::SessionsController::MAX_2FA_ATTEMPTS_PER_HOUR.times do
|
||||||
expect(controller.current_user).to be_nil
|
post :create, params: { user: { otp_attempt: '1234' } }, session: { attempt_user_id: user.id, attempt_user_updated_at: user.updated_at.to_s }
|
||||||
|
expect(controller.current_user).to be_nil
|
||||||
|
end
|
||||||
|
post :create, params: { user: { otp_attempt: user.current_otp } }, session: { attempt_user_id: user.id, attempt_user_updated_at: user.updated_at.to_s }
|
||||||
end
|
end
|
||||||
|
|
||||||
post :create, params: { user: { otp_attempt: user.current_otp } }, session: { attempt_user_id: user.id, attempt_user_updated_at: user.updated_at.to_s }
|
|
||||||
|
|
||||||
expect(controller.current_user)
|
expect(controller.current_user)
|
||||||
.to be_nil
|
.to be_nil
|
||||||
|
|
||||||
expect(flash[:alert])
|
expect(flash[:alert])
|
||||||
.to match I18n.t('users.rate_limited')
|
.to match I18n.t('users.rate_limited')
|
||||||
|
|
||||||
expect(UserMailer.deliveries.size).to eq(1)
|
expect(emails.size)
|
||||||
expect(UserMailer.deliveries.first.to.first).to eq(user.email)
|
.to eq(1)
|
||||||
expect(UserMailer.deliveries.first.subject).to eq(I18n.t('user_mailer.failed_2fa.subject'))
|
expect(emails.first)
|
||||||
|
.to have_attributes(
|
||||||
|
to: contain_exactly(user.email),
|
||||||
|
subject: eq(I18n.t('user_mailer.failed_2fa.subject'))
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -18,9 +18,15 @@ RSpec.describe Disputes::AppealsController do
|
||||||
let(:params) { { strike_id: strike.id, appeal: { text: 'Foo' } } }
|
let(:params) { { strike_id: strike.id, appeal: { text: 'Foo' } } }
|
||||||
|
|
||||||
it 'notifies staff about new appeal and redirects back to strike page', :sidekiq_inline do
|
it 'notifies staff about new appeal and redirects back to strike page', :sidekiq_inline do
|
||||||
subject
|
emails = capture_emails { subject }
|
||||||
|
|
||||||
expect(ActionMailer::Base.deliveries.first.to).to eq([admin.email])
|
expect(emails.size)
|
||||||
|
.to eq(1)
|
||||||
|
expect(emails.first)
|
||||||
|
.to have_attributes(
|
||||||
|
to: contain_exactly(admin.email),
|
||||||
|
subject: eq(I18n.t('admin_mailer.new_appeal.subject', username: current_user.account.acct, instance: Rails.configuration.x.local_domain))
|
||||||
|
)
|
||||||
expect(response).to redirect_to(disputes_strike_path(strike.id))
|
expect(response).to redirect_to(disputes_strike_path(strike.id))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -31,9 +37,9 @@ RSpec.describe Disputes::AppealsController do
|
||||||
let(:params) { { strike_id: strike.id, appeal: { text: '' } } }
|
let(:params) { { strike_id: strike.id, appeal: { text: '' } } }
|
||||||
|
|
||||||
it 'does not send email and renders strike show page', :sidekiq_inline do
|
it 'does not send email and renders strike show page', :sidekiq_inline do
|
||||||
subject
|
emails = capture_emails { subject }
|
||||||
|
|
||||||
expect(ActionMailer::Base.deliveries.size).to eq(0)
|
expect(emails).to be_empty
|
||||||
expect(response).to render_template('disputes/strikes/show')
|
expect(response).to render_template('disputes/strikes/show')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
require 'rails_helper'
|
require 'rails_helper'
|
||||||
|
|
||||||
describe TagFeed, type: :service do
|
describe TagFeed do
|
||||||
describe '#get' do
|
describe '#get' do
|
||||||
let(:account) { Fabricate(:account) }
|
let(:account) { Fabricate(:account) }
|
||||||
let(:tag_cats) { Fabricate(:tag, name: 'cats') }
|
let(:tag_cats) { Fabricate(:tag, name: 'cats') }
|
||||||
|
|
|
@ -455,18 +455,20 @@ RSpec.describe User do
|
||||||
|
|
||||||
let!(:user) { Fabricate(:user, confirmed_at: confirmed_at) }
|
let!(:user) { Fabricate(:user, confirmed_at: confirmed_at) }
|
||||||
|
|
||||||
before { ActionMailer::Base.deliveries.clear }
|
|
||||||
|
|
||||||
after { ActionMailer::Base.deliveries.clear }
|
|
||||||
|
|
||||||
context 'when user is new' do
|
context 'when user is new' do
|
||||||
let(:confirmed_at) { nil }
|
let(:confirmed_at) { nil }
|
||||||
|
|
||||||
it 'confirms user and delivers welcome email', :sidekiq_inline do
|
it 'confirms user and delivers welcome email', :sidekiq_inline do
|
||||||
subject
|
emails = capture_emails { subject }
|
||||||
|
|
||||||
expect(user.confirmed_at).to be_present
|
expect(user.confirmed_at).to be_present
|
||||||
expect(ActionMailer::Base.deliveries.count).to eq 1
|
expect(emails.size)
|
||||||
|
.to eq(1)
|
||||||
|
expect(emails.first)
|
||||||
|
.to have_attributes(
|
||||||
|
to: contain_exactly(user.email),
|
||||||
|
subject: eq(I18n.t('user_mailer.welcome.subject'))
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -474,10 +476,10 @@ RSpec.describe User do
|
||||||
let(:confirmed_at) { Time.zone.now }
|
let(:confirmed_at) { Time.zone.now }
|
||||||
|
|
||||||
it 'confirms user but does not deliver welcome email' do
|
it 'confirms user but does not deliver welcome email' do
|
||||||
subject
|
emails = capture_emails { subject }
|
||||||
|
|
||||||
expect(user.confirmed_at).to be_present
|
expect(user.confirmed_at).to be_present
|
||||||
expect(ActionMailer::Base.deliveries.count).to eq 0
|
expect(emails).to be_empty
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -82,6 +82,7 @@ RSpec.configure do |config|
|
||||||
config.include Devise::Test::ControllerHelpers, type: :view
|
config.include Devise::Test::ControllerHelpers, type: :view
|
||||||
config.include Devise::Test::IntegrationHelpers, type: :feature
|
config.include Devise::Test::IntegrationHelpers, type: :feature
|
||||||
config.include Devise::Test::IntegrationHelpers, type: :request
|
config.include Devise::Test::IntegrationHelpers, type: :request
|
||||||
|
config.include ActionMailer::TestHelper
|
||||||
config.include Paperclip::Shoulda::Matchers
|
config.include Paperclip::Shoulda::Matchers
|
||||||
config.include ActiveSupport::Testing::TimeHelpers
|
config.include ActiveSupport::Testing::TimeHelpers
|
||||||
config.include Chewy::Rspec::Helpers
|
config.include Chewy::Rspec::Helpers
|
||||||
|
|
|
@ -35,7 +35,7 @@ RSpec.describe 'Reports' do
|
||||||
|
|
||||||
it 'creates a report', :aggregate_failures do
|
it 'creates a report', :aggregate_failures do
|
||||||
perform_enqueued_jobs do
|
perform_enqueued_jobs do
|
||||||
subject
|
emails = capture_emails { subject }
|
||||||
|
|
||||||
expect(response).to have_http_status(200)
|
expect(response).to have_http_status(200)
|
||||||
expect(body_as_json).to match(
|
expect(body_as_json).to match(
|
||||||
|
@ -49,7 +49,13 @@ RSpec.describe 'Reports' do
|
||||||
expect(target_account.targeted_reports).to_not be_empty
|
expect(target_account.targeted_reports).to_not be_empty
|
||||||
expect(target_account.targeted_reports.first.comment).to eq 'reasons'
|
expect(target_account.targeted_reports.first.comment).to eq 'reasons'
|
||||||
|
|
||||||
expect(ActionMailer::Base.deliveries.first.to).to eq([admin.email])
|
expect(emails.size)
|
||||||
|
.to eq(1)
|
||||||
|
expect(emails.first)
|
||||||
|
.to have_attributes(
|
||||||
|
to: contain_exactly(admin.email),
|
||||||
|
subject: eq(I18n.t('admin_mailer.new_report.subject', instance: Rails.configuration.x.local_domain, id: target_account.targeted_reports.first.id))
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -167,6 +167,16 @@ describe '/api/v1/statuses' do
|
||||||
expect(response.headers['X-RateLimit-Remaining']).to eq '0'
|
expect(response.headers['X-RateLimit-Remaining']).to eq '0'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context 'with missing thread' do
|
||||||
|
let(:params) { { status: 'Hello world', in_reply_to_id: 0 } }
|
||||||
|
|
||||||
|
it 'returns http not found' do
|
||||||
|
subject
|
||||||
|
|
||||||
|
expect(response).to have_http_status(404)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe 'DELETE /api/v1/statuses/:id' do
|
describe 'DELETE /api/v1/statuses/:id' do
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
RSpec.describe AfterUnallowDomainService do
|
||||||
|
describe '#call' do
|
||||||
|
context 'with accounts for a domain' do
|
||||||
|
let!(:account) { Fabricate(:account, domain: 'host.example') }
|
||||||
|
let!(:test_account) { Fabricate(:account, domain: 'test.example') }
|
||||||
|
let(:service_double) { instance_double(DeleteAccountService, call: true) }
|
||||||
|
|
||||||
|
before { allow(DeleteAccountService).to receive(:new).and_return(service_double) }
|
||||||
|
|
||||||
|
it 'calls the delete service for accounts from the relevant domain' do
|
||||||
|
subject.call 'test.example'
|
||||||
|
|
||||||
|
expect(service_double)
|
||||||
|
.to_not have_received(:call).with(account, reserve_username: false)
|
||||||
|
expect(service_double)
|
||||||
|
.to have_received(:call).with(test_account, reserve_username: false)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -0,0 +1,40 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
RSpec.describe AppealService do
|
||||||
|
describe '#call' do
|
||||||
|
let!(:admin) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
|
||||||
|
|
||||||
|
context 'with an existing strike' do
|
||||||
|
let(:strike) { Fabricate(:account_warning) }
|
||||||
|
let(:text) { 'Appeal text' }
|
||||||
|
|
||||||
|
it 'creates an appeal and notifies staff' do
|
||||||
|
emails = capture_emails { subject.call(strike, text) }
|
||||||
|
|
||||||
|
expect(Appeal.last)
|
||||||
|
.to have_attributes(
|
||||||
|
strike: strike,
|
||||||
|
text: text,
|
||||||
|
account: strike.target_account
|
||||||
|
)
|
||||||
|
|
||||||
|
expect(emails.size)
|
||||||
|
.to eq(1)
|
||||||
|
|
||||||
|
expect(emails.first)
|
||||||
|
.to have_attributes(
|
||||||
|
to: contain_exactly(admin.email),
|
||||||
|
subject: eq(
|
||||||
|
I18n.t(
|
||||||
|
'admin_mailer.new_appeal.subject',
|
||||||
|
username: strike.target_account.acct,
|
||||||
|
instance: Rails.configuration.x.local_domain
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -0,0 +1,31 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
RSpec.describe CreateFeaturedTagService do
|
||||||
|
describe '#call' do
|
||||||
|
let(:tag) { 'test' }
|
||||||
|
|
||||||
|
context 'with a local account' do
|
||||||
|
let(:account) { Fabricate(:account, domain: nil) }
|
||||||
|
|
||||||
|
it 'creates a new featured tag and distributes' do
|
||||||
|
expect { subject.call(account, tag) }
|
||||||
|
.to change(FeaturedTag, :count).by(1)
|
||||||
|
expect(ActivityPub::AccountRawDistributionWorker)
|
||||||
|
.to have_enqueued_sidekiq_job(anything, account.id)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'with a remote account' do
|
||||||
|
let(:account) { Fabricate(:account, domain: 'host.example') }
|
||||||
|
|
||||||
|
it 'creates a new featured tag and does not distributes' do
|
||||||
|
expect { subject.call(account, tag) }
|
||||||
|
.to change(FeaturedTag, :count).by(1)
|
||||||
|
expect(ActivityPub::AccountRawDistributionWorker)
|
||||||
|
.to_not have_enqueued_sidekiq_job
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -157,8 +157,6 @@ RSpec.describe NotifyService, type: :service do
|
||||||
|
|
||||||
describe 'email' do
|
describe 'email' do
|
||||||
before do
|
before do
|
||||||
ActionMailer::Base.deliveries.clear
|
|
||||||
|
|
||||||
user.settings.update('notification_emails.follow': enabled)
|
user.settings.update('notification_emails.follow': enabled)
|
||||||
user.save
|
user.save
|
||||||
end
|
end
|
||||||
|
@ -167,7 +165,15 @@ RSpec.describe NotifyService, type: :service do
|
||||||
let(:enabled) { true }
|
let(:enabled) { true }
|
||||||
|
|
||||||
it 'sends email', :sidekiq_inline do
|
it 'sends email', :sidekiq_inline do
|
||||||
expect { subject }.to change(ActionMailer::Base.deliveries, :count).by(1)
|
emails = capture_emails { subject }
|
||||||
|
|
||||||
|
expect(emails.size)
|
||||||
|
.to eq(1)
|
||||||
|
expect(emails.first)
|
||||||
|
.to have_attributes(
|
||||||
|
to: contain_exactly(user.email),
|
||||||
|
subject: eq(I18n.t('notification_mailer.follow.subject', name: sender.acct))
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -175,7 +181,9 @@ RSpec.describe NotifyService, type: :service do
|
||||||
let(:enabled) { false }
|
let(:enabled) { false }
|
||||||
|
|
||||||
it "doesn't send email" do
|
it "doesn't send email" do
|
||||||
expect { subject }.to_not change(ActionMailer::Base.deliveries, :count).from(0)
|
emails = capture_emails { subject }
|
||||||
|
|
||||||
|
expect(emails).to be_empty
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
RSpec.describe ProcessHashtagsService do
|
||||||
|
describe '#call' do
|
||||||
|
let(:status) { Fabricate(:status, visibility: :public, text: 'With tags #one #two') }
|
||||||
|
|
||||||
|
it 'applies the tags from the status text' do
|
||||||
|
expect { subject.call(status) }
|
||||||
|
.to change(Tag, :count).by(2)
|
||||||
|
expect(status.reload.tags.map(&:name))
|
||||||
|
.to contain_exactly('one', 'two')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -158,13 +158,14 @@ RSpec.describe ReportService, type: :service do
|
||||||
|
|
||||||
before do
|
before do
|
||||||
Fabricate(:report, target_account: target_account)
|
Fabricate(:report, target_account: target_account)
|
||||||
ActionMailer::Base.deliveries.clear
|
|
||||||
source_account.user.settings['notification_emails.report'] = true
|
source_account.user.settings['notification_emails.report'] = true
|
||||||
source_account.user.save
|
source_account.user.save
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'does not send an e-mail' do
|
it 'does not send an e-mail' do
|
||||||
expect { subject.call }.to_not change(ActionMailer::Base.deliveries, :count).from(0)
|
emails = capture_emails { subject.call }
|
||||||
|
|
||||||
|
expect(emails).to be_empty
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -15,12 +15,17 @@ describe BackupWorker do
|
||||||
let!(:other_backup) { Fabricate(:backup, user: backup.user) }
|
let!(:other_backup) { Fabricate(:backup, user: backup.user) }
|
||||||
|
|
||||||
it 'sends the backup to the service and removes other backups', :sidekiq_inline do
|
it 'sends the backup to the service and removes other backups', :sidekiq_inline do
|
||||||
expect do
|
emails = capture_emails { worker.perform(backup.id) }
|
||||||
worker.perform(backup.id)
|
|
||||||
end.to change(UserMailer.deliveries, :size).by(1)
|
|
||||||
|
|
||||||
expect(service).to have_received(:call).with(backup)
|
expect(service).to have_received(:call).with(backup)
|
||||||
expect { other_backup.reload }.to raise_error(ActiveRecord::RecordNotFound)
|
expect { other_backup.reload }.to raise_error(ActiveRecord::RecordNotFound)
|
||||||
|
expect(emails.size)
|
||||||
|
.to eq(1)
|
||||||
|
expect(emails.first)
|
||||||
|
.to have_attributes(
|
||||||
|
to: contain_exactly(backup.user.email),
|
||||||
|
subject: I18n.t('user_mailer.backup_ready.subject')
|
||||||
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when sidekiq retries are exhausted' do
|
context 'when sidekiq retries are exhausted' do
|
||||||
|
|
|
@ -5612,9 +5612,9 @@ __metadata:
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"cocoon-js-vanilla@npm:^1.3.0":
|
"cocoon-js-vanilla@npm:^1.3.0":
|
||||||
version: 1.3.0
|
version: 1.4.0
|
||||||
resolution: "cocoon-js-vanilla@npm:1.3.0"
|
resolution: "cocoon-js-vanilla@npm:1.4.0"
|
||||||
checksum: 12adec293ba625c608518ef504c24f4b5906873713092e55d28343dd12fbc9ab7940d8c2bbe02a320bd56120d3768ae90a8d8bc5a6a82e604a56c216b66027e1
|
checksum: 3a3976d325d24518317ca38536ad5f4e570c139b86082dd33c64d38c2a4b2c58fa9cc9aac4624d8fd2f4c9f0eafe681bb8872360010e6b36d9974d8abc57f520
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue