mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-11-30 09:47:56 +01:00
feat(i18n): update Italian translations for coherency (#2189)
Update Italian translation for better plurals and idioms consistency
This commit is contained in:
@@ -8,7 +8,7 @@ export default {
|
|||||||
components: {
|
components: {
|
||||||
callout: {
|
callout: {
|
||||||
note: "Nota",
|
note: "Nota",
|
||||||
abstract: "Astratto",
|
abstract: "Abstract",
|
||||||
info: "Info",
|
info: "Info",
|
||||||
todo: "Da fare",
|
todo: "Da fare",
|
||||||
tip: "Consiglio",
|
tip: "Consiglio",
|
||||||
@@ -17,7 +17,7 @@ export default {
|
|||||||
warning: "Attenzione",
|
warning: "Attenzione",
|
||||||
failure: "Errore",
|
failure: "Errore",
|
||||||
danger: "Pericolo",
|
danger: "Pericolo",
|
||||||
bug: "Bug",
|
bug: "Problema",
|
||||||
example: "Esempio",
|
example: "Esempio",
|
||||||
quote: "Citazione",
|
quote: "Citazione",
|
||||||
},
|
},
|
||||||
@@ -43,10 +43,11 @@ export default {
|
|||||||
},
|
},
|
||||||
recentNotes: {
|
recentNotes: {
|
||||||
title: "Note recenti",
|
title: "Note recenti",
|
||||||
seeRemainingMore: ({ remaining }) => `Vedi ${remaining} altro →`,
|
seeRemainingMore: ({ remaining }) =>
|
||||||
|
remaining === 1 ? "Vedi 1 altra →" : `Vedi altre ${remaining} →`,
|
||||||
},
|
},
|
||||||
transcludes: {
|
transcludes: {
|
||||||
transcludeOf: ({ targetSlug }) => `Transclusione di ${targetSlug}`,
|
transcludeOf: ({ targetSlug }) => `Inclusione di ${targetSlug}`,
|
||||||
linkToOriginal: "Link all'originale",
|
linkToOriginal: "Link all'originale",
|
||||||
},
|
},
|
||||||
search: {
|
search: {
|
||||||
@@ -54,16 +55,16 @@ export default {
|
|||||||
searchBarPlaceholder: "Cerca qualcosa",
|
searchBarPlaceholder: "Cerca qualcosa",
|
||||||
},
|
},
|
||||||
tableOfContents: {
|
tableOfContents: {
|
||||||
title: "Tabella dei contenuti",
|
title: "Indice",
|
||||||
},
|
},
|
||||||
contentMeta: {
|
contentMeta: {
|
||||||
readingTime: ({ minutes }) => `${minutes} minuti`,
|
readingTime: ({ minutes }) => (minutes === 1 ? "1 minuto" : `${minutes} minuti`),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
pages: {
|
pages: {
|
||||||
rss: {
|
rss: {
|
||||||
recentNotes: "Note recenti",
|
recentNotes: "Note recenti",
|
||||||
lastFewNotes: ({ count }) => `Ultime ${count} note`,
|
lastFewNotes: ({ count }) => (count === 1 ? "Ultima nota" : `Ultime ${count} note`),
|
||||||
},
|
},
|
||||||
error: {
|
error: {
|
||||||
title: "Non trovato",
|
title: "Non trovato",
|
||||||
@@ -80,8 +81,9 @@ export default {
|
|||||||
tagIndex: "Indice etichette",
|
tagIndex: "Indice etichette",
|
||||||
itemsUnderTag: ({ count }) =>
|
itemsUnderTag: ({ count }) =>
|
||||||
count === 1 ? "1 oggetto con questa etichetta." : `${count} oggetti con questa etichetta.`,
|
count === 1 ? "1 oggetto con questa etichetta." : `${count} oggetti con questa etichetta.`,
|
||||||
showingFirst: ({ count }) => `Prime ${count} etichette.`,
|
showingFirst: ({ count }) => (count === 1 ? "Prima etichetta." : `Prime ${count} etichette.`),
|
||||||
totalTags: ({ count }) => `Trovate ${count} etichette totali.`,
|
totalTags: ({ count }) =>
|
||||||
|
count === 1 ? "Trovata 1 etichetta in totale." : `Trovate ${count} etichette totali.`,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
} as const satisfies Translation
|
} as const satisfies Translation
|
||||||
|
|||||||
Reference in New Issue
Block a user