From 2daabe429a17eb5f4ac4042f293dc80f4deccbfa Mon Sep 17 00:00:00 2001 From: saberzero1 Date: Sat, 4 Apr 2026 01:46:58 +0200 Subject: [PATCH] i18n: add translations for 30 locales from Quartz v4 --- src/i18n/locales/en-GB.ts | 7 +++++++ src/i18n/locales/es-ES.ts | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 src/i18n/locales/en-GB.ts create mode 100644 src/i18n/locales/es-ES.ts diff --git a/src/i18n/locales/en-GB.ts b/src/i18n/locales/en-GB.ts new file mode 100644 index 0000000..8350363 --- /dev/null +++ b/src/i18n/locales/en-GB.ts @@ -0,0 +1,7 @@ +export default { + components: { + footer: { + createdWith: "Created with", + }, + }, +}; diff --git a/src/i18n/locales/es-ES.ts b/src/i18n/locales/es-ES.ts new file mode 100644 index 0000000..1089a85 --- /dev/null +++ b/src/i18n/locales/es-ES.ts @@ -0,0 +1,7 @@ +export default { + components: { + footer: { + createdWith: "Creado con", + }, + }, +};