mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-24 02:29:25 +01:00
* Add korean locale without translation * Translate ability,move,pokemon to Korean * Translate miscellaneous to Korean * Add Accuracy in the fight ui to Korean * Apply nature,growth rate lang files to Korean * Add missed file import to Korean config.ts * Add font and its license for Korean then Apply it pokemon-dppt from FontStruction and its license * Translate any other lang file to Korean * Cleanup Korean locale files Indentation for pokemon and starter-select-ui-handler Make config shoft * Update Korean translation for the latest commits ToggleSize dependencye4d3f73d, + Align togglesize locale text Frisk description6d73500aStarter select UI34a4f869,74ee3329Add ability triggers locale file1c56efc8Zippy Zap description4e279224* Implement locale font loading Revert multiple font usage from stylefe7fe845Dynamic font loading on language changed * Translate new localization parts to Korean Return to title become save and quit menu-ui-handler.tsac2e7812Generation text added starter-select-ui-handler.tsafcffab9Missing translations for learning move battles.ts:countdownPoof, learnMoveAnd44c0d29cWeather & evolution texts translated config.ts, weather.ts, menu.tsb8dff030Added modifier type file for item translate config.ts, modifier-type.tsb5ae8330,b82b8c31Egg gatcha machine is now Korean config.ts, egg.ts975d1ed5Add splash message literals to locales config.ts, splash-messages.ts8dce9fa2Trainers are also localized config.ts, trainers.tsb06190c4,7f003d46,364b19dfDouble battle trainers appeared battle.ts:trainerAppearedDoublef1e97f3b* Small patches to Korean translations Include generation consistency (learnMovePrompt, eggHatching), wrong space (learnMoveReplaceQuestion), missing word (learnMoveNotLearned), match to modifier-type.ts (ivScannerUseQuestion), and match to english and else (bossAppeared) * Apply edits to Korean translation Re-order config.ts3f571a36Fix splash message attribute to fixed config429e6635* Corrections and new text for Korean translations Trainer misstypo correction0cd305d7trainer.ts BerryType localization25014208config.ts, berry.ts IV scanner updated96af567cconfig.ts, battle-message-ui-handler.ts Melt stat and type into info3cc9c93config.ts, modifier-type.ts pokemon-stat.ts -> pokemon-info.ts * Update Korean locale up to date Larry and Lance are now unique93dee06eTrainer names errors about 'poké'49adedbc,13f2cafeWrong text edit for maylene trainers.ts Egg voucher translation7216990dconfig.ts, voucher.ts Cleanup starter select ui handlerca1ae4b5,b95a59c0starter-select-ui-handler.ts Correct text overflow tutorial.ts * Modify loadFont to fit in nonExplicitSupportedLngs 'ko-KR' or 'ko' is loaded browser by browser, in any case font will be loaded. * Update Korean translations * Apply updated text Berry pouch8b4aa872modifier-type.ts Acrobatics0d614526move.ts failedToLoadSaveData32fadf8cmenu.ts HoneyGathercaeb22c2ability.ts * Apply added Text Plates and Memoriesf914b8femodifier-type.ts trainerSendOut, moneyWon, partyFull79af1152battle.ts gym_leader_double, champion_double, Double Names aaa95ebe elite_four_female, champion_femaleac2f7755trainers.ts * Apply new locale category implement Biomesde1c2b2bconfig.ts, biome.ts Trainer dialogueac2f7755,d23d8356config.ts, dialogue.ts Statistics6d2b8ef2config.ts, game-stats-ui-handler Info Containerfb26b6d5config.ts, pokemon-info-container.ts * Recover coding style include 2-space-indentation * Add Korean Font No more license text file * Add missing config to Korean * Fix ESLint failure on Korean * Fix ESLint failure on Korean 2 * Update to Main Localization Changes --------- Co-authored-by: Benjamin Odom <bennybroseph@gmail.com>
24 lines
912 B
TypeScript
24 lines
912 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const menuUiHandler: SimpleTranslationEntries = {
|
|
"GAME_SETTINGS": "게임 설정",
|
|
"ACHIEVEMENTS": "업적",
|
|
"STATS": "통계",
|
|
"VOUCHERS": "바우처",
|
|
"EGG_LIST": "알 목록",
|
|
"EGG_GACHA": "알 뽑기",
|
|
"MANAGE_DATA": "데이터 관리",
|
|
"COMMUNITY": "커뮤니티",
|
|
"SAVE_AND_QUIT": "저장 후 나가기",
|
|
"LOG_OUT": "로그아웃",
|
|
"slot": "슬롯 {{slotNumber}}",
|
|
"importSession": "세션 불러오기",
|
|
"importSlotSelect": "불러올 슬롯을 골라주세요.",
|
|
"exportSession": "세션 내보내기",
|
|
"exportSlotSelect": "내보낼 슬롯을 골라주세요.",
|
|
"importData": "데이터 불러오기",
|
|
"exportData": "데이터 내보내기",
|
|
"cancel": "취소",
|
|
"losingProgressionWarning": "전투 시작으로부터의 진행 상황을 잃게 됩니다. 계속하시겠습니까?"
|
|
} as const;
|