From b7793bd856979d0515a75c4c7a322912bdb72602 Mon Sep 17 00:00:00 2001
From: Peter <GitHub@Stather.me>
Date: Wed, 10 Jul 2024 00:21:00 +0000
Subject: [PATCH] feat(style): Add textHighlight theme setting (#1242)
---
quartz/i18n/locales/ro-RO.ts | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/quartz/i18n/locales/ro-RO.ts b/quartz/i18n/locales/ro-RO.ts
index a1c216d..2de1c8c 100644
--- a/quartz/i18n/locales/ro-RO.ts
+++ b/quartz/i18n/locales/ro-RO.ts
@@ -54,7 +54,8 @@
title: "Cuprins",
},
contentMeta: {
- readingTime: ({ minutes }) => `${minutes} min read`,
+ readingTime: ({ minutes }) =>
+ minutes == 1 ? `lectură de 1 minut` : `lectură de ${minutes} minute`,
},
},
pages: {
@@ -65,6 +66,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