Update translations in pt_BR/menu.ts and pt_BR/weather.ts

pull/911/head^2
José Ricardo Fleury Oliveira 2024-05-15 16:08:19 -03:00 committed by Samuel H
parent 04866e503a
commit 1b751dddec
2 changed files with 34 additions and 34 deletions

View File

@ -35,11 +35,11 @@ export const menu: SimpleTranslationEntries = {
"boyOrGirl": "Você é um menino ou uma menina?", "boyOrGirl": "Você é um menino ou uma menina?",
"boy": "Menino", "boy": "Menino",
"girl": "Menina", "girl": "Menina",
"evolving": "What?\n{{pokemonName}} is evolving!", "evolving": "Que?\n{{pokemonName}} tá evoluindo!",
"stoppedEvolving": "{{pokemonName}} stopped evolving.", "stoppedEvolving": "{{pokemonName}} parou de evoluir.",
"pauseEvolutionsQuestion": "Would you like to pause evolutions for {{pokemonName}}?\nEvolutions can be re-enabled from the party screen.", "pauseEvolutionsQuestion": "Gostaria de pausar evoluções para {{pokemonName}}?\nEvoluções podem ser religadas na tela de equipe.",
"evolutionsPaused": "Evolutions have been paused for {{pokemonName}}.", "evolutionsPaused": "Evoluções foram paradas para {{pokemonName}}.",
"evolutionDone": "Congratulations!\nYour {{pokemonName}} evolved into {{evolvedPokemonName}}!", "evolutionDone": "Parabéns!\nSeu {{pokemonName}} evolui para {{evolvedPokemonName}}!",
"dailyRankings": "Classificação Diária", "dailyRankings": "Classificação Diária",
"weeklyRankings": "Classificação Semanal", "weeklyRankings": "Classificação Semanal",
"noRankings": "Sem Classificação", "noRankings": "Sem Classificação",

View File

@ -4,41 +4,41 @@ import { SimpleTranslationEntries } from "#app/plugins/i18n";
* The weather namespace holds text displayed when weather is active during a battle * The weather namespace holds text displayed when weather is active during a battle
*/ */
export const weather: SimpleTranslationEntries = { export const weather: SimpleTranslationEntries = {
"sunnyStartMessage": "The sunlight got bright!", "sunnyStartMessage": "A luz do sol ficou clara!",
"sunnyLapseMessage": "The sunlight is strong.", "sunnyLapseMessage": "A luz do sol está forte.",
"sunnyClearMessage": "The sunlight faded.", "sunnyClearMessage": "A luz do sol sumiu.",
"rainStartMessage": "A downpour started!", "rainStartMessage": "Começou a chover!",
"rainLapseMessage": "The downpour continues.", "rainLapseMessage": "A chuva continua forte.",
"rainClearMessage": "The rain stopped.", "rainClearMessage": "A chuva parou.",
"sandstormStartMessage": "A sandstorm brewed!", "sandstormStartMessage": "Uma tempestade de areia se formou!",
"sandstormLapseMessage": "The sandstorm rages.", "sandstormLapseMessage": "A tempestade de areia é violenta.",
"sandstormClearMessage": "The sandstorm subsided.", "sandstormClearMessage": "A tempestade de areia diminuiu.",
"sandstormDamageMessage": "{{pokemonPrefix}}{{pokemonName}} is buffeted\nby the sandstorm!", "sandstormDamageMessage": "{{pokemonPrefix}}{{pokemonName}} é atingido\npela tempestade de areia!",
"hailStartMessage": "It started to hail!", "hailStartMessage": "Começou a chover granizo!",
"hailLapseMessage": "Hail continues to fall.", "hailLapseMessage": "Granizo cai do céu.",
"hailClearMessage": "The hail stopped.", "hailClearMessage": "O granizo parou.",
"hailDamageMessage": "{{pokemonPrefix}}{{pokemonName}} is pelted\nby the hail!", "hailDamageMessage": "{{pokemonPrefix}}{{pokemonName}} é atingido\npelo granizo!",
"snowStartMessage": "It started to snow!", "snowStartMessage": "Começou a nevar!",
"snowLapseMessage": "The snow is falling down.", "snowLapseMessage": "A neve continua caindo.",
"snowClearMessage": "The snow stopped.", "snowClearMessage": "Parou de nevar.",
"fogStartMessage": "A thick fog emerged!", "fogStartMessage": "Uma névoa densa se formou!",
"fogLapseMessage": "The fog continues.", "fogLapseMessage": "A névoa continua forte.",
"fogClearMessage": "The fog disappeared.", "fogClearMessage": "A névoa sumiu.",
"heavyRainStartMessage": "A heavy downpour started!", "heavyRainStartMessage": "Um temporal começou!",
"heavyRainLapseMessage": "The heavy downpour continues.", "heavyRainLapseMessage": "O temporal continua forte.",
"heavyRainClearMessage": "The heavy rain stopped.", "heavyRainClearMessage": "O temporal parou.",
"harshSunStartMessage": "The sunlight got hot!", "harshSunStartMessage": "A luz do sol está escaldante!",
"harshSunLapseMessage": "The sun is scorching hot.", "harshSunLapseMessage": "A luz do sol é intensa.",
"harshSunClearMessage": "The harsh sunlight faded.", "harshSunClearMessage": "A luz do sol enfraqueceu.",
"strongWindsStartMessage": "A heavy wind began!", "strongWindsStartMessage": "Ventos fortes apareceram!",
"strongWindsLapseMessage": "The wind blows intensely.", "strongWindsLapseMessage": "Os ventos fortes continuam.",
"strongWindsClearMessage": "The heavy wind stopped." "strongWindsClearMessage": "Os ventos fortes diminuíram.",
} }