From 9de370ae14584ca5301440019190da1854f80c26 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed, 04 Jun 2025 22:00:41 +0000
Subject: [PATCH] watcher: manually ignore .git changes
---
quartz/i18n/locales/ro-RO.ts | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/quartz/i18n/locales/ro-RO.ts b/quartz/i18n/locales/ro-RO.ts
index a1c216d..007d901 100644
--- a/quartz/i18n/locales/ro-RO.ts
+++ b/quartz/i18n/locales/ro-RO.ts
@@ -29,6 +29,9 @@
lightMode: "Modul luminos",
darkMode: "Modul întunecat",
},
+ readerMode: {
+ title: "Modul de citire",
+ },
explorer: {
title: "Explorator",
},
@@ -54,7 +57,8 @@
title: "Cuprins",
},
contentMeta: {
- readingTime: ({ minutes }) => `${minutes} min read`,
+ readingTime: ({ minutes }) =>
+ minutes == 1 ? `lectură de 1 minut` : `lectură de ${minutes} minute`,
},
},
pages: {
@@ -65,6 +69,7 @@
error: {
title: "Pagina nu a fost găsită",
notFound: "Fie această pagină este privată, fie nu există.",
+ home: "Reveniți la pagina de pornire",
},
folderContent: {
folder: "Dosar",
--
Gitblit v1.10.0