From 69a0ddf73396ae7018f67c287bbb0891b5dae191 Mon Sep 17 00:00:00 2001
From: Anton Bulakh <him@necauq.ua>
Date: Thu, 26 Dec 2024 13:50:54 +0000
Subject: [PATCH] fix(tags): Show tag descriptions when hovering (#1670)
---
quartz/i18n/locales/it-IT.ts | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/quartz/i18n/locales/it-IT.ts b/quartz/i18n/locales/it-IT.ts
index a0cc042..c8c5973 100644
--- a/quartz/i18n/locales/it-IT.ts
+++ b/quartz/i18n/locales/it-IT.ts
@@ -65,17 +65,18 @@
error: {
title: "Non trovato",
notFound: "Questa pagina รจ privata o non esiste.",
+ home: "Ritorna alla home page",
},
folderContent: {
folder: "Cartella",
itemsUnderFolder: ({ count }) =>
- count === 1 ? "1 oggetto in questa cartella" : `${count} oggetti in questa cartella.`,
+ count === 1 ? "1 oggetto in questa cartella." : `${count} oggetti in questa cartella.`,
},
tagContent: {
tag: "Etichetta",
tagIndex: "Indice etichette",
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.`,
totalTags: ({ count }) => `Trovate ${count} etichette totali.`,
},
--
Gitblit v1.10.0