mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-11-23 03:28:18 +01:00
* [Localization] Updated Portuguese filter-bar.ts and confirmExit in the starter select UI * typo
50 lines
1.6 KiB
TypeScript
50 lines
1.6 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
/**
|
|
* The menu namespace holds most miscellaneous text that isn't directly part of the game's
|
|
* contents or directly related to Pokemon data. This includes menu navigation, settings,
|
|
* account interactions, descriptive text, etc.
|
|
*/
|
|
export const starterSelectUiHandler: SimpleTranslationEntries = {
|
|
"confirmStartTeam": "Começar com esses Pokémon?",
|
|
"confirmExit": "Deseja sair?",
|
|
"invalidParty": "Essa equipe de iniciais não é válida!",
|
|
"gen1": "G1",
|
|
"gen2": "G2",
|
|
"gen3": "G3",
|
|
"gen4": "G4",
|
|
"gen5": "G5",
|
|
"gen6": "G6",
|
|
"gen7": "G7",
|
|
"gen8": "G8",
|
|
"gen9": "G9",
|
|
"growthRate": "Crescimento:",
|
|
"ability": "Habilidade:",
|
|
"passive": "Passiva:",
|
|
"nature": "Natureza:",
|
|
"eggMoves": "Mov. de Ovo",
|
|
"addToParty": "Adicionar à equipe",
|
|
"removeFromParty": "Remover da Equipe",
|
|
"toggleIVs": "Mostrar IVs",
|
|
"manageMoves": "Mudar Movimentos",
|
|
"manageNature": "Mudar Natureza",
|
|
"useCandies": "Usar Doces",
|
|
"selectNature": "Escolha uma natureza.",
|
|
"selectMoveSwapOut": "Escolha um movimento para substituir.",
|
|
"selectMoveSwapWith": "Escolha o movimento que substituirá",
|
|
"sameSpeciesEgg": "Comprar Ovo",
|
|
"unlockPassive": "Aprender Passiva",
|
|
"reduceCost": "Reduzir Custo",
|
|
"cycleShiny": ": » Shiny",
|
|
"cycleForm": ": » Forma",
|
|
"cycleGender": ": » Gênero",
|
|
"cycleAbility": ": » Habilidade",
|
|
"cycleNature": ": » Natureza",
|
|
"cycleVariant": ": » Variante",
|
|
"enablePassive": "Ativar Passiva",
|
|
"disablePassive": "Desativar Passiva",
|
|
"locked": "Bloqueada",
|
|
"disabled": "Desativada",
|
|
"uncaught": "Não capturado"
|
|
};
|