From 9568b7d345062e0b95763ff7c8f8aa9ad0754a0e Mon Sep 17 00:00:00 2001 From: Ryan Casas Date: Thu, 19 Feb 2026 12:16:40 +0100 Subject: [PATCH] Add Spanish translations to i18n index --- packages/shared/src/i18n/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/shared/src/i18n/index.ts b/packages/shared/src/i18n/index.ts index 5170c93..dcc824c 100644 --- a/packages/shared/src/i18n/index.ts +++ b/packages/shared/src/i18n/index.ts @@ -9,6 +9,7 @@ import ptTranslations from './locales/pt.json' with {type: 'json'}; import bgTranslations from './locales/bg.json' with {type: 'json'}; import csTranslations from './locales/cs.json' with {type: 'json'}; import plTranslations from './locales/pl.json' with {type: 'json'}; +import esTranslations from './locales/es.json' with {type: 'json'}; export { SUPPORTED_LANGUAGES, @@ -43,6 +44,7 @@ const translationsMap: Record = { bg: bgTranslations, cs: csTranslations, pl: plTranslations, + es: esTranslations, }; // In-memory cache for loaded translations