70 lines
No EOL
6.4 KiB
C
70 lines
No EOL
6.4 KiB
C
|
||
#pragma once
|
||
|
||
#ifdef _KR
|
||
|
||
#define STR_CONFIRM_PATCH_VER _T("패치 버전 확인중 입니다.")
|
||
#define STR_DRAGON_NEST_RUN_IN_FOLDER _T("드레곤 네스트 폴더에서 수동패치를 실행해주세요.")
|
||
#define STR_FAILED_PATCH _T("패치가 실패 하였습니다.")
|
||
#define STR_NOT_READ_DATA _T("데이터를 읽어 올수 없습니다.")
|
||
#define STR_CLIENT_NOT_READ_VERSION _T("클라이언트 버젼을 읽어 올수 없습니다.")
|
||
#define STR_MANUALPATCH_NOT_MATCH_VERSION _T("수동패치 버젼과 클라이언트 버전이 맞지 않습니다.")
|
||
#define STR_PATCH_COMPLETE _T("패치가 완료 되었습니다.")
|
||
#define STR_INSTALL_PATCH_DATA _T("패치 데이터를 설치 중입니다.")
|
||
#define STR_NOT_YET_PATCH_CANCEL _T("패치가 완료되지 않았습니다. 정말 취소하시 겠습니까?")
|
||
#define STR_CONFIRM _T("확인")
|
||
|
||
#elif _CH
|
||
|
||
#define STR_CONFIRM_PATCH_VER _T("开始确认版本")
|
||
#define STR_DRAGON_NEST_RUN_IN_FOLDER _T("无法读取更新数据,请确认安装路径。")
|
||
#define STR_FAILED_PATCH _T("更新失败。")
|
||
#define STR_NOT_READ_DATA _T("无法读取更新数据。")
|
||
#define STR_CLIENT_NOT_READ_VERSION _T("无法读取客户端版本信息。")
|
||
#define STR_MANUALPATCH_NOT_MATCH_VERSION _T("手动更新版本与目前客户端版本不一致。")
|
||
#define STR_PATCH_COMPLETE _T("更新成功。")
|
||
#define STR_INSTALL_PATCH_DATA _T("正在安装更新包。")
|
||
#define STR_NOT_YET_PATCH_CANCEL _T("还在进行更新。确实要取消更新吗?")
|
||
#define STR_CONFIRM _T("确认")
|
||
|
||
#elif _TW
|
||
|
||
#define STR_CONFIRM_PATCH_VER _T("改版版本確認中…")
|
||
#define STR_DRAGON_NEST_RUN_IN_FOLDER _T("請在龍之谷遊戲程式資料夾內執行手動更新檔案!")
|
||
#define STR_FAILED_PATCH _T("手動更新失敗!")
|
||
#define STR_NOT_READ_DATA _T("檔案讀取失敗!")
|
||
#define STR_CLIENT_NOT_READ_VERSION _T("客戶端程式版本讀取失敗!")
|
||
#define STR_MANUALPATCH_NOT_MATCH_VERSION _T("手動更新版本與客戶端版本不符!")
|
||
#define STR_PATCH_COMPLETE _T("手動更新完成!")
|
||
#define STR_INSTALL_PATCH_DATA _T("更新資料設定中…")
|
||
#define STR_NOT_YET_PATCH_CANCEL _T("更新尚未結束!您確定要取消嗎?")
|
||
#define STR_CONFIRM _T("確認")
|
||
|
||
#elif _US
|
||
|
||
#define STR_CONFIRM_PATCH_VER _T("Confirming Patch Version.")
|
||
#define STR_DRAGON_NEST_RUN_IN_FOLDER _T("Execute the manual patch in your Dragon Nest folder.")
|
||
#define STR_FAILED_PATCH _T("Patch failed.")
|
||
#define STR_NOT_READ_DATA _T("Unable to read data.")
|
||
#define STR_CLIENT_NOT_READ_VERSION _T("Unable to read client version.")
|
||
#define STR_MANUALPATCH_NOT_MATCH_VERSION _T("Manual patch version and client version do not match.")
|
||
#define STR_PATCH_COMPLETE _T("Patch complete!")
|
||
#define STR_INSTALL_PATCH_DATA _T("Patch data installing...")
|
||
#define STR_NOT_YET_PATCH_CANCEL _T("The patch is not yet complete. Are you sure you want to cancel?")
|
||
#define STR_CONFIRM _T("Confirm")
|
||
|
||
#else
|
||
|
||
#define STR_CONFIRM_PATCH_VER _T("Confirming Patch Version.")
|
||
#define STR_DRAGON_NEST_RUN_IN_FOLDER _T("Execute the manual patch in your Dragon Nest folder.")
|
||
#define STR_FAILED_PATCH _T("Patch failed.")
|
||
#define STR_NOT_READ_DATA _T("Unable to read data.")
|
||
#define STR_CLIENT_NOT_READ_VERSION _T("Unable to read client version.")
|
||
#define STR_MANUALPATCH_NOT_MATCH_VERSION _T("Manual patch version and client version do not match.")
|
||
#define STR_MANUALPATCH_NOT_MATCH_SERVER_VERSION _T("Manual patch version and server version do not match.")
|
||
#define STR_PATCH_COMPLETE _T("Patch complete!")
|
||
#define STR_INSTALL_PATCH_DATA _T("Patch data installing...")
|
||
#define STR_NOT_YET_PATCH_CANCEL _T("The patch is not yet complete. Are you sure you want to cancel?")
|
||
#define STR_CONFIRM _T("Confirm")
|
||
|
||
#endif |