mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-24 09:51:04 +00:00
04d456a60e
* Localization: Localized Gacha Machine Names * Update src/locales/zh_TW/egg.ts Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> * Update src/locales/zh_TW/egg.ts Co-authored-by: Enoch <enoch.jwsong@gmail.com> * Update src/locales/de/egg.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * Update src/locales/fr/egg.ts Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> * Update src/locales/ko/egg.ts Co-authored-by: sodam <66295123+sodaMelon@users.noreply.github.com> * Update src/locales/zh_TW/egg.ts Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> * Update src/locales/zh_CN/egg.ts Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> * Update src/locales/es/egg.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> * Update Brazilian Portuguese translation for egg.ts * added smaller text size option * update egg.ts translations for German and Brazilian Portuguese * some updates * update egg.ts translations for Spanish and Brazilian Portuguese * Update EggGachaUiHandler to use array.includes for language check * update German translation for legendary egg gatcha * Update src/locales/es/egg.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> * update translations for egg.ts in Spanish and Brazilian Portuguese --------- Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> Co-authored-by: Enoch <enoch.jwsong@gmail.com> Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> Co-authored-by: sodam <66295123+sodaMelon@users.noreply.github.com> Co-authored-by: InnocentGameDev <asdargmng@gmail.com>
29 lines
1.2 KiB
TypeScript
29 lines
1.2 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
||
|
||
export const egg: SimpleTranslationEntries = {
|
||
"egg": "蛋",
|
||
"greatTier": "稀有",
|
||
"ultraTier": "史诗",
|
||
"masterTier": "传说",
|
||
"defaultTier": "普通",
|
||
"hatchWavesMessageSoon": "里面传来声音!\n似乎快要孵化了!",
|
||
"hatchWavesMessageClose": "有时好像会动一下。\n就快孵化了吧?",
|
||
"hatchWavesMessageNotClose": "会孵化出什么呢?\n看来还需要很长时\n间才能孵化。",
|
||
"hatchWavesMessageLongTime": "这个蛋需要很长时间\n才能孵化。",
|
||
"gachaTypeLegendary": "传说概率上升",
|
||
"gachaTypeMove": "稀有概率上升",
|
||
"gachaTypeShiny": "闪光概率上升",
|
||
"selectMachine": "选择一个机器。",
|
||
"notEnoughVouchers": "你没有足够的兑换券!",
|
||
"tooManyEggs": "你的蛋太多啦!",
|
||
"pull": "次",
|
||
"pulls": "次",
|
||
"sameSpeciesEgg": "{{species}}将会从蛋中孵化!",
|
||
"hatchFromTheEgg": "{{pokemonName}} 从蛋中孵化了!",
|
||
"eggMoveUnlock": "蛋招式已解锁: {{moveName}}",
|
||
"rareEggMoveUnlock": "稀有蛋招式已解锁: {{moveName}}",
|
||
"moveUPGacha": "蛋招式UP!",
|
||
"shinyUPGacha": "闪光UP!",
|
||
"legendaryUPGacha": "UP!",
|
||
} as const;
|