pokerogue/src/locales/ko/command-ui-handler.ts
Yurical e0fd11746f
[Localization] Use proper postpositional particle for Korean (#1759)
In Korean, postpositional particles vary depending on whether the
preceding syllable ends in a consonant or a vowel. Currently there
is no ability differentiate between the two types of particles, so both
forms are being used at the same time.
To remedy this problem, I added the relevant i18next processor to
properly select and print the correct form of the particle.
2024-06-03 21:38:52 -04:00

10 lines
290 B
TypeScript

import { SimpleTranslationEntries } from "#app/plugins/i18n";
export const commandUiHandler: SimpleTranslationEntries = {
"fight": "싸운다",
"ball": "볼",
"pokemon": "포켓몬",
"run": "도망간다",
"actionMessage": "{{pokemonName}}[[는]] 무엇을 할까?",
} as const;