From 4a00e79f0ef4e774311546236a5dc0e2b6bcdc7a Mon Sep 17 00:00:00 2001 From: spaenleh Date: Thu, 7 Nov 2024 14:30:57 +0100 Subject: [PATCH] fix: add spanish in bundle --- src/i18n.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/i18n.ts b/src/i18n.ts index 4d25763e..141cff3f 100644 --- a/src/i18n.ts +++ b/src/i18n.ts @@ -1,6 +1,6 @@ import i18n from 'i18next'; -import { ar, de, en, fr, it, namespaces } from './langs/index.js'; +import { ar, de, en, fr, it, es, namespaces } from './langs/index.js'; export const DEFAULT_LANG = 'en'; @@ -15,6 +15,7 @@ export const buildI18n = ( de, it, ar, + es, }, lng: DEFAULT_LANG, fallbackLng: DEFAULT_LANG,