mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-02 16:08:01 +00:00
* Add support for Portuguese (Brazil) locale, except for moves and abilities. * All ptBR translations, names of moves and abilities maintained in english. * Small fixes * Updated Frisk and fixed Plus and Minus descriptions * Changed the settings label to "Português (BR)"
16 lines
430 B
TypeScript
16 lines
430 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const pokemonStat: SimpleTranslationEntries = {
|
|
"HP": "PS",
|
|
"HPshortened": "PS",
|
|
"ATK": "Ataque",
|
|
"ATKshortened": "Ata",
|
|
"DEF": "Defesa",
|
|
"DEFshortened": "Def",
|
|
"SPATK": "At. Esp.",
|
|
"SPATKshortened": "AtEsp",
|
|
"SPDEF": "Def. Esp.",
|
|
"SPDEFshortened": "DefEsp",
|
|
"SPD": "Veloc.",
|
|
"SPDshortened": "Veloc."
|
|
} as const; |