Update Korean translation for the latest commits

ToggleSize dependency e4d3f73d,
 + Align togglesize locale text
Frisk description 6d73500a
Starter select UI 34a4f869, 74ee3329
Add ability triggers locale file 1c56efc8
Zippy Zap description 4e279224
pull/737/head
Mr.WaterT 2024-05-14 22:55:19 +09:00
parent a97d3a0952
commit 0591da443a
6 changed files with 20 additions and 5 deletions

View File

@ -0,0 +1,5 @@
import { SimpleTranslationEntries } from "#app/plugins/i18n";
export const abilityTriggers: SimpleTranslationEntries = {
'blockRecoilDamage' : `{{pokemonName}}(는)은 {{abilityName}} 때문에\n반동 데미지를 받지 않는다!`,
} as const;

View File

@ -479,7 +479,8 @@ export const ability: AbilityTranslationEntries = {
}, },
frisk: { frisk: {
name: "통찰", name: "통찰",
description: "등장했을 때 상대의 지닌 물건을 통찰할 수 있다." /* 효과 변경 */
description: "등장했을 때 상대의 특성을 통찰할 수 있다."
}, },
reckless: { reckless: {
name: "이판사판", name: "이판사판",

View File

@ -1,4 +1,5 @@
import { ability } from "./ability"; import { ability } from "./ability";
import { abilityTriggers } from "./ability-trigger";
import { battle } from "./battle"; import { battle } from "./battle";
import { commandUiHandler } from "./command-ui-handler"; import { commandUiHandler } from "./command-ui-handler";
import { fightUiHandler } from "./fight-ui-handler"; import { fightUiHandler } from "./fight-ui-handler";
@ -16,6 +17,7 @@ import { tutorial } from "./tutorial";
export const koConfig = { export const koConfig = {
ability, ability,
abilityTriggers,
battle, battle,
commandUiHandler, commandUiHandler,
fightUiHandler, fightUiHandler,

View File

@ -2920,7 +2920,8 @@ export const move: MoveTranslationEntries = {
}, },
zippyZap: { zippyZap: {
name: "파찌파찌액셀", name: "파찌파찌액셀",
effect: "맹렬한 속도의 전격 공격. 반드시 선제공격할 수 있고 급소에 맞는다." /* 임의번역 (렛츠고 신규 기술) */
effect: "맹렬한 속도의 전격 공격. 반드시 선제공격할 수 있고 자신의 회피율을 높인다."
}, },
splishySplash: { splishySplash: {
name: "참방참방서핑", name: "참방참방서핑",

View File

@ -21,12 +21,15 @@ export const starterSelectUiHandler: SimpleTranslationEntries = {
"selectMoveSwapWith": "교체될 기술을 선택해주세요. 대상:", "selectMoveSwapWith": "교체될 기술을 선택해주세요. 대상:",
"unlockPassive": "패시브 해금", "unlockPassive": "패시브 해금",
"reduceCost": "코스트 줄이기", "reduceCost": "코스트 줄이기",
"cycleShiny": "R: 색이 다른 포켓몬 전환", "cycleShiny": "R: 색 전환",
"cycleForm": 'F: 폼 전환', "cycleForm": 'F: 폼 체인지',
"cycleGender": 'G: 암수 전환', "cycleGender": 'G: 암수 전환',
"cycleAbility": 'E: 특성 전환', "cycleAbility": 'E: 특성 전환',
"cycleNature": 'N: 성격 전환', "cycleNature": 'N: 성격 전환',
"cycleVariant": 'V: 형태 전환', "cycleVariant": 'V: 형태 전환',
"enablePassive": "패시브 활성화", "enablePassive": "패시브 활성화",
"disablePassive": "패시브 비활성화" "disablePassive": "패시브 비활성화",
"locked": "잠김",
"disabled": "비활성",
"uncaught": "미등록",
} }

View File

@ -576,6 +576,9 @@ export default class StarterSelectUiHandler extends MessageUiHandler {
case 'zh_CN': case 'zh_CN':
instructionTextSize = '42px'; instructionTextSize = '42px';
break; break;
case 'ko':
instructionTextSize = '38px';
break;
} }