Modify Korean 'shiny' and gacha texts to match original (#2843)
This commit is contained in:
parent
965bc687b3
commit
9a1ff57941
|
@ -22,7 +22,7 @@ export const egg: SimpleTranslationEntries = {
|
||||||
"hatchFromTheEgg": "알이 부화해서\n{{pokemonName}}[[가]] 태어났다!",
|
"hatchFromTheEgg": "알이 부화해서\n{{pokemonName}}[[가]] 태어났다!",
|
||||||
"eggMoveUnlock": "알 기술 {{moveName}}[[를]]\n사용할 수 있게 되었다!",
|
"eggMoveUnlock": "알 기술 {{moveName}}[[를]]\n사용할 수 있게 되었다!",
|
||||||
"rareEggMoveUnlock": "레어 알 기술 {{moveName}}[[를]]\n사용할 수 있게 되었다!",
|
"rareEggMoveUnlock": "레어 알 기술 {{moveName}}[[를]]\n사용할 수 있게 되었다!",
|
||||||
"moveUPGacha": "기술 UP!",
|
"moveUPGacha": "알 기술 UP!",
|
||||||
"shinyUPGacha": "특별색 UP!",
|
"shinyUPGacha": "색이 다른 포켓몬\nUP!",
|
||||||
"legendaryUPGacha": "UP!",
|
"legendaryUPGacha": "UP!",
|
||||||
} as const;
|
} as const;
|
||||||
|
|
|
@ -84,7 +84,7 @@ export const settings: SimpleTranslationEntries = {
|
||||||
"buttonCancel": "취소",
|
"buttonCancel": "취소",
|
||||||
"buttonStats": "스탯",
|
"buttonStats": "스탯",
|
||||||
"buttonCycleForm": "폼 변환",
|
"buttonCycleForm": "폼 변환",
|
||||||
"buttonCycleShiny": "특별한 색 변환",
|
"buttonCycleShiny": "색이 다른 변환",
|
||||||
"buttonCycleGender": "성별 변환",
|
"buttonCycleGender": "성별 변환",
|
||||||
"buttonCycleAbility": "특성 변환",
|
"buttonCycleAbility": "특성 변환",
|
||||||
"buttonCycleNature": "성격 변환",
|
"buttonCycleNature": "성격 변환",
|
||||||
|
|
|
@ -32,7 +32,7 @@ export const starterSelectUiHandler: SimpleTranslationEntries = {
|
||||||
"unlockPassive": "패시브 해금",
|
"unlockPassive": "패시브 해금",
|
||||||
"reduceCost": "코스트 줄이기",
|
"reduceCost": "코스트 줄이기",
|
||||||
"sameSpeciesEgg": "알 구매하기",
|
"sameSpeciesEgg": "알 구매하기",
|
||||||
"cycleShiny": ": 특별한 색",
|
"cycleShiny": ": 색이 다른",
|
||||||
"cycleForm": ": 폼",
|
"cycleForm": ": 폼",
|
||||||
"cycleGender": ": 암수",
|
"cycleGender": ": 암수",
|
||||||
"cycleAbility": ": 특성",
|
"cycleAbility": ": 특성",
|
||||||
|
|
|
@ -103,7 +103,7 @@ export default class EggGachaUiHandler extends MessageUiHandler {
|
||||||
let pokemonIconX = -20;
|
let pokemonIconX = -20;
|
||||||
let pokemonIconY = 6;
|
let pokemonIconY = 6;
|
||||||
|
|
||||||
if (["de", "es", "fr", "pt-BR"].includes(currentLanguage)) {
|
if (["de", "es", "fr", "ko", "pt-BR"].includes(currentLanguage)) {
|
||||||
gachaTextStyle = TextStyle.SMALLER_WINDOW_ALT;
|
gachaTextStyle = TextStyle.SMALLER_WINDOW_ALT;
|
||||||
gachaX = 2;
|
gachaX = 2;
|
||||||
gachaY = 2;
|
gachaY = 2;
|
||||||
|
@ -155,7 +155,7 @@ export default class EggGachaUiHandler extends MessageUiHandler {
|
||||||
gachaUpLabel.setOrigin(0.5, 0);
|
gachaUpLabel.setOrigin(0.5, 0);
|
||||||
break;
|
break;
|
||||||
case GachaType.SHINY:
|
case GachaType.SHINY:
|
||||||
if (["de", "fr"].includes(currentLanguage)) {
|
if (["de", "fr", "ko"].includes(currentLanguage)) {
|
||||||
gachaUpLabel.setAlign("center");
|
gachaUpLabel.setAlign("center");
|
||||||
gachaUpLabel.setY(0);
|
gachaUpLabel.setY(0);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue