mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-11 08:07:15 +00:00
03a98317a9
* Updated settings.ts * fix * another fix * minor fix * fix * fixfixfix
99 lines
3.2 KiB
TypeScript
99 lines
3.2 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales.js";
|
|
|
|
export const settings: SimpleTranslationEntries = {
|
|
"boy": "Menino",
|
|
"girl": "Menina",
|
|
"general": "Geral",
|
|
"display": "Exibição",
|
|
"audio": "Áudio",
|
|
"gamepad": "Controle",
|
|
"keyboard": "Teclado",
|
|
"gameSpeed": "Velocidade do Jogo",
|
|
"hpBarSpeed": "Velocidade da Barra de PS",
|
|
"expGainsSpeed": "Velocidade do Ganho de EXP",
|
|
"expPartyDisplay": "Exibição de EXP da Equipe",
|
|
"skipSeenDialogues": "Pular Diálogos Vistos",
|
|
"battleStyle": "Estilo de Batalha",
|
|
"enableRetries": "Habilitar Novas Tentativas",
|
|
"tutorials": "Tutorial",
|
|
"touchControls": "Controles de Toque",
|
|
"vibrations": "Vibração",
|
|
"normal": "Normal",
|
|
"fast": "Rápido",
|
|
"faster": "Mais Rápido",
|
|
"skip": "Pular",
|
|
"levelUpNotifications": "Notificação",
|
|
"on": "Ligado",
|
|
"off": "Desligado",
|
|
"switch": "Alternar",
|
|
"set": "Definido",
|
|
"auto": "Automático",
|
|
"disabled": "Desativado",
|
|
"language": "Idioma",
|
|
"change": "Mudar",
|
|
"uiTheme": "Tema da Interface",
|
|
"default": "Padrão",
|
|
"legacy": "Legado",
|
|
"windowType": "Estilo da Janela",
|
|
"moneyFormat": "Formatação do Dinheiro",
|
|
"damageNumbers": "Números de Dano",
|
|
"simple": "Simples",
|
|
"fancy": "Detalhado",
|
|
"abbreviated": "Abreviado",
|
|
"moveAnimations": "Animações de Movimento",
|
|
"showStatsOnLevelUp": "Mostrar Atributos ao Subir de Nível",
|
|
"candyUpgradeNotification": "Exibir Melhorias com Doce",
|
|
"passivesOnly": "Passivas",
|
|
"candyUpgradeDisplay": "Modo Melhorias com Doce",
|
|
"icon": "Ícone",
|
|
"animation": "Animação",
|
|
"moveInfo": "Informações de Movimento",
|
|
"showMovesetFlyout": "Mostrar Flutuante de Movimentos",
|
|
"showArenaFlyout": "Mostrar Flutuante de Bioma",
|
|
"showTimeOfDayWidget": "Widget da Hora do Dia",
|
|
"timeOfDayAnimation": "Animação da Hora do Dia",
|
|
"bounce": "Saltar",
|
|
"timeOfDay_back": "Voltar",
|
|
"spriteSet": "Conjunto de Sprites",
|
|
"consistent": "Consistente",
|
|
"mixedAnimated": "Animado",
|
|
"fusionPaletteSwaps": "Cores da Paleta de Fusão",
|
|
"playerGender": "Gênero do Jogador",
|
|
"typeHints": "Dicas de Tipo",
|
|
"masterVolume": "Volume Mestre",
|
|
"bgmVolume": "Volume de BGM",
|
|
"seVolume": "Volume de SE",
|
|
"musicPreference": "Preferência de Música",
|
|
"mixed": "Misto",
|
|
"gamepadPleasePlug": "Conecte um controle ou pressione um botão",
|
|
"delete": "Deletar",
|
|
"keyboardPleasePress": "Pressione uma tecla",
|
|
"reset": "Redefinir",
|
|
"requireReload": "Requer Reinício",
|
|
"action": "Ação",
|
|
"back": "Voltar",
|
|
"pressToBind": "Pressione para Atribuir",
|
|
"pressButton": "Pressione um Botão...",
|
|
"buttonUp": "Cima",
|
|
"buttonDown": "Baixo",
|
|
"buttonLeft": "Esquerda",
|
|
"buttonRight": "Direita",
|
|
"buttonAction": "Ação",
|
|
"buttonMenu": "Menu",
|
|
"buttonSubmit": "Confirmar",
|
|
"buttonCancel": "Cancelar",
|
|
"buttonStats": "Atributos",
|
|
"buttonCycleForm": "Próxima Forma",
|
|
"buttonCycleShiny": "Próximo Shiny",
|
|
"buttonCycleGender": "Próximo Gênero",
|
|
"buttonCycleAbility": "Próxima Habilidade",
|
|
"buttonCycleNature": "Próxima Natureza",
|
|
"buttonCycleVariant": "Próxima Variante",
|
|
"buttonSpeedUp": "Acelerar",
|
|
"buttonSlowDown": "Desacelerar",
|
|
"alt": " (Alt)",
|
|
"mute": "Mudo",
|
|
"controller": "Controle",
|
|
"gamepadSupport": "Suporte para Controle"
|
|
} as const;
|