mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-06 12:35:14 +00:00
Merge tag 'v3.2.0rc2'
This commit is contained in:
commit
65c907a448
126 changed files with 1343 additions and 509 deletions
|
|
@ -163,7 +163,6 @@ export function submitCompose(routerHistory) {
|
|||
|
||||
// To make the app more responsive, immediately push the status
|
||||
// into the columns
|
||||
|
||||
const insertIfOnline = timelineId => {
|
||||
const timeline = getState().getIn(['timelines', timelineId]);
|
||||
|
||||
|
|
@ -179,6 +178,7 @@ export function submitCompose(routerHistory) {
|
|||
if (response.data.in_reply_to_id === null && response.data.visibility === 'public') {
|
||||
insertIfOnline('community');
|
||||
insertIfOnline('public');
|
||||
insertIfOnline(`account:${response.data.account.id}`);
|
||||
}
|
||||
}).catch(function (error) {
|
||||
dispatch(submitComposeFail(error));
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import openDB from '../storage/db';
|
|||
import { evictStatus } from '../storage/modifier';
|
||||
|
||||
import { deleteFromTimelines } from './timelines';
|
||||
import { importFetchedStatus, importFetchedStatuses, importAccount, importStatus } from './importer';
|
||||
import { importFetchedStatus, importFetchedStatuses, importAccount, importStatus, importFetchedAccount } from './importer';
|
||||
import { ensureComposeIsVisible } from './compose';
|
||||
|
||||
export const STATUS_FETCH_REQUEST = 'STATUS_FETCH_REQUEST';
|
||||
|
|
@ -155,6 +155,7 @@ export function deleteStatus(id, routerHistory, withRedraft = false) {
|
|||
evictStatus(id);
|
||||
dispatch(deleteStatusSuccess(id));
|
||||
dispatch(deleteFromTimelines(id));
|
||||
dispatch(importFetchedAccount(response.data.account));
|
||||
|
||||
if (withRedraft) {
|
||||
dispatch(redraft(status, response.data.text));
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ export function counterRenderer(counterType, isBold = true) {
|
|||
return (displayNumber, pluralReady) => (
|
||||
<FormattedMessage
|
||||
id='account.following_counter'
|
||||
defaultMessage='{count, plural, other {{counter} Following}}'
|
||||
defaultMessage='{count, plural, one {{counter} Following} other {{counter} Following}}'
|
||||
values={{
|
||||
count: pluralReady,
|
||||
counter: renderCounter(displayNumber),
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ const mapStateToProps = (state, { scrollKey }) => {
|
|||
};
|
||||
};
|
||||
|
||||
export default @connect(mapStateToProps)
|
||||
export default @connect(mapStateToProps, null, null, { forwardRef: true })
|
||||
class ScrollableList extends PureComponent {
|
||||
|
||||
static contextTypes = {
|
||||
|
|
|
|||
|
|
@ -15,6 +15,8 @@ import { FormattedMessage } from 'react-intl';
|
|||
import { fetchAccountIdentityProofs } from '../../actions/identity_proofs';
|
||||
import MissingIndicator from 'mastodon/components/missing_indicator';
|
||||
import TimelineHint from 'mastodon/components/timeline_hint';
|
||||
import { me } from 'mastodon/initial_state';
|
||||
import { connectTimeline, disconnectTimeline } from 'mastodon/actions/timelines';
|
||||
|
||||
const emptyList = ImmutableList();
|
||||
|
||||
|
|
@ -61,28 +63,48 @@ class AccountTimeline extends ImmutablePureComponent {
|
|||
};
|
||||
|
||||
componentWillMount () {
|
||||
const { params: { accountId }, withReplies } = this.props;
|
||||
const { params: { accountId }, withReplies, dispatch } = this.props;
|
||||
|
||||
this.props.dispatch(fetchAccount(accountId));
|
||||
this.props.dispatch(fetchAccountIdentityProofs(accountId));
|
||||
dispatch(fetchAccount(accountId));
|
||||
dispatch(fetchAccountIdentityProofs(accountId));
|
||||
|
||||
if (!withReplies) {
|
||||
this.props.dispatch(expandAccountFeaturedTimeline(accountId));
|
||||
dispatch(expandAccountFeaturedTimeline(accountId));
|
||||
}
|
||||
|
||||
this.props.dispatch(expandAccountTimeline(accountId, { withReplies }));
|
||||
dispatch(expandAccountTimeline(accountId, { withReplies }));
|
||||
|
||||
if (accountId === me) {
|
||||
dispatch(connectTimeline(`account:${me}`));
|
||||
}
|
||||
}
|
||||
|
||||
componentWillReceiveProps (nextProps) {
|
||||
const { dispatch } = this.props;
|
||||
|
||||
if ((nextProps.params.accountId !== this.props.params.accountId && nextProps.params.accountId) || nextProps.withReplies !== this.props.withReplies) {
|
||||
this.props.dispatch(fetchAccount(nextProps.params.accountId));
|
||||
this.props.dispatch(fetchAccountIdentityProofs(nextProps.params.accountId));
|
||||
dispatch(fetchAccount(nextProps.params.accountId));
|
||||
dispatch(fetchAccountIdentityProofs(nextProps.params.accountId));
|
||||
|
||||
if (!nextProps.withReplies) {
|
||||
this.props.dispatch(expandAccountFeaturedTimeline(nextProps.params.accountId));
|
||||
dispatch(expandAccountFeaturedTimeline(nextProps.params.accountId));
|
||||
}
|
||||
|
||||
this.props.dispatch(expandAccountTimeline(nextProps.params.accountId, { withReplies: nextProps.params.withReplies }));
|
||||
dispatch(expandAccountTimeline(nextProps.params.accountId, { withReplies: nextProps.params.withReplies }));
|
||||
}
|
||||
|
||||
if (nextProps.params.accountId === me && this.props.params.accountId !== me) {
|
||||
dispatch(connectTimeline(`account:${me}`));
|
||||
} else if (this.props.params.accountId === me && nextProps.params.accountId !== me) {
|
||||
dispatch(disconnectTimeline(`account:${me}`));
|
||||
}
|
||||
}
|
||||
|
||||
componentWillUnmount () {
|
||||
const { dispatch, params: { accountId } } = this.props;
|
||||
|
||||
if (accountId === me) {
|
||||
dispatch(disconnectTimeline(`account:${me}`));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "مُتابِعون",
|
||||
"account.followers.empty": "لا أحد يتبع هذا الحساب بعد.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "هذا الحساب لا يتبع أحدًا بعد.",
|
||||
"account.follows_you": "يتابعك",
|
||||
"account.hide_reblogs": "إخفاء ترقيات @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Siguidores",
|
||||
"account.followers.empty": "Naide sigue a esti usuariu entá.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Esti usuariu entá nun sigue a naide.",
|
||||
"account.follows_you": "Síguete",
|
||||
"account.hide_reblogs": "Anubrir les comparticiones de @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Последователи",
|
||||
"account.followers.empty": "Все още никой не следва този потребител.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Този потребител все още не следва никого.",
|
||||
"account.follows_you": "Твой последовател",
|
||||
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "অনুসরণকারী",
|
||||
"account.followers.empty": "এই সদস্যকে এখনো কেউ অনুসরণ করে না।.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "এই সদস্য কাওকে এখনো অনুসরণ করেন না.",
|
||||
"account.follows_you": "আপনাকে অনুসরণ করে",
|
||||
"account.hide_reblogs": "@{name}'র সমর্থনগুলি লুকিয়ে ফেলুন",
|
||||
|
|
|
|||
|
|
@ -245,7 +245,7 @@
|
|||
"keyboard_shortcuts.spoilers": "to show/hide CW field",
|
||||
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "da guzhat/ziguzhat ur media",
|
||||
"keyboard_shortcuts.toot": "da gregiñ gant un toud nevez-flamm",
|
||||
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
||||
"keyboard_shortcuts.up": "to move up in the list",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Seguidors",
|
||||
"account.followers.empty": "Encara ningú no segueix aquest usuari.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidors}}",
|
||||
"account.following_counter": "{count, plural, one {} other {{counter} Seguint}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Seguint}}",
|
||||
"account.follows.empty": "Aquest usuari encara no segueix a ningú.",
|
||||
"account.follows_you": "Et segueix",
|
||||
"account.hide_reblogs": "Amaga els impulsos de @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Sledující",
|
||||
"account.followers.empty": "Tohoto uživatele ještě nikdo nesleduje.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Tento uživatel ještě nikoho nesleduje.",
|
||||
"account.follows_you": "Sleduje vás",
|
||||
"account.hide_reblogs": "Skrýt boosty od uživatele @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Dilynwyr",
|
||||
"account.followers.empty": "Nid oes neb yn dilyn y defnyddiwr hwn eto.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Nid yw'r defnyddiwr hwn yn dilyn unrhyw un eto.",
|
||||
"account.follows_you": "Yn eich dilyn chi",
|
||||
"account.hide_reblogs": "Cuddio bwstiau o @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Følgere",
|
||||
"account.followers.empty": "Der er endnu ingen der følger denne bruger.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Denne bruger følger endnu ikke nogen.",
|
||||
"account.follows_you": "Følger dig",
|
||||
"account.hide_reblogs": "Skjul fremhævelserne fra @{name}",
|
||||
|
|
|
|||
|
|
@ -146,7 +146,7 @@
|
|||
"id": "account.statuses_counter"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "{count, plural, other {{counter} Following}}",
|
||||
"defaultMessage": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"id": "account.following_counter"
|
||||
},
|
||||
{
|
||||
|
|
@ -2659,6 +2659,22 @@
|
|||
"defaultMessage": "Boost",
|
||||
"id": "status.reblog"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Public",
|
||||
"id": "privacy.public.short"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Unlisted",
|
||||
"id": "privacy.unlisted.short"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Followers-only",
|
||||
"id": "privacy.private.short"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Direct",
|
||||
"id": "privacy.direct.short"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "You can press {combo} to skip this next time",
|
||||
"id": "boost_modal.combo"
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Ακόλουθοι",
|
||||
"account.followers.empty": "Κανείς δεν ακολουθεί αυτό τον χρήστη ακόμα.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Ακόλουθος} other {{counter} Ακόλουθοι}}",
|
||||
"account.following_counter": "{count, plural, one {} other {{counter} Ακολουθεί}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Ακολουθεί}}",
|
||||
"account.follows.empty": "Αυτός ο χρήστης δεν ακολουθεί κανέναν ακόμα.",
|
||||
"account.follows_you": "Σε ακολουθεί",
|
||||
"account.hide_reblogs": "Απόκρυψη προωθήσεων από @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} 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.hide_reblogs": "Hide boosts from @{name}",
|
||||
|
|
|
|||
|
|
@ -395,7 +395,7 @@
|
|||
"status.redraft": "Borrar y volver a borrador",
|
||||
"status.remove_bookmark": "Eliminar marcador",
|
||||
"status.reply": "Responder",
|
||||
"status.replyAll": "Responder al hilo",
|
||||
"status.replyAll": "Responder al hilván",
|
||||
"status.report": "Reportar",
|
||||
"status.sensitive_warning": "Contenido sensible",
|
||||
"status.share": "Compartir",
|
||||
|
|
@ -403,7 +403,7 @@
|
|||
"status.show_less_all": "Mostrar menos para todo",
|
||||
"status.show_more": "Mostrar más",
|
||||
"status.show_more_all": "Mostrar más para todo",
|
||||
"status.show_thread": "Ver hilo",
|
||||
"status.show_thread": "Mostrar hilván",
|
||||
"status.uncached_media_warning": "No disponible",
|
||||
"status.unmute_conversation": "Dejar de silenciar conversación",
|
||||
"status.unpin": "Dejar de fijar",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Jälgijad",
|
||||
"account.followers.empty": "Keegi ei jälgi seda kasutajat veel.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "See kasutaja ei jälgi veel kedagi.",
|
||||
"account.follows_you": "Jälgib Teid",
|
||||
"account.hide_reblogs": "Peida upitused kasutajalt @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Jarraitzaileak",
|
||||
"account.followers.empty": "Ez du inork erabiltzaile hau jarraitzen oraindik.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Erabiltzaile honek ez du inor jarraitzen oraindik.",
|
||||
"account.follows_you": "Jarraitzen dizu",
|
||||
"account.hide_reblogs": "Ezkutatu @{name}(r)en bultzadak",
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"account.account_note_header": "Note",
|
||||
"account.account_note_header": "Muistiinpanot",
|
||||
"account.add_or_remove_from_list": "Lisää tai poista listoilta",
|
||||
"account.badges.bot": "Botti",
|
||||
"account.badges.group": "Ryhmä",
|
||||
"account.block": "Estä @{name}",
|
||||
"account.block_domain": "Piilota kaikki sisältö verkkotunnuksesta {domain}",
|
||||
"account.blocked": "Estetty",
|
||||
"account.browse_more_on_origin_server": "Browse more on the original profile",
|
||||
"account.browse_more_on_origin_server": "Selaile lisää alkuperäisellä palvelimella",
|
||||
"account.cancel_follow_request": "Peruuta seurauspyyntö",
|
||||
"account.direct": "Viesti käyttäjälle @{name}",
|
||||
"account.domain_blocked": "Verkko-osoite piilotettu",
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Seuraajaa",
|
||||
"account.followers.empty": "Tällä käyttäjällä ei ole vielä seuraajia.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Tämä käyttäjä ei vielä seuraa ketään.",
|
||||
"account.follows_you": "Seuraa sinua",
|
||||
"account.hide_reblogs": "Piilota buustaukset käyttäjältä @{name}",
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
"account.unfollow": "Lakkaa seuraamasta",
|
||||
"account.unmute": "Poista käyttäjän @{name} mykistys",
|
||||
"account.unmute_notifications": "Poista mykistys käyttäjän @{name} ilmoituksilta",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"account_note.placeholder": "Lisää muistiinpano napsauttamalla",
|
||||
"alert.rate_limited.message": "Yritä uudestaan {retry_time, time, medium} jälkeen.",
|
||||
"alert.rate_limited.title": "Määrää rajoitettu",
|
||||
"alert.unexpected.message": "Tapahtui odottamaton virhe.",
|
||||
|
|
@ -79,7 +79,7 @@
|
|||
"column_header.show_settings": "Näytä asetukset",
|
||||
"column_header.unpin": "Poista kiinnitys",
|
||||
"column_subheading.settings": "Asetukset",
|
||||
"community.column_settings.local_only": "Local only",
|
||||
"community.column_settings.local_only": "Vain paikalliset",
|
||||
"community.column_settings.media_only": "Vain media",
|
||||
"community.column_settings.remote_only": "Remote only",
|
||||
"compose_form.direct_message_warning": "Tämä tuuttaus näkyy vain mainituille käyttäjille.",
|
||||
|
|
@ -172,7 +172,7 @@
|
|||
"follow_request.authorize": "Valtuuta",
|
||||
"follow_request.reject": "Hylkää",
|
||||
"follow_requests.unlocked_explanation": "Vaikka tilisi ei ole lukittu, {domain} ylläpitäjien mielestä haluat tarkistaa näiden tilien seurauspyynnöt manuaalisesti.",
|
||||
"generic.saved": "Saved",
|
||||
"generic.saved": "Tallennettu",
|
||||
"getting_started.developers": "Kehittäjille",
|
||||
"getting_started.directory": "Profiilihakemisto",
|
||||
"getting_started.documentation": "Documentaatio",
|
||||
|
|
@ -242,7 +242,7 @@
|
|||
"keyboard_shortcuts.reply": "vastaa",
|
||||
"keyboard_shortcuts.requests": "avaa lista seurauspyynnöistä",
|
||||
"keyboard_shortcuts.search": "siirry hakukenttään",
|
||||
"keyboard_shortcuts.spoilers": "to show/hide CW field",
|
||||
"keyboard_shortcuts.spoilers": "näyttääksesi/piilottaaksesi CW kentän",
|
||||
"keyboard_shortcuts.start": "avaa \"Aloitus\" -sarake",
|
||||
"keyboard_shortcuts.toggle_hidden": "näytä/piilota sisältövaroituksella merkitty teksti",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "näytä/piilota media",
|
||||
|
|
@ -420,15 +420,15 @@
|
|||
"time_remaining.moments": "Hetki jäljellä",
|
||||
"time_remaining.seconds": "{number, plural, one {# sekunti} other {# sekuntia}} jäljellä",
|
||||
"timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.",
|
||||
"timeline_hint.resources.followers": "Followers",
|
||||
"timeline_hint.resources.follows": "Follows",
|
||||
"timeline_hint.resources.statuses": "Older toots",
|
||||
"timeline_hint.resources.followers": "Seuraajat",
|
||||
"timeline_hint.resources.follows": "Seuraa",
|
||||
"timeline_hint.resources.statuses": "Vanhemmat tuuttaukset",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} person} other {{counter} people}} talking",
|
||||
"trends.trending_now": "Suosittua nyt",
|
||||
"ui.beforeunload": "Luonnos häviää, jos poistut Mastodonista.",
|
||||
"units.short.billion": "{count}B",
|
||||
"units.short.million": "{count}M",
|
||||
"units.short.thousand": "{count}K",
|
||||
"units.short.million": "{count}m",
|
||||
"units.short.thousand": "{count}k",
|
||||
"upload_area.title": "Lataa raahaamalla ja pudottamalla tähän",
|
||||
"upload_button.label": "Lisää mediaa",
|
||||
"upload_error.limit": "Tiedostolatauksien raja ylitetty.",
|
||||
|
|
@ -436,12 +436,12 @@
|
|||
"upload_form.audio_description": "Kuvaile kuulovammaisille",
|
||||
"upload_form.description": "Anna kuvaus näkörajoitteisia varten",
|
||||
"upload_form.edit": "Muokkaa",
|
||||
"upload_form.thumbnail": "Change thumbnail",
|
||||
"upload_form.thumbnail": "Vaihda pikkukuva",
|
||||
"upload_form.undo": "Peru",
|
||||
"upload_form.video_description": "Kuvaile kuulo- tai näkövammaisille",
|
||||
"upload_modal.analyzing_picture": "Analysoidaan kuvaa…",
|
||||
"upload_modal.apply": "Käytä",
|
||||
"upload_modal.choose_image": "Choose image",
|
||||
"upload_modal.choose_image": "Valitse kuva",
|
||||
"upload_modal.description_placeholder": "Eräänä jäätävänä ja pimeänä yönä gorilla ratkaisi sudokun kahdessa minuutissa",
|
||||
"upload_modal.detect_text": "Tunnista teksti kuvasta",
|
||||
"upload_modal.edit_media": "Muokkaa mediaa",
|
||||
|
|
|
|||
|
|
@ -423,7 +423,7 @@
|
|||
"timeline_hint.resources.followers": "Les abonnés",
|
||||
"timeline_hint.resources.follows": "Les abonnements",
|
||||
"timeline_hint.resources.statuses": "Les anciens pouets",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} personne} other {{counter} personnes}} en parle·nt",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} personne en parle} other {{counter} personnes en parlent}}",
|
||||
"trends.trending_now": "Tendance en ce moment",
|
||||
"ui.beforeunload": "Votre brouillon sera perdu si vous quittez Mastodon.",
|
||||
"units.short.billion": "{count}B",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} 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.hide_reblogs": "Hide boosts from @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Seguidoras",
|
||||
"account.followers.empty": "Aínda ninguén segue esta usuaria.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Seguidora} other {{counter} Seguidoras}}",
|
||||
"account.following_counter": "{count, plural, one {} other {{counter} Seguindo}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Seguindo}}",
|
||||
"account.follows.empty": "Esta usuaria aínda non segue a ninguén.",
|
||||
"account.follows_you": "Séguete",
|
||||
"account.hide_reblogs": "Agochar repeticións de @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "עוקבים",
|
||||
"account.followers.empty": "אף אחד לא עוקב אחר המשתמש הזה עדיין.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "משתמש זה לא עוקב אחר אף אחד עדיין.",
|
||||
"account.follows_you": "במעקב אחריך",
|
||||
"account.hide_reblogs": "להסתיר הידהודים מאת @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "फॉलोवर",
|
||||
"account.followers.empty": "कोई भी इस यूज़र् को फ़ॉलो नहीं करता है",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "यह यूज़र् अभी तक किसी को फॉलो नहीं करता है।",
|
||||
"account.follows_you": "आपको फॉलो करता है",
|
||||
"account.hide_reblogs": "@{name} के बूस्ट छुपाएं",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Sljedbenici",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} 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": "te slijedi",
|
||||
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Követő",
|
||||
"account.followers.empty": "Ezt a felhasználót még senki sem követi.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Követő} other {{counter} Követő}}",
|
||||
"account.following_counter": "{count, plural, one {} other {{counter} Követett}}",
|
||||
"account.following_counter": "{count, plural, 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.hide_reblogs": "@{name} megtolásainak némítása",
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"account.account_note_header": "Note",
|
||||
"account.account_note_header": "Գրառում",
|
||||
"account.add_or_remove_from_list": "Աւելացնել կամ հեռացնել ցանկերից",
|
||||
"account.badges.bot": "Բոտ",
|
||||
"account.badges.group": "Խումբ",
|
||||
"account.block": "Արգելափակել @{name}֊ին",
|
||||
"account.block_domain": "Թաքցնել ամէնը հետեւեալ տիրոյթից՝ {domain}",
|
||||
"account.blocked": "Արգելափակուած է",
|
||||
"account.browse_more_on_origin_server": "Browse more on the original profile",
|
||||
"account.browse_more_on_origin_server": "Դիտել ավելին իրական պրոֆիլում",
|
||||
"account.cancel_follow_request": "չեղարկել հետեւելու հայցը",
|
||||
"account.direct": "Նամակ գրել @{name} -ին",
|
||||
"account.domain_blocked": "Տիրոյթը արգելափակուած է",
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Հետեւողներ",
|
||||
"account.followers.empty": "Այս օգտատիրոջը դեռ ոչ մէկ չի հետեւում։",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Հետևորդ} other {{counter} Հետևորդներ}}",
|
||||
"account.following_counter": "{count, plural, one {} other {{counter} Հետևում են}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Հետևում են}}",
|
||||
"account.follows.empty": "Այս օգտատէրը դեռ ոչ մէկի չի հետեւում։",
|
||||
"account.follows_you": "Հետեւում է քեզ",
|
||||
"account.hide_reblogs": "Թաքցնել @{name}֊ի տարածածները",
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
"account.unfollow": "Ապահետեւել",
|
||||
"account.unmute": "Ապալռեցնել @{name}֊ին",
|
||||
"account.unmute_notifications": "Միացնել ծանուցումները @{name}֊ից",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"account_note.placeholder": "Սեղմեք գրառելու համար",
|
||||
"alert.rate_limited.message": "Փորձէք որոշ ժամանակ անց՝ {retry_time, time, medium}։",
|
||||
"alert.rate_limited.title": "Գործողութիւնների յաճախութիւնը գերազանցում է թոյլատրելին",
|
||||
"alert.unexpected.message": "Անսպասելի սխալ տեղի ունեցաւ։",
|
||||
|
|
@ -242,7 +242,7 @@
|
|||
"keyboard_shortcuts.reply": "պատասխանելու համար",
|
||||
"keyboard_shortcuts.requests": "հետեւելու հայցերի ցանկը դիտելու համար",
|
||||
"keyboard_shortcuts.search": "որոնման դաշտին սեւեռվելու համար",
|
||||
"keyboard_shortcuts.spoilers": "to show/hide CW field",
|
||||
"keyboard_shortcuts.spoilers": "որպեսզի ցուցադրվի/թաքցվի CW դաշտը",
|
||||
"keyboard_shortcuts.start": "«սկսել» սիւնակը բացելու համար",
|
||||
"keyboard_shortcuts.toggle_hidden": "CW֊ի ետեւի տեքստը ցուցադրել֊թաքցնելու համար",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "մեդիան ցուցադրել֊թաքցնելու համար",
|
||||
|
|
@ -419,7 +419,7 @@
|
|||
"time_remaining.minutes": "{number, plural, one {# րոպե} other {# րոպե}} անց",
|
||||
"time_remaining.moments": "Մնացել է մի քանի վարկեան",
|
||||
"time_remaining.seconds": "{number, plural, one {# վարկեան} other {# վարկեան}} անց",
|
||||
"timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.",
|
||||
"timeline_hint.remote_resource_not_displayed": "{resource} այլ սպասարկիչներից չեն ցուցադրվել:",
|
||||
"timeline_hint.resources.followers": "Հետևորդներ",
|
||||
"timeline_hint.resources.follows": "Հետևել",
|
||||
"timeline_hint.resources.statuses": "Հին թութեր",
|
||||
|
|
@ -436,7 +436,7 @@
|
|||
"upload_form.audio_description": "Նկարագրիր ձայնագրութեան բովանդակութիւնը լսողական խնդիրներով անձանց համար",
|
||||
"upload_form.description": "Նկարագիր՝ տեսողական խնդիրներ ունեցողների համար",
|
||||
"upload_form.edit": "Խմբագրել",
|
||||
"upload_form.thumbnail": "Change thumbnail",
|
||||
"upload_form.thumbnail": "Փոխել պատկերակը",
|
||||
"upload_form.undo": "Հետարկել",
|
||||
"upload_form.video_description": "Նկարագրիր տեսանիւթը լսողական կամ տեսողական խնդիրներով անձանց համար",
|
||||
"upload_modal.analyzing_picture": "Լուսանկարի վերլուծում…",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Pengikut",
|
||||
"account.followers.empty": "Tidak ada satupun yang mengkuti pengguna ini saat ini.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Pengguna ini belum mengikuti siapapun.",
|
||||
"account.follows_you": "Mengikuti anda",
|
||||
"account.hide_reblogs": "Sembunyikan boosts dari @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Sequanti",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} 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": "Sequas tu",
|
||||
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Fylgjendur",
|
||||
"account.followers.empty": "Ennþá fylgist enginn með þessum notanda.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Þessi notandi fylgist ennþá ekki með neinum.",
|
||||
"account.follows_you": "Fylgir þér",
|
||||
"account.hide_reblogs": "Fela endurbirtingar fyrir @{name}",
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@
|
|||
"account.requested": "フォロー承認待ちです。クリックしてキャンセル",
|
||||
"account.share": "@{name}さんのプロフィールを共有する",
|
||||
"account.show_reblogs": "@{name}さんからのブーストを表示",
|
||||
"account.statuses_counter": "{counter} トゥート",
|
||||
"account.statuses_counter": "{counter} 投稿",
|
||||
"account.unblock": "@{name}さんのブロックを解除",
|
||||
"account.unblock_domain": "{domain}のブロックを解除",
|
||||
"account.unendorse": "プロフィールから外す",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "მიმდევრები",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} 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": "მოგყვებათ",
|
||||
"account.hide_reblogs": "დაიმალოს ბუსტები @{name}-სგან",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"account.account_note_header": "Tazmilt-ik·im i @{name}",
|
||||
"account.account_note_header": "Tazmilt",
|
||||
"account.add_or_remove_from_list": "Rnu neɣ kkes seg tebdarin",
|
||||
"account.badges.bot": "Aṛubut",
|
||||
"account.badges.group": "Agraw",
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Imeḍfaren",
|
||||
"account.followers.empty": "Ar tura, ulac yiwen i yeṭṭafaṛen amseqdac-agi.",
|
||||
"account.followers_counter": "{count, plural, one {{count} n umeḍfar} other {{count} n imeḍfaren}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Ar tura, amseqdac-agi ur yeṭṭafaṛ yiwen.",
|
||||
"account.follows_you": "Yeṭṭafaṛ-ik",
|
||||
"account.hide_reblogs": "Ffer ayen i ibeṭṭu @{name}",
|
||||
|
|
@ -295,7 +295,7 @@
|
|||
"notification.follow": "{name} yeṭṭafaṛ-ik",
|
||||
"notification.follow_request": "{name} yessuter-d ad k-yeḍfeṛ",
|
||||
"notification.mention": "{name} yebder-ik-id",
|
||||
"notification.own_poll": "Your poll has ended",
|
||||
"notification.own_poll": "Tafrant-ik·im tfuk",
|
||||
"notification.poll": "A poll you have voted in has ended",
|
||||
"notification.reblog": "{name} yebḍa tajewwiqt-ik i tikelt-nniḍen",
|
||||
"notifications.clear": "Sfeḍ tilɣa",
|
||||
|
|
@ -390,7 +390,7 @@
|
|||
"status.read_more": "Issin ugar",
|
||||
"status.reblog": "Bḍu",
|
||||
"status.reblog_private": "Boost to original audience",
|
||||
"status.reblogged_by": "{name} boosted",
|
||||
"status.reblogged_by": "Yebḍa-tt {name}",
|
||||
"status.reblogs.empty": "Ula yiwen ur yebḍi tajewwiqt-agi ar tura. Ticki yebḍa-tt yiwen, ad d-iban da.",
|
||||
"status.redraft": "Kkes tɛiwdeḍ tira",
|
||||
"status.remove_bookmark": "Kkes tacreḍt",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Оқырмандар",
|
||||
"account.followers.empty": "Әлі ешкім жазылмаған.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Ешкімге жазылмапты.",
|
||||
"account.follows_you": "Сізге жазылыпты",
|
||||
"account.hide_reblogs": "@{name} атты қолданушының әрекеттерін жасыру",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} 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.hide_reblogs": "Hide boosts from @{name}",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"account.account_note_header": "@{name} 에 대한 노트",
|
||||
"account.account_note_header": "노트",
|
||||
"account.add_or_remove_from_list": "리스트에 추가 혹은 삭제",
|
||||
"account.badges.bot": "봇",
|
||||
"account.badges.group": "그룹",
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
"account.unfollow": "팔로우 해제",
|
||||
"account.unmute": "뮤트 해제",
|
||||
"account.unmute_notifications": "@{name}의 알림 뮤트 해제",
|
||||
"account_note.placeholder": "작성된 댓글이 없음",
|
||||
"account_note.placeholder": "클릭해서 노트 추가",
|
||||
"alert.rate_limited.message": "{retry_time, time, medium}에 다시 시도해 주세요.",
|
||||
"alert.rate_limited.title": "빈도 제한",
|
||||
"alert.unexpected.message": "예측하지 못한 에러가 발생했습니다.",
|
||||
|
|
@ -436,12 +436,12 @@
|
|||
"upload_form.audio_description": "청각 장애인을 위한 설명",
|
||||
"upload_form.description": "시각장애인을 위한 설명",
|
||||
"upload_form.edit": "편집",
|
||||
"upload_form.thumbnail": "Change thumbnail",
|
||||
"upload_form.thumbnail": "썸네일 변경",
|
||||
"upload_form.undo": "삭제",
|
||||
"upload_form.video_description": "청각, 시각 장애인을 위한 설명",
|
||||
"upload_modal.analyzing_picture": "이미지 분석 중…",
|
||||
"upload_modal.apply": "적용",
|
||||
"upload_modal.choose_image": "Choose image",
|
||||
"upload_modal.choose_image": "이미지 선택",
|
||||
"upload_modal.description_placeholder": "다람쥐 헌 쳇바퀴 타고파",
|
||||
"upload_modal.detect_text": "이미지에서 텍스트 추출",
|
||||
"upload_modal.edit_media": "미디어 편집",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} 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.hide_reblogs": "Hide boosts from @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} 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.hide_reblogs": "Hide boosts from @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Sekotāji",
|
||||
"account.followers.empty": "Šim lietotājam nav sekotāju.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Šis lietotājs pagaidām nevienam neseko.",
|
||||
"account.follows_you": "Seko tev",
|
||||
"account.hide_reblogs": "Paslēpt paceltos ierakstus no lietotāja @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Следбеници",
|
||||
"account.followers.empty": "Никој не го следи овој корисник сеуште.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Корисникот не следи никој сеуште.",
|
||||
"account.follows_you": "Те следи тебе",
|
||||
"account.hide_reblogs": "Сокриј буст од @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "പിന്തുടരുന്നവർ",
|
||||
"account.followers.empty": "ഈ ഉപയോക്താവിനെ ആരും ഇതുവരെ പിന്തുടരുന്നില്ല.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "ഈ ഉപയോക്താവ് ആരേയും ഇതുവരെ പിന്തുടരുന്നില്ല.",
|
||||
"account.follows_you": "നിങ്ങളെ പിന്തുടരുന്നു",
|
||||
"account.hide_reblogs": "@{name} ബൂസ്റ്റ് ചെയ്തവ മറയ്കുക",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "अनुयायी",
|
||||
"account.followers.empty": "ह्या वापरकर्त्याचा आतापर्यंत कोणी अनुयायी नाही.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "हा वापरकर्ता अजूनपर्यंत कोणाचा अनुयायी नाही.",
|
||||
"account.follows_you": "तुमचा अनुयायी आहे",
|
||||
"account.hide_reblogs": "@{name} पासून सर्व बूस्ट लपवा",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} 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.hide_reblogs": "Hide boosts from @{name}",
|
||||
|
|
|
|||
|
|
@ -15,8 +15,8 @@
|
|||
"account.follow": "Volgen",
|
||||
"account.followers": "Volgers",
|
||||
"account.followers.empty": "Niemand volgt nog deze gebruiker.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.followers_counter": "{count, plural, one {{counter} volger} other {{counter} volgers}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} volgend} other {{counter} volgend}}",
|
||||
"account.follows.empty": "Deze gebruiker volgt nog niemand.",
|
||||
"account.follows_you": "Volgt jou",
|
||||
"account.hide_reblogs": "Verberg boosts van @{name}",
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
"account.requested": "Wacht op goedkeuring. Klik om het volgverzoek te annuleren",
|
||||
"account.share": "Profiel van @{name} delen",
|
||||
"account.show_reblogs": "Toon boosts van @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} toot} other {{counter} toots}}",
|
||||
"account.unblock": "@{name} deblokkeren",
|
||||
"account.unblock_domain": "{domain} niet langer verbergen",
|
||||
"account.unendorse": "Niet op profiel weergeven",
|
||||
|
|
@ -423,7 +423,7 @@
|
|||
"timeline_hint.resources.followers": "Volgers",
|
||||
"timeline_hint.resources.follows": "Volgend",
|
||||
"timeline_hint.resources.statuses": "Oudere toots",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} person} other {{counter} people}} talking",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} persoon} other {{counter} personen}} zijn aan het praten",
|
||||
"trends.trending_now": "Trends",
|
||||
"ui.beforeunload": "Je concept zal verloren gaan als je Mastodon verlaat.",
|
||||
"units.short.billion": "{count}B",
|
||||
|
|
@ -436,12 +436,12 @@
|
|||
"upload_form.audio_description": "Omschrijf dit voor mensen met een auditieve beperking",
|
||||
"upload_form.description": "Omschrijf dit voor mensen met een visuele beperking",
|
||||
"upload_form.edit": "Bewerken",
|
||||
"upload_form.thumbnail": "Change thumbnail",
|
||||
"upload_form.thumbnail": "Miniatuurafbeelding wijzigen",
|
||||
"upload_form.undo": "Verwijderen",
|
||||
"upload_form.video_description": "Omschrijf dit voor mensen met een auditieve of visuele beperking",
|
||||
"upload_modal.analyzing_picture": "Afbeelding analyseren…",
|
||||
"upload_modal.apply": "Toepassen",
|
||||
"upload_modal.choose_image": "Choose image",
|
||||
"upload_modal.choose_image": "Kies een afbeelding",
|
||||
"upload_modal.description_placeholder": "A quick brown fox jumps over the lazy dog",
|
||||
"upload_modal.detect_text": "Tekst in een afbeelding detecteren",
|
||||
"upload_modal.edit_media": "Media bewerken",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Fylgjarar",
|
||||
"account.followers.empty": "Ingen fylgjer denne brukaren enno.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Denne brukaren fylgjer ikkje nokon enno.",
|
||||
"account.follows_you": "Fylgjer deg",
|
||||
"account.hide_reblogs": "Gøym fremhevingar frå @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Følgere",
|
||||
"account.followers.empty": "Ingen følger denne brukeren ennå.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Denne brukeren følger ikke noen enda.",
|
||||
"account.follows_you": "Følger deg",
|
||||
"account.hide_reblogs": "Skjul fremhevinger fra @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Seguidors",
|
||||
"account.followers.empty": "Degun sèc pas aqueste utilizaire pel moment.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Aqueste utilizaire sèc pas degun pel moment.",
|
||||
"account.follows_you": "Vos sèc",
|
||||
"account.hide_reblogs": "Rescondre los partatges de @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Śledzący",
|
||||
"account.followers.empty": "Nikt jeszcze nie śledzi tego użytkownika.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Ten użytkownik nie śledzi jeszcze nikogo.",
|
||||
"account.follows_you": "Śledzi Cię",
|
||||
"account.hide_reblogs": "Ukryj podbicia od @{name}",
|
||||
|
|
|
|||
|
|
@ -118,7 +118,7 @@
|
|||
"confirmations.mute.explanation": "Isso ocultará toots deles e toots mencionando-os, mas ainda permitirá que eles vejam seus toots e te sigam.",
|
||||
"confirmations.mute.message": "Você tem certeza de que deseja silenciar {name}?",
|
||||
"confirmations.redraft.confirm": "Excluir e rascunhar",
|
||||
"confirmations.redraft.message": "Tem certeza que quer excluir este status e re-rascunhá-lo? Favoritos e boots vão ser perdidos, e as respostas ao post original vão ficar órfãs.",
|
||||
"confirmations.redraft.message": "Você tem certeza de que deseja apagar o toot e usá-lo como rascunho? Boosts e favoritos serão perdidos e as respostas ao toot original ficarão desconectadas.",
|
||||
"confirmations.reply.confirm": "Responder",
|
||||
"confirmations.reply.message": "Responder agora sobrescreverá o toot que você está compondo. Deseja continuar?",
|
||||
"confirmations.unfollow.confirm": "Deixar de seguir",
|
||||
|
|
@ -392,7 +392,7 @@
|
|||
"status.reblog_private": "Boostar para audiência original",
|
||||
"status.reblogged_by": "{name} boostou",
|
||||
"status.reblogs.empty": "Nada aqui. Quando alguém der boost, o autor aparecerá aqui.",
|
||||
"status.redraft": "Excluir & re-rascunhar",
|
||||
"status.redraft": "Excluir e rascunhar",
|
||||
"status.remove_bookmark": "Remover marcador",
|
||||
"status.reply": "Responder",
|
||||
"status.replyAll": "Responder a thread",
|
||||
|
|
@ -425,7 +425,7 @@
|
|||
"timeline_hint.resources.statuses": "Toots mais antigos",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} pessoa} other {{counter} pessoas}} falando",
|
||||
"trends.trending_now": "Em alta no momento",
|
||||
"ui.beforeunload": "Seu rascunho vai ser perdido se você sair do Mastodon.",
|
||||
"ui.beforeunload": "Seu rascunho será perdido se você sair do Mastodon.",
|
||||
"units.short.billion": "{count} bi",
|
||||
"units.short.million": "{count} mi",
|
||||
"units.short.thousand": "{count} mil",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Urmăritori",
|
||||
"account.followers.empty": "Acest utilizator nu are încă urmăritori.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Acest utilizator nu urmărește pe nimeni încă.",
|
||||
"account.follows_you": "Te urmărește",
|
||||
"account.hide_reblogs": "Ascunde impulsurile de la @{name}",
|
||||
|
|
|
|||
|
|
@ -423,7 +423,7 @@
|
|||
"timeline_hint.resources.followers": "подписчиков",
|
||||
"timeline_hint.resources.follows": "подписки",
|
||||
"timeline_hint.resources.statuses": "прошлые посты",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} человек} many {{counter} человек} other {{counter} человека}}",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} человек обсуждает} few {{counter} человека обсуждает} many {{counter} человек обсуждают} other {{counter} обсуждают}} ",
|
||||
"trends.trending_now": "Самое актуальное",
|
||||
"ui.beforeunload": "Ваш черновик будет утерян, если вы покинете Mastodon.",
|
||||
"units.short.billion": "{count} млрд",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Sighiduras",
|
||||
"account.followers.empty": "Nemos sighit ancora custa persone.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Custa persone non sighit ancora a nemos.",
|
||||
"account.follows_you": "Ti sighit",
|
||||
"account.hide_reblogs": "Cua is cumpartziduras de @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Sledujúci",
|
||||
"account.followers.empty": "Tohto používateľa ešte nikto nenásleduje.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Tento používateľ ešte nikoho nenasleduje.",
|
||||
"account.follows_you": "Nasleduje ťa",
|
||||
"account.hide_reblogs": "Skry vyzdvihnutia od @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Sledilci",
|
||||
"account.followers.empty": "Nihče ne sledi temu uporabniku.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Ta uporabnik še ne sledi nikomur.",
|
||||
"account.follows_you": "Sledi tebi",
|
||||
"account.hide_reblogs": "Skrij spodbude od @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Ndjekës",
|
||||
"account.followers.empty": "Këtë përdorues ende s’e ndjek njeri.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Ndjekës} other {{counter} Ndjekës}}",
|
||||
"account.following_counter": "{count, plural, one {} other {{counter} të Ndjekur}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} të Ndjekur}}",
|
||||
"account.follows.empty": "Ky përdorues ende s’ndjek njeri.",
|
||||
"account.follows_you": "Ju ndjek",
|
||||
"account.hide_reblogs": "Fshih përforcime nga @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Pratioca",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} 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": "Prati Vas",
|
||||
"account.hide_reblogs": "Sakrij podrške koje daje korisnika @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Пратиоци",
|
||||
"account.followers.empty": "Тренутно нико не прати овог корисника.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Корисник тренутно не прати никога.",
|
||||
"account.follows_you": "Прати Вас",
|
||||
"account.hide_reblogs": "Сакриј подршке које даје корисника @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Följare",
|
||||
"account.followers.empty": "Ingen följer denna användare än.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Denna användare följer inte någon än.",
|
||||
"account.follows_you": "Följer dig",
|
||||
"account.hide_reblogs": "Dölj knuffar från @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} 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.hide_reblogs": "Hide boosts from @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "பின்தொடர்பவர்கள்",
|
||||
"account.followers.empty": "இதுவரை யாரும் இந்த பயனரைப் பின்தொடரவில்லை.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "இந்த பயனர் இதுவரை யாரையும் பின்தொடரவில்லை.",
|
||||
"account.follows_you": "உங்களைப் பின்தொடர்கிறார்",
|
||||
"account.hide_reblogs": "இருந்து ஊக்கியாக மறை @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} 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.hide_reblogs": "Hide boosts from @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "అనుచరులు",
|
||||
"account.followers.empty": "ఈ వినియోగదారుడిని ఇంకా ఎవరూ అనుసరించడంలేదు.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "ఈ వినియోగదారి ఇంకా ఎవరినీ అనుసరించడంలేదు.",
|
||||
"account.follows_you": "మిమ్మల్ని అనుసరిస్తున్నారు",
|
||||
"account.hide_reblogs": "@{name} నుంచి బూస్ట్ లను దాచిపెట్టు",
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"account.account_note_header": "หมายเหตุของคุณสำหรับ @{name}",
|
||||
"account.account_note_header": "หมายเหตุ",
|
||||
"account.add_or_remove_from_list": "เพิ่มหรือเอาออกจากรายการ",
|
||||
"account.badges.bot": "บอต",
|
||||
"account.badges.group": "กลุ่ม",
|
||||
"account.block": "ปิดกั้น @{name}",
|
||||
"account.block_domain": "ปิดกั้นโดเมน {domain}",
|
||||
"account.blocked": "ปิดกั้นอยู่",
|
||||
"account.browse_more_on_origin_server": "ดูเพิ่มเติมในโปรไฟล์ต้นฉบับ",
|
||||
"account.browse_more_on_origin_server": "เรียกดูเพิ่มเติมในโปรไฟล์ดั้งเดิม",
|
||||
"account.cancel_follow_request": "ยกเลิกคำขอติดตาม",
|
||||
"account.direct": "ส่งข้อความโดยตรงถึง @{name}",
|
||||
"account.domain_blocked": "ปิดกั้นโดเมนอยู่",
|
||||
|
|
@ -15,8 +15,8 @@
|
|||
"account.follow": "ติดตาม",
|
||||
"account.followers": "ผู้ติดตาม",
|
||||
"account.followers.empty": "ยังไม่มีใครติดตามผู้ใช้นี้",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.followers_counter": "{count, plural, other {{counter} ผู้ติดตาม}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} กำลังติดตาม}}",
|
||||
"account.follows.empty": "ผู้ใช้นี้ยังไม่ได้ติดตามใคร",
|
||||
"account.follows_you": "ติดตามคุณ",
|
||||
"account.hide_reblogs": "ซ่อนการดันจาก @{name}",
|
||||
|
|
@ -36,14 +36,14 @@
|
|||
"account.requested": "กำลังรอการอนุมัติ คลิกเพื่อยกเลิกคำขอติดตาม",
|
||||
"account.share": "แบ่งปันโปรไฟล์ของ @{name}",
|
||||
"account.show_reblogs": "แสดงการดันจาก @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.statuses_counter": "{count, plural, other {{counter} โพสต์}}",
|
||||
"account.unblock": "เลิกปิดกั้น @{name}",
|
||||
"account.unblock_domain": "เลิกปิดกั้นโดเมน {domain}",
|
||||
"account.unendorse": "ไม่แสดงให้เห็นในโปรไฟล์",
|
||||
"account.unfollow": "เลิกติดตาม",
|
||||
"account.unmute": "เลิกซ่อน @{name}",
|
||||
"account.unmute_notifications": "เลิกซ่อนการแจ้งเตือนจาก @{name}",
|
||||
"account_note.placeholder": "ไม่มีความคิดเห็นที่ระบุไว้",
|
||||
"account_note.placeholder": "คลิกเพื่อเพิ่มหมายเหตุ",
|
||||
"alert.rate_limited.message": "โปรดลองใหม่หลังจาก {retry_time, time, medium}",
|
||||
"alert.rate_limited.title": "มีการจำกัดอัตรา",
|
||||
"alert.unexpected.message": "เกิดข้อผิดพลาดที่ไม่คาดคิด",
|
||||
|
|
@ -82,14 +82,14 @@
|
|||
"community.column_settings.local_only": "ในเซิร์ฟเวอร์เท่านั้น",
|
||||
"community.column_settings.media_only": "สื่อเท่านั้น",
|
||||
"community.column_settings.remote_only": "ระยะไกลเท่านั้น",
|
||||
"compose_form.direct_message_warning": "โพสต์นี้จะถูกส่งไปยังผู้ใช้ที่กล่าวถึงเท่านั้น",
|
||||
"compose_form.direct_message_warning": "จะส่งโพสต์นี้ไปยังผู้ใช้ที่กล่าวถึงเท่านั้น",
|
||||
"compose_form.direct_message_warning_learn_more": "เรียนรู้เพิ่มเติม",
|
||||
"compose_form.hashtag_warning": "โพสต์นี้จะไม่ถูกแสดงในแฮชแท็กใด ๆ เนื่องจากไม่อยู่ในรายการ เฉพาะโพสต์สาธารณะเท่านั้นที่สามารถค้นหาโดยแฮชแท็ก",
|
||||
"compose_form.hashtag_warning": "จะไม่แสดงรายการโพสต์นี้ภายใต้แฮชแท็กใด ๆ เนื่องจากไม่อยู่ในรายการ เฉพาะโพสต์สาธารณะเท่านั้นที่สามารถค้นหาโดยแฮชแท็ก",
|
||||
"compose_form.lock_disclaimer": "บัญชีของคุณไม่ได้ {locked} ใครก็ตามสามารถติดตามคุณเพื่อดูโพสต์สำหรับผู้ติดตามเท่านั้นของคุณ",
|
||||
"compose_form.lock_disclaimer.lock": "ล็อคอยู่",
|
||||
"compose_form.placeholder": "คุณกำลังคิดอะไรอยู่?",
|
||||
"compose_form.poll.add_option": "เพิ่มตัวเลือก",
|
||||
"compose_form.poll.duration": "ระยะเวลาโพล",
|
||||
"compose_form.poll.duration": "ระยะเวลาการสำรวจความคิดเห็น",
|
||||
"compose_form.poll.option_placeholder": "ตัวเลือก {number}",
|
||||
"compose_form.poll.remove_option": "เอาตัวเลือกนี้ออก",
|
||||
"compose_form.poll.switch_to_multiple": "เปลี่ยนการสำรวจความคิดเห็นเป็นอนุญาตหลายตัวเลือก",
|
||||
|
|
@ -202,7 +202,7 @@
|
|||
"introduction.federation.federated.headline": "ที่ติดต่อกับภายนอก",
|
||||
"introduction.federation.federated.text": "โพสต์สาธารณะจากเซิร์ฟเวอร์อื่น ๆ ของเฟดิเวิร์สจะปรากฏในเส้นเวลาที่ติดต่อกับภายนอก",
|
||||
"introduction.federation.home.headline": "หน้าแรก",
|
||||
"introduction.federation.home.text": "โพสต์จากผู้คนที่คุณติดตามจะปรากฏในฟีดหน้าแรกของคุณ คุณสามารถติดตามใครก็ได้บนเซิร์ฟเวอร์ไหนก็ได้!",
|
||||
"introduction.federation.home.text": "โพสต์จากผู้คนที่คุณติดตามจะปรากฏในฟีดหน้าแรกของคุณ คุณสามารถติดตามใครก็ตามในเซิร์ฟเวอร์ใดก็ตาม!",
|
||||
"introduction.federation.local.headline": "ในเซิร์ฟเวอร์",
|
||||
"introduction.federation.local.text": "โพสต์สาธารณะจากผู้คนในเซิร์ฟเวอร์เดียวกันกับคุณจะปรากฏในเส้นเวลาในเซิร์ฟเวอร์",
|
||||
"introduction.interactions.action": "เสร็จสิ้นบทช่วยสอน!",
|
||||
|
|
@ -264,7 +264,7 @@
|
|||
"lists.subheading": "รายการของคุณ",
|
||||
"load_pending": "{count, plural, other {# รายการใหม่}}",
|
||||
"loading_indicator.label": "กำลังโหลด...",
|
||||
"media_gallery.toggle_visible": "ซ่อน {number, plural, other {ภาพ}}",
|
||||
"media_gallery.toggle_visible": "ซ่อน{number, plural, other {ภาพ}}",
|
||||
"missing_indicator.label": "ไม่พบ",
|
||||
"missing_indicator.sublabel": "ไม่พบทรัพยากรนี้",
|
||||
"mute_modal.hide_notifications": "ซ่อนการแจ้งเตือนจากผู้ใช้นี้?",
|
||||
|
|
@ -348,8 +348,8 @@
|
|||
"relative_time.today": "วันนี้",
|
||||
"reply_indicator.cancel": "ยกเลิก",
|
||||
"report.forward": "ส่งต่อไปยัง {target}",
|
||||
"report.forward_hint": "บัญชีมาจากเซิร์ฟเวอร์อื่น ต้องการส่งสำเนาของรายงานที่ไม่ระบุตัวตนไปที่เซิร์ฟเวอร์นั้นด้วยหรือไม่?",
|
||||
"report.hint": "รายงานนี้จะถูกส่งไปยังผู้ควบคุมเซิร์ฟเวอร์ของคุณ คุณสามารถอธิบายเหตุผลที่คุณรายงานบัญชีนี้ด้านล่าง:",
|
||||
"report.forward_hint": "บัญชีมาจากเซิร์ฟเวอร์อื่น ส่งสำเนาของรายงานที่ไม่ระบุตัวตนไปที่นั่นด้วย?",
|
||||
"report.hint": "จะส่งรายงานไปยังผู้ควบคุมเซิร์ฟเวอร์ของคุณ คุณสามารถให้คำอธิบายเหตุผลที่คุณรายงานบัญชีนี้ด้านล่าง:",
|
||||
"report.placeholder": "ความคิดเห็นเพิ่มเติม",
|
||||
"report.submit": "ส่ง",
|
||||
"report.target": "กำลังรายงาน {target}",
|
||||
|
|
@ -407,7 +407,7 @@
|
|||
"status.uncached_media_warning": "ไม่พร้อมใช้งาน",
|
||||
"status.unmute_conversation": "เลิกซ่อนการสนทนา",
|
||||
"status.unpin": "ถอนหมุดจากโปรไฟล์",
|
||||
"suggestions.dismiss": "ปิดข้อเสนอแนะ",
|
||||
"suggestions.dismiss": "ยกเลิกข้อเสนอแนะ",
|
||||
"suggestions.header": "คุณอาจสนใจ…",
|
||||
"tabs_bar.federated_timeline": "ที่ติดต่อกับภายนอก",
|
||||
"tabs_bar.home": "หน้าแรก",
|
||||
|
|
@ -423,25 +423,25 @@
|
|||
"timeline_hint.resources.followers": "ผู้ติดตาม",
|
||||
"timeline_hint.resources.follows": "การติดตาม",
|
||||
"timeline_hint.resources.statuses": "โพสต์ที่เก่ากว่า",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} person} other {{counter} people}} talking",
|
||||
"trends.counter_by_accounts": "{count, plural, other {{counter} คน}}กำลังพูดคุย",
|
||||
"trends.trending_now": "กำลังนิยม",
|
||||
"ui.beforeunload": "แบบร่างของคุณจะหายไปหากคุณออกจาก Mastodon",
|
||||
"units.short.billion": "{count}B",
|
||||
"units.short.million": "{count}M",
|
||||
"units.short.thousand": "{count}K",
|
||||
"units.short.billion": "{count} พันล้าน",
|
||||
"units.short.million": "{count} ล้าน",
|
||||
"units.short.thousand": "{count} พัน",
|
||||
"upload_area.title": "ลากแล้วปล่อยเพื่ออัปโหลด",
|
||||
"upload_button.label": "เพิ่มไฟล์ภาพ วิดีโอ หรือเสียง",
|
||||
"upload_button.label": "เพิ่มไฟล์ภาพ, วิดีโอ หรือเสียง",
|
||||
"upload_error.limit": "เกินขีดจำกัดการอัปโหลดไฟล์",
|
||||
"upload_error.poll": "ไม่อนุญาตให้อัปโหลดไฟล์พร้อมโพล",
|
||||
"upload_error.poll": "ไม่อนุญาตให้อัปโหลดไฟล์กับการลงคะแนน",
|
||||
"upload_form.audio_description": "อธิบายสำหรับผู้สูญเสียการได้ยิน",
|
||||
"upload_form.description": "อธิบายสำหรับผู้บกพร่องทางการมองเห็น",
|
||||
"upload_form.edit": "แก้ไข",
|
||||
"upload_form.thumbnail": "Change thumbnail",
|
||||
"upload_form.thumbnail": "เปลี่ยนภาพขนาดย่อ",
|
||||
"upload_form.undo": "ลบ",
|
||||
"upload_form.video_description": "อธิบายสำหรับผู้สูญเสียการได้ยินหรือบกพร่องทางการมองเห็น",
|
||||
"upload_modal.analyzing_picture": "กำลังวิเคราะห์รูปภาพ…",
|
||||
"upload_modal.apply": "นำไปใช้",
|
||||
"upload_modal.choose_image": "Choose image",
|
||||
"upload_modal.choose_image": "เลือกภาพ",
|
||||
"upload_modal.description_placeholder": "สุนัขจิ้งจอกสีน้ำตาลที่ว่องไวกระโดดข้ามสุนัขขี้เกียจ",
|
||||
"upload_modal.detect_text": "ตรวจหาข้อความจากรูปภาพ",
|
||||
"upload_modal.edit_media": "แก้ไขสื่อ",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Takipçi",
|
||||
"account.followers.empty": "Henüz kimse bu kullanıcıyı takip etmiyor.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Bu kullanıcı henüz kimseyi takip etmiyor.",
|
||||
"account.follows_you": "Seni takip ediyor",
|
||||
"account.hide_reblogs": "@{name} kişisinin yinelemelerini gizle",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} 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.hide_reblogs": "Hide boosts from @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "Підписники",
|
||||
"account.followers.empty": "Ніхто ще не підписався на цього користувача.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Цей користувач ще ні на кого не підписався.",
|
||||
"account.follows_you": "Підписаний(-а) на вас",
|
||||
"account.hide_reblogs": "Сховати передмухи від @{name}",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "پیروکار",
|
||||
"account.followers.empty": "\"ہنوز اس صارف کی کوئی پیروی نہیں کرتا\".",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "\"یہ صارف ہنوز کسی کی پیروی نہیں کرتا ہے\".",
|
||||
"account.follows_you": "آپ کا پیروکار ہے",
|
||||
"account.hide_reblogs": "@{name} سے فروغ چھپائیں",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"account.account_note_header": "Ghi chú của bạn cho @{name}",
|
||||
"account.account_note_header": "Viết nhận xét",
|
||||
"account.add_or_remove_from_list": "Thêm hoặc Xóa khỏi danh sách",
|
||||
"account.badges.bot": "Bot",
|
||||
"account.badges.group": "Nhóm",
|
||||
|
|
@ -11,16 +11,16 @@
|
|||
"account.direct": "Nhắn tin cho @{name}",
|
||||
"account.domain_blocked": "Đã chặn người dùng",
|
||||
"account.edit_profile": "Chỉnh sửa trang cá nhân",
|
||||
"account.endorse": "Hiển thị trên trang cá nhân",
|
||||
"account.endorse": "Vinh danh người này",
|
||||
"account.follow": "Theo dõi",
|
||||
"account.followers": "Người theo dõi",
|
||||
"account.followers.empty": "Chưa có người theo dõi nào.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Người theo dõi} other {{counter} Người theo dõi}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Đang theo dõi}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Đang theo dõi} other {{counter} Đang theo dõi}}",
|
||||
"account.follows.empty": "Người dùng này chưa theo dõi ai.",
|
||||
"account.follows_you": "Đang theo dõi bạn",
|
||||
"account.hide_reblogs": "Ẩn chia sẻ từ @{name}",
|
||||
"account.last_status": "Hoạt động gần đây",
|
||||
"account.last_status": "Hoạt động cuối",
|
||||
"account.link_verified_on": "Liên kết này đã được xác thực vào {date}",
|
||||
"account.locked_info": "Người dùng này thiết lập trạng thái ẩn. Họ sẽ tự mình xét duyệt các yêu cầu theo dõi.",
|
||||
"account.media": "Bộ sưu tập",
|
||||
|
|
@ -39,11 +39,11 @@
|
|||
"account.statuses_counter": "{count, plural, other {{counter} Tút}}",
|
||||
"account.unblock": "Bỏ chặn @{name}",
|
||||
"account.unblock_domain": "Bỏ ẩn {domain}",
|
||||
"account.unendorse": "Không hiện trên trang cá nhân",
|
||||
"account.unendorse": "Ngưng vinh danh người này",
|
||||
"account.unfollow": "Ngưng theo dõi",
|
||||
"account.unmute": "Bỏ ẩn @{name}",
|
||||
"account.unmute_notifications": "Hiển lại thông báo từ @{name}",
|
||||
"account_note.placeholder": "Nhấn để thêm ghi chú",
|
||||
"account_note.placeholder": "Bạn có điều gì thú vị muốn nói về người này?",
|
||||
"alert.rate_limited.message": "Vui lòng thử lại sau {retry_time, time, medium}.",
|
||||
"alert.rate_limited.title": "Vượt giới hạn",
|
||||
"alert.unexpected.message": "Đã xảy ra lỗi không mong muốn.",
|
||||
|
|
@ -60,14 +60,14 @@
|
|||
"column.blocks": "Người dùng đã chặn",
|
||||
"column.bookmarks": "Tút đã lưu",
|
||||
"column.community": "Máy chủ của bạn",
|
||||
"column.direct": "Nhắn tin",
|
||||
"column.direct": "Tin nhắn của bạn",
|
||||
"column.directory": "Tìm một ai đó",
|
||||
"column.domain_blocks": "Máy chủ đã chặn",
|
||||
"column.favourites": "Tâm đắc",
|
||||
"column.favourites": "Thích",
|
||||
"column.follow_requests": "Yêu cầu theo dõi",
|
||||
"column.home": "Bảng tin",
|
||||
"column.lists": "Danh sách",
|
||||
"column.mutes": "Người dùng đã chặn",
|
||||
"column.mutes": "Người dùng đã ẩn",
|
||||
"column.notifications": "Thông báo",
|
||||
"column.pins": "Tút ghim",
|
||||
"column.public": "Mạng liên kết",
|
||||
|
|
@ -118,30 +118,30 @@
|
|||
"confirmations.mute.explanation": "Điều này sẽ khiến tút của người đó và những tút có đề cập đến họ bị ẩn, tuy nhiên vẫn cho phép họ xem bài đăng của bạn và theo dõi bạn.",
|
||||
"confirmations.mute.message": "Bạn có chắc chắn muốn ẩn {name}?",
|
||||
"confirmations.redraft.confirm": "Xóa & viết lại",
|
||||
"confirmations.redraft.message": "Bạn có chắc chắn muốn xóa tút và viết lại? Điều này sẽ xóa mất những lượt tâm đắc và chia sẻ của tút, cũng như những trả lời sẽ không còn nội dung gốc.",
|
||||
"confirmations.redraft.message": "Bạn có chắc chắn muốn xóa tút và viết lại? Điều này sẽ xóa mất những lượt thích và chia sẻ của tút, cũng như những trả lời sẽ không còn nội dung gốc.",
|
||||
"confirmations.reply.confirm": "Trả lời",
|
||||
"confirmations.reply.message": "Nội dung bạn đang soạn thảo sẽ bị ghi đè, bạn có tiếp tục?",
|
||||
"confirmations.unfollow.confirm": "Ngưng theo dõi",
|
||||
"confirmations.unfollow.message": "Bạn có chắc chắn muốn ngưng theo dõi {name}?",
|
||||
"conversation.delete": "Xóa tin nhắn này",
|
||||
"conversation.mark_as_read": "Đánh dấu là đã đọc",
|
||||
"conversation.open": "Xem tin nhắn",
|
||||
"conversation.open": "Xem toàn bộ tin nhắn",
|
||||
"conversation.with": "Với {names}",
|
||||
"directory.federated": "Từ mạng liên kết",
|
||||
"directory.local": "Chỉ từ {domain}",
|
||||
"directory.new_arrivals": "Gia nhập gần đây",
|
||||
"directory.local": "Từ {domain}",
|
||||
"directory.new_arrivals": "Mới tham gia",
|
||||
"directory.recently_active": "Hoạt động gần đây",
|
||||
"embed.instructions": "Sao chép đoạn mã dưới đây và chèn vào trang web của bạn.",
|
||||
"embed.preview": "Nó sẽ hiển thị như vầy:",
|
||||
"emoji_button.activity": "Hoạt động",
|
||||
"emoji_button.custom": "Riêng",
|
||||
"emoji_button.custom": "Độc đáo",
|
||||
"emoji_button.flags": "Cờ",
|
||||
"emoji_button.food": "Ăn uống",
|
||||
"emoji_button.label": "Chèn emoji",
|
||||
"emoji_button.nature": "Thiên nhiên",
|
||||
"emoji_button.not_found": "Không tìm thấy emoji! (°□°)",
|
||||
"emoji_button.objects": "Đồ vật",
|
||||
"emoji_button.people": "Người",
|
||||
"emoji_button.people": "Mặt cười",
|
||||
"emoji_button.recent": "Thường dùng",
|
||||
"emoji_button.search": "Tìm kiếm...",
|
||||
"emoji_button.search_results": "Kết quả tìm kiếm",
|
||||
|
|
@ -154,8 +154,8 @@
|
|||
"empty_column.community": "Máy chủ của bạn chưa có tút nào công khai. Bạn hãy thử viết gì đó đi!",
|
||||
"empty_column.direct": "Bạn chưa có tin nhắn nào. Khi bạn gửi hoặc nhận tin nhắn, nó sẽ hiển thị ở đây.",
|
||||
"empty_column.domain_blocks": "Chưa ẩn bất kỳ máy chủ nào.",
|
||||
"empty_column.favourited_statuses": "Bạn chưa tâm đắc tút nào. Hãy thử đi, nó sẽ xuất hiện ở đây.",
|
||||
"empty_column.favourites": "Chưa có ai tâm đắc tút này.",
|
||||
"empty_column.favourited_statuses": "Bạn chưa thích tút nào. Hãy thử đi, nó sẽ xuất hiện ở đây.",
|
||||
"empty_column.favourites": "Chưa có ai thích tút này.",
|
||||
"empty_column.follow_requests": "Bạn chưa có yêu cầu theo dõi nào.",
|
||||
"empty_column.hashtag": "Chưa có bài đăng nào sử dụng hashtag này.",
|
||||
"empty_column.home": "Chưa có bất cứ gì! Hãy bắt đầu bằng cách tìm kiếm hoặc truy cập {public} để theo dõi những người bạn quan tâm.",
|
||||
|
|
@ -190,14 +190,14 @@
|
|||
"hashtag.column_settings.tag_mode.any": "Một phần",
|
||||
"hashtag.column_settings.tag_mode.none": "Không chọn",
|
||||
"hashtag.column_settings.tag_toggle": "Bao gồm thêm hashtag cho cột này",
|
||||
"home.column_settings.basic": "Cơ bản",
|
||||
"home.column_settings.show_reblogs": "Hiện tút chia sẻ",
|
||||
"home.column_settings.show_replies": "Hiện trả lời",
|
||||
"home.column_settings.basic": "Tùy chỉnh",
|
||||
"home.column_settings.show_reblogs": "Hiện những lượt chia sẻ",
|
||||
"home.column_settings.show_replies": "Hiện những tút dạng trả lời",
|
||||
"home.hide_announcements": "Ẩn thông báo",
|
||||
"home.show_announcements": "Hiện thông báo",
|
||||
"intervals.full.days": "{number} days",
|
||||
"intervals.full.hours": "{number} hours",
|
||||
"intervals.full.minutes": "{number} minutes",
|
||||
"intervals.full.days": "{number, plural, other {# ngày}}",
|
||||
"intervals.full.hours": "{number, plural, other {# giờ}}",
|
||||
"intervals.full.minutes": "{number, plural, other {# phút}}",
|
||||
"introduction.federation.action": "Tiếp theo",
|
||||
"introduction.federation.federated.headline": "Mạng liên kết",
|
||||
"introduction.federation.federated.text": "Nếu máy chủ của bạn có liên kết với các máy chủ khác, bài đăng công khai từ họ sẽ xuất hiện ở Mạng liên kết.",
|
||||
|
|
@ -206,8 +206,8 @@
|
|||
"introduction.federation.local.headline": "Máy chủ của bạn",
|
||||
"introduction.federation.local.text": "Máy chủ của bạn là nơi hiển thị bài đăng công khai từ những người thuộc cùng một máy chủ của bạn.",
|
||||
"introduction.interactions.action": "Tôi đã hiểu rồi!",
|
||||
"introduction.interactions.favourite.headline": "Tâm đắc",
|
||||
"introduction.interactions.favourite.text": "Tâm đắc một tút có nghĩa là bạn thích tút đó và lưu giữ để sau này xem lại.",
|
||||
"introduction.interactions.favourite.headline": "Thích",
|
||||
"introduction.interactions.favourite.text": "Thích một tút có nghĩa là bạn tâm đắc nội dung của tút và muốn lưu giữ để sau này xem lại.",
|
||||
"introduction.interactions.reblog.headline": "Chia sẻ",
|
||||
"introduction.interactions.reblog.text": "Với tính năng chia sẻ, bạn có thể chia sẻ tút của người khác cho những người theo dõi bạn.",
|
||||
"introduction.interactions.reply.headline": "Trả lời",
|
||||
|
|
@ -224,8 +224,8 @@
|
|||
"keyboard_shortcuts.direct": "mở mục tin nhắn",
|
||||
"keyboard_shortcuts.down": "di chuyển xuống dưới danh sách",
|
||||
"keyboard_shortcuts.enter": "viết tút mới",
|
||||
"keyboard_shortcuts.favourite": "tâm đắc",
|
||||
"keyboard_shortcuts.favourites": "mở danh sách tâm đắc",
|
||||
"keyboard_shortcuts.favourite": "thích",
|
||||
"keyboard_shortcuts.favourites": "mở lượt thích",
|
||||
"keyboard_shortcuts.federated": "mở mạng liên kết",
|
||||
"keyboard_shortcuts.heading": "Các phím tắt",
|
||||
"keyboard_shortcuts.home": "mở bảng tin",
|
||||
|
|
@ -262,9 +262,9 @@
|
|||
"lists.new.title_placeholder": "Tên danh sách mới",
|
||||
"lists.search": "Tìm kiếm những người mà bạn quan tâm",
|
||||
"lists.subheading": "Danh sách của bạn",
|
||||
"load_pending": "{count, plural, one {# new item} other {# new items}}",
|
||||
"load_pending": "{count, plural, one {# tút} other {# tút}}",
|
||||
"loading_indicator.label": "Đang tải...",
|
||||
"media_gallery.toggle_visible": "Ẩn {number, plural, one {image} other {images}}",
|
||||
"media_gallery.toggle_visible": "Ẩn {number, plural, one {ảnh} other {ảnh}}",
|
||||
"missing_indicator.label": "Không tìm thấy",
|
||||
"missing_indicator.sublabel": "Không tìm thấy cái này",
|
||||
"mute_modal.hide_notifications": "Ẩn thông báo từ người dùng này?",
|
||||
|
|
@ -277,7 +277,7 @@
|
|||
"navigation_bar.discover": "Cộng đồng",
|
||||
"navigation_bar.domain_blocks": "Máy chủ đã ẩn",
|
||||
"navigation_bar.edit_profile": "Chỉnh sửa trang cá nhân",
|
||||
"navigation_bar.favourites": "Những thứ tâm đắc",
|
||||
"navigation_bar.favourites": "Lượt thích",
|
||||
"navigation_bar.filters": "Bộ lọc từ ngữ",
|
||||
"navigation_bar.follow_requests": "Yêu cầu theo dõi",
|
||||
"navigation_bar.follows_and_followers": "Lượt theo dõi",
|
||||
|
|
@ -285,44 +285,44 @@
|
|||
"navigation_bar.keyboard_shortcuts": "Phím tắt",
|
||||
"navigation_bar.lists": "Danh sách",
|
||||
"navigation_bar.logout": "Đăng xuất",
|
||||
"navigation_bar.mutes": "Người dùng đã chặn",
|
||||
"navigation_bar.mutes": "Người dùng đã ẩn",
|
||||
"navigation_bar.personal": "Cá nhân",
|
||||
"navigation_bar.pins": "Tút ghim",
|
||||
"navigation_bar.preferences": "Tùy chỉnh",
|
||||
"navigation_bar.preferences": "Cài đặt",
|
||||
"navigation_bar.public_timeline": "Dòng thời gian liên kết",
|
||||
"navigation_bar.security": "Bảo mật",
|
||||
"notification.favourite": "{name} vừa tâm đắc tút của bạn",
|
||||
"notification.favourite": "{name} vừa thích tút của bạn",
|
||||
"notification.follow": "{name} vừa theo dõi bạn",
|
||||
"notification.follow_request": "{name} vừa yêu cầu theo dõi bạn",
|
||||
"notification.mention": "{name} nhắc đến bạn",
|
||||
"notification.own_poll": "Cuộc thăm dò của bạn đã kết thúc",
|
||||
"notification.poll": "Một cuộc thăm dò mà bạn tham gia đã kết thúc",
|
||||
"notification.reblog": "{name} chia sẻ tút của bạn",
|
||||
"notifications.clear": "Xóa thông báo",
|
||||
"notifications.clear": "Làm trống thông báo",
|
||||
"notifications.clear_confirmation": "Bạn có chắc chắn muốn xóa vĩnh viễn tất cả thông báo của mình?",
|
||||
"notifications.column_settings.alert": "Thông báo trên máy tính",
|
||||
"notifications.column_settings.favourite": "Tâm đắc:",
|
||||
"notifications.column_settings.favourite": "Lượt thích:",
|
||||
"notifications.column_settings.filter_bar.advanced": "Hiển thị toàn bộ",
|
||||
"notifications.column_settings.filter_bar.category": "Lọc nhanh",
|
||||
"notifications.column_settings.filter_bar.show": "Hiện",
|
||||
"notifications.column_settings.follow": "Người theo dõi mới:",
|
||||
"notifications.column_settings.follow_request": "Yêu cầu theo dõi mới:",
|
||||
"notifications.column_settings.mention": "Nhắc đến:",
|
||||
"notifications.column_settings.mention": "Đề cập:",
|
||||
"notifications.column_settings.poll": "Kết quả cuộc thăm dò:",
|
||||
"notifications.column_settings.push": "Thông báo đẩy",
|
||||
"notifications.column_settings.reblog": "Chia sẻ:",
|
||||
"notifications.column_settings.show": "Hiện trong cột",
|
||||
"notifications.column_settings.sound": "Mở tiếng",
|
||||
"notifications.column_settings.reblog": "Lượt chia sẻ mới:",
|
||||
"notifications.column_settings.show": "Thông báo trên thanh menu",
|
||||
"notifications.column_settings.sound": "Kèm theo tiếng \"bíp\"",
|
||||
"notifications.filter.all": "Toàn bộ",
|
||||
"notifications.filter.boosts": "Chia sẻ",
|
||||
"notifications.filter.favourites": "Tâm đắc",
|
||||
"notifications.filter.favourites": "Thích",
|
||||
"notifications.filter.follows": "Đang theo dõi",
|
||||
"notifications.filter.mentions": "Nhắc đến",
|
||||
"notifications.filter.mentions": "Lượt nhắc đến",
|
||||
"notifications.filter.polls": "Kết quả cuộc thăm dò",
|
||||
"notifications.group": "{count} thông báo",
|
||||
"poll.closed": "Cuộc thăm dò đã kết thúc",
|
||||
"poll.refresh": "Làm mới",
|
||||
"poll.total_people": "{count, plural, one {# người đã bình chọn} other {# người đã bình chọn}}",
|
||||
"poll.total_people": "{count, plural, one {# người bình chọn} other {# người bình chọn}}",
|
||||
"poll.total_votes": "{count, plural, one {# bình chọn} other {# bình chọn}}",
|
||||
"poll.vote": "Cuộc thăm dò",
|
||||
"poll.voted": "Bạn đã bình chọn câu trả lời này",
|
||||
|
|
@ -340,10 +340,10 @@
|
|||
"refresh": "Làm mới",
|
||||
"regeneration_indicator.label": "Đang tải…",
|
||||
"regeneration_indicator.sublabel": "Bảng tin của bạn đang được cập nhật!",
|
||||
"relative_time.days": "{number} ngày",
|
||||
"relative_time.hours": "{number} giờ",
|
||||
"relative_time.days": "{number}d",
|
||||
"relative_time.hours": "{number}h",
|
||||
"relative_time.just_now": "vừa xong",
|
||||
"relative_time.minutes": "{number}p",
|
||||
"relative_time.minutes": "{number}m",
|
||||
"relative_time.seconds": "{number}s",
|
||||
"relative_time.today": "hôm nay",
|
||||
"reply_indicator.cancel": "Hủy bỏ",
|
||||
|
|
@ -364,19 +364,19 @@
|
|||
"search_results.hashtags": "Hashtags",
|
||||
"search_results.statuses": "Tút",
|
||||
"search_results.statuses_fts_disabled": "Máy chủ của bạn không bật chức năng tìm kiếm tút.",
|
||||
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||
"search_results.total": "{count, number} {count, plural, one {kết quả} other {kết quả}}",
|
||||
"status.admin_account": "Mở giao diện quản trị @{name}",
|
||||
"status.admin_status": "Mở tút này trong giao diện quản trị",
|
||||
"status.block": "Chặn @{name}",
|
||||
"status.bookmark": "Lưu",
|
||||
"status.cancel_reblog_private": "Hủy chia sẻ",
|
||||
"status.cannot_reblog": "Không thể chia sẻ tút này",
|
||||
"status.copy": "Sao chép URL tút",
|
||||
"status.copy": "Sao chép URL",
|
||||
"status.delete": "Xóa",
|
||||
"status.detailed_status": "Xem chi tiết thêm",
|
||||
"status.direct": "Nhắn riêng @{name}",
|
||||
"status.embed": "Nhúng",
|
||||
"status.favourite": "Tâm đắc",
|
||||
"status.favourite": "Thích",
|
||||
"status.filtered": "Bộ lọc",
|
||||
"status.load_more": "Xem thêm",
|
||||
"status.media_hidden": "Ảnh/video đã ẩn",
|
||||
|
|
@ -414,9 +414,9 @@
|
|||
"tabs_bar.local_timeline": "Máy chủ của bạn",
|
||||
"tabs_bar.notifications": "Thông báo",
|
||||
"tabs_bar.search": "Tìm kiếm",
|
||||
"time_remaining.days": "Thời hạn còn {number, plural, other {# ngày}}",
|
||||
"time_remaining.hours": "Thời hạn còn {number, plural, other {# giờ}}",
|
||||
"time_remaining.minutes": "Thời hạn còn {number, plural, other {# phút}}",
|
||||
"time_remaining.days": "Kết thúc sau {number, plural, other {# ngày}}",
|
||||
"time_remaining.hours": "Kết thúc sau {number, plural, other {# giờ}}",
|
||||
"time_remaining.minutes": "Kết thúc sau {number, plural, other {# phút}}",
|
||||
"time_remaining.moments": "Còn lại",
|
||||
"time_remaining.seconds": "Chỉ còn {number, plural, other {# giây}}",
|
||||
"timeline_hint.remote_resource_not_displayed": "{resource} từ máy chủ khác sẽ không hiển thị.",
|
||||
|
|
|
|||
|
|
@ -426,9 +426,9 @@
|
|||
"trends.counter_by_accounts": "{count, plural, one {{counter} 人} other {{counter} 人}}正在讨论",
|
||||
"trends.trending_now": "现在流行",
|
||||
"ui.beforeunload": "如果你现在离开 Mastodon,你的草稿内容将会丢失。",
|
||||
"units.short.billion": "{count}十亿",
|
||||
"units.short.million": "{count}百万",
|
||||
"units.short.thousand": "{count}千",
|
||||
"units.short.billion": "{count}B",
|
||||
"units.short.million": "{count}M",
|
||||
"units.short.thousand": "{count}K",
|
||||
"upload_area.title": "将文件拖放到此处开始上传",
|
||||
"upload_button.label": "上传媒体文件 ({formats})",
|
||||
"upload_error.limit": "文件大小超过限制。",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"account.account_note_header": "Note",
|
||||
"account.account_note_header": "備註",
|
||||
"account.add_or_remove_from_list": "從名單中新增或移除",
|
||||
"account.badges.bot": "機械人",
|
||||
"account.badges.group": "群組",
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "關注的人",
|
||||
"account.followers.empty": "尚沒有人關注這位使用者。",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "這位使用者尚未關注任何使用者。",
|
||||
"account.follows_you": "關注你",
|
||||
"account.hide_reblogs": "隱藏 @{name} 的轉推",
|
||||
|
|
@ -441,7 +441,7 @@
|
|||
"upload_form.video_description": "簡單描述給聽障或視障人士",
|
||||
"upload_modal.analyzing_picture": "正在分析圖片…",
|
||||
"upload_modal.apply": "套用",
|
||||
"upload_modal.choose_image": "Choose image",
|
||||
"upload_modal.choose_image": "選擇圖片",
|
||||
"upload_modal.description_placeholder": "A quick brown fox 跳過那隻懶狗",
|
||||
"upload_modal.detect_text": "從圖片偵測文字",
|
||||
"upload_modal.edit_media": "編輯媒體",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"account.account_note_header": "Note",
|
||||
"account.account_note_header": "備註",
|
||||
"account.add_or_remove_from_list": "從名單中新增或移除",
|
||||
"account.badges.bot": "機器人",
|
||||
"account.badges.group": "群組",
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
"account.followers": "關注者",
|
||||
"account.followers.empty": "尚沒有人關注這位使用者。",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following_counter": "{count, plural, other {{counter} Following}}",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "這位使用者尚未關注任何使用者。",
|
||||
"account.follows_you": "關注了你",
|
||||
"account.hide_reblogs": "隱藏來自 @{name} 的轉推",
|
||||
|
|
@ -129,7 +129,7 @@
|
|||
"conversation.with": "與 {names}",
|
||||
"directory.federated": "來自已知聯邦宇宙",
|
||||
"directory.local": "僅來自 {domain}",
|
||||
"directory.new_arrivals": "新貨",
|
||||
"directory.new_arrivals": "新人",
|
||||
"directory.recently_active": "最近活躍",
|
||||
"embed.instructions": "要嵌入此嘟文,請將以下程式碼貼進你的網站。",
|
||||
"embed.preview": "他會顯示成這樣:",
|
||||
|
|
@ -441,7 +441,7 @@
|
|||
"upload_form.video_description": "簡單描述給聽障或視障人士",
|
||||
"upload_modal.analyzing_picture": "正在分析圖片…",
|
||||
"upload_modal.apply": "套用",
|
||||
"upload_modal.choose_image": "Choose image",
|
||||
"upload_modal.choose_image": "選擇圖片",
|
||||
"upload_modal.description_placeholder": "A quick brown fox 跳過那隻懶狗",
|
||||
"upload_modal.detect_text": "從圖片偵測文字",
|
||||
"upload_modal.edit_media": "編輯媒體",
|
||||
|
|
|
|||
|
|
@ -767,10 +767,3 @@ html {
|
|||
.compose-form .compose-form__warning {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.audio-player .video-player__controls button,
|
||||
.audio-player .video-player__time-sep,
|
||||
.audio-player .video-player__time-current,
|
||||
.audio-player .video-player__time-total {
|
||||
color: $primary-text-color;
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -2990,7 +2990,7 @@ a.account__display-name {
|
|||
}
|
||||
}
|
||||
|
||||
.no-reduce-motion button.icon-button i.fa-retweet {
|
||||
button.icon-button i.fa-retweet {
|
||||
background-position: 0 0;
|
||||
height: 19px;
|
||||
transition: background-position 0.9s steps(10);
|
||||
|
|
@ -3004,18 +3004,14 @@ a.account__display-name {
|
|||
|
||||
}
|
||||
|
||||
.no-reduce-motion button.icon-button.active i.fa-retweet {
|
||||
button.icon-button.active i.fa-retweet {
|
||||
transition-duration: 0.9s;
|
||||
background-position: 0 100%;
|
||||
}
|
||||
|
||||
.reduce-motion button.icon-button i.fa-retweet {
|
||||
color: $action-button-color;
|
||||
transition: color 100ms ease-in;
|
||||
}
|
||||
|
||||
.reduce-motion button.icon-button i.fa-retweet,
|
||||
.reduce-motion button.icon-button.active i.fa-retweet {
|
||||
color: $highlight-text-color;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
.status-card {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue