From 59e0a957735e564f4929c5c657c403db662fb59e Mon Sep 17 00:00:00 2001 From: Basile Spaenlehauer Date: Fri, 8 Nov 2024 11:16:26 +0100 Subject: [PATCH] fix: add spanish in bundle (#566) --- 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,