feat: add pt-BR to languages menu

This commit is contained in:
Fernando Porazzi
2023-08-29 11:31:16 +02:00
committed by fernandoporazzi
parent 8a3133af70
commit a6cb5ddace
3 changed files with 6 additions and 0 deletions

View File

@ -59,6 +59,9 @@ const getMessages = (locale: string) => {
case "th-TH":
case "th":
return (await import("translations/th_TH.json")).default;
case "pt-BR":
case "pt":
return (await import("translations/pt_BR.json")).default;
case DefaultLocale:
case "en":
return enMessages;