From 473dedcd9f8e2399a129b6835f3bc3ccc48d8399 Mon Sep 17 00:00:00 2001 From: saberzero1 Date: Sat, 4 Apr 2026 01:49:48 +0200 Subject: [PATCH] i18n: add translations for 30 locales from Quartz v4 --- src/i18n/locales/fa-IR.ts | 8 ++++++++ src/i18n/locales/fi-FI.ts | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 src/i18n/locales/fa-IR.ts create mode 100644 src/i18n/locales/fi-FI.ts diff --git a/src/i18n/locales/fa-IR.ts b/src/i18n/locales/fa-IR.ts new file mode 100644 index 0000000..9c5c7ac --- /dev/null +++ b/src/i18n/locales/fa-IR.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "یادداشت‌های اخیر", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +}; diff --git a/src/i18n/locales/fi-FI.ts b/src/i18n/locales/fi-FI.ts new file mode 100644 index 0000000..d6f3c75 --- /dev/null +++ b/src/i18n/locales/fi-FI.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Viimeisimmät muistiinpanot", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +};