Merge branch 'summary' into contribsummary
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 { SummaryUiHandler } from "./summary-ui-handler";
|
||||
import { tutorial } from "./tutorial";
|
||||
import { weather } from "./weather";
|
||||
|
||||
|
||||
export const deConfig = {
|
||||
@ -36,5 +37,6 @@ export const deConfig = {
|
||||
growth: growth,
|
||||
partyUiHandler: partyUiHandler,
|
||||
summaryUiHandler: SummaryUiHandler,
|
||||
biome: biome
|
||||
biome: biome,
|
||||
weather: weather
|
||||
}
|
@ -1,40 +1,40 @@
|
||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||
|
||||
export const biome: SimpleTranslationEntries = {
|
||||
"unknownLocation": "Somewhere you can\'t remember",
|
||||
"TOWN": "Town",
|
||||
"PLAINS": "Plains",
|
||||
"GRASS": "Grassy Field",
|
||||
"TALL_GRASS": "Tall Grass",
|
||||
"METROPOLIS": "Metropolis",
|
||||
"FOREST": "Forest",
|
||||
"SEA": "Sea",
|
||||
"SWAMP": "Swamp",
|
||||
"BEACH": "Beach",
|
||||
"LAKE": "Lake",
|
||||
"SEABED": "Seabed",
|
||||
"MOUNTAIN": "Mountain",
|
||||
"BADLANDS": "Badlands",
|
||||
"CAVE": "Cave",
|
||||
"DESERT": "Desert",
|
||||
"ICE_CAVE": "Ice Cave",
|
||||
"MEADOW": "Meadow",
|
||||
"POWER_PLANT": "Power Plant",
|
||||
"VOLCANO": "Volcano",
|
||||
"GRAVEYARD": "Graveyard",
|
||||
"unknownLocation": "vous avez oublié où",
|
||||
"TOWN": "Ville",
|
||||
"PLAINS": "Plaines",
|
||||
"GRASS": "Herbes",
|
||||
"TALL_GRASS": "Hautes Herbes",
|
||||
"METROPOLIS": "Métropole",
|
||||
"FOREST": "Forêt",
|
||||
"SEA": "Mer",
|
||||
"SWAMP": "Marais",
|
||||
"BEACH": "Plage",
|
||||
"LAKE": "Lac",
|
||||
"SEABED": "Fond Marin",
|
||||
"MOUNTAIN": "Montagne",
|
||||
"BADLANDS": "Terres Escarpées",
|
||||
"CAVE": "Grotte",
|
||||
"DESERT": "Désert",
|
||||
"ICE_CAVE": "Grotte de Glace",
|
||||
"MEADOW": "Prairie",
|
||||
"POWER_PLANT": "Centrale",
|
||||
"VOLCANO": "Volcan",
|
||||
"GRAVEYARD": "Cimetière",
|
||||
"DOJO": "Dojo",
|
||||
"FACTORY": "Factory",
|
||||
"RUINS": "Ancient Ruins",
|
||||
"WASTELAND": "Wasteland",
|
||||
"ABYSS": "The Abyss",
|
||||
"SPACE": "Stratosphere",
|
||||
"CONSTRUCTION_SITE": "Construction Site",
|
||||
"FACTORY": "Usine",
|
||||
"RUINS": "Ruines Antiques",
|
||||
"WASTELAND": "Terre Désolée",
|
||||
"ABYSS": "Abysses",
|
||||
"SPACE": "Stratosphère",
|
||||
"CONSTRUCTION_SITE": "Chantier",
|
||||
"JUNGLE": "Jungle",
|
||||
"FAIRY_CAVE": "Fairy Cave",
|
||||
"FAIRY_CAVE": "Grotte Féerique",
|
||||
"TEMPLE": "Temple",
|
||||
"SLUM": "Slum",
|
||||
"SNOWY_FOREST": "Snowy Forest",
|
||||
"ISLAND": "Island",
|
||||
"LABORATORY": "Laboratory",
|
||||
"END": "Final Destination",
|
||||
"SLUM": "Taudis",
|
||||
"SNOWY_FOREST": "Forêt Enneigée",
|
||||
"ISLAND": "Ile",
|
||||
"LABORATORY": "Laboratoire",
|
||||
"END": "Destination Finale",
|
||||
} as const;
|
@ -30,11 +30,11 @@ export const menu: SimpleTranslationEntries = {
|
||||
"boyOrGirl": "Es-tu un garçon ou une fille ?",
|
||||
"boy": "Garçon",
|
||||
"girl": "Fille",
|
||||
"evolving": "Hein ?\n{{pokemonName}} évolue !",
|
||||
"stoppedEvolving": "{{pokemonName}} a stoppé son évolution.",
|
||||
"pauseEvolutionsQuestion": "Voulez-vous pauser les évolutions pour {{pokemonName}} ?\nLes évolutions peuvent être réactivées depuis l'écran d'équipe.",
|
||||
"evolving": "Quoi ?\n{{pokemonName}} évolue !",
|
||||
"stoppedEvolving": "Hein ?\n{{pokemonName}} n’évolue plus !",
|
||||
"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}}.",
|
||||
"evolutionDone": "Félicitations !\nVotre {{pokemonName}} a évolué en {{evolvedPokemonName}} !",
|
||||
"evolutionDone": "Félicitations !\n{{pokemonName}} a évolué en {{evolvedPokemonName}} !",
|
||||
"dailyRankings": "Classement du Jour",
|
||||
"weeklyRankings": "Classement de la Semaine",
|
||||
"noRankings": "Pas de Classement",
|
||||
|
@ -1,22 +1,22 @@
|
||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||
|
||||
export const partyUiHandler: SimpleTranslationEntries = {
|
||||
"choosePokemon": "Choose a Pokémon.",
|
||||
"cantReleaseInBattle": "You can\'t release a Pokémon that\'s in battle!",
|
||||
"what2doWithPoke": "Do what with this Pokémon?",
|
||||
"cancelShort": "Cancel",
|
||||
"selectMove": "Select a move.",
|
||||
"selectHeldItemTransfer": "Select a held item to transfer.",
|
||||
"selectSplice": "Select another Pokémon to splice.",
|
||||
"deactivate": "Deactivate",
|
||||
"activate": "Activate",
|
||||
"SEND_OUT": "Send Out",
|
||||
"SUMMARY": "Summary",
|
||||
"RELEASE": "Release",
|
||||
"CANCEL": "Cancel",
|
||||
"choosePokemon": "Choisissez un Pokémon.",
|
||||
"cantReleaseInBattle": "Impossible de relâcher un Pokémon au combat !",
|
||||
"what2doWithPoke": "Que faire avec ce Pokémon ?",
|
||||
"cancelShort": "Annuler",
|
||||
"selectMove": "Sélectionnez une capacité.",
|
||||
"selectHeldItemTransfer": "Sélectionnez un objet à transférer.",
|
||||
"selectSplice": "Choisissez-en un autre à fusionner.",
|
||||
"deactivate": "Désactiver",
|
||||
"activate": "Activer",
|
||||
"SEND_OUT": "Envoyer",
|
||||
"SUMMARY": "Résumé",
|
||||
"RELEASE": "Relâcher",
|
||||
"CANCEL": "Annuler",
|
||||
"unpauseEvolution": "Evolutions have been unpaused for {{pokemonName}}",
|
||||
"unsplicePokemon": "`Do you really want to unsplice {{fusionSpeciesName}}\nfrom {{pokemonName}? {{fusionSpeciesName}} will be lost.",
|
||||
"spliceRevertText": "{{fusionName}} was reverted to {{pokemonName}}.",
|
||||
"releasePokemon": "Do you really want to release {{pokemonName}}?",
|
||||
} as const;
|
||||
|
||||
} as const;
|
@ -41,6 +41,6 @@ export const starterSelectUiHandler: SimpleTranslationEntries = {
|
||||
"locked": "Verrouillé",
|
||||
"disabled": "Désactivé",
|
||||
"uncaught": "Non-capturé",
|
||||
"luck":" Luck",
|
||||
"form": "Form"
|
||||
"luck":" Chance",
|
||||
"form": "Forme"
|
||||
}
|
||||
|
@ -1,17 +1,17 @@
|
||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||
|
||||
export const SummaryUiHandler: SimpleTranslationEntries = {
|
||||
"pokemonInfo": "Pokémon Info", //Currently unused
|
||||
"originalTrainer": "OT",
|
||||
"pokemonInfo": "Info Pokémon", //Currently unused
|
||||
"originalTrainer": "D.O.",
|
||||
"type": "Type",
|
||||
"natureBeforeText": "",
|
||||
"natureAfterText": " nature",
|
||||
"apparently": "apparently",
|
||||
"metAtLv":"met at Lv",
|
||||
"status": "Status",
|
||||
"lvl": "Lvl",
|
||||
"unknown": 'Unknown',
|
||||
"expPoints": "EXP. Points",
|
||||
"nextLv": "Next Lv.",
|
||||
"moveStats": "Power\nAccuracy\nCategory"
|
||||
"natureAfterText": " de nature",
|
||||
"apparently": "apparemment",
|
||||
"metAtLv":"rencontré au N.",
|
||||
"status": "Statut",
|
||||
"lvl": "Niv.",
|
||||
"unknown": 'Inconnu',
|
||||
"expPoints": "Points d'Exp’",
|
||||
"nextLv": "N. suivant",
|
||||
"moveStats": "Puissance\nPrécision\nCatégorie"
|
||||
} as const;
|