Translation of the application into Brazilian Portuguese

This commit is contained in:
Yuri Filipe
2023-11-18 15:12:15 -03:00
parent cf220dd2eb
commit 6f135a0cce
2 changed files with 469 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
import cn from "./cn";
import en from "./en";
import pt from "./pt";
import tw from "./tw";
import id from "./id";
import fr from "./fr";
@@ -23,6 +24,7 @@ export type { LocaleType, PartialLocaleType } from "./cn";
const ALL_LANGS = {
cn,
en,
pt,
tw,
jp,
ko,
@@ -47,6 +49,7 @@ export const AllLangs = Object.keys(ALL_LANGS) as Lang[];
export const ALL_LANG_OPTIONS: Record<Lang, string> = {
cn: "简体中文",
en: "English",
pt: "Português",
tw: "繁體中文",
jp: "日本語",
ko: "한국어",