mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-11-29 18:26:09 +00:00
[Localization] Updated Portuguese translations (#3511)
* berry * favorites * more updates
This commit is contained in:
parent
5505a4d1f0
commit
4a095af411
@ -10,7 +10,7 @@ export const abilityTriggers: SimpleTranslationEntries = {
|
|||||||
"trace": "{{pokemonName}} copiou {{abilityName}}\nde {{targetName}}!",
|
"trace": "{{pokemonName}} copiou {{abilityName}}\nde {{targetName}}!",
|
||||||
"windPowerCharged": "Ser atingido por {{moveName}} carregou {{pokemonName}} com poder!",
|
"windPowerCharged": "Ser atingido por {{moveName}} carregou {{pokemonName}} com poder!",
|
||||||
"quickDraw": "{{pokemonName}} pode agir mais rápido que o normal\ngraças ao seu Quick Draw!",
|
"quickDraw": "{{pokemonName}} pode agir mais rápido que o normal\ngraças ao seu Quick Draw!",
|
||||||
"disguiseAvoidedDamage" : "O disfarce de {{pokemonNameWithAffix}} foi descoberto!",
|
"disguiseAvoidedDamage": "O disfarce de {{pokemonNameWithAffix}} foi descoberto!",
|
||||||
"blockItemTheft": "{{abilityName}} de {{pokemonNameWithAffix}}\nprevine o roubo de itens!",
|
"blockItemTheft": "{{abilityName}} de {{pokemonNameWithAffix}}\nprevine o roubo de itens!",
|
||||||
"typeImmunityHeal": "{{abilityName}} de {{pokemonNameWithAffix}}\nrestaurou um pouco de PS!",
|
"typeImmunityHeal": "{{abilityName}} de {{pokemonNameWithAffix}}\nrestaurou um pouco de PS!",
|
||||||
"nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} evitou dano\ncom {{abilityName}}!",
|
"nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} evitou dano\ncom {{abilityName}}!",
|
||||||
|
@ -68,7 +68,7 @@ export const battle: SimpleTranslationEntries = {
|
|||||||
"useMove": "{{pokemonNameWithAffix}} usou {{moveName}}!",
|
"useMove": "{{pokemonNameWithAffix}} usou {{moveName}}!",
|
||||||
"drainMessage": "{{pokemonName}} teve sua\nenergia drenada!",
|
"drainMessage": "{{pokemonName}} teve sua\nenergia drenada!",
|
||||||
"regainHealth": "{{pokemonName}} recuperou\npontos de saúde!",
|
"regainHealth": "{{pokemonName}} recuperou\npontos de saúde!",
|
||||||
"stealEatBerry": "{{pokemonName}} stole and ate\n{{targetName}}'s {{berryName}}!",
|
"stealEatBerry": "{{pokemonName}} roubou e comeu\na {{berryName}} de {{targetName}}!",
|
||||||
"ppHealBerry": "{{pokemonNameWithAffix}} restaurou PP do movimento {{moveName}}\nusando sua {{berryName}}!",
|
"ppHealBerry": "{{pokemonNameWithAffix}} restaurou PP do movimento {{moveName}}\nusando sua {{berryName}}!",
|
||||||
"hpHealBerry": "{{pokemonNameWithAffix}} restarou sua saúde usando\nsua {{berryName}}!",
|
"hpHealBerry": "{{pokemonNameWithAffix}} restarou sua saúde usando\nsua {{berryName}}!",
|
||||||
"fainted": "{{pokemonNameWithAffix}} desmaiou!",
|
"fainted": "{{pokemonNameWithAffix}} desmaiou!",
|
||||||
|
@ -35,11 +35,12 @@ import { modifier } from "./modifier";
|
|||||||
import { modifierSelectUiHandler } from "./modifier-select-ui-handler";
|
import { modifierSelectUiHandler } from "./modifier-select-ui-handler";
|
||||||
import { modifierType } from "./modifier-type";
|
import { modifierType } from "./modifier-type";
|
||||||
import { move } from "./move";
|
import { move } from "./move";
|
||||||
|
import { moveTriggers } from "./move-trigger";
|
||||||
import { nature } from "./nature";
|
import { nature } from "./nature";
|
||||||
import { partyUiHandler } from "./party-ui-handler";
|
import { partyUiHandler } from "./party-ui-handler";
|
||||||
import { pokeball } from "./pokeball";
|
import { pokeball } from "./pokeball";
|
||||||
import { pokemon } from "./pokemon";
|
import { pokemon } from "./pokemon";
|
||||||
import { pokemonForm, battlePokemonForm } from "./pokemon-form";
|
import { battlePokemonForm, pokemonForm } from "./pokemon-form";
|
||||||
import { pokemonInfo } from "./pokemon-info";
|
import { pokemonInfo } from "./pokemon-info";
|
||||||
import { pokemonInfoContainer } from "./pokemon-info-container";
|
import { pokemonInfoContainer } from "./pokemon-info-container";
|
||||||
import { pokemonSummary } from "./pokemon-summary";
|
import { pokemonSummary } from "./pokemon-summary";
|
||||||
@ -52,7 +53,6 @@ import { titles, trainerClasses, trainerNames } from "./trainers";
|
|||||||
import { tutorial } from "./tutorial";
|
import { tutorial } from "./tutorial";
|
||||||
import { voucher } from "./voucher";
|
import { voucher } from "./voucher";
|
||||||
import { terrain, weather } from "./weather";
|
import { terrain, weather } from "./weather";
|
||||||
import { moveTriggers } from "./move-trigger";
|
|
||||||
|
|
||||||
export const ptBrConfig = {
|
export const ptBrConfig = {
|
||||||
ability: ability,
|
ability: ability,
|
||||||
@ -89,9 +89,12 @@ export const ptBrConfig = {
|
|||||||
menu: menu,
|
menu: menu,
|
||||||
menuUiHandler: menuUiHandler,
|
menuUiHandler: menuUiHandler,
|
||||||
modifier: modifier,
|
modifier: modifier,
|
||||||
|
modifierSelectUiHandler: modifierSelectUiHandler,
|
||||||
modifierType: modifierType,
|
modifierType: modifierType,
|
||||||
move: move,
|
move: move,
|
||||||
|
moveTriggers: moveTriggers,
|
||||||
nature: nature,
|
nature: nature,
|
||||||
|
partyUiHandler: partyUiHandler,
|
||||||
pokeball: pokeball,
|
pokeball: pokeball,
|
||||||
pokemon: pokemon,
|
pokemon: pokemon,
|
||||||
pokemonForm: pokemonForm,
|
pokemonForm: pokemonForm,
|
||||||
@ -109,8 +112,5 @@ export const ptBrConfig = {
|
|||||||
trainerNames: trainerNames,
|
trainerNames: trainerNames,
|
||||||
tutorial: tutorial,
|
tutorial: tutorial,
|
||||||
voucher: voucher,
|
voucher: voucher,
|
||||||
weather: weather,
|
weather: weather
|
||||||
partyUiHandler: partyUiHandler,
|
|
||||||
modifierSelectUiHandler: modifierSelectUiHandler,
|
|
||||||
moveTriggers: moveTriggers
|
|
||||||
};
|
};
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
||||||
|
|
||||||
export const moveTriggers: SimpleTranslationEntries = {
|
export const moveTriggers: SimpleTranslationEntries = {
|
||||||
"hitWithRecoil" : "{{pokemonName}} foi ferido pelo dano reverso!",
|
"hitWithRecoil": "{{pokemonName}} foi ferido pelo dano reverso!",
|
||||||
"cutHpPowerUpMove": "{{pokemonName}} diminuiu seus PS para aumentar o poder do ataque!",
|
"cutHpPowerUpMove": "{{pokemonName}} diminuiu seus PS para aumentar o poder do ataque!",
|
||||||
"absorbedElectricity": "{{pokemonName}} absorveu eletricidade!",
|
"absorbedElectricity": "{{pokemonName}} absorveu eletricidade!",
|
||||||
"switchedStatChanges": "{{pokemonName}} trocou as mudanças de atributo com o alvo!",
|
"switchedStatChanges": "{{pokemonName}} trocou as mudanças de atributo com o alvo!",
|
||||||
"goingAllOutForAttack": "{{pokemonName}} está arriscando tudo nesse ataque!",
|
"goingAllOutForAttack": "{{pokemonName}} está arriscando tudo nesse ataque!",
|
||||||
"regainedHealth": "{{pokemonName}} recuperou/nsaúde!",
|
"regainedHealth": "{{pokemonName}} recuperou/nsaúde!",
|
||||||
"keptGoingAndCrashed": "{{pokemonName}} continuou/nindo e bateu!",
|
"keptGoingAndCrashed": "{{pokemonName}} errou o alvo/ne se arrebentou!",
|
||||||
"fled": "{{pokemonName}} fugiu!",
|
"fled": "{{pokemonName}} fugiu!",
|
||||||
"cannotBeSwitchedOut": "{{pokemonName}} não pode ser trocado!",
|
"cannotBeSwitchedOut": "{{pokemonName}} não pode ser trocado!",
|
||||||
"swappedAbilitiesWithTarget": "{{pokemonName}} trocou/nde habilidades com o alvo!",
|
"swappedAbilitiesWithTarget": "{{pokemonName}} trocou/nde habilidades com o alvo!",
|
||||||
|
@ -181,15 +181,15 @@ export const pokemonForm: SimpleTranslationEntries = {
|
|||||||
"gimmighoulChest": "Baú",
|
"gimmighoulChest": "Baú",
|
||||||
"gimmighoulRoaming": "Perambulante",
|
"gimmighoulRoaming": "Perambulante",
|
||||||
"koraidonApexBuild": "Apex Build",
|
"koraidonApexBuild": "Apex Build",
|
||||||
"koraidonLimitedBuild":"Limited Build",
|
"koraidonLimitedBuild": "Limited Build",
|
||||||
"koraidonSprintingBuild":"Sprinting Build",
|
"koraidonSprintingBuild": "Sprinting Build",
|
||||||
"koraidonSwimmingBuild":"Swimming Build",
|
"koraidonSwimmingBuild": "Swimming Build",
|
||||||
"koraidonGlidingBuild":"Gliding Build",
|
"koraidonGlidingBuild": "Gliding Build",
|
||||||
"miraidonUltimateMode":"Ultimate Mode",
|
"miraidonUltimateMode": "Ultimate Mode",
|
||||||
"miraidonLowPowerMode":"Low Power Mode",
|
"miraidonLowPowerMode": "Low Power Mode",
|
||||||
"miraidonDriveMode":"Drive Mode",
|
"miraidonDriveMode": "Drive Mode",
|
||||||
"miraidonAquaticMode":"Aquatic Mode",
|
"miraidonAquaticMode": "Aquatic Mode",
|
||||||
"miraidonGlideMode":"Glide Mode",
|
"miraidonGlideMode": "Glide Mode",
|
||||||
"poltchageistCounterfeit": "Imitação",
|
"poltchageistCounterfeit": "Imitação",
|
||||||
"poltchageistArtisan": "Artesão",
|
"poltchageistArtisan": "Artesão",
|
||||||
"paldeaTaurosCombat": "Combate",
|
"paldeaTaurosCombat": "Combate",
|
||||||
|
@ -28,8 +28,8 @@ export const starterSelectUiHandler: SimpleTranslationEntries = {
|
|||||||
"toggleIVs": "Mostrar IVs",
|
"toggleIVs": "Mostrar IVs",
|
||||||
"manageMoves": "Mudar Movimentos",
|
"manageMoves": "Mudar Movimentos",
|
||||||
"manageNature": "Mudar Natureza",
|
"manageNature": "Mudar Natureza",
|
||||||
"addToFavorites": "Add to Favorites",
|
"addToFavorites": "Adicionar aos Favoritos",
|
||||||
"removeFromFavorites": "Remove from Favorites",
|
"removeFromFavorites": "Remover dos Favoritos",
|
||||||
"useCandies": "Usar Doces",
|
"useCandies": "Usar Doces",
|
||||||
"selectNature": "Escolha uma natureza.",
|
"selectNature": "Escolha uma natureza.",
|
||||||
"selectMoveSwapOut": "Escolha um movimento para substituir.",
|
"selectMoveSwapOut": "Escolha um movimento para substituir.",
|
||||||
|
Loading…
Reference in New Issue
Block a user