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-15 17:57:48 +02:00
|
|
|
|
"gen1": "1G",
|
|
|
|
|
"gen2": "2G",
|
|
|
|
|
"gen3": "3G",
|
|
|
|
|
"gen4": "4G",
|
|
|
|
|
"gen5": "5G",
|
|
|
|
|
"gen6": "6G",
|
|
|
|
|
"gen7": "7G",
|
|
|
|
|
"gen8": "8G",
|
|
|
|
|
"gen9": "9G",
|
2024-05-06 19:54:32 +02:00
|
|
|
|
"growthRate": "Croissance :",
|
|
|
|
|
"ability": "Talent :",
|
|
|
|
|
"passive": "Passif :",
|
|
|
|
|
"nature": "Nature :",
|
|
|
|
|
"eggMoves": "Capacités Œuf",
|
2024-05-06 20:40:29 +02:00
|
|
|
|
"start": "Lancer",
|
|
|
|
|
"addToParty": "Ajouter à l’équipe",
|
2024-05-06 19:54:32 +02:00
|
|
|
|
"toggleIVs": "Voir IVs",
|
|
|
|
|
"manageMoves": "Gérer Capacités",
|
|
|
|
|
"useCandies": "Utiliser Bonbons",
|
2024-05-06 20:40:29 +02:00
|
|
|
|
"selectMoveSwapOut": "Sélectionnez la capacité à échanger.",
|
2024-05-06 19:54:32 +02:00
|
|
|
|
"selectMoveSwapWith": "Sélectionnez laquelle échanger avec",
|
|
|
|
|
"unlockPassive": "Débloquer Passif",
|
|
|
|
|
"reduceCost": "Diminuer le cout",
|
2024-05-06 20:40:29 +02:00
|
|
|
|
"cycleShiny": "R: » Chromatiques",
|
|
|
|
|
"cycleForm": "F: » Formes",
|
|
|
|
|
"cycleGender": "G: » Sexes",
|
|
|
|
|
"cycleAbility": "E: » Talents",
|
|
|
|
|
"cycleNature": "N: » Natures",
|
|
|
|
|
"cycleVariant": "V: » Variants",
|
2024-05-06 19:54:32 +02:00
|
|
|
|
"enablePassive": "Activer Passif",
|
2024-05-13 12:50:56 -05:00
|
|
|
|
"disablePassive": "Désactiver Passif",
|
2024-05-13 20:01:30 +02:00
|
|
|
|
"locked": "Verrouillé",
|
2024-05-13 20:02:44 -03:00
|
|
|
|
"disabled": "Désactivé",
|
2024-05-15 17:57:48 +02:00
|
|
|
|
"uncaught": "Non-capturé"
|
2024-05-06 19:54:32 +02:00
|
|
|
|
}
|