| | |
| | | components: { |
| | | callout: { |
| | | note: "Nota", |
| | | abstract: "Astratto", |
| | | abstract: "Abstract", |
| | | info: "Info", |
| | | todo: "Da fare", |
| | | tip: "Consiglio", |
| | |
| | | warning: "Attenzione", |
| | | failure: "Errore", |
| | | danger: "Pericolo", |
| | | bug: "Bug", |
| | | bug: "Problema", |
| | | example: "Esempio", |
| | | quote: "Citazione", |
| | | }, |
| | |
| | | }, |
| | | recentNotes: { |
| | | title: "Note recenti", |
| | | seeRemainingMore: ({ remaining }) => `Vedi ${remaining} altro →`, |
| | | seeRemainingMore: ({ remaining }) => |
| | | remaining === 1 ? "Vedi 1 altra →" : `Vedi altre ${remaining} →`, |
| | | }, |
| | | transcludes: { |
| | | transcludeOf: ({ targetSlug }) => `Transclusione di ${targetSlug}`, |
| | | transcludeOf: ({ targetSlug }) => `Inclusione di ${targetSlug}`, |
| | | linkToOriginal: "Link all'originale", |
| | | }, |
| | | search: { |
| | |
| | | searchBarPlaceholder: "Cerca qualcosa", |
| | | }, |
| | | tableOfContents: { |
| | | title: "Tabella dei contenuti", |
| | | title: "Indice", |
| | | }, |
| | | contentMeta: { |
| | | readingTime: ({ minutes }) => `${minutes} minuti`, |
| | | readingTime: ({ minutes }) => (minutes === 1 ? "1 minuto" : `${minutes} minuti`), |
| | | }, |
| | | }, |
| | | pages: { |
| | | rss: { |
| | | recentNotes: "Note recenti", |
| | | lastFewNotes: ({ count }) => `Ultime ${count} note`, |
| | | lastFewNotes: ({ count }) => (count === 1 ? "Ultima nota" : `Ultime ${count} note`), |
| | | }, |
| | | error: { |
| | | title: "Non trovato", |
| | |
| | | tagIndex: "Indice etichette", |
| | | itemsUnderTag: ({ count }) => |
| | | count === 1 ? "1 oggetto con questa etichetta." : `${count} oggetti con questa etichetta.`, |
| | | showingFirst: ({ count }) => `Prime ${count} etichette.`, |
| | | totalTags: ({ count }) => `Trovate ${count} etichette totali.`, |
| | | showingFirst: ({ count }) => (count === 1 ? "Prima etichetta." : `Prime ${count} etichette.`), |
| | | totalTags: ({ count }) => |
| | | count === 1 ? "Trovata 1 etichetta in totale." : `Trovate ${count} etichette totali.`, |
| | | }, |
| | | }, |
| | | } as const satisfies Translation |