From 94fbf5b0668cc0f4352d433fcb37d621e8aed988 Mon Sep 17 00:00:00 2001
From: RunTheBot <58890327+RunTheBot@users.noreply.github.com>
Date: Wed, 29 May 2024 19:52:53 +0000
Subject: [PATCH] fix: Reorder Unified.js plugins to fix #1132 (#1139)
---
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