Merge commit 'dee744c793
' into kbtopic-remove-quote
This commit is contained in:
commit
a88d202c6b
146 changed files with 1092 additions and 385 deletions
|
@ -13,7 +13,7 @@ ARG BASE_REGISTRY="docker.io"
|
|||
|
||||
# Ruby image to use for base image, change with [--build-arg RUBY_VERSION="3.4.x"]
|
||||
# renovate: datasource=docker depName=docker.io/ruby
|
||||
ARG RUBY_VERSION="3.4.2"
|
||||
ARG RUBY_VERSION="3.4.3"
|
||||
# # Node.js version to use in base image, change with [--build-arg NODE_MAJOR_VERSION="20"]
|
||||
# renovate: datasource=node-version depName=node
|
||||
ARG NODE_MAJOR_VERSION="22"
|
||||
|
|
|
@ -160,7 +160,7 @@ GEM
|
|||
cocoon (1.2.15)
|
||||
color_diff (0.1)
|
||||
concurrent-ruby (1.3.5)
|
||||
connection_pool (2.5.0)
|
||||
connection_pool (2.5.1)
|
||||
cose (1.3.1)
|
||||
cbor (~> 0.5.9)
|
||||
openssl-signature_algorithm (~> 1.0)
|
||||
|
@ -446,7 +446,7 @@ GEM
|
|||
net-smtp (0.5.1)
|
||||
net-protocol
|
||||
nio4r (2.7.4)
|
||||
nokogiri (1.18.7)
|
||||
nokogiri (1.18.8)
|
||||
mini_portile2 (~> 2.8.2)
|
||||
racc (~> 1.4)
|
||||
oj (3.16.10)
|
||||
|
@ -495,6 +495,8 @@ GEM
|
|||
opentelemetry-common (~> 0.20)
|
||||
opentelemetry-sdk (~> 1.2)
|
||||
opentelemetry-semantic_conventions
|
||||
opentelemetry-helpers-sql (0.1.1)
|
||||
opentelemetry-api (~> 1.0)
|
||||
opentelemetry-helpers-sql-obfuscation (0.3.0)
|
||||
opentelemetry-common (~> 0.21)
|
||||
opentelemetry-instrumentation-action_mailer (0.4.0)
|
||||
|
@ -548,8 +550,9 @@ GEM
|
|||
opentelemetry-instrumentation-net_http (0.23.0)
|
||||
opentelemetry-api (~> 1.0)
|
||||
opentelemetry-instrumentation-base (~> 0.23.0)
|
||||
opentelemetry-instrumentation-pg (0.30.0)
|
||||
opentelemetry-instrumentation-pg (0.30.1)
|
||||
opentelemetry-api (~> 1.0)
|
||||
opentelemetry-helpers-sql
|
||||
opentelemetry-helpers-sql-obfuscation
|
||||
opentelemetry-instrumentation-base (~> 0.23.0)
|
||||
opentelemetry-instrumentation-rack (0.26.0)
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
import { createAction } from '@reduxjs/toolkit';
|
||||
|
||||
import { apiRemoveAccountFromFollowers } from 'mastodon/api/accounts';
|
||||
import type { ApiAccountJSON } from 'mastodon/api_types/accounts';
|
||||
import type { ApiRelationshipJSON } from 'mastodon/api_types/relationships';
|
||||
import { createDataLoadingThunk } from 'mastodon/store/typed_functions';
|
||||
|
||||
export const revealAccount = createAction<{
|
||||
id: string;
|
||||
|
@ -95,3 +97,10 @@ export const fetchRelationshipsSuccess = createAction(
|
|||
'relationships/fetch/SUCCESS',
|
||||
actionWithSkipLoadingTrue<{ relationships: ApiRelationshipJSON[] }>,
|
||||
);
|
||||
|
||||
export const removeAccountFromFollowers = createDataLoadingThunk(
|
||||
'accounts/remove_from_followers',
|
||||
({ accountId }: { accountId: string }) =>
|
||||
apiRemoveAccountFromFollowers(accountId),
|
||||
(relationship) => ({ relationship }),
|
||||
);
|
||||
|
|
|
@ -18,3 +18,8 @@ export const apiFollowAccount = (
|
|||
|
||||
export const apiUnfollowAccount = (id: string) =>
|
||||
apiRequestPost<ApiRelationshipJSON>(`v1/accounts/${id}/unfollow`);
|
||||
|
||||
export const apiRemoveAccountFromFollowers = (id: string) =>
|
||||
apiRequestPost<ApiRelationshipJSON>(
|
||||
`v1/accounts/${id}/remove_from_followers`,
|
||||
);
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
import { FormattedMessage } from 'react-intl';
|
||||
|
||||
import { useParams } from 'react-router';
|
||||
|
||||
import { LimitedAccountHint } from 'mastodon/features/account_timeline/components/limited_account_hint';
|
||||
import { me } from 'mastodon/initial_state';
|
||||
|
||||
interface EmptyMessageProps {
|
||||
suspended: boolean;
|
||||
|
@ -15,13 +18,21 @@ export const EmptyMessage: React.FC<EmptyMessageProps> = ({
|
|||
hidden,
|
||||
blockedBy,
|
||||
}) => {
|
||||
const { acct } = useParams<{ acct?: string }>();
|
||||
if (!accountId) {
|
||||
return null;
|
||||
}
|
||||
|
||||
let message: React.ReactNode = null;
|
||||
|
||||
if (suspended) {
|
||||
if (me === accountId) {
|
||||
message = (
|
||||
<FormattedMessage
|
||||
id='empty_column.account_featured.me'
|
||||
defaultMessage='You have not featured anything yet. Did you know that you can feature your posts, hashtags you use the most, and even your friend’s accounts on your profile?'
|
||||
/>
|
||||
);
|
||||
} else if (suspended) {
|
||||
message = (
|
||||
<FormattedMessage
|
||||
id='empty_column.account_suspended'
|
||||
|
@ -37,11 +48,19 @@ export const EmptyMessage: React.FC<EmptyMessageProps> = ({
|
|||
defaultMessage='Profile unavailable'
|
||||
/>
|
||||
);
|
||||
} else if (acct) {
|
||||
message = (
|
||||
<FormattedMessage
|
||||
id='empty_column.account_featured.other'
|
||||
defaultMessage='{acct} has not featured anything yet. Did you know that you can feature your posts, hashtags you use the most, and even your friend’s accounts on your profile?'
|
||||
values={{ acct }}
|
||||
/>
|
||||
);
|
||||
} else {
|
||||
message = (
|
||||
<FormattedMessage
|
||||
id='empty_column.account_featured'
|
||||
defaultMessage='This list is empty'
|
||||
id='empty_column.account_featured_other.unknown'
|
||||
defaultMessage='This account has not featured anything yet.'
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -42,6 +42,7 @@ export const FeaturedTag: React.FC<FeaturedTagProps> = ({ tag, account }) => {
|
|||
date: intl.formatDate(tag.get('last_status_at') ?? '', {
|
||||
month: 'short',
|
||||
day: '2-digit',
|
||||
year: 'numeric',
|
||||
}),
|
||||
})
|
||||
: intl.formatMessage(messages.empty)
|
||||
|
|
|
@ -25,6 +25,7 @@ import {
|
|||
unmuteAccount,
|
||||
pinAccount,
|
||||
unpinAccount,
|
||||
removeAccountFromFollowers,
|
||||
} from 'mastodon/actions/accounts';
|
||||
import { initBlockModal } from 'mastodon/actions/blocks';
|
||||
import { mentionCompose, directCompose } from 'mastodon/actions/compose';
|
||||
|
@ -70,18 +71,6 @@ import { MemorialNote } from './memorial_note';
|
|||
import { MovedNote } from './moved_note';
|
||||
|
||||
const messages = defineMessages({
|
||||
unfollow: { id: 'account.unfollow', defaultMessage: 'Unfollow' },
|
||||
follow: { id: 'account.follow', defaultMessage: 'Follow' },
|
||||
followBack: { id: 'account.follow_back', defaultMessage: 'Follow back' },
|
||||
mutual: { id: 'account.mutual', defaultMessage: 'Mutual' },
|
||||
cancel_follow_request: {
|
||||
id: 'account.cancel_follow_request',
|
||||
defaultMessage: 'Withdraw follow request',
|
||||
},
|
||||
requested: {
|
||||
id: 'account.requested',
|
||||
defaultMessage: 'Awaiting approval. Click to cancel follow request',
|
||||
},
|
||||
unblock: { id: 'account.unblock', defaultMessage: 'Unblock @{name}' },
|
||||
edit_profile: { id: 'account.edit_profile', defaultMessage: 'Edit profile' },
|
||||
linkVerifiedOn: {
|
||||
|
@ -184,6 +173,23 @@ const messages = defineMessages({
|
|||
id: 'account.open_original_page',
|
||||
defaultMessage: 'Open original page',
|
||||
},
|
||||
removeFromFollowers: {
|
||||
id: 'account.remove_from_followers',
|
||||
defaultMessage: 'Remove {name} from followers',
|
||||
},
|
||||
confirmRemoveFromFollowersTitle: {
|
||||
id: 'confirmations.remove_from_followers.title',
|
||||
defaultMessage: 'Remove follower?',
|
||||
},
|
||||
confirmRemoveFromFollowersMessage: {
|
||||
id: 'confirmations.remove_from_followers.message',
|
||||
defaultMessage:
|
||||
'{name} will stop following you. Are you sure you want to proceed?',
|
||||
},
|
||||
confirmRemoveFromFollowersButton: {
|
||||
id: 'confirmations.remove_from_followers.confirm',
|
||||
defaultMessage: 'Remove follower',
|
||||
},
|
||||
});
|
||||
|
||||
const titleFromAccount = (account: Account) => {
|
||||
|
@ -592,6 +598,39 @@ export const AccountHeader: React.FC<{
|
|||
}
|
||||
arr.push(null);
|
||||
|
||||
if (relationship?.followed_by) {
|
||||
const handleRemoveFromFollowers = () => {
|
||||
dispatch(
|
||||
openModal({
|
||||
modalType: 'CONFIRM',
|
||||
modalProps: {
|
||||
title: intl.formatMessage(
|
||||
messages.confirmRemoveFromFollowersTitle,
|
||||
),
|
||||
message: intl.formatMessage(
|
||||
messages.confirmRemoveFromFollowersMessage,
|
||||
{ name: <strong>{account.acct}</strong> },
|
||||
),
|
||||
confirm: intl.formatMessage(
|
||||
messages.confirmRemoveFromFollowersButton,
|
||||
),
|
||||
onConfirm: () => {
|
||||
void dispatch(removeAccountFromFollowers({ accountId }));
|
||||
},
|
||||
},
|
||||
}),
|
||||
);
|
||||
};
|
||||
|
||||
arr.push({
|
||||
text: intl.formatMessage(messages.removeFromFollowers, {
|
||||
name: account.username,
|
||||
}),
|
||||
action: handleRemoveFromFollowers,
|
||||
dangerous: true,
|
||||
});
|
||||
}
|
||||
|
||||
if (relationship?.muting) {
|
||||
arr.push({
|
||||
text: intl.formatMessage(messages.unmute, {
|
||||
|
@ -690,6 +729,8 @@ export const AccountHeader: React.FC<{
|
|||
|
||||
return arr;
|
||||
}, [
|
||||
dispatch,
|
||||
accountId,
|
||||
account,
|
||||
relationship,
|
||||
permissions,
|
||||
|
@ -724,29 +765,65 @@ export const AccountHeader: React.FC<{
|
|||
|
||||
const info: React.ReactNode[] = [];
|
||||
|
||||
if (me !== account.id && relationship?.blocking) {
|
||||
info.push(
|
||||
<span key='blocked' className='relationship-tag'>
|
||||
<FormattedMessage id='account.blocked' defaultMessage='Blocked' />
|
||||
</span>,
|
||||
);
|
||||
}
|
||||
if (me !== account.id && relationship) {
|
||||
if (
|
||||
relationship.followed_by &&
|
||||
(relationship.following || relationship.requested)
|
||||
) {
|
||||
info.push(
|
||||
<span key='mutual' className='relationship-tag'>
|
||||
<FormattedMessage
|
||||
id='account.mutual'
|
||||
defaultMessage='You follow each other'
|
||||
/>
|
||||
</span>,
|
||||
);
|
||||
} else if (relationship.followed_by) {
|
||||
info.push(
|
||||
<span key='followed_by' className='relationship-tag'>
|
||||
<FormattedMessage
|
||||
id='account.follows_you'
|
||||
defaultMessage='Follows you'
|
||||
/>
|
||||
</span>,
|
||||
);
|
||||
} else if (relationship.requested_by) {
|
||||
info.push(
|
||||
<span key='requested_by' className='relationship-tag'>
|
||||
<FormattedMessage
|
||||
id='account.requests_to_follow_you'
|
||||
defaultMessage='Requests to follow you'
|
||||
/>
|
||||
</span>,
|
||||
);
|
||||
}
|
||||
|
||||
if (me !== account.id && relationship?.muting) {
|
||||
info.push(
|
||||
<span key='muted' className='relationship-tag'>
|
||||
<FormattedMessage id='account.muted' defaultMessage='Muted' />
|
||||
</span>,
|
||||
);
|
||||
} else if (me !== account.id && relationship?.domain_blocking) {
|
||||
info.push(
|
||||
<span key='domain_blocked' className='relationship-tag'>
|
||||
<FormattedMessage
|
||||
id='account.domain_blocked'
|
||||
defaultMessage='Domain blocked'
|
||||
/>
|
||||
</span>,
|
||||
);
|
||||
if (relationship.blocking) {
|
||||
info.push(
|
||||
<span key='blocking' className='relationship-tag'>
|
||||
<FormattedMessage id='account.blocking' defaultMessage='Blocking' />
|
||||
</span>,
|
||||
);
|
||||
}
|
||||
|
||||
if (relationship.muting) {
|
||||
info.push(
|
||||
<span key='muting' className='relationship-tag'>
|
||||
<FormattedMessage id='account.muting' defaultMessage='Muting' />
|
||||
</span>,
|
||||
);
|
||||
}
|
||||
|
||||
if (relationship.domain_blocking) {
|
||||
info.push(
|
||||
<span key='domain_blocking' className='relationship-tag'>
|
||||
<FormattedMessage
|
||||
id='account.domain_blocking'
|
||||
defaultMessage='Blocking domain'
|
||||
/>
|
||||
</span>,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if (relationship?.requested || relationship?.following) {
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
"account.blocked": "Geblokkeer",
|
||||
"account.cancel_follow_request": "Herroep volgversoek",
|
||||
"account.disable_notifications": "Hou op om my van @{name} se plasings te laat weet",
|
||||
"account.domain_blocked": "Domein geblokkeer",
|
||||
"account.edit_profile": "Redigeer profiel",
|
||||
"account.enable_notifications": "Laat weet my wanneer @{name} iets plaas",
|
||||
"account.endorse": "Toon op profiel",
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
"account.blocked": "Blocau",
|
||||
"account.cancel_follow_request": "Retirar solicitut de seguimiento",
|
||||
"account.disable_notifications": "Deixar de notificar-me quan @{name} publique bella cosa",
|
||||
"account.domain_blocked": "Dominio blocau",
|
||||
"account.edit_profile": "Editar perfil",
|
||||
"account.enable_notifications": "Notificar-me quan @{name} publique bella cosa",
|
||||
"account.endorse": "Amostrar en perfil",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "نسخ الرابط إلى الملف الشخصي",
|
||||
"account.direct": "إشارة خاصة لـ @{name}",
|
||||
"account.disable_notifications": "توقف عن إشعاري عندما ينشر @{name}",
|
||||
"account.domain_blocked": "اسم النِّطاق محظور",
|
||||
"account.edit_profile": "تعديل الملف الشخصي",
|
||||
"account.enable_notifications": "أشعرني عندما ينشر @{name}",
|
||||
"account.endorse": "أوصِ به على صفحتك الشخصية",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "كتم الإشعارات",
|
||||
"account.mute_short": "اكتم",
|
||||
"account.muted": "مَكتوم",
|
||||
"account.mutual": "متبادلة",
|
||||
"account.no_bio": "لم يتم تقديم وصف.",
|
||||
"account.open_original_page": "افتح الصفحة الأصلية",
|
||||
"account.posts": "منشورات",
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
"account.copy": "Copiar l'enlllaz al perfil",
|
||||
"account.direct": "Mentar a @{name} per privao",
|
||||
"account.disable_notifications": "Dexar d'avisame cuando @{name} espublice artículos",
|
||||
"account.domain_blocked": "Dominiu bloquiáu",
|
||||
"account.edit_profile": "Editar el perfil",
|
||||
"account.enable_notifications": "Avisame cuando @{name} espublice artículos",
|
||||
"account.endorse": "Destacar nel perfil",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Profil linkini kopyala",
|
||||
"account.direct": "@{name} istifadəçisini fərdi olaraq etiketlə",
|
||||
"account.disable_notifications": "@{name} paylaşım edəndə mənə bildiriş göndərməyi dayandır",
|
||||
"account.domain_blocked": "Domen bloklanıb",
|
||||
"account.edit_profile": "Profili redaktə et",
|
||||
"account.enable_notifications": "@{name} paylaşım edəndə mənə bildiriş göndər",
|
||||
"account.endorse": "Profildə seçilmişlərə əlavə et",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Bildirişləri səssizləşdir",
|
||||
"account.mute_short": "Səssizləşdir",
|
||||
"account.muted": "Səssizləşdirilib",
|
||||
"account.mutual": "Ortaq",
|
||||
"account.no_bio": "Təsvir göstərilməyib.",
|
||||
"account.open_original_page": "Orijinal səhifəni aç",
|
||||
"account.posts": "Paylaşım",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Скапіраваць спасылку на профіль",
|
||||
"account.direct": "Згадаць асабіста @{name}",
|
||||
"account.disable_notifications": "Не паведамляць мне пра публікацыі @{name}",
|
||||
"account.domain_blocked": "Дамен заблакаваны",
|
||||
"account.edit_profile": "Рэдагаваць профіль",
|
||||
"account.enable_notifications": "Апавяшчаць мяне пра допісы @{name}",
|
||||
"account.endorse": "Паказваць у профілі",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Не апавяшчаць",
|
||||
"account.mute_short": "Ігнараваць",
|
||||
"account.muted": "Ігнаруецца",
|
||||
"account.mutual": "Узаемныя",
|
||||
"account.no_bio": "Апісанне адсутнічае.",
|
||||
"account.open_original_page": "Адкрыць арыгінальную старонку",
|
||||
"account.posts": "Допісы",
|
||||
|
|
|
@ -19,11 +19,11 @@
|
|||
"account.block_domain": "Блокиране на домейн {domain}",
|
||||
"account.block_short": "Блокиране",
|
||||
"account.blocked": "Блокирани",
|
||||
"account.blocking": "Блокиране",
|
||||
"account.cancel_follow_request": "Оттегляне на заявката за последване",
|
||||
"account.copy": "Копиране на връзка към профила",
|
||||
"account.direct": "Частно споменаване на @{name}",
|
||||
"account.disable_notifications": "Спиране на известяване при публикуване от @{name}",
|
||||
"account.domain_blocked": "Блокиран домейн",
|
||||
"account.edit_profile": "Редактиране на профила",
|
||||
"account.enable_notifications": "Известяване при публикуване от @{name}",
|
||||
"account.endorse": "Представи в профила",
|
||||
|
@ -54,7 +54,6 @@
|
|||
"account.mute_notifications_short": "Заглушаване на известията",
|
||||
"account.mute_short": "Заглушаване",
|
||||
"account.muted": "Заглушено",
|
||||
"account.mutual": "Взаимни",
|
||||
"account.no_bio": "Няма представен опис.",
|
||||
"account.open_original_page": "Отваряне на първообразната страница",
|
||||
"account.posts": "Публикации",
|
||||
|
@ -296,7 +295,6 @@
|
|||
"emoji_button.search_results": "Резултати от търсене",
|
||||
"emoji_button.symbols": "Символи",
|
||||
"emoji_button.travel": "Пътуване и места",
|
||||
"empty_column.account_featured": "Списъкът е празен",
|
||||
"empty_column.account_hides_collections": "Този потребител е избрал да не дава тази информация",
|
||||
"empty_column.account_suspended": "Спрян акаунт",
|
||||
"empty_column.account_timeline": "Тук няма публикации!",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "অবতারের সংযোগ অনুলিপি করো",
|
||||
"account.direct": "গোপনে মেনশন করুন @{name}",
|
||||
"account.disable_notifications": "আমাকে জানানো বন্ধ করো যখন @{name} পোস্ট করবে",
|
||||
"account.domain_blocked": "ডোমেইন ব্লক করা",
|
||||
"account.edit_profile": "প্রোফাইল সম্পাদনা করুন",
|
||||
"account.enable_notifications": "আমাকে জানাবে যখন @{name} পোস্ট করবে",
|
||||
"account.endorse": "প্রোফাইলে ফিচার করুন",
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
"account.copy": "Eilañ al liamm war-zu ho profil",
|
||||
"account.direct": "Menegiñ @{name} ent-prevez",
|
||||
"account.disable_notifications": "Paouez d'am c'hemenn pa vez embannet traoù gant @{name}",
|
||||
"account.domain_blocked": "Domani stanket",
|
||||
"account.edit_profile": "Kemmañ ar profil",
|
||||
"account.enable_notifications": "Ma c'hemenn pa vez embannet traoù gant @{name}",
|
||||
"account.endorse": "Lakaat war-wel war ar profil",
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "Bloca el domini {domain}",
|
||||
"account.block_short": "Bloca",
|
||||
"account.blocked": "Blocat",
|
||||
"account.blocking": "Blocat",
|
||||
"account.cancel_follow_request": "Cancel·la el seguiment",
|
||||
"account.copy": "Copia l'enllaç al perfil",
|
||||
"account.direct": "Menciona privadament @{name}",
|
||||
"account.disable_notifications": "Deixa de notificar-me els tuts de @{name}",
|
||||
"account.domain_blocked": "Domini blocat",
|
||||
"account.domain_blocking": "Bloquem el domini",
|
||||
"account.edit_profile": "Edita el perfil",
|
||||
"account.enable_notifications": "Notifica'm els tuts de @{name}",
|
||||
"account.endorse": "Recomana en el perfil",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Seguint",
|
||||
"account.following_counter": "{count, plural, other {Seguint-ne {counter}}}",
|
||||
"account.follows.empty": "Aquest usuari encara no segueix ningú.",
|
||||
"account.follows_you": "Us segueix",
|
||||
"account.go_to_profile": "Vés al perfil",
|
||||
"account.hide_reblogs": "Amaga els impulsos de @{name}",
|
||||
"account.in_memoriam": "En Memòria.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Silencia les notificacions",
|
||||
"account.mute_short": "Silencia",
|
||||
"account.muted": "Silenciat",
|
||||
"account.mutual": "Mutu",
|
||||
"account.muting": "Silenciem",
|
||||
"account.mutual": "Us seguiu l'un a l'altre",
|
||||
"account.no_bio": "No s'ha proporcionat cap descripció.",
|
||||
"account.open_original_page": "Obre la pàgina original",
|
||||
"account.posts": "Tuts",
|
||||
"account.posts_with_replies": "Tuts i respostes",
|
||||
"account.remove_from_followers": "Elimina {name} dels seguidors",
|
||||
"account.report": "Informa sobre @{name}",
|
||||
"account.requested": "S'espera l'aprovació. Clica per a cancel·lar la petició de seguiment",
|
||||
"account.requested_follow": "{name} ha demanat de seguir-te",
|
||||
"account.requests_to_follow_you": "Peticions de seguir-vos",
|
||||
"account.share": "Comparteix el perfil de @{name}",
|
||||
"account.show_reblogs": "Mostra els impulsos de @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} publicació} other {{counter} publicacions}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Esborra i reescriu",
|
||||
"confirmations.redraft.message": "Segur que vols eliminar aquest tut i tornar a escriure'l? Es perdran tots els impulsos i els favorits, i les respostes al tut original quedaran aïllades.",
|
||||
"confirmations.redraft.title": "Esborrar i reescriure la publicació?",
|
||||
"confirmations.remove_from_followers.confirm": "Elimina el seguidor",
|
||||
"confirmations.remove_from_followers.message": "{name} deixarà de seguir-vos. Tirem endavant?",
|
||||
"confirmations.remove_from_followers.title": "Eliminem el seguidor?",
|
||||
"confirmations.reply.confirm": "Respon",
|
||||
"confirmations.reply.message": "Si respons ara, sobreescriuràs el missatge que estàs editant. Segur que vols continuar?",
|
||||
"confirmations.reply.title": "Sobreescriure la publicació?",
|
||||
|
@ -296,7 +304,9 @@
|
|||
"emoji_button.search_results": "Resultats de la cerca",
|
||||
"emoji_button.symbols": "Símbols",
|
||||
"emoji_button.travel": "Viatges i llocs",
|
||||
"empty_column.account_featured": "Aquesta llista està buida",
|
||||
"empty_column.account_featured.me": "No heu destacat encara res. Sabeu que podeu destacar al vostre perfil publicacions, les etiquetes que més feu servir i fins i tot els comptes dels vostres amics?",
|
||||
"empty_column.account_featured.other": "{acct} no ha destacat encara res. Sabeu que podeu destacar al vostre perfil publicacions, les etiquetes que més feu servir i fins i tot els comptes dels vostres amics?",
|
||||
"empty_column.account_featured_other.unknown": "Aquest compte no ha destacat encara res.",
|
||||
"empty_column.account_hides_collections": "Aquest usuari ha decidit no mostrar aquesta informació",
|
||||
"empty_column.account_suspended": "Compte suspès",
|
||||
"empty_column.account_timeline": "No hi ha tuts aquí!",
|
||||
|
@ -381,6 +391,8 @@
|
|||
"generic.saved": "Desat",
|
||||
"getting_started.heading": "Primeres passes",
|
||||
"hashtag.admin_moderation": "Obre la interfície de moderació per a #{name}",
|
||||
"hashtag.browse": "Fulleja publicacions a #{hashtag}",
|
||||
"hashtag.browse_from_account": "Fulleja publicacions de {name} a #{hashtag}",
|
||||
"hashtag.column_header.tag_mode.all": "i {additional}",
|
||||
"hashtag.column_header.tag_mode.any": "o {additional}",
|
||||
"hashtag.column_header.tag_mode.none": "sense {additional}",
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
"account.copy": "ڕوونووسی بەستەر بۆ توت",
|
||||
"account.direct": "بە شێوەیەکی تایبەت باسی @{name} بکە",
|
||||
"account.disable_notifications": "ئاگانامە مەنێرە بۆم کاتێک @{name} پۆست دەکرێت",
|
||||
"account.domain_blocked": "دۆمەین قەپاتکرا",
|
||||
"account.edit_profile": "دەستکاری پرۆفایل",
|
||||
"account.enable_notifications": "ئاگادارم بکەوە کاتێک @{name} بابەتەکان",
|
||||
"account.endorse": "ناساندن لە پرۆفایل",
|
||||
|
@ -48,7 +47,6 @@
|
|||
"account.mute_notifications_short": "پاڵ بە ئاگادارکردنەوەکانەوە بنێ",
|
||||
"account.mute_short": "بێدەنگ",
|
||||
"account.muted": "بێ دەنگ",
|
||||
"account.mutual": "دوولایەنە",
|
||||
"account.no_bio": "هیچ وەسفێک نەخراوەتەڕوو.",
|
||||
"account.open_original_page": "لاپەڕەی ئەسڵی بکەرەوە",
|
||||
"account.posts": "نووسراوەکان",
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
"account.blocked": "Bluccatu",
|
||||
"account.cancel_follow_request": "Withdraw follow request",
|
||||
"account.disable_notifications": "Ùn mi nutificate più quandu @{name} pubblica qualcosa",
|
||||
"account.domain_blocked": "Duminiu piattatu",
|
||||
"account.edit_profile": "Mudificà u prufile",
|
||||
"account.enable_notifications": "Nutificate mi quandu @{name} pubblica qualcosa",
|
||||
"account.endorse": "Fà figurà nant'à u prufilu",
|
||||
|
|
|
@ -19,15 +19,16 @@
|
|||
"account.block_domain": "Blokovat doménu {domain}",
|
||||
"account.block_short": "Zablokovat",
|
||||
"account.blocked": "Blokovaný",
|
||||
"account.blocking": "Blokovaní",
|
||||
"account.cancel_follow_request": "Zrušit sledování",
|
||||
"account.copy": "Kopírovat odkaz na profil",
|
||||
"account.direct": "Soukromě zmínit @{name}",
|
||||
"account.disable_notifications": "Přestat mě upozorňovat, když @{name} zveřejní příspěvek",
|
||||
"account.domain_blocked": "Doména blokována",
|
||||
"account.domain_blocking": "Blokované domény",
|
||||
"account.edit_profile": "Upravit profil",
|
||||
"account.enable_notifications": "Oznamovat mi příspěvky @{name}",
|
||||
"account.endorse": "Zvýraznit na profilu",
|
||||
"account.featured": "Doporučené",
|
||||
"account.featured": "Zvýrazněné",
|
||||
"account.featured.hashtags": "Hashtagy",
|
||||
"account.featured.posts": "Příspěvky",
|
||||
"account.featured_tags.last_status_at": "Poslední příspěvek {date}",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Sledujete",
|
||||
"account.following_counter": "{count, plural, one {{counter} sledovaný} few {{counter} sledovaní} many {{counter} sledovaných} other {{counter} sledovaných}}",
|
||||
"account.follows.empty": "Tento uživatel zatím nikoho nesleduje.",
|
||||
"account.follows_you": "Sleduje vás",
|
||||
"account.go_to_profile": "Přejít na profil",
|
||||
"account.hide_reblogs": "Skrýt boosty od @{name}",
|
||||
"account.in_memoriam": "In Memoriam.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Ztlumit upozornění",
|
||||
"account.mute_short": "Ztlumit",
|
||||
"account.muted": "Skrytý",
|
||||
"account.mutual": "Vzájemné",
|
||||
"account.muting": "Ztlumení",
|
||||
"account.mutual": "Sledujete se navzájem",
|
||||
"account.no_bio": "Nebyl poskytnut žádný popis.",
|
||||
"account.open_original_page": "Otevřít původní stránku",
|
||||
"account.posts": "Příspěvky",
|
||||
"account.posts_with_replies": "Příspěvky a odpovědi",
|
||||
"account.remove_from_followers": "Odebrat {name} ze sledujících",
|
||||
"account.report": "Nahlásit @{name}",
|
||||
"account.requested": "Čeká na schválení. Kliknutím žádost o sledování zrušíte",
|
||||
"account.requested_follow": "{name} tě požádal o sledování",
|
||||
"account.requests_to_follow_you": "Žádosti o sledování",
|
||||
"account.share": "Sdílet profil @{name}",
|
||||
"account.show_reblogs": "Zobrazit boosty od @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} příspěvek} few {{counter} příspěvky} many {{counter} příspěvků} other {{counter} příspěvků}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Smazat a přepsat",
|
||||
"confirmations.redraft.message": "Jste si jistí, že chcete odstranit tento příspěvek a vytvořit z něj koncept? Oblíbené a boosty budou ztraceny a odpovědi na původní příspěvek ztratí kontext.",
|
||||
"confirmations.redraft.title": "Smazat a přepracovat příspěvek na koncept?",
|
||||
"confirmations.remove_from_followers.confirm": "Odstranit sledujícího",
|
||||
"confirmations.remove_from_followers.message": "{name} vás přestane sledovat. Jste si jisti, že chcete pokračovat?",
|
||||
"confirmations.remove_from_followers.title": "Odstranit sledujícího?",
|
||||
"confirmations.reply.confirm": "Odpovědět",
|
||||
"confirmations.reply.message": "Odpověď přepíše vaši rozepsanou zprávu. Opravdu chcete pokračovat?",
|
||||
"confirmations.reply.title": "Přepsat příspěvek?",
|
||||
|
@ -296,7 +304,9 @@
|
|||
"emoji_button.search_results": "Výsledky hledání",
|
||||
"emoji_button.symbols": "Symboly",
|
||||
"emoji_button.travel": "Cestování a místa",
|
||||
"empty_column.account_featured": "Tento seznam je prázdný",
|
||||
"empty_column.account_featured.me": "Zatím jste nic nezvýraznili. Věděli jste, že na svém profilu můžete zvýraznit své příspěvky, hashtagy, které používáte nejvíce, a dokonce účty vašich přátel?",
|
||||
"empty_column.account_featured.other": "{acct} zatím nic nezvýraznili. Věděli jste, že na svém profilu můžete zvýraznit své příspěvky, hashtagy, které používáte nejvíce, a dokonce účty vašich přátel?",
|
||||
"empty_column.account_featured_other.unknown": "Tento účet zatím nemá nic zvýrazněného.",
|
||||
"empty_column.account_hides_collections": "Tento uživatel se rozhodl tuto informaci nezveřejňovat",
|
||||
"empty_column.account_suspended": "Účet je pozastaven",
|
||||
"empty_column.account_timeline": "Nejsou tu žádné příspěvky!",
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
"about.blocks": "Gweinyddion wedi'u cymedroli",
|
||||
"about.blocks": "Gweinyddion a gyfyngir",
|
||||
"about.contact": "Cysylltwch â:",
|
||||
"about.disclaimer": "Mae Mastodon yn feddalwedd cod agored rhydd ac o dan hawlfraint Mastodon gGmbH.",
|
||||
"about.domain_blocks.no_reason_available": "Nid yw'r rheswm ar gael",
|
||||
"about.domain_blocks.no_reason_available": "Dyw'r rheswm ddim ar gael",
|
||||
"about.domain_blocks.preamble": "Fel rheol, mae Mastodon yn caniatáu i chi weld cynnwys gan unrhyw weinyddwr arall yn y ffedysawd a rhyngweithio â hi. Dyma'r eithriadau a wnaed ar y gweinydd penodol hwn.",
|
||||
"about.domain_blocks.silenced.explanation": "Fel rheol, fyddwch chi ddim yn gweld proffiliau a chynnwys o'r gweinydd hwn, oni bai eich bod yn chwilio'n benodol amdano neu yn ymuno drwy ei ddilyn.",
|
||||
"about.domain_blocks.silenced.title": "Cyfyngedig",
|
||||
"about.domain_blocks.suspended.explanation": "Ni fydd data o'r gweinydd hwn yn cael ei brosesu, ei gadw na'i gyfnewid, gan wneud unrhyw ryngweithio neu gyfathrebu gyda defnyddwyr o'r gweinydd hwn yn amhosibl.",
|
||||
"about.domain_blocks.suspended.title": "Ataliwyd",
|
||||
"about.domain_blocks.suspended.title": "Wedi'i atal",
|
||||
"about.not_available": "Nid yw'r wybodaeth hon ar gael ar y gweinydd hwn.",
|
||||
"about.powered_by": "Cyfrwng cymdeithasol datganoledig wedi ei yrru gan {mastodon}",
|
||||
"about.rules": "Rheolau'r gweinydd",
|
||||
|
@ -19,12 +19,13 @@
|
|||
"account.block_domain": "Blocio'r parth {domain}",
|
||||
"account.block_short": "Blocio",
|
||||
"account.blocked": "Blociwyd",
|
||||
"account.blocking": "Yn Rhwystro",
|
||||
"account.cancel_follow_request": "Tynnu cais i ddilyn",
|
||||
"account.copy": "Copïo dolen i'r proffil",
|
||||
"account.direct": "Crybwyll yn breifat @{name}",
|
||||
"account.disable_notifications": "Stopiwch fy hysbysu pan fydd @{name} yn postio",
|
||||
"account.domain_blocked": "Parth wedi'i rwystro",
|
||||
"account.edit_profile": "Golygu proffil",
|
||||
"account.domain_blocking": "Parthau'n cael eu rhwystro",
|
||||
"account.edit_profile": "Golygu'r proffil",
|
||||
"account.enable_notifications": "Rhowch wybod i fi pan fydd @{name} yn postio",
|
||||
"account.endorse": "Dangos ar fy mhroffil",
|
||||
"account.featured": "Dethol",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Yn dilyn",
|
||||
"account.following_counter": "{count, plural, one {Yn dilyn {counter}} other {Yn dilyn {counter} arall}}",
|
||||
"account.follows.empty": "Nid yw'r defnyddiwr hwn yn dilyn unrhyw un eto.",
|
||||
"account.follows_you": "Yn eich dilyn chi",
|
||||
"account.go_to_profile": "Mynd i'r proffil",
|
||||
"account.hide_reblogs": "Cuddio hybiau gan @{name}",
|
||||
"account.in_memoriam": "Er Cof.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Diffodd hysbysiadau",
|
||||
"account.mute_short": "Anwybyddu",
|
||||
"account.muted": "Wedi anwybyddu",
|
||||
"account.mutual": "Cydgydnabod",
|
||||
"account.muting": "Tewi",
|
||||
"account.mutual": "Rydych chi'n dilyn eich gilydd",
|
||||
"account.no_bio": "Dim disgrifiad wedi'i gynnig.",
|
||||
"account.open_original_page": "Agor y dudalen wreiddiol",
|
||||
"account.posts": "Postiadau",
|
||||
"account.posts_with_replies": "Postiadau ac ymatebion",
|
||||
"account.remove_from_followers": "Tynnu {name} o'ch dilynwyr",
|
||||
"account.report": "Adrodd @{name}",
|
||||
"account.requested": "Aros am gymeradwyaeth. Cliciwch er mwyn canslo cais dilyn",
|
||||
"account.requested_follow": "Mae {name} wedi gwneud cais i'ch dilyn",
|
||||
"account.requests_to_follow_you": "Ceisiadau i'ch dilyn",
|
||||
"account.share": "Rhannu proffil @{name}",
|
||||
"account.show_reblogs": "Dangos hybiau gan @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} postiad} two {{counter} bostiad} few {{counter} phostiad} many {{counter} postiad} other {{counter} postiad}}",
|
||||
|
@ -107,7 +112,7 @@
|
|||
"annual_report.summary.here_it_is": "Dyma eich {year} yn gryno:",
|
||||
"annual_report.summary.highlighted_post.by_favourites": "postiad wedi'i ffefrynu fwyaf",
|
||||
"annual_report.summary.highlighted_post.by_reblogs": "postiad wedi'i hybu fwyaf",
|
||||
"annual_report.summary.highlighted_post.by_replies": "postiad gyda'r nifer fwyaf o atebion",
|
||||
"annual_report.summary.highlighted_post.by_replies": "postiad gyda'r nifer fwyaf o ymatebion",
|
||||
"annual_report.summary.highlighted_post.possessive": "{name}",
|
||||
"annual_report.summary.most_used_app.most_used_app": "ap a ddefnyddiwyd fwyaf",
|
||||
"annual_report.summary.most_used_hashtag.most_used_hashtag": "hashnod a ddefnyddiwyd fwyaf",
|
||||
|
@ -228,7 +233,10 @@
|
|||
"confirmations.mute.confirm": "Tewi",
|
||||
"confirmations.redraft.confirm": "Dileu ac ailddrafftio",
|
||||
"confirmations.redraft.message": "Ydych chi wir eisiau'r dileu'r postiad hwn a'i ailddrafftio? Bydd ffefrynnau a hybiau'n cael eu colli, a bydd atebion i'r post gwreiddiol yn mynd yn amddifad.",
|
||||
"confirmations.redraft.title": "Dileu & ailddraftio postiad?",
|
||||
"confirmations.redraft.title": "Dileu ac ailddraftio'r postiad?",
|
||||
"confirmations.remove_from_followers.confirm": "Dileu dilynwr",
|
||||
"confirmations.remove_from_followers.message": "Bydd {name} yn rhoi'r gorau i'ch dilyn. A ydych yn siŵr eich bod am fwrw ymlaen?",
|
||||
"confirmations.remove_from_followers.title": "Tynnu dilynwr?",
|
||||
"confirmations.reply.confirm": "Ymateb",
|
||||
"confirmations.reply.message": "Bydd ateb nawr yn cymryd lle y neges yr ydych yn cyfansoddi ar hyn o bryd. Ydych chi'n siŵr eich bod am barhau?",
|
||||
"confirmations.reply.title": "Trosysgrifo'r postiad?",
|
||||
|
@ -258,7 +266,7 @@
|
|||
"dismissable_banner.explore_tags": "Mae'r hashnodau hyn ar gynnydd y ffedysawd heddiw. Mae hashnodau sy'n cael eu defnyddio gan fwy o bobl amrywiol yn cael eu graddio'n uwch.",
|
||||
"dismissable_banner.public_timeline": "Dyma'r postiadau cyhoeddus diweddaraf gan bobl ar y ffedysawd y mae pobl ar {domain} yn eu dilyn.",
|
||||
"domain_block_modal.block": "Blocio gweinydd",
|
||||
"domain_block_modal.block_account_instead": "Blocio @{name} yn ei le",
|
||||
"domain_block_modal.block_account_instead": "Rhwystro @{name} yn lle hynny",
|
||||
"domain_block_modal.they_can_interact_with_old_posts": "Gall pobl o'r gweinydd hwn ryngweithio â'ch hen bostiadau.",
|
||||
"domain_block_modal.they_cant_follow": "All neb o'r gweinydd hwn eich dilyn.",
|
||||
"domain_block_modal.they_wont_know": "Fyddan nhw ddim yn gwybod eu bod wedi cael eu blocio.",
|
||||
|
@ -296,7 +304,9 @@
|
|||
"emoji_button.search_results": "Canlyniadau chwilio",
|
||||
"emoji_button.symbols": "Symbolau",
|
||||
"emoji_button.travel": "Teithio a Llefydd",
|
||||
"empty_column.account_featured": "Mae'r rhestr hon yn wag",
|
||||
"empty_column.account_featured.me": "Dydych chi heb gynnwys dim eto. Oeddech chi'n gwybod y gallwch chi gynnwys eich postiadau a'r hashnodau rydych chi'n eu defnyddio fwyaf, a hyd yn oed cyfrifon eich ffrind ar eich proffil?",
|
||||
"empty_column.account_featured.other": "Dyw {acct} heb gynnwys dim eto. Oeddech chi'n gwybod y gallwch chi gynnwys eich postiadau a hashnodau rydych chi'n eu defnyddio fwyaf, a hyd yn oed cyfrifon eich ffrind ar eich proffil?",
|
||||
"empty_column.account_featured_other.unknown": "Dyw'r cyfrif hwn heb gynnwys dim eto.",
|
||||
"empty_column.account_hides_collections": "Mae'r defnyddiwr wedi dewis i beidio rhannu'r wybodaeth yma",
|
||||
"empty_column.account_suspended": "Cyfrif wedi'i atal",
|
||||
"empty_column.account_timeline": "Dim postiadau yma!",
|
||||
|
@ -381,6 +391,8 @@
|
|||
"generic.saved": "Wedi'i Gadw",
|
||||
"getting_started.heading": "Dechrau",
|
||||
"hashtag.admin_moderation": "Agor rhyngwyneb cymedroli #{name}",
|
||||
"hashtag.browse": "Pori postiadau yn #{hashtag}",
|
||||
"hashtag.browse_from_account": "Pori postiadau gan @{name} yn #{hashtag}",
|
||||
"hashtag.column_header.tag_mode.all": "a {additional}",
|
||||
"hashtag.column_header.tag_mode.any": "neu {additional}",
|
||||
"hashtag.column_header.tag_mode.none": "heb {additional}",
|
||||
|
@ -394,6 +406,7 @@
|
|||
"hashtag.counter_by_uses": "{count, plural, one {postiad {counter}} other {postiad {counter}}}",
|
||||
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} postiad} other {{counter} postiad}} heddiw",
|
||||
"hashtag.follow": "Dilyn hashnod",
|
||||
"hashtag.mute": "Tewi #{hashtag}",
|
||||
"hashtag.unfollow": "Dad-ddilyn hashnod",
|
||||
"hashtags.and_other": "…a {count, plural, other {# arall}}",
|
||||
"hints.profiles.followers_may_be_missing": "Mae'n bosibl bod dilynwyr y proffil hwn ar goll.",
|
||||
|
@ -529,7 +542,7 @@
|
|||
"navigation_bar.about": "Ynghylch",
|
||||
"navigation_bar.administration": "Gweinyddiaeth",
|
||||
"navigation_bar.advanced_interface": "Agor mewn rhyngwyneb gwe uwch",
|
||||
"navigation_bar.blocks": "Defnyddwyr wedi eu blocio",
|
||||
"navigation_bar.blocks": "Defnyddwyr wedi'u rhwystro",
|
||||
"navigation_bar.bookmarks": "Nodau Tudalen",
|
||||
"navigation_bar.community_timeline": "Ffrwd leol",
|
||||
"navigation_bar.compose": "Cyfansoddi post newydd",
|
||||
|
@ -540,7 +553,7 @@
|
|||
"navigation_bar.favourites": "Ffefrynnau",
|
||||
"navigation_bar.filters": "Geiriau wedi'u tewi",
|
||||
"navigation_bar.follow_requests": "Ceisiadau dilyn",
|
||||
"navigation_bar.followed_tags": "Hashnodau'n cael eu dilyn",
|
||||
"navigation_bar.followed_tags": "Hashnodau a ddilynir",
|
||||
"navigation_bar.follows_and_followers": "Yn dilyn a dilynwyr",
|
||||
"navigation_bar.lists": "Rhestrau",
|
||||
"navigation_bar.logout": "Allgofnodi",
|
||||
|
@ -585,7 +598,7 @@
|
|||
"notification.moderation_warning.action_none": "Mae eich cyfrif wedi derbyn rhybudd cymedroli.",
|
||||
"notification.moderation_warning.action_sensitive": "Bydd eich postiadau'n cael eu marcio'n sensitif o hyn ymlaen.",
|
||||
"notification.moderation_warning.action_silence": "Mae eich cyfrif wedi'i gyfyngu.",
|
||||
"notification.moderation_warning.action_suspend": "Mae eich cyfrif wedi'i hatal.",
|
||||
"notification.moderation_warning.action_suspend": "Mae eich cyfrif wedi'i atal.",
|
||||
"notification.own_poll": "Mae eich pleidlais wedi dod i ben",
|
||||
"notification.poll": "Mae arolwg y gwnaethoch bleidleisio ynddo wedi dod i ben",
|
||||
"notification.reblog": "Hybodd {name} eich post",
|
||||
|
@ -856,9 +869,9 @@
|
|||
"status.remove_bookmark": "Tynnu nod tudalen",
|
||||
"status.remove_favourite": "Tynnu o'r ffefrynnau",
|
||||
"status.replied_in_thread": "Atebodd mewn edefyn",
|
||||
"status.replied_to": "Wedi ateb {name}",
|
||||
"status.replied_to": "Wedi ymateb i {name}",
|
||||
"status.reply": "Ymateb",
|
||||
"status.replyAll": "Ateb i edefyn",
|
||||
"status.replyAll": "Ymateb i edefyn",
|
||||
"status.report": "Adrodd ar @{name}",
|
||||
"status.sensitive_warning": "Cynnwys sensitif",
|
||||
"status.share": "Rhannu",
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "Blokér domænet {domain}",
|
||||
"account.block_short": "Bloker",
|
||||
"account.blocked": "Blokeret",
|
||||
"account.blocking": "Blokering",
|
||||
"account.cancel_follow_request": "Annullér anmodning om at følge",
|
||||
"account.copy": "Kopiér link til profil",
|
||||
"account.direct": "Privat omtale @{name}",
|
||||
"account.disable_notifications": "Advisér mig ikke længere, når @{name} poster",
|
||||
"account.domain_blocked": "Domæne blokeret",
|
||||
"account.domain_blocking": "Blokerer domæne",
|
||||
"account.edit_profile": "Redigér profil",
|
||||
"account.enable_notifications": "Advisér mig, når @{name} poster",
|
||||
"account.endorse": "Fremhæv på profil",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Følger",
|
||||
"account.following_counter": "{count, plural, one {{counter} følger} other {{counter} følger}}",
|
||||
"account.follows.empty": "Denne bruger følger ikke nogen endnu.",
|
||||
"account.follows_you": "Følger dig",
|
||||
"account.go_to_profile": "Gå til profil",
|
||||
"account.hide_reblogs": "Skjul fremhævelser fra @{name}",
|
||||
"account.in_memoriam": "Til minde om.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Sluk for notifikationer",
|
||||
"account.mute_short": "Skjul",
|
||||
"account.muted": "Skjult",
|
||||
"account.mutual": "Fælles",
|
||||
"account.muting": "Tavsgørelse",
|
||||
"account.mutual": "I følger hinanden",
|
||||
"account.no_bio": "Ingen beskrivelse til rådighed.",
|
||||
"account.open_original_page": "Åbn oprindelig side",
|
||||
"account.posts": "Indlæg",
|
||||
"account.posts_with_replies": "Indlæg og svar",
|
||||
"account.remove_from_followers": "Fjern {name} fra følgere",
|
||||
"account.report": "Anmeld @{name}",
|
||||
"account.requested": "Afventer godkendelse. Tryk for at annullere følgeanmodning",
|
||||
"account.requested_follow": "{name} har anmodet om at følge dig",
|
||||
"account.requests_to_follow_you": "Anmodninger om at følge dig",
|
||||
"account.share": "Del @{name}s profil",
|
||||
"account.show_reblogs": "Vis fremhævelser fra @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} indlæg} other {{counter} indlæg}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Slet og omformulér",
|
||||
"confirmations.redraft.message": "Sikker på, at dette indlæg skal slettes og omskrives? Favoritter og fremhævelser går tabt, og svar til det oprindelige indlæg mister tilknytningen.",
|
||||
"confirmations.redraft.title": "Slet og omformulér indlæg?",
|
||||
"confirmations.remove_from_followers.confirm": "Fjern følger",
|
||||
"confirmations.remove_from_followers.message": "{name} vil ophøre med at være en følger. Sikker på, at man vil fortsætte?",
|
||||
"confirmations.remove_from_followers.title": "Fjern følger?",
|
||||
"confirmations.reply.confirm": "Svar",
|
||||
"confirmations.reply.message": "Hvis du svarer nu, vil det overskrive den besked, du er ved at skrive. Fortsæt alligevel?",
|
||||
"confirmations.reply.title": "Overskriv indlæg?",
|
||||
|
@ -296,7 +304,9 @@
|
|||
"emoji_button.search_results": "Søgeresultater",
|
||||
"emoji_button.symbols": "Symboler",
|
||||
"emoji_button.travel": "Rejser og steder",
|
||||
"empty_column.account_featured": "Denne liste er tom",
|
||||
"empty_column.account_featured.me": "Du har ikke vist noget endnu. Vidste du, at man kan fremhæve sine indlæg, mest brugte hashtags og endda en vens konti på sin profil?",
|
||||
"empty_column.account_featured.other": "{acct} har ikke vist noget endnu. Vidste du, at man kan fremhæve sine indlæg, mest brugte hashtags og endda en vens konti på sin profil?",
|
||||
"empty_column.account_featured_other.unknown": "Denne konto har ikke fremhævet noget endnu.",
|
||||
"empty_column.account_hides_collections": "Brugeren har valgt ikke at gøre denne information tilgængelig",
|
||||
"empty_column.account_suspended": "Konto suspenderet",
|
||||
"empty_column.account_timeline": "Ingen indlæg her!",
|
||||
|
|
|
@ -19,15 +19,16 @@
|
|||
"account.block_domain": "{domain} sperren",
|
||||
"account.block_short": "Blockieren",
|
||||
"account.blocked": "Blockiert",
|
||||
"account.blocking": "Blockiert",
|
||||
"account.cancel_follow_request": "Follower-Anfrage zurückziehen",
|
||||
"account.copy": "Link zum Profil kopieren",
|
||||
"account.direct": "@{name} privat erwähnen",
|
||||
"account.disable_notifications": "Höre auf mich zu benachrichtigen wenn @{name} etwas postet",
|
||||
"account.domain_blocked": "Domain versteckt",
|
||||
"account.domain_blocking": "Domain blockiert",
|
||||
"account.edit_profile": "Profil bearbeiten",
|
||||
"account.enable_notifications": "Benachrichtige mich wenn @{name} etwas postet",
|
||||
"account.endorse": "Im Profil empfehlen",
|
||||
"account.featured": "Empfohlen",
|
||||
"account.featured": "Vorgestellt",
|
||||
"account.featured.hashtags": "Hashtags",
|
||||
"account.featured.posts": "Beiträge",
|
||||
"account.featured_tags.last_status_at": "Letzter Beitrag am {date}",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Folge ich",
|
||||
"account.following_counter": "{count, plural, one {{counter} Folge ich} other {{counter} Folge ich}}",
|
||||
"account.follows.empty": "Dieses Profil folgt noch niemandem.",
|
||||
"account.follows_you": "Folgt dir",
|
||||
"account.go_to_profile": "Profil aufrufen",
|
||||
"account.hide_reblogs": "Geteilte Beiträge von @{name} ausblenden",
|
||||
"account.in_memoriam": "Zum Andenken.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Benachrichtigungen stummschalten",
|
||||
"account.mute_short": "Stummschalten",
|
||||
"account.muted": "Stummgeschaltet",
|
||||
"account.mutual": "Gegenseitig",
|
||||
"account.muting": "Wird stummgeschaltet",
|
||||
"account.mutual": "Ihr folgt euch",
|
||||
"account.no_bio": "Keine Beschreibung verfügbar.",
|
||||
"account.open_original_page": "Ursprüngliche Seite öffnen",
|
||||
"account.posts": "Beiträge",
|
||||
"account.posts_with_replies": "Beiträge und Antworten",
|
||||
"account.remove_from_followers": "{name} als Follower entfernen",
|
||||
"account.report": "@{name} melden",
|
||||
"account.requested": "Die Genehmigung steht noch aus. Klicke hier, um die Follower-Anfrage zurückzuziehen",
|
||||
"account.requested_follow": "{name} möchte dir folgen",
|
||||
"account.requests_to_follow_you": "Möchte dir folgen",
|
||||
"account.share": "Profil von @{name} teilen",
|
||||
"account.show_reblogs": "Geteilte Beiträge von @{name} anzeigen",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} Beitrag} other {{counter} Beiträge}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Löschen und neu erstellen",
|
||||
"confirmations.redraft.message": "Möchtest du diesen Beitrag wirklich löschen und neu verfassen? Alle Favoriten sowie die bisher geteilten Beiträge werden verloren gehen und Antworten auf den ursprünglichen Beitrag verlieren den Zusammenhang.",
|
||||
"confirmations.redraft.title": "Beitrag löschen und neu erstellen?",
|
||||
"confirmations.remove_from_followers.confirm": "Follower entfernen",
|
||||
"confirmations.remove_from_followers.message": "{name} wird dir nicht länger folgen. Bist du dir sicher?",
|
||||
"confirmations.remove_from_followers.title": "Follower entfernen?",
|
||||
"confirmations.reply.confirm": "Antworten",
|
||||
"confirmations.reply.message": "Wenn du jetzt darauf antwortest, wird der andere Beitrag, an dem du gerade geschrieben hast, verworfen. Möchtest du wirklich fortfahren?",
|
||||
"confirmations.reply.title": "Beitrag überschreiben?",
|
||||
|
@ -296,7 +304,9 @@
|
|||
"emoji_button.search_results": "Suchergebnisse",
|
||||
"emoji_button.symbols": "Symbole",
|
||||
"emoji_button.travel": "Reisen & Orte",
|
||||
"empty_column.account_featured": "Diese Liste ist leer",
|
||||
"empty_column.account_featured.me": "Du hast bisher noch nichts vorgestellt. Wusstest du, dass du deine Beiträge, häufig verwendete Hashtags und sogar andere Profile vorstellen kannst?",
|
||||
"empty_column.account_featured.other": "{acct} hat bisher noch nichts vorgestellt. Wusstest du, dass du deine Beiträge, häufig verwendete Hashtags und sogar andere Profile vorstellen kannst?",
|
||||
"empty_column.account_featured_other.unknown": "Dieses Profil hat bisher noch nichts vorgestellt.",
|
||||
"empty_column.account_hides_collections": "Das Konto hat sich dazu entschieden, diese Information nicht zu veröffentlichen",
|
||||
"empty_column.account_suspended": "Konto gesperrt",
|
||||
"empty_column.account_timeline": "Keine Beiträge vorhanden!",
|
||||
|
|
|
@ -23,10 +23,12 @@
|
|||
"account.copy": "Αντιγραφή συνδέσμου προφίλ",
|
||||
"account.direct": "Ιδιωτική αναφορά @{name}",
|
||||
"account.disable_notifications": "Σταμάτα να με ειδοποιείς όταν δημοσιεύει ο @{name}",
|
||||
"account.domain_blocked": "Ο τομέας αποκλείστηκε",
|
||||
"account.edit_profile": "Επεξεργασία προφίλ",
|
||||
"account.enable_notifications": "Ειδοποίησέ με όταν δημοσιεύει ο @{name}",
|
||||
"account.endorse": "Προβολή στο προφίλ",
|
||||
"account.featured": "Προτεινόμενα",
|
||||
"account.featured.hashtags": "Ετικέτες",
|
||||
"account.featured.posts": "Αναρτήσεις",
|
||||
"account.featured_tags.last_status_at": "Τελευταία ανάρτηση στις {date}",
|
||||
"account.featured_tags.last_status_never": "Καμία ανάρτηση",
|
||||
"account.follow": "Ακολούθησε",
|
||||
|
@ -51,7 +53,6 @@
|
|||
"account.mute_notifications_short": "Σίγαση ειδοποιήσεων",
|
||||
"account.mute_short": "Σίγαση",
|
||||
"account.muted": "Αποσιωπημένος/η",
|
||||
"account.mutual": "Αμοιβαίοι",
|
||||
"account.no_bio": "Δεν υπάρχει περιγραφή.",
|
||||
"account.open_original_page": "Ανοικτό",
|
||||
"account.posts": "Τουτ",
|
||||
|
@ -64,6 +65,7 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} ανάρτηση} other {{counter} αναρτήσεις}}",
|
||||
"account.unblock": "Άρση αποκλεισμού @{name}",
|
||||
"account.unblock_domain": "Άρση αποκλεισμού του τομέα {domain}",
|
||||
"account.unblock_domain_short": "Άρση αποκλ.",
|
||||
"account.unblock_short": "Άρση αποκλεισμού",
|
||||
"account.unendorse": "Να μην παρέχεται στο προφίλ",
|
||||
"account.unfollow": "Άρση ακολούθησης",
|
||||
|
@ -376,6 +378,8 @@
|
|||
"generic.saved": "Αποθηκεύτηκε",
|
||||
"getting_started.heading": "Ας ξεκινήσουμε",
|
||||
"hashtag.admin_moderation": "Άνοιγμα διεπαφής συντονισμού για το #{name}",
|
||||
"hashtag.browse": "Περιήγηση αναρτήσεων με #{hashtag}",
|
||||
"hashtag.browse_from_account": "Περιήγηση αναρτήσεων από @{name} σε #{hashtag}",
|
||||
"hashtag.column_header.tag_mode.all": "και {additional}",
|
||||
"hashtag.column_header.tag_mode.any": "ή {additional}",
|
||||
"hashtag.column_header.tag_mode.none": "χωρίς {additional}",
|
||||
|
@ -389,6 +393,7 @@
|
|||
"hashtag.counter_by_uses": "{count, plural, one {{counter} ανάρτηση} other {{counter} αναρτήσεις}}",
|
||||
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} ανάρτηση} other {{counter} αναρτήσεις}} σήμερα",
|
||||
"hashtag.follow": "Παρακολούθηση ετικέτας",
|
||||
"hashtag.mute": "Σίγαση #{hashtag}",
|
||||
"hashtag.unfollow": "Διακοπή παρακολούθησης ετικέτας",
|
||||
"hashtags.and_other": "…και {count, plural, one {}other {# ακόμη}}",
|
||||
"hints.profiles.followers_may_be_missing": "Μπορεί να λείπουν ακόλουθοι για αυτό το προφίλ.",
|
||||
|
@ -871,7 +876,9 @@
|
|||
"subscribed_languages.target": "Αλλαγή εγγεγραμμένων γλωσσών για {target}",
|
||||
"tabs_bar.home": "Αρχική",
|
||||
"tabs_bar.notifications": "Ειδοποιήσεις",
|
||||
"terms_of_service.effective_as_of": "Ενεργό από {date}",
|
||||
"terms_of_service.title": "Όροι Παροχής Υπηρεσιών",
|
||||
"terms_of_service.upcoming_changes_on": "Επερχόμενες αλλαγές στις {date}",
|
||||
"time_remaining.days": "απομένουν {number, plural, one {# ημέρα} other {# ημέρες}}",
|
||||
"time_remaining.hours": "απομένουν {number, plural, one {# ώρα} other {# ώρες}}",
|
||||
"time_remaining.minutes": "απομένουν {number, plural, one {# λεπτό} other {# λεπτά}}",
|
||||
|
@ -902,6 +909,12 @@
|
|||
"video.expand": "Επέκταση βίντεο",
|
||||
"video.fullscreen": "Πλήρης οθόνη",
|
||||
"video.hide": "Απόκρυψη βίντεο",
|
||||
"video.mute": "Σίγαση",
|
||||
"video.pause": "Παύση",
|
||||
"video.play": "Αναπαραγωγή"
|
||||
"video.play": "Αναπαραγωγή",
|
||||
"video.skip_backward": "Παράλειψη πίσω",
|
||||
"video.skip_forward": "Παράλειψη εμπρός",
|
||||
"video.unmute": "Άρση σίγασης",
|
||||
"video.volume_down": "Μείωση έντασης",
|
||||
"video.volume_up": "Αύξηση έντασης"
|
||||
}
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Copy link to profile",
|
||||
"account.direct": "Privately mention @{name}",
|
||||
"account.disable_notifications": "Stop notifying me when @{name} posts",
|
||||
"account.domain_blocked": "Domain blocked",
|
||||
"account.edit_profile": "Edit profile",
|
||||
"account.enable_notifications": "Notify me when @{name} posts",
|
||||
"account.endorse": "Feature on profile",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Mute notifications",
|
||||
"account.mute_short": "Mute",
|
||||
"account.muted": "Muted",
|
||||
"account.mutual": "Mutual",
|
||||
"account.no_bio": "No description provided.",
|
||||
"account.open_original_page": "Open original page",
|
||||
"account.posts": "Posts",
|
||||
|
|
|
@ -30,11 +30,12 @@
|
|||
"account.block_domain": "Block domain {domain}",
|
||||
"account.block_short": "Block",
|
||||
"account.blocked": "Blocked",
|
||||
"account.blocking": "Blocking",
|
||||
"account.cancel_follow_request": "Cancel follow",
|
||||
"account.copy": "Copy link to profile",
|
||||
"account.direct": "Privately mention @{name}",
|
||||
"account.disable_notifications": "Stop notifying me when @{name} posts",
|
||||
"account.domain_blocked": "Domain blocked",
|
||||
"account.domain_blocking": "Blocking domain",
|
||||
"account.edit_profile": "Edit profile",
|
||||
"account.enable_notifications": "Notify me when @{name} posts",
|
||||
"account.endorse": "Feature on profile",
|
||||
|
@ -52,6 +53,7 @@
|
|||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} following} other {{counter} following}}",
|
||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||
"account.follows_you": "Follows you",
|
||||
"account.go_to_profile": "Go to profile",
|
||||
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||
"account.in_memoriam": "In Memoriam.",
|
||||
|
@ -66,14 +68,17 @@
|
|||
"account.mute_notifications_short": "Mute notifications",
|
||||
"account.mute_short": "Mute",
|
||||
"account.muted": "Muted",
|
||||
"account.mutual": "Mutual",
|
||||
"account.muting": "Muting",
|
||||
"account.mutual": "You follow each other",
|
||||
"account.no_bio": "No description provided.",
|
||||
"account.open_original_page": "Open original page",
|
||||
"account.posts": "Posts",
|
||||
"account.posts_with_replies": "Posts and replies",
|
||||
"account.remove_from_followers": "Remove {name} from followers",
|
||||
"account.report": "Report @{name}",
|
||||
"account.requested": "Awaiting approval. Click to cancel follow request",
|
||||
"account.requested_follow": "{name} has requested to follow you",
|
||||
"account.requests_to_follow_you": "Requests to follow you",
|
||||
"account.share": "Share @{name}'s profile",
|
||||
"account.show_reblogs": "Show boosts from @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} post} other {{counter} posts}}",
|
||||
|
@ -368,6 +373,9 @@
|
|||
"confirmations.redraft.confirm": "Delete & redraft",
|
||||
"confirmations.redraft.message": "Are you sure you want to delete this post and re-draft it? Favorites and boosts will be lost, and replies to the original post will be orphaned.",
|
||||
"confirmations.redraft.title": "Delete & redraft post?",
|
||||
"confirmations.remove_from_followers.confirm": "Remove follower",
|
||||
"confirmations.remove_from_followers.message": "{name} will stop following you. Are you sure you want to proceed?",
|
||||
"confirmations.remove_from_followers.title": "Remove follower?",
|
||||
"confirmations.reply.confirm": "Reply",
|
||||
"confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
|
||||
"confirmations.reply.title": "Overwrite post?",
|
||||
|
@ -435,7 +443,9 @@
|
|||
"emoji_button.search_results": "Search results",
|
||||
"emoji_button.symbols": "Symbols",
|
||||
"emoji_button.travel": "Travel & Places",
|
||||
"empty_column.account_featured": "This list is empty",
|
||||
"empty_column.account_featured.me": "You have not featured anything yet. Did you know that you can feature your posts, hashtags you use the most, and even your friend’s accounts on your profile?",
|
||||
"empty_column.account_featured.other": "{acct} has not featured anything yet. Did you know that you can feature your posts, hashtags you use the most, and even your friend’s accounts on your profile?",
|
||||
"empty_column.account_featured_other.unknown": "This account has not featured anything yet.",
|
||||
"empty_column.account_hides_collections": "This user has chosen to not make this information available",
|
||||
"empty_column.account_suspended": "Account suspended",
|
||||
"empty_column.account_timeline": "No posts here!",
|
||||
|
|
|
@ -19,11 +19,11 @@
|
|||
"account.block_domain": "Bloki la domajnon {domain}",
|
||||
"account.block_short": "Bloko",
|
||||
"account.blocked": "Blokita",
|
||||
"account.blocking": "Bloko",
|
||||
"account.cancel_follow_request": "Nuligi peton por sekvado",
|
||||
"account.copy": "Kopii ligilon al profilo",
|
||||
"account.direct": "Private mencii @{name}",
|
||||
"account.disable_notifications": "Ĉesu sciigi min kiam @{name} afiŝas",
|
||||
"account.domain_blocked": "Domajno blokita",
|
||||
"account.edit_profile": "Redakti la profilon",
|
||||
"account.enable_notifications": "Sciigu min kiam @{name} afiŝos",
|
||||
"account.endorse": "Prezenti ĉe via profilo",
|
||||
|
@ -53,7 +53,7 @@
|
|||
"account.mute_notifications_short": "Silentigu sciigojn",
|
||||
"account.mute_short": "Silentigu",
|
||||
"account.muted": "Silentigita",
|
||||
"account.mutual": "Reciproka",
|
||||
"account.mutual": "Vi sekvas unu la alian",
|
||||
"account.no_bio": "Neniu priskribo estas provizita.",
|
||||
"account.open_original_page": "Malfermi la originalan paĝon",
|
||||
"account.posts": "Afiŝoj",
|
||||
|
@ -295,7 +295,6 @@
|
|||
"emoji_button.search_results": "Serĉaj rezultoj",
|
||||
"emoji_button.symbols": "Simboloj",
|
||||
"emoji_button.travel": "Vojaĝoj kaj lokoj",
|
||||
"empty_column.account_featured": "Ĉi tiu listo estas malplena",
|
||||
"empty_column.account_hides_collections": "Ĉi tiu uzanto elektis ne disponebligi ĉi tiu informon",
|
||||
"empty_column.account_suspended": "Konto suspendita",
|
||||
"empty_column.account_timeline": "Neniuj afiŝoj ĉi tie!",
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "Bloquear dominio {domain}",
|
||||
"account.block_short": "Bloquear",
|
||||
"account.blocked": "Bloqueado",
|
||||
"account.blocking": "Bloqueo",
|
||||
"account.cancel_follow_request": "Dejar de seguir",
|
||||
"account.copy": "Copiar enlace al perfil",
|
||||
"account.direct": "Mención privada a @{name}",
|
||||
"account.disable_notifications": "Dejar de notificarme cuando @{name} envíe mensajes",
|
||||
"account.domain_blocked": "Dominio bloqueado",
|
||||
"account.domain_blocking": "Bloqueando dominio",
|
||||
"account.edit_profile": "Editar perfil",
|
||||
"account.enable_notifications": "Notificarme cuando @{name} envíe mensajes",
|
||||
"account.endorse": "Destacar en el perfil",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Siguiendo",
|
||||
"account.following_counter": "{count, plural, one {siguiendo a {counter}} other {siguiendo a {counter}}}",
|
||||
"account.follows.empty": "Todavía este usuario no sigue a nadie.",
|
||||
"account.follows_you": "Te sigue",
|
||||
"account.go_to_profile": "Ir al perfil",
|
||||
"account.hide_reblogs": "Ocultar adhesiones de @{name}",
|
||||
"account.in_memoriam": "Cuenta conmemorativa.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Silenciar notificaciones",
|
||||
"account.mute_short": "Silenciar",
|
||||
"account.muted": "Silenciado",
|
||||
"account.mutual": "Seguimiento mutuo",
|
||||
"account.muting": "Silenciada",
|
||||
"account.mutual": "Se siguen mutuamente",
|
||||
"account.no_bio": "Sin descripción provista.",
|
||||
"account.open_original_page": "Abrir página original",
|
||||
"account.posts": "Mensajes",
|
||||
"account.posts_with_replies": "Mnsjs y resp. públicas",
|
||||
"account.remove_from_followers": "Quitar a {name} de tus seguidores",
|
||||
"account.report": "Denunciar a @{name}",
|
||||
"account.requested": "Esperando aprobación. Hacé clic para cancelar la solicitud de seguimiento",
|
||||
"account.requested_follow": "{name} solicitó seguirte",
|
||||
"account.requests_to_follow_you": "Solicita seguirte",
|
||||
"account.share": "Compartir el perfil de @{name}",
|
||||
"account.show_reblogs": "Mostrar adhesiones de @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} mensaje} other {{counter} mensajes}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Eliminar mensaje original y editarlo",
|
||||
"confirmations.redraft.message": "¿Estás seguro que querés eliminar este mensaje y volver a editarlo? Se perderán las veces marcadas como favorito y sus adhesiones, y las respuestas al mensaje original quedarán huérfanas.",
|
||||
"confirmations.redraft.title": "¿Eliminar y volver a redactar mensaje?",
|
||||
"confirmations.remove_from_followers.confirm": "Quitar seguidor",
|
||||
"confirmations.remove_from_followers.message": "{name} dejará de seguirte. ¿Estás seguro de que querés continuar?",
|
||||
"confirmations.remove_from_followers.title": "¿Quitar seguidor?",
|
||||
"confirmations.reply.confirm": "Responder",
|
||||
"confirmations.reply.message": "Responder ahora sobreescribirá el mensaje que estás redactando actualmente. ¿Estás seguro que querés seguir?",
|
||||
"confirmations.reply.title": "¿Sobrescribir mensaje?",
|
||||
|
@ -296,7 +304,9 @@
|
|||
"emoji_button.search_results": "Resultados de búsqueda",
|
||||
"emoji_button.symbols": "Símbolos",
|
||||
"emoji_button.travel": "Viajes y lugares",
|
||||
"empty_column.account_featured": "Esta lista está vacía",
|
||||
"empty_column.account_featured.me": "Todavía no destacaste nada. ¿Sabías que en tu perfil podés destacar tus publicaciones, las etiquetas que más usás e incluso las cuentas de tus contactos?",
|
||||
"empty_column.account_featured.other": "{acct} todavía no destacó nada. ¿Sabías que en tu perfil podés destacar tus publicaciones, las etiquetas que más usás e incluso las cuentas de tus contactos?",
|
||||
"empty_column.account_featured_other.unknown": "Esta cuenta todavía no destacó nada.",
|
||||
"empty_column.account_hides_collections": "Este usuario eligió no publicar esta información",
|
||||
"empty_column.account_suspended": "Cuenta suspendida",
|
||||
"empty_column.account_timeline": "¡No hay mensajes acá!",
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "Bloquear dominio {domain}",
|
||||
"account.block_short": "Bloquear",
|
||||
"account.blocked": "Bloqueado",
|
||||
"account.blocking": "Bloqueando",
|
||||
"account.cancel_follow_request": "Cancelar seguimiento",
|
||||
"account.copy": "Copiar enlace al perfil",
|
||||
"account.direct": "Mención privada @{name}",
|
||||
"account.disable_notifications": "Dejar de notificarme cuando @{name} publique algo",
|
||||
"account.domain_blocked": "Dominio oculto",
|
||||
"account.domain_blocking": "Bloqueando dominio",
|
||||
"account.edit_profile": "Editar perfil",
|
||||
"account.enable_notifications": "Notificarme cuando @{name} publique algo",
|
||||
"account.endorse": "Destacar en mi perfil",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Siguiendo",
|
||||
"account.following_counter": "{count, plural, one {{counter} siguiendo} other {{counter} siguiendo}}",
|
||||
"account.follows.empty": "Este usuario no sigue a nadie todavía.",
|
||||
"account.follows_you": "Te sigue",
|
||||
"account.go_to_profile": "Ir al perfil",
|
||||
"account.hide_reblogs": "Ocultar impulsos de @{name}",
|
||||
"account.in_memoriam": "En memoria.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Silenciar notificaciones",
|
||||
"account.mute_short": "Silenciar",
|
||||
"account.muted": "Silenciado",
|
||||
"account.mutual": "Mutuo",
|
||||
"account.muting": "Silenciando",
|
||||
"account.mutual": "Se siguen el uno al otro",
|
||||
"account.no_bio": "Sin biografía.",
|
||||
"account.open_original_page": "Abrir página original",
|
||||
"account.posts": "Publicaciones",
|
||||
"account.posts_with_replies": "Publicaciones y respuestas",
|
||||
"account.remove_from_followers": "Eliminar {name} de tus seguidores",
|
||||
"account.report": "Denunciar a @{name}",
|
||||
"account.requested": "Esperando aprobación. Haz clic para cancelar la solicitud de seguimiento",
|
||||
"account.requested_follow": "{name} ha solicitado seguirte",
|
||||
"account.requests_to_follow_you": "Solicita seguirte",
|
||||
"account.share": "Compartir el perfil de @{name}",
|
||||
"account.show_reblogs": "Mostrar impulsos de @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} publicación} other {{counter} publicaciones}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Borrar y volver a borrador",
|
||||
"confirmations.redraft.message": "¿Estás seguro que quieres borrar esta publicación y editarla? Los favoritos e impulsos se perderán, y las respuestas a la publicación original quedarán separadas.",
|
||||
"confirmations.redraft.title": "¿Borrar y volver a redactar la publicación?",
|
||||
"confirmations.remove_from_followers.confirm": "Eliminar seguidor",
|
||||
"confirmations.remove_from_followers.message": "{name} dejará de seguirte. ¿Estás seguro de que quieres continuar?",
|
||||
"confirmations.remove_from_followers.title": "¿Eliminar seguidor?",
|
||||
"confirmations.reply.confirm": "Responder",
|
||||
"confirmations.reply.message": "Responder sobrescribirá el mensaje que estás escribiendo. ¿Estás seguro de que deseas continuar?",
|
||||
"confirmations.reply.title": "¿Deseas sobreescribir la publicación?",
|
||||
|
@ -296,7 +304,9 @@
|
|||
"emoji_button.search_results": "Resultados de búsqueda",
|
||||
"emoji_button.symbols": "Símbolos",
|
||||
"emoji_button.travel": "Viajes y lugares",
|
||||
"empty_column.account_featured": "Esta lista está vacía",
|
||||
"empty_column.account_featured.me": "No has destacado nada todavía. ¿Sabías que puedes destacar tus publicaciones, las etiquetas que más usas e incluso las cuentas de tus amigos en tu perfil?",
|
||||
"empty_column.account_featured.other": "{acct} no ha destacado nada todavía. ¿Sabías que puedes destacar tus publicaciones, las etiquetas que más usas e incluso las cuentas de tus amigos en tu perfil?",
|
||||
"empty_column.account_featured_other.unknown": "Esta cuenta no ha destacado nada todavía.",
|
||||
"empty_column.account_hides_collections": "Este usuario ha elegido no hacer disponible esta información",
|
||||
"empty_column.account_suspended": "Cuenta suspendida",
|
||||
"empty_column.account_timeline": "¡No hay publicaciones aquí!",
|
||||
|
@ -382,7 +392,7 @@
|
|||
"getting_started.heading": "Primeros pasos",
|
||||
"hashtag.admin_moderation": "Abrir interfaz de moderación para #{name}",
|
||||
"hashtag.browse": "Explorar publicaciones en #{hashtag}",
|
||||
"hashtag.browse_from_account": "Explorar publicaciones desde @{name} en #{hashtag}",
|
||||
"hashtag.browse_from_account": "Explorar publicaciones de @{name} en #{hashtag}",
|
||||
"hashtag.column_header.tag_mode.all": "y {additional}",
|
||||
"hashtag.column_header.tag_mode.any": "o {additional}",
|
||||
"hashtag.column_header.tag_mode.none": "sin {additional}",
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "Bloquear dominio {domain}",
|
||||
"account.block_short": "Bloquear",
|
||||
"account.blocked": "Bloqueado",
|
||||
"account.blocking": "Bloqueando",
|
||||
"account.cancel_follow_request": "Retirar solicitud de seguimiento",
|
||||
"account.copy": "Copiar enlace al perfil",
|
||||
"account.direct": "Mención privada a @{name}",
|
||||
"account.disable_notifications": "Dejar de notificarme cuando @{name} publique algo",
|
||||
"account.domain_blocked": "Dominio bloqueado",
|
||||
"account.domain_blocking": "Bloqueando dominio",
|
||||
"account.edit_profile": "Editar perfil",
|
||||
"account.enable_notifications": "Notificarme cuando @{name} publique algo",
|
||||
"account.endorse": "Destacar en el perfil",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Siguiendo",
|
||||
"account.following_counter": "{count, plural, one {{counter} siguiendo} other {{counter} siguiendo}}",
|
||||
"account.follows.empty": "Este usuario todavía no sigue a nadie.",
|
||||
"account.follows_you": "Te sigue",
|
||||
"account.go_to_profile": "Ir al perfil",
|
||||
"account.hide_reblogs": "Ocultar impulsos de @{name}",
|
||||
"account.in_memoriam": "Cuenta conmemorativa.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Silenciar notificaciones",
|
||||
"account.mute_short": "Silenciar",
|
||||
"account.muted": "Silenciado",
|
||||
"account.mutual": "Mutuo",
|
||||
"account.muting": "Silenciando",
|
||||
"account.mutual": "Os seguís mutuamente",
|
||||
"account.no_bio": "Sin biografía.",
|
||||
"account.open_original_page": "Abrir página original",
|
||||
"account.posts": "Publicaciones",
|
||||
"account.posts_with_replies": "Publicaciones y respuestas",
|
||||
"account.remove_from_followers": "Eliminar {name} de tus seguidores",
|
||||
"account.report": "Reportar a @{name}",
|
||||
"account.requested": "Esperando aprobación. Haz clic para cancelar la solicitud de seguimiento",
|
||||
"account.requested_follow": "{name} ha solicitado seguirte",
|
||||
"account.requests_to_follow_you": "Solicita seguirte",
|
||||
"account.share": "Compartir el perfil de @{name}",
|
||||
"account.show_reblogs": "Mostrar impulsos de @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} publicación} other {{counter} publicaciones}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Borrar y volver a borrador",
|
||||
"confirmations.redraft.message": "¿Estás seguro de querer borrar esta publicación y reescribirla? Los favoritos e impulsos se perderán, y las respuestas a la publicación original quedarán sin contexto.",
|
||||
"confirmations.redraft.title": "¿Borrar y volver a redactar la publicación?",
|
||||
"confirmations.remove_from_followers.confirm": "Eliminar seguidor",
|
||||
"confirmations.remove_from_followers.message": "{name} dejará de seguirte. ¿Estás seguro de que quieres continuar?",
|
||||
"confirmations.remove_from_followers.title": "¿Eliminar seguidor?",
|
||||
"confirmations.reply.confirm": "Responder",
|
||||
"confirmations.reply.message": "Responder sobrescribirá el mensaje que estás escribiendo. ¿Seguro que deseas continuar?",
|
||||
"confirmations.reply.title": "¿Sobrescribir publicación?",
|
||||
|
@ -296,7 +304,9 @@
|
|||
"emoji_button.search_results": "Resultados de búsqueda",
|
||||
"emoji_button.symbols": "Símbolos",
|
||||
"emoji_button.travel": "Viajes y lugares",
|
||||
"empty_column.account_featured": "Esta lista está vacía",
|
||||
"empty_column.account_featured.me": "Aún no has destacado nada. ¿Sabías que puedes destacar tus publicaciones, las etiquetas que más utilizas e incluso las cuentas de tus amigos en tu perfil?",
|
||||
"empty_column.account_featured.other": "{acct} no ha destacado nada aún. ¿Sabías que puedes destacar tus publicaciones, las etiquetas que más utilizas e incluso las cuentas de tus amigos en tu perfil?",
|
||||
"empty_column.account_featured_other.unknown": "Esta cuenta aún no ha destacado nada.",
|
||||
"empty_column.account_hides_collections": "Este usuario ha decidido no mostrar esta información",
|
||||
"empty_column.account_suspended": "Cuenta suspendida",
|
||||
"empty_column.account_timeline": "¡No hay publicaciones aquí!",
|
||||
|
@ -382,7 +392,7 @@
|
|||
"getting_started.heading": "Primeros pasos",
|
||||
"hashtag.admin_moderation": "Abrir interfaz de moderación para #{name}",
|
||||
"hashtag.browse": "Explorar publicaciones en #{hashtag}",
|
||||
"hashtag.browse_from_account": "Explorar publicaciones desde @{name} en #{hashtag}",
|
||||
"hashtag.browse_from_account": "Explorar publicaciones de @{name} en #{hashtag}",
|
||||
"hashtag.column_header.tag_mode.all": "y {additional}",
|
||||
"hashtag.column_header.tag_mode.any": "o {additional}",
|
||||
"hashtag.column_header.tag_mode.none": "sin {additional}",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Kopeeri profiili link",
|
||||
"account.direct": "Maini privaatselt @{name}",
|
||||
"account.disable_notifications": "Peata teavitused @{name} postitustest",
|
||||
"account.domain_blocked": "Domeen peidetud",
|
||||
"account.edit_profile": "Muuda profiili",
|
||||
"account.enable_notifications": "Teavita mind @{name} postitustest",
|
||||
"account.endorse": "Too profiilil esile",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Vaigista teavitused",
|
||||
"account.mute_short": "Vaigista",
|
||||
"account.muted": "Vaigistatud",
|
||||
"account.mutual": "Jälgite",
|
||||
"account.no_bio": "Kirjeldust pole lisatud.",
|
||||
"account.open_original_page": "Ava algne leht",
|
||||
"account.posts": "Postitused",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Kopiatu profilerako esteka",
|
||||
"account.direct": "Aipatu pribatuki @{name}",
|
||||
"account.disable_notifications": "Utzi jakinarazteari @{name} erabiltzaileak argitaratzean",
|
||||
"account.domain_blocked": "Ezkutatutako domeinua",
|
||||
"account.edit_profile": "Editatu profila",
|
||||
"account.enable_notifications": "Jakinarazi @{name} erabiltzaileak argitaratzean",
|
||||
"account.endorse": "Nabarmendu profilean",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Mututu jakinarazpenak",
|
||||
"account.mute_short": "Mututu",
|
||||
"account.muted": "Mutututa",
|
||||
"account.mutual": "Elkarrekikoa",
|
||||
"account.no_bio": "Ez da deskribapenik eman.",
|
||||
"account.open_original_page": "Ireki jatorrizko orria",
|
||||
"account.posts": "Bidalketa",
|
||||
|
|
|
@ -19,14 +19,18 @@
|
|||
"account.block_domain": "انسداد دامنهٔ {domain}",
|
||||
"account.block_short": "انسداد",
|
||||
"account.blocked": "مسدود",
|
||||
"account.blocking": "مسدود کرده",
|
||||
"account.cancel_follow_request": "رد کردن درخواست پیگیری",
|
||||
"account.copy": "رونوشت از پیوند به نمایه",
|
||||
"account.direct": "اشارهٔ خصوصی به @{name}",
|
||||
"account.disable_notifications": "آگاه کردن من هنگام فرستههای @{name} را متوقّف کن",
|
||||
"account.domain_blocked": "دامنه مسدود شد",
|
||||
"account.domain_blocking": "دامنهٔ مسدود کرده",
|
||||
"account.edit_profile": "ویرایش نمایه",
|
||||
"account.enable_notifications": "هنگام فرستههای @{name} مرا آگاه کن",
|
||||
"account.endorse": "معرّفی در نمایه",
|
||||
"account.featured": " پیشنهادی",
|
||||
"account.featured.hashtags": "برچسبها",
|
||||
"account.featured.posts": "فرستهها",
|
||||
"account.featured_tags.last_status_at": "آخرین فرسته در {date}",
|
||||
"account.featured_tags.last_status_never": "بدون فرسته",
|
||||
"account.follow": "پیگرفتن",
|
||||
|
@ -37,6 +41,7 @@
|
|||
"account.following": "پی میگیرید",
|
||||
"account.following_counter": "{count, plural, one {{counter} پیگرفته} other {{counter} پیگرفته}}",
|
||||
"account.follows.empty": "این کاربر هنوز پیگیر کسی نیست.",
|
||||
"account.follows_you": "پیگیرتان است",
|
||||
"account.go_to_profile": "رفتن به نمایه",
|
||||
"account.hide_reblogs": "نهفتن تقویتهای @{name}",
|
||||
"account.in_memoriam": "به یادبود.",
|
||||
|
@ -51,14 +56,17 @@
|
|||
"account.mute_notifications_short": "خموشی آگاهیها",
|
||||
"account.mute_short": "خموشی",
|
||||
"account.muted": "خموش",
|
||||
"account.mutual": "دوطرفه",
|
||||
"account.muting": "خموش کرده",
|
||||
"account.mutual": "یکدیگر را پی میگیرید",
|
||||
"account.no_bio": "شرحی فراهم نشده.",
|
||||
"account.open_original_page": "گشودن صفحهٔ اصلی",
|
||||
"account.posts": "فرسته",
|
||||
"account.posts_with_replies": "فرستهها و پاسخها",
|
||||
"account.remove_from_followers": "برداشتن {name} از پیگیران",
|
||||
"account.report": "گزارش @{name}",
|
||||
"account.requested": "منتظر پذیرش است. برای لغو درخواست پیگیری کلیک کنید",
|
||||
"account.requested_follow": "{name} درخواست پیگیریتان را داد",
|
||||
"account.requests_to_follow_you": "درخواست پیگیریتان را دارد",
|
||||
"account.share": "همرسانی نمایهٔ @{name}",
|
||||
"account.show_reblogs": "نمایش تقویتهای @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} فرسته} other {{counter} فرسته}}",
|
||||
|
@ -226,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "حذف و بازنویسی",
|
||||
"confirmations.redraft.message": "مطمئنید که میخواهید این فرسته را حذف کنید و از نو بنویسید؟ با این کار تقویتها و پسندهایش از دست رفته و پاسخها به آن بیمرجع میشود.",
|
||||
"confirmations.redraft.title": "حذف و پیشنویسی دوبارهٔ فرسته؟",
|
||||
"confirmations.remove_from_followers.confirm": "برداشتن پیگیرنده",
|
||||
"confirmations.remove_from_followers.message": "دیگر {name} پیتان نخواهد گرفت. مطمئنید که میخواهید ادامه دهید؟",
|
||||
"confirmations.remove_from_followers.title": "برداشتن پیگیرنده؟",
|
||||
"confirmations.reply.confirm": "پاسخ",
|
||||
"confirmations.reply.message": "اگر الان پاسخ دهید، چیزی که در حال نوشتنش بودید پاک خواهد شد. میخواهید ادامه دهید؟",
|
||||
"confirmations.reply.title": "رونویسی فرسته؟",
|
||||
|
@ -293,6 +304,9 @@
|
|||
"emoji_button.search_results": "نتایج جستوجو",
|
||||
"emoji_button.symbols": "نمادها",
|
||||
"emoji_button.travel": "سفر و مکان",
|
||||
"empty_column.account_featured.me": "هنوز چیزی را پیشنهاد نکردهاید. میدانید که میتوانید فرستههایتان، برچسبهایی که بیشتر استفاده میکنید و حتا حسابهای دوستانتان را روی نمایهتان پیشنهاد کنید؟",
|
||||
"empty_column.account_featured.other": "حساب {acct} هنوز چیزی را پیشنهاد نکرده. میدانید که میتوانید فرستههایتان، برچسبهایی که بیشتر استفاده میکنید و حتا حسابهای دوستانتان را روی نمایهتان پیشنهاد کنید؟",
|
||||
"empty_column.account_featured_other.unknown": "این حساب هنوز چیزی را پیشنهاد نکرده.",
|
||||
"empty_column.account_hides_collections": "کاربر خواسته که این اطّلاعات در دسترس نباشند",
|
||||
"empty_column.account_suspended": "حساب معلق شد",
|
||||
"empty_column.account_timeline": "هیچ فرستهای اینجا نیست!",
|
||||
|
@ -312,7 +326,7 @@
|
|||
"empty_column.list": "هنوز چیزی در این سیاهه نیست. هنگامی که اعضایش فرستههای جدیدی بفرستند، اینجا ظاهر خواهند شد.",
|
||||
"empty_column.mutes": "هنوز هیچ کاربری را خموش نکردهاید.",
|
||||
"empty_column.notification_requests": "همه چیز تمیز است! هیچچیزی اینجا نیست. هنگامی که آگاهیهای جدیدی دریافت کنید، بسته به تنظیماتتان اینجا ظاهر خواهند شد.",
|
||||
"empty_column.notifications": "هنوز هیچ آگاهیآی ندارید. هنگامی که دیگران با شما برهمکنش داشته باشند،اینحا خواهید دیدش.",
|
||||
"empty_column.notifications": "هنوز هیچ آگاهیای ندارید. هنگامی که دیگران با شما برهمکنش داشته باشند، اینجا خواهید دیدش.",
|
||||
"empty_column.public": "اینجا هنوز چیزی نیست! خودتان چیزی بنویسید یا کاربران کارسازهای دیگر را پیگیری کنید تا اینجا پُر شود",
|
||||
"error.unexpected_crash.explanation": "به خاطر اشکالی در کدهای ما یا ناسازگاری با مرورگر شما، این صفحه به درستی نمایش نیافت.",
|
||||
"error.unexpected_crash.explanation_addons": "این صفحه نمیتواند درست نشان داده شود. احتمالاً این خطا ناشی از یک افزونهٔ مرورگر یا ابزار ترجمهٔ خودکار است.",
|
||||
|
@ -377,6 +391,8 @@
|
|||
"generic.saved": "ذخیره شده",
|
||||
"getting_started.heading": "آغاز کنید",
|
||||
"hashtag.admin_moderation": "گشودن میانای نظارت برای #{name}",
|
||||
"hashtag.browse": "مرور فرستهها در #{hashtag}",
|
||||
"hashtag.browse_from_account": "مرور فرستهها از @{name} در #{hashtag}",
|
||||
"hashtag.column_header.tag_mode.all": "و {additional}",
|
||||
"hashtag.column_header.tag_mode.any": "یا {additional}",
|
||||
"hashtag.column_header.tag_mode.none": "بدون {additional}",
|
||||
|
@ -390,6 +406,7 @@
|
|||
"hashtag.counter_by_uses": "{count, plural, one {{counter} فرسته} other {{counter} فرسته}}",
|
||||
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} فرسته} other {{counter} فرسته}} امروز",
|
||||
"hashtag.follow": "پیگرفتن برچسب",
|
||||
"hashtag.mute": "خموشی #{hashtag}",
|
||||
"hashtag.unfollow": "پینگرفتن برچسب",
|
||||
"hashtags.and_other": "…و {count, plural, other {# بیشتر}}",
|
||||
"hints.profiles.followers_may_be_missing": "شاید پیگیرندگان این نمایه نباشند.",
|
||||
|
@ -905,6 +922,12 @@
|
|||
"video.expand": "گسترش ویدیو",
|
||||
"video.fullscreen": "تمامصفحه",
|
||||
"video.hide": "نهفتن ویدیو",
|
||||
"video.mute": "خموشی",
|
||||
"video.pause": "مکث",
|
||||
"video.play": "پخش"
|
||||
"video.play": "پخش",
|
||||
"video.skip_backward": "پرش به پس",
|
||||
"video.skip_forward": "پرش به پیش",
|
||||
"video.unmute": "ناخموشی",
|
||||
"video.volume_down": "کاهش حجم صدا",
|
||||
"video.volume_up": "افزایش حجم صدا"
|
||||
}
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "Estä verkkotunnus {domain}",
|
||||
"account.block_short": "Estä",
|
||||
"account.blocked": "Estetty",
|
||||
"account.blocking": "Estetty",
|
||||
"account.cancel_follow_request": "Peruuta seurantapyyntö",
|
||||
"account.copy": "Kopioi linkki profiiliin",
|
||||
"account.direct": "Mainitse @{name} yksityisesti",
|
||||
"account.disable_notifications": "Lopeta ilmoittamasta minulle, kun @{name} julkaisee",
|
||||
"account.domain_blocked": "Verkkotunnus estetty",
|
||||
"account.domain_blocking": "Verkkotunnus estetty",
|
||||
"account.edit_profile": "Muokkaa profiilia",
|
||||
"account.enable_notifications": "Ilmoita minulle, kun @{name} julkaisee",
|
||||
"account.endorse": "Suosittele profiilissasi",
|
||||
|
@ -39,6 +40,7 @@
|
|||
"account.following": "Seurattavat",
|
||||
"account.following_counter": "{count, plural, one {{counter} seurattava} other {{counter} seurattavaa}}",
|
||||
"account.follows.empty": "Tämä käyttäjä ei vielä seuraa ketään.",
|
||||
"account.follows_you": "Seuraa sinua",
|
||||
"account.go_to_profile": "Siirry profiiliin",
|
||||
"account.hide_reblogs": "Piilota käyttäjän @{name} tehostukset",
|
||||
"account.in_memoriam": "Muistoissamme.",
|
||||
|
@ -53,14 +55,17 @@
|
|||
"account.mute_notifications_short": "Mykistä ilmoitukset",
|
||||
"account.mute_short": "Mykistä",
|
||||
"account.muted": "Mykistetty",
|
||||
"account.muting": "Mykistetty",
|
||||
"account.mutual": "Seuraatte toisianne",
|
||||
"account.no_bio": "Kuvausta ei ole annettu.",
|
||||
"account.open_original_page": "Avaa alkuperäinen sivu",
|
||||
"account.posts": "Julkaisut",
|
||||
"account.posts_with_replies": "Julkaisut ja vastaukset",
|
||||
"account.remove_from_followers": "Poista {name} seuraajista",
|
||||
"account.report": "Raportoi @{name}",
|
||||
"account.requested": "Odottaa hyväksyntää. Peruuta seurantapyyntö napsauttamalla",
|
||||
"account.requested_follow": "{name} on pyytänyt lupaa seurata sinua",
|
||||
"account.requests_to_follow_you": "Pyynnöt seurata sinua",
|
||||
"account.share": "Jaa käyttäjän @{name} profiili",
|
||||
"account.show_reblogs": "Näytä käyttäjän @{name} tehostukset",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} julkaisu} other {{counter} julkaisua}}",
|
||||
|
@ -228,6 +233,9 @@
|
|||
"confirmations.redraft.confirm": "Poista ja palauta muokattavaksi",
|
||||
"confirmations.redraft.message": "Haluatko varmasti poistaa julkaisun ja tehdä siitä luonnoksen? Suosikit ja tehostukset menetetään, ja alkuperäisen julkaisun vastaukset jäävät orvoiksi.",
|
||||
"confirmations.redraft.title": "Poistetaanko julkaisu ja palautetaanko se muokattavaksi?",
|
||||
"confirmations.remove_from_followers.confirm": "Poista seuraaja",
|
||||
"confirmations.remove_from_followers.message": "{name} lakkaa seuraamasta sinua. Haluatko varmasti jatkaa?",
|
||||
"confirmations.remove_from_followers.title": "Poistetaanko seuraaja?",
|
||||
"confirmations.reply.confirm": "Vastaa",
|
||||
"confirmations.reply.message": "Jos vastaat nyt, vastaus korvaa parhaillaan työstämäsi viestin. Haluatko varmasti jatkaa?",
|
||||
"confirmations.reply.title": "Korvataanko julkaisu?",
|
||||
|
@ -295,7 +303,6 @@
|
|||
"emoji_button.search_results": "Hakutulokset",
|
||||
"emoji_button.symbols": "Symbolit",
|
||||
"emoji_button.travel": "Matkailu ja paikat",
|
||||
"empty_column.account_featured": "Tämä lista on tyhjä",
|
||||
"empty_column.account_hides_collections": "Käyttäjä on päättänyt pitää nämä tiedot yksityisinä",
|
||||
"empty_column.account_suspended": "Tili jäädytetty",
|
||||
"empty_column.account_timeline": "Ei viestejä täällä.",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "I-sipi ang kawing sa profile",
|
||||
"account.direct": "Palihim banggitin si @{name}",
|
||||
"account.disable_notifications": "I-tigil ang pagpapaalam sa akin tuwing nagpopost si @{name}",
|
||||
"account.domain_blocked": "Hinadlangan ang domain",
|
||||
"account.edit_profile": "Baguhin ang profile",
|
||||
"account.enable_notifications": "Ipaalam sa akin kapag nag-post si @{name}",
|
||||
"account.endorse": "I-tampok sa profile",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "I-mute ang mga abiso",
|
||||
"account.mute_short": "I-mute",
|
||||
"account.muted": "Naka-mute",
|
||||
"account.mutual": "Ka-mutual",
|
||||
"account.no_bio": "Walang nakalaan na paglalarawan.",
|
||||
"account.open_original_page": "Buksan ang pinagmulang pahina",
|
||||
"account.posts": "Mga post",
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "Banna økisnavnið {domain}",
|
||||
"account.block_short": "Blokera",
|
||||
"account.blocked": "Bannað/ur",
|
||||
"account.blocking": "Banni",
|
||||
"account.cancel_follow_request": "Strika fylgjaraumbøn",
|
||||
"account.copy": "Avrita leinki til vangan",
|
||||
"account.direct": "Umrøð @{name} privat",
|
||||
"account.disable_notifications": "Ikki boða mær frá, tá @{name} skrivar",
|
||||
"account.domain_blocked": "Økisnavn bannað",
|
||||
"account.domain_blocking": "Banni økisnavn",
|
||||
"account.edit_profile": "Broyt vanga",
|
||||
"account.enable_notifications": "Boða mær frá, tá @{name} skrivar",
|
||||
"account.endorse": "Víst á vangamyndini",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Fylgir",
|
||||
"account.following_counter": "{count, plural, one {{counter} fylgir} other {{counter} fylgja}}",
|
||||
"account.follows.empty": "Hesin brúkari fylgir ongum enn.",
|
||||
"account.follows_you": "Fylgir tær",
|
||||
"account.go_to_profile": "Far til vanga",
|
||||
"account.hide_reblogs": "Fjal lyft frá @{name}",
|
||||
"account.in_memoriam": "In memoriam.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Sløkk fráboðanir",
|
||||
"account.mute_short": "Doyv",
|
||||
"account.muted": "Sløkt/ur",
|
||||
"account.mutual": "Sínamillum",
|
||||
"account.muting": "Doyvir",
|
||||
"account.mutual": "Tit fylgja hvønn annan",
|
||||
"account.no_bio": "Lýsing vantar.",
|
||||
"account.open_original_page": "Opna upprunasíðuna",
|
||||
"account.posts": "Uppsløg",
|
||||
"account.posts_with_replies": "Uppsløg og svar",
|
||||
"account.remove_from_followers": "Strika {name} av fylgjaralista",
|
||||
"account.report": "Melda @{name}",
|
||||
"account.requested": "Bíðar eftir góðkenning. Trýst fyri at angra umbønina",
|
||||
"account.requested_follow": "{name} hevur biðið um at fylgja tær",
|
||||
"account.requests_to_follow_you": "Umbønir um at fylgja tær",
|
||||
"account.share": "Deil vanga @{name}'s",
|
||||
"account.show_reblogs": "Vís lyft frá @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} postur} other {{counter} postar}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Sletta og skriva umaftur",
|
||||
"confirmations.redraft.message": "Vilt tú veruliga strika hendan postin og í staðin gera hann til eina nýggja kladdu? Yndisfrámerki og framhevjanir blíva burtur, og svar til upprunapostin missa tilknýtið.",
|
||||
"confirmations.redraft.title": "Strika & ger nýtt uppskot um post?",
|
||||
"confirmations.remove_from_followers.confirm": "Strika fylgjara",
|
||||
"confirmations.remove_from_followers.message": "{name} fer ikki longur at fylgja tær. Er tú vís/ur í at tú vilt halda fram?",
|
||||
"confirmations.remove_from_followers.title": "Strika fylgjara?",
|
||||
"confirmations.reply.confirm": "Svara",
|
||||
"confirmations.reply.message": "Svarar tú nú, verða boðini, sum tú ert í holt við at skriva yvirskrivað. Ert tú vís/ur í, at tú vilt halda fram?",
|
||||
"confirmations.reply.title": "Skriva omaná post?",
|
||||
|
@ -296,7 +304,9 @@
|
|||
"emoji_button.search_results": "Leitiúrslit",
|
||||
"emoji_button.symbols": "Ímyndir",
|
||||
"emoji_button.travel": "Ferðing og støð",
|
||||
"empty_column.account_featured": "Hesin listin er tómur",
|
||||
"empty_column.account_featured.me": "Tú hevur ikki tikið nakað fram enn. Visti tú, at tú kanst taka fram egnar postar, frámerki, tú brúkar mest, og sjálvt kontur hjá vinum tínum á vangan hjá tær?",
|
||||
"empty_column.account_featured.other": "{acct} hevur ikki tikið nakað fram enn. Visti tú, at tú kanst taka fram tínar postar, frámerki, tú brúkar mest, og sjálvt kontur hjá vinum tínum á vangan hjá tær?",
|
||||
"empty_column.account_featured_other.unknown": "Hendan kontan hevur ikki tikið nakað fram enn.",
|
||||
"empty_column.account_hides_collections": "Hesin brúkarin hevur valt, at hesar upplýsingarnar ikki skulu vera tøkar",
|
||||
"empty_column.account_suspended": "Kontan gjørd óvirkin",
|
||||
"empty_column.account_timeline": "Einki uppslag her!",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Copier le lien vers le profil",
|
||||
"account.direct": "Mention privée @{name}",
|
||||
"account.disable_notifications": "Ne plus me notifier quand @{name} publie",
|
||||
"account.domain_blocked": "Domaine bloqué",
|
||||
"account.edit_profile": "Modifier le profil",
|
||||
"account.enable_notifications": "Me notifier quand @{name} publie",
|
||||
"account.endorse": "Inclure sur profil",
|
||||
|
@ -54,7 +53,6 @@
|
|||
"account.mute_notifications_short": "Rendre les notifications muettes",
|
||||
"account.mute_short": "Rendre muet",
|
||||
"account.muted": "Masqué·e",
|
||||
"account.mutual": "Mutuel",
|
||||
"account.no_bio": "Description manquante.",
|
||||
"account.open_original_page": "Ouvrir la page d'origine",
|
||||
"account.posts": "Publications",
|
||||
|
@ -296,7 +294,6 @@
|
|||
"emoji_button.search_results": "Résultats",
|
||||
"emoji_button.symbols": "Symboles",
|
||||
"emoji_button.travel": "Voyage et lieux",
|
||||
"empty_column.account_featured": "Cette liste est vide",
|
||||
"empty_column.account_hides_collections": "Cet utilisateur·ice préfère ne pas rendre publiques ces informations",
|
||||
"empty_column.account_suspended": "Compte suspendu",
|
||||
"empty_column.account_timeline": "Aucune publication ici!",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Copier le lien vers le profil",
|
||||
"account.direct": "Mention privée @{name}",
|
||||
"account.disable_notifications": "Ne plus me notifier quand @{name} publie quelque chose",
|
||||
"account.domain_blocked": "Domaine bloqué",
|
||||
"account.edit_profile": "Modifier le profil",
|
||||
"account.enable_notifications": "Me notifier quand @{name} publie quelque chose",
|
||||
"account.endorse": "Recommander sur votre profil",
|
||||
|
@ -54,7 +53,6 @@
|
|||
"account.mute_notifications_short": "Désactiver les notifications",
|
||||
"account.mute_short": "Mettre en sourdine",
|
||||
"account.muted": "Masqué·e",
|
||||
"account.mutual": "Mutuel",
|
||||
"account.no_bio": "Aucune description fournie.",
|
||||
"account.open_original_page": "Ouvrir la page d'origine",
|
||||
"account.posts": "Messages",
|
||||
|
@ -296,7 +294,6 @@
|
|||
"emoji_button.search_results": "Résultats de la recherche",
|
||||
"emoji_button.symbols": "Symboles",
|
||||
"emoji_button.travel": "Voyage et lieux",
|
||||
"empty_column.account_featured": "Cette liste est vide",
|
||||
"empty_column.account_hides_collections": "Cet utilisateur·ice préfère ne pas rendre publiques ces informations",
|
||||
"empty_column.account_suspended": "Compte suspendu",
|
||||
"empty_column.account_timeline": "Aucun message ici !",
|
||||
|
|
|
@ -19,14 +19,18 @@
|
|||
"account.block_domain": "Domein {domain} blokkearje",
|
||||
"account.block_short": "Blokkearje",
|
||||
"account.blocked": "Blokkearre",
|
||||
"account.blocking": "Blokkearre",
|
||||
"account.cancel_follow_request": "Folchfersyk annulearje",
|
||||
"account.copy": "Keppeling nei profyl kopiearje",
|
||||
"account.direct": "Privee fermelde @{name}",
|
||||
"account.disable_notifications": "Jou gjin melding mear wannear @{name} in berjocht pleatst",
|
||||
"account.domain_blocked": "Domein blokkearre",
|
||||
"account.domain_blocking": "Domein blokkearre",
|
||||
"account.edit_profile": "Profyl bewurkje",
|
||||
"account.enable_notifications": "Jou in melding mear wannear @{name} in berjocht pleatst",
|
||||
"account.endorse": "Op profyl werjaan",
|
||||
"account.featured": "Foarsteld",
|
||||
"account.featured.hashtags": "Hashtags",
|
||||
"account.featured.posts": "Berjochten",
|
||||
"account.featured_tags.last_status_at": "Lêste berjocht op {date}",
|
||||
"account.featured_tags.last_status_never": "Gjin berjochten",
|
||||
"account.follow": "Folgje",
|
||||
|
@ -37,6 +41,7 @@
|
|||
"account.following": "Folgjend",
|
||||
"account.following_counter": "{count, plural, one {{counter} folgjend} other {{counter} folgjend}}",
|
||||
"account.follows.empty": "Dizze brûker folget noch net ien.",
|
||||
"account.follows_you": "Folget jo",
|
||||
"account.go_to_profile": "Gean nei profyl",
|
||||
"account.hide_reblogs": "Boosts fan @{name} ferstopje",
|
||||
"account.in_memoriam": "Yn memoriam.",
|
||||
|
@ -51,19 +56,23 @@
|
|||
"account.mute_notifications_short": "Meldingen negearje",
|
||||
"account.mute_short": "Negearje",
|
||||
"account.muted": "Negearre",
|
||||
"account.mutual": "Jimme folgje inoar",
|
||||
"account.muting": "Dôve",
|
||||
"account.mutual": "Jim folgje inoar",
|
||||
"account.no_bio": "Gjin omskriuwing opjûn.",
|
||||
"account.open_original_page": "Orizjinele side iepenje",
|
||||
"account.posts": "Berjochten",
|
||||
"account.posts_with_replies": "Berjochten en reaksjes",
|
||||
"account.remove_from_followers": "{name} as folger fuortsmite",
|
||||
"account.report": "@{name} rapportearje",
|
||||
"account.requested": "Wacht op goedkarring. Klik om it folchfersyk te annulearjen",
|
||||
"account.requested_follow": "{name} hat dy in folchfersyk stjoerd",
|
||||
"account.requests_to_follow_you": "Fersiken om jo te folgjen",
|
||||
"account.share": "Profyl fan @{name} diele",
|
||||
"account.show_reblogs": "Boosts fan @{name} toane",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} berjocht} other {{counter} berjochten}}",
|
||||
"account.unblock": "@{name} deblokkearje",
|
||||
"account.unblock_domain": "Domein {domain} deblokkearje",
|
||||
"account.unblock_domain_short": "Deblokkearje",
|
||||
"account.unblock_short": "Deblokkearje",
|
||||
"account.unendorse": "Net op profyl werjaan",
|
||||
"account.unfollow": "Net mear folgje",
|
||||
|
@ -217,10 +226,17 @@
|
|||
"confirmations.logout.confirm": "Ofmelde",
|
||||
"confirmations.logout.message": "Binne jo wis dat jo ôfmelde wolle?",
|
||||
"confirmations.logout.title": "Ofmelde?",
|
||||
"confirmations.missing_alt_text.confirm": "Alt-tekst tafoegje",
|
||||
"confirmations.missing_alt_text.message": "Jo berjocht befettet media sûnder alt-tekst. It tafoegjen fan beskriuwingen helpt jo om jo ynhâld tagonklik te meitsjen foar mear minsken.",
|
||||
"confirmations.missing_alt_text.secondary": "Dochs pleatse",
|
||||
"confirmations.missing_alt_text.title": "Alt-tekst tafoegje?",
|
||||
"confirmations.mute.confirm": "Negearje",
|
||||
"confirmations.redraft.confirm": "Fuortsmite en opnij opstelle",
|
||||
"confirmations.redraft.message": "Binne jo wis dat jo dit berjocht fuortsmite en opnij opstelle wolle? Favoriten en boosts geane dan ferlern en reaksjes op it oarspronklike berjocht reitsje jo kwyt.",
|
||||
"confirmations.redraft.title": "Berjocht fuortsmite en opnij opstelle?",
|
||||
"confirmations.remove_from_followers.confirm": "Folger fuortsmite",
|
||||
"confirmations.remove_from_followers.message": "{name} sil jo net mear folgje. Binne jo wis dat jo trochgean wolle?",
|
||||
"confirmations.remove_from_followers.title": "Folger fuortsmite?",
|
||||
"confirmations.reply.confirm": "Reagearje",
|
||||
"confirmations.reply.message": "Troch no te reagearjen sil it berjocht dat jo no oan it skriuwen binne oerskreaun wurde. Wolle jo trochgean?",
|
||||
"confirmations.reply.title": "Berjocht oerskriuwe?",
|
||||
|
@ -246,6 +262,9 @@
|
|||
"dismissable_banner.community_timeline": "Dit binne de meast resinte iepenbiere berjochten fan accounts op {domain}.",
|
||||
"dismissable_banner.dismiss": "Slute",
|
||||
"dismissable_banner.explore_links": "Dizze nijsartikelen wurde hjoed de dei it meast dield op de fediverse. Nijere artikelen dy’t troch mear ferskate minsken pleatst binne, wurde heger rangskikt.",
|
||||
"dismissable_banner.explore_statuses": "Dizze berjochten winne oan populariteit op de fediverse. Nijere berjochten mei mear boosts en favoriten stean heger.",
|
||||
"dismissable_banner.explore_tags": "Dizze hashtags winne oan populariteit op de fediverse. Hashtags dy’t troch mear ferskate minsken brûkt wurde, wurde heger rangskikt.",
|
||||
"dismissable_banner.public_timeline": "Dit binne de meast resinte iepenbiere berjochten fan accounts op de fediverse dy’t troch minsken op {domain} folge wurde.",
|
||||
"domain_block_modal.block": "Server blokkearje",
|
||||
"domain_block_modal.block_account_instead": "Yn stee hjirfan {name} blokkearje",
|
||||
"domain_block_modal.they_can_interact_with_old_posts": "Minsken op dizze server kinne ynteraksje hawwe mei jo âlde berjochten.",
|
||||
|
@ -285,6 +304,9 @@
|
|||
"emoji_button.search_results": "Sykresultaten",
|
||||
"emoji_button.symbols": "Symboalen",
|
||||
"emoji_button.travel": "Reizgje en lokaasjes",
|
||||
"empty_column.account_featured.me": "Jo hawwe noch neat útljochte. Wisten jo dat jo jo berjochten, hashtags dy’tsto it meast brûkst en sels de accounts fan dyn freonen fermelde kinne op dyn profyl?",
|
||||
"empty_column.account_featured.other": "{acct} hat noch neat útljochte. Wisten jo dat jo jo berjochten, hashtags dy’tsto it meast brûkst en sels de accounts fan dyn freonen fermelde kinne op dyn profyl?",
|
||||
"empty_column.account_featured_other.unknown": "Dizze account hat noch neat útljochte.",
|
||||
"empty_column.account_hides_collections": "Dizze brûker hat derfoar keazen dizze ynformaasje net beskikber te meitsjen",
|
||||
"empty_column.account_suspended": "Account beskoattele",
|
||||
"empty_column.account_timeline": "Hjir binne gjin berjochten!",
|
||||
|
@ -365,8 +387,12 @@
|
|||
"footer.privacy_policy": "Privacybelied",
|
||||
"footer.source_code": "Boarnekoade besjen",
|
||||
"footer.status": "Steat",
|
||||
"footer.terms_of_service": "Tsjinstbetingsten",
|
||||
"generic.saved": "Bewarre",
|
||||
"getting_started.heading": "Uteinsette",
|
||||
"hashtag.admin_moderation": "Moderaasje-omjouwing fan #{name} iepenje",
|
||||
"hashtag.browse": "Berjochten mei #{hashtag} besjen",
|
||||
"hashtag.browse_from_account": "Berjochten fan @{name} mei #{hashtag} besjen",
|
||||
"hashtag.column_header.tag_mode.all": "en {additional}",
|
||||
"hashtag.column_header.tag_mode.any": "of {additional}",
|
||||
"hashtag.column_header.tag_mode.none": "sûnder {additional}",
|
||||
|
@ -380,6 +406,7 @@
|
|||
"hashtag.counter_by_uses": "{count, plural, one {{counter} berjocht} other {{counter} berjochten}}",
|
||||
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} berjocht} other {{counter} berjochten}} hjoed",
|
||||
"hashtag.follow": "Hashtag folgje",
|
||||
"hashtag.mute": "#{hashtag} negearje",
|
||||
"hashtag.unfollow": "Hashtag ûntfolgje",
|
||||
"hashtags.and_other": "…en {count, plural, one {}other {# mear}}",
|
||||
"hints.profiles.followers_may_be_missing": "Folgers foar dit profyl kinne ûntbrekke.",
|
||||
|
@ -409,6 +436,12 @@
|
|||
"ignore_notifications_modal.not_following_title": "Meldingen negearje fan minsken dy’t josels net folgje?",
|
||||
"ignore_notifications_modal.private_mentions_title": "Meldingen negearje fan net frege priveeberjochten?",
|
||||
"info_button.label": "Help",
|
||||
"info_button.what_is_alt_text": "<h1>Wat is alt-tekst?</h1> <p>Alt-tekst biedt ôfbyldingsbeskriuwingen foar minsken mei in fisuele beheining en ferbiningen mei in lege bânbreedte of foar minsken dy’t nei ekstra kontekst sykje.</p><p>Jo kinne de tagonklikheid en de begryplikheid foar elkenien ferbetterje troch dúdlik, koart en objektyf te skriuwen.</p><ul><li>Beskriuw wichtige eleminten</li><li>Fetsje tekst yn ôfbyldingen gear</li><li>Brûk in normale sinsbou</li><li>Mij oertallige ynformaasje</li><li>Fokusje op trends en wichtige befiningen yn komplekse bylden (lykas diagrammen of kaarten)</li></ul>",
|
||||
"interaction_modal.action.favourite": "Om troch te gaan, moatte jo fan jo eigen account ôf as favoryt markearje.",
|
||||
"interaction_modal.action.follow": "Om troch te gaan, moatte jo fan jo eigen account ôf folgje.",
|
||||
"interaction_modal.action.reblog": "Om troch te gaan, moatte jo fan jo eigen account ôf booste.",
|
||||
"interaction_modal.action.reply": "Om troch te gaan, moatte jo fan jo eigen account ôf reagearje.",
|
||||
"interaction_modal.action.vote": "Om troch te gaan, moatte jo fan jo eigen account ôf as favoryt stimme.",
|
||||
"interaction_modal.go": "Gean",
|
||||
"interaction_modal.no_account_yet": "Hawwe jo noch gjin account?",
|
||||
"interaction_modal.on_another_server": "Op een oare server",
|
||||
|
@ -681,6 +714,7 @@
|
|||
"poll_button.remove_poll": "Enkête fuortsmite",
|
||||
"privacy.change": "Sichtberheid fan berjocht oanpasse",
|
||||
"privacy.direct.long": "Elkenien dy’ yn it berjocht fermeld wurdt",
|
||||
"privacy.direct.short": "Priveefermelding",
|
||||
"privacy.private.long": "Allinnich jo folgers",
|
||||
"privacy.private.short": "Folgers",
|
||||
"privacy.public.long": "Elkenien op Mastodon en dêrbûten",
|
||||
|
@ -855,7 +889,9 @@
|
|||
"subscribed_languages.target": "Toande talen foar {target} wizigje",
|
||||
"tabs_bar.home": "Startside",
|
||||
"tabs_bar.notifications": "Meldingen",
|
||||
"terms_of_service.effective_as_of": "Effektyf fan {date} ôf",
|
||||
"terms_of_service.title": "Gebrûksbetingsten",
|
||||
"terms_of_service.upcoming_changes_on": "Oankommende wizigingen op {date}",
|
||||
"time_remaining.days": "{number, plural, one {# dei} other {# dagen}} te gean",
|
||||
"time_remaining.hours": "{number, plural, one {# oere} other {# oeren}} te gean",
|
||||
"time_remaining.minutes": "{number, plural, one {# minút} other {# minuten}} te gean",
|
||||
|
@ -886,6 +922,12 @@
|
|||
"video.expand": "Fideo grutter meitsje",
|
||||
"video.fullscreen": "Folslein skerm",
|
||||
"video.hide": "Fideo ferstopje",
|
||||
"video.mute": "Negearje",
|
||||
"video.pause": "Skoft",
|
||||
"video.play": "Ofspylje"
|
||||
"video.play": "Ofspylje",
|
||||
"video.skip_backward": "Tebek",
|
||||
"video.skip_forward": "Foarút",
|
||||
"video.unmute": "Net mear negearje",
|
||||
"video.volume_down": "Folume omleech",
|
||||
"video.volume_up": "Folume omheech"
|
||||
}
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Cóipeáil nasc chuig an bpróifíl",
|
||||
"account.direct": "Luaigh @{name} go príobháideach",
|
||||
"account.disable_notifications": "Éirigh as ag cuir mé in eol nuair bpostálann @{name}",
|
||||
"account.domain_blocked": "Ainm fearainn bactha",
|
||||
"account.edit_profile": "Cuir an phróifíl in eagar",
|
||||
"account.enable_notifications": "Cuir mé in eol nuair bpostálann @{name}",
|
||||
"account.endorse": "Cuir ar an phróifíl mar ghné",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Balbhaigh fógraí",
|
||||
"account.mute_short": "Balbhaigh",
|
||||
"account.muted": "Balbhaithe",
|
||||
"account.mutual": "Frithpháirteach",
|
||||
"account.no_bio": "Níor tugadh tuairisc.",
|
||||
"account.open_original_page": "Oscail an leathanach bunaidh",
|
||||
"account.posts": "Postálacha",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Dèan lethbhreac dhen cheangal dhan phròifil",
|
||||
"account.direct": "Thoir iomradh air @{name} gu prìobhaideach",
|
||||
"account.disable_notifications": "Na cuir brath thugam tuilleadh nuair a chuireas @{name} post ris",
|
||||
"account.domain_blocked": "Chaidh an àrainn a bhacadh",
|
||||
"account.edit_profile": "Deasaich a’ phròifil",
|
||||
"account.enable_notifications": "Cuir brath thugam nuair a chuireas @{name} post ris",
|
||||
"account.endorse": "Brosnaich air a’ phròifil",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Mùch na brathan",
|
||||
"account.mute_short": "Mùch",
|
||||
"account.muted": "’Ga mhùchadh",
|
||||
"account.mutual": "Co-dhàimh",
|
||||
"account.no_bio": "Cha deach tuairisgeul a sholar.",
|
||||
"account.open_original_page": "Fosgail an duilleag thùsail",
|
||||
"account.posts": "Postaichean",
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "Agochar todo de {domain}",
|
||||
"account.block_short": "Bloquear",
|
||||
"account.blocked": "Bloqueada",
|
||||
"account.blocking": "Bloqueos",
|
||||
"account.cancel_follow_request": "Desbotar a solicitude de seguimento",
|
||||
"account.copy": "Copiar ligazón ao perfil",
|
||||
"account.direct": "Mencionar de xeito privado a @{name}",
|
||||
"account.disable_notifications": "Deixar de notificarme cando @{name} publica",
|
||||
"account.domain_blocked": "Dominio agochado",
|
||||
"account.domain_blocking": "Bloqueo do dominio",
|
||||
"account.edit_profile": "Editar perfil",
|
||||
"account.enable_notifications": "Noficarme cando @{name} publique",
|
||||
"account.endorse": "Amosar no perfil",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Seguindo",
|
||||
"account.following_counter": "{count, plural, one {{counter} seguimento} other {{counter} seguimentos}}",
|
||||
"account.follows.empty": "Esta usuaria aínda non segue a ninguén.",
|
||||
"account.follows_you": "Séguete",
|
||||
"account.go_to_profile": "Ir ao perfil",
|
||||
"account.hide_reblogs": "Agochar promocións de @{name}",
|
||||
"account.in_memoriam": "Lembranzas.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Silenciar notificacións",
|
||||
"account.mute_short": "Acalar",
|
||||
"account.muted": "Acalada",
|
||||
"account.mutual": "Mutuo",
|
||||
"account.muting": "Silenciamento",
|
||||
"account.mutual": "Seguimento mútuo",
|
||||
"account.no_bio": "Sen descrición.",
|
||||
"account.open_original_page": "Abrir páxina orixinal",
|
||||
"account.posts": "Publicacións",
|
||||
"account.posts_with_replies": "Publicacións e respostas",
|
||||
"account.remove_from_followers": "Retirar a {name} das seguidoras",
|
||||
"account.report": "Informar sobre @{name}",
|
||||
"account.requested": "Agardando aprobación. Preme para desbotar a solicitude",
|
||||
"account.requested_follow": "{name} solicitou seguirte",
|
||||
"account.requests_to_follow_you": "Solicita seguirte",
|
||||
"account.share": "Compartir o perfil de @{name}",
|
||||
"account.show_reblogs": "Amosar compartidos de @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} publicación} other {{counter} publicacións}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Eliminar e reescribir",
|
||||
"confirmations.redraft.message": "Tes a certeza de querer eliminar esta publicación e reescribila? Perderás as promocións e favorecementos, e as respostas á publicación orixinal ficarán orfas.",
|
||||
"confirmations.redraft.title": "Eliminar e reescribir a publicación?",
|
||||
"confirmations.remove_from_followers.confirm": "Quitar seguidora",
|
||||
"confirmations.remove_from_followers.message": "{name} vai deixar de seguirte. É isto o que queres?",
|
||||
"confirmations.remove_from_followers.title": "Quitar seguidora?",
|
||||
"confirmations.reply.confirm": "Responder",
|
||||
"confirmations.reply.message": "Ao responder sobrescribirás a mensaxe que estás a compor. Tes a certeza de que queres continuar?",
|
||||
"confirmations.reply.title": "Editar a publicación?",
|
||||
|
@ -296,7 +304,9 @@
|
|||
"emoji_button.search_results": "Resultados da procura",
|
||||
"emoji_button.symbols": "Símbolos",
|
||||
"emoji_button.travel": "Viaxes e Lugares",
|
||||
"empty_column.account_featured": "A lista está baleira",
|
||||
"empty_column.account_featured.me": "Aínda non destacaches nada. Sabías que podes facer destacar no teu perfil as túas publicacións e os cancelos que máis usas, incluso as contas das túas amizades?",
|
||||
"empty_column.account_featured.other": "{acct} aínda non escolleu nada para destacar. Sabías que podes facer destacatar no teu perfil as túas publicacións e os cancelos que máis usas, incluso publicacións das túas amizades?",
|
||||
"empty_column.account_featured_other.unknown": "Esta conta aínda non destacou nada.",
|
||||
"empty_column.account_hides_collections": "A usuaria decideu non facer pública esta información",
|
||||
"empty_column.account_suspended": "Conta suspendida",
|
||||
"empty_column.account_timeline": "Non hai publicacións aquí!",
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "חסמו את קהילת {domain}",
|
||||
"account.block_short": "לחסום",
|
||||
"account.blocked": "לחסום",
|
||||
"account.blocking": "רשימת החשבונות החסומים",
|
||||
"account.cancel_follow_request": "משיכת בקשת מעקב",
|
||||
"account.copy": "להעתיק קישור לפרופיל",
|
||||
"account.direct": "הודעה פרטית אל @{name}",
|
||||
"account.disable_notifications": "הפסק לשלוח לי התראות כש@{name} מפרסמים",
|
||||
"account.domain_blocked": "הדומיין חסום",
|
||||
"account.domain_blocking": "רשימת השרתים החסומים",
|
||||
"account.edit_profile": "עריכת פרופיל",
|
||||
"account.enable_notifications": "שלח לי התראות כש@{name} מפרסם",
|
||||
"account.endorse": "קדם את החשבון בפרופיל",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "נעקבים",
|
||||
"account.following_counter": "{count, plural,one {עוקב אחרי {count}}other {עוקב אחרי {counter}}}",
|
||||
"account.follows.empty": "משתמש זה עדיין לא עוקב אחרי אף אחד.",
|
||||
"account.follows_you": "במעקב אחריך",
|
||||
"account.go_to_profile": "מעבר לפרופיל",
|
||||
"account.hide_reblogs": "להסתיר הידהודים מאת @{name}",
|
||||
"account.in_memoriam": "פרופיל זכרון.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "השתקת התראות",
|
||||
"account.mute_short": "השתקה",
|
||||
"account.muted": "מושתק",
|
||||
"account.mutual": "הדדיים",
|
||||
"account.muting": "רשימת החשבונות המושתקים",
|
||||
"account.mutual": "אתם עוקביםות הדדית",
|
||||
"account.no_bio": "לא סופק תיאור.",
|
||||
"account.open_original_page": "לפתיחת העמוד המקורי",
|
||||
"account.posts": "פוסטים",
|
||||
"account.posts_with_replies": "הודעות ותגובות",
|
||||
"account.remove_from_followers": "הסרת {name} מעוקבי",
|
||||
"account.report": "דווח על @{name}",
|
||||
"account.requested": "בהמתנה לאישור. לחצי כדי לבטל בקשת מעקב",
|
||||
"account.requested_follow": "{name} ביקשו לעקוב אחריך",
|
||||
"account.requests_to_follow_you": "ביקשו לעקוב אחריך",
|
||||
"account.share": "שתף את הפרופיל של @{name}",
|
||||
"account.show_reblogs": "הצג הדהודים מאת @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {הודעה אחת} two {הודעותיים} many {{counter} הודעות} other {{counter} הודעות}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "מחיקה ועריכה מחדש",
|
||||
"confirmations.redraft.message": "למחוק ולהתחיל טיוטה חדשה? חיבובים והדהודים יאבדו, ותגובות להודעה המקורית ישארו יתומות.",
|
||||
"confirmations.redraft.title": "מחיקה ועריכה מחדש?",
|
||||
"confirmations.remove_from_followers.confirm": "הסרת עוקב",
|
||||
"confirmations.remove_from_followers.message": "{name} יוסר/תוסר ממעקב אחריך. האם להמשיך?",
|
||||
"confirmations.remove_from_followers.title": "להסיר עוקב/עוקבת?",
|
||||
"confirmations.reply.confirm": "תגובה",
|
||||
"confirmations.reply.message": "תגובה עכשיו תמחק את ההודעה שכבר התחלת לכתוב. להמשיך?",
|
||||
"confirmations.reply.title": "לבצע החלפת תוכן?",
|
||||
|
@ -296,7 +304,9 @@
|
|||
"emoji_button.search_results": "תוצאות חיפוש",
|
||||
"emoji_button.symbols": "סמלים",
|
||||
"emoji_button.travel": "טיולים ואתרים",
|
||||
"empty_column.account_featured": "הרשימה ריקה",
|
||||
"empty_column.account_featured.me": "עוד לא קידמת תכנים. הידעת שניתן לקדם תכני הודעות, תגיות שבשימושך התדיר או אפילו את החשבונות של חבריםות בפרופיל שלך?",
|
||||
"empty_column.account_featured.other": "{acct} עוד לא קידם תכנים. הידעת שניתן לקדם תכני הודעות, תגיות שבשימושך התדיר או אפילו את החשבונות של חבריםות בפרופיל שלך?",
|
||||
"empty_column.account_featured_other.unknown": "חשבון זה עוד לא קידם תכנים.",
|
||||
"empty_column.account_hides_collections": "המשתמש.ת בחר.ה להסתיר מידע זה",
|
||||
"empty_column.account_suspended": "חשבון מושעה",
|
||||
"empty_column.account_timeline": "אין עדיין אף הודעה!",
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
"account.copy": "प्रोफाइल पर लिंक कॉपी करें",
|
||||
"account.direct": "निजि तरीके से उल्लेख करे @{name}",
|
||||
"account.disable_notifications": "@{name} पोस्ट के लिए मुझे सूचित मत करो",
|
||||
"account.domain_blocked": "छिपा हुआ डोमेन",
|
||||
"account.edit_profile": "प्रोफ़ाइल संपादित करें",
|
||||
"account.enable_notifications": "जब @{name} पोस्ट मौजूद हो सूचित करें",
|
||||
"account.endorse": "प्रोफ़ाइल पर दिखाए",
|
||||
|
@ -48,7 +47,6 @@
|
|||
"account.mute_notifications_short": "सूचनाओ को शांत करे",
|
||||
"account.mute_short": "शांत करे",
|
||||
"account.muted": "म्यूट है",
|
||||
"account.mutual": "आपसी",
|
||||
"account.no_bio": "कोई विवरण नहि दिया गया हे",
|
||||
"account.open_original_page": "ओरिजिनल पोस्ट खोलें",
|
||||
"account.posts": "टूट्स",
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
"account.copy": "Kopiraj vezu u profil",
|
||||
"account.direct": "Privatno spomeni @{name}",
|
||||
"account.disable_notifications": "Nemoj me obavjestiti kada @{name} napravi objavu",
|
||||
"account.domain_blocked": "Domena je blokirana",
|
||||
"account.edit_profile": "Uredi profil",
|
||||
"account.enable_notifications": "Obavjesti me kada @{name} napravi objavu",
|
||||
"account.endorse": "Istakni na profilu",
|
||||
|
@ -47,7 +46,6 @@
|
|||
"account.mute_notifications_short": "Utišaj obavijesti",
|
||||
"account.mute_short": "Utišaj",
|
||||
"account.muted": "Utišano",
|
||||
"account.mutual": "Uzajamno",
|
||||
"account.no_bio": "Nije dan opis.",
|
||||
"account.open_original_page": "Otvori originalnu stranicu",
|
||||
"account.posts": "Objave",
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "Domain letiltása: {domain}",
|
||||
"account.block_short": "Letiltás",
|
||||
"account.blocked": "Letiltva",
|
||||
"account.blocking": "Tiltás",
|
||||
"account.cancel_follow_request": "Követési kérés visszavonása",
|
||||
"account.copy": "Hivatkozás másolása a profilba",
|
||||
"account.direct": "@{name} személyes említése",
|
||||
"account.disable_notifications": "Ne figyelmeztessen, ha @{name} bejegyzést tesz közzé",
|
||||
"account.domain_blocked": "Letiltott domain",
|
||||
"account.domain_blocking": "Domain tiltás",
|
||||
"account.edit_profile": "Profil szerkesztése",
|
||||
"account.enable_notifications": "Figyelmeztessen, ha @{name} bejegyzést tesz közzé",
|
||||
"account.endorse": "Kiemelés a profilodon",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Követve",
|
||||
"account.following_counter": "{count, plural, one {{counter} követett} other {{counter} követett}}",
|
||||
"account.follows.empty": "Ez a felhasználó még senkit sem követ.",
|
||||
"account.follows_you": "Követ téged",
|
||||
"account.go_to_profile": "Ugrás a profilhoz",
|
||||
"account.hide_reblogs": "@{name} megtolásainak elrejtése",
|
||||
"account.in_memoriam": "Emlékünkben.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Értesítések némítása",
|
||||
"account.mute_short": "Némítás",
|
||||
"account.muted": "Némítva",
|
||||
"account.mutual": "Kölcsönös",
|
||||
"account.muting": "Némítás",
|
||||
"account.mutual": "Követitek egymást",
|
||||
"account.no_bio": "Leírás nincs megadva.",
|
||||
"account.open_original_page": "Eredeti oldal megnyitása",
|
||||
"account.posts": "Bejegyzések",
|
||||
"account.posts_with_replies": "Bejegyzések és válaszok",
|
||||
"account.remove_from_followers": "{name} eltávolítása a követők közül",
|
||||
"account.report": "@{name} jelentése",
|
||||
"account.requested": "Jóváhagyásra vár. Kattints a követési kérés visszavonásához",
|
||||
"account.requested_follow": "{name} kérte, hogy követhessen",
|
||||
"account.requests_to_follow_you": "Kéri, hogy követhessen",
|
||||
"account.share": "@{name} profiljának megosztása",
|
||||
"account.show_reblogs": "@{name} megtolásainak mutatása",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} bejegyzés} other {{counter} bejegyzés}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Törlés és újraírás",
|
||||
"confirmations.redraft.message": "Biztos, hogy ezt a bejegyzést szeretnéd törölni és újraírni? Minden megtolást és kedvencnek jelölést elvesztesz, az eredetire adott válaszok pedig elárvulnak.",
|
||||
"confirmations.redraft.title": "Törlöd és újraírod a bejegyzést?",
|
||||
"confirmations.remove_from_followers.confirm": "Követő eltávolítása",
|
||||
"confirmations.remove_from_followers.message": "{name} követ téged. Biztos, hogy folytatod?",
|
||||
"confirmations.remove_from_followers.title": "Követő eltávolítása?",
|
||||
"confirmations.reply.confirm": "Válasz",
|
||||
"confirmations.reply.message": "Ha most válaszolsz, ez felülírja a most szerkesztés alatt álló üzenetet. Mégis ezt szeretnéd?",
|
||||
"confirmations.reply.title": "Felülírod a bejegyzést?",
|
||||
|
@ -296,7 +304,9 @@
|
|||
"emoji_button.search_results": "Keresési találatok",
|
||||
"emoji_button.symbols": "Szimbólumok",
|
||||
"emoji_button.travel": "Utazás és helyek",
|
||||
"empty_column.account_featured": "Ez a lista üres",
|
||||
"empty_column.account_featured.me": "Még semmit sem emeltél ki. Tudtad, hogy kiemelheted a profilodon a bejegyzéseidet, a legtöbbet használt hashtageidet, és még a barátaid fiókját is?",
|
||||
"empty_column.account_featured.other": "{acct} még semmit sem emelt ki. Tudtad, hogy kiemelheted a profilodon a bejegyzéseidet, a legtöbbet használt hashtageidet, és még a barátaid fiókját is?",
|
||||
"empty_column.account_featured_other.unknown": "Ez a fiók még semmit sem emelt ki.",
|
||||
"empty_column.account_hides_collections": "Ez a felhasználó úgy döntött, hogy nem teszi elérhetővé ezt az információt.",
|
||||
"empty_column.account_suspended": "Fiók felfüggesztve",
|
||||
"empty_column.account_timeline": "Itt nincs bejegyzés!",
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
"account.cancel_follow_request": "Withdraw follow request",
|
||||
"account.direct": "Մասնաւոր յիշատակում @{name}",
|
||||
"account.disable_notifications": "Ծանուցումները անջատել @{name} գրառումների համար",
|
||||
"account.domain_blocked": "Տիրոյթը արգելափակուած է",
|
||||
"account.edit_profile": "Խմբագրել հաշիւը",
|
||||
"account.enable_notifications": "Ծանուցել ինձ @{name} գրառումների մասին",
|
||||
"account.endorse": "Ցուցադրել անձնական էջում",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Copiar ligamine a profilo",
|
||||
"account.direct": "Mentionar privatemente @{name}",
|
||||
"account.disable_notifications": "Non plus notificar me quando @{name} publica",
|
||||
"account.domain_blocked": "Dominio blocate",
|
||||
"account.edit_profile": "Modificar profilo",
|
||||
"account.enable_notifications": "Notificar me quando @{name} publica",
|
||||
"account.endorse": "Evidentiar sur le profilo",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Silentiar le notificationes",
|
||||
"account.mute_short": "Silentiar",
|
||||
"account.muted": "Silentiate",
|
||||
"account.mutual": "Mutue",
|
||||
"account.no_bio": "Nulle description fornite.",
|
||||
"account.open_original_page": "Aperir le pagina original",
|
||||
"account.posts": "Messages",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Salin tautan ke profil",
|
||||
"account.direct": "Sebut secara pribadi @{name}",
|
||||
"account.disable_notifications": "Berhenti memberitahu saya ketika @{name} memposting",
|
||||
"account.domain_blocked": "Domain diblokir",
|
||||
"account.edit_profile": "Ubah profil",
|
||||
"account.enable_notifications": "Beritahu saya saat @{name} memposting",
|
||||
"account.endorse": "Tampilkan di profil",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Senyapkan Notifikasi",
|
||||
"account.mute_short": "Senyapkan",
|
||||
"account.muted": "Dibisukan",
|
||||
"account.mutual": "Saling ikuti",
|
||||
"account.no_bio": "Tidak ada deskripsi yang diberikan.",
|
||||
"account.open_original_page": "Buka halaman asli",
|
||||
"account.posts": "Kiriman",
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
"account.copy": "Copiar ligament al profil",
|
||||
"account.direct": "Privatmen mentionar @{name}",
|
||||
"account.disable_notifications": "Cessa notificar me quande @{name} posta",
|
||||
"account.domain_blocked": "Dominia bloccat",
|
||||
"account.edit_profile": "Redacter profil",
|
||||
"account.enable_notifications": "Notificar me quande @{name} posta",
|
||||
"account.endorse": "Recomandar sur profil",
|
||||
|
@ -48,7 +47,6 @@
|
|||
"account.mute_notifications_short": "Silentiar notificationes",
|
||||
"account.mute_short": "Silentiar",
|
||||
"account.muted": "Silentiat",
|
||||
"account.mutual": "Reciproc",
|
||||
"account.no_bio": "Null descrition providet.",
|
||||
"account.open_original_page": "Aperter li págine original",
|
||||
"account.posts": "Postas",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Kopiez ligilo al profilo",
|
||||
"account.direct": "Private mencionez @{name}",
|
||||
"account.disable_notifications": "Cesez avizar me kande @{name} postas",
|
||||
"account.domain_blocked": "Domain hidden",
|
||||
"account.edit_profile": "Redaktar profilo",
|
||||
"account.enable_notifications": "Avizez me kande @{name} postas",
|
||||
"account.endorse": "Traito di profilo",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Silencigez avizi",
|
||||
"account.mute_short": "Silencigez",
|
||||
"account.muted": "Silencigata",
|
||||
"account.mutual": "Mutuala",
|
||||
"account.no_bio": "Deskriptajo ne provizesis.",
|
||||
"account.open_original_page": "Apertez originala pagino",
|
||||
"account.posts": "Mesaji",
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "Útiloka lénið {domain}",
|
||||
"account.block_short": "Útiloka",
|
||||
"account.blocked": "Útilokaður",
|
||||
"account.blocking": "Útilokun",
|
||||
"account.cancel_follow_request": "Taka fylgjendabeiðni til baka",
|
||||
"account.copy": "Afrita tengil í notandasnið",
|
||||
"account.direct": "Einkaspjall við @{name}",
|
||||
"account.disable_notifications": "Hætta að láta mig vita þegar @{name} sendir inn",
|
||||
"account.domain_blocked": "Lén útilokað",
|
||||
"account.domain_blocking": "Útiloka lén",
|
||||
"account.edit_profile": "Breyta notandasniði",
|
||||
"account.enable_notifications": "Láta mig vita þegar @{name} sendir inn",
|
||||
"account.endorse": "Birta á notandasniði",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Fylgist með",
|
||||
"account.following_counter": "{count, plural, one {Fylgist með: {counter}} other {Fylgist með: {counter}}}",
|
||||
"account.follows.empty": "Þessi notandi fylgist ennþá ekki með neinum.",
|
||||
"account.follows_you": "Fylgir þér",
|
||||
"account.go_to_profile": "Fara í notandasnið",
|
||||
"account.hide_reblogs": "Fela endurbirtingar fyrir @{name}",
|
||||
"account.in_memoriam": "Minning.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Þagga í tilkynningum",
|
||||
"account.mute_short": "Þagga niður",
|
||||
"account.muted": "Þaggaður",
|
||||
"account.mutual": "Sameiginlegir",
|
||||
"account.muting": "Þöggun",
|
||||
"account.mutual": "Þið fylgist með hvor öðrum",
|
||||
"account.no_bio": "Engri lýsingu útvegað.",
|
||||
"account.open_original_page": "Opna upprunalega síðu",
|
||||
"account.posts": "Færslur",
|
||||
"account.posts_with_replies": "Færslur og svör",
|
||||
"account.remove_from_followers": "Fjarlægja {name} úr fylgjendum",
|
||||
"account.report": "Kæra @{name}",
|
||||
"account.requested": "Bíður eftir samþykki. Smelltu til að hætta við beiðni um að fylgjast með",
|
||||
"account.requested_follow": "{name} hefur beðið um að fylgjast með þér",
|
||||
"account.requests_to_follow_you": "Bað um að fylgjast með þér",
|
||||
"account.share": "Deila notandasniði fyrir @{name}",
|
||||
"account.show_reblogs": "Sýna endurbirtingar frá @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} færsla} other {{counter} færslur}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Eyða og endurvinna drög",
|
||||
"confirmations.redraft.message": "Ertu viss um að þú viljir eyða þessari færslu og enduvinna drögin? Eftirlæti og endurbirtingar munu glatast og svör við upprunalegu færslunni munu verða munaðarlaus.",
|
||||
"confirmations.redraft.title": "Eyða og byrja ný drög að færslu?",
|
||||
"confirmations.remove_from_followers.confirm": "Fjarlægja fylgjanda",
|
||||
"confirmations.remove_from_followers.message": "{name} mun hætta að fylgjast með þér. Ertu viss um að þú viljir halda áfram?",
|
||||
"confirmations.remove_from_followers.title": "Fjarlægja fylgjanda?",
|
||||
"confirmations.reply.confirm": "Svara",
|
||||
"confirmations.reply.message": "Ef þú svarar núna verður skrifað yfir skilaboðin sem þú ert að semja núna. Ertu viss um að þú viljir halda áfram?",
|
||||
"confirmations.reply.title": "Skrifa yfir færslu?",
|
||||
|
@ -296,7 +304,9 @@
|
|||
"emoji_button.search_results": "Leitarniðurstöður",
|
||||
"emoji_button.symbols": "Tákn",
|
||||
"emoji_button.travel": "Ferðalög og staðir",
|
||||
"empty_column.account_featured": "Þessi listi er tómur",
|
||||
"empty_column.account_featured.me": "Þú hefur enn ekki sett neitt sem áberandi. Vissirðu að þú getur gefið meira vægi á notandasniðinu þínu ýmsum færslum frá þér, myllumerkjum sem þú notar oft og jafnvel aðgöngum vina þinna?",
|
||||
"empty_column.account_featured.other": "{acct} hefur enn ekki sett neitt sem áberandi. Vissirðu að þú getur gefið meira vægi á notandasniðinu þínu ýmsum færslum frá þér, myllumerkjum sem þú notar oft og jafnvel aðgöngum vina þinna?",
|
||||
"empty_column.account_featured_other.unknown": "Þessi notandi hefur enn ekki sett neitt sem áberandi.",
|
||||
"empty_column.account_hides_collections": "Notandinn hefur valið að gera ekki tiltækar þessar upplýsingar",
|
||||
"empty_column.account_suspended": "Notandaaðgangur í frysti",
|
||||
"empty_column.account_timeline": "Engar færslur hér!",
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "Blocca dominio {domain}",
|
||||
"account.block_short": "Blocca",
|
||||
"account.blocked": "Bloccato",
|
||||
"account.blocking": "Account bloccato",
|
||||
"account.cancel_follow_request": "Annulla la richiesta di seguire",
|
||||
"account.copy": "Copia link del profilo",
|
||||
"account.direct": "Menziona privatamente @{name}",
|
||||
"account.disable_notifications": "Smetti di avvisarmi quando @{name} pubblica un post",
|
||||
"account.domain_blocked": "Dominio bloccato",
|
||||
"account.domain_blocking": "Account di un dominio bloccato",
|
||||
"account.edit_profile": "Modifica profilo",
|
||||
"account.enable_notifications": "Avvisami quando @{name} pubblica un post",
|
||||
"account.endorse": "In evidenza sul profilo",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Seguiti",
|
||||
"account.following_counter": "{count, plural, one {{counter} segui} other {{counter} seguiti}}",
|
||||
"account.follows.empty": "Questo utente non segue ancora nessuno.",
|
||||
"account.follows_you": "Ti segue",
|
||||
"account.go_to_profile": "Vai al profilo",
|
||||
"account.hide_reblogs": "Nascondi condivisioni da @{name}",
|
||||
"account.in_memoriam": "In memoria.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Silenzia notifiche",
|
||||
"account.mute_short": "Silenzia",
|
||||
"account.muted": "Mutato",
|
||||
"account.mutual": "Reciproco",
|
||||
"account.muting": "Account silenziato",
|
||||
"account.mutual": "Vi seguite a vicenda",
|
||||
"account.no_bio": "Nessuna descrizione fornita.",
|
||||
"account.open_original_page": "Apri la pagina originale",
|
||||
"account.posts": "Post",
|
||||
"account.posts_with_replies": "Post e risposte",
|
||||
"account.remove_from_followers": "Rimuovi {name} dai seguaci",
|
||||
"account.report": "Segnala @{name}",
|
||||
"account.requested": "In attesa d'approvazione. Clicca per annullare la richiesta di seguire",
|
||||
"account.requested_follow": "{name} ha richiesto di seguirti",
|
||||
"account.requests_to_follow_you": "Richieste di seguirti",
|
||||
"account.share": "Condividi il profilo di @{name}",
|
||||
"account.show_reblogs": "Mostra condivisioni da @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} post} other {{counter} post}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Elimina e riscrivi",
|
||||
"confirmations.redraft.message": "Sei sicuro di voler eliminare questo post e riscriverlo? I preferiti e i boost andranno persi e le risposte al post originale non saranno più collegate.",
|
||||
"confirmations.redraft.title": "Eliminare e riformulare il post?",
|
||||
"confirmations.remove_from_followers.confirm": "Rimuovi il seguace",
|
||||
"confirmations.remove_from_followers.message": "{name} smetterà di seguirti. Si è sicuri di voler procedere?",
|
||||
"confirmations.remove_from_followers.title": "Rimuovi il seguace?",
|
||||
"confirmations.reply.confirm": "Rispondi",
|
||||
"confirmations.reply.message": "Rispondere ora sovrascriverà il messaggio che stai correntemente componendo. Sei sicuro di voler procedere?",
|
||||
"confirmations.reply.title": "Sovrascrivere il post?",
|
||||
|
@ -296,7 +304,9 @@
|
|||
"emoji_button.search_results": "Risultati della ricerca",
|
||||
"emoji_button.symbols": "Simboli",
|
||||
"emoji_button.travel": "Viaggi & Luoghi",
|
||||
"empty_column.account_featured": "Questa lista è vuota",
|
||||
"empty_column.account_featured.me": "Non hai ancora messo nulla in evidenza. Sapevi che puoi mettere in evidenza i tuoi post, gli hashtag che usi più spesso e persino gli account dei tuoi amici sul tuo profilo?",
|
||||
"empty_column.account_featured.other": "{acct} non ha ancora messo nulla in evidenza. Sapevi che puoi mettere in evidenza i tuoi post, gli hashtag che usi più spesso e persino gli account dei tuoi amici sul tuo profilo?",
|
||||
"empty_column.account_featured_other.unknown": "Questo account non ha ancora pubblicato nulla.",
|
||||
"empty_column.account_hides_collections": "Questo utente ha scelto di non rendere disponibili queste informazioni",
|
||||
"empty_column.account_suspended": "Profilo sospeso",
|
||||
"empty_column.account_timeline": "Nessun post qui!",
|
||||
|
@ -381,6 +391,8 @@
|
|||
"generic.saved": "Salvato",
|
||||
"getting_started.heading": "Per iniziare",
|
||||
"hashtag.admin_moderation": "Apri l'interfaccia di moderazione per #{name}",
|
||||
"hashtag.browse": "Sfoglia i post con #{hashtag}",
|
||||
"hashtag.browse_from_account": "Sfoglia i post da @{name} con #{hashtag}",
|
||||
"hashtag.column_header.tag_mode.all": "e {additional}",
|
||||
"hashtag.column_header.tag_mode.any": "o {additional}",
|
||||
"hashtag.column_header.tag_mode.none": "senza {additional}",
|
||||
|
@ -394,6 +406,7 @@
|
|||
"hashtag.counter_by_uses": "{count, plural, one {{counter} post} other {{counter} post}}",
|
||||
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} post} other {{counter} post}} oggi",
|
||||
"hashtag.follow": "Segui l'hashtag",
|
||||
"hashtag.mute": "Silenzia #{hashtag}",
|
||||
"hashtag.unfollow": "Smetti di seguire l'hashtag",
|
||||
"hashtags.and_other": "…e {count, plural, other {# in più}}",
|
||||
"hints.profiles.followers_may_be_missing": "I seguaci per questo profilo potrebbero essere mancanti.",
|
||||
|
|
|
@ -30,14 +30,18 @@
|
|||
"account.block_domain": "{domain}全体をブロック",
|
||||
"account.block_short": "ブロック",
|
||||
"account.blocked": "ブロック済み",
|
||||
"account.blocking": "ブロック中",
|
||||
"account.cancel_follow_request": "フォローリクエストの取り消し",
|
||||
"account.copy": "プロフィールへのリンクをコピー",
|
||||
"account.direct": "@{name}さんに非公開でメンション",
|
||||
"account.disable_notifications": "@{name}さんの投稿時の通知を停止",
|
||||
"account.domain_blocked": "ドメインブロック中",
|
||||
"account.domain_blocking": "ブロックしているドメイン",
|
||||
"account.edit_profile": "プロフィール編集",
|
||||
"account.enable_notifications": "@{name}さんの投稿時に通知",
|
||||
"account.endorse": "プロフィールで紹介する",
|
||||
"account.featured": "注目",
|
||||
"account.featured.hashtags": "ハッシュタグ",
|
||||
"account.featured.posts": "投稿",
|
||||
"account.featured_tags.last_status_at": "最終投稿 {date}",
|
||||
"account.featured_tags.last_status_never": "投稿がありません",
|
||||
"account.follow": "フォロー",
|
||||
|
@ -48,6 +52,7 @@
|
|||
"account.following": "フォロー中",
|
||||
"account.following_counter": "{count, plural, other {{counter} フォロー}}",
|
||||
"account.follows.empty": "まだ誰もフォローしていません。",
|
||||
"account.follows_you": "フォローされています",
|
||||
"account.go_to_profile": "プロフィールページへ",
|
||||
"account.hide_reblogs": "@{name}さんからのブーストを非表示",
|
||||
"account.in_memoriam": "故人を偲んで。",
|
||||
|
@ -62,19 +67,23 @@
|
|||
"account.mute_notifications_short": "通知をオフにする",
|
||||
"account.mute_short": "ミュート",
|
||||
"account.muted": "ミュート済み",
|
||||
"account.muting": "ミュート中",
|
||||
"account.mutual": "相互フォロー中",
|
||||
"account.no_bio": "説明が提供されていません。",
|
||||
"account.open_original_page": "元のページを開く",
|
||||
"account.posts": "投稿",
|
||||
"account.posts_with_replies": "投稿と返信",
|
||||
"account.remove_from_followers": "{name}さんをフォロワーから削除",
|
||||
"account.report": "@{name}さんを通報",
|
||||
"account.requested": "フォロー承認待ちです。クリックしてキャンセル",
|
||||
"account.requested_follow": "{name}さんがあなたにフォローリクエストしました",
|
||||
"account.requests_to_follow_you": "フォローリクエスト",
|
||||
"account.share": "@{name}さんのプロフィールを共有する",
|
||||
"account.show_reblogs": "@{name}さんからのブーストを表示",
|
||||
"account.statuses_counter": "{count, plural, other {{counter} 投稿}}",
|
||||
"account.unblock": "@{name}さんのブロックを解除",
|
||||
"account.unblock_domain": "{domain}のブロックを解除",
|
||||
"account.unblock_domain_short": "ブロックを解除",
|
||||
"account.unblock_short": "ブロック解除",
|
||||
"account.unendorse": "プロフィールから外す",
|
||||
"account.unfollow": "フォロー解除",
|
||||
|
@ -196,8 +205,8 @@
|
|||
"bookmark_categories.status.remove": "分類から削除",
|
||||
"bookmark_categories.subheading": "あなたの分類",
|
||||
"block_modal.remote_users_caveat": "このサーバーはあなたのブロックの意思を尊重するように {domain} へ通知します。しかし、サーバーによってはブロック機能の扱いが異なる場合もありえるため、相手のサーバー側で求める通りの処理が行われる確証はありません。また、公開投稿はユーザーがログアウト状態であれば閲覧できる可能性があります。",
|
||||
"block_modal.show_less": "注意事項を閉じる",
|
||||
"block_modal.show_more": "注意事項",
|
||||
"block_modal.show_less": "表示を減らす",
|
||||
"block_modal.show_more": "続きを表示",
|
||||
"block_modal.they_cant_mention": "相手はあなたへの返信やフォローができなくなります。",
|
||||
"block_modal.they_cant_see_posts": "相手はあなたの投稿を閲覧できなくなり、あなたも相手の投稿を閲覧できなくなります。",
|
||||
"block_modal.they_will_know": "ブロックは相手からわかります。",
|
||||
|
@ -344,6 +353,9 @@
|
|||
"confirmations.redraft.confirm": "削除して下書きに戻す",
|
||||
"confirmations.redraft.message": "投稿を削除して下書きに戻します。この投稿へのお気に入り登録やブーストは失われ、返信は孤立することになります。よろしいですか?",
|
||||
"confirmations.redraft.title": "投稿の削除と下書きの再作成",
|
||||
"confirmations.remove_from_followers.confirm": "フォロワーを削除",
|
||||
"confirmations.remove_from_followers.message": "{name}さんはあなたをフォローしなくなります。本当によろしいですか?",
|
||||
"confirmations.remove_from_followers.title": "フォロワーを削除しますか?",
|
||||
"confirmations.reply.confirm": "返信",
|
||||
"confirmations.reply.message": "今返信すると現在作成中のメッセージが上書きされます。本当に実行しますか?",
|
||||
"confirmations.reply.title": "作成中の内容を上書きしようとしています",
|
||||
|
@ -411,6 +423,9 @@
|
|||
"emoji_button.search_results": "検索結果",
|
||||
"emoji_button.symbols": "記号",
|
||||
"emoji_button.travel": "旅行と場所",
|
||||
"empty_column.account_featured.me": "まだ何もフィーチャーしていません。自分の投稿や最もよく使うハッシュタグ、更には友達のアカウントまでプロフィール上でフィーチャーできると知っていましたか?",
|
||||
"empty_column.account_featured.other": "{acct}ではまだ何もフィーチャーされていません。自分の投稿や最もよく使うハッシュタグ、更には友達のアカウントまでプロファイル上でフィーチャーできると知っていましたか?",
|
||||
"empty_column.account_featured_other.unknown": "このアカウントにはまだ何も投稿されていません。",
|
||||
"empty_column.account_hides_collections": "このユーザーはこの情報を開示しないことにしています。",
|
||||
"empty_column.account_suspended": "アカウントは停止されています",
|
||||
"empty_column.account_timeline": "投稿がありません!",
|
||||
|
@ -502,6 +517,8 @@
|
|||
"generic.saved": "保存しました",
|
||||
"getting_started.heading": "スタート",
|
||||
"hashtag.admin_moderation": "#{name}のモデレーション画面を開く",
|
||||
"hashtag.browse": "#{hashtag}が付いた投稿を閲覧する",
|
||||
"hashtag.browse_from_account": "#{hashtag}が付いた{name}の投稿を閲覧する",
|
||||
"hashtag.column_header.tag_mode.all": "と{additional}",
|
||||
"hashtag.column_header.tag_mode.any": "か{additional}",
|
||||
"hashtag.column_header.tag_mode.none": "({additional} を除く)",
|
||||
|
@ -515,6 +532,7 @@
|
|||
"hashtag.counter_by_uses": "{count, plural, other {{counter}件}}",
|
||||
"hashtag.counter_by_uses_today": "本日{count, plural, other {#件}}",
|
||||
"hashtag.follow": "ハッシュタグをフォローする",
|
||||
"hashtag.mute": "#{hashtag}をミュート",
|
||||
"hashtag.unfollow": "ハッシュタグのフォローを解除",
|
||||
"hashtags.and_other": "ほか{count, plural, other {#個}}",
|
||||
"hints.profiles.followers_may_be_missing": "フォロワーの一覧は不正確な場合があります。",
|
||||
|
@ -1065,7 +1083,9 @@
|
|||
"subscribed_languages.target": "{target}さんの購読言語を変更します",
|
||||
"tabs_bar.home": "ホーム",
|
||||
"tabs_bar.notifications": "通知",
|
||||
"terms_of_service.effective_as_of": "{date}より有効",
|
||||
"terms_of_service.title": "サービス利用規約",
|
||||
"terms_of_service.upcoming_changes_on": "{date}から適用される変更",
|
||||
"time_remaining.days": "残り{number}日",
|
||||
"time_remaining.hours": "残り{number}時間",
|
||||
"time_remaining.minutes": "残り{number}分",
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
"account.block_domain": "დაიმალოს ყველაფერი დომენიდან {domain}",
|
||||
"account.blocked": "დაბლოკილია",
|
||||
"account.cancel_follow_request": "Withdraw follow request",
|
||||
"account.domain_blocked": "დომენი დამალულია",
|
||||
"account.edit_profile": "პროფილის ცვლილება",
|
||||
"account.endorse": "გამორჩევა პროფილზე",
|
||||
"account.featured_tags.last_status_never": "პოსტების გარეშე",
|
||||
|
|
|
@ -21,10 +21,11 @@
|
|||
"account.copy": "Nɣel assaɣ ɣer umaɣnu",
|
||||
"account.direct": "Bder-d @{name} weḥd-s",
|
||||
"account.disable_notifications": "Ḥbes ur iyi-d-ttazen ara ilɣa mi ara d-isuffeɣ @{name}",
|
||||
"account.domain_blocked": "Taɣult yeffren",
|
||||
"account.edit_profile": "Ẓreg amaɣnu",
|
||||
"account.enable_notifications": "Azen-iyi-d ilɣa mi ara d-isuffeɣ @{name}",
|
||||
"account.endorse": "Welleh fell-as deg umaɣnu-inek",
|
||||
"account.featured.hashtags": "Ihacṭagen",
|
||||
"account.featured.posts": "Tisuffaɣ",
|
||||
"account.featured_tags.last_status_at": "Tasuffeɣt taneggarut ass n {date}",
|
||||
"account.featured_tags.last_status_never": "Ulac tisuffaɣ",
|
||||
"account.follow": "Ḍfer",
|
||||
|
@ -48,7 +49,6 @@
|
|||
"account.mute_notifications_short": "Susem ilɣa",
|
||||
"account.mute_short": "Sgugem",
|
||||
"account.muted": "Yettwasgugem",
|
||||
"account.mutual": "Temṭafarem",
|
||||
"account.no_bio": "Ulac aglam i d-yettunefken.",
|
||||
"account.open_original_page": "Ldi asebter anasli",
|
||||
"account.posts": "Tisuffaɣ",
|
||||
|
@ -278,6 +278,8 @@
|
|||
"footer.terms_of_service": "Tiwtilin n useqdec",
|
||||
"generic.saved": "Yettwasekles",
|
||||
"getting_started.heading": "Bdu",
|
||||
"hashtag.browse": "Snirem tisuffaɣ yesɛan #{hashtag}",
|
||||
"hashtag.browse_from_account": "Snirem tisuffaɣ sɣur @{name} yesɛan #{hashtag}",
|
||||
"hashtag.column_header.tag_mode.all": "d {additional}",
|
||||
"hashtag.column_header.tag_mode.any": "neɣ {additional}",
|
||||
"hashtag.column_header.tag_mode.none": "war {additional}",
|
||||
|
@ -291,6 +293,7 @@
|
|||
"hashtag.counter_by_uses": "{count, plural, one {{counter} n tsuffeɣt} other {{counter} n tsuffaɣ}}",
|
||||
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} n tsuffeɣt} other {{counter} n tsuffaɣ}} ass-a",
|
||||
"hashtag.follow": "Ḍfeṛ ahacṭag",
|
||||
"hashtag.mute": "Sgugem #{hashtag}",
|
||||
"hashtags.and_other": "…d {count, plural, one {}other {# nniḍen}}",
|
||||
"hints.threads.replies_may_be_missing": "Tiririyin d-yusan deg iqeddacen nniḍen, yezmer ur d-ddant ara.",
|
||||
"hints.threads.see_more": "Wali ugar n tririt deg {domain}",
|
||||
|
@ -639,6 +642,7 @@
|
|||
"status.title.with_attachments": "{user} posted {attachmentCount, plural, one {an attachment} other {# attachments}}",
|
||||
"status.translate": "Suqel",
|
||||
"status.translated_from_with": "Yettwasuqel seg {lang} s {provider}",
|
||||
"status.uncached_media_warning": "Ulac taskant",
|
||||
"status.unmute_conversation": "Kkes asgugem n udiwenni",
|
||||
"status.unpin": "Kkes asenteḍ seg umaɣnu",
|
||||
"subscribed_languages.save": "Sekles ibeddilen",
|
||||
|
@ -670,6 +674,8 @@
|
|||
"video.expand": "Semɣeṛ tavidyut",
|
||||
"video.fullscreen": "Agdil aččuran",
|
||||
"video.hide": "Ffer tabidyutt",
|
||||
"video.mute": "Sgugem",
|
||||
"video.pause": "Sgunfu",
|
||||
"video.play": "Seddu"
|
||||
"video.play": "Seddu",
|
||||
"video.unmute": "Kkes asgugem"
|
||||
}
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
"account.blocked": "Бұғатталған",
|
||||
"account.cancel_follow_request": "Withdraw follow request",
|
||||
"account.disable_notifications": "@{name} постары туралы ескертпеу",
|
||||
"account.domain_blocked": "Домен бұғатталған",
|
||||
"account.edit_profile": "Профильді өңдеу",
|
||||
"account.enable_notifications": "@{name} постары туралы ескерту",
|
||||
"account.endorse": "Профильде ұсыну",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"account.badges.group": "ಗುಂಪು",
|
||||
"account.block_domain": "Hide everything from {domain}",
|
||||
"account.cancel_follow_request": "Withdraw follow request",
|
||||
"account.domain_blocked": "Domain hidden",
|
||||
"account.follow": "ಹಿಂಬಾಲಿಸಿ",
|
||||
"account.followers": "ಹಿಂಬಾಲಕರು",
|
||||
"account.posts": "ಟೂಟ್ಗಳು",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "프로필 링크 복사",
|
||||
"account.direct": "@{name} 님에게 개인적으로 멘션",
|
||||
"account.disable_notifications": "@{name} 의 게시물 알림 끄기",
|
||||
"account.domain_blocked": "도메인 차단함",
|
||||
"account.edit_profile": "프로필 편집",
|
||||
"account.enable_notifications": "@{name} 의 게시물 알림 켜기",
|
||||
"account.endorse": "프로필에 추천하기",
|
||||
|
@ -54,7 +53,6 @@
|
|||
"account.mute_notifications_short": "알림 뮤트",
|
||||
"account.mute_short": "뮤트",
|
||||
"account.muted": "뮤트됨",
|
||||
"account.mutual": "맞팔로우 중",
|
||||
"account.no_bio": "제공된 설명이 없습니다.",
|
||||
"account.open_original_page": "원본 페이지 열기",
|
||||
"account.posts": "게시물",
|
||||
|
@ -296,7 +294,6 @@
|
|||
"emoji_button.search_results": "검색 결과",
|
||||
"emoji_button.symbols": "기호",
|
||||
"emoji_button.travel": "여행과 장소",
|
||||
"empty_column.account_featured": "목록이 비어있습니다",
|
||||
"empty_column.account_hides_collections": "이 사용자는 이 정보를 사용할 수 없도록 설정했습니다",
|
||||
"empty_column.account_suspended": "계정 정지됨",
|
||||
"empty_column.account_timeline": "이곳에는 게시물이 없습니다!",
|
||||
|
|
|
@ -23,10 +23,10 @@
|
|||
"account.copy": "Girêdanê bo profîlê jê bigire",
|
||||
"account.direct": "Bi taybetî qale @{name} bike",
|
||||
"account.disable_notifications": "Êdî min agahdar neke gava @{name} diweşîne",
|
||||
"account.domain_blocked": "Navper hate astengkirin",
|
||||
"account.edit_profile": "Profîlê serrast bike",
|
||||
"account.enable_notifications": "Min agahdar bike gava @{name} diweşîne",
|
||||
"account.endorse": "Taybetiyên li ser profîl",
|
||||
"account.featured.posts": "Şandî",
|
||||
"account.featured_tags.last_status_at": "Şandiya dawî di {date} de",
|
||||
"account.featured_tags.last_status_never": "Şandî tune ne",
|
||||
"account.follow": "Bişopîne",
|
||||
|
@ -51,7 +51,8 @@
|
|||
"account.mute_notifications_short": "Agahdariyan bêdeng bike",
|
||||
"account.mute_short": "Bêdeng bike",
|
||||
"account.muted": "Bêdengkirî",
|
||||
"account.mutual": "Hevpar",
|
||||
"account.muting": "Bêdengkirin",
|
||||
"account.mutual": "Hûn hevdû dişopînin",
|
||||
"account.no_bio": "Ti danasîn nehatiye tevlîkirin.",
|
||||
"account.open_original_page": "Rûpela resen veke",
|
||||
"account.posts": "Şandî",
|
||||
|
@ -64,6 +65,7 @@
|
|||
"account.statuses_counter": "{count, plural,one {{counter} şandî}other {{counter} şandî}}",
|
||||
"account.unblock": "Astengê li ser @{name} rake",
|
||||
"account.unblock_domain": "Astengê li ser navperê {domain} rake",
|
||||
"account.unblock_domain_short": "Astengiyê rake",
|
||||
"account.unblock_short": "Astengiyê rake",
|
||||
"account.unendorse": "Li ser profîl nîşan neke",
|
||||
"account.unfollow": "Neşopîne",
|
||||
|
@ -86,6 +88,7 @@
|
|||
"announcement.announcement": "Daxuyanî",
|
||||
"annual_report.summary.followers.followers": "şopîner",
|
||||
"annual_report.summary.followers.total": "{count} tevahî",
|
||||
"annual_report.summary.most_used_hashtag.none": "Ne yek",
|
||||
"annual_report.summary.new_posts.new_posts": "şandiyên nû",
|
||||
"attachments_list.unprocessed": "(bêpêvajo)",
|
||||
"audio.hide": "Dengê veşêre",
|
||||
|
@ -113,9 +116,10 @@
|
|||
"column.blocks": "Bikarhênerên astengkirî",
|
||||
"column.bookmarks": "Şûnpel",
|
||||
"column.community": "Demnameya herêmî",
|
||||
"column.direct": "Qalkirinên taybet",
|
||||
"column.direct": "Payemên taybet",
|
||||
"column.directory": "Li profîlan bigere",
|
||||
"column.domain_blocks": "Navperên astengkirî",
|
||||
"column.firehose": "Rojevên zindî",
|
||||
"column.follow_requests": "Daxwazên şopandinê",
|
||||
"column.home": "Rûpela sereke",
|
||||
"column.lists": "Lîste",
|
||||
|
@ -130,6 +134,7 @@
|
|||
"column_header.pin": "Bi derzî bike",
|
||||
"column_header.show_settings": "Sazkariyan nîşan bide",
|
||||
"column_header.unpin": "Bi derzî neke",
|
||||
"column_search.cancel": "Têk bibe",
|
||||
"column_subheading.settings": "Sazkarî",
|
||||
"community.column_settings.local_only": "Tenê herêmî",
|
||||
"community.column_settings.media_only": "Tenê media",
|
||||
|
@ -145,13 +150,18 @@
|
|||
"compose_form.poll.duration": "Dema rapirsî yê",
|
||||
"compose_form.poll.switch_to_multiple": "Rapirsî yê biguherînin da ku destûr bidin vebijarkên pirjimar",
|
||||
"compose_form.poll.switch_to_single": "Rapirsîyê biguherîne da ku mafê bidî tenê vebijêrkek",
|
||||
"compose_form.poll.type": "Şêwaz",
|
||||
"compose_form.publish": "Şandî",
|
||||
"compose_form.publish_form": "Biweşîne",
|
||||
"compose_form.reply": "Bersivê bide",
|
||||
"compose_form.save_changes": "Rojane bike",
|
||||
"compose_form.spoiler.marked": "Hişyariya naverokê rake",
|
||||
"compose_form.spoiler.unmarked": "Hişyariya naverokê tevlî bike",
|
||||
"confirmation_modal.cancel": "Dev jê berde",
|
||||
"confirmations.block.confirm": "Asteng bike",
|
||||
"confirmations.delete.confirm": "Jê bibe",
|
||||
"confirmations.delete.message": "Ma tu dixwazî vê şandiyê jê bibî?",
|
||||
"confirmations.delete.title": "Şandiyê jê bibe?",
|
||||
"confirmations.delete_list.confirm": "Jê bibe",
|
||||
"confirmations.delete_list.message": "Tu ji dil dixwazî vê lîsteyê bi awayekî mayînde jê bibî?",
|
||||
"confirmations.discard_edit_media.confirm": "Biavêje",
|
||||
|
@ -241,14 +251,18 @@
|
|||
"filter_modal.select_filter.subtitle": "Beşeke nû ya heyî bi kar bîne an jî yekî nû biafirîne",
|
||||
"filter_modal.select_filter.title": "Vê şandiyê parzûn bike",
|
||||
"filter_modal.title.status": "Şandiyekê parzûn bike",
|
||||
"firehose.all": "Tevahî",
|
||||
"firehose.local": "Ev rajekar",
|
||||
"firehose.remote": "Rajekarên din",
|
||||
"follow_request.authorize": "Mafê bide",
|
||||
"follow_request.reject": "Nepejirîne",
|
||||
"follow_requests.unlocked_explanation": "Tevlî ku ajimêra te ne kilît kiriye, karmendên {domain} digotin qey tu dixwazî ku pêşdîtina daxwazên şopandinê bi destan bike.",
|
||||
"follow_suggestions.view_all": "Tevahiyan nîşan bide",
|
||||
"footer.about": "Derbar",
|
||||
"footer.directory": "Pelrêça profîlan",
|
||||
"footer.get_app": "Bernamokê bistîne",
|
||||
"footer.get_app": "Bernameyê bistîne",
|
||||
"footer.keyboard_shortcuts": "Kurteriyên klavyeyê",
|
||||
"footer.privacy_policy": "Peymana nepeniyê",
|
||||
"footer.privacy_policy": "Politîka taybetiyê",
|
||||
"footer.source_code": "Koda çavkanî nîşan bide",
|
||||
"footer.status": "Rewş",
|
||||
"generic.saved": "Tomarkirî",
|
||||
|
@ -264,6 +278,7 @@
|
|||
"hashtag.column_settings.tag_toggle": "Ji bo vê stûnê hin pêvekan tevlî bike",
|
||||
"hashtag.follow": "Hashtagê bişopîne",
|
||||
"hashtag.unfollow": "Hashtagê neşopîne",
|
||||
"hints.threads.replies_may_be_missing": "Beriv ji rajekarên din dibe ku wendayî bin.",
|
||||
"home.column_settings.show_reblogs": "Bilindkirinan nîşan bike",
|
||||
"home.column_settings.show_replies": "Bersivan nîşan bide",
|
||||
"home.hide_announcements": "Reklaman veşêre",
|
||||
|
@ -282,7 +297,7 @@
|
|||
"keyboard_shortcuts.column": "Stûna balkişandinê",
|
||||
"keyboard_shortcuts.compose": "Bal bikşîne cîhê nivîsê/textarea",
|
||||
"keyboard_shortcuts.description": "Danasîn",
|
||||
"keyboard_shortcuts.direct": "ji bo vekirina stûna qalkirinên taybet",
|
||||
"keyboard_shortcuts.direct": "ji bo vekirina stûna payemên taybet",
|
||||
"keyboard_shortcuts.down": "Di lîsteyê de dakêşe jêr",
|
||||
"keyboard_shortcuts.enter": "Şandiyê veke",
|
||||
"keyboard_shortcuts.federated": "Demnameya giştî veke",
|
||||
|
@ -319,13 +334,14 @@
|
|||
"lists.replies_policy.list": "Endamên lîsteyê",
|
||||
"lists.replies_policy.none": "Ne yek",
|
||||
"load_pending": "{count, plural, one {# hêmaneke nû} other {#hêmaneke nû}}",
|
||||
"media_gallery.hide": "Veşêre",
|
||||
"moved_to_account_banner.text": "Ajimêrê te {disabledAccount} niha neçalak e ji ber ku te bar kir bo {movedToAccount}.",
|
||||
"navigation_bar.about": "Derbar",
|
||||
"navigation_bar.blocks": "Bikarhênerên astengkirî",
|
||||
"navigation_bar.bookmarks": "Şûnpel",
|
||||
"navigation_bar.community_timeline": "Demnameya herêmî",
|
||||
"navigation_bar.compose": "Şandiyeke nû binivsîne",
|
||||
"navigation_bar.direct": "Qalkirinên taybet",
|
||||
"navigation_bar.direct": "Payemên taybet",
|
||||
"navigation_bar.discover": "Vekolê",
|
||||
"navigation_bar.domain_blocks": "Navperên astengkirî",
|
||||
"navigation_bar.explore": "Vekole",
|
||||
|
@ -356,9 +372,10 @@
|
|||
"notifications.column_settings.admin.report": "Ragihandinên nû:",
|
||||
"notifications.column_settings.admin.sign_up": "Tomarkirinên nû:",
|
||||
"notifications.column_settings.alert": "Agahdariyên sermaseyê",
|
||||
"notifications.column_settings.filter_bar.advanced": "Hemû beşan nîşan bide",
|
||||
"notifications.column_settings.follow": "Şopînerên nû:",
|
||||
"notifications.column_settings.follow_request": "Daxwazên şopandinê nû:",
|
||||
"notifications.column_settings.mention": "Qalkirin:",
|
||||
"notifications.column_settings.mention": "Gotin:",
|
||||
"notifications.column_settings.poll": "Encamên rapirsiyê:",
|
||||
"notifications.column_settings.push": "Agahdarîyên yekser",
|
||||
"notifications.column_settings.reblog": "Bilindkirî:",
|
||||
|
@ -371,7 +388,7 @@
|
|||
"notifications.filter.all": "Hemû",
|
||||
"notifications.filter.boosts": "Bilindkirî",
|
||||
"notifications.filter.follows": "Dişopîne",
|
||||
"notifications.filter.mentions": "Qalkirin",
|
||||
"notifications.filter.mentions": "Gotin",
|
||||
"notifications.filter.polls": "Encamên rapirsiyê",
|
||||
"notifications.filter.statuses": "Ji kesên tu dişopînî re rojanekirin",
|
||||
"notifications.grant_permission": "Destûrê bide.",
|
||||
|
@ -393,7 +410,10 @@
|
|||
"poll.votes": "{votes, plural, one {# deng} other {# deng}}",
|
||||
"poll_button.add_poll": "Rapirsîyek zêde bike",
|
||||
"poll_button.remove_poll": "Rapirsî yê rake",
|
||||
"privacy.change": "Nepênîtiya şandiyan biguherîne",
|
||||
"privacy.change": "Taybetiya şandiyê biguherîne",
|
||||
"privacy.direct.short": "Payemên taybet",
|
||||
"privacy.private.long": "Tenê şopînerên te",
|
||||
"privacy.private.short": "Şopîner",
|
||||
"privacy.public.short": "Gelemperî",
|
||||
"privacy_policy.last_updated": "Rojanekirina dawî {date}",
|
||||
"privacy_policy.title": "Politîka taybetiyê",
|
||||
|
@ -468,10 +488,11 @@
|
|||
"search_results.statuses": "Şandî",
|
||||
"server_banner.about_active_users": "Kesên ku di van 30 rojên dawî de vê rajekarê bi kar tînin (Bikarhênerên Çalak ên Mehane)",
|
||||
"server_banner.active_users": "bikarhênerên çalak",
|
||||
"server_banner.administered_by": "Tê bi rêvebirin ji aliyê:",
|
||||
"server_banner.administered_by": "Tê birêvebirin ji aliyê:",
|
||||
"server_banner.server_stats": "Amarên rajekar:",
|
||||
"sign_in_banner.create_account": "Ajimêr biafirîne",
|
||||
"sign_in_banner.sign_in": "Têkeve",
|
||||
"sign_in_banner.sso_redirect": "Têkeve yan tomar bibe",
|
||||
"status.admin_account": "Ji bo @{name} navrûya venihêrtinê veke",
|
||||
"status.admin_domain": "Navrûya bikarhêneriyê ji bo {domain} veke",
|
||||
"status.admin_status": "Vê şandîyê di navrûya venihêrtinê de veke",
|
||||
|
@ -483,7 +504,7 @@
|
|||
"status.delete": "Jê bibe",
|
||||
"status.detailed_status": "Dîtina axaftina berfireh",
|
||||
"status.direct": "Bi taybetî qale @{name} bike",
|
||||
"status.direct_indicator": "Qalkirinê taybet",
|
||||
"status.direct_indicator": "Payemên taybet",
|
||||
"status.edit": "Serrast bike",
|
||||
"status.edited_x_times": "{count, plural, one {{count} car} other {{count} car}} hate serrastkirin",
|
||||
"status.filter": "Vê şandiyê parzûn bike",
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
"account.blocked": "Lettys",
|
||||
"account.cancel_follow_request": "Withdraw follow request",
|
||||
"account.disable_notifications": "Hedhi ow gwarnya pan wra @{name} postya",
|
||||
"account.domain_blocked": "Gorfarth lettys",
|
||||
"account.edit_profile": "Golegi profil",
|
||||
"account.enable_notifications": "Gwra ow gwarnya pan wra @{name} postya",
|
||||
"account.endorse": "Diskwedhes yn profil",
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
"account.block_short": "Imperire",
|
||||
"account.blocked": "Impeditum est",
|
||||
"account.cancel_follow_request": "Petitio sequī retrāhere",
|
||||
"account.domain_blocked": "Dominium impeditum",
|
||||
"account.edit_profile": "Recolere notionem",
|
||||
"account.featured_tags.last_status_never": "Nulla contributa",
|
||||
"account.followers_counter": "{count, plural, one {{counter} sectator} other {{counter} sectatores}}",
|
||||
|
|
|
@ -19,14 +19,17 @@
|
|||
"account.block_domain": "Bloka el domeno {domain}",
|
||||
"account.block_short": "Bloka",
|
||||
"account.blocked": "Blokado",
|
||||
"account.blocking": "Blokando",
|
||||
"account.cancel_follow_request": "Anula solisitud de segir",
|
||||
"account.copy": "Kopia atadijo de profil",
|
||||
"account.direct": "Enmenta a @{name} en privado",
|
||||
"account.disable_notifications": "Desha de avizarme sovre publikasyones de @{name}",
|
||||
"account.domain_blocked": "Domeno blokado",
|
||||
"account.domain_blocking": "Blokando el domeno",
|
||||
"account.edit_profile": "Edita profil",
|
||||
"account.enable_notifications": "Avizame kuando @{name} publike",
|
||||
"account.endorse": "Avalia en profil",
|
||||
"account.featured.hashtags": "Etiketas",
|
||||
"account.featured.posts": "Puvlikasyones",
|
||||
"account.featured_tags.last_status_at": "Ultima publikasyon de {date}",
|
||||
"account.featured_tags.last_status_never": "No ay publikasyones",
|
||||
"account.follow": "Sige",
|
||||
|
@ -37,6 +40,7 @@
|
|||
"account.following": "Sigiendo",
|
||||
"account.following_counter": "{count, plural, other {Sigiendo a {counter}}}",
|
||||
"account.follows.empty": "Este utilizador ainda no sige a dingun.",
|
||||
"account.follows_you": "Te sige",
|
||||
"account.go_to_profile": "Va al profil",
|
||||
"account.hide_reblogs": "Eskonde repartajasyones de @{name}",
|
||||
"account.in_memoriam": "De bendicha memoria.",
|
||||
|
@ -51,7 +55,7 @@
|
|||
"account.mute_notifications_short": "Silensia avizos",
|
||||
"account.mute_short": "Silensia",
|
||||
"account.muted": "Silensiado",
|
||||
"account.mutual": "Mutual",
|
||||
"account.muting": "Silensyando",
|
||||
"account.no_bio": "No ay deskripsion.",
|
||||
"account.open_original_page": "Avre pajina orijnala",
|
||||
"account.posts": "Publikasyones",
|
||||
|
@ -59,6 +63,7 @@
|
|||
"account.report": "Raporta @{name}",
|
||||
"account.requested": "Asperando achetasion. Klika para anular la solisitud de segimiento",
|
||||
"account.requested_follow": "{name} tiene solisitado segirte",
|
||||
"account.requests_to_follow_you": "Solisita segirte",
|
||||
"account.share": "Partaja el profil de @{name}",
|
||||
"account.show_reblogs": "Amostra repartajasyones de @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} publikasyon} other {{counter} publikasyones}}",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Kopijuoti nuorodą į profilį",
|
||||
"account.direct": "Privačiai paminėti @{name}",
|
||||
"account.disable_notifications": "Nustoti man pranešti, kai @{name} paskelbia",
|
||||
"account.domain_blocked": "Užblokuotas serveris",
|
||||
"account.edit_profile": "Redaguoti profilį",
|
||||
"account.enable_notifications": "Pranešti man, kai @{name} paskelbia",
|
||||
"account.endorse": "Rodyti profilyje",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Nutildyti pranešimus",
|
||||
"account.mute_short": "Nutildyti",
|
||||
"account.muted": "Nutildytas",
|
||||
"account.mutual": "Bendri",
|
||||
"account.no_bio": "Nėra pateikto aprašymo.",
|
||||
"account.open_original_page": "Atidaryti originalų puslapį",
|
||||
"account.posts": "Įrašai",
|
||||
|
@ -889,6 +887,8 @@
|
|||
"video.expand": "Išplėsti vaizdo įrašą",
|
||||
"video.fullscreen": "Visas ekranas",
|
||||
"video.hide": "Slėpti vaizdo įrašą",
|
||||
"video.mute": "Išjungti garsą",
|
||||
"video.pause": "Pristabdyti",
|
||||
"video.play": "Leisti"
|
||||
"video.play": "Leisti",
|
||||
"video.skip_backward": "Praleisti atgal"
|
||||
}
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Ievietot saiti uz profilu starpliktuvē",
|
||||
"account.direct": "Pieminēt @{name} privāti",
|
||||
"account.disable_notifications": "Pārtraukt man paziņot, kad @{name} publicē ierakstu",
|
||||
"account.domain_blocked": "Domēns ir bloķēts",
|
||||
"account.edit_profile": "Labot profilu",
|
||||
"account.enable_notifications": "Paziņot man, kad @{name} publicē ierakstu",
|
||||
"account.endorse": "Izcelts profilā",
|
||||
|
@ -51,11 +50,11 @@
|
|||
"account.mute_notifications_short": "Izslēgt paziņojumu skaņu",
|
||||
"account.mute_short": "Apklusināt",
|
||||
"account.muted": "Apklusināts",
|
||||
"account.mutual": "Abpusēji",
|
||||
"account.no_bio": "Apraksts nav sniegts.",
|
||||
"account.open_original_page": "Atvērt pirmavota lapu",
|
||||
"account.posts": "Ieraksti",
|
||||
"account.posts_with_replies": "Ieraksti un atbildes",
|
||||
"account.remove_from_followers": "Dzēst sekotāju {name}",
|
||||
"account.report": "Sūdzēties par @{name}",
|
||||
"account.requested": "Gaida apstiprinājumu. Nospied, lai atceltu sekošanas pieparasījumu",
|
||||
"account.requested_follow": "{name} nosūtīja Tev sekošanas pieprasījumu",
|
||||
|
@ -215,6 +214,9 @@
|
|||
"confirmations.redraft.confirm": "Dzēst un pārrakstīt",
|
||||
"confirmations.redraft.message": "Vai tiešām vēlies izdzēst šo ierakstu un veidot jaunu tā uzmetumu? Pievienošana izlasēs un pastiprinājumi tiks zaudēti, un sākotnējā ieraksta atbildes paliks bez saiknes ar to.",
|
||||
"confirmations.redraft.title": "Dzēst un rakstīt vēlreiz?",
|
||||
"confirmations.remove_from_followers.confirm": "Dzēst sekotāju",
|
||||
"confirmations.remove_from_followers.message": "{name} pārstās sekot jums. Vai tiešām vēlaties turpināt?",
|
||||
"confirmations.remove_from_followers.title": "Vai dzēst sekotāju?",
|
||||
"confirmations.reply.confirm": "Atbildēt",
|
||||
"confirmations.reply.message": "Tūlītēja atbildēšana pārrakstīs pašlaik sastādīto ziņu. Vai tiešām turpināt?",
|
||||
"confirmations.reply.title": "Pārrakstīt ierakstu?",
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
"account.block_domain": "Сокријај се од {domain}",
|
||||
"account.blocked": "Блокиран",
|
||||
"account.cancel_follow_request": "Withdraw follow request",
|
||||
"account.domain_blocked": "Скриен домен",
|
||||
"account.edit_profile": "Измени профил",
|
||||
"account.endorse": "Карактеристики на профилот",
|
||||
"account.follow": "Следи",
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
"account.copy": "രൂപരേഖയിന്റെ വിലാസം പകർത്തുക",
|
||||
"account.direct": "സ്വകാരൃമായിട്ടു് @{name}-ന് സൂചനപിക്കുക",
|
||||
"account.disable_notifications": "@{name} പോസ്റ്റുചെയ്യുന്നത് എന്നെ അറിയിക്കുന്നത് നിർത്തുക",
|
||||
"account.domain_blocked": "മേഖല തടഞ്ഞു",
|
||||
"account.edit_profile": "പ്രൊഫൈൽ തിരുത്തുക",
|
||||
"account.enable_notifications": "@{name} പോസ്റ്റ് ചെയ്യുമ്പോൾ എന്നെ അറിയിക്കുക",
|
||||
"account.endorse": "പ്രൊഫൈലിൽ പ്രകടമാക്കുക",
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
"account.copy": "दुवा कॉपी करा",
|
||||
"account.direct": "खाजगीरित्या उल्लेखीत @{name}",
|
||||
"account.disable_notifications": "जेव्हा @{name} पोस्ट करतात तेव्हा मला सूचित करणे थांबवा",
|
||||
"account.domain_blocked": "Domain hidden",
|
||||
"account.edit_profile": "प्रोफाइल एडिट करा",
|
||||
"account.enable_notifications": "जेव्हा @{name} पोस्ट करते तेव्हा मला सूचित करा",
|
||||
"account.endorse": "प्रोफाइलवरील वैशिष्ट्य",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Salin pautan ke profil",
|
||||
"account.direct": "Sebut secara persendirian @{name}",
|
||||
"account.disable_notifications": "Berhenti maklumkan saya apabila @{name} mengirim hantaran",
|
||||
"account.domain_blocked": "Domain disekat",
|
||||
"account.edit_profile": "Sunting profil",
|
||||
"account.enable_notifications": "Maklumi saya apabila @{name} mengirim hantaran",
|
||||
"account.endorse": "Tampilkan di profil",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Redamkan pemberitahuan",
|
||||
"account.mute_short": "Redam",
|
||||
"account.muted": "Diredamkan",
|
||||
"account.mutual": "Rakan kongsi",
|
||||
"account.no_bio": "Tiada penerangan diberikan.",
|
||||
"account.open_original_page": "Buka halaman asal",
|
||||
"account.posts": "Hantaran",
|
||||
|
@ -284,7 +282,6 @@
|
|||
"emoji_button.search_results": "Hasil carian",
|
||||
"emoji_button.symbols": "Simbol",
|
||||
"emoji_button.travel": "Kembara & Tempat",
|
||||
"empty_column.account_featured": "Senarai ini kosong",
|
||||
"empty_column.account_hides_collections": "Pengguna ini telah memilih untuk tidak menyediakan informasi tersebut",
|
||||
"empty_column.account_suspended": "Akaun digantung",
|
||||
"empty_column.account_timeline": "Tiada hantaran di sini!",
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
"account.copy": "လင့်ခ်ကို ပရိုဖိုင်သို့ ကူးယူပါ",
|
||||
"account.direct": "@{name} သီးသန့် သိရှိနိုင်အောင် မန်းရှင်းခေါ်မည်",
|
||||
"account.disable_notifications": "@{name} ပို့စ်တင်သည့်အခါ ကျွန်ုပ်ထံ အသိပေးခြင်း မပြုလုပ်ရန်။",
|
||||
"account.domain_blocked": "ဒိုမိန်း ပိတ်ပင်ထားခဲ့သည်",
|
||||
"account.edit_profile": "ကိုယ်ရေးမှတ်တမ်းပြင်ဆင်မည်",
|
||||
"account.enable_notifications": "@{name} ပို့စ်တင်သည့်အခါ ကျွန်ုပ်ကို အကြောင်းကြားပါ။",
|
||||
"account.endorse": "အကောင့်ပရိုဖိုင်တွင်ဖော်ပြပါ",
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "封鎖網域 {domain}",
|
||||
"account.block_short": "封鎖",
|
||||
"account.blocked": "Hőng封鎖",
|
||||
"account.blocking": "Teh封鎖",
|
||||
"account.cancel_follow_request": "取消跟tuè",
|
||||
"account.copy": "Khóo-pih kàu個人資料ê連結",
|
||||
"account.direct": "私人提起 @{name}",
|
||||
"account.disable_notifications": "停止佇 {name} PO文ê時通知我",
|
||||
"account.domain_blocked": "封鎖ê網域",
|
||||
"account.domain_blocking": "Teh封鎖ê網域",
|
||||
"account.edit_profile": "編輯個人資料",
|
||||
"account.enable_notifications": "佇 {name} PO文ê時通知我",
|
||||
"account.endorse": "用個人資料推薦對方",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Lí跟tuè ê",
|
||||
"account.following_counter": "Teh跟tuè {count,plural,other {{count} ê lâng}}",
|
||||
"account.follows.empty": "Tsit ê用者iáu buē跟tuè別lâng。",
|
||||
"account.follows_you": "跟tuè lí",
|
||||
"account.go_to_profile": "行kàu個人資料",
|
||||
"account.hide_reblogs": "Tshàng tuì @{name} 來ê轉PO",
|
||||
"account.in_memoriam": "佇tsia追悼。",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Kā通知消音",
|
||||
"account.mute_short": "消音",
|
||||
"account.muted": "消音ah",
|
||||
"account.mutual": "相跟tuè",
|
||||
"account.muting": "消音",
|
||||
"account.mutual": "Lín sio跟tuè",
|
||||
"account.no_bio": "Bô提供敘述。",
|
||||
"account.open_original_page": "開原來ê頁",
|
||||
"account.posts": "PO文",
|
||||
"account.posts_with_replies": "PO文kap回應",
|
||||
"account.remove_from_followers": "Kā {name} tuì跟tuè lí ê ê內底suá掉",
|
||||
"account.report": "檢舉 @{name}",
|
||||
"account.requested": "Teh等待審查。Tshi̍h tsi̍t-ē 通取消跟tuè請求",
|
||||
"account.requested_follow": "{name} 請求跟tuè lí",
|
||||
"account.requests_to_follow_you": "請求跟tuè lí",
|
||||
"account.share": "分享 @{name} ê個人資料",
|
||||
"account.show_reblogs": "顯示uì @{name} 來ê轉PO",
|
||||
"account.statuses_counter": "{count, plural, other {{count} ê PO文}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Thâi掉了後重寫",
|
||||
"confirmations.redraft.message": "Lí kám確定behthâi掉tsit篇PO文了後koh重寫?收藏kap轉PO ē無去,而且原底ê PO文ê回應ē變孤立。",
|
||||
"confirmations.redraft.title": "Kám beh thâi掉koh重寫PO文?",
|
||||
"confirmations.remove_from_followers.confirm": "Suá掉跟tuè lí ê",
|
||||
"confirmations.remove_from_followers.message": "{name} ē停止跟tuè lí。Lí kám確定beh繼續?",
|
||||
"confirmations.remove_from_followers.title": "Kám beh suá掉跟tuè lí ê?",
|
||||
"confirmations.reply.confirm": "回應",
|
||||
"confirmations.reply.message": "Tsit-má回應ē khàm掉lí tng-leh編寫ê訊息。Lí kám確定beh繼續án-ne做?",
|
||||
"confirmations.reply.title": "Kám beh khàm掉PO文?",
|
||||
|
@ -296,7 +304,6 @@
|
|||
"emoji_button.search_results": "Tshiau-tshuē ê結果",
|
||||
"emoji_button.symbols": "符號",
|
||||
"emoji_button.travel": "旅行kap地點",
|
||||
"empty_column.account_featured": "Tsit ê列單是空ê",
|
||||
"empty_column.account_hides_collections": "Tsit位用者選擇無愛公開tsit ê資訊",
|
||||
"empty_column.account_suspended": "口座已經受停止",
|
||||
"empty_column.account_timeline": "Tsia無PO文!",
|
||||
|
@ -588,6 +595,24 @@
|
|||
"notification.moderation_warning.action_none": "Lí ê口座有收著審核ê警告。",
|
||||
"notification_requests.edit_selection": "編輯",
|
||||
"notification_requests.exit_selection": "做好ah",
|
||||
"notifications.column_settings.admin.report": "新ê檢舉:",
|
||||
"notifications.column_settings.admin.sign_up": "新註冊ê口座:",
|
||||
"notifications.column_settings.alert": "桌面ê通知",
|
||||
"notifications.column_settings.unread_notifications.category": "Iáu bē讀ê通知",
|
||||
"notifications.column_settings.unread_notifications.highlight": "強調iáu bē讀ê通知",
|
||||
"notifications.column_settings.update": "編輯:",
|
||||
"notifications.filter.all": "Kui ê",
|
||||
"notifications.filter.boosts": "轉送",
|
||||
"notifications.filter.favourites": "收藏",
|
||||
"notifications.filter.follows": "跟tuè",
|
||||
"notifications.filter.mentions": "提起",
|
||||
"notifications.filter.polls": "投票結果",
|
||||
"notifications.filter.statuses": "Lí跟tuè ê lâng ê更新",
|
||||
"notifications.grant_permission": "賦予權限。",
|
||||
"notifications.group": "{count} 條通知",
|
||||
"notifications.mark_as_read": "Kā ta̍k條通知lóng標做有讀",
|
||||
"notifications.permission_denied": "因為khah早有拒絕瀏覽器權限ê請求,桌面通知bē當用。",
|
||||
"notifications.permission_denied_alert": "桌面通知bē當phah開來用,因為khah早瀏覽器ê權限受拒絕",
|
||||
"search_popout.language_code": "ISO語言代碼",
|
||||
"status.translated_from_with": "用 {provider} 翻譯 {lang}"
|
||||
}
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
"account.copy": "प्रोफाइलको लिङ्क प्रतिलिपि गर्नुहोस्",
|
||||
"account.direct": "@{name} लाई निजी रूपमा उल्लेख गर्नुहोस्",
|
||||
"account.disable_notifications": "@{name} ले पोस्ट गर्दा मलाई सूचित नगर्नुहोस्",
|
||||
"account.domain_blocked": "डोमेन ब्लक गरिएको छ",
|
||||
"account.edit_profile": "प्रोफाइल सम्पादन गर्नुहोस्",
|
||||
"account.enable_notifications": "@{name} ले पोस्ट गर्दा मलाई सूचित गर्नुहोस्",
|
||||
"account.endorse": "प्रोफाइलमा फिचर गर्नुहोस्",
|
||||
|
@ -43,7 +42,6 @@
|
|||
"account.mute_notifications_short": "सूचनाहरू म्यूट गर्नुहोस्",
|
||||
"account.mute_short": "म्युट",
|
||||
"account.muted": "म्युट गरिएको",
|
||||
"account.mutual": "आपसी",
|
||||
"account.no_bio": "कुनै विवरण प्रदान गरिएको छैन।",
|
||||
"account.posts": "पोस्टहरू",
|
||||
"account.posts_with_replies": "पोस्ट र जवाफहरू",
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "Alles van {domain} blokkeren",
|
||||
"account.block_short": "Blokkeren",
|
||||
"account.blocked": "Geblokkeerd",
|
||||
"account.blocking": "Geblokkeerd",
|
||||
"account.cancel_follow_request": "Ontvolgen",
|
||||
"account.copy": "Link naar profiel kopiëren",
|
||||
"account.direct": "@{name} een privébericht sturen",
|
||||
"account.disable_notifications": "Geen melding meer geven wanneer @{name} een bericht plaatst",
|
||||
"account.domain_blocked": "Domein geblokkeerd",
|
||||
"account.domain_blocking": "Server geblokkeerd",
|
||||
"account.edit_profile": "Profiel bewerken",
|
||||
"account.enable_notifications": "Geef een melding wanneer @{name} een bericht plaatst",
|
||||
"account.endorse": "Op profiel weergeven",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Volgend",
|
||||
"account.following_counter": "{count, plural, one {{counter} volgend} other {{counter} volgend}}",
|
||||
"account.follows.empty": "Deze gebruiker volgt nog niemand of heeft deze verborgen.",
|
||||
"account.follows_you": "Volgt jou",
|
||||
"account.go_to_profile": "Ga naar profiel",
|
||||
"account.hide_reblogs": "Boosts van @{name} verbergen",
|
||||
"account.in_memoriam": "In memoriam.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Meldingen negeren",
|
||||
"account.mute_short": "Negeren",
|
||||
"account.muted": "Genegeerd",
|
||||
"account.muting": "Genegeerd",
|
||||
"account.mutual": "Jullie volgen elkaar",
|
||||
"account.no_bio": "Geen beschrijving opgegeven.",
|
||||
"account.open_original_page": "Originele pagina openen",
|
||||
"account.posts": "Berichten",
|
||||
"account.posts_with_replies": "Berichten en reacties",
|
||||
"account.posts_with_replies": "Reacties",
|
||||
"account.remove_from_followers": "{name} als volger verwijderen",
|
||||
"account.report": "@{name} rapporteren",
|
||||
"account.requested": "Wachten op goedkeuring. Klik om het volgverzoek te annuleren",
|
||||
"account.requested_follow": "{name} wil je graag volgen",
|
||||
"account.requested_follow": "{name} wil jou graag volgen",
|
||||
"account.requests_to_follow_you": "Wil jou graag volgen",
|
||||
"account.share": "Account van @{name} delen",
|
||||
"account.show_reblogs": "Boosts van @{name} tonen",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} bericht} other {{counter} berichten}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Verwijderen en herschrijven",
|
||||
"confirmations.redraft.message": "Weet je zeker dat je dit bericht wilt verwijderen en herschrijven? Je verliest wel de boosts en favorieten, en de reacties op het originele bericht raak je kwijt.",
|
||||
"confirmations.redraft.title": "Bericht verwijderen en herschrijven?",
|
||||
"confirmations.remove_from_followers.confirm": "Volger verwijderen",
|
||||
"confirmations.remove_from_followers.message": "{name} zal je niet meer volgen. Weet je zeker dat je wilt doorgaan?",
|
||||
"confirmations.remove_from_followers.title": "Volger verwijderen?",
|
||||
"confirmations.reply.confirm": "Reageren",
|
||||
"confirmations.reply.message": "Door nu te reageren overschrijf je het bericht dat je op dit moment aan het schrijven bent. Weet je zeker dat je verder wil gaan?",
|
||||
"confirmations.reply.title": "Bericht overschrijven?",
|
||||
|
@ -296,7 +304,9 @@
|
|||
"emoji_button.search_results": "Zoekresultaten",
|
||||
"emoji_button.symbols": "Symbolen",
|
||||
"emoji_button.travel": "Reizen en locaties",
|
||||
"empty_column.account_featured": "Deze lijst is leeg",
|
||||
"empty_column.account_featured.me": "Je hebt nog niets uitgelicht. Wist je dat je een aantal van jouw berichten, jouw meest gebruikte hashtags en zelfs accounts van je vrienden op je profiel kunt uitlichten?",
|
||||
"empty_column.account_featured.other": "{acct} heeft nog niets uitgelicht. Wist je dat je een aantal van jouw berichten, jouw meest gebruikte hashtags en zelfs accounts van je vrienden op je profiel kunt uitlichten?",
|
||||
"empty_column.account_featured_other.unknown": "Dit account heeft nog niets uitgelicht.",
|
||||
"empty_column.account_hides_collections": "Deze gebruiker heeft ervoor gekozen deze informatie niet beschikbaar te maken",
|
||||
"empty_column.account_suspended": "Account opgeschort",
|
||||
"empty_column.account_timeline": "Hier zijn geen berichten!",
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "Skjul alt frå {domain}",
|
||||
"account.block_short": "Blokker",
|
||||
"account.blocked": "Blokkert",
|
||||
"account.blocking": "Blokkerer",
|
||||
"account.cancel_follow_request": "Trekk attende fylgeførespurnad",
|
||||
"account.copy": "Kopier lenka til profilen",
|
||||
"account.direct": "Nevn @{name} privat",
|
||||
"account.disable_notifications": "Slutt å varsle meg når @{name} skriv innlegg",
|
||||
"account.domain_blocked": "Domenet er sperra",
|
||||
"account.domain_blocking": "Blokkerer domenet",
|
||||
"account.edit_profile": "Rediger profil",
|
||||
"account.enable_notifications": "Varsle meg når @{name} skriv innlegg",
|
||||
"account.endorse": "Vis på profilen",
|
||||
|
@ -36,10 +37,11 @@
|
|||
"account.follow_back": "Fylg tilbake",
|
||||
"account.followers": "Fylgjarar",
|
||||
"account.followers.empty": "Ingen fylgjer denne brukaren enno.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} følgjar} other {{counter} følgjarar}}",
|
||||
"account.followers_counter": "{count, plural, one {{counter} fylgjar} other {{counter} fylgjarar}}",
|
||||
"account.following": "Fylgjer",
|
||||
"account.following_counter": "{count, plural, one {{counter} følgjer} other {{counter} følgjer}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} fylgjar} other {{counter} fylgjarar}}",
|
||||
"account.follows.empty": "Denne brukaren fylgjer ikkje nokon enno.",
|
||||
"account.follows_you": "Fylgjer deg",
|
||||
"account.go_to_profile": "Gå til profil",
|
||||
"account.hide_reblogs": "Gøym framhevingar frå @{name}",
|
||||
"account.in_memoriam": "Til minne om.",
|
||||
|
@ -54,19 +56,23 @@
|
|||
"account.mute_notifications_short": "Demp varslingar",
|
||||
"account.mute_short": "Demp",
|
||||
"account.muted": "Målbunden",
|
||||
"account.mutual": "Felles",
|
||||
"account.muting": "Dempa",
|
||||
"account.mutual": "De fylgjer kvarandre",
|
||||
"account.no_bio": "Inga skildring er gjeven.",
|
||||
"account.open_original_page": "Opne originalsida",
|
||||
"account.posts": "Tut",
|
||||
"account.posts_with_replies": "Tut og svar",
|
||||
"account.remove_from_followers": "Fjern {name} frå fylgjarane dine",
|
||||
"account.report": "Rapporter @{name}",
|
||||
"account.requested": "Ventar på aksept. Klikk for å avbryta fylgjeførespurnaden",
|
||||
"account.requested_follow": "{name} har bedt om å få fylgja deg",
|
||||
"account.requests_to_follow_you": "Folk som vil fylgja deg",
|
||||
"account.share": "Del @{name} sin profil",
|
||||
"account.show_reblogs": "Vis framhevingar frå @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} innlegg} other {{counter} innlegg}}",
|
||||
"account.unblock": "Stopp blokkering av @{name}",
|
||||
"account.unblock_domain": "Stopp blokkering av domenet {domain}",
|
||||
"account.unblock_domain_short": "Fjern blokkering",
|
||||
"account.unblock_short": "Stopp blokkering",
|
||||
"account.unendorse": "Ikkje vis på profil",
|
||||
"account.unfollow": "Slutt å fylgja",
|
||||
|
@ -117,7 +123,7 @@
|
|||
"annual_report.summary.thanks": "Takk for at du er med i Mastodon!",
|
||||
"attachments_list.unprocessed": "(ubehandla)",
|
||||
"audio.hide": "Gøym lyd",
|
||||
"block_modal.remote_users_caveat": "Me vil be tenaren {domain} om å respektere di avgjerd. Me kan ikkje garantera at det vert gjort, sidan nokre tenarar kan handtera blokkering ulikt. Offentlege innlegg kan framleis vera synlege for ikkje-innlogga brukarar.",
|
||||
"block_modal.remote_users_caveat": "Me vil be tenaren {domain} om å respektera di avgjerd. Me kan ikkje garantera at det vert gjort, sidan nokre tenarar kan handtera blokkering ulikt. Offentlege innlegg kan framleis vera synlege for ikkje-innlogga brukarar.",
|
||||
"block_modal.show_less": "Vis mindre",
|
||||
"block_modal.show_more": "Vis meir",
|
||||
"block_modal.they_cant_mention": "Dei kan ikkje nemna eller fylgja deg.",
|
||||
|
@ -228,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Slett & skriv på nytt",
|
||||
"confirmations.redraft.message": "Er du sikker på at du vil sletta denne statusen og skriva han på nytt? Då misser du favorittar og framhevingar, og svar til det opprinnelege innlegget vert foreldrelause.",
|
||||
"confirmations.redraft.title": "Slett og skriv på nytt?",
|
||||
"confirmations.remove_from_followers.confirm": "Fjern fylgjar",
|
||||
"confirmations.remove_from_followers.message": "{name} vil ikkje fylgja deg meir. Vil du halda fram?",
|
||||
"confirmations.remove_from_followers.title": "Fjern fylgjar?",
|
||||
"confirmations.reply.confirm": "Svar",
|
||||
"confirmations.reply.message": "Å svara no vil overskriva den meldinga du er i ferd med å skriva. Er du sikker på at du vil halda fram?",
|
||||
"confirmations.reply.title": "Overskriv innlegget?",
|
||||
|
@ -276,7 +285,7 @@
|
|||
"domain_pill.who_they_are": "Sidan handtak seier kven nokon er og kvar dei er, kan du interagere med folk på tvers av det sosiale nettverket av <button>plattformar som støttar ActivityPub</button>.",
|
||||
"domain_pill.who_you_are": "Sidan handtaket ditt seier kven du er og kvar du er, kan folk interagere med deg på tvers av det sosiale nettverket av <button>plattformar som støttar ActivityPub</button>.",
|
||||
"domain_pill.your_handle": "Handtaket ditt:",
|
||||
"domain_pill.your_server": "Din digitale heim, der alle innlegga dine bur i. Liker du ikkje dette? Byt til ein ny tenar når som helst og ta med fylgjarane dine òg.",
|
||||
"domain_pill.your_server": "Din digitale heim, der alle innlegga dine bur. Liker du ikkje dette? Byt til ein ny tenar når som helst og ta med fylgjarane dine òg.",
|
||||
"domain_pill.your_username": "Din unike identifikator på denne tenaren. Det er mogleg å finne brukarar med same brukarnamn på forskjellige tenarar.",
|
||||
"embed.instructions": "Bygg inn denne statusen på nettsida di ved å kopiera koden nedanfor.",
|
||||
"embed.preview": "Slik kjem det til å sjå ut:",
|
||||
|
@ -295,7 +304,9 @@
|
|||
"emoji_button.search_results": "Søkeresultat",
|
||||
"emoji_button.symbols": "Symbol",
|
||||
"emoji_button.travel": "Reise & stader",
|
||||
"empty_column.account_featured": "Denne lista er tom",
|
||||
"empty_column.account_featured.me": "Du har ikkje framheva noko enno. Visste du at du kan framheva innlegg, merkelappar du bruker mykje, og til og med venekontoar på profilen din?",
|
||||
"empty_column.account_featured.other": "{acct} har ikkje framheva noko enno. Visste du at du kan framheva innlegg, merkelappar du bruker mykje, og til og med venekontoar på profilen din?",
|
||||
"empty_column.account_featured_other.unknown": "Denne kontoen har ikkje framheva noko enno.",
|
||||
"empty_column.account_hides_collections": "Denne brukaren har valt å ikkje gjere denne informasjonen tilgjengeleg",
|
||||
"empty_column.account_suspended": "Kontoen er utestengd",
|
||||
"empty_column.account_timeline": "Ingen tut her!",
|
||||
|
@ -380,6 +391,8 @@
|
|||
"generic.saved": "Lagra",
|
||||
"getting_started.heading": "Kom i gang",
|
||||
"hashtag.admin_moderation": "Opne moderasjonsgrensesnitt for #{name}",
|
||||
"hashtag.browse": "Bla gjennom innlegg i #{hashtag}",
|
||||
"hashtag.browse_from_account": "Bla gjennom innlegg frå @{name} i #{hashtag}",
|
||||
"hashtag.column_header.tag_mode.all": "og {additional}",
|
||||
"hashtag.column_header.tag_mode.any": "eller {additional}",
|
||||
"hashtag.column_header.tag_mode.none": "utan {additional}",
|
||||
|
@ -393,6 +406,7 @@
|
|||
"hashtag.counter_by_uses": "{count, plural,one {{counter} innlegg} other {{counter} innlegg}}",
|
||||
"hashtag.counter_by_uses_today": "{count, plural,one {{counter} innlegg} other {{counter} innlegg}} i dag",
|
||||
"hashtag.follow": "Fylg emneknagg",
|
||||
"hashtag.mute": "Demp @#{hashtag}",
|
||||
"hashtag.unfollow": "Slutt å fylgje emneknaggen",
|
||||
"hashtags.and_other": "…og {count, plural, one {}other {# fleire}}",
|
||||
"hints.profiles.followers_may_be_missing": "Kven som fylgjer denne profilen manglar kanskje.",
|
||||
|
@ -805,11 +819,11 @@
|
|||
"server_banner.about_active_users": "Personar som har brukt denne tenaren dei siste 30 dagane (Månadlege Aktive Brukarar)",
|
||||
"server_banner.active_users": "aktive brukarar",
|
||||
"server_banner.administered_by": "Administrert av:",
|
||||
"server_banner.is_one_of_many": "{domain} er ein av dei mange uavhengige Mastodon-serverane du kan bruke til å delta i Fødiverset.",
|
||||
"server_banner.is_one_of_many": "{domain} er ein av dei mange uavhengige Mastodon-tenarane du kan bruka til å delta i Allheimen.",
|
||||
"server_banner.server_stats": "Tenarstatistikk:",
|
||||
"sign_in_banner.create_account": "Opprett konto",
|
||||
"sign_in_banner.follow_anyone": "Følg kven som helst på tvers av Fødiverset og sjå alt i kronologisk rekkjefølgje. Ingen algoritmar, reklamar eller clickbait i sikte.",
|
||||
"sign_in_banner.mastodon_is": "Mastodon er den beste måten å følgje med på det som skjer.",
|
||||
"sign_in_banner.follow_anyone": "Fylg kven som helst på tvers av Allheimen og sjå alt i kronologisk rekkjefylgje. Ingen algoritmar, reklame eller klikkfeller.",
|
||||
"sign_in_banner.mastodon_is": "Mastodon er den beste måten å fylgja med på det som skjer.",
|
||||
"sign_in_banner.sign_in": "Logg inn",
|
||||
"sign_in_banner.sso_redirect": "Logg inn eller registrer deg",
|
||||
"status.admin_account": "Opne moderasjonsgrensesnitt for @{name}",
|
||||
|
@ -875,7 +889,9 @@
|
|||
"subscribed_languages.target": "Endre abonnerte språk for {target}",
|
||||
"tabs_bar.home": "Heim",
|
||||
"tabs_bar.notifications": "Varsel",
|
||||
"terms_of_service.effective_as_of": "I kraft frå {date}",
|
||||
"terms_of_service.title": "Bruksvilkår",
|
||||
"terms_of_service.upcoming_changes_on": "Komande endringar {date}",
|
||||
"time_remaining.days": "{number, plural, one {# dag} other {# dagar}} igjen",
|
||||
"time_remaining.hours": "{number, plural, one {# time} other {# timar}} igjen",
|
||||
"time_remaining.minutes": "{number, plural, one {# minutt} other {# minutt}} igjen",
|
||||
|
@ -906,6 +922,12 @@
|
|||
"video.expand": "Utvid video",
|
||||
"video.fullscreen": "Fullskjerm",
|
||||
"video.hide": "Gøym video",
|
||||
"video.mute": "Demp",
|
||||
"video.pause": "Pause",
|
||||
"video.play": "Spel av"
|
||||
"video.play": "Spel av",
|
||||
"video.skip_backward": "Hopp bakover",
|
||||
"video.skip_forward": "Hopp framover",
|
||||
"video.unmute": "Opphev demping",
|
||||
"video.volume_down": "Volum ned",
|
||||
"video.volume_up": "Volum opp"
|
||||
}
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Kopier lenke til profil",
|
||||
"account.direct": "Nevn @{name} privat",
|
||||
"account.disable_notifications": "Slutt å varsle meg når @{name} legger ut innlegg",
|
||||
"account.domain_blocked": "Domene blokkert",
|
||||
"account.edit_profile": "Rediger profil",
|
||||
"account.enable_notifications": "Varsle meg når @{name} legger ut innlegg",
|
||||
"account.endorse": "Vis frem på profilen",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Demp varsler",
|
||||
"account.mute_short": "Demp",
|
||||
"account.muted": "Dempet",
|
||||
"account.mutual": "Gjensidig",
|
||||
"account.no_bio": "Ingen beskrivelse oppgitt.",
|
||||
"account.open_original_page": "Gå til originalsiden",
|
||||
"account.posts": "Innlegg",
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
"account.copy": "Copiar lo ligam del perfil",
|
||||
"account.direct": "Mencionar @{name} en privat",
|
||||
"account.disable_notifications": "Quitar de m’avisar quand @{name} publica quicòm",
|
||||
"account.domain_blocked": "Domeni amagat",
|
||||
"account.edit_profile": "Modificar lo perfil",
|
||||
"account.enable_notifications": "M’avisar quand @{name} publica quicòm",
|
||||
"account.endorse": "Mostrar pel perfil",
|
||||
|
@ -46,7 +45,6 @@
|
|||
"account.mute_notifications_short": "Amudir las notificacions",
|
||||
"account.mute_short": "Amudir",
|
||||
"account.muted": "Mes en silenci",
|
||||
"account.mutual": "Mutual",
|
||||
"account.no_bio": "Cap de descripcion pas fornida.",
|
||||
"account.open_original_page": "Dobrir la pagina d’origina",
|
||||
"account.posts": "Tuts",
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
"account.cancel_follow_request": "ਫ਼ਾਲੋ ਕਰਨ ਨੂੰ ਰੱਦ ਕਰੋ",
|
||||
"account.copy": "ਪਰੋਫਾਇਲ ਲਈ ਲਿੰਕ ਕਾਪੀ ਕਰੋ",
|
||||
"account.direct": "ਨਿੱਜੀ ਜ਼ਿਕਰ @{name}",
|
||||
"account.domain_blocked": "ਡੋਮੇਨ ਉੱਤੇ ਪਾਬੰਦੀ",
|
||||
"account.edit_profile": "ਪਰੋਫਾਈਲ ਨੂੰ ਸੋਧੋ",
|
||||
"account.enable_notifications": "ਜਦੋਂ {name} ਪੋਸਟ ਕਰੇ ਤਾਂ ਮੈਨੂੰ ਸੂਚਨਾ ਦਿਓ",
|
||||
"account.endorse": "ਪਰੋਫਾਇਲ ਉੱਤੇ ਫ਼ੀਚਰ",
|
||||
|
@ -35,7 +34,6 @@
|
|||
"account.mute_notifications_short": "ਨੋਟਫਿਕੇਸ਼ਨਾਂ ਨੂੰ ਮੌਨ ਕਰੋ",
|
||||
"account.mute_short": "ਮੌਨ ਕਰੋ",
|
||||
"account.muted": "ਮੌਨ ਕੀਤੀਆਂ",
|
||||
"account.mutual": "ਸਾਂਝੇ",
|
||||
"account.no_bio": "ਕੋਈ ਵਰਣਨ ਨਹੀਂ ਦਿੱਤਾ।",
|
||||
"account.open_original_page": "ਅਸਲ ਸਫ਼ੇ ਨੂੰ ਖੋਲ੍ਹੋ",
|
||||
"account.posts": "ਪੋਸਟਾਂ",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Skopiuj link do profilu",
|
||||
"account.direct": "Napisz bezpośrednio do @{name}",
|
||||
"account.disable_notifications": "Przestań powiadamiać mnie o wpisach @{name}",
|
||||
"account.domain_blocked": "Ukryto domenę",
|
||||
"account.edit_profile": "Edytuj profil",
|
||||
"account.enable_notifications": "Powiadamiaj mnie o wpisach @{name}",
|
||||
"account.endorse": "Wyróżnij na profilu",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Wycisz powiadomienia",
|
||||
"account.mute_short": "Wycisz",
|
||||
"account.muted": "Wyciszony",
|
||||
"account.mutual": "Znajomi",
|
||||
"account.no_bio": "Brak opisu.",
|
||||
"account.open_original_page": "Otwórz stronę oryginalną",
|
||||
"account.posts": "Wpisy",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Copiar link do perfil",
|
||||
"account.direct": "Mencione em privado @{name}",
|
||||
"account.disable_notifications": "Cancelar notificações de @{name}",
|
||||
"account.domain_blocked": "Domínio bloqueado",
|
||||
"account.edit_profile": "Editar perfil",
|
||||
"account.enable_notifications": "Notificar novos toots de @{name}",
|
||||
"account.endorse": "Recomendar",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Silenciar notificações",
|
||||
"account.mute_short": "Silenciar",
|
||||
"account.muted": "Silenciado",
|
||||
"account.mutual": "Mútuo",
|
||||
"account.no_bio": "Nenhuma descrição fornecida.",
|
||||
"account.open_original_page": "Abrir a página original",
|
||||
"account.posts": "Toots",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Copiar hiperligação do perfil",
|
||||
"account.direct": "Mencionar @{name} em privado",
|
||||
"account.disable_notifications": "Parar de me notificar das publicações de @{name}",
|
||||
"account.domain_blocked": "Domínio bloqueado",
|
||||
"account.edit_profile": "Editar perfil",
|
||||
"account.enable_notifications": "Notificar-me das publicações de @{name}",
|
||||
"account.endorse": "Destacar no perfil",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Ocultar notificações",
|
||||
"account.mute_short": "Ocultar",
|
||||
"account.muted": "Ocultada",
|
||||
"account.mutual": "Mútuo",
|
||||
"account.no_bio": "Nenhuma descrição fornecida.",
|
||||
"account.open_original_page": "Abrir a página original",
|
||||
"account.posts": "Publicações",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Copiază link-ul profilului",
|
||||
"account.direct": "Menționează pe @{name} în privat",
|
||||
"account.disable_notifications": "Nu îmi mai trimite notificări când postează @{name}",
|
||||
"account.domain_blocked": "Domeniu blocat",
|
||||
"account.edit_profile": "Modifică profilul",
|
||||
"account.enable_notifications": "Trimite-mi o notificare când postează @{name}",
|
||||
"account.endorse": "Promovează pe profil",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Amuțește notificările",
|
||||
"account.mute_short": "Ignoră",
|
||||
"account.muted": "Pus pe silențios",
|
||||
"account.mutual": "Mutual",
|
||||
"account.no_bio": "Nicio descriere furnizată.",
|
||||
"account.open_original_page": "Deschide pagina originală",
|
||||
"account.posts": "Postări",
|
||||
|
|
|
@ -19,15 +19,16 @@
|
|||
"account.block_domain": "Заблокировать {domain}",
|
||||
"account.block_short": "Заблокировать",
|
||||
"account.blocked": "Заблокирован(а)",
|
||||
"account.blocking": "Заблокирован(а)",
|
||||
"account.cancel_follow_request": "Отозвать запрос на подписку",
|
||||
"account.copy": "Копировать ссылку на профиль",
|
||||
"account.direct": "Упомянуть @{name} лично",
|
||||
"account.disable_notifications": "Не уведомлять о постах от @{name}",
|
||||
"account.domain_blocked": "Домен заблокирован",
|
||||
"account.domain_blocking": "Домен заблокирован",
|
||||
"account.edit_profile": "Редактировать",
|
||||
"account.enable_notifications": "Уведомлять о постах от @{name}",
|
||||
"account.endorse": "Рекомендовать в профиле",
|
||||
"account.featured": "Избранное",
|
||||
"account.featured": "Закреплённые…",
|
||||
"account.featured.hashtags": "Хэштеги",
|
||||
"account.featured.posts": "Посты",
|
||||
"account.featured_tags.last_status_at": "Последний пост {date}",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Подписки",
|
||||
"account.following_counter": "{count, plural, one {# подписка} many {# подписок} other {# подписки}}",
|
||||
"account.follows.empty": "Этот пользователь пока ни на кого не подписался.",
|
||||
"account.follows_you": "Подписан(а) на вас",
|
||||
"account.go_to_profile": "Перейти к профилю",
|
||||
"account.hide_reblogs": "Скрыть продвижения от @{name}",
|
||||
"account.in_memoriam": "In Memoriam.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Отключить уведомления",
|
||||
"account.mute_short": "Игнорировать",
|
||||
"account.muted": "Игнорируется",
|
||||
"account.mutual": "Взаимные подписки",
|
||||
"account.muting": "Игнорируется",
|
||||
"account.mutual": "Вы подписаны друг на друга",
|
||||
"account.no_bio": "Описание профиля отсутствует.",
|
||||
"account.open_original_page": "Открыть исходную страницу",
|
||||
"account.posts": "Посты",
|
||||
"account.posts_with_replies": "Посты и ответы",
|
||||
"account.remove_from_followers": "Убрать {name} из подписчиков",
|
||||
"account.report": "Пожаловаться на @{name}",
|
||||
"account.requested": "Ожидает подтверждения. Нажмите для отмены запроса",
|
||||
"account.requested_follow": "{name} отправил(а) вам запрос на подписку",
|
||||
"account.requests_to_follow_you": "Отправил(а) вам запрос на подписку",
|
||||
"account.share": "Поделиться профилем @{name}",
|
||||
"account.show_reblogs": "Показывать продвижения от @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} пост} few {{counter} поста} other {{counter} постов}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Удалить и исправить",
|
||||
"confirmations.redraft.message": "Вы уверены, что хотите удалить этот пост и создать его заново? Взаимодействия, такие как добавление в избранное или продвижение, будут потеряны, а ответы к оригинальному посту перестанут на него ссылаться.",
|
||||
"confirmations.redraft.title": "Удалить и создать пост заново?",
|
||||
"confirmations.remove_from_followers.confirm": "Убрать подписчика",
|
||||
"confirmations.remove_from_followers.message": "Пользователь {name} перестанет быть подписан на вас. Продолжить?",
|
||||
"confirmations.remove_from_followers.title": "Убрать подписчика?",
|
||||
"confirmations.reply.confirm": "Ответить",
|
||||
"confirmations.reply.message": "Если вы начнёте составлять ответ сейчас, то набираемый в данный момент пост будет стёрт. Вы уверены, что хотите продолжить?",
|
||||
"confirmations.reply.title": "Стереть несохранённый черновик поста?",
|
||||
|
@ -296,6 +304,9 @@
|
|||
"emoji_button.search_results": "Результаты поиска",
|
||||
"emoji_button.symbols": "Символы",
|
||||
"emoji_button.travel": "Путешествия и места",
|
||||
"empty_column.account_featured.me": "Вы ещё ничего не закрепили в своём профиле. Знаете ли вы, что вы можете рекомендовать в этом разделе свои посты, часто используемые вами хэштеги и даже профили друзей?",
|
||||
"empty_column.account_featured.other": "{acct} ещё ничего не закрепил(а) в своём профиле. Знаете ли вы, что вы можете рекомендовать в этом разделе свои посты, часто используемые вами хэштеги и даже профили друзей?",
|
||||
"empty_column.account_featured_other.unknown": "Этот пользователь ещё ничего не закрепил в своём профиле.",
|
||||
"empty_column.account_hides_collections": "Пользователь предпочёл не раскрывать эту информацию",
|
||||
"empty_column.account_suspended": "Учётная запись заблокирована",
|
||||
"empty_column.account_timeline": "Здесь нет постов!",
|
||||
|
@ -380,6 +391,8 @@
|
|||
"generic.saved": "Сохранено",
|
||||
"getting_started.heading": "Добро пожаловать",
|
||||
"hashtag.admin_moderation": "Открыть интерфейс модератора для #{name}",
|
||||
"hashtag.browse": "Обзор постов с хэштегом #{hashtag}",
|
||||
"hashtag.browse_from_account": "Обзор постов от @{name} с хэштегом #{hashtag}",
|
||||
"hashtag.column_header.tag_mode.all": "и {additional}",
|
||||
"hashtag.column_header.tag_mode.any": "или {additional}",
|
||||
"hashtag.column_header.tag_mode.none": "без {additional}",
|
||||
|
@ -393,6 +406,7 @@
|
|||
"hashtag.counter_by_uses": "{count, plural, one {{counter} пост} few {{counter} поста} other {{counter} постов}}",
|
||||
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} пост} few {{counter} поста} other {{counter} постов}} сегодня",
|
||||
"hashtag.follow": "Подписаться на новые посты",
|
||||
"hashtag.mute": "Игнорировать #{hashtag}",
|
||||
"hashtag.unfollow": "Отписаться",
|
||||
"hashtags.and_other": "…и {count, plural, other {ещё #}}",
|
||||
"hints.profiles.followers_may_be_missing": "Подписчики этого профиля могут отсутствовать.",
|
||||
|
@ -770,6 +784,7 @@
|
|||
"report.unfollow_explanation": "Вы подписаны на этого пользователя. Чтобы не видеть его/её посты в своей домашней ленте, отпишитесь от него/неё.",
|
||||
"report_notification.attached_statuses": "{count, plural, one {{count} сообщение} few {{count} сообщения} many {{count} сообщений} other {{count} сообщений}} вложено",
|
||||
"report_notification.categories.legal": "Нарушение закона",
|
||||
"report_notification.categories.legal_sentence": "запрещённый контент",
|
||||
"report_notification.categories.other": "Другое",
|
||||
"report_notification.categories.other_sentence": "другое",
|
||||
"report_notification.categories.spam": "Спам",
|
||||
|
@ -910,9 +925,9 @@
|
|||
"video.mute": "Выключить звук",
|
||||
"video.pause": "Пауза",
|
||||
"video.play": "Пуск",
|
||||
"video.skip_backward": "Промотать назад",
|
||||
"video.skip_forward": "Промотать вперёд",
|
||||
"video.skip_backward": "Перемотка назад",
|
||||
"video.skip_forward": "Перемотка вперёд",
|
||||
"video.unmute": "Включить звук",
|
||||
"video.volume_down": "Уменьшить громкость",
|
||||
"video.volume_up": "Увеличить громкость"
|
||||
"video.volume_down": "Громкость уменьшена",
|
||||
"video.volume_up": "Громкость увеличена"
|
||||
}
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
"account.copy": "Зкопіровати удкликованя на профіл",
|
||||
"account.direct": "Пошептати @{name}",
|
||||
"account.disable_notifications": "Бульше не сповіщати ми коли {name} пише",
|
||||
"account.domain_blocked": "Домен заблокованый",
|
||||
"account.edit_profile": "Управити профіл",
|
||||
"account.enable_notifications": "Уповістити ня, кой {name} пише",
|
||||
"account.endorse": "Указовати на профілови",
|
||||
|
@ -47,7 +46,6 @@
|
|||
"account.mute_notifications_short": "Стишити голошіня",
|
||||
"account.mute_short": "Стишити",
|
||||
"account.muted": "Стишено",
|
||||
"account.mutual": "Взайомно",
|
||||
"account.no_bio": "Описа ниє.",
|
||||
"account.open_original_page": "Удоперти ориґіналну сторунку",
|
||||
"account.posts": "Публикації",
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
"account.cancel_follow_request": "अनुसरणयाचनामपनय",
|
||||
"account.direct": "गोपनीयरूपेण उल्लेखित-@{name}",
|
||||
"account.disable_notifications": "यदा @{name} स्थापयति तदा माम्मा ज्ञापय",
|
||||
"account.domain_blocked": "प्रदेशो निषिद्धः",
|
||||
"account.edit_profile": "सम्पाद्यताम्",
|
||||
"account.enable_notifications": "यदा @{name} स्थापयति तदा मां ज्ञापय",
|
||||
"account.endorse": "व्यक्तिगतविवरणे वैशिष्ट्यम्",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Còpia su ligòngiu a su profilu",
|
||||
"account.direct": "Mèntova a @{name} in privadu",
|
||||
"account.disable_notifications": "Non mi notìfiches prus cando @{name} pùblichet messàgios",
|
||||
"account.domain_blocked": "Domìniu blocadu",
|
||||
"account.edit_profile": "Modìfica profilu",
|
||||
"account.enable_notifications": "Notìfica·mi cando @{name} pùblicat messàgios",
|
||||
"account.endorse": "Cussìgia in su profilu tuo",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Pone is notìficas a sa muda",
|
||||
"account.mute_short": "A sa muda",
|
||||
"account.muted": "A sa muda",
|
||||
"account.mutual": "Pari-pari",
|
||||
"account.no_bio": "Peruna descritzione frunida.",
|
||||
"account.open_original_page": "Aberi sa pàgina originale",
|
||||
"account.posts": "Publicatziones",
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
"account.blocked": "Dingied",
|
||||
"account.cancel_follow_request": "Resile follae requeest",
|
||||
"account.disable_notifications": "Stap notifyin me whan @{name} posts",
|
||||
"account.domain_blocked": "Domain dingied",
|
||||
"account.edit_profile": "Edit profile",
|
||||
"account.enable_notifications": "Notify me whan @{name} posts",
|
||||
"account.endorse": "Shaw oan profile",
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
"account.block_short": "අවහිර",
|
||||
"account.blocked": "අවහිර කර ඇත",
|
||||
"account.disable_notifications": "@{name} පළ කරන විට මට දැනුම් නොදෙන්න",
|
||||
"account.domain_blocked": "වසම අවහිර කර ඇත",
|
||||
"account.edit_profile": "පැතිකඩ සංස්කරණය",
|
||||
"account.enable_notifications": "@{name} පළ කරන විට මට දැනුම් දෙන්න",
|
||||
"account.endorse": "පැතිකඩෙහි විශේෂාංගය",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Skopírovať odkaz na profil",
|
||||
"account.direct": "Súkromne označiť @{name}",
|
||||
"account.disable_notifications": "Zrušiť upozornenia na príspevky od @{name}",
|
||||
"account.domain_blocked": "Doména blokovaná",
|
||||
"account.edit_profile": "Upraviť profil",
|
||||
"account.enable_notifications": "Zapnúť upozornenia na príspevky od @{name}",
|
||||
"account.endorse": "Zobraziť na vlastnom profile",
|
||||
|
@ -52,7 +51,6 @@
|
|||
"account.mute_notifications_short": "Stíšiť upozornenia",
|
||||
"account.mute_short": "Stíšiť",
|
||||
"account.muted": "Účet stíšený",
|
||||
"account.mutual": "Spoločné",
|
||||
"account.no_bio": "Nie je uvedený žiadny popis.",
|
||||
"account.open_original_page": "Otvoriť pôvodnú stránku",
|
||||
"account.posts": "Príspevky",
|
||||
|
@ -264,7 +262,6 @@
|
|||
"emoji_button.search_results": "Výsledky hľadania",
|
||||
"emoji_button.symbols": "Symboly",
|
||||
"emoji_button.travel": "Cestovanie a miesta",
|
||||
"empty_column.account_featured": "Tento zoznam je prázdny",
|
||||
"empty_column.account_hides_collections": "Tento účet sa rozhodol túto informáciu nesprístupniť",
|
||||
"empty_column.account_suspended": "Účet bol pozastavený",
|
||||
"empty_column.account_timeline": "Nie sú tu žiadne príspevky.",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Kopiraj povezavo do profila",
|
||||
"account.direct": "Zasebno omeni @{name}",
|
||||
"account.disable_notifications": "Ne obveščaj me več, ko ima @{name} novo objavo",
|
||||
"account.domain_blocked": "Blokirana domena",
|
||||
"account.edit_profile": "Uredi profil",
|
||||
"account.enable_notifications": "Obvesti me, ko ima @{name} novo objavo",
|
||||
"account.endorse": "Izpostavi v profilu",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Utišaj obvestila",
|
||||
"account.mute_short": "Utišaj",
|
||||
"account.muted": "Utišan",
|
||||
"account.mutual": "Vzajemno",
|
||||
"account.no_bio": "Ni opisa.",
|
||||
"account.open_original_page": "Odpri izvirno stran",
|
||||
"account.posts": "Objave",
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "Blloko përkatësinë {domain}",
|
||||
"account.block_short": "Bllokoje",
|
||||
"account.blocked": "E bllokuar",
|
||||
"account.blocking": "Bllokim",
|
||||
"account.cancel_follow_request": "Tërhiq mbrapsht kërkesë për ndjekje",
|
||||
"account.copy": "Kopjoje lidhjen te profili",
|
||||
"account.direct": "Përmendje private për @{name}",
|
||||
"account.disable_notifications": "Resht së njoftuari mua, kur poston @{name}",
|
||||
"account.domain_blocked": "Përkatësia u bllokua",
|
||||
"account.domain_blocking": "Bllokim përkatësie",
|
||||
"account.edit_profile": "Përpunoni profilin",
|
||||
"account.enable_notifications": "Njoftomë, kur poston @{name}",
|
||||
"account.endorse": "Pasqyrojeni në profil",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Ndjekje",
|
||||
"account.following_counter": "{count, plural, one {{counter} i ndjekur} other {{counter} të ndjekur}}",
|
||||
"account.follows.empty": "Ky përdorues ende s’ndjek kënd.",
|
||||
"account.follows_you": "Ju ndjek",
|
||||
"account.go_to_profile": "Kalo te profili",
|
||||
"account.hide_reblogs": "Fshih përforcime nga @{name}",
|
||||
"account.in_memoriam": "In Memoriam.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Mos shfaq njoftime",
|
||||
"account.mute_short": "Mos i shfaq",
|
||||
"account.muted": "Heshtuar",
|
||||
"account.mutual": "Reciproke",
|
||||
"account.muting": "Heshtim",
|
||||
"account.mutual": "Ndiqni njëri-tjetrin",
|
||||
"account.no_bio": "S’u dha përshkrim.",
|
||||
"account.open_original_page": "Hap faqen origjinale",
|
||||
"account.posts": "Mesazhe",
|
||||
"account.posts_with_replies": "Mesazhe dhe përgjigje",
|
||||
"account.remove_from_followers": "Hiqe {name} nga ndjekësit",
|
||||
"account.report": "Raportojeni @{name}",
|
||||
"account.requested": "Në pritje të miratimit. Që të anuloni kërkesën për ndjekje, klikojeni",
|
||||
"account.requested_follow": "{name} ka kërkuar t’ju ndjekë",
|
||||
"account.requests_to_follow_you": "Kërkesa për t’ju ndjekur",
|
||||
"account.share": "Ndajeni profilin e @{name} me të tjerët",
|
||||
"account.show_reblogs": "Shfaq përforcime nga @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} postim} other {{counter} postime}}",
|
||||
|
@ -224,6 +229,9 @@
|
|||
"confirmations.redraft.confirm": "Fshijeni & rihartojeni",
|
||||
"confirmations.redraft.message": "Jeni i sigurt se doni të fshihet kjo gjendje dhe të rihartohet? Të parapëlqyerit dhe përforcimet do të humbin, ndërsa përgjigjet te postimi origjinal do të bëhen jetime.",
|
||||
"confirmations.redraft.title": "Të fshihet & riharothet postimi?",
|
||||
"confirmations.remove_from_followers.confirm": "Hiqe ndjekësin",
|
||||
"confirmations.remove_from_followers.message": "{name} do të reshtë së ndjekuri ju. Jeni i sigurt se doni të vazhdohet?",
|
||||
"confirmations.remove_from_followers.title": "Të hiqet ndjekësi?",
|
||||
"confirmations.reply.confirm": "Përgjigjuni",
|
||||
"confirmations.reply.message": "Po të përgjigjeni tani, mesazhi që po hartoni, do të mbishkruhet. Jeni i sigurt se doni të vazhdohet më tej?",
|
||||
"confirmations.reply.title": "Të mbishkruhet postimi?",
|
||||
|
@ -291,7 +299,9 @@
|
|||
"emoji_button.search_results": "Përfundime kërkimi",
|
||||
"emoji_button.symbols": "Simbole",
|
||||
"emoji_button.travel": "Udhëtime & Vende",
|
||||
"empty_column.account_featured": "Kjo listë është e zbrazët",
|
||||
"empty_column.account_featured.me": "Ende s’keni paraqitur gjë si të zgjedhur. E dinit se mund të përdorni si të tilla në profilin tuaj postime, hashtag-ë që përdorni më shpesh dhe madje llogaritë e shokëve tuaj?",
|
||||
"empty_column.account_featured.other": "{acct} s’ka gjë si të zgjedhur. E dinit se mund të përdorni si të tilla në profilin tuaj postime, hashtag-ë që përdorni më shpesh dhe madje llogaritë e shokëve tuaj?",
|
||||
"empty_column.account_featured_other.unknown": "Kjo llogari s’ka ende gjë të zgjedhur.",
|
||||
"empty_column.account_hides_collections": "Ky përdorues ka zgjedhur të mos e japë këtë informacion",
|
||||
"empty_column.account_suspended": "Llogaria u pezullua",
|
||||
"empty_column.account_timeline": "S’ka mesazhe këtu!",
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
"account.copy": "Kopiraj vezu u profil",
|
||||
"account.direct": "Privatno pomeni @{name}",
|
||||
"account.disable_notifications": "Zaustavi obaveštavanje za objave korisnika @{name}",
|
||||
"account.domain_blocked": "Domen je blokiran",
|
||||
"account.edit_profile": "Uredi profil",
|
||||
"account.enable_notifications": "Obavesti me kada @{name} objavi",
|
||||
"account.endorse": "Istakni na profilu",
|
||||
|
@ -50,7 +49,6 @@
|
|||
"account.mute_notifications_short": "Isključi obaveštenja",
|
||||
"account.mute_short": "Isključi",
|
||||
"account.muted": "Ignorisan",
|
||||
"account.mutual": "Zajednički",
|
||||
"account.no_bio": "Nema opisa.",
|
||||
"account.open_original_page": "Otvori originalnu stranicu",
|
||||
"account.posts": "Objave",
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
"account.copy": "Копирај везу у профил",
|
||||
"account.direct": "Приватно помени @{name}",
|
||||
"account.disable_notifications": "Заустави обавештавање за објаве корисника @{name}",
|
||||
"account.domain_blocked": "Домен је блокиран",
|
||||
"account.edit_profile": "Уреди профил",
|
||||
"account.enable_notifications": "Обавести ме када @{name} објави",
|
||||
"account.endorse": "Истакни на профилу",
|
||||
|
@ -50,7 +49,6 @@
|
|||
"account.mute_notifications_short": "Искључи обавештења",
|
||||
"account.mute_short": "Искључи",
|
||||
"account.muted": "Игнорисан",
|
||||
"account.mutual": "Заједнички",
|
||||
"account.no_bio": "Нема описа.",
|
||||
"account.open_original_page": "Отвори оригиналну страницу",
|
||||
"account.posts": "Објаве",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "Kopiera länk till profil",
|
||||
"account.direct": "Nämn @{name} privat",
|
||||
"account.disable_notifications": "Sluta meddela mig när @{name} skriver ett inlägg",
|
||||
"account.domain_blocked": "Domän blockerad",
|
||||
"account.edit_profile": "Redigera profil",
|
||||
"account.enable_notifications": "Notifiera mig när @{name} gör inlägg",
|
||||
"account.endorse": "Visa på profil",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "Stäng av aviseringsljud",
|
||||
"account.mute_short": "Tysta",
|
||||
"account.muted": "Tystad",
|
||||
"account.mutual": "Ömsesidig",
|
||||
"account.no_bio": "Ingen beskrivning angiven.",
|
||||
"account.open_original_page": "Öppna den ursprungliga sidan",
|
||||
"account.posts": "Inlägg",
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
"account.block": "Zablokuj @{name}",
|
||||
"account.block_domain": "Zablokuj domena {domain}",
|
||||
"account.cancel_follow_request": "Withdraw follow request",
|
||||
"account.domain_blocked": "Domena zablokowanŏ",
|
||||
"account.media": "Mydia",
|
||||
"account.mute": "Wycisz @{name}",
|
||||
"account.posts": "Toots",
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
"account.blocked": "முடக்கப்பட்டது",
|
||||
"account.cancel_follow_request": "Withdraw follow request",
|
||||
"account.disable_notifications": "@{name} பதிவிட்டல் எனக்கு தெரியபடுத்த வேண்டாம்",
|
||||
"account.domain_blocked": "மறைக்கப்பட்டத் தளங்கள்",
|
||||
"account.edit_profile": "சுயவிவரத்தை மாற்று",
|
||||
"account.enable_notifications": "@{name} பதிவிட்டல் எனக்குத் தெரியப்படுத்தவும்",
|
||||
"account.endorse": "சுயவிவரத்தில் வெளிப்படுத்து",
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
"account.block_domain": "{domain} నుంచి అన్నీ దాచిపెట్టు",
|
||||
"account.blocked": "బ్లాక్ అయినవి",
|
||||
"account.cancel_follow_request": "Withdraw follow request",
|
||||
"account.domain_blocked": "డొమైన్ దాచిపెట్టబడినది",
|
||||
"account.edit_profile": "ప్రొఫైల్ని సవరించండి",
|
||||
"account.endorse": "ప్రొఫైల్లో చూపించు",
|
||||
"account.follow": "అనుసరించు",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "คัดลอกลิงก์ไปยังโปรไฟล์",
|
||||
"account.direct": "กล่าวถึง @{name} แบบส่วนตัว",
|
||||
"account.disable_notifications": "หยุดแจ้งเตือนฉันเมื่อ @{name} โพสต์",
|
||||
"account.domain_blocked": "ปิดกั้นโดเมนอยู่",
|
||||
"account.edit_profile": "แก้ไขโปรไฟล์",
|
||||
"account.enable_notifications": "แจ้งเตือนฉันเมื่อ @{name} โพสต์",
|
||||
"account.endorse": "แสดงในโปรไฟล์",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "ซ่อนการแจ้งเตือน",
|
||||
"account.mute_short": "ซ่อน",
|
||||
"account.muted": "ซ่อนอยู่",
|
||||
"account.mutual": "คนที่มีร่วมกัน",
|
||||
"account.no_bio": "ไม่ได้ให้คำอธิบาย",
|
||||
"account.open_original_page": "เปิดหน้าดั้งเดิม",
|
||||
"account.posts": "โพสต์",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"account.copy": "o pali same e linja pi lipu jan",
|
||||
"account.direct": "len la o mu e @{name}",
|
||||
"account.disable_notifications": "@{name} li toki la o mu ala e mi",
|
||||
"account.domain_blocked": "sina wile ala lukin e ma ni",
|
||||
"account.edit_profile": "o ante e lipu mi",
|
||||
"account.enable_notifications": "@{name} li toki la o toki e toki ona tawa mi",
|
||||
"account.endorse": "lipu jan la o suli e ni",
|
||||
|
@ -51,7 +50,6 @@
|
|||
"account.mute_notifications_short": "o kute ala e mu tan jan ni",
|
||||
"account.mute_short": "o kute ala",
|
||||
"account.muted": "sina kute ala e jan ni",
|
||||
"account.mutual": "jan pona sona",
|
||||
"account.no_bio": "lipu li weka.",
|
||||
"account.open_original_page": "o open e lipu open",
|
||||
"account.posts": "toki suli",
|
||||
|
|
|
@ -19,11 +19,12 @@
|
|||
"account.block_domain": "{domain} alan adını engelle",
|
||||
"account.block_short": "Engelle",
|
||||
"account.blocked": "Engellendi",
|
||||
"account.blocking": "Engelleme",
|
||||
"account.cancel_follow_request": "Takip isteğini geri çek",
|
||||
"account.copy": "Gönderi bağlantısını kopyala",
|
||||
"account.direct": "@{name} kullanıcısına özel olarak değin",
|
||||
"account.disable_notifications": "@{name} kişisinin gönderi bildirimlerini kapat",
|
||||
"account.domain_blocked": "Alan adı engellendi",
|
||||
"account.domain_blocking": "Alan adını engelleme",
|
||||
"account.edit_profile": "Profili düzenle",
|
||||
"account.enable_notifications": "@{name} kişisinin gönderi bildirimlerini aç",
|
||||
"account.endorse": "Profilimde öne çıkar",
|
||||
|
@ -40,6 +41,7 @@
|
|||
"account.following": "Takip Ediliyor",
|
||||
"account.following_counter": "{count, plural, one {{counter} takip edilen} other {{counter} takip edilen}}",
|
||||
"account.follows.empty": "Bu kullanıcı henüz kimseyi takip etmiyor.",
|
||||
"account.follows_you": "Seni takip ediyor",
|
||||
"account.go_to_profile": "Profile git",
|
||||
"account.hide_reblogs": "@{name} kişisinin boostlarını gizle",
|
||||
"account.in_memoriam": "Hatırasına.",
|
||||
|
@ -54,14 +56,17 @@
|
|||
"account.mute_notifications_short": "Bildirimleri sessize al",
|
||||
"account.mute_short": "Sessize al",
|
||||
"account.muted": "Susturuldu",
|
||||
"account.mutual": "Karşılıklı",
|
||||
"account.muting": "Sessize alınıyor",
|
||||
"account.mutual": "Birbirinizi takip ediyorsunuz",
|
||||
"account.no_bio": "Herhangi bir açıklama belirtilmedi.",
|
||||
"account.open_original_page": "Asıl sayfayı aç",
|
||||
"account.posts": "Gönderiler",
|
||||
"account.posts_with_replies": "Gönderiler ve yanıtlar",
|
||||
"account.remove_from_followers": "{name} takipçilerinden kaldır",
|
||||
"account.report": "@{name} adlı kişiyi bildir",
|
||||
"account.requested": "Onay bekleniyor. Takip isteğini iptal etmek için tıklayın",
|
||||
"account.requested_follow": "{name} size takip isteği gönderdi",
|
||||
"account.requests_to_follow_you": "Size takip isteği gönderdi",
|
||||
"account.share": "@{name} adlı kişinin profilini paylaş",
|
||||
"account.show_reblogs": "@{name} kişisinin yeniden paylaşımlarını göster",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} gönderi} other {{counter} gönderi}}",
|
||||
|
@ -229,6 +234,9 @@
|
|||
"confirmations.redraft.confirm": "Sil Düzenle ve yeniden paylaş",
|
||||
"confirmations.redraft.message": "Bu gönderiyi silip taslak haline getirmek istediğinize emin misiniz? Mevcut favoriler ve boostlar silinecek ve gönderiye verilen yanıtlar başıboş kalacak.",
|
||||
"confirmations.redraft.title": "Gönderiyi sil veya taslağa dönüştür?",
|
||||
"confirmations.remove_from_followers.confirm": "Takipçi kaldır",
|
||||
"confirmations.remove_from_followers.message": "{name} sizi takip etmeyi bırakacaktır. Devam etmek istediğinize emin misiniz?",
|
||||
"confirmations.remove_from_followers.title": "Takipçiyi kaldır?",
|
||||
"confirmations.reply.confirm": "Yanıtla",
|
||||
"confirmations.reply.message": "Şimdi yanıtlarken o an oluşturduğun mesajın üzerine yazılır. Devam etmek istediğine emin misin?",
|
||||
"confirmations.reply.title": "Gönderinin üzerine yaz?",
|
||||
|
@ -296,7 +304,9 @@
|
|||
"emoji_button.search_results": "Arama sonuçları",
|
||||
"emoji_button.symbols": "Semboller",
|
||||
"emoji_button.travel": "Seyahat ve Yerler",
|
||||
"empty_column.account_featured": "Bu liste boş",
|
||||
"empty_column.account_featured.me": "Henüz hiçbir şeyi öne çıkarmadınız. Gönderilerinizi, en çok kullandığınız etiketleri ve hatta arkadaşlarınızın hesaplarını profilinizde öne çıkarabileceğinizi biliyor muydunuz?",
|
||||
"empty_column.account_featured.other": "{acct} henüz hiçbir şeyi öne çıkarmadı. Gönderilerinizi, en çok kullandığınız etiketleri ve hatta arkadaşlarınızın hesaplarını profilinizde öne çıkarabileceğinizi biliyor muydunuz?",
|
||||
"empty_column.account_featured_other.unknown": "Bu hesap henüz hiçbir şeyi öne çıkarmadı.",
|
||||
"empty_column.account_hides_collections": "Bu kullanıcı bu bilgiyi sağlamayı tercih etmemiştir",
|
||||
"empty_column.account_suspended": "Hesap askıya alındı",
|
||||
"empty_column.account_timeline": "Burada hiç gönderi yok!",
|
||||
|
|
|
@ -21,7 +21,6 @@
|
|||
"account.cancel_follow_request": "Киләсе сорау",
|
||||
"account.copy": "Профиль сылтамасын күчереп ал",
|
||||
"account.disable_notifications": "@{name} язулары өчен белдерүләр сүндерү",
|
||||
"account.domain_blocked": "Домен блокланган",
|
||||
"account.edit_profile": "Профильне үзгәртү",
|
||||
"account.enable_notifications": "@{name} язулары өчен белдерүләр яндыру",
|
||||
"account.endorse": "Профильдә тәкъдим итү",
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue