From 9db66d500eee958b61d73182e9f274d32a633c79 Mon Sep 17 00:00:00 2001
From: Emile Bangma <github@emilebangma.com>
Date: Sun, 06 Apr 2025 22:23:49 +0000
Subject: [PATCH] fix(popover): round coords remove blurred popovers (#1911)
---
quartz/i18n/locales/nl-NL.ts | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/quartz/i18n/locales/nl-NL.ts b/quartz/i18n/locales/nl-NL.ts
index b403623..ccbafa7 100644
--- a/quartz/i18n/locales/nl-NL.ts
+++ b/quartz/i18n/locales/nl-NL.ts
@@ -53,6 +53,10 @@
tableOfContents: {
title: "Inhoudsopgave",
},
+ contentMeta: {
+ readingTime: ({ minutes }) =>
+ minutes === 1 ? "1 minuut leestijd" : `${minutes} minuten leestijd`,
+ },
},
pages: {
rss: {
@@ -62,11 +66,12 @@
error: {
title: "Niet gevonden",
notFound: "Deze pagina is niet zichtbaar of bestaat niet.",
+ home: "Keer terug naar de start pagina",
},
folderContent: {
folder: "Map",
itemsUnderFolder: ({ count }) =>
- count === 1 ? "1 item in deze map" : `${count} items in deze map.`,
+ count === 1 ? "1 item in deze map." : `${count} items in deze map.`,
},
tagContent: {
tag: "Label",
--
Gitblit v1.10.0