mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-20 08:45:35 +01:00
* add favorite filter. add favorite starter attribute * add error handling for undefined favorite attribute * add placeholders in each locales * add favorite icon from great art team * update favorite icon to code * update korean translation * align icons * initialize the starter preferences if they don't exist * update requested changes
54 lines
1.7 KiB
TypeScript
54 lines
1.7 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
/**
|
|
* 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": "使用這些寶可夢開始嗎?",
|
|
"confirmExit": "Do you want to exit?",
|
|
"invalidParty": "此為無效隊伍!",
|
|
"gen1": "I",
|
|
"gen2": "II",
|
|
"gen3": "III",
|
|
"gen4": "IV",
|
|
"gen5": "V",
|
|
"gen6": "VI",
|
|
"gen7": "VII",
|
|
"gen8": "VIII",
|
|
"gen9": "IX",
|
|
"growthRate": "成長速度:",
|
|
"ability": "特性:",
|
|
"passive": "被動:",
|
|
"nature": "性格:",
|
|
"eggMoves": "孵化招式",
|
|
"start": "開始",
|
|
"addToParty": "加入隊伍",
|
|
"removeFromParty": "移出隊伍",
|
|
"toggleIVs": "查看個體值",
|
|
"manageMoves": "管理技能",
|
|
"manageNature": "管理性格",
|
|
"addToFavorites": "Add to Favorites",
|
|
"removeFromFavorites": "Remove from Favorites",
|
|
"useCandies": "使用糖果",
|
|
"selectNature": "選擇性格",
|
|
"selectMoveSwapOut": "選擇想要替換走的招式",
|
|
"selectMoveSwapWith": "選擇想要替換成的招式",
|
|
"sameSpeciesEgg": "買蛋",
|
|
"unlockPassive": "解鎖被動",
|
|
"reduceCost": "降低花費",
|
|
"cycleShiny": ": 閃光",
|
|
"cycleForm": ": 形態",
|
|
"cycleGender": ": 性別",
|
|
"cycleAbility": ": 特性",
|
|
"cycleNature": ": 性格",
|
|
"cycleVariant": ": 變種",
|
|
"goFilter": ": 轉到篩選",
|
|
"enablePassive": "啟用被動",
|
|
"disablePassive": "禁用被動",
|
|
"locked": "未解鎖",
|
|
"disabled": "已禁用",
|
|
"uncaught": "未捕獲"
|
|
};
|