From f47b431c635c2004f5d48ebfaa77c26b5ac4816b 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/hu-HU.ts | 8 ++++++++ src/i18n/locales/id-ID.ts | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 src/i18n/locales/hu-HU.ts create mode 100644 src/i18n/locales/id-ID.ts diff --git a/src/i18n/locales/hu-HU.ts b/src/i18n/locales/hu-HU.ts new file mode 100644 index 0000000..e71223f --- /dev/null +++ b/src/i18n/locales/hu-HU.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Legutóbbi jegyzetek", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +}; diff --git a/src/i18n/locales/id-ID.ts b/src/i18n/locales/id-ID.ts new file mode 100644 index 0000000..b151394 --- /dev/null +++ b/src/i18n/locales/id-ID.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Catatan Terbaru", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +};