From 8cf3e3001f2cbd18da73fcc92ae5f4b76d3ecf21 Mon Sep 17 00:00:00 2001
From: Patsagorn Y. <49602385+ptsgrn@users.noreply.github.com>
Date: Thu, 16 Jan 2025 20:44:33 +0000
Subject: [PATCH] feat(i18n): Thai translations (#1722)
---
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