forked from pagefaultgames/pokerogue
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
zh_CN update game-stats-ui-handler.ts (pagefaultgames#1481)
* Update game-stats-ui-handler.ts * Update game-stats-ui-handler.ts * Update game-stats-ui-handler.ts
- Loading branch information
Showing
1 changed file
with
40 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,44 @@ | ||
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", | ||
"stats": "统计", | ||
"playTime": "游戏时间", | ||
"totalBattles": "总战斗次数", | ||
"starters": "初始宝可梦", | ||
"shinyStarters": "闪光初始宝可梦", | ||
"speciesSeen": "遇到的种类", | ||
"speciesCaught": "捕捉的种类", | ||
"ribbonsOwned": "拥有缎带数", | ||
"classicRuns": "经典模式次数", | ||
"classicWins": "经典模式通关次数", | ||
"dailyRunAttempts": "每日挑战次数", | ||
"dailyRunWins": "每日挑战通关次数", | ||
"endlessRuns": "无尽模式挑战次数", | ||
"highestWaveEndless": "最高层数(无尽)", | ||
"highestMoney": "最多金钱", | ||
"highestDamage": "最高伤害", | ||
"highestHPHealed": "最多治疗", | ||
"pokemonEncountered": "遇敌数量", | ||
"pokemonDefeated": "打倒数量", | ||
"pokemonCaught": "捕捉数量", | ||
"eggsHatched": "孵蛋数量", | ||
"subLegendsSeen": "遇到的二级神宝可梦", | ||
"subLegendsCaught": "捕捉的二级神宝可梦", | ||
"subLegendsHatched": "孵化的二级神宝可梦", | ||
"legendsSeen": "遇到的传说宝可梦", | ||
"legendsCaught": "捕捉的传说宝可梦", | ||
"legendsHatched": "孵化的传说宝可梦", | ||
"mythicalsSeen": "遇到的幻兽宝可梦", | ||
"mythicalsCaught": "捕捉的幻兽宝可梦", | ||
"mythicalsHatched": "孵化的幻兽宝可梦", | ||
"shiniesSeen": "遇到的闪光宝可梦", | ||
"shiniesCaught": "捕捉的闪光宝可梦", | ||
"shiniesHatched": "孵化的闪光宝可梦", | ||
"pokemonFused": "融合宝可梦次数", | ||
"trainersDefeated": "打败的训练师数", | ||
"eggsPulled": "总扭蛋次数", | ||
"rareEggsPulled": "稀有扭蛋数", | ||
"epicEggsPulled": "史诗扭蛋数", | ||
"legendaryEggsPulled": "传说扭蛋数", | ||
"manaphyEggsPulled": "玛娜霏扭蛋数", | ||
} as const; |