mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-03 20:27:09 +00:00
e0fd11746f
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.
10 lines
290 B
TypeScript
10 lines
290 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const commandUiHandler: SimpleTranslationEntries = {
|
|
"fight": "싸운다",
|
|
"ball": "볼",
|
|
"pokemon": "포켓몬",
|
|
"run": "도망간다",
|
|
"actionMessage": "{{pokemonName}}[[는]] 무엇을 할까?",
|
|
} as const;
|