mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-15 04:42:19 +02:00
More translations and fixes
This commit is contained in:
parent
f2bcd4dffb
commit
fb86827ff3
5
src/locales/pt_BR/ability-trigger.ts
Normal file
5
src/locales/pt_BR/ability-trigger.ts
Normal file
@ -0,0 +1,5 @@
|
||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||
|
||||
export const abilityTriggers: SimpleTranslationEntries = {
|
||||
'blockRecoilDamage' : `{{abilityName}} de {{pokemonName}}\nprotegeu-o do dano de recuo!`,
|
||||
} as const;
|
@ -1,6 +1,8 @@
|
||||
import { ability } from "./ability";
|
||||
import { abilityTriggers } from "./ability-trigger";
|
||||
import { battle } from "./battle";
|
||||
import { commandUiHandler } from "./command-ui-handler";
|
||||
import { egg } from "./egg";
|
||||
import { fightUiHandler } from "./fight-ui-handler";
|
||||
import { growth } from "./growth";
|
||||
import { menu } from "./menu";
|
||||
@ -11,15 +13,19 @@ import { nature } from "./nature";
|
||||
import { pokeball } from "./pokeball";
|
||||
import { pokemon } from "./pokemon";
|
||||
import { pokemonStat } from "./pokemon-stat";
|
||||
import { splashMessages } from "./splash-messages";
|
||||
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
||||
import { titles, trainerClasses, trainerNames } from "./trainers";
|
||||
import { tutorial } from "./tutorial";
|
||||
import { weather } from "./weather";
|
||||
|
||||
|
||||
export const ptBrConfig = {
|
||||
ability: ability,
|
||||
abilityTriggers: abilityTriggers,
|
||||
battle: battle,
|
||||
commandUiHandler: commandUiHandler,
|
||||
egg: egg,
|
||||
fightUiHandler: fightUiHandler,
|
||||
menuUiHandler: menuUiHandler,
|
||||
menu: menu,
|
||||
@ -28,7 +34,11 @@ export const ptBrConfig = {
|
||||
pokemonStat: pokemonStat,
|
||||
pokemon: pokemon,
|
||||
starterSelectUiHandler: starterSelectUiHandler,
|
||||
titles: titles,
|
||||
trainerClasses: trainerClasses,
|
||||
trainerNames: trainerNames,
|
||||
tutorial: tutorial,
|
||||
splashMessages: splashMessages,
|
||||
nature: nature,
|
||||
growth: growth,
|
||||
weather: weather,
|
||||
|
21
src/locales/pt_BR/egg.ts
Normal file
21
src/locales/pt_BR/egg.ts
Normal file
@ -0,0 +1,21 @@
|
||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||
|
||||
export const egg: SimpleTranslationEntries = {
|
||||
"egg": "Ovo",
|
||||
"greatTier": "Raro",
|
||||
"ultraTier": "Épico",
|
||||
"masterTier": "Lendário",
|
||||
"defaultTier": "Comum",
|
||||
"hatchWavesMessageSoon": "Barulhos podem ser ouvidos vindo de dentro! Vai chocar em breve!",
|
||||
"hatchWavesMessageClose": "Parece se mover ocasionalmente. Pode estar perto de chocar.",
|
||||
"hatchWavesMessageNotClose": "O que vai nascer disso? Não parece estar perto de chocar.",
|
||||
"hatchWavesMessageLongTime": "Parece que este ovo vai demorar bastante para chocar.",
|
||||
"gachaTypeLegendary": "Chance de Lendário Aumentada",
|
||||
"gachaTypeMove": "Chance de Movimento de Ovo Raro Aumentada",
|
||||
"gachaTypeShiny": "Chance de Shiny Aumentada",
|
||||
"selectMachine": "Escolha uma máquina.",
|
||||
"notEnoughVouchers": "Você não tem vouchers suficientes!",
|
||||
"tooManyEggs": "Você já tem muitos ovos!",
|
||||
"pull": "Prêmio",
|
||||
"pulls": "Prêmios"
|
||||
} as const;
|
37
src/locales/pt_BR/splash-messages.ts
Normal file
37
src/locales/pt_BR/splash-messages.ts
Normal file
@ -0,0 +1,37 @@
|
||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||
|
||||
export const splashMessages: SimpleTranslationEntries = {
|
||||
"battlesWon": "Batalhas Ganhas!",
|
||||
"joinTheDiscord": "Junte-se ao Discord!",
|
||||
"infiniteLevels": "Níveis Infinitos!",
|
||||
"everythingStacks": "Tudo Acumula!",
|
||||
"optionalSaveScumming": "Você Pode Dar F5!",
|
||||
"biomes": "35 Biomas!",
|
||||
"openSource": "Código Aberto!",
|
||||
"playWithSpeed": "Jogue na Velocidade 5x!",
|
||||
"liveBugTesting": "Testamos os Bugs Ao Vivo!",
|
||||
"heavyInfluence": "Grande Influência de RoR2!",
|
||||
"pokemonRiskAndPokemonRain": "Pokémon Risk e Pokémon Rain!",
|
||||
"nowWithMoreSalt": "O Choro é Livre!",
|
||||
"infiniteFusionAtHome": "Infinite Fusion da Shopee!",
|
||||
"brokenEggMoves": "Mov. de Ovo Apelões!",
|
||||
"magnificent": "Magnífico!",
|
||||
"mubstitute": "Mubstituto!",
|
||||
"thatsCrazy": "Que Doidera!",
|
||||
"oranceJuice": "Suco de Laranja!",
|
||||
"questionableBalancing": "Balanceamento Questionável!",
|
||||
"coolShaders": "Shader Maneiros!",
|
||||
"aiFree": "Livre de IA!",
|
||||
"suddenDifficultySpikes": "Ficou Difícil do Nada!",
|
||||
"basedOnAnUnfinishedFlashGame": "Baseado num Jogo Online Inacabado!",
|
||||
"moreAddictiveThanIntended": "Mais Viciante do que Planejado!",
|
||||
"mostlyConsistentSeeds": "Consistente (na Maioria das Vezes)!",
|
||||
"achievementPointsDontDoAnything": "Pontos de Conquista Não Fazem Nada!",
|
||||
"youDoNotStartAtLevel": "Você Não Começa no Nível 2000!",
|
||||
"dontTalkAboutTheManaphyEggIncident": "Não Fale do Incidente do Ovo de Manaphy!",
|
||||
"alsoTryPokengine": "Também Jogue Pokéngine!",
|
||||
"alsoTryEmeraldRogue": "Também Jogue Emerald Rogue!",
|
||||
"alsoTryRadicalRed": "Também Jogue Radical Red!",
|
||||
"eeveeExpo": "Eevee Expo!",
|
||||
"ynoproject": "YNOproject!",
|
||||
} as const;
|
@ -3,19 +3,19 @@ import { abilityTriggers } from "./ability-trigger";
|
||||
import { battle } from "./battle";
|
||||
import { commandUiHandler } from "./command-ui-handler";
|
||||
import { fightUiHandler } from "./fight-ui-handler";
|
||||
import { growth } from "./growth";
|
||||
import { menu } from "./menu";
|
||||
import { menuUiHandler } from "./menu-ui-handler";
|
||||
import { modifierType } from "./modifier-type";
|
||||
import { move } from "./move";
|
||||
import { nature } from "./nature";
|
||||
import { pokeball } from "./pokeball";
|
||||
import { pokemon } from "./pokemon";
|
||||
import { pokemonStat } from "./pokemon-stat";
|
||||
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
||||
import { tutorial } from "./tutorial";
|
||||
import { titles, trainerClasses, trainerNames } from "./trainers";
|
||||
import { nature } from "./nature";
|
||||
import { tutorial } from "./tutorial";
|
||||
import { weather } from "./weather";
|
||||
import { modifierType } from "./modifier-type";
|
||||
import { growth } from "./growth";
|
||||
|
||||
|
||||
export const zhCnConfig = {
|
||||
|
Loading…
Reference in New Issue
Block a user