From ff117f5e574547a1f2912c6002c7cf0c107d7504 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/kk-KZ.ts | 8 ++++++++ src/i18n/locales/ko-KR.ts | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 src/i18n/locales/kk-KZ.ts create mode 100644 src/i18n/locales/ko-KR.ts diff --git a/src/i18n/locales/kk-KZ.ts b/src/i18n/locales/kk-KZ.ts new file mode 100644 index 0000000..cf0fe79 --- /dev/null +++ b/src/i18n/locales/kk-KZ.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Соңғы жазбалар", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +}; diff --git a/src/i18n/locales/ko-KR.ts b/src/i18n/locales/ko-KR.ts new file mode 100644 index 0000000..b2137dc --- /dev/null +++ b/src/i18n/locales/ko-KR.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "최근 게시글", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +};