feat(i18n): Add Portuguese translations

This commit is contained in:
Marcel Cruz
2026-01-15 00:32:37 +01:00
parent 0d1ed0ec67
commit c2afb2dfab
3 changed files with 48 additions and 0 deletions
+2
View File
@@ -5,6 +5,7 @@ import nlTranslations from './locales/nl.json' with {type: 'json'};
import frTranslations from './locales/fr.json' with {type: 'json'};
import deTranslations from './locales/de.json' with {type: 'json'};
import hiTranslations from './locales/hi.json' with {type: 'json'};
import ptTranslations from './locales/pt.json' with {type: 'json'};
export {
SUPPORTED_LANGUAGES,
DEFAULT_LANGUAGE,
@@ -34,6 +35,7 @@ const translationsMap: Record<string, Translations> = {
de: deTranslations,
fr: frTranslations,
hi: hiTranslations,
pt: ptTranslations,
};
// In-memory cache for loaded translations