feat(i18n): add Spanish (Español) language support

This commit is contained in:
Ulas
2026-04-05 22:17:08 +02:00
parent 3799a7f952
commit 6702bc5291
3 changed files with 601 additions and 1 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
* Dependencies: none (vanilla JS, Fetch API, Intl API)
*/
const SUPPORTED_LOCALES = ['de', 'en', 'it', 'sv'];
const SUPPORTED_LOCALES = ['de', 'en', 'es', 'it', 'sv'];
const DEFAULT_LOCALE = 'de';
const STORAGE_KEY = 'oikos-locale';