translate command/fight ui, pokeballs, stats, some of the starter select ui

This commit is contained in:
umbresp 2024-05-08 06:00:21 -05:00
parent e1117ddbfb
commit 20f7b93644
5 changed files with 32 additions and 32 deletions

View File

@ -2,7 +2,7 @@ import { SimpleTranslationEntries } from "#app/plugins/i18n";
export const commandUiHandler: SimpleTranslationEntries = { export const commandUiHandler: SimpleTranslationEntries = {
"fight": "战斗", "fight": "战斗",
"ball": "精靈球", "ball": "球",
"pokemon": "宝可梦", "pokemon": "宝可梦",
"run": "逃走", "run": "逃走",
"actionMessage": "{{pokemonName}}要怎么做?", "actionMessage": "{{pokemonName}}要怎么做?",

View File

@ -1,6 +1,6 @@
import { SimpleTranslationEntries } from "#app/plugins/i18n"; import { SimpleTranslationEntries } from "#app/plugins/i18n";
export const fightUiHandler: SimpleTranslationEntries = { export const fightUiHandler: SimpleTranslationEntries = {
"pp": "PP", "pp": " ",
"power": "POWER", "power": "威力",
} as const; } as const;

View File

@ -1,10 +1,10 @@
import { SimpleTranslationEntries } from "#app/plugins/i18n"; import { SimpleTranslationEntries } from "#app/plugins/i18n";
export const pokeball: SimpleTranslationEntries = { export const pokeball: SimpleTranslationEntries = {
"pokeBall": "Poké Ball", "pokeBall": "精灵球",
"greatBall": "Great Ball", "greatBall": "超级球",
"ultraBall": "Ultra Ball", "ultraBall": "高级球",
"rogueBall": "Rogue Ball", "rogueBall": "Rogue",
"masterBall": "Master Ball", "masterBall": "大师球",
"luxuryBall": "Luxury Ball", "luxuryBall": "豪华球",
} as const; } as const;

View File

@ -1,16 +1,16 @@
import { SimpleTranslationEntries } from "#app/plugins/i18n"; import { SimpleTranslationEntries } from "#app/plugins/i18n";
export const pokemonStat: SimpleTranslationEntries = { export const pokemonStat: SimpleTranslationEntries = {
"HP": "Max. HP", "HP": "",
"HPshortened": "MaxHP", "HPshortened": "",
"ATK": "Attack", "ATK": "攻击",
"ATKshortened": "Atk", "ATKshortened": "攻击",
"DEF": "Defense", "DEF": "防御",
"DEFshortened": "Def", "DEFshortened": "防御",
"SPATK": "Sp. Atk", "SPATK": "特攻",
"SPATKshortened": "SpAtk", "SPATKshortened": "特攻",
"SPDEF": "Sp. Def", "SPDEF": "特防",
"SPDEFshortened": "SpDef", "SPDEFshortened": "特防",
"SPD": "Speed", "SPD": "速度",
"SPDshortened": "Spd" "SPDshortened": "速度"
} as const; } as const;

View File

@ -7,12 +7,12 @@ import { SimpleTranslationEntries } from "#app/plugins/i18n";
*/ */
export const starterSelectUiHandler: SimpleTranslationEntries = { export const starterSelectUiHandler: SimpleTranslationEntries = {
"confirmStartTeam":'Begin with these Pokémon?', "confirmStartTeam":'Begin with these Pokémon?',
"growthRate": "Growth Rate:", "growthRate": "经验值累积速度:",
"ability": "Ability:", "ability": "特性:",
"passive": "Passive:", "passive": "Passive:",
"nature": "Nature:", "nature": "性格",
"eggMoves": 'Egg Moves', "eggMoves": '蛋招式',
"start": "Start", "start": "开始",
"addToParty": "Add to Party", "addToParty": "Add to Party",
"toggleIVs": 'Toggle IVs', "toggleIVs": 'Toggle IVs',
"manageMoves": 'Manage Moves', "manageMoves": 'Manage Moves',
@ -21,12 +21,12 @@ export const starterSelectUiHandler: SimpleTranslationEntries = {
"selectMoveSwapWith": "Select a move to swap with", "selectMoveSwapWith": "Select a move to swap with",
"unlockPassive": "Unlock Passive", "unlockPassive": "Unlock Passive",
"reduceCost": "Reduce Cost", "reduceCost": "Reduce Cost",
"cycleShiny": "R: Cycle Shiny", "cycleShiny": "R:循环发光",
"cycleForm": 'F: Cycle Form', "cycleForm": 'F:循环形态',
"cycleGender": 'G: Cycle Gender', "cycleGender": 'G:循环性别',
"cycleAbility": 'E: Cycle Ability', "cycleAbility": 'E:循环特性',
"cycleNature": 'N: Cycle Nature', "cycleNature": 'N:循环性格',
"cycleVariant": 'V: Cycle Variant', "cycleVariant": 'V:循环Variant',
"enablePassive": "Enable Passive", "enablePassive": "Enable Passive",
"disablePassive": "Disable Passive" "disablePassive": "Disable Passive"
} }