Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Brazilian Portuguese Translation #2825

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app/locales/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import cs from "./cs";
import ko from "./ko";
import ar from "./ar";
import bn from "./bn";
import ptBR from "./pt-BR";
import { merge } from "../utils/merge";

import type { LocaleType } from "./cn";
Expand All @@ -38,6 +39,7 @@ const ALL_LANGS = {
no,
ar,
bn,
ptBR
};

export type Lang = keyof typeof ALL_LANGS;
Expand All @@ -62,6 +64,7 @@ export const ALL_LANG_OPTIONS: Record<Lang, string> = {
no: "Nynorsk",
ar: "العربية",
bn: "বাংলা",
ptBR: 'Português Brasileiro'
};

const LANG_KEY = "lang";
Expand Down
Loading