From ee0342eacea5e75b3cb4102cd2f993fbabc04745 Mon Sep 17 00:00:00 2001 From: saberzero1 Date: Sat, 4 Apr 2026 01:49:59 +0200 Subject: [PATCH] i18n: add translations for 30 locales from Quartz v4 --- src/i18n/locales/tr-TR.ts | 8 ++++++++ src/i18n/locales/uk-UA.ts | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 src/i18n/locales/tr-TR.ts create mode 100644 src/i18n/locales/uk-UA.ts diff --git a/src/i18n/locales/tr-TR.ts b/src/i18n/locales/tr-TR.ts new file mode 100644 index 0000000..5b562d5 --- /dev/null +++ b/src/i18n/locales/tr-TR.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Son Notlar", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +}; diff --git a/src/i18n/locales/uk-UA.ts b/src/i18n/locales/uk-UA.ts new file mode 100644 index 0000000..b275130 --- /dev/null +++ b/src/i18n/locales/uk-UA.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Останні нотатки", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +};