mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-02 03:36:16 +00:00
c7de17a46e
* organizing, translations and achv localization * localized for all languages * minor fix * minor fix 2 * minor fix 3 * Fixed Achivment Localization, Added german localization and fixes some issues with german localization at other parts * fix pickup description * Update French achv.ts * French typo correction achv.ts * eslint fixes * added zhTW * minor fix * Achivment Bar is localized and gets bigger when using german * Changed some things to make it not as Big * The Achivment Bar now grows with the context * Updated Achivment Names in german * Update French achv.ts * Vouchers now will show the correct descrption again * minor fix * minor fixes * "sub" to "semi" * minor fix * fixes warning and organizes some files * forgot about english * korean translations * test fix --------- Co-authored-by: Jannik Tappert <tappertjannik@googlemail.com> Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Co-authored-by: Lugiad <adrien.grivel@hotmail.fr>
45 lines
1.6 KiB
TypeScript
45 lines
1.6 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const gameStatsUiHandler: SimpleTranslationEntries = {
|
|
"stats": "Stats",
|
|
"playTime": "Play Time",
|
|
"totalBattles": "Total Battles",
|
|
"starters": "Starters",
|
|
"shinyStarters": "Shiny Starters",
|
|
"speciesSeen": "Species Seen",
|
|
"speciesCaught": "Species Caught",
|
|
"ribbonsOwned": "Ribbons Owned",
|
|
"classicRuns": "Classic Runs",
|
|
"classicWins": "Classic Wins",
|
|
"dailyRunAttempts": "Daily Run Attempts",
|
|
"dailyRunWins": "Daily Run Wins",
|
|
"endlessRuns": "Endless Runs",
|
|
"highestWaveEndless": "Highest Wave (Endless)",
|
|
"highestMoney": "Highest Money",
|
|
"highestDamage": "Highest Damage",
|
|
"highestHPHealed": "Highest HP Healed",
|
|
"pokemonEncountered": "Pokémon Encountered",
|
|
"pokemonDefeated": "Pokémon Defeated",
|
|
"pokemonCaught": "Pokémon Caught",
|
|
"eggsHatched": "Eggs Hatched",
|
|
"subLegendsSeen": "Sub-Legends Seen",
|
|
"subLegendsCaught": "Sub-Legends Caught",
|
|
"subLegendsHatched": "Sub-Legends Hatched",
|
|
"legendsSeen": "Legends Seen",
|
|
"legendsCaught": "Legends Caught",
|
|
"legendsHatched": "Legends Hatched",
|
|
"mythicalsSeen": "Mythicals Seen",
|
|
"mythicalsCaught": "Mythicals Caught",
|
|
"mythicalsHatched": "Mythicals Hatched",
|
|
"shiniesSeen": "Shinies Seen",
|
|
"shiniesCaught": "Shinies Caught",
|
|
"shiniesHatched": "Shinies Hatched",
|
|
"pokemonFused": "Pokémon Fused",
|
|
"trainersDefeated": "Trainers Defeated",
|
|
"eggsPulled": "Eggs Pulled",
|
|
"rareEggsPulled": "Rare Eggs Pulled",
|
|
"epicEggsPulled": "Epic Eggs Pulled",
|
|
"legendaryEggsPulled": "Legendary Eggs Pulled",
|
|
"manaphyEggsPulled": "Manaphy Eggs Pulled",
|
|
} as const;
|