feat: improve title and layout of the confirm dialog (#2307)
This commit is contained in:
parent
54e53889e5
commit
0451ac98c9
@ -26,7 +26,8 @@ function shareAccount() {
|
|||||||
|
|
||||||
async function toggleReblogs() {
|
async function toggleReblogs() {
|
||||||
if (!relationship!.showingReblogs && await openConfirmDialog({
|
if (!relationship!.showingReblogs && await openConfirmDialog({
|
||||||
title: t('confirm.show_reblogs.title', [account.acct]),
|
title: t('confirm.show_reblogs.title'),
|
||||||
|
description: t('confirm.show_reblogs.description', [account.acct]),
|
||||||
confirm: t('confirm.show_reblogs.confirm'),
|
confirm: t('confirm.show_reblogs.confirm'),
|
||||||
cancel: t('confirm.show_reblogs.cancel'),
|
cancel: t('confirm.show_reblogs.cancel'),
|
||||||
}) !== 'confirm')
|
}) !== 'confirm')
|
||||||
|
@ -58,7 +58,8 @@ async function removeList() {
|
|||||||
return
|
return
|
||||||
|
|
||||||
const confirmDelete = await openConfirmDialog({
|
const confirmDelete = await openConfirmDialog({
|
||||||
title: t('confirm.delete_list.title', [list.value.title]),
|
title: t('confirm.delete_list.title'),
|
||||||
|
description: t('confirm.delete_list.description', [list.value.title]),
|
||||||
confirm: t('confirm.delete_list.confirm'),
|
confirm: t('confirm.delete_list.confirm'),
|
||||||
cancel: t('confirm.delete_list.cancel'),
|
cancel: t('confirm.delete_list.cancel'),
|
||||||
})
|
})
|
||||||
|
@ -10,7 +10,7 @@ const emit = defineEmits<{
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div flex="~ col" gap-6>
|
<div flex="~ col" gap-6>
|
||||||
<div font-bold text-lg text-center>
|
<div font-bold text-lg>
|
||||||
{{ title }}
|
{{ title }}
|
||||||
</div>
|
</div>
|
||||||
<div v-if="description">
|
<div v-if="description">
|
||||||
|
@ -66,6 +66,7 @@ async function shareLink(status: mastodon.v1.Status) {
|
|||||||
async function deleteStatus() {
|
async function deleteStatus() {
|
||||||
if (await openConfirmDialog({
|
if (await openConfirmDialog({
|
||||||
title: t('confirm.delete_posts.title'),
|
title: t('confirm.delete_posts.title'),
|
||||||
|
description: t('confirm.delete_posts.description'),
|
||||||
confirm: t('confirm.delete_posts.confirm'),
|
confirm: t('confirm.delete_posts.confirm'),
|
||||||
cancel: t('confirm.delete_posts.cancel'),
|
cancel: t('confirm.delete_posts.cancel'),
|
||||||
}) !== 'confirm')
|
}) !== 'confirm')
|
||||||
@ -83,6 +84,7 @@ async function deleteStatus() {
|
|||||||
async function deleteAndRedraft() {
|
async function deleteAndRedraft() {
|
||||||
if (await openConfirmDialog({
|
if (await openConfirmDialog({
|
||||||
title: t('confirm.delete_posts.title'),
|
title: t('confirm.delete_posts.title'),
|
||||||
|
description: t('confirm.delete_posts.description'),
|
||||||
confirm: t('confirm.delete_posts.confirm'),
|
confirm: t('confirm.delete_posts.confirm'),
|
||||||
cancel: t('confirm.delete_posts.cancel'),
|
cancel: t('confirm.delete_posts.cancel'),
|
||||||
}) !== 'confirm')
|
}) !== 'confirm')
|
||||||
|
@ -41,6 +41,7 @@ export async function toggleFollowAccount(relationship: mastodon.v1.Relationship
|
|||||||
if (unfollow) {
|
if (unfollow) {
|
||||||
if (await openConfirmDialog({
|
if (await openConfirmDialog({
|
||||||
title: i18n.t('confirm.unfollow.title'),
|
title: i18n.t('confirm.unfollow.title'),
|
||||||
|
description: i18n.t('confirm.unfollow.description', [`@${account.acct}`]),
|
||||||
confirm: i18n.t('confirm.unfollow.confirm'),
|
confirm: i18n.t('confirm.unfollow.confirm'),
|
||||||
cancel: i18n.t('confirm.unfollow.cancel'),
|
cancel: i18n.t('confirm.unfollow.cancel'),
|
||||||
}) !== 'confirm')
|
}) !== 'confirm')
|
||||||
@ -66,7 +67,8 @@ export async function toggleMuteAccount(relationship: mastodon.v1.Relationship,
|
|||||||
const i18n = useNuxtApp().$i18n
|
const i18n = useNuxtApp().$i18n
|
||||||
|
|
||||||
if (!relationship!.muting && await openConfirmDialog({
|
if (!relationship!.muting && await openConfirmDialog({
|
||||||
title: i18n.t('confirm.mute_account.title', [account.acct]),
|
title: i18n.t('confirm.mute_account.title'),
|
||||||
|
description: i18n.t('confirm.mute_account.description', [account.acct]),
|
||||||
confirm: i18n.t('confirm.mute_account.confirm'),
|
confirm: i18n.t('confirm.mute_account.confirm'),
|
||||||
cancel: i18n.t('confirm.mute_account.cancel'),
|
cancel: i18n.t('confirm.mute_account.cancel'),
|
||||||
}) !== 'confirm')
|
}) !== 'confirm')
|
||||||
@ -85,7 +87,8 @@ export async function toggleBlockAccount(relationship: mastodon.v1.Relationship,
|
|||||||
const i18n = useNuxtApp().$i18n
|
const i18n = useNuxtApp().$i18n
|
||||||
|
|
||||||
if (!relationship!.blocking && await openConfirmDialog({
|
if (!relationship!.blocking && await openConfirmDialog({
|
||||||
title: i18n.t('confirm.block_account.title', [account.acct]),
|
title: i18n.t('confirm.block_account.title'),
|
||||||
|
description: i18n.t('confirm.block_account.description', [account.acct]),
|
||||||
confirm: i18n.t('confirm.block_account.confirm'),
|
confirm: i18n.t('confirm.block_account.confirm'),
|
||||||
cancel: i18n.t('confirm.block_account.cancel'),
|
cancel: i18n.t('confirm.block_account.cancel'),
|
||||||
}) !== 'confirm')
|
}) !== 'confirm')
|
||||||
@ -100,7 +103,8 @@ export async function toggleBlockDomain(relationship: mastodon.v1.Relationship,
|
|||||||
const i18n = useNuxtApp().$i18n
|
const i18n = useNuxtApp().$i18n
|
||||||
|
|
||||||
if (!relationship!.domainBlocking && await openConfirmDialog({
|
if (!relationship!.domainBlocking && await openConfirmDialog({
|
||||||
title: i18n.t('confirm.block_domain.title', [getServerName(account)]),
|
title: i18n.t('confirm.block_domain.title'),
|
||||||
|
description: i18n.t('confirm.block_domain.description', [getServerName(account)]),
|
||||||
confirm: i18n.t('confirm.block_domain.confirm'),
|
confirm: i18n.t('confirm.block_domain.confirm'),
|
||||||
cancel: i18n.t('confirm.block_domain.cancel'),
|
cancel: i18n.t('confirm.block_domain.cancel'),
|
||||||
}) !== 'confirm')
|
}) !== 'confirm')
|
||||||
|
@ -120,12 +120,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "إلغاء",
|
"cancel": "إلغاء",
|
||||||
"confirm": "حظر",
|
"confirm": "حظر",
|
||||||
"title": "هل أنت متأكد أنك تريد حظر {0}؟"
|
"description": "هل أنت متأكد أنك تريد حظر {0}؟"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "إلغاء",
|
"cancel": "إلغاء",
|
||||||
"confirm": "حظر",
|
"confirm": "حظر",
|
||||||
"title": "هل أنت متأكد أنك تريد حظر {0}؟"
|
"description": "هل أنت متأكد أنك تريد حظر {0}؟"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "لا",
|
"cancel": "لا",
|
||||||
@ -134,27 +134,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "إلغاء",
|
"cancel": "إلغاء",
|
||||||
"confirm": "حذف",
|
"confirm": "حذف",
|
||||||
"title": "هل أنت متأكد أنك تريد حذف القائمة \"{0}\"؟"
|
"description": "هل أنت متأكد أنك تريد حذف القائمة \"{0}\"؟"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "إلغاء",
|
"cancel": "إلغاء",
|
||||||
"confirm": "حذف",
|
"confirm": "حذف",
|
||||||
"title": "هل أنت متأكد أنك تريد حذف هذا المنشور؟"
|
"description": "هل أنت متأكد أنك تريد حذف هذا المنشور؟"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "إلغاء",
|
"cancel": "إلغاء",
|
||||||
"confirm": "كتم",
|
"confirm": "كتم",
|
||||||
"title": "هل أنت متأكد أنك تريد كتم {0}؟"
|
"description": "هل أنت متأكد أنك تريد كتم {0}؟"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "إلغاء",
|
"cancel": "إلغاء",
|
||||||
"confirm": "اعرض",
|
"confirm": "اعرض",
|
||||||
"title": "هل أنت متأكد أنك تريد إظهار إعادة المدونات من {0}؟"
|
"description": "هل أنت متأكد أنك تريد إظهار إعادة المدونات من {0}؟"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "إلغاء",
|
"cancel": "إلغاء",
|
||||||
"confirm": "إلغاء المتابعة",
|
"confirm": "إلغاء المتابعة",
|
||||||
"title": "هل أنت متأكد أنك تريد إلغاء المتابعة؟"
|
"description": "هل أنت متأكد أنك تريد إلغاء المتابعة؟"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -58,36 +58,36 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Cancel·la",
|
"cancel": "Cancel·la",
|
||||||
"confirm": "Bloqueja",
|
"confirm": "Bloqueja",
|
||||||
"title": "Segur que vols bloquejar {0}?"
|
"description": "Segur que vols bloquejar {0}?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Cancel·la",
|
"cancel": "Cancel·la",
|
||||||
"confirm": "Bloqueja",
|
"confirm": "Bloqueja",
|
||||||
"title": "Segur que vols bloquejar {0}?"
|
"description": "Segur que vols bloquejar {0}?"
|
||||||
},
|
},
|
||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Cancel·la",
|
"cancel": "Cancel·la",
|
||||||
"confirm": "Elimina",
|
"confirm": "Elimina",
|
||||||
"title": "Segur que vols eliminar la llista «{0}»?"
|
"description": "Segur que vols eliminar la llista «{0}»?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Cancel·la",
|
"cancel": "Cancel·la",
|
||||||
"confirm": "Elimina",
|
"confirm": "Elimina",
|
||||||
"title": "Segur que vols eliminar la publicació?"
|
"description": "Segur que vols eliminar la publicació?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Cancel·la",
|
"cancel": "Cancel·la",
|
||||||
"confirm": "Silencia",
|
"confirm": "Silencia",
|
||||||
"title": "Segur que vols silenciar {0}?"
|
"description": "Segur que vols silenciar {0}?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Cancel·la",
|
"cancel": "Cancel·la",
|
||||||
"confirm": "Mostra",
|
"confirm": "Mostra",
|
||||||
"title": "Segur que vols mostrar els impulsos de: {0}?"
|
"description": "Segur que vols mostrar els impulsos de: {0}?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Cancel·la",
|
"cancel": "Cancel·la",
|
||||||
"title": "Segur que vols deixar de seguir-lo?"
|
"description": "Segur que vols deixar de seguir-lo?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"custom_cards": {
|
"custom_cards": {
|
||||||
|
@ -109,12 +109,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Cancel·lar",
|
"cancel": "Cancel·lar",
|
||||||
"confirm": "Bloc",
|
"confirm": "Bloc",
|
||||||
"title": "Confirmes que vols bloquejar {0}?"
|
"description": "Confirmes que vols bloquejar {0}?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Cancel·lar",
|
"cancel": "Cancel·lar",
|
||||||
"confirm": "Bloc",
|
"confirm": "Bloc",
|
||||||
"title": "Confirmes que vols bloquejar {0}?"
|
"description": "Confirmes que vols bloquejar {0}?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "No",
|
"cancel": "No",
|
||||||
@ -123,27 +123,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Cancel·lar",
|
"cancel": "Cancel·lar",
|
||||||
"confirm": "Suprimeix",
|
"confirm": "Suprimeix",
|
||||||
"title": "Esteu segur que voleu suprimir la llista \"{0}\"?"
|
"description": "Esteu segur que voleu suprimir la llista \"{0}\"?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Cancel·lar",
|
"cancel": "Cancel·lar",
|
||||||
"confirm": "Suprimeix",
|
"confirm": "Suprimeix",
|
||||||
"title": "Esteu segur que voleu suprimir aquesta publicació?"
|
"description": "Esteu segur que voleu suprimir aquesta publicació?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Cancel·lar",
|
"cancel": "Cancel·lar",
|
||||||
"confirm": "Silenciar",
|
"confirm": "Silenciar",
|
||||||
"title": "Confirmes que vols silenciar {0}?"
|
"description": "Confirmes que vols silenciar {0}?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Cancel·lar",
|
"cancel": "Cancel·lar",
|
||||||
"confirm": "Espectacle",
|
"confirm": "Espectacle",
|
||||||
"title": "Confirmes que vols mostrar els augments de {0}?"
|
"description": "Confirmes que vols mostrar els augments de {0}?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Cancel·lar",
|
"cancel": "Cancel·lar",
|
||||||
"confirm": "Deixa de seguir",
|
"confirm": "Deixa de seguir",
|
||||||
"title": "Estàs segur que vols deixar de seguir?"
|
"description": "Estàs segur que vols deixar de seguir?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -113,12 +113,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Abbrechen",
|
"cancel": "Abbrechen",
|
||||||
"confirm": "Blockieren",
|
"confirm": "Blockieren",
|
||||||
"title": "Bist du sicher, dass du {0} blockieren möchtest?"
|
"description": "Bist du sicher, dass du {0} blockieren möchtest?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Abbrechen",
|
"cancel": "Abbrechen",
|
||||||
"confirm": "Blockieren",
|
"confirm": "Blockieren",
|
||||||
"title": "Bist du sicher, dass du {0} blockieren möchtest?"
|
"description": "Bist du sicher, dass du {0} blockieren möchtest?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "Abbrechen",
|
"cancel": "Abbrechen",
|
||||||
@ -127,27 +127,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Abbrechen",
|
"cancel": "Abbrechen",
|
||||||
"confirm": "Löschen",
|
"confirm": "Löschen",
|
||||||
"title": "Bist du sicher, dass du die Liste \"{0}\" löschen möchtest?"
|
"description": "Bist du sicher, dass du die Liste \"{0}\" löschen möchtest?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Abbrechen",
|
"cancel": "Abbrechen",
|
||||||
"confirm": "Löschen",
|
"confirm": "Löschen",
|
||||||
"title": "Möchtest du diesen Beitrag wirklich löschen?"
|
"description": "Möchtest du diesen Beitrag wirklich löschen?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Abbrechen",
|
"cancel": "Abbrechen",
|
||||||
"confirm": "Stummschalten",
|
"confirm": "Stummschalten",
|
||||||
"title": "Bist du sicher, dass du {0} stummschalten möchtest?"
|
"description": "Bist du sicher, dass du {0} stummschalten möchtest?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Abbrechen",
|
"cancel": "Abbrechen",
|
||||||
"confirm": "Anzeigen",
|
"confirm": "Anzeigen",
|
||||||
"title": "Bist du sicher, dass du Weiterleitungen von {0} anzeigen möchtest?"
|
"description": "Bist du sicher, dass du Weiterleitungen von {0} anzeigen möchtest?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Abbrechen",
|
"cancel": "Abbrechen",
|
||||||
"confirm": "Entfolgen",
|
"confirm": "Entfolgen",
|
||||||
"title": "Bist du sicher, dass du entfolgen möchtest?"
|
"description": "Bist du sicher, dass du entfolgen möchtest?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -120,12 +120,14 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
"confirm": "Block",
|
"confirm": "Block",
|
||||||
"title": "Are you sure you want to block {0}?"
|
"description": "Are you sure you want to block {0}?",
|
||||||
|
"title": "Block account"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
"confirm": "Block",
|
"confirm": "Block",
|
||||||
"title": "Are you sure you want to block {0}?"
|
"description": "Are you sure you want to block {0}?",
|
||||||
|
"title": "Block domain"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "No",
|
"cancel": "No",
|
||||||
@ -134,27 +136,32 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
"confirm": "Delete",
|
"confirm": "Delete",
|
||||||
"title": "Are you sure you want to delete the \"{0}\" list?"
|
"description": "Are you sure you want to delete the \"{0}\" list?",
|
||||||
|
"title": "Delete list"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
"confirm": "Delete",
|
"confirm": "Delete",
|
||||||
"title": "Are you sure you want to delete this post?"
|
"description": "Are you sure you want to delete this post?",
|
||||||
|
"title": "Delete post"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
"confirm": "Mute",
|
"confirm": "Mute",
|
||||||
"title": "Are you sure you want to mute {0}?"
|
"description": "Are you sure you want to mute {0}?",
|
||||||
|
"title": "Mute account"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
"confirm": "Show",
|
"confirm": "Show",
|
||||||
"title": "Are you sure you want to show boosts from {0}?"
|
"description": "Are you sure you want to show boosts from {0}?",
|
||||||
|
"title": "Show boosts"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
"confirm": "Unfollow",
|
"confirm": "Unfollow",
|
||||||
"title": "Are you sure you want to unfollow?"
|
"description": "Are you sure you want to unfollow {0}?",
|
||||||
|
"title": "Unfollow"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -47,26 +47,26 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "No",
|
"cancel": "No",
|
||||||
"confirm": "Sí, bloquear",
|
"confirm": "Sí, bloquear",
|
||||||
"title": "¿De verdad quieres bloquear a {0}?"
|
"description": "¿De verdad quieres bloquear a {0}?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "No",
|
"cancel": "No",
|
||||||
"confirm": "Sí, ocultar",
|
"confirm": "Sí, ocultar",
|
||||||
"title": "¿De verdad quieres ocultar a {0}?"
|
"description": "¿De verdad quieres ocultar a {0}?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"title": "¿De verdad quieres eliminar esta publicación?"
|
"description": "¿De verdad quieres eliminar esta publicación?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"title": "¿De verdad quieres silenciar a {0}?"
|
"description": "¿De verdad quieres silenciar a {0}?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "No",
|
"cancel": "No",
|
||||||
"confirm": "Sí, ver",
|
"confirm": "Sí, ver",
|
||||||
"title": "¿De verdad quieres ver los retoots de {0}"
|
"description": "¿De verdad quieres ver los retoots de {0}"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"title": "¿De verdad quieres dejar de seguir?"
|
"description": "¿De verdad quieres dejar de seguir?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"error": {
|
"error": {
|
||||||
|
@ -120,12 +120,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Bloquear",
|
"confirm": "Bloquear",
|
||||||
"title": "¿Estás seguro que quieres bloquear a {0}?"
|
"description": "¿Estás seguro que quieres bloquear a {0}?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Bloquear",
|
"confirm": "Bloquear",
|
||||||
"title": "¿Estás seguro que quieres bloquear a {0}?"
|
"description": "¿Estás seguro que quieres bloquear a {0}?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "No",
|
"cancel": "No",
|
||||||
@ -134,27 +134,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Eliminar",
|
"confirm": "Eliminar",
|
||||||
"title": "¿Está seguro de querer eliminar la lista \"{0}\"?"
|
"description": "¿Está seguro de querer eliminar la lista \"{0}\"?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Eliminar",
|
"confirm": "Eliminar",
|
||||||
"title": "¿Estás seguro que quieres eliminar esta publicación?"
|
"description": "¿Estás seguro que quieres eliminar esta publicación?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Silenciar",
|
"confirm": "Silenciar",
|
||||||
"title": "¿Estás seguro que quieres silenciar a {0}?"
|
"description": "¿Estás seguro que quieres silenciar a {0}?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Mostrar",
|
"confirm": "Mostrar",
|
||||||
"title": "¿Estás seguro que quieres mostrar los retoots de {0}?"
|
"description": "¿Estás seguro que quieres mostrar los retoots de {0}?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Dejar de seguir",
|
"confirm": "Dejar de seguir",
|
||||||
"title": "¿Estás seguro que quieres dejar de seguir?"
|
"description": "¿Estás seguro que quieres dejar de seguir?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -120,12 +120,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Utzi",
|
"cancel": "Utzi",
|
||||||
"confirm": "Blokeatu",
|
"confirm": "Blokeatu",
|
||||||
"title": "Ziur {0} blokeatu nahi duzula?"
|
"description": "Ziur {0} blokeatu nahi duzula?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Utzi",
|
"cancel": "Utzi",
|
||||||
"confirm": "Blokeatu",
|
"confirm": "Blokeatu",
|
||||||
"title": "Ziur {0} domeinua blokeatu nahi duzula?"
|
"description": "Ziur {0} domeinua blokeatu nahi duzula?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "Ez",
|
"cancel": "Ez",
|
||||||
@ -134,27 +134,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Utzi",
|
"cancel": "Utzi",
|
||||||
"confirm": "Ezabatu",
|
"confirm": "Ezabatu",
|
||||||
"title": "Ziur \"{0}\" zerrenda ezabatu nahi duzula?"
|
"description": "Ziur \"{0}\" zerrenda ezabatu nahi duzula?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Utzi",
|
"cancel": "Utzi",
|
||||||
"confirm": "Ezabatu",
|
"confirm": "Ezabatu",
|
||||||
"title": "Ziur bidalketa hau ezabatu nahi duzula?"
|
"description": "Ziur bidalketa hau ezabatu nahi duzula?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Utzi",
|
"cancel": "Utzi",
|
||||||
"confirm": "Mututu",
|
"confirm": "Mututu",
|
||||||
"title": "Ziur {0} mututu nahi duzula?"
|
"description": "Ziur {0} mututu nahi duzula?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Utzi",
|
"cancel": "Utzi",
|
||||||
"confirm": "Erakutsi",
|
"confirm": "Erakutsi",
|
||||||
"title": "Ziur {0}(r)en bultzadak ikusi nahi dituzula?"
|
"description": "Ziur {0}(r)en bultzadak ikusi nahi dituzula?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Utzi",
|
"cancel": "Utzi",
|
||||||
"confirm": "Utzi jarraitzeari",
|
"confirm": "Utzi jarraitzeari",
|
||||||
"title": "Ziur jarraitzeari utzi nahi diozula?"
|
"description": "Ziur jarraitzeari utzi nahi diozula?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -114,12 +114,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Peruuta",
|
"cancel": "Peruuta",
|
||||||
"confirm": "Estä",
|
"confirm": "Estä",
|
||||||
"title": "Haluatko varmasti estää käyttäjän {0}?"
|
"description": "Haluatko varmasti estää käyttäjän {0}?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Peruuta",
|
"cancel": "Peruuta",
|
||||||
"confirm": "Estä",
|
"confirm": "Estä",
|
||||||
"title": "Haluatko varmasti estää verkkotunnuksen {0}?"
|
"description": "Haluatko varmasti estää verkkotunnuksen {0}?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "Kyllä",
|
"cancel": "Kyllä",
|
||||||
@ -128,27 +128,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Peruuta",
|
"cancel": "Peruuta",
|
||||||
"confirm": "Poista",
|
"confirm": "Poista",
|
||||||
"title": "Haluatko varmasti poistaa listan \"{0}\"?"
|
"description": "Haluatko varmasti poistaa listan \"{0}\"?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Peruuta",
|
"cancel": "Peruuta",
|
||||||
"confirm": "Poista",
|
"confirm": "Poista",
|
||||||
"title": "Haluatko varmasti poistaa tämän julkaisun?"
|
"description": "Haluatko varmasti poistaa tämän julkaisun?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Peruuta",
|
"cancel": "Peruuta",
|
||||||
"confirm": "Hiljennä",
|
"confirm": "Hiljennä",
|
||||||
"title": "Haluatko varmasti hiljentää käyttäjän {0}?"
|
"description": "Haluatko varmasti hiljentää käyttäjän {0}?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Peruuta",
|
"cancel": "Peruuta",
|
||||||
"confirm": "Näytä",
|
"confirm": "Näytä",
|
||||||
"title": "Haluatko varmasti näyttää tehostukset käyttäjältä {0}?"
|
"description": "Haluatko varmasti näyttää tehostukset käyttäjältä {0}?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Peruuta",
|
"cancel": "Peruuta",
|
||||||
"confirm": "Lopeta seuraaminen",
|
"confirm": "Lopeta seuraaminen",
|
||||||
"title": "Haluatko varmasti lopettaa seuraamisen?"
|
"description": "Haluatko varmasti lopettaa seuraamisen?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -115,12 +115,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Annuler",
|
"cancel": "Annuler",
|
||||||
"confirm": "Bloquer",
|
"confirm": "Bloquer",
|
||||||
"title": "Voulez-vous vraiment bloquer {0} ?"
|
"description": "Voulez-vous vraiment bloquer {0} ?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Annuler",
|
"cancel": "Annuler",
|
||||||
"confirm": "Bloquer",
|
"confirm": "Bloquer",
|
||||||
"title": "Voulez-vous vraiment bloquer {0} ?"
|
"description": "Voulez-vous vraiment bloquer {0} ?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "Non",
|
"cancel": "Non",
|
||||||
@ -129,27 +129,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Annuler",
|
"cancel": "Annuler",
|
||||||
"confirm": "Supprimer",
|
"confirm": "Supprimer",
|
||||||
"title": "Voulez-vous vraiment supprimer la liste \"{0}\" ?"
|
"description": "Voulez-vous vraiment supprimer la liste \"{0}\" ?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Annuler",
|
"cancel": "Annuler",
|
||||||
"confirm": "Supprimer",
|
"confirm": "Supprimer",
|
||||||
"title": "Voulez-vous vraiment supprimer ce message ?"
|
"description": "Voulez-vous vraiment supprimer ce message ?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Annuler",
|
"cancel": "Annuler",
|
||||||
"confirm": "Mettre en sourdine",
|
"confirm": "Mettre en sourdine",
|
||||||
"title": "Voulez-vous vraiment mettre en sourdine {0} ?"
|
"description": "Voulez-vous vraiment mettre en sourdine {0} ?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Annuler",
|
"cancel": "Annuler",
|
||||||
"confirm": "Afficher",
|
"confirm": "Afficher",
|
||||||
"title": "Voulez-vous vraiment afficher les partages de {0} ?"
|
"description": "Voulez-vous vraiment afficher les partages de {0} ?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Annuler",
|
"cancel": "Annuler",
|
||||||
"confirm": "Se désabonner",
|
"confirm": "Se désabonner",
|
||||||
"title": "Voulez-vous vraiment vous désabonner ?"
|
"description": "Voulez-vous vraiment vous désabonner ?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -120,12 +120,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Bloquear",
|
"confirm": "Bloquear",
|
||||||
"title": "Tes certeza de querer bloquear a {0}?"
|
"description": "Tes certeza de querer bloquear a {0}?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Bloquear",
|
"confirm": "Bloquear",
|
||||||
"title": "Tes certeza de querer bloquear {0}?"
|
"description": "Tes certeza de querer bloquear {0}?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "Non",
|
"cancel": "Non",
|
||||||
@ -134,27 +134,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Eliminar",
|
"confirm": "Eliminar",
|
||||||
"title": "Tes a certeza de querer eliminar a lista \"{0}\"?"
|
"description": "Tes a certeza de querer eliminar a lista \"{0}\"?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Eliminar",
|
"confirm": "Eliminar",
|
||||||
"title": "Tes certeza de querer eliminar esta publicación?"
|
"description": "Tes certeza de querer eliminar esta publicación?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Acalar",
|
"confirm": "Acalar",
|
||||||
"title": "Tes certeza de querer acalar a {0}?"
|
"description": "Tes certeza de querer acalar a {0}?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Mostrar",
|
"confirm": "Mostrar",
|
||||||
"title": "Tes certeza de querer mostrar as promocións de {0}?"
|
"description": "Tes certeza de querer mostrar as promocións de {0}?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Retirar",
|
"confirm": "Retirar",
|
||||||
"title": "Tes certeza de querer retirar o seguimento?"
|
"description": "Tes certeza de querer retirar o seguimento?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -120,12 +120,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Mégsem",
|
"cancel": "Mégsem",
|
||||||
"confirm": "Blokkol",
|
"confirm": "Blokkol",
|
||||||
"title": "Biztosan blokkolja? {0}"
|
"description": "Biztosan blokkolja? {0}"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Mégsem",
|
"cancel": "Mégsem",
|
||||||
"confirm": "Blokkol",
|
"confirm": "Blokkol",
|
||||||
"title": "Biztosan blokkolja? {0}"
|
"description": "Biztosan blokkolja? {0}"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "Mégsem",
|
"cancel": "Mégsem",
|
||||||
@ -134,27 +134,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Mégsem",
|
"cancel": "Mégsem",
|
||||||
"confirm": "Töröl",
|
"confirm": "Töröl",
|
||||||
"title": "Biztosan törli a listát? \"{0}\""
|
"description": "Biztosan törli a listát? \"{0}\""
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Mégsem",
|
"cancel": "Mégsem",
|
||||||
"confirm": "Töröl",
|
"confirm": "Töröl",
|
||||||
"title": "Biztosan törli a bejegyzést?"
|
"description": "Biztosan törli a bejegyzést?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Mégsem",
|
"cancel": "Mégsem",
|
||||||
"confirm": "Némít",
|
"confirm": "Némít",
|
||||||
"title": "Biztosan némítja? {0}"
|
"description": "Biztosan némítja? {0}"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Mégsem",
|
"cancel": "Mégsem",
|
||||||
"confirm": "Mutat",
|
"confirm": "Mutat",
|
||||||
"title": "Biztosan megjeleníti a Turbót tőle? {0}"
|
"description": "Biztosan megjeleníti a Turbót tőle? {0}"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Mégsem",
|
"cancel": "Mégsem",
|
||||||
"confirm": "Követés leállítása",
|
"confirm": "Követés leállítása",
|
||||||
"title": "Biztosan leállítja a követését?"
|
"description": "Biztosan leállítja a követését?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -120,12 +120,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Batalkan",
|
"cancel": "Batalkan",
|
||||||
"confirm": "Blokir",
|
"confirm": "Blokir",
|
||||||
"title": "Yakin ingin memblokir {0}?"
|
"description": "Yakin ingin memblokir {0}?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Batalkan",
|
"cancel": "Batalkan",
|
||||||
"confirm": "Blokir",
|
"confirm": "Blokir",
|
||||||
"title": "Yakin ingin memblokir {0}?"
|
"description": "Yakin ingin memblokir {0}?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "Tidak",
|
"cancel": "Tidak",
|
||||||
@ -134,27 +134,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Batalkan",
|
"cancel": "Batalkan",
|
||||||
"confirm": "Hapus",
|
"confirm": "Hapus",
|
||||||
"title": "Apakah Anda yakin ingin menghapus daftar \"{0}\"?"
|
"description": "Apakah Anda yakin ingin menghapus daftar \"{0}\"?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Batalkan",
|
"cancel": "Batalkan",
|
||||||
"confirm": "Hapus",
|
"confirm": "Hapus",
|
||||||
"title": "Yakin ingin menghapus postingan ini?"
|
"description": "Yakin ingin menghapus postingan ini?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Batalkan",
|
"cancel": "Batalkan",
|
||||||
"confirm": "Bisukan",
|
"confirm": "Bisukan",
|
||||||
"title": "Yakin ingin membisukan {0}?"
|
"description": "Yakin ingin membisukan {0}?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Batalkan",
|
"cancel": "Batalkan",
|
||||||
"confirm": "Tampilkan",
|
"confirm": "Tampilkan",
|
||||||
"title": "Yakin ingin menampilkan dukungan dari {0}?"
|
"description": "Yakin ingin menampilkan dukungan dari {0}?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Batalkan",
|
"cancel": "Batalkan",
|
||||||
"confirm": "Berhenti mengikuti",
|
"confirm": "Berhenti mengikuti",
|
||||||
"title": "Anda yakin ingin berhenti mengikuti?"
|
"description": "Anda yakin ingin berhenti mengikuti?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -120,12 +120,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Annulla",
|
"cancel": "Annulla",
|
||||||
"confirm": "Blocca",
|
"confirm": "Blocca",
|
||||||
"title": "Confermi di voler bloccare {0}?"
|
"description": "Confermi di voler bloccare {0}?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Annulla",
|
"cancel": "Annulla",
|
||||||
"confirm": "Blocca",
|
"confirm": "Blocca",
|
||||||
"title": "Confermi di voler bloccare {0}?"
|
"description": "Confermi di voler bloccare {0}?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "Annulla",
|
"cancel": "Annulla",
|
||||||
@ -134,27 +134,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Annulla",
|
"cancel": "Annulla",
|
||||||
"confirm": "Elimina",
|
"confirm": "Elimina",
|
||||||
"title": "Confermi di voler eliminare la lista \"{0}\"?"
|
"description": "Confermi di voler eliminare la lista \"{0}\"?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Annulla",
|
"cancel": "Annulla",
|
||||||
"confirm": "Elimina",
|
"confirm": "Elimina",
|
||||||
"title": "Confermi di voler eliminare questo post?"
|
"description": "Confermi di voler eliminare questo post?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Annulla",
|
"cancel": "Annulla",
|
||||||
"confirm": "Silenzia",
|
"confirm": "Silenzia",
|
||||||
"title": "Confermi di voler silenziare {0}?"
|
"description": "Confermi di voler silenziare {0}?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Annulla",
|
"cancel": "Annulla",
|
||||||
"confirm": "Mostra",
|
"confirm": "Mostra",
|
||||||
"title": "Confermi di voler mostrare i post potenziati da {0}?"
|
"description": "Confermi di voler mostrare i post potenziati da {0}?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Annulla",
|
"cancel": "Annulla",
|
||||||
"confirm": "Smetti di seguire",
|
"confirm": "Smetti di seguire",
|
||||||
"title": "Confermi di voler smettere di seguire?"
|
"description": "Confermi di voler smettere di seguire?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -115,12 +115,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "キャンセル",
|
"cancel": "キャンセル",
|
||||||
"confirm": "ブロック",
|
"confirm": "ブロック",
|
||||||
"title": "{0}さんを本当にミュートしたいですか?"
|
"description": "{0}さんを本当にミュートしたいですか?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "キャンセル",
|
"cancel": "キャンセル",
|
||||||
"confirm": "ブロック",
|
"confirm": "ブロック",
|
||||||
"title": "{0}さんを本当にブロックしたいですか?"
|
"description": "{0}さんを本当にブロックしたいですか?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "いいえ",
|
"cancel": "いいえ",
|
||||||
@ -129,27 +129,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "キャンセル",
|
"cancel": "キャンセル",
|
||||||
"confirm": "削除",
|
"confirm": "削除",
|
||||||
"title": "リスト \"{0}\" を本当に削除したいですか?"
|
"description": "リスト \"{0}\" を本当に削除したいですか?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "キャンセル",
|
"cancel": "キャンセル",
|
||||||
"confirm": "削除",
|
"confirm": "削除",
|
||||||
"title": "この投稿を本当に削除したいですか?"
|
"description": "この投稿を本当に削除したいですか?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "キャンセル",
|
"cancel": "キャンセル",
|
||||||
"confirm": "ミュート",
|
"confirm": "ミュート",
|
||||||
"title": "{0}さんを本当にミュートしたいですか?"
|
"description": "{0}さんを本当にミュートしたいですか?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "キャンセル",
|
"cancel": "キャンセル",
|
||||||
"confirm": "表示",
|
"confirm": "表示",
|
||||||
"title": "{0}さんのブーストを本当に表示したいですか?"
|
"description": "{0}さんのブーストを本当に表示したいですか?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "キャンセル",
|
"cancel": "キャンセル",
|
||||||
"confirm": "フォロー解除",
|
"confirm": "フォロー解除",
|
||||||
"title": "本当にフォロー解除したいですか?"
|
"description": "本当にフォロー解除したいですか?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -87,12 +87,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "취소",
|
"cancel": "취소",
|
||||||
"confirm": "차단",
|
"confirm": "차단",
|
||||||
"title": "정말로 {0}을/를 차단할까요?"
|
"description": "정말로 {0}을/를 차단할까요?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "취소",
|
"cancel": "취소",
|
||||||
"confirm": "차단",
|
"confirm": "차단",
|
||||||
"title": "정말로 {0}을/를 차단할까요?"
|
"description": "정말로 {0}을/를 차단할까요?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "아니오",
|
"cancel": "아니오",
|
||||||
@ -101,27 +101,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "취소",
|
"cancel": "취소",
|
||||||
"confirm": "삭제",
|
"confirm": "삭제",
|
||||||
"title": "정말로 \"{0}\" 리스트를 삭제할까요?"
|
"description": "정말로 \"{0}\" 리스트를 삭제할까요?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "취소",
|
"cancel": "취소",
|
||||||
"confirm": "삭제",
|
"confirm": "삭제",
|
||||||
"title": "정말로 이 게시물을 삭제할까요?"
|
"description": "정말로 이 게시물을 삭제할까요?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "취소",
|
"cancel": "취소",
|
||||||
"confirm": "뮤트",
|
"confirm": "뮤트",
|
||||||
"title": "정말로 {0}을/를 뮤트하시겠어요?"
|
"description": "정말로 {0}을/를 뮤트하시겠어요?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "취소",
|
"cancel": "취소",
|
||||||
"confirm": "보기",
|
"confirm": "보기",
|
||||||
"title": "정말로 {0}이/가 부스트한 게시물을 표시할까요?"
|
"description": "정말로 {0}이/가 부스트한 게시물을 표시할까요?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "취소",
|
"cancel": "취소",
|
||||||
"confirm": "언팔로우",
|
"confirm": "언팔로우",
|
||||||
"title": "정말로 언팔로우를 하시겠어요?"
|
"description": "정말로 언팔로우를 하시겠어요?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -112,12 +112,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Anuluj",
|
"cancel": "Anuluj",
|
||||||
"confirm": "Blokuj",
|
"confirm": "Blokuj",
|
||||||
"title": "Czy na pewno chcesz zablokować {0}?"
|
"description": "Czy na pewno chcesz zablokować {0}?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Anuluj",
|
"cancel": "Anuluj",
|
||||||
"confirm": "Blokuj",
|
"confirm": "Blokuj",
|
||||||
"title": "Czy na pewno chcesz zablokować {0}?"
|
"description": "Czy na pewno chcesz zablokować {0}?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "Nie",
|
"cancel": "Nie",
|
||||||
@ -126,27 +126,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Anuluj",
|
"cancel": "Anuluj",
|
||||||
"confirm": "Usuń",
|
"confirm": "Usuń",
|
||||||
"title": "Czy na pewno chcesz usunąć listę „{0}”?"
|
"description": "Czy na pewno chcesz usunąć listę „{0}”?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Anuluj",
|
"cancel": "Anuluj",
|
||||||
"confirm": "Usuń",
|
"confirm": "Usuń",
|
||||||
"title": "Czy na pewno chcesz usunąć ten post?"
|
"description": "Czy na pewno chcesz usunąć ten post?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Anuluj",
|
"cancel": "Anuluj",
|
||||||
"confirm": "Wycisz",
|
"confirm": "Wycisz",
|
||||||
"title": "Czy na pewno chcesz wyciszyć {0}?"
|
"description": "Czy na pewno chcesz wyciszyć {0}?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Anuluj",
|
"cancel": "Anuluj",
|
||||||
"confirm": "Pokaż",
|
"confirm": "Pokaż",
|
||||||
"title": "Czy na pewno chcesz pokazać podbicia od {0}?"
|
"description": "Czy na pewno chcesz pokazać podbicia od {0}?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Anuluj",
|
"cancel": "Anuluj",
|
||||||
"confirm": "Przestań obserwować",
|
"confirm": "Przestań obserwować",
|
||||||
"title": "Czy na pewno chcesz przestać obserwować?"
|
"description": "Czy na pewno chcesz przestać obserwować?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -40,27 +40,27 @@
|
|||||||
},
|
},
|
||||||
"confirm": {
|
"confirm": {
|
||||||
"block_account": {
|
"block_account": {
|
||||||
"title": "Tem certeza que quer bloquear {0}?"
|
"description": "Tem certeza que quer bloquear {0}?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"title": "Tem certeza que quer bloquear {0}?"
|
"description": "Tem certeza que quer bloquear {0}?"
|
||||||
},
|
},
|
||||||
"delete_list": {
|
"delete_list": {
|
||||||
"confirm": "Apagar",
|
"confirm": "Apagar",
|
||||||
"title": "Tem certeza que quer apagar a lista \"{0}\"?"
|
"description": "Tem certeza que quer apagar a lista \"{0}\"?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"confirm": "Apagar",
|
"confirm": "Apagar",
|
||||||
"title": "Tem certeza que quer apagar esse post?"
|
"description": "Tem certeza que quer apagar esse post?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"title": "Tem certeza que quer silenciar {0}?"
|
"description": "Tem certeza que quer silenciar {0}?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"title": "Tem certeza que quer mostrar os compartilhamentos de {0}?"
|
"description": "Tem certeza que quer mostrar os compartilhamentos de {0}?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"title": "Tem certeza que quer deixar de seguir?"
|
"description": "Tem certeza que quer deixar de seguir?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"error": {
|
"error": {
|
||||||
|
@ -120,12 +120,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Bloquear",
|
"confirm": "Bloquear",
|
||||||
"title": "Tem a certeza que pretende bloquear {0}?"
|
"description": "Tem a certeza que pretende bloquear {0}?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Bloquear",
|
"confirm": "Bloquear",
|
||||||
"title": "Tem a certeza que pretende bloquear {0}?"
|
"description": "Tem a certeza que pretende bloquear {0}?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "Não",
|
"cancel": "Não",
|
||||||
@ -134,27 +134,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Eliminar",
|
"confirm": "Eliminar",
|
||||||
"title": "Tem a certeza que pretende elimnar a lista \"{0}\"?"
|
"description": "Tem a certeza que pretende elimnar a lista \"{0}\"?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Eliminar",
|
"confirm": "Eliminar",
|
||||||
"title": "Tem a certeza que pretende eliminar esta publicação?"
|
"description": "Tem a certeza que pretende eliminar esta publicação?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Silenciar",
|
"confirm": "Silenciar",
|
||||||
"title": "Tem a certeza que pretende silenciar {0}?"
|
"description": "Tem a certeza que pretende silenciar {0}?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Mostrar",
|
"confirm": "Mostrar",
|
||||||
"title": "Tem a certeza que pretende mostrar partilhas de {0}?"
|
"description": "Tem a certeza que pretende mostrar partilhas de {0}?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"confirm": "Deixar de seguir",
|
"confirm": "Deixar de seguir",
|
||||||
"title": "Tem a certeza que pretende deixar de seguir?"
|
"description": "Tem a certeza que pretende deixar de seguir?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -113,12 +113,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Отмена",
|
"cancel": "Отмена",
|
||||||
"confirm": "Заблокировать",
|
"confirm": "Заблокировать",
|
||||||
"title": "Вы уверены, что хотите заблокировать {0}?"
|
"description": "Вы уверены, что хотите заблокировать {0}?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Отмена",
|
"cancel": "Отмена",
|
||||||
"confirm": "Заблокировать",
|
"confirm": "Заблокировать",
|
||||||
"title": "Вы уверены, что хотите заблокировать {0}?"
|
"description": "Вы уверены, что хотите заблокировать {0}?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "Нет",
|
"cancel": "Нет",
|
||||||
@ -127,27 +127,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Отмена",
|
"cancel": "Отмена",
|
||||||
"confirm": "Удалить",
|
"confirm": "Удалить",
|
||||||
"title": "Вы уверены, что хотите удалить список \"{0}\"?"
|
"description": "Вы уверены, что хотите удалить список \"{0}\"?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Отмена",
|
"cancel": "Отмена",
|
||||||
"confirm": "Удалить",
|
"confirm": "Удалить",
|
||||||
"title": "Вы уверены, что хотите удалить этот пост?"
|
"description": "Вы уверены, что хотите удалить этот пост?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Отмена",
|
"cancel": "Отмена",
|
||||||
"confirm": "Скрыть",
|
"confirm": "Скрыть",
|
||||||
"title": "Вы уверены, что хотите скрыть {0}?"
|
"description": "Вы уверены, что хотите скрыть {0}?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Нет",
|
"cancel": "Нет",
|
||||||
"confirm": "Да",
|
"confirm": "Да",
|
||||||
"title": "Вы уверены, что хотите снова видеть репосты от {0}?"
|
"description": "Вы уверены, что хотите снова видеть репосты от {0}?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Нет",
|
"cancel": "Нет",
|
||||||
"confirm": "Да",
|
"confirm": "Да",
|
||||||
"title": "Вы уверены, что хотите перестать читать этого пользователя?"
|
"description": "Вы уверены, что хотите перестать читать этого пользователя?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -112,12 +112,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "ยกเลิก",
|
"cancel": "ยกเลิก",
|
||||||
"confirm": "ปิดกั้น",
|
"confirm": "ปิดกั้น",
|
||||||
"title": "แน่ใจว่าต้องการปิดกั้น {0}?"
|
"description": "แน่ใจว่าต้องการปิดกั้น {0}?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "ยกเลิก",
|
"cancel": "ยกเลิก",
|
||||||
"confirm": "ปิดกั้น",
|
"confirm": "ปิดกั้น",
|
||||||
"title": "แน่ใจว่าต้องการปิดกั้น {0}?"
|
"description": "แน่ใจว่าต้องการปิดกั้น {0}?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "ยกเลิก",
|
"cancel": "ยกเลิก",
|
||||||
@ -126,27 +126,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "ยกเลิก",
|
"cancel": "ยกเลิก",
|
||||||
"confirm": "ลบ",
|
"confirm": "ลบ",
|
||||||
"title": "แน่ใจว่าต้องการลบรายการ \"{0}\"?"
|
"description": "แน่ใจว่าต้องการลบรายการ \"{0}\"?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "ยกเลิก",
|
"cancel": "ยกเลิก",
|
||||||
"confirm": "ลบ",
|
"confirm": "ลบ",
|
||||||
"title": "แน่ใจว่าต้องการลบโพสต์นี้?"
|
"description": "แน่ใจว่าต้องการลบโพสต์นี้?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "ยกเลิก",
|
"cancel": "ยกเลิก",
|
||||||
"confirm": "ปิดเสียง",
|
"confirm": "ปิดเสียง",
|
||||||
"title": "แน่ใจว่าต้องการปิดเสียง {0}?"
|
"description": "แน่ใจว่าต้องการปิดเสียง {0}?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "ยกเลิก",
|
"cancel": "ยกเลิก",
|
||||||
"confirm": "แสดง",
|
"confirm": "แสดง",
|
||||||
"title": "แน่ใจว่าต้องการดัน {0}?"
|
"description": "แน่ใจว่าต้องการดัน {0}?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "ยกเลิก",
|
"cancel": "ยกเลิก",
|
||||||
"confirm": "เลิกติดตาม",
|
"confirm": "เลิกติดตาม",
|
||||||
"title": "แน่ใจว่าต้องการเลิกติดตาม?"
|
"description": "แน่ใจว่าต้องการเลิกติดตาม?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -110,12 +110,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Kanselahin",
|
"cancel": "Kanselahin",
|
||||||
"confirm": "I-block",
|
"confirm": "I-block",
|
||||||
"title": "Sigurado ka bang gusto mong i-block si {0}?"
|
"description": "Sigurado ka bang gusto mong i-block si {0}?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Kanselahin",
|
"cancel": "Kanselahin",
|
||||||
"confirm": "I-block",
|
"confirm": "I-block",
|
||||||
"title": "Sigurado ka bang gusto mong i-block ang {0}?"
|
"description": "Sigurado ka bang gusto mong i-block ang {0}?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "Hindi",
|
"cancel": "Hindi",
|
||||||
@ -124,27 +124,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Kanselahin",
|
"cancel": "Kanselahin",
|
||||||
"confirm": "Burahin",
|
"confirm": "Burahin",
|
||||||
"title": "Sigurado ka bang gusto mong burahin ang listahan na \"{0}\"?"
|
"description": "Sigurado ka bang gusto mong burahin ang listahan na \"{0}\"?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Kanselahin",
|
"cancel": "Kanselahin",
|
||||||
"confirm": "Burahin",
|
"confirm": "Burahin",
|
||||||
"title": "Sigurado ka bang gusto mong burahin ang post na ito?"
|
"description": "Sigurado ka bang gusto mong burahin ang post na ito?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Kanselahin",
|
"cancel": "Kanselahin",
|
||||||
"confirm": "I-mute",
|
"confirm": "I-mute",
|
||||||
"title": "Sigurado ka bang gusto mong i-mute si {0}?"
|
"description": "Sigurado ka bang gusto mong i-mute si {0}?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Kanselahin",
|
"cancel": "Kanselahin",
|
||||||
"confirm": "Ipakita",
|
"confirm": "Ipakita",
|
||||||
"title": "Sigurado ka bang gusto mong ipakita ang mga boosts mula kay {0}?"
|
"description": "Sigurado ka bang gusto mong ipakita ang mga boosts mula kay {0}?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Kanselahin",
|
"cancel": "Kanselahin",
|
||||||
"confirm": "Huminto sa pagsunod",
|
"confirm": "Huminto sa pagsunod",
|
||||||
"title": "Sigurado ka bang gusto mong huminto sa pagsunod?"
|
"description": "Sigurado ka bang gusto mong huminto sa pagsunod?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -112,12 +112,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "İptal et",
|
"cancel": "İptal et",
|
||||||
"confirm": "Engelle",
|
"confirm": "Engelle",
|
||||||
"title": "{0}'i engellemek istediğinizden emin misiniz?"
|
"description": "{0}'i engellemek istediğinizden emin misiniz?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "İptal et",
|
"cancel": "İptal et",
|
||||||
"confirm": "Engelle",
|
"confirm": "Engelle",
|
||||||
"title": "{0}'i engellemek istediğinizden emin misiniz?"
|
"description": "{0}'i engellemek istediğinizden emin misiniz?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "Hayır",
|
"cancel": "Hayır",
|
||||||
@ -126,27 +126,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "İptal et",
|
"cancel": "İptal et",
|
||||||
"confirm": "Sil",
|
"confirm": "Sil",
|
||||||
"title": "\"{0}\" listesini silmek istediğinizden emin misiniz?"
|
"description": "\"{0}\" listesini silmek istediğinizden emin misiniz?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "İptal et",
|
"cancel": "İptal et",
|
||||||
"confirm": "Sil",
|
"confirm": "Sil",
|
||||||
"title": "Bu gönderiyi silmek istediğinizden emin misiniz?"
|
"description": "Bu gönderiyi silmek istediğinizden emin misiniz?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "İptal et",
|
"cancel": "İptal et",
|
||||||
"confirm": "Sessize al",
|
"confirm": "Sessize al",
|
||||||
"title": "{0} sessize almak istediğinizden emin misiniz?"
|
"description": "{0} sessize almak istediğinizden emin misiniz?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "İptal et",
|
"cancel": "İptal et",
|
||||||
"confirm": "Göster",
|
"confirm": "Göster",
|
||||||
"title": "{0} tarafından yapılan desteklemeleri göstermek istediğinizden emin misiniz?"
|
"description": "{0} tarafından yapılan desteklemeleri göstermek istediğinizden emin misiniz?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "İptal et",
|
"cancel": "İptal et",
|
||||||
"confirm": "Takibi bırak",
|
"confirm": "Takibi bırak",
|
||||||
"title": "Takibi bırakmak istediğinizden emin misiniz?"
|
"description": "Takibi bırakmak istediğinizden emin misiniz?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -105,7 +105,7 @@
|
|||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Скасувати",
|
"cancel": "Скасувати",
|
||||||
"confirm": "Видалити",
|
"confirm": "Видалити",
|
||||||
"title": "Ви впевнені, що хочете видалити цей допис?"
|
"description": "Ви впевнені, що хочете видалити цей допис?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -120,12 +120,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "Hủy bỏ",
|
"cancel": "Hủy bỏ",
|
||||||
"confirm": "Chặn",
|
"confirm": "Chặn",
|
||||||
"title": "Bạn có chắc muốn chặn {0}?"
|
"description": "Bạn có chắc muốn chặn {0}?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "Hủy bỏ",
|
"cancel": "Hủy bỏ",
|
||||||
"confirm": "Chặn",
|
"confirm": "Chặn",
|
||||||
"title": "Bạn có chắc muốn chặn {0}?"
|
"description": "Bạn có chắc muốn chặn {0}?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "Không",
|
"cancel": "Không",
|
||||||
@ -134,27 +134,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "Hủy bỏ",
|
"cancel": "Hủy bỏ",
|
||||||
"confirm": "Xóa",
|
"confirm": "Xóa",
|
||||||
"title": "Bạn có chắc muốn xóa \"{0}\"?"
|
"description": "Bạn có chắc muốn xóa \"{0}\"?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "Hủy bỏ",
|
"cancel": "Hủy bỏ",
|
||||||
"confirm": "Xóa",
|
"confirm": "Xóa",
|
||||||
"title": "Bạn có chắc muốn xóa tút này?"
|
"description": "Bạn có chắc muốn xóa tút này?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "Hủy bỏ",
|
"cancel": "Hủy bỏ",
|
||||||
"confirm": "Ẩn",
|
"confirm": "Ẩn",
|
||||||
"title": "Bạn có chắc muốn ẩn {0}?"
|
"description": "Bạn có chắc muốn ẩn {0}?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "Hủy bỏ",
|
"cancel": "Hủy bỏ",
|
||||||
"confirm": "Hiện",
|
"confirm": "Hiện",
|
||||||
"title": "Bạn có chắc muốn hiện lượt đăng lại từ {0}?"
|
"description": "Bạn có chắc muốn hiện lượt đăng lại từ {0}?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "Hủy bỏ",
|
"cancel": "Hủy bỏ",
|
||||||
"confirm": "Bỏ theo dõi",
|
"confirm": "Bỏ theo dõi",
|
||||||
"title": "Bạn có chắc muốn bỏ theo dõi?"
|
"description": "Bạn có chắc muốn bỏ theo dõi?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -119,12 +119,12 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"confirm": "拉黑",
|
"confirm": "拉黑",
|
||||||
"title": "你确定拉黑 {0} 吗?"
|
"description": "你确定拉黑 {0} 吗?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"confirm": "拉黑",
|
"confirm": "拉黑",
|
||||||
"title": "你确定拉黑域名 {0} 吗?"
|
"description": "你确定拉黑域名 {0} 吗?"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"cancel": "否",
|
"cancel": "否",
|
||||||
@ -133,27 +133,27 @@
|
|||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"confirm": "删除",
|
"confirm": "删除",
|
||||||
"title": "你确定要删除 \"{0}\" 列表吗?"
|
"description": "你确定要删除 \"{0}\" 列表吗?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"confirm": "删除",
|
"confirm": "删除",
|
||||||
"title": "你确定要删除这条帖文吗?"
|
"description": "你确定要删除这条帖文吗?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"confirm": "屏蔽",
|
"confirm": "屏蔽",
|
||||||
"title": "你确定屏蔽 {0} 吗?"
|
"description": "你确定屏蔽 {0} 吗?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"confirm": "显示",
|
"confirm": "显示",
|
||||||
"title": "你确定要显示来自 {0} 的转发吗?"
|
"description": "你确定要显示来自 {0} 的转发吗?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"confirm": "取消关注",
|
"confirm": "取消关注",
|
||||||
"title": "你确定要取消关注吗?"
|
"description": "你确定要取消关注吗?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
@ -107,37 +107,37 @@
|
|||||||
"block_account": {
|
"block_account": {
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"confirm": "封鎖",
|
"confirm": "封鎖",
|
||||||
"title": "你確定要封鎖 {0} 嗎?"
|
"description": "你確定要封鎖 {0} 嗎?"
|
||||||
},
|
},
|
||||||
"block_domain": {
|
"block_domain": {
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"confirm": "封鎖",
|
"confirm": "封鎖",
|
||||||
"title": "你確定要封鎖 {0} 域名嗎?"
|
"description": "你確定要封鎖 {0} 域名嗎?"
|
||||||
},
|
},
|
||||||
"delete_list": {
|
"delete_list": {
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"confirm": "確認",
|
"confirm": "確認",
|
||||||
"title": "你確定要刪除 \"{0}\" 列表嗎?"
|
"description": "你確定要刪除 \"{0}\" 列表嗎?"
|
||||||
},
|
},
|
||||||
"delete_posts": {
|
"delete_posts": {
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"confirm": "刪除",
|
"confirm": "刪除",
|
||||||
"title": "你確定要刪除這則貼文嗎?"
|
"description": "你確定要刪除這則貼文嗎?"
|
||||||
},
|
},
|
||||||
"mute_account": {
|
"mute_account": {
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"confirm": "靜音",
|
"confirm": "靜音",
|
||||||
"title": "你確定要靜音 {0} 嗎?"
|
"description": "你確定要靜音 {0} 嗎?"
|
||||||
},
|
},
|
||||||
"show_reblogs": {
|
"show_reblogs": {
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"confirm": "顯示",
|
"confirm": "顯示",
|
||||||
"title": "你確定要顯示來自 {0} 的轉發嗎?"
|
"description": "你確定要顯示來自 {0} 的轉發嗎?"
|
||||||
},
|
},
|
||||||
"unfollow": {
|
"unfollow": {
|
||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"confirm": "取消追蹤",
|
"confirm": "取消追蹤",
|
||||||
"title": "你確定要取消追蹤嗎?"
|
"description": "你確定要取消追蹤嗎?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"conversation": {
|
"conversation": {
|
||||||
|
Loading…
Reference in New Issue
Block a user