mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-03 06:52:16 +02:00
34 lines
1.3 KiB
TypeScript
34 lines
1.3 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
/**
|
|
* 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?',
|
|
"growthRate": "Crescimento:",
|
|
"ability": "Hab.:",
|
|
"passive": "Passiva:",
|
|
"nature": "Nature:",
|
|
"eggMoves": "Mov. de Ovo",
|
|
"start": "Iniciar",
|
|
"addToParty": "Adicionar à equipe",
|
|
"toggleIVs": "Mostrar IVs",
|
|
"manageMoves": "Mudar Movimentos",
|
|
"useCandies": "Usar Doces",
|
|
"selectMoveSwapOut": "Escolha um movimento para substituir.",
|
|
"selectMoveSwapWith": "Escolha o movimento que substituirá",
|
|
"unlockPassive": "Aprender Passiva",
|
|
"reduceCost": "Reduzir Custo",
|
|
"cycleShiny": "R: Mudar Shiny",
|
|
"cycleForm": 'F: Mudar Forma',
|
|
"cycleGender": 'G: Mudar Gênero',
|
|
"cycleAbility": 'E: Mudar Habilidade',
|
|
"cycleNature": 'N: Mudar Nature',
|
|
"cycleVariant": 'V: Mudar Variante',
|
|
"enablePassive": "Ativar Passiva",
|
|
"disablePassive": "Desativar Passiva",
|
|
"locked": "Bloqueado",
|
|
"disabled": "Desativado",
|
|
} |