Merging fr changes
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 906 B After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 979 B After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 295 B After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 837 B After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 310 B After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 973 B After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 295 B After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 939 B After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 310 B After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 289 B After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 287 B After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 313 B After Width: | Height: | Size: 1.6 KiB |
@ -16,6 +16,7 @@ import { pokemonStat } from "./pokemon-stat";
|
|||||||
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
||||||
import { SummaryUiHandler } from "./summary-ui-handler";
|
import { SummaryUiHandler } from "./summary-ui-handler";
|
||||||
import { tutorial } from "./tutorial";
|
import { tutorial } from "./tutorial";
|
||||||
|
import { weather } from "./weather";
|
||||||
|
|
||||||
|
|
||||||
export const deConfig = {
|
export const deConfig = {
|
||||||
@ -36,5 +37,6 @@ export const deConfig = {
|
|||||||
growth: growth,
|
growth: growth,
|
||||||
partyUiHandler: partyUiHandler,
|
partyUiHandler: partyUiHandler,
|
||||||
summaryUiHandler: SummaryUiHandler,
|
summaryUiHandler: SummaryUiHandler,
|
||||||
biome: biome
|
biome: biome,
|
||||||
|
weather: weather
|
||||||
}
|
}
|
@ -1,40 +1,40 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
export const biome: SimpleTranslationEntries = {
|
export const biome: SimpleTranslationEntries = {
|
||||||
"unknownLocation": "Somewhere you can\'t remember",
|
"unknownLocation": "vous avez oublié où",
|
||||||
"TOWN": "Town",
|
"TOWN": "Ville",
|
||||||
"PLAINS": "Plains",
|
"PLAINS": "Plaines",
|
||||||
"GRASS": "Grassy Field",
|
"GRASS": "Herbes",
|
||||||
"TALL_GRASS": "Tall Grass",
|
"TALL_GRASS": "Hautes Herbes",
|
||||||
"METROPOLIS": "Metropolis",
|
"METROPOLIS": "Métropole",
|
||||||
"FOREST": "Forest",
|
"FOREST": "Forêt",
|
||||||
"SEA": "Sea",
|
"SEA": "Mer",
|
||||||
"SWAMP": "Swamp",
|
"SWAMP": "Marais",
|
||||||
"BEACH": "Beach",
|
"BEACH": "Plage",
|
||||||
"LAKE": "Lake",
|
"LAKE": "Lac",
|
||||||
"SEABED": "Seabed",
|
"SEABED": "Fond Marin",
|
||||||
"MOUNTAIN": "Mountain",
|
"MOUNTAIN": "Montagne",
|
||||||
"BADLANDS": "Badlands",
|
"BADLANDS": "Terres Escarpées",
|
||||||
"CAVE": "Cave",
|
"CAVE": "Grotte",
|
||||||
"DESERT": "Desert",
|
"DESERT": "Désert",
|
||||||
"ICE_CAVE": "Ice Cave",
|
"ICE_CAVE": "Grotte de Glace",
|
||||||
"MEADOW": "Meadow",
|
"MEADOW": "Prairie",
|
||||||
"POWER_PLANT": "Power Plant",
|
"POWER_PLANT": "Centrale",
|
||||||
"VOLCANO": "Volcano",
|
"VOLCANO": "Volcan",
|
||||||
"GRAVEYARD": "Graveyard",
|
"GRAVEYARD": "Cimetière",
|
||||||
"DOJO": "Dojo",
|
"DOJO": "Dojo",
|
||||||
"FACTORY": "Factory",
|
"FACTORY": "Usine",
|
||||||
"RUINS": "Ancient Ruins",
|
"RUINS": "Ruines Antiques",
|
||||||
"WASTELAND": "Wasteland",
|
"WASTELAND": "Terre Désolée",
|
||||||
"ABYSS": "The Abyss",
|
"ABYSS": "Abysses",
|
||||||
"SPACE": "Stratosphere",
|
"SPACE": "Stratosphère",
|
||||||
"CONSTRUCTION_SITE": "Construction Site",
|
"CONSTRUCTION_SITE": "Chantier",
|
||||||
"JUNGLE": "Jungle",
|
"JUNGLE": "Jungle",
|
||||||
"FAIRY_CAVE": "Fairy Cave",
|
"FAIRY_CAVE": "Grotte Féerique",
|
||||||
"TEMPLE": "Temple",
|
"TEMPLE": "Temple",
|
||||||
"SLUM": "Slum",
|
"SLUM": "Taudis",
|
||||||
"SNOWY_FOREST": "Snowy Forest",
|
"SNOWY_FOREST": "Forêt Enneigée",
|
||||||
"ISLAND": "Island",
|
"ISLAND": "Ile",
|
||||||
"LABORATORY": "Laboratory",
|
"LABORATORY": "Laboratoire",
|
||||||
"END": "Final Destination",
|
"END": "Destination Finale",
|
||||||
} as const;
|
} as const;
|
@ -30,11 +30,11 @@ export const menu: SimpleTranslationEntries = {
|
|||||||
"boyOrGirl": "Es-tu un garçon ou une fille ?",
|
"boyOrGirl": "Es-tu un garçon ou une fille ?",
|
||||||
"boy": "Garçon",
|
"boy": "Garçon",
|
||||||
"girl": "Fille",
|
"girl": "Fille",
|
||||||
"evolving": "Hein ?\n{{pokemonName}} évolue !",
|
"evolving": "Quoi ?\n{{pokemonName}} évolue !",
|
||||||
"stoppedEvolving": "{{pokemonName}} a stoppé son évolution.",
|
"stoppedEvolving": "Hein ?\n{{pokemonName}} n’évolue plus !",
|
||||||
"pauseEvolutionsQuestion": "Voulez-vous pauser les évolutions pour {{pokemonName}} ?\nLes évolutions peuvent être réactivées depuis l'écran d'équipe.",
|
"pauseEvolutionsQuestion": "Mettre en pause les évolutions pour {{pokemonName}} ?\nElles peuvent être réactivées depuis l’écran d’équipe.",
|
||||||
"evolutionsPaused": "Les évolutions ont été mises en pause pour {{pokemonName}}.",
|
"evolutionsPaused": "Les évolutions ont été mises en pause pour {{pokemonName}}.",
|
||||||
"evolutionDone": "Félicitations !\nVotre {{pokemonName}} a évolué en {{evolvedPokemonName}} !",
|
"evolutionDone": "Félicitations !\n{{pokemonName}} a évolué en {{evolvedPokemonName}} !",
|
||||||
"dailyRankings": "Classement du Jour",
|
"dailyRankings": "Classement du Jour",
|
||||||
"weeklyRankings": "Classement de la Semaine",
|
"weeklyRankings": "Classement de la Semaine",
|
||||||
"noRankings": "Pas de Classement",
|
"noRankings": "Pas de Classement",
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
export const partyUiHandler: SimpleTranslationEntries = {
|
export const partyUiHandler: SimpleTranslationEntries = {
|
||||||
"choosePokemon": "Choose a Pokémon.",
|
"choosePokemon": "Choisissez un Pokémon.",
|
||||||
"cantReleaseInBattle": "You can\'t release a Pokémon that\'s in battle!",
|
"cantReleaseInBattle": "Impossible de relâcher un Pokémon au combat !",
|
||||||
"what2doWithPoke": "Do what with this Pokémon?",
|
"what2doWithPoke": "Que faire avec ce Pokémon ?",
|
||||||
"cancelShort": "Cancel",
|
"cancelShort": "Annuler",
|
||||||
"selectMove": "Select a move.",
|
"selectMove": "Sélectionnez une capacité.",
|
||||||
"selectHeldItemTransfer": "Select a held item to transfer.",
|
"selectHeldItemTransfer": "Sélectionnez un objet à transférer.",
|
||||||
"selectSplice": "Select another Pokémon to splice.",
|
"selectSplice": "Choisissez-en un autre à fusionner.",
|
||||||
"deactivate": "Deactivate",
|
"deactivate": "Désactiver",
|
||||||
"activate": "Activate",
|
"activate": "Activer",
|
||||||
"SEND_OUT": "Send Out",
|
"SEND_OUT": "Envoyer",
|
||||||
"SUMMARY": "Summary",
|
"SUMMARY": "Résumé",
|
||||||
"RELEASE": "Release",
|
"RELEASE": "Relâcher",
|
||||||
"CANCEL": "Cancel"
|
"CANCEL": "Annuler"
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -41,6 +41,6 @@ export const starterSelectUiHandler: SimpleTranslationEntries = {
|
|||||||
"locked": "Verrouillé",
|
"locked": "Verrouillé",
|
||||||
"disabled": "Désactivé",
|
"disabled": "Désactivé",
|
||||||
"uncaught": "Non-capturé",
|
"uncaught": "Non-capturé",
|
||||||
"luck":" Luck",
|
"luck":" Chance",
|
||||||
"form": "Form"
|
"form": "Forme"
|
||||||
}
|
}
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
export const SummaryUiHandler: SimpleTranslationEntries = {
|
export const SummaryUiHandler: SimpleTranslationEntries = {
|
||||||
"pokemonInfo": "Pokémon Info", //Currently unused
|
"pokemonInfo": "Info Pokémon", //Currently unused
|
||||||
"originalTrainer": "OT",
|
"originalTrainer": "D.O.",
|
||||||
"type": "Type",
|
"type": "Type",
|
||||||
"natureBeforeText": "",
|
"natureBeforeText": "",
|
||||||
"natureAfterText": " nature",
|
"natureAfterText": " de nature",
|
||||||
"apparently": "apparently",
|
"apparently": "apparemment",
|
||||||
"metAtLv":"met at Lv",
|
"metAtLv":"rencontré au N.",
|
||||||
"status": "Status",
|
"status": "Statut",
|
||||||
"lvl": "Lvl",
|
"lvl": "Niv.",
|
||||||
"unknown": 'Unknown',
|
"unknown": 'Inconnu',
|
||||||
"expPoints": "EXP. Points",
|
"expPoints": "Points d'Exp’",
|
||||||
"nextLv": "Next Lv.",
|
"nextLv": "N. suivant",
|
||||||
"moveStats": "Power\nAccuracy\nCategory"
|
"moveStats": "Puissance\nPrécision\nCatégorie"
|
||||||
} as const;
|
} as const;
|
@ -1,23 +1,23 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
export const menuUiHandler: SimpleTranslationEntries = {
|
export const menuUiHandler: SimpleTranslationEntries = {
|
||||||
"GAME_SETTINGS": 'Configurações',
|
"GAME_SETTINGS": "Configurações",
|
||||||
"ACHIEVEMENTS": "Conquistas",
|
"ACHIEVEMENTS": "Conquistas",
|
||||||
"STATS": "Estatísticas",
|
"STATS": "Estatísticas",
|
||||||
"VOUCHERS": "Vouchers",
|
"VOUCHERS": "Vouchers",
|
||||||
"EGG_LIST": "Incubadora",
|
"EGG_LIST": "Incubadora",
|
||||||
"EGG_GACHA": "Gacha de Ovos",
|
"EGG_GACHA": "Gacha de ovos",
|
||||||
"MANAGE_DATA": "Gerenciar Dados",
|
"MANAGE_DATA": "Gerenciar dados",
|
||||||
"COMMUNITY": "Comunidade",
|
"COMMUNITY": "Comunidade",
|
||||||
"SAVE_AND_QUIT": "Save and Quit",
|
"SAVE_AND_QUIT": "Salvar e sair",
|
||||||
"LOG_OUT": "Logout",
|
"LOG_OUT": "Logout",
|
||||||
"slot": "Slot {{slotNumber}}",
|
"slot": "Slot {{slotNumber}}",
|
||||||
"importSession": "Importar Sessão",
|
"importSession": "Importar sessão",
|
||||||
"importSlotSelect": "Selecione um slot para importar.",
|
"importSlotSelect": "Selecione um slot para importar.",
|
||||||
"exportSession": "Exportar Sessão",
|
"exportSession": "Exportar sessão",
|
||||||
"exportSlotSelect": "Selecione um slot para exportar.",
|
"exportSlotSelect": "Selecione um slot para exportar.",
|
||||||
"importData": "Importar Dados",
|
"importData": "Importar dados",
|
||||||
"exportData": "Exportar Dados",
|
"exportData": "Exportar dados",
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"losingProgressionWarning": "Você vai perder todo o progresso desde o início da batalha. Confirmar?"
|
"losingProgressionWarning": "Você vai perder todo o progresso desde o início da batalha. Confirmar?"
|
||||||
} as const;
|
} as const;
|
@ -8,7 +8,7 @@ import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|||||||
export const menu: SimpleTranslationEntries = {
|
export const menu: SimpleTranslationEntries = {
|
||||||
"cancel": "Cancelar",
|
"cancel": "Cancelar",
|
||||||
"continue": "Continuar",
|
"continue": "Continuar",
|
||||||
"dailyRun": "Desafio diário (Beta)",
|
"dailyRun": "Desafio Diário (Beta)",
|
||||||
"loadGame": "Carregar Jogo",
|
"loadGame": "Carregar Jogo",
|
||||||
"newGame": "Novo Jogo",
|
"newGame": "Novo Jogo",
|
||||||
"selectGameMode": "Escolha um modo de jogo.",
|
"selectGameMode": "Escolha um modo de jogo.",
|
||||||
@ -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",
|
||||||
|
@ -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.",
|
||||||
}
|
}
|