From cf3fd53bc158c16d14aba120a3bb4486768432d7 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Thu, 4 Sep 2025 21:16:14 -0700 Subject: [PATCH] add portugese language to config --- src/i18n/i18n.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/i18n/i18n.ts b/src/i18n/i18n.ts index ff445de5..c33b873d 100644 --- a/src/i18n/i18n.ts +++ b/src/i18n/i18n.ts @@ -18,6 +18,7 @@ import nbNO from './locales/nb-NO.json'; import nl from './locales/nl.json'; import pl from './locales/pl.json'; import ptBr from './locales/pt-BR.json'; +import pt from './locales/pt.json'; import ru from './locales/ru.json'; import sl from './locales/sl.json'; import sr from './locales/sr.json'; @@ -43,6 +44,7 @@ const resources = { 'nb-NO': { translation: nbNO }, nl: { translation: nl }, pl: { translation: pl }, + pt: { translation: pt }, 'pt-BR': { translation: ptBr }, ru: { translation: ru }, sl: { translation: sl }, @@ -111,6 +113,10 @@ export const languages = [ label: 'فارسی', value: 'fa', }, + { + label: 'Português', + value: 'pt', + }, { label: 'Português (Brasil)', value: 'pt-BR',