From a44f9fc89bae46579dd59afaf4e9e6fbcd9d1209 Mon Sep 17 00:00:00 2001 From: saberzero1 Date: Sat, 4 Apr 2026 01:49:54 +0200 Subject: [PATCH] i18n: add translations for 30 locales from Quartz v4 --- src/i18n/locales/nl-NL.ts | 8 ++++++++ src/i18n/locales/pl-PL.ts | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 src/i18n/locales/nl-NL.ts create mode 100644 src/i18n/locales/pl-PL.ts diff --git a/src/i18n/locales/nl-NL.ts b/src/i18n/locales/nl-NL.ts new file mode 100644 index 0000000..dd8e7b7 --- /dev/null +++ b/src/i18n/locales/nl-NL.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Recente notities", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +}; diff --git a/src/i18n/locales/pl-PL.ts b/src/i18n/locales/pl-PL.ts new file mode 100644 index 0000000..61470ff --- /dev/null +++ b/src/i18n/locales/pl-PL.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Najnowsze notatki", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +};