From 6d66fdd05aeb760f2ec59ed0298ef7c0a80337ab Mon Sep 17 00:00:00 2001 From: saberzero1 Date: Sat, 4 Apr 2026 01:41:21 +0200 Subject: [PATCH] i18n: add translations for 30 locales from Quartz v4 --- src/i18n/locales/fr-FR.ts | 8 ++++++++ src/i18n/locales/he-IL.ts | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 src/i18n/locales/fr-FR.ts create mode 100644 src/i18n/locales/he-IL.ts diff --git a/src/i18n/locales/fr-FR.ts b/src/i18n/locales/fr-FR.ts new file mode 100644 index 0000000..cdb5de4 --- /dev/null +++ b/src/i18n/locales/fr-FR.ts @@ -0,0 +1,8 @@ +export default { + components: { + themeToggle: { + darkMode: "Mode sombre", + lightMode: "Mode clair", + }, + }, +}; diff --git a/src/i18n/locales/he-IL.ts b/src/i18n/locales/he-IL.ts new file mode 100644 index 0000000..53cc3b6 --- /dev/null +++ b/src/i18n/locales/he-IL.ts @@ -0,0 +1,8 @@ +export default { + components: { + themeToggle: { + darkMode: "מצב כהה", + lightMode: "מצב בהיר", + }, + }, +};