mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-01 14:02:18 +02:00
* Update i18n.ts * Update config.ts * Update game-stats-ui-handler.ts * Add files via upload * Cleanup code + Modification of the interface to manage labels dynamically (without this, the language change was not reflected until the page was completely refreshed) * Apply ESLint after rebase on upstream/main * Remove useless initStatsKeys * Adds german localization + Changes font size in german only (because otherwise it overflows :D) * Adds an additional method of formatting large numbers to make it a little more pleasant to read + The other was a little too barbaric in what it truncated, but is still useful in certain cases + Use abbreviations from 10^0 to 10^33 * Use of the new 'formatFancyLargeNumber' method to display money owned in combat and the highest sum of money obtained in statistics --------- Co-authored-by: Lugiad <adrien.grivel@hotmail.fr> Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com>
45 lines
1.7 KiB
TypeScript
45 lines
1.7 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
||
export const gameStatsUiHandler: SimpleTranslationEntries = {
|
||
"stats": "Statistiques",
|
||
"playTime": "Temps de jeu",
|
||
"totalBattles": "Total combats",
|
||
"shinyStarters": "Starters chroma",
|
||
"starters": "Starters",
|
||
"speciesSeen": "Espèces vues",
|
||
"speciesCaught": "Espèces capt.",
|
||
"ribbonsOwned": "Rubans possédés",
|
||
"classicRuns": "Parties en Classique",
|
||
"classicWins": "Victoires en Classique",
|
||
"dailyRunAttempts": "Essais Défi du jour",
|
||
"dailyRunWins": "Victoires Défi du jour",
|
||
"endlessRuns": "Parties en Infini",
|
||
"highestWaveEndless": "Record vagues (Infini)",
|
||
"highestMoney": "Record d’argent",
|
||
"highestDamage": "Record de dégâts",
|
||
"highestHPHealed": "Record PV soignés",
|
||
"pokemonEncountered": "Pokémon rencontrés",
|
||
"pokemonDefeated": "Pokémon battus",
|
||
"pokemonCaught": "Pokémon capturés",
|
||
"eggsHatched": "Œufs éclos",
|
||
"subLegendsSeen": "Semi-légendaires vus",
|
||
"subLegendsCaught": "Semi-légendaires capt.",
|
||
"subLegendsHatched": "Semi-légendaires éclos",
|
||
"legendsSeen": "Legendaires vus",
|
||
"legendsCaught": "Légendaires capt.",
|
||
"legendsHatched": "Légendaires éclos",
|
||
"mythicalsSeen": "Fabuleux vus",
|
||
"mythicalsCaught": "Fabuleux capt.",
|
||
"mythicalsHatched": "Fabuleux éclos",
|
||
"shiniesSeen": "Chromatiques vus",
|
||
"shiniesCaught": "Chromatiques capt.",
|
||
"shiniesHatched": "Chromatiques éclos",
|
||
"pokemonFused": "Pokémon fusionnés",
|
||
"trainersDefeated": "Dresseurs battus",
|
||
"eggsPulled": "Œufs obtenus",
|
||
"rareEggsPulled": "Œufs Rares",
|
||
"epicEggsPulled": "Œufs Épiques",
|
||
"legendaryEggsPulled": "Œufs Légendaires",
|
||
"manaphyEggsPulled": "Œufs de Manaphy",
|
||
} as const;
|