mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-27 03:07:28 +00:00
a1171eceb9
* show currently bound controls on starter menu for last active device * add special handling for touch controls * remove hardcoded controls for all locales
45 lines
1.4 KiB
TypeScript
45 lines
1.4 KiB
TypeScript
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 ?",
|
||
"gen1": "1G",
|
||
"gen2": "2G",
|
||
"gen3": "3G",
|
||
"gen4": "4G",
|
||
"gen5": "5G",
|
||
"gen6": "6G",
|
||
"gen7": "7G",
|
||
"gen8": "8G",
|
||
"gen9": "9G",
|
||
"growthRate": "Croissance :",
|
||
"ability": "Talent :",
|
||
"passive": "Passif :",
|
||
"nature": "Nature :",
|
||
"eggMoves": "Capacités Œuf",
|
||
"start": "Lancer",
|
||
"addToParty": "Ajouter à l’équipe",
|
||
"toggleIVs": "Voir IVs",
|
||
"manageMoves": "Gérer Capacités",
|
||
"useCandies": "Utiliser Bonbons",
|
||
"selectMoveSwapOut": "Sélectionnez la capacité à échanger.",
|
||
"selectMoveSwapWith": "Sélectionnez laquelle échanger avec",
|
||
"unlockPassive": "Débloquer Passif",
|
||
"reduceCost": "Diminuer le cout",
|
||
"cycleShiny": ": » Chromatiques",
|
||
"cycleForm": ": » Formes",
|
||
"cycleGender": ": » Sexes",
|
||
"cycleAbility": ": » Talents",
|
||
"cycleNature": ": » Natures",
|
||
"cycleVariant": ": » Variants",
|
||
"enablePassive": "Activer Passif",
|
||
"disablePassive": "Désactiver Passif",
|
||
"locked": "Verrouillé",
|
||
"disabled": "Désactivé",
|
||
"uncaught": "Non-capturé"
|
||
};
|