From ec00a40aefca73596ab76e3ebe3a8e1129b43688 Mon Sep 17 00:00:00 2001
From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 27 Jan 2026 18:27:17 +0000
Subject: [PATCH] chore(deps): bump the production-dependencies group with 4 updates (#2289)
---
quartz/i18n/locales/it-IT.ts | 24 +++++++++++++++---------
1 files changed, 15 insertions(+), 9 deletions(-)
diff --git a/quartz/i18n/locales/it-IT.ts b/quartz/i18n/locales/it-IT.ts
index ca8818a..0be7d70 100644
--- a/quartz/i18n/locales/it-IT.ts
+++ b/quartz/i18n/locales/it-IT.ts
@@ -8,7 +8,7 @@
components: {
callout: {
note: "Nota",
- abstract: "Astratto",
+ abstract: "Abstract",
info: "Info",
todo: "Da fare",
tip: "Consiglio",
@@ -17,7 +17,7 @@
warning: "Attenzione",
failure: "Errore",
danger: "Pericolo",
- bug: "Bug",
+ bug: "Problema",
example: "Esempio",
quote: "Citazione",
},
@@ -29,6 +29,9 @@
lightMode: "Tema chiaro",
darkMode: "Tema scuro",
},
+ readerMode: {
+ title: "Modalità lettura",
+ },
explorer: {
title: "Esplora",
},
@@ -40,10 +43,11 @@
},
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: {
@@ -51,20 +55,21 @@
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",
notFound: "Questa pagina è privata o non esiste.",
+ home: "Ritorna alla home page",
},
folderContent: {
folder: "Cartella",
@@ -76,8 +81,9 @@
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
--
Gitblit v1.10.0