feat: Add Brazilian Portuguese language support

Introduces Brazilian Portuguese (pt-BR) as a new supported language.
This commit is contained in:
Luciano T
2024-06-01 05:37:40 -03:00
parent 3868048923
commit 2c8aa3ba7e
9 changed files with 485 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
import i18n from "i18next";
import { initReactI18next } from "react-i18next";
import { en } from "./lang/en";
import { pt } from "./lang/pt";
import { ru } from "./lang/ru";
import { ml } from "./lang/ml";
import { zh } from "./lang/zh";
@@ -14,6 +15,7 @@ i18n
resources: {
en: en,
ml: ml,
"pt-BR": pt,
"zh-CN": zh,
ru: ru,
"ru-RU": ru,