Update Korean translation for the latest commits
ToggleSize dependencypull/737/heade4d3f73d
, + Align togglesize locale text Frisk description6d73500a
Starter select UI34a4f869
,74ee3329
Add ability triggers locale file1c56efc8
Zippy Zap description4e279224
parent
a97d3a0952
commit
0591da443a
|
@ -0,0 +1,5 @@
|
|||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||
|
||||
export const abilityTriggers: SimpleTranslationEntries = {
|
||||
'blockRecoilDamage' : `{{pokemonName}}(는)은 {{abilityName}} 때문에\n반동 데미지를 받지 않는다!`,
|
||||
} as const;
|
|
@ -479,7 +479,8 @@ export const ability: AbilityTranslationEntries = {
|
|||
},
|
||||
frisk: {
|
||||
name: "통찰",
|
||||
description: "등장했을 때 상대의 지닌 물건을 통찰할 수 있다."
|
||||
/* 효과 변경 */
|
||||
description: "등장했을 때 상대의 특성을 통찰할 수 있다."
|
||||
},
|
||||
reckless: {
|
||||
name: "이판사판",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import { ability } from "./ability";
|
||||
import { abilityTriggers } from "./ability-trigger";
|
||||
import { battle } from "./battle";
|
||||
import { commandUiHandler } from "./command-ui-handler";
|
||||
import { fightUiHandler } from "./fight-ui-handler";
|
||||
|
@ -16,6 +17,7 @@ import { tutorial } from "./tutorial";
|
|||
|
||||
export const koConfig = {
|
||||
ability,
|
||||
abilityTriggers,
|
||||
battle,
|
||||
commandUiHandler,
|
||||
fightUiHandler,
|
||||
|
|
|
@ -2920,7 +2920,8 @@ export const move: MoveTranslationEntries = {
|
|||
},
|
||||
zippyZap: {
|
||||
name: "파찌파찌액셀",
|
||||
effect: "맹렬한 속도의 전격 공격. 반드시 선제공격할 수 있고 급소에 맞는다."
|
||||
/* 임의번역 (렛츠고 신규 기술) */
|
||||
effect: "맹렬한 속도의 전격 공격. 반드시 선제공격할 수 있고 자신의 회피율을 높인다."
|
||||
},
|
||||
splishySplash: {
|
||||
name: "참방참방서핑",
|
||||
|
|
|
@ -21,12 +21,15 @@ export const starterSelectUiHandler: SimpleTranslationEntries = {
|
|||
"selectMoveSwapWith": "교체될 기술을 선택해주세요. 대상:",
|
||||
"unlockPassive": "패시브 해금",
|
||||
"reduceCost": "코스트 줄이기",
|
||||
"cycleShiny": "R: 색이 다른 포켓몬 전환",
|
||||
"cycleForm": 'F: 폼 전환',
|
||||
"cycleShiny": "R: 색상 전환",
|
||||
"cycleForm": 'F: 폼 체인지',
|
||||
"cycleGender": 'G: 암수 전환',
|
||||
"cycleAbility": 'E: 특성 전환',
|
||||
"cycleNature": 'N: 성격 전환',
|
||||
"cycleVariant": 'V: 형태 전환',
|
||||
"enablePassive": "패시브 활성화",
|
||||
"disablePassive": "패시브 비활성화"
|
||||
"disablePassive": "패시브 비활성화",
|
||||
"locked": "잠김",
|
||||
"disabled": "비활성",
|
||||
"uncaught": "미등록",
|
||||
}
|
|
@ -576,6 +576,9 @@ export default class StarterSelectUiHandler extends MessageUiHandler {
|
|||
case 'zh_CN':
|
||||
instructionTextSize = '42px';
|
||||
break;
|
||||
case 'ko':
|
||||
instructionTextSize = '38px';
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue