2024-05-06 18:02:45 +02:00
|
|
|
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The menu namespace holds most miscellaneous text that isn't directly part of the game's
|
|
|
|
|
* contents or directly related to Pokemon data. This includes menu navigation, settings,
|
|
|
|
|
* account interactions, descriptive text, etc.
|
|
|
|
|
*/
|
|
|
|
|
export const starterSelectUiHandler: SimpleTranslationEntries = {
|
|
|
|
|
"confirmStartTeam":'Commencer avec ces Pokémon ?',
|
2024-05-06 19:54:32 +02:00
|
|
|
|
"growthRate": "Croissance :",
|
|
|
|
|
"ability": "Talent :",
|
|
|
|
|
"passive": "Passif :",
|
|
|
|
|
"nature": "Nature :",
|
|
|
|
|
"eggMoves": "Capacités Œuf",
|
|
|
|
|
"start": "Démar.",
|
|
|
|
|
"addToParty": "Ajouter à l’équipe",
|
|
|
|
|
"toggleIVs": "Voir IVs",
|
|
|
|
|
"manageMoves": "Gérer Capacités",
|
|
|
|
|
"useCandies": "Utiliser Bonbons",
|
|
|
|
|
"selectMoveSwapOut": "Sélectionnez la capacité à déplacer.",
|
|
|
|
|
"selectMoveSwapWith": "Sélectionnez laquelle échanger avec",
|
|
|
|
|
"unlockPassive": "Débloquer Passif",
|
|
|
|
|
"reduceCost": "Diminuer le cout",
|
|
|
|
|
"cycleShiny": "R: Parcourir Chromatiques",
|
|
|
|
|
"cycleForm": "F: Parcourir Formes",
|
|
|
|
|
"cycleGender": "G: Parcourir Sexes",
|
|
|
|
|
"cycleAbility": "E: Parcourir Talents",
|
|
|
|
|
"cycleNature": "N: Parcourir Natures",
|
|
|
|
|
"cycleVariant": "V: Parcourir Variants",
|
|
|
|
|
"enablePassive": "Activer Passif",
|
|
|
|
|
"disablePassive": "Désactiver Passif"
|
|
|
|
|
}
|