From 4de24ef005cac0ce34c8b435c42b00e38330fb4f 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/lt-LT.ts | 8 ++++++++ src/i18n/locales/nb-NO.ts | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 src/i18n/locales/lt-LT.ts create mode 100644 src/i18n/locales/nb-NO.ts diff --git a/src/i18n/locales/lt-LT.ts b/src/i18n/locales/lt-LT.ts new file mode 100644 index 0000000..244ecc1 --- /dev/null +++ b/src/i18n/locales/lt-LT.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Naujausi Užrašai", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +}; diff --git a/src/i18n/locales/nb-NO.ts b/src/i18n/locales/nb-NO.ts new file mode 100644 index 0000000..e418ccd --- /dev/null +++ b/src/i18n/locales/nb-NO.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Nylige notater", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +};