Commit 0d34b6c351872ef25b115241114aa9e936302c4d
1 parent
da8d6a2947
Exists in
master
and in
2 other branches
시스템 정보 표시 관련 변경
- HACCP 제공 시스템 정보 데이터 인터페이스 추가 - 영문 오타 수정
Showing
10 changed files
with
1320 additions
and
625 deletions
Show diff stats
app/gui/oven_control/config.cpp
| ... | ... | @@ -5,6 +5,7 @@ |
| 5 | 5 | #include <QApplication> |
| 6 | 6 | #include <QProcess> |
| 7 | 7 | #include "config.h" |
| 8 | +#include "define.h" | |
| 8 | 9 | #include "configdatetimedlg.h" |
| 9 | 10 | #include "configlanguagedlg.h" |
| 10 | 11 | #include "configtemptypedlg.h" |
| ... | ... | @@ -32,7 +33,6 @@ |
| 32 | 33 | using namespace Define; |
| 33 | 34 | using namespace System; |
| 34 | 35 | |
| 35 | - | |
| 36 | 36 | Config* Config::instance = NULL; |
| 37 | 37 | |
| 38 | 38 | Config::Config(QObject *parent) : QObject(parent) |
| ... | ... | @@ -43,7 +43,7 @@ Config::Config(QObject *parent) : QObject(parent) |
| 43 | 43 | qApp->installEventFilter(&watcher); |
| 44 | 44 | applyCurrentConfigLanguage(); |
| 45 | 45 | applyConfig(); |
| 46 | - | |
| 46 | + loadProductInfo(); | |
| 47 | 47 | |
| 48 | 48 | // m_setFavorite.insert(2); |
| 49 | 49 | // m_setFavorite.insert(3); |
| ... | ... | @@ -70,6 +70,13 @@ Config* Config::getInstance(QObject *parent){ |
| 70 | 70 | return instance; |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | +QString Config::getProductSWVersion() | |
| 74 | +{ | |
| 75 | + if(MAJOR_VER == 0) | |
| 76 | + return QString("V%1.%2.%3 BETA").arg(MAJOR_VER).arg(MINOR_VER).arg(HOTFIX_VER); | |
| 77 | + else return QString("V%1.%2.%3").arg(MAJOR_VER).arg(MINOR_VER).arg(HOTFIX_VER); | |
| 78 | +} | |
| 79 | + | |
| 73 | 80 | void Config::initConfig(){ |
| 74 | 81 | memset(configlist.data,0x00,MAX_CONFIG_COUNT * 4); |
| 75 | 82 | configlist.items.language.d32=0; |
| ... | ... | @@ -436,13 +443,6 @@ void Config::removeFavorite(Define::ConfigType idx){ |
| 436 | 443 | m_setFavorite.remove((uint32_t)idx); |
| 437 | 444 | } |
| 438 | 445 | |
| 439 | -QString Config::getProductSerial() | |
| 440 | -{ | |
| 441 | - QString strProductSerial; | |
| 442 | - strProductSerial = DEFAULT_PRODUCT_SERIAL; | |
| 443 | - return strProductSerial; | |
| 444 | -} | |
| 445 | - | |
| 446 | 446 | void Config::applyCurrentConfigLanguage() |
| 447 | 447 | { |
| 448 | 448 | if(configlist.items.language.d32 == 0){ |
| ... | ... | @@ -481,6 +481,52 @@ void Config::allProgramInit() |
| 481 | 481 | } |
| 482 | 482 | } |
| 483 | 483 | |
| 484 | +bool Config::loadProductInfo() | |
| 485 | +{ | |
| 486 | + QString strTemp; | |
| 487 | + QMap<QString , QString> mapInfos; | |
| 488 | + | |
| 489 | + FileProcessor::readFromInfoFile(mapInfos, QString(MODEL_INFO_FILE_NAME)); | |
| 490 | + | |
| 491 | + //m_strProductModelName = mapInfos[tr("모 델 명")]; | |
| 492 | + | |
| 493 | + if(mapInfos.find(tr("모 델 명")) !=mapInfos.end()) | |
| 494 | + m_strProductModelName = mapInfos[tr("모 델 명")]; | |
| 495 | + else if(mapInfos.find(("모 델 명")) !=mapInfos.end()) | |
| 496 | + m_strProductModelName = mapInfos["모 델 명"]; | |
| 497 | + else m_strProductModelName = "PRIME ST-01"; | |
| 498 | + | |
| 499 | + //m_strProductDateTime = mapInfos[tr("제조일자")]; | |
| 500 | + if(mapInfos.find(tr("제조일자")) != mapInfos.end()) | |
| 501 | + m_strProductDateTime = mapInfos[tr("제조일자")]; | |
| 502 | + else if(mapInfos.find("제조일자") != mapInfos.end()) | |
| 503 | + m_strProductDateTime = mapInfos["제조일자"]; | |
| 504 | + else m_strProductDateTime = "2017-10"; | |
| 505 | + | |
| 506 | + | |
| 507 | + //m_strProductCountry = mapInfos[tr("제조국")]; | |
| 508 | + if(mapInfos.find(tr("제조국")) != mapInfos.end()) | |
| 509 | + m_strProductCountry = mapInfos[tr("제조국")]; | |
| 510 | + else if(mapInfos.find("제조국") != mapInfos.end()) | |
| 511 | + m_strProductCountry = mapInfos["제조국"]; | |
| 512 | + else m_strProductCountry= "Korea"; | |
| 513 | + | |
| 514 | + //m_strProductCompany = mapInfos[tr("제조사")]; | |
| 515 | + if(mapInfos.find(tr("제조사"))!= mapInfos.end()) | |
| 516 | + m_strProductCompany = mapInfos[tr("제조사")]; | |
| 517 | + else if(mapInfos.find("제조사")!=mapInfos.end()) | |
| 518 | + m_strProductCompany = mapInfos["제조사"]; | |
| 519 | + else m_strProductCompany="PRIME"; | |
| 520 | + | |
| 521 | + //m_strProductSerial = mapInfos[tr("제품번호")]; | |
| 522 | + if(mapInfos.find(tr("제품번호"))!=mapInfos.end()) | |
| 523 | + m_strProductSerial = mapInfos[tr("제품번호")]; | |
| 524 | + else if(mapInfos.find("제품번호")!=mapInfos.end()) | |
| 525 | + m_strProductSerial = mapInfos["제품번호"]; | |
| 526 | + else m_strProductSerial = "01"; | |
| 527 | + m_strProductType = tr(g_strModelTypeName[getConfigValue(Define::config_model).d32]); | |
| 528 | +} | |
| 529 | + | |
| 484 | 530 | void Config::execConfigWindow(QWidget *parent, Define::ConfigType idx){ |
| 485 | 531 | QDialog *dlg; |
| 486 | 532 | QString usbPath = ""; | ... | ... |
app/gui/oven_control/config.h
| ... | ... | @@ -112,6 +112,23 @@ const char hotline_service_item_name[3][32] ={ |
| 112 | 112 | }; |
| 113 | 113 | |
| 114 | 114 | |
| 115 | +static const char* g_strModelTypeName[] ={ | |
| 116 | + QT_TRANSLATE_NOOP("Config", "전기식 10단"), | |
| 117 | + QT_TRANSLATE_NOOP("Config", "전기식 20단"), | |
| 118 | + QT_TRANSLATE_NOOP("Config", "전기식 24단"), | |
| 119 | + QT_TRANSLATE_NOOP("Config", "전기식 40단"), | |
| 120 | + QT_TRANSLATE_NOOP("Config", "가스식 10단 LPG"), | |
| 121 | + QT_TRANSLATE_NOOP("Config", "가스식 20단 LPG"), | |
| 122 | + QT_TRANSLATE_NOOP("Config", "가스식 24단 LPG"), | |
| 123 | + QT_TRANSLATE_NOOP("Config", "가스식 40단 LPG"), | |
| 124 | + QT_TRANSLATE_NOOP("Config", "가스식 10단 LNG"), | |
| 125 | + QT_TRANSLATE_NOOP("Config", "가스식 20단 LNG"), | |
| 126 | + QT_TRANSLATE_NOOP("Config", "가스식 24단 LNG"), | |
| 127 | + QT_TRANSLATE_NOOP("Config", "가스식 40단 LNG") | |
| 128 | +}; | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 115 | 132 | |
| 116 | 133 | namespace Define |
| 117 | 134 | { |
| ... | ... | @@ -299,8 +316,15 @@ class Config : public QObject |
| 299 | 316 | ~Config(void); |
| 300 | 317 | |
| 301 | 318 | static Config *instance; |
| 302 | - InputOverwatcher watcher; | |
| 319 | + QString m_strProductModelName; | |
| 320 | + QString m_strProductDateTime; | |
| 321 | + QString m_strProductCountry; | |
| 322 | + QString m_strProductCompany; | |
| 303 | 323 | QString m_strProductSerial; |
| 324 | + QString m_strProductType; | |
| 325 | + InputOverwatcher watcher; | |
| 326 | + | |
| 327 | + | |
| 304 | 328 | |
| 305 | 329 | |
| 306 | 330 | |
| ... | ... | @@ -426,6 +450,13 @@ class Config : public QObject |
| 426 | 450 | |
| 427 | 451 | public: |
| 428 | 452 | static Config *getInstance(QObject *parent=0); |
| 453 | + QString getProductModelName(void){return m_strProductModelName;} | |
| 454 | + QString getProductDateTime(void){return m_strProductDateTime;} | |
| 455 | + QString getProductCountry(void){return m_strProductCountry;} | |
| 456 | + QString getProductCompany(void){return m_strProductCompany;} | |
| 457 | + QString getProductSerial(void){return m_strProductSerial;} | |
| 458 | + QString getProductSWVersion(void); | |
| 459 | + QString getProductType(void){return m_strProductType;} | |
| 429 | 460 | //static void init(); |
| 430 | 461 | void initConfig(void); |
| 431 | 462 | void soundConfigReset(void); |
| ... | ... | @@ -444,9 +475,10 @@ public: |
| 444 | 475 | void copyConfigArea(const char* buff); |
| 445 | 476 | void insertFavorite(Define::ConfigType idx); |
| 446 | 477 | void removeFavorite(Define::ConfigType idx); |
| 447 | - QString getProductSerial(); | |
| 448 | 478 | void applyCurrentConfigLanguage(); |
| 449 | 479 | void allProgramInit(void); |
| 480 | + bool loadProductInfo(void); | |
| 481 | + | |
| 450 | 482 | |
| 451 | 483 | |
| 452 | 484 | ... | ... |
app/gui/oven_control/configinfodlg.cpp
| ... | ... | @@ -6,24 +6,10 @@ |
| 6 | 6 | #include "soundplayer.h" |
| 7 | 7 | #include "config.h" |
| 8 | 8 | #include "define.h" |
| 9 | +#include "fileprocessor.h" | |
| 9 | 10 | |
| 10 | 11 | |
| 11 | 12 | |
| 12 | -static const char* g_strModelTypeName[] ={ | |
| 13 | - QT_TRANSLATE_NOOP("ConfigInfoDlg", "전기식 10단"), | |
| 14 | - QT_TRANSLATE_NOOP("ConfigInfoDlg", "전기식 20단"), | |
| 15 | - QT_TRANSLATE_NOOP("ConfigInfoDlg", "전기식 24단"), | |
| 16 | - QT_TRANSLATE_NOOP("ConfigInfoDlg", "전기식 40단"), | |
| 17 | - QT_TRANSLATE_NOOP("ConfigInfoDlg", "가스식 10단 LPG"), | |
| 18 | - QT_TRANSLATE_NOOP("ConfigInfoDlg", "가스식 20단 LPG"), | |
| 19 | - QT_TRANSLATE_NOOP("ConfigInfoDlg", "가스식 24단 LPG"), | |
| 20 | - QT_TRANSLATE_NOOP("ConfigInfoDlg", "가스식 40단 LPG"), | |
| 21 | - QT_TRANSLATE_NOOP("ConfigInfoDlg", "가스식 10단 LNG"), | |
| 22 | - QT_TRANSLATE_NOOP("ConfigInfoDlg", "가스식 20단 LNG"), | |
| 23 | - QT_TRANSLATE_NOOP("ConfigInfoDlg", "가스식 24단 LNG"), | |
| 24 | - QT_TRANSLATE_NOOP("ConfigInfoDlg", "가스식 40단 LNG") | |
| 25 | -}; | |
| 26 | - | |
| 27 | 13 | |
| 28 | 14 | |
| 29 | 15 | ConfigInfoDlg::ConfigInfoDlg(QWidget *parent, ConfigType type) : |
| ... | ... | @@ -69,37 +55,6 @@ void ConfigInfoDlg::on_ctrBtnOk_clicked() |
| 69 | 55 | deleteLater(); |
| 70 | 56 | } |
| 71 | 57 | |
| 72 | -bool ConfigInfoDlg::readFromInfoFile(QMap<QString, QString> &info_map, const QString &filename){ | |
| 73 | - QFile file(filename); | |
| 74 | - QString label,value; | |
| 75 | - qDebug() << "orgin size " << info_map.size(); | |
| 76 | - if(file.open(QIODevice::ReadOnly | QIODevice::Text)){ | |
| 77 | - while(!file.atEnd()){ | |
| 78 | - QString line = (QString::fromUtf8(file.readLine())).remove(QChar('\n')); | |
| 79 | - info_map[line.section(',',0,0)] = line.section(',',1,1); | |
| 80 | - } | |
| 81 | - qDebug() << file.fileName() << "read OK!"; | |
| 82 | - qDebug() << "final size " << info_map.size(); | |
| 83 | - QList<QString> list = info_map.keys(); | |
| 84 | - for(int i=0; i< info_map.size() ;i++){ | |
| 85 | - qDebug() << list[i] << info_map[list[i]]; | |
| 86 | - } | |
| 87 | - return true; | |
| 88 | - } | |
| 89 | - else { | |
| 90 | - qDebug() << file.fileName() + " file not found"; | |
| 91 | - } | |
| 92 | - return false; | |
| 93 | -} | |
| 94 | - | |
| 95 | -QString ConfigInfoDlg::getSoftwareVerString() | |
| 96 | -{ | |
| 97 | - if(MAJOR_VER == 0) | |
| 98 | - return QString("V%1.%2.%3 BETA").arg(MAJOR_VER).arg(MINOR_VER).arg(HOTFIX_VER); | |
| 99 | - else return QString("V%1.%2.%3").arg(MAJOR_VER).arg(MINOR_VER).arg(HOTFIX_VER); | |
| 100 | -} | |
| 101 | - | |
| 102 | - | |
| 103 | 58 | void ConfigInfoDlg::loadSoftwareInfo(){ |
| 104 | 59 | Config* cfg = Config::getInstance(); |
| 105 | 60 | QString strTemp; |
| ... | ... | @@ -109,15 +64,14 @@ void ConfigInfoDlg::loadSoftwareInfo(){ |
| 109 | 64 | |
| 110 | 65 | |
| 111 | 66 | //Default Value; |
| 112 | - mapInfos[tr("모 델 명")] = "PRIME ST-01"; | |
| 113 | - mapInfos[tr("제조일자")] = "2017-06"; | |
| 114 | - mapInfos[tr("제조국")] = "Korea"; | |
| 115 | - mapInfos[tr("제조사")] = "프라임"; | |
| 116 | - mapInfos[tr("제품번호")] = "01"; | |
| 117 | - mapInfos[tr("소프트웨어 버전")] = getSoftwareVerString(); | |
| 118 | - mapInfos[tr("현재모델")] = tr(g_strModelTypeName[cfg->getConfigValue(Define::config_model).d32]); | |
| 67 | + mapInfos[tr("모 델 명")] = cfg->getProductModelName(); | |
| 68 | + mapInfos[tr("제조일자")] = cfg->getProductDateTime(); | |
| 69 | + mapInfos[tr("제조국")] = cfg->getProductCountry(); | |
| 70 | + mapInfos[tr("제조사")] = cfg->getProductCompany(); | |
| 71 | + mapInfos[tr("제품번호")] = cfg->getProductSerial(); | |
| 72 | + mapInfos[tr("소프트웨어 버전")] = cfg->getProductSWVersion(); | |
| 73 | + mapInfos[tr("현재모델")] = cfg->getProductType(); | |
| 119 | 74 | |
| 120 | - readFromInfoFile(mapInfos, QString(MODEL_INFO_FILE_NAME)); | |
| 121 | 75 | |
| 122 | 76 | for(int i =0;i<MAX_SOFTWARE_INFO_CNT;i++){ |
| 123 | 77 | strTemp = mapInfos[tr(software_item_name[i])]; |
| ... | ... | @@ -142,7 +96,7 @@ void ConfigInfoDlg::loadHotlineChefInfo(){ |
| 142 | 96 | mapInfos[tr("이 름")] = "김성우"; |
| 143 | 97 | mapInfos[tr("위치정보")] ="인천광역시 남동구 남동동로 34번길 56"; |
| 144 | 98 | |
| 145 | - readFromInfoFile(mapInfos, QString(CHEF_INFO_FILE_NAME)); | |
| 99 | + FileProcessor::readFromInfoFile(mapInfos, QString(CHEF_INFO_FILE_NAME)); | |
| 146 | 100 | |
| 147 | 101 | for(int i =0;i<MAX_HOTLINE_CHEF_CNT;i++){ |
| 148 | 102 | strTemp = mapInfos[tr(hotline_chef_item_name[i])]; |
| ... | ... | @@ -165,7 +119,7 @@ void ConfigInfoDlg::loadHotlineServiceInfo(){ |
| 165 | 119 | mapInfos[tr("연 락 처")] = "1644-9533"; |
| 166 | 120 | mapInfos[tr("위치정보")] ="인천광역시 남동구 남동동로 34번길 56"; |
| 167 | 121 | |
| 168 | - readFromInfoFile(mapInfos, SERVICE_INFO_FILE_NAME); | |
| 122 | + FileProcessor::readFromInfoFile(mapInfos, SERVICE_INFO_FILE_NAME); | |
| 169 | 123 | |
| 170 | 124 | for(int i =0;i<MAX_HOTLINE_SERVICE_CNT;i++){ |
| 171 | 125 | strTemp = mapInfos[tr(hotline_service_item_name[i])]; | ... | ... |
app/gui/oven_control/configinfodlg.h
| ... | ... | @@ -31,8 +31,6 @@ protected: |
| 31 | 31 | void keyReleaseEvent(QKeyEvent* event); |
| 32 | 32 | void keyPressEvent(QKeyEvent* event); |
| 33 | 33 | |
| 34 | - bool readFromInfoFile(QMap<QString , QString> &info_map, const QString &filename); | |
| 35 | - QString getSoftwareVerString(void); | |
| 36 | 34 | |
| 37 | 35 | private: |
| 38 | 36 | Ui::ConfigInfoDlg *ui; | ... | ... |
app/gui/oven_control/fileprocessdlg.cpp
| ... | ... | @@ -845,6 +845,8 @@ void FileProcessDlg::standardInfoUpload() |
| 845 | 845 | file.setFileName(CHEF_INFO_FILE_NAME); |
| 846 | 846 | file.remove(); |
| 847 | 847 | sync(); |
| 848 | + QThread::msleep(1000); | |
| 849 | + Config::getInstance()->loadProductInfo(); | |
| 848 | 850 | strSrcPath = QString("%1%2").arg(strUsbPath).arg(CHEF_INFO_FILE_NAME); |
| 849 | 851 | qDebug() << strSrcPath; |
| 850 | 852 | if(QFile::copy( strSrcPath ,CHEF_INFO_FILE_NAME)){ | ... | ... |
app/gui/oven_control/fileprocessor.cpp
| ... | ... | @@ -68,5 +68,29 @@ quint64 FileProcessor::getDirSize(const QString &str){ |
| 68 | 68 | } |
| 69 | 69 | } |
| 70 | 70 | } |
| 71 | - return sizex; | |
| 71 | + return sizex; | |
| 72 | +} | |
| 73 | + | |
| 74 | +bool FileProcessor::readFromInfoFile(QMap<QString, QString> &info_map, const QString &filename) | |
| 75 | +{ | |
| 76 | + QFile file(filename); | |
| 77 | + QString label,value; | |
| 78 | + qDebug() << "orgin size " << info_map.size(); | |
| 79 | + if(file.open(QIODevice::ReadOnly | QIODevice::Text)){ | |
| 80 | + while(!file.atEnd()){ | |
| 81 | + QString line = (QString::fromUtf8(file.readLine())).remove(QChar('\n')); | |
| 82 | + info_map[line.section(',',0,0)] = line.section(',',1,1); | |
| 83 | + } | |
| 84 | + qDebug() << file.fileName() << "read OK!"; | |
| 85 | + qDebug() << "final size " << info_map.size(); | |
| 86 | + QList<QString> list = info_map.keys(); | |
| 87 | + for(int i=0; i< info_map.size() ;i++){ | |
| 88 | + qDebug() << list[i] << info_map[list[i]]; | |
| 89 | + } | |
| 90 | + return true; | |
| 91 | + } | |
| 92 | + else { | |
| 93 | + qDebug() << file.fileName() + " file not found"; | |
| 94 | + } | |
| 95 | + return false; | |
| 72 | 96 | } | ... | ... |
app/gui/oven_control/fileprocessor.h
| ... | ... | @@ -12,6 +12,7 @@ static bool fileExist(const QString &path_file); |
| 12 | 12 | static bool detectUSB(QString &usbpath); |
| 13 | 13 | static void getAllDirList(QDir d, QStringList &list); |
| 14 | 14 | static quint64 getDirSize(const QString &str); |
| 15 | +static bool readFromInfoFile(QMap<QString , QString> &info_map, const QString &filename); | |
| 15 | 16 | }; |
| 16 | 17 | |
| 17 | 18 | #endif // FILEPROCESSOR_H | ... | ... |
app/gui/oven_control/lang_en.qm
No preview for this file type
app/gui/oven_control/lang_en.ts
| ... | ... | @@ -14,14 +14,14 @@ |
| 14 | 14 | <translation>correction</translation> |
| 15 | 15 | </message> |
| 16 | 16 | <message> |
| 17 | - <location filename="adjustmentwindow.cpp" line="32"/> | |
| 17 | + <location filename="adjustmentwindow.cpp" line="33"/> | |
| 18 | 18 | <source>모든 설정 값을 공장(출고)초기화 |
| 19 | 19 | 값으로 변경 하시겠습니까?</source> |
| 20 | 20 | <translation>Do you confirm the change of all settings |
| 21 | 21 | to factory default values?</translation> |
| 22 | 22 | </message> |
| 23 | 23 | <message> |
| 24 | - <location filename="adjustmentwindow.cpp" line="98"/> | |
| 24 | + <location filename="adjustmentwindow.cpp" line="99"/> | |
| 25 | 25 | <source>테스트를 완료하였습니다.</source> |
| 26 | 26 | <translation>Test is completed.</translation> |
| 27 | 27 | </message> |
| ... | ... | @@ -119,7 +119,7 @@ to factory default values?</translation> |
| 119 | 119 | <translation>Steam</translation> |
| 120 | 120 | </message> |
| 121 | 121 | <message> |
| 122 | - <location filename="autocookconfigwindow.cpp" line="387"/> | |
| 122 | + <location filename="autocookconfigwindow.cpp" line="388"/> | |
| 123 | 123 | <source>즐겨찾기 항목에 추가하시겠습니까?</source> |
| 124 | 124 | <translation>Do you want to add it to bookmark?</translation> |
| 125 | 125 | </message> |
| ... | ... | @@ -185,82 +185,82 @@ to factory default values?</translation> |
| 185 | 185 | <translation>Follow-up process option</translation> |
| 186 | 186 | </message> |
| 187 | 187 | <message> |
| 188 | - <location filename="autocookwindow.cpp" line="510"/> | |
| 188 | + <location filename="autocookwindow.cpp" line="513"/> | |
| 189 | 189 | <source>중심 온도계 삽입</source> |
| 190 | 190 | <translation>Inserting core thermometer</translation> |
| 191 | 191 | </message> |
| 192 | 192 | <message> |
| 193 | - <location filename="autocookwindow.cpp" line="517"/> | |
| 193 | + <location filename="autocookwindow.cpp" line="520"/> | |
| 194 | 194 | <source>식재료 적재</source> |
| 195 | 195 | <translation>Stacking Food Materials</translation> |
| 196 | 196 | </message> |
| 197 | 197 | <message> |
| 198 | - <location filename="autocookwindow.cpp" line="529"/> | |
| 198 | + <location filename="autocookwindow.cpp" line="532"/> | |
| 199 | 199 | <source>자르기</source> |
| 200 | 200 | <translation>Cutting</translation> |
| 201 | 201 | </message> |
| 202 | 202 | <message> |
| 203 | - <location filename="autocookwindow.cpp" line="537"/> | |
| 203 | + <location filename="autocookwindow.cpp" line="540"/> | |
| 204 | 204 | <source>물 붓기</source> |
| 205 | 205 | <translation>Pouring Water</translation> |
| 206 | 206 | </message> |
| 207 | 207 | <message> |
| 208 | - <location filename="autocookwindow.cpp" line="880"/> | |
| 209 | - <location filename="autocookwindow.cpp" line="892"/> | |
| 210 | - <location filename="autocookwindow.cpp" line="931"/> | |
| 211 | - <location filename="autocookwindow.cpp" line="943"/> | |
| 212 | - <location filename="autocookwindow.cpp" line="955"/> | |
| 208 | + <location filename="autocookwindow.cpp" line="890"/> | |
| 209 | + <location filename="autocookwindow.cpp" line="902"/> | |
| 210 | + <location filename="autocookwindow.cpp" line="941"/> | |
| 211 | + <location filename="autocookwindow.cpp" line="953"/> | |
| 212 | + <location filename="autocookwindow.cpp" line="965"/> | |
| 213 | 213 | <source>문을 닫아주세요</source> |
| 214 | 214 | <translation>Please close the door</translation> |
| 215 | 215 | </message> |
| 216 | 216 | <message> |
| 217 | - <location filename="autocookwindow.cpp" line="880"/> | |
| 217 | + <location filename="autocookwindow.cpp" line="890"/> | |
| 218 | 218 | <source>조리 중 문 열림 시간 모니터링 1단계</source> |
| 219 | 219 | <translation>Monitoring stage 1 of door open time during cooking </translation> |
| 220 | 220 | </message> |
| 221 | 221 | <message> |
| 222 | - <location filename="autocookwindow.cpp" line="892"/> | |
| 222 | + <location filename="autocookwindow.cpp" line="902"/> | |
| 223 | 223 | <source>조리 중 문 열림 시간 모니터링 2단계</source> |
| 224 | 224 | <translation>Monitoring stage 2 of door open time during cooking</translation> |
| 225 | 225 | </message> |
| 226 | 226 | <message> |
| 227 | - <location filename="autocookwindow.cpp" line="904"/> | |
| 227 | + <location filename="autocookwindow.cpp" line="914"/> | |
| 228 | 228 | <source>문이 오래 열려있어 조리가 취소되었습니다</source> |
| 229 | 229 | <translation>The door is opened for a long time, so cooking is cancelled </translation> |
| 230 | 230 | </message> |
| 231 | 231 | <message> |
| 232 | - <location filename="autocookwindow.cpp" line="904"/> | |
| 232 | + <location filename="autocookwindow.cpp" line="914"/> | |
| 233 | 233 | <source>조리 중 문 열림 시간 모니터링 3단계</source> |
| 234 | 234 | <translation>Monitoring stage 3 of door open time during cooking</translation> |
| 235 | 235 | </message> |
| 236 | 236 | <message> |
| 237 | - <location filename="autocookwindow.cpp" line="931"/> | |
| 237 | + <location filename="autocookwindow.cpp" line="941"/> | |
| 238 | 238 | <source>적재 중 문 열림 시간 모니터링 1단계</source> |
| 239 | 239 | <translation>Monitoring of door open time during stacking Stage 1</translation> |
| 240 | 240 | </message> |
| 241 | 241 | <message> |
| 242 | - <location filename="autocookwindow.cpp" line="943"/> | |
| 242 | + <location filename="autocookwindow.cpp" line="953"/> | |
| 243 | 243 | <source>적재 중 문 열림 시간 모니터링 2단계</source> |
| 244 | 244 | <translation>Monitoring of door open time during stackingStage 2</translation> |
| 245 | 245 | </message> |
| 246 | 246 | <message> |
| 247 | - <location filename="autocookwindow.cpp" line="955"/> | |
| 247 | + <location filename="autocookwindow.cpp" line="965"/> | |
| 248 | 248 | <source>적재 중 문 열림 시간 모니터링 3단계</source> |
| 249 | 249 | <translation>Monitoring of door open time during stacking Stage 3</translation> |
| 250 | 250 | </message> |
| 251 | 251 | <message> |
| 252 | - <location filename="autocookwindow.cpp" line="1074"/> | |
| 252 | + <location filename="autocookwindow.cpp" line="1084"/> | |
| 253 | 253 | <source>요리가 중단되고 환경 설정 모드로 들어갑니다. 진행할까요?</source> |
| 254 | 254 | <translation>Cooking stops and the system goes to config mode |
| 255 | 255 | Do you want to proceed?</translation> |
| 256 | 256 | </message> |
| 257 | 257 | <message> |
| 258 | - <location filename="autocookwindow.cpp" line="1086"/> | |
| 258 | + <location filename="autocookwindow.cpp" line="1096"/> | |
| 259 | 259 | <source>즐겨찾기 항목에 추가하시겠습니까?</source> |
| 260 | 260 | <translation>Do you want to add it to bookmark?</translation> |
| 261 | 261 | </message> |
| 262 | 262 | <message> |
| 263 | - <location filename="autocookwindow.cpp" line="1105"/> | |
| 263 | + <location filename="autocookwindow.cpp" line="1115"/> | |
| 264 | 264 | <source>요리가 중단되고 자동 세척 모드로 들어갑니다. 진행할까요?</source> |
| 265 | 265 | <translation>Cooking stops and the system goes to |
| 266 | 266 | automatic cleaning mode Do you want to proceed?</translation> |
| ... | ... | @@ -450,26 +450,36 @@ to factory setting values?</translation> |
| 450 | 450 | <translation type="unfinished">On</translation> |
| 451 | 451 | </message> |
| 452 | 452 | <message> |
| 453 | + <location filename="config.cpp" line="492"/> | |
| 454 | + <location filename="config.cpp" line="493"/> | |
| 453 | 455 | <location filename="config.h" line="94"/> |
| 454 | 456 | <source>모 델 명</source> |
| 455 | 457 | <translation>Model Name</translation> |
| 456 | 458 | </message> |
| 457 | 459 | <message> |
| 460 | + <location filename="config.cpp" line="499"/> | |
| 461 | + <location filename="config.cpp" line="500"/> | |
| 458 | 462 | <location filename="config.h" line="95"/> |
| 459 | 463 | <source>제조일자</source> |
| 460 | 464 | <translation>Date of Manufacturing</translation> |
| 461 | 465 | </message> |
| 462 | 466 | <message> |
| 467 | + <location filename="config.cpp" line="506"/> | |
| 468 | + <location filename="config.cpp" line="507"/> | |
| 463 | 469 | <location filename="config.h" line="96"/> |
| 464 | 470 | <source>제조국</source> |
| 465 | - <translation>Country of Manufacturing</translation> | |
| 471 | + <translation>Manufacturing Country</translation> | |
| 466 | 472 | </message> |
| 467 | 473 | <message> |
| 474 | + <location filename="config.cpp" line="513"/> | |
| 475 | + <location filename="config.cpp" line="514"/> | |
| 468 | 476 | <location filename="config.h" line="97"/> |
| 469 | 477 | <source>제조사</source> |
| 470 | - <translation>Company of Manufacturing</translation> | |
| 478 | + <translation>Manufacturing Company</translation> | |
| 471 | 479 | </message> |
| 472 | 480 | <message> |
| 481 | + <location filename="config.cpp" line="520"/> | |
| 482 | + <location filename="config.cpp" line="521"/> | |
| 473 | 483 | <location filename="config.h" line="98"/> |
| 474 | 484 | <source>제품번호</source> |
| 475 | 485 | <translation>Model No</translation> |
| ... | ... | @@ -502,269 +512,329 @@ to factory setting values?</translation> |
| 502 | 512 | <translation>Location</translation> |
| 503 | 513 | </message> |
| 504 | 514 | <message> |
| 505 | - <location filename="config.h" line="333"/> | |
| 515 | + <location filename="config.h" line="116"/> | |
| 516 | + <source>전기식 10단</source> | |
| 517 | + <translation>Electric Type 10 Stages</translation> | |
| 518 | + </message> | |
| 519 | + <message> | |
| 520 | + <location filename="config.h" line="117"/> | |
| 521 | + <source>전기식 20단</source> | |
| 522 | + <translation>Electric Type 20 Stages</translation> | |
| 523 | + </message> | |
| 524 | + <message> | |
| 525 | + <location filename="config.h" line="118"/> | |
| 526 | + <source>전기식 24단</source> | |
| 527 | + <translation>Electric Type 24 Stages</translation> | |
| 528 | + </message> | |
| 529 | + <message> | |
| 530 | + <location filename="config.h" line="119"/> | |
| 531 | + <source>전기식 40단</source> | |
| 532 | + <translation>Electric Type 40 Stages</translation> | |
| 533 | + </message> | |
| 534 | + <message> | |
| 535 | + <location filename="config.h" line="120"/> | |
| 536 | + <source>가스식 10단 LPG</source> | |
| 537 | + <translation>Gas Type 10 Stages lpg</translation> | |
| 538 | + </message> | |
| 539 | + <message> | |
| 540 | + <location filename="config.h" line="121"/> | |
| 541 | + <source>가스식 20단 LPG</source> | |
| 542 | + <translation>Gas Type 20 Stages lpg</translation> | |
| 543 | + </message> | |
| 544 | + <message> | |
| 545 | + <location filename="config.h" line="122"/> | |
| 546 | + <source>가스식 24단 LPG</source> | |
| 547 | + <translation>Gas Type 24 Stages lpg</translation> | |
| 548 | + </message> | |
| 549 | + <message> | |
| 550 | + <location filename="config.h" line="123"/> | |
| 551 | + <source>가스식 40단 LPG</source> | |
| 552 | + <translation>Gas Type 40 Stages lpg</translation> | |
| 553 | + </message> | |
| 554 | + <message> | |
| 555 | + <location filename="config.h" line="124"/> | |
| 556 | + <source>가스식 10단 LNG</source> | |
| 557 | + <translation>Gas Type 10 Stages lpg</translation> | |
| 558 | + </message> | |
| 559 | + <message> | |
| 560 | + <location filename="config.h" line="125"/> | |
| 561 | + <source>가스식 20단 LNG</source> | |
| 562 | + <translation>Gas Type 20 Stages lpg</translation> | |
| 563 | + </message> | |
| 564 | + <message> | |
| 565 | + <location filename="config.h" line="126"/> | |
| 566 | + <source>가스식 24단 LNG</source> | |
| 567 | + <translation>Gas Type 24 Stages lpg</translation> | |
| 568 | + </message> | |
| 569 | + <message> | |
| 570 | + <location filename="config.h" line="127"/> | |
| 571 | + <source>가스식 40단 LNG</source> | |
| 572 | + <translation>Gas Type 40 Stages lpg</translation> | |
| 573 | + </message> | |
| 574 | + <message> | |
| 575 | + <location filename="config.h" line="357"/> | |
| 506 | 576 | <source>%1 분</source> |
| 507 | 577 | <translation>%1 Min</translation> |
| 508 | 578 | </message> |
| 509 | 579 | <message> |
| 510 | - <location filename="config.h" line="343"/> | |
| 580 | + <location filename="config.h" line="367"/> | |
| 511 | 581 | <source>%1번</source> |
| 512 | 582 | <translation>No.%1</translation> |
| 513 | 583 | </message> |
| 514 | 584 | <message> |
| 515 | - <location filename="config.h" line="349"/> | |
| 585 | + <location filename="config.h" line="373"/> | |
| 516 | 586 | <source>공장초기화</source> |
| 517 | 587 | <translation>Factory Reset</translation> |
| 518 | 588 | </message> |
| 519 | 589 | <message> |
| 520 | - <location filename="config.h" line="350"/> | |
| 590 | + <location filename="config.h" line="374"/> | |
| 521 | 591 | <source>USB 삽입</source> |
| 522 | 592 | <translation>Insert USB</translation> |
| 523 | 593 | </message> |
| 524 | 594 | <message> |
| 525 | - <location filename="config.h" line="355"/> | |
| 595 | + <location filename="config.h" line="379"/> | |
| 526 | 596 | <source>초기화</source> |
| 527 | 597 | <translation>Reset</translation> |
| 528 | 598 | </message> |
| 529 | 599 | <message> |
| 530 | - <location filename="config.h" line="366"/> | |
| 531 | - <location filename="config.h" line="367"/> | |
| 600 | + <location filename="config.h" line="390"/> | |
| 601 | + <location filename="config.h" line="391"/> | |
| 532 | 602 | <source>%1단계</source> |
| 533 | 603 | <translation>Stage%1</translation> |
| 534 | 604 | </message> |
| 535 | 605 | <message> |
| 536 | - <location filename="config.h" line="368"/> | |
| 606 | + <location filename="config.h" line="392"/> | |
| 537 | 607 | <source>정보확인</source> |
| 538 | 608 | <translation>Information</translation> |
| 539 | 609 | </message> |
| 540 | 610 | <message> |
| 541 | - <location filename="config.h" line="371"/> | |
| 611 | + <location filename="config.h" line="395"/> | |
| 542 | 612 | <source>헹굼</source> |
| 543 | 613 | <translation>Rinsing</translation> |
| 544 | 614 | </message> |
| 545 | 615 | <message> |
| 546 | - <location filename="config.h" line="373"/> | |
| 616 | + <location filename="config.h" line="397"/> | |
| 547 | 617 | <source>엔지니어모드 진입</source> |
| 548 | 618 | <translation>Engineer Mode</translation> |
| 549 | 619 | </message> |
| 550 | 620 | <message> |
| 551 | - <location filename="config.h" line="377"/> | |
| 621 | + <location filename="config.h" line="401"/> | |
| 552 | 622 | <source>언어설정</source> |
| 553 | 623 | <translation>Language Setting</translation> |
| 554 | 624 | </message> |
| 555 | 625 | <message> |
| 556 | - <location filename="config.h" line="378"/> | |
| 626 | + <location filename="config.h" line="402"/> | |
| 557 | 627 | <source>날짜와 시간</source> |
| 558 | 628 | <translation>Date and Time</translation> |
| 559 | 629 | </message> |
| 560 | 630 | <message> |
| 561 | - <location filename="config.h" line="379"/> | |
| 631 | + <location filename="config.h" line="403"/> | |
| 562 | 632 | <source>온도단위</source> |
| 563 | 633 | <translation>Temperature Unit</translation> |
| 564 | 634 | </message> |
| 565 | 635 | <message> |
| 566 | - <location filename="config.h" line="380"/> | |
| 636 | + <location filename="config.h" line="404"/> | |
| 567 | 637 | <source>화면밝기</source> |
| 568 | 638 | <translation>Screen Brightness</translation> |
| 569 | 639 | </message> |
| 570 | 640 | <message> |
| 571 | - <location filename="config.h" line="381"/> | |
| 641 | + <location filename="config.h" line="405"/> | |
| 572 | 642 | <source>응축식 후드의 정지지연</source> |
| 573 | 643 | <translation>Stop Delay of Condensation Type Hood</translation> |
| 574 | 644 | </message> |
| 575 | 645 | <message> |
| 576 | - <location filename="config.h" line="382"/> | |
| 646 | + <location filename="config.h" line="406"/> | |
| 577 | 647 | <source>일품요리용 접시무게</source> |
| 578 | 648 | <translation>Weight of the dish for one-dish meal</translation> |
| 579 | 649 | </message> |
| 580 | 650 | <message> |
| 581 | - <location filename="config.h" line="383"/> | |
| 651 | + <location filename="config.h" line="407"/> | |
| 582 | 652 | <source>연회용 접시무게</source> |
| 583 | 653 | <translation>Weight of the dish for a banquet</translation> |
| 584 | 654 | </message> |
| 585 | 655 | <message> |
| 586 | - <location filename="config.h" line="384"/> | |
| 656 | + <location filename="config.h" line="408"/> | |
| 587 | 657 | <source>ILC 조리선반 개수</source> |
| 588 | 658 | <translation>Number of ILC cooking rack</translation> |
| 589 | 659 | </message> |
| 590 | 660 | <message> |
| 591 | - <location filename="config.h" line="385"/> | |
| 661 | + <location filename="config.h" line="409"/> | |
| 592 | 662 | <source>ILC 조리선반 순서</source> |
| 593 | 663 | <translation>Sequence of ILC cooking rack</translation> |
| 594 | 664 | </message> |
| 595 | 665 | <message> |
| 596 | - <location filename="config.h" line="386"/> | |
| 597 | - <location filename="config.h" line="411"/> | |
| 666 | + <location filename="config.h" line="410"/> | |
| 667 | + <location filename="config.h" line="435"/> | |
| 598 | 668 | <source>ILC 조리 온습도 대기시간</source> |
| 599 | 669 | <translation>ILC cooking temperature and humidity standby time</translation> |
| 600 | 670 | </message> |
| 601 | 671 | <message> |
| 602 | - <location filename="config.h" line="387"/> | |
| 672 | + <location filename="config.h" line="411"/> | |
| 603 | 673 | <source>조리시간 포맷</source> |
| 604 | 674 | <translation>Cooking time format</translation> |
| 605 | 675 | </message> |
| 606 | 676 | <message> |
| 607 | - <location filename="config.h" line="388"/> | |
| 677 | + <location filename="config.h" line="412"/> | |
| 608 | 678 | <source>실시간 단위 설정</source> |
| 609 | 679 | <translation>Real time unit setting</translation> |
| 610 | 680 | </message> |
| 611 | 681 | <message> |
| 612 | - <location filename="config.h" line="389"/> | |
| 682 | + <location filename="config.h" line="413"/> | |
| 613 | 683 | <source>잔여시간 시점변경설정</source> |
| 614 | 684 | <translation>Remaining time change setting</translation> |
| 615 | 685 | </message> |
| 616 | 686 | <message> |
| 617 | - <location filename="config.h" line="390"/> | |
| 687 | + <location filename="config.h" line="414"/> | |
| 618 | 688 | <source>마스터 볼륨</source> |
| 619 | 689 | <translation>Master Volume</translation> |
| 620 | 690 | </message> |
| 621 | 691 | <message> |
| 622 | - <location filename="config.h" line="391"/> | |
| 692 | + <location filename="config.h" line="415"/> | |
| 623 | 693 | <source>키패드 소리 - 1</source> |
| 624 | 694 | <translation>Keypad Sound - 1</translation> |
| 625 | 695 | </message> |
| 626 | 696 | <message> |
| 627 | - <location filename="config.h" line="392"/> | |
| 697 | + <location filename="config.h" line="416"/> | |
| 628 | 698 | <source>키패드 볼륨 </source> |
| 629 | 699 | <translation>Keypad Volume</translation> |
| 630 | 700 | </message> |
| 631 | 701 | <message> |
| 632 | - <location filename="config.h" line="393"/> | |
| 702 | + <location filename="config.h" line="417"/> | |
| 633 | 703 | <source>적재/실행 요청</source> |
| 634 | 704 | <translation>Stacking/Execution Request</translation> |
| 635 | 705 | </message> |
| 636 | 706 | <message> |
| 637 | - <location filename="config.h" line="394"/> | |
| 707 | + <location filename="config.h" line="418"/> | |
| 638 | 708 | <source>프로그램 단계 종료</source> |
| 639 | 709 | <translation>Program Stage Finish</translation> |
| 640 | 710 | </message> |
| 641 | 711 | <message> |
| 642 | - <location filename="config.h" line="395"/> | |
| 712 | + <location filename="config.h" line="419"/> | |
| 643 | 713 | <source>조리시간 종료</source> |
| 644 | 714 | <translation>Cooking Time Finish</translation> |
| 645 | 715 | </message> |
| 646 | 716 | <message> |
| 647 | - <location filename="config.h" line="396"/> | |
| 717 | + <location filename="config.h" line="420"/> | |
| 648 | 718 | <source>과정 중단/오류 식별</source> |
| 649 | 719 | <translation>Process Stop/Error Identification</translation> |
| 650 | 720 | </message> |
| 651 | 721 | <message> |
| 652 | - <location filename="config.h" line="397"/> | |
| 722 | + <location filename="config.h" line="421"/> | |
| 653 | 723 | <source>음향설정 초기화</source> |
| 654 | 724 | <translation>Sound Setting Reset</translation> |
| 655 | 725 | </message> |
| 656 | 726 | <message> |
| 657 | - <location filename="config.h" line="398"/> | |
| 727 | + <location filename="config.h" line="422"/> | |
| 658 | 728 | <source>HACCP 데이터 다운로드</source> |
| 659 | 729 | <translation>HACCP Data Download</translation> |
| 660 | 730 | </message> |
| 661 | 731 | <message> |
| 662 | - <location filename="config.h" line="399"/> | |
| 732 | + <location filename="config.h" line="423"/> | |
| 663 | 733 | <source>인포 데이터 다운로드</source> |
| 664 | 734 | <translation>Info Data Download</translation> |
| 665 | 735 | </message> |
| 666 | 736 | <message> |
| 667 | - <location filename="config.h" line="400"/> | |
| 737 | + <location filename="config.h" line="424"/> | |
| 668 | 738 | <source>서비스 데이터 다운로드</source> |
| 669 | 739 | <translation>Service Data Download</translation> |
| 670 | 740 | </message> |
| 671 | 741 | <message> |
| 672 | - <location filename="config.h" line="401"/> | |
| 742 | + <location filename="config.h" line="425"/> | |
| 673 | 743 | <source>프로그램 다운로드</source> |
| 674 | 744 | <translation>Program Download</translation> |
| 675 | 745 | </message> |
| 676 | 746 | <message> |
| 677 | - <location filename="config.h" line="402"/> | |
| 747 | + <location filename="config.h" line="426"/> | |
| 678 | 748 | <source>프로그램 업로드</source> |
| 679 | 749 | <translation>Program Upload</translation> |
| 680 | 750 | </message> |
| 681 | 751 | <message> |
| 682 | - <location filename="config.h" line="403"/> | |
| 752 | + <location filename="config.h" line="427"/> | |
| 683 | 753 | <source>모든 프로그램 삭제</source> |
| 684 | 754 | <translation>Delete All Programs </translation> |
| 685 | 755 | </message> |
| 686 | 756 | <message> |
| 687 | - <location filename="config.h" line="404"/> | |
| 757 | + <location filename="config.h" line="428"/> | |
| 688 | 758 | <source>IP 주소</source> |
| 689 | 759 | <translation>IP Address</translation> |
| 690 | 760 | </message> |
| 691 | 761 | <message> |
| 692 | - <location filename="config.h" line="405"/> | |
| 762 | + <location filename="config.h" line="429"/> | |
| 693 | 763 | <source>IP 게이트웨이</source> |
| 694 | 764 | <translation>IP Gateway</translation> |
| 695 | 765 | </message> |
| 696 | 766 | <message> |
| 697 | - <location filename="config.h" line="406"/> | |
| 767 | + <location filename="config.h" line="430"/> | |
| 698 | 768 | <source>IP 넷마스크</source> |
| 699 | 769 | <translation>IP Netmask</translation> |
| 700 | 770 | </message> |
| 701 | 771 | <message> |
| 702 | - <location filename="config.h" line="407"/> | |
| 772 | + <location filename="config.h" line="431"/> | |
| 703 | 773 | <source>기본설정 다운로드</source> |
| 704 | 774 | <translation>Basic Settings Download</translation> |
| 705 | 775 | </message> |
| 706 | 776 | <message> |
| 707 | - <location filename="config.h" line="408"/> | |
| 777 | + <location filename="config.h" line="432"/> | |
| 708 | 778 | <source>기본설정 업로드</source> |
| 709 | 779 | <translation>Basic Settings Upload</translation> |
| 710 | 780 | </message> |
| 711 | 781 | <message> |
| 712 | - <location filename="config.h" line="409"/> | |
| 782 | + <location filename="config.h" line="433"/> | |
| 713 | 783 | <source>하프에너지</source> |
| 714 | 784 | <translation>Half Energy</translation> |
| 715 | 785 | </message> |
| 716 | 786 | <message> |
| 717 | - <location filename="config.h" line="410"/> | |
| 787 | + <location filename="config.h" line="434"/> | |
| 718 | 788 | <source>화면 밝기 자동 감소</source> |
| 719 | 789 | <translation>Auto Decrease Backlight</translation> |
| 720 | 790 | </message> |
| 721 | 791 | <message> |
| 722 | - <location filename="config.h" line="412"/> | |
| 792 | + <location filename="config.h" line="436"/> | |
| 723 | 793 | <source>적재중 대기 시간</source> |
| 724 | 794 | <translation>Standby Time during Stacking</translation> |
| 725 | 795 | </message> |
| 726 | 796 | <message> |
| 727 | - <location filename="config.h" line="413"/> | |
| 797 | + <location filename="config.h" line="437"/> | |
| 728 | 798 | <source>의무 세척과정</source> |
| 729 | 799 | <translation>Mandatory Cleaning Process</translation> |
| 730 | 800 | </message> |
| 731 | 801 | <message> |
| 732 | - <location filename="config.h" line="414"/> | |
| 802 | + <location filename="config.h" line="438"/> | |
| 733 | 803 | <source>적재 중 문열림 시간 모니터링</source> |
| 734 | 804 | <translation>Door monitoring during stacking </translation> |
| 735 | 805 | </message> |
| 736 | 806 | <message> |
| 737 | - <location filename="config.h" line="415"/> | |
| 807 | + <location filename="config.h" line="439"/> | |
| 738 | 808 | <source>조리 중 문열림 시간 모니터링</source> |
| 739 | 809 | <translation>Door monitoring during cooking</translation> |
| 740 | 810 | </message> |
| 741 | 811 | <message> |
| 742 | - <location filename="config.h" line="416"/> | |
| 812 | + <location filename="config.h" line="440"/> | |
| 743 | 813 | <source>제품유형/소프트웨어에 관한 정보</source> |
| 744 | 814 | <translation>Product type/Software information</translation> |
| 745 | 815 | </message> |
| 746 | 816 | <message> |
| 747 | - <location filename="config.h" line="417"/> | |
| 817 | + <location filename="config.h" line="441"/> | |
| 748 | 818 | <source>핫라인-쉐프</source> |
| 749 | 819 | <translation>Hot Line - Chef </translation> |
| 750 | 820 | </message> |
| 751 | 821 | <message> |
| 752 | - <location filename="config.h" line="418"/> | |
| 822 | + <location filename="config.h" line="442"/> | |
| 753 | 823 | <source>핫라인-서비스</source> |
| 754 | 824 | <translation>Hot Line - Service</translation> |
| 755 | 825 | </message> |
| 756 | 826 | <message> |
| 757 | - <location filename="config.h" line="419"/> | |
| 827 | + <location filename="config.h" line="443"/> | |
| 758 | 828 | <source>증기 발생기 헹굼</source> |
| 759 | 829 | <translation>Steam Generator Rinsing</translation> |
| 760 | 830 | </message> |
| 761 | 831 | <message> |
| 762 | - <location filename="config.h" line="420"/> | |
| 832 | + <location filename="config.h" line="444"/> | |
| 763 | 833 | <source>시연모드</source> |
| 764 | 834 | <translation>Demonstration Mode</translation> |
| 765 | 835 | </message> |
| 766 | 836 | <message> |
| 767 | - <location filename="config.h" line="421"/> | |
| 837 | + <location filename="config.h" line="445"/> | |
| 768 | 838 | <source>서비스단계(엔지니어모드)</source> |
| 769 | 839 | <translation>Service Mode (Engineer Mode)</translation> |
| 770 | 840 | </message> |
| ... | ... | @@ -1066,114 +1136,102 @@ Value</translation> |
| 1066 | 1136 | <translation>Confirm</translation> |
| 1067 | 1137 | </message> |
| 1068 | 1138 | <message> |
| 1069 | - <location filename="configinfodlg.cpp" line="13"/> | |
| 1070 | 1139 | <source>전기식 10단</source> |
| 1071 | - <translation>Electric Type 10 Stages</translation> | |
| 1140 | + <translation type="vanished">Electric Type 10 Stages</translation> | |
| 1072 | 1141 | </message> |
| 1073 | 1142 | <message> |
| 1074 | - <location filename="configinfodlg.cpp" line="14"/> | |
| 1075 | 1143 | <source>전기식 20단</source> |
| 1076 | - <translation>Electric Type 20 Stages</translation> | |
| 1144 | + <translation type="vanished">Electric Type 20 Stages</translation> | |
| 1077 | 1145 | </message> |
| 1078 | 1146 | <message> |
| 1079 | - <location filename="configinfodlg.cpp" line="15"/> | |
| 1080 | 1147 | <source>전기식 24단</source> |
| 1081 | - <translation>Electric Type 24 Stages</translation> | |
| 1148 | + <translation type="vanished">Electric Type 24 Stages</translation> | |
| 1082 | 1149 | </message> |
| 1083 | 1150 | <message> |
| 1084 | - <location filename="configinfodlg.cpp" line="16"/> | |
| 1085 | 1151 | <source>전기식 40단</source> |
| 1086 | - <translation>Electric Type 40 Stages</translation> | |
| 1152 | + <translation type="vanished">Electric Type 40 Stages</translation> | |
| 1087 | 1153 | </message> |
| 1088 | 1154 | <message> |
| 1089 | - <location filename="configinfodlg.cpp" line="17"/> | |
| 1090 | 1155 | <source>가스식 10단 LPG</source> |
| 1091 | - <translation>Gas Type 10 Stages lpg</translation> | |
| 1156 | + <translation type="vanished">Gas Type 10 Stages lpg</translation> | |
| 1092 | 1157 | </message> |
| 1093 | 1158 | <message> |
| 1094 | - <location filename="configinfodlg.cpp" line="18"/> | |
| 1095 | 1159 | <source>가스식 20단 LPG</source> |
| 1096 | - <translation>Gas Type 20 Stages lpg</translation> | |
| 1160 | + <translation type="vanished">Gas Type 20 Stages lpg</translation> | |
| 1097 | 1161 | </message> |
| 1098 | 1162 | <message> |
| 1099 | - <location filename="configinfodlg.cpp" line="19"/> | |
| 1100 | 1163 | <source>가스식 24단 LPG</source> |
| 1101 | - <translation>Gas Type 24 Stages lpg</translation> | |
| 1164 | + <translation type="vanished">Gas Type 24 Stages lpg</translation> | |
| 1102 | 1165 | </message> |
| 1103 | 1166 | <message> |
| 1104 | - <location filename="configinfodlg.cpp" line="20"/> | |
| 1105 | 1167 | <source>가스식 40단 LPG</source> |
| 1106 | - <translation>Gas Type 40 Stages lpg</translation> | |
| 1168 | + <translation type="vanished">Gas Type 40 Stages lpg</translation> | |
| 1107 | 1169 | </message> |
| 1108 | 1170 | <message> |
| 1109 | - <location filename="configinfodlg.cpp" line="21"/> | |
| 1110 | 1171 | <source>가스식 10단 LNG</source> |
| 1111 | - <translation>Gas Type 10 Stages lpg</translation> | |
| 1172 | + <translation type="vanished">Gas Type 10 Stages lpg</translation> | |
| 1112 | 1173 | </message> |
| 1113 | 1174 | <message> |
| 1114 | - <location filename="configinfodlg.cpp" line="22"/> | |
| 1115 | 1175 | <source>가스식 20단 LNG</source> |
| 1116 | - <translation>Gas Type 20 Stages lpg</translation> | |
| 1176 | + <translation type="vanished">Gas Type 20 Stages lpg</translation> | |
| 1117 | 1177 | </message> |
| 1118 | 1178 | <message> |
| 1119 | - <location filename="configinfodlg.cpp" line="23"/> | |
| 1120 | 1179 | <source>가스식 24단 LNG</source> |
| 1121 | - <translation>Gas Type 24 Stages lpg</translation> | |
| 1180 | + <translation type="vanished">Gas Type 24 Stages lpg</translation> | |
| 1122 | 1181 | </message> |
| 1123 | 1182 | <message> |
| 1124 | - <location filename="configinfodlg.cpp" line="24"/> | |
| 1125 | 1183 | <source>가스식 40단 LNG</source> |
| 1126 | - <translation>Gas Type 40 Stages lpg</translation> | |
| 1184 | + <translation type="vanished">Gas Type 40 Stages lpg</translation> | |
| 1127 | 1185 | </message> |
| 1128 | 1186 | <message> |
| 1129 | - <location filename="configinfodlg.cpp" line="112"/> | |
| 1187 | + <location filename="configinfodlg.cpp" line="89"/> | |
| 1130 | 1188 | <source>모 델 명</source> |
| 1131 | 1189 | <translation>Model Name</translation> |
| 1132 | 1190 | </message> |
| 1133 | 1191 | <message> |
| 1134 | - <location filename="configinfodlg.cpp" line="113"/> | |
| 1192 | + <location filename="configinfodlg.cpp" line="90"/> | |
| 1135 | 1193 | <source>제조일자</source> |
| 1136 | 1194 | <translation>Date of Manufacturing</translation> |
| 1137 | 1195 | </message> |
| 1138 | 1196 | <message> |
| 1139 | - <location filename="configinfodlg.cpp" line="114"/> | |
| 1197 | + <location filename="configinfodlg.cpp" line="91"/> | |
| 1140 | 1198 | <source>제조국</source> |
| 1141 | - <translation>Manufacturing Contry</translation> | |
| 1199 | + <translation>Manufacturing Country</translation> | |
| 1142 | 1200 | </message> |
| 1143 | 1201 | <message> |
| 1144 | - <location filename="configinfodlg.cpp" line="115"/> | |
| 1202 | + <location filename="configinfodlg.cpp" line="92"/> | |
| 1145 | 1203 | <source>제조사</source> |
| 1146 | 1204 | <translation>Manufacturing Company</translation> |
| 1147 | 1205 | </message> |
| 1148 | 1206 | <message> |
| 1149 | - <location filename="configinfodlg.cpp" line="116"/> | |
| 1207 | + <location filename="configinfodlg.cpp" line="93"/> | |
| 1150 | 1208 | <source>제품번호</source> |
| 1151 | 1209 | <translation>Product Serial</translation> |
| 1152 | 1210 | </message> |
| 1153 | 1211 | <message> |
| 1154 | - <location filename="configinfodlg.cpp" line="117"/> | |
| 1212 | + <location filename="configinfodlg.cpp" line="94"/> | |
| 1155 | 1213 | <source>소프트웨어 버전</source> |
| 1156 | 1214 | <translation>Software Version</translation> |
| 1157 | 1215 | </message> |
| 1158 | 1216 | <message> |
| 1159 | - <location filename="configinfodlg.cpp" line="118"/> | |
| 1217 | + <location filename="configinfodlg.cpp" line="95"/> | |
| 1160 | 1218 | <source>현재모델</source> |
| 1161 | 1219 | <translation>Current Model</translation> |
| 1162 | 1220 | </message> |
| 1163 | 1221 | <message> |
| 1222 | + <location filename="configinfodlg.cpp" line="117"/> | |
| 1164 | 1223 | <location filename="configinfodlg.cpp" line="141"/> |
| 1165 | - <location filename="configinfodlg.cpp" line="165"/> | |
| 1166 | 1224 | <source>연 락 처</source> |
| 1167 | 1225 | <translation>Contact Information</translation> |
| 1168 | 1226 | </message> |
| 1169 | 1227 | <message> |
| 1170 | - <location filename="configinfodlg.cpp" line="142"/> | |
| 1228 | + <location filename="configinfodlg.cpp" line="118"/> | |
| 1171 | 1229 | <source>이 름</source> |
| 1172 | 1230 | <translation>Name</translation> |
| 1173 | 1231 | </message> |
| 1174 | 1232 | <message> |
| 1175 | - <location filename="configinfodlg.cpp" line="143"/> | |
| 1176 | - <location filename="configinfodlg.cpp" line="166"/> | |
| 1233 | + <location filename="configinfodlg.cpp" line="119"/> | |
| 1234 | + <location filename="configinfodlg.cpp" line="142"/> | |
| 1177 | 1235 | <source>위치정보</source> |
| 1178 | 1236 | <translation>Location Information</translation> |
| 1179 | 1237 | </message> |
| ... | ... | @@ -1539,8 +1597,8 @@ Value</translation> |
| 1539 | 1597 | <translation>Service</translation> |
| 1540 | 1598 | </message> |
| 1541 | 1599 | <message> |
| 1542 | - <location filename="configwindow.cpp" line="175"/> | |
| 1543 | - <location filename="configwindow.cpp" line="423"/> | |
| 1600 | + <location filename="configwindow.cpp" line="176"/> | |
| 1601 | + <location filename="configwindow.cpp" line="424"/> | |
| 1544 | 1602 | <source>현재 설정을 적용하시겠습니까?</source> |
| 1545 | 1603 | <translation>Do you want to apply current settings?</translation> |
| 1546 | 1604 | </message> |
| ... | ... | @@ -1890,10 +1948,10 @@ Control</translation> |
| 1890 | 1948 | <name>FileProcessDlg</name> |
| 1891 | 1949 | <message> |
| 1892 | 1950 | <location filename="fileprocessdlg.ui" line="100"/> |
| 1893 | - <location filename="fileprocessdlg.cpp" line="335"/> | |
| 1894 | - <location filename="fileprocessdlg.cpp" line="351"/> | |
| 1895 | - <location filename="fileprocessdlg.cpp" line="367"/> | |
| 1896 | - <location filename="fileprocessdlg.cpp" line="633"/> | |
| 1951 | + <location filename="fileprocessdlg.cpp" line="362"/> | |
| 1952 | + <location filename="fileprocessdlg.cpp" line="378"/> | |
| 1953 | + <location filename="fileprocessdlg.cpp" line="394"/> | |
| 1954 | + <location filename="fileprocessdlg.cpp" line="735"/> | |
| 1897 | 1955 | <source>남은 예상 시간 : 1초</source> |
| 1898 | 1956 | <translation>Expected Remaining Time : 1 Second</translation> |
| 1899 | 1957 | </message> |
| ... | ... | @@ -1903,246 +1961,256 @@ Control</translation> |
| 1903 | 1961 | <translation>Cancel</translation> |
| 1904 | 1962 | </message> |
| 1905 | 1963 | <message> |
| 1906 | - <location filename="fileprocessdlg.cpp" line="292"/> | |
| 1964 | + <location filename="fileprocessdlg.cpp" line="319"/> | |
| 1907 | 1965 | <source>erro%1,</source> |
| 1908 | 1966 | <translation>erro%1,</translation> |
| 1909 | 1967 | </message> |
| 1910 | 1968 | <message> |
| 1911 | - <location filename="fileprocessdlg.cpp" line="326"/> | |
| 1912 | - <location filename="fileprocessdlg.cpp" line="342"/> | |
| 1913 | - <location filename="fileprocessdlg.cpp" line="358"/> | |
| 1969 | + <location filename="fileprocessdlg.cpp" line="353"/> | |
| 1970 | + <location filename="fileprocessdlg.cpp" line="369"/> | |
| 1971 | + <location filename="fileprocessdlg.cpp" line="385"/> | |
| 1914 | 1972 | <source>Gas Error History |
| 1915 | 1973 | </source> |
| 1916 | 1974 | <translation></translation> |
| 1917 | 1975 | </message> |
| 1918 | 1976 | <message> |
| 1919 | - <location filename="fileprocessdlg.cpp" line="327"/> | |
| 1920 | - <location filename="fileprocessdlg.cpp" line="343"/> | |
| 1921 | - <location filename="fileprocessdlg.cpp" line="359"/> | |
| 1922 | - <location filename="fileprocessdlg.cpp" line="375"/> | |
| 1977 | + <location filename="fileprocessdlg.cpp" line="354"/> | |
| 1978 | + <location filename="fileprocessdlg.cpp" line="370"/> | |
| 1979 | + <location filename="fileprocessdlg.cpp" line="386"/> | |
| 1980 | + <location filename="fileprocessdlg.cpp" line="402"/> | |
| 1923 | 1981 | <source>no,</source> |
| 1924 | 1982 | <translation>no,</translation> |
| 1925 | 1983 | </message> |
| 1926 | 1984 | <message> |
| 1927 | - <location filename="fileprocessdlg.cpp" line="327"/> | |
| 1928 | - <location filename="fileprocessdlg.cpp" line="343"/> | |
| 1929 | - <location filename="fileprocessdlg.cpp" line="359"/> | |
| 1930 | - <location filename="fileprocessdlg.cpp" line="375"/> | |
| 1985 | + <location filename="fileprocessdlg.cpp" line="354"/> | |
| 1986 | + <location filename="fileprocessdlg.cpp" line="370"/> | |
| 1987 | + <location filename="fileprocessdlg.cpp" line="386"/> | |
| 1988 | + <location filename="fileprocessdlg.cpp" line="402"/> | |
| 1931 | 1989 | <source>First Appearance,</source> |
| 1932 | 1990 | <translation>First Appearance,</translation> |
| 1933 | 1991 | </message> |
| 1934 | 1992 | <message> |
| 1935 | - <location filename="fileprocessdlg.cpp" line="327"/> | |
| 1936 | - <location filename="fileprocessdlg.cpp" line="343"/> | |
| 1937 | - <location filename="fileprocessdlg.cpp" line="359"/> | |
| 1938 | - <location filename="fileprocessdlg.cpp" line="375"/> | |
| 1993 | + <location filename="fileprocessdlg.cpp" line="354"/> | |
| 1994 | + <location filename="fileprocessdlg.cpp" line="370"/> | |
| 1995 | + <location filename="fileprocessdlg.cpp" line="386"/> | |
| 1996 | + <location filename="fileprocessdlg.cpp" line="402"/> | |
| 1939 | 1997 | <source>Counter,</source> |
| 1940 | 1998 | <translation></translation> |
| 1941 | 1999 | </message> |
| 1942 | 2000 | <message> |
| 1943 | - <location filename="fileprocessdlg.cpp" line="327"/> | |
| 1944 | - <location filename="fileprocessdlg.cpp" line="343"/> | |
| 1945 | - <location filename="fileprocessdlg.cpp" line="359"/> | |
| 1946 | - <location filename="fileprocessdlg.cpp" line="375"/> | |
| 2001 | + <location filename="fileprocessdlg.cpp" line="354"/> | |
| 2002 | + <location filename="fileprocessdlg.cpp" line="370"/> | |
| 2003 | + <location filename="fileprocessdlg.cpp" line="386"/> | |
| 2004 | + <location filename="fileprocessdlg.cpp" line="402"/> | |
| 1947 | 2005 | <source>Last Appearance |
| 1948 | 2006 | </source> |
| 1949 | 2007 | <translation></translation> |
| 1950 | 2008 | </message> |
| 1951 | 2009 | <message> |
| 1952 | - <location filename="fileprocessdlg.cpp" line="374"/> | |
| 2010 | + <location filename="fileprocessdlg.cpp" line="401"/> | |
| 1953 | 2011 | <source>Service Error History |
| 1954 | 2012 | |
| 1955 | 2013 | </source> |
| 1956 | 2014 | <translation></translation> |
| 1957 | 2015 | </message> |
| 1958 | 2016 | <message> |
| 1959 | - <location filename="fileprocessdlg.cpp" line="451"/> | |
| 1960 | - <location filename="fileprocessdlg.cpp" line="529"/> | |
| 1961 | - <location filename="fileprocessdlg.cpp" line="646"/> | |
| 1962 | - <location filename="fileprocessdlg.cpp" line="702"/> | |
| 1963 | - <location filename="fileprocessdlg.cpp" line="718"/> | |
| 1964 | - <location filename="fileprocessdlg.cpp" line="767"/> | |
| 2017 | + <location filename="fileprocessdlg.cpp" line="478"/> | |
| 2018 | + <location filename="fileprocessdlg.cpp" line="556"/> | |
| 2019 | + <location filename="fileprocessdlg.cpp" line="748"/> | |
| 2020 | + <location filename="fileprocessdlg.cpp" line="804"/> | |
| 2021 | + <location filename="fileprocessdlg.cpp" line="820"/> | |
| 2022 | + <location filename="fileprocessdlg.cpp" line="869"/> | |
| 1965 | 2023 | <source>남은 예상 시간 : 완료</source> |
| 1966 | 2024 | <translation>Expected Remaining Time : Finish</translation> |
| 1967 | 2025 | </message> |
| 1968 | 2026 | <message> |
| 1969 | - <location filename="fileprocessdlg.cpp" line="472"/> | |
| 2027 | + <location filename="fileprocessdlg.cpp" line="499"/> | |
| 1970 | 2028 | <source>,Steam Heating Time,</source> |
| 1971 | 2029 | <translation>,Steam Heating Time,</translation> |
| 1972 | 2030 | </message> |
| 1973 | 2031 | <message> |
| 1974 | - <location filename="fileprocessdlg.cpp" line="474"/> | |
| 2032 | + <location filename="fileprocessdlg.cpp" line="501"/> | |
| 1975 | 2033 | <source>,Hot Air Heating Time,</source> |
| 1976 | 2034 | <translation>,Hot Air Heating Time,</translation> |
| 1977 | 2035 | </message> |
| 1978 | 2036 | <message> |
| 1979 | - <location filename="fileprocessdlg.cpp" line="479"/> | |
| 2037 | + <location filename="fileprocessdlg.cpp" line="506"/> | |
| 1980 | 2038 | <source>,Hot Air Mode,</source> |
| 1981 | 2039 | <translation>,Hot Air Mode,</translation> |
| 1982 | 2040 | </message> |
| 1983 | 2041 | <message> |
| 1984 | - <location filename="fileprocessdlg.cpp" line="482"/> | |
| 2042 | + <location filename="fileprocessdlg.cpp" line="509"/> | |
| 1985 | 2043 | <source>,Steam Mode,</source> |
| 1986 | 2044 | <translation>,Steam Mode,</translation> |
| 1987 | 2045 | </message> |
| 1988 | 2046 | <message> |
| 1989 | - <location filename="fileprocessdlg.cpp" line="485"/> | |
| 2047 | + <location filename="fileprocessdlg.cpp" line="512"/> | |
| 1990 | 2048 | <source>,Combi Mode,</source> |
| 1991 | 2049 | <translation>,Combi Mode,</translation> |
| 1992 | 2050 | </message> |
| 1993 | 2051 | <message> |
| 1994 | - <location filename="fileprocessdlg.cpp" line="488"/> | |
| 2052 | + <location filename="fileprocessdlg.cpp" line="515"/> | |
| 1995 | 2053 | <source>,세제없이 헹굼,</source> |
| 1996 | 2054 | <translation>,Rinsing without Detergent,</translation> |
| 1997 | 2055 | </message> |
| 1998 | 2056 | <message> |
| 1999 | - <location filename="fileprocessdlg.cpp" line="491"/> | |
| 2057 | + <location filename="fileprocessdlg.cpp" line="518"/> | |
| 2000 | 2058 | <source>,간이세척,</source> |
| 2001 | 2059 | <translation>,Simple Cleaning,</translation> |
| 2002 | 2060 | </message> |
| 2003 | 2061 | <message> |
| 2004 | - <location filename="fileprocessdlg.cpp" line="494"/> | |
| 2062 | + <location filename="fileprocessdlg.cpp" line="521"/> | |
| 2005 | 2063 | <source>,표준세척,</source> |
| 2006 | 2064 | <translation>,Standard Cleaning,</translation> |
| 2007 | 2065 | </message> |
| 2008 | 2066 | <message> |
| 2009 | - <location filename="fileprocessdlg.cpp" line="497"/> | |
| 2067 | + <location filename="fileprocessdlg.cpp" line="524"/> | |
| 2010 | 2068 | <source>,강세척</source> |
| 2011 | 2069 | <translation>,Strong Cleaning</translation> |
| 2012 | 2070 | </message> |
| 2013 | 2071 | <message> |
| 2014 | - <location filename="fileprocessdlg.cpp" line="500"/> | |
| 2072 | + <location filename="fileprocessdlg.cpp" line="527"/> | |
| 2015 | 2073 | <source>,고속세척,</source> |
| 2016 | 2074 | <translation>,High Speed Cleaning,</translation> |
| 2017 | 2075 | </message> |
| 2018 | 2076 | <message> |
| 2019 | - <location filename="fileprocessdlg.cpp" line="503"/> | |
| 2077 | + <location filename="fileprocessdlg.cpp" line="530"/> | |
| 2020 | 2078 | <source>,쿨다운,</source> |
| 2021 | 2079 | <translation>,Cool Down,</translation> |
| 2022 | 2080 | </message> |
| 2023 | 2081 | <message> |
| 2024 | - <location filename="fileprocessdlg.cpp" line="505"/> | |
| 2082 | + <location filename="fileprocessdlg.cpp" line="532"/> | |
| 2025 | 2083 | <source>,전체작동시간,</source> |
| 2026 | 2084 | <translation>,Total Operation Tine,</translation> |
| 2027 | 2085 | </message> |
| 2028 | 2086 | <message> |
| 2029 | - <location filename="fileprocessdlg.cpp" line="509"/> | |
| 2087 | + <location filename="fileprocessdlg.cpp" line="536"/> | |
| 2030 | 2088 | <source>,도어 Open,</source> |
| 2031 | 2089 | <translation>,Door Open,</translation> |
| 2032 | 2090 | </message> |
| 2033 | 2091 | <message> |
| 2034 | - <location filename="fileprocessdlg.cpp" line="511"/> | |
| 2092 | + <location filename="fileprocessdlg.cpp" line="538"/> | |
| 2035 | 2093 | <source>,볼밸브 Open,</source> |
| 2036 | 2094 | <translation>,Ball Valve Open,</translation> |
| 2037 | 2095 | </message> |
| 2038 | 2096 | <message> |
| 2039 | - <location filename="fileprocessdlg.cpp" line="513"/> | |
| 2097 | + <location filename="fileprocessdlg.cpp" line="540"/> | |
| 2040 | 2098 | <source>,S/G 급수 솔레노이드,</source> |
| 2041 | 2099 | <translation>,S/G Water Supply Solenoid,</translation> |
| 2042 | 2100 | </message> |
| 2043 | 2101 | <message> |
| 2044 | - <location filename="fileprocessdlg.cpp" line="515"/> | |
| 2102 | + <location filename="fileprocessdlg.cpp" line="542"/> | |
| 2045 | 2103 | <source>,퀀칭 솔레노이드,</source> |
| 2046 | 2104 | <translation>,Quenching Solenoid,</translation> |
| 2047 | 2105 | </message> |
| 2048 | 2106 | <message> |
| 2049 | - <location filename="fileprocessdlg.cpp" line="517"/> | |
| 2107 | + <location filename="fileprocessdlg.cpp" line="544"/> | |
| 2050 | 2108 | <source>,고내살수 노즐 솔레노이드 ,</source> |
| 2051 | 2109 | <translation>,Inside-storage Water Spray Nozzle Solenoid,</translation> |
| 2052 | 2110 | </message> |
| 2053 | 2111 | <message> |
| 2054 | - <location filename="fileprocessdlg.cpp" line="519"/> | |
| 2112 | + <location filename="fileprocessdlg.cpp" line="546"/> | |
| 2055 | 2113 | <source>,호스릴 솔레노이드,</source> |
| 2056 | 2114 | <translation>,Hose Reel Solenoid,</translation> |
| 2057 | 2115 | </message> |
| 2058 | 2116 | <message> |
| 2059 | - <location filename="fileprocessdlg.cpp" line="521"/> | |
| 2117 | + <location filename="fileprocessdlg.cpp" line="548"/> | |
| 2060 | 2118 | <source>,세제공급장치,</source> |
| 2061 | 2119 | <translation>,Detergent Supply Device,</translation> |
| 2062 | 2120 | </message> |
| 2063 | 2121 | <message> |
| 2064 | - <location filename="fileprocessdlg.cpp" line="523"/> | |
| 2122 | + <location filename="fileprocessdlg.cpp" line="550"/> | |
| 2065 | 2123 | <source>,배습댐퍼,</source> |
| 2066 | 2124 | <translation>,Moisture-discharging Damper,</translation> |
| 2067 | 2125 | </message> |
| 2068 | 2126 | <message> |
| 2069 | - <location filename="fileprocessdlg.cpp" line="525"/> | |
| 2127 | + <location filename="fileprocessdlg.cpp" line="552"/> | |
| 2070 | 2128 | <source>,소형펌프모터,</source> |
| 2071 | 2129 | <translation>,Small Pump Motor,</translation> |
| 2072 | 2130 | </message> |
| 2073 | 2131 | <message> |
| 2074 | - <location filename="fileprocessdlg.cpp" line="527"/> | |
| 2132 | + <location filename="fileprocessdlg.cpp" line="554"/> | |
| 2075 | 2133 | <source>,중형펌프모터,</source> |
| 2076 | 2134 | <translation>,Medium size Pump Motor,</translation> |
| 2077 | 2135 | </message> |
| 2078 | 2136 | <message> |
| 2079 | - <location filename="fileprocessdlg.cpp" line="557"/> | |
| 2080 | - <location filename="fileprocessdlg.cpp" line="614"/> | |
| 2081 | - <location filename="fileprocessdlg.cpp" line="655"/> | |
| 2082 | - <location filename="fileprocessdlg.cpp" line="711"/> | |
| 2083 | - <location filename="fileprocessdlg.cpp" line="777"/> | |
| 2137 | + <location filename="fileprocessdlg.cpp" line="586"/> | |
| 2138 | + <location filename="fileprocessdlg.cpp" line="716"/> | |
| 2139 | + <location filename="fileprocessdlg.cpp" line="757"/> | |
| 2140 | + <location filename="fileprocessdlg.cpp" line="813"/> | |
| 2141 | + <location filename="fileprocessdlg.cpp" line="879"/> | |
| 2084 | 2142 | <source>USB 인식을 실패하였습니다.</source> |
| 2085 | 2143 | <translation>USB recognition failed.</translation> |
| 2086 | 2144 | </message> |
| 2087 | 2145 | <message> |
| 2088 | - <location filename="fileprocessdlg.cpp" line="563"/> | |
| 2146 | + <location filename="fileprocessdlg.cpp" line="649"/> | |
| 2147 | + <source>CookBook Upload Success!.</source> | |
| 2148 | + <translation type="unfinished"></translation> | |
| 2149 | + </message> | |
| 2150 | + <message> | |
| 2151 | + <location filename="fileprocessdlg.cpp" line="653"/> | |
| 2089 | 2152 | <source>완료</source> |
| 2090 | 2153 | <translation>Finished</translation> |
| 2091 | 2154 | </message> |
| 2092 | 2155 | <message> |
| 2093 | - <location filename="fileprocessdlg.cpp" line="574"/> | |
| 2156 | + <location filename="fileprocessdlg.cpp" line="661"/> | |
| 2157 | + <source>에러 발생으로 종료합니다.</source> | |
| 2158 | + <translation type="unfinished"></translation> | |
| 2159 | + </message> | |
| 2160 | + <message> | |
| 2161 | + <location filename="fileprocessdlg.cpp" line="672"/> | |
| 2094 | 2162 | <source>남은 예상 시간 : %1분 %2초</source> |
| 2095 | 2163 | <translation>Expected Remaining Time : %1min %2sec</translation> |
| 2096 | 2164 | </message> |
| 2097 | 2165 | <message> |
| 2098 | - <location filename="fileprocessdlg.cpp" line="578"/> | |
| 2166 | + <location filename="fileprocessdlg.cpp" line="676"/> | |
| 2099 | 2167 | <source>남은 예상 시간 : %1초</source> |
| 2100 | 2168 | <translation>Expected Remaining Time : %1 sec</translation> |
| 2101 | 2169 | </message> |
| 2102 | 2170 | <message> |
| 2103 | - <location filename="fileprocessdlg.cpp" line="636"/> | |
| 2171 | + <location filename="fileprocessdlg.cpp" line="738"/> | |
| 2104 | 2172 | <source>설정 다운로드에 실패하였습니다.</source> |
| 2105 | 2173 | <translation>Setting download failed.</translation> |
| 2106 | 2174 | </message> |
| 2107 | 2175 | <message> |
| 2108 | - <location filename="fileprocessdlg.cpp" line="650"/> | |
| 2176 | + <location filename="fileprocessdlg.cpp" line="752"/> | |
| 2109 | 2177 | <source>즐겨찾기 다운로드에 실패하였습니다.</source> |
| 2110 | 2178 | <translation>Bookmark download failed.</translation> |
| 2111 | 2179 | </message> |
| 2112 | 2180 | <message> |
| 2113 | - <location filename="fileprocessdlg.cpp" line="675"/> | |
| 2114 | - <location filename="fileprocessdlg.cpp" line="681"/> | |
| 2115 | - <location filename="fileprocessdlg.cpp" line="691"/> | |
| 2181 | + <location filename="fileprocessdlg.cpp" line="777"/> | |
| 2182 | + <location filename="fileprocessdlg.cpp" line="783"/> | |
| 2183 | + <location filename="fileprocessdlg.cpp" line="793"/> | |
| 2116 | 2184 | <source>설정 업로드에 실패하였습니다.</source> |
| 2117 | 2185 | <translation>Setting upload failed.</translation> |
| 2118 | 2186 | </message> |
| 2119 | 2187 | <message> |
| 2120 | - <location filename="fileprocessdlg.cpp" line="706"/> | |
| 2188 | + <location filename="fileprocessdlg.cpp" line="808"/> | |
| 2121 | 2189 | <source>즐겨찾기 업로드에 실패하였습니다.</source> |
| 2122 | 2190 | <translation>Bookmark upload failed.</translation> |
| 2123 | 2191 | </message> |
| 2124 | 2192 | <message> |
| 2125 | - <location filename="fileprocessdlg.cpp" line="735"/> | |
| 2193 | + <location filename="fileprocessdlg.cpp" line="837"/> | |
| 2126 | 2194 | <source>남은 예상 시간 : 2초</source> |
| 2127 | 2195 | <translation>Expected Remaining Time : 2 sec</translation> |
| 2128 | 2196 | </message> |
| 2129 | 2197 | <message> |
| 2130 | - <location filename="fileprocessdlg.cpp" line="738"/> | |
| 2198 | + <location filename="fileprocessdlg.cpp" line="840"/> | |
| 2131 | 2199 | <source>모델 정보 업로드에 실패하였습니다.</source> |
| 2132 | 2200 | <translation>model Information upload failed.</translation> |
| 2133 | 2201 | </message> |
| 2134 | 2202 | <message> |
| 2135 | - <location filename="fileprocessdlg.cpp" line="751"/> | |
| 2203 | + <location filename="fileprocessdlg.cpp" line="853"/> | |
| 2136 | 2204 | <source>남은 예상 시간 : 1</source> |
| 2137 | 2205 | <translation>Expected Remaining Time : 1</translation> |
| 2138 | 2206 | </message> |
| 2139 | 2207 | <message> |
| 2140 | - <location filename="fileprocessdlg.cpp" line="755"/> | |
| 2208 | + <location filename="fileprocessdlg.cpp" line="857"/> | |
| 2141 | 2209 | <source>핫라인 쉐프 정보 업로드에 실패하였습니다.</source> |
| 2142 | 2210 | <translation>Hot Line - Chef Setting upload failed.</translation> |
| 2143 | 2211 | </message> |
| 2144 | 2212 | <message> |
| 2145 | - <location filename="fileprocessdlg.cpp" line="772"/> | |
| 2213 | + <location filename="fileprocessdlg.cpp" line="874"/> | |
| 2146 | 2214 | <source>핫라인 서비스 정보 업로드에 실패하였습니다.</source> |
| 2147 | 2215 | <translation>Hot Line - Service Setting upload failed.</translation> |
| 2148 | 2216 | </message> |
| ... | ... | @@ -2536,92 +2604,92 @@ Control</translation> |
| 2536 | 2604 | </message> |
| 2537 | 2605 | <message> |
| 2538 | 2606 | <location filename="mainwindow.ui" line="179"/> |
| 2539 | - <location filename="mainwindow.ui" line="208"/> | |
| 2540 | - <location filename="mainwindow.ui" line="234"/> | |
| 2607 | + <location filename="mainwindow.ui" line="205"/> | |
| 2608 | + <location filename="mainwindow.ui" line="231"/> | |
| 2541 | 2609 | <source>function</source> |
| 2542 | 2610 | <translation>function</translation> |
| 2543 | 2611 | </message> |
| 2544 | 2612 | <message> |
| 2545 | - <location filename="mainwindow.ui" line="205"/> | |
| 2613 | + <location filename="mainwindow.ui" line="202"/> | |
| 2546 | 2614 | <source>프로그래밍모드</source> |
| 2547 | 2615 | <translation>Programming Mode</translation> |
| 2548 | 2616 | </message> |
| 2549 | 2617 | <message> |
| 2550 | - <location filename="mainwindow.ui" line="231"/> | |
| 2618 | + <location filename="mainwindow.ui" line="228"/> | |
| 2551 | 2619 | <source>세척모드</source> |
| 2552 | 2620 | <translation>Cleaning Mode</translation> |
| 2553 | 2621 | </message> |
| 2554 | 2622 | <message> |
| 2555 | - <location filename="mainwindow.ui" line="329"/> | |
| 2623 | + <location filename="mainwindow.ui" line="326"/> | |
| 2556 | 2624 | <source>건열</source> |
| 2557 | 2625 | <translation>Dry Heat</translation> |
| 2558 | 2626 | </message> |
| 2559 | 2627 | <message> |
| 2560 | - <location filename="mainwindow.ui" line="332"/> | |
| 2561 | - <location filename="mainwindow.ui" line="352"/> | |
| 2562 | - <location filename="mainwindow.ui" line="372"/> | |
| 2628 | + <location filename="mainwindow.ui" line="329"/> | |
| 2629 | + <location filename="mainwindow.ui" line="349"/> | |
| 2630 | + <location filename="mainwindow.ui" line="369"/> | |
| 2563 | 2631 | <source>mode</source> |
| 2564 | 2632 | <translation>mode</translation> |
| 2565 | 2633 | </message> |
| 2566 | 2634 | <message> |
| 2567 | - <location filename="mainwindow.ui" line="349"/> | |
| 2635 | + <location filename="mainwindow.ui" line="346"/> | |
| 2568 | 2636 | <source>콤비</source> |
| 2569 | 2637 | <translation>Combi</translation> |
| 2570 | 2638 | </message> |
| 2571 | 2639 | <message> |
| 2572 | - <location filename="mainwindow.ui" line="369"/> | |
| 2640 | + <location filename="mainwindow.ui" line="366"/> | |
| 2573 | 2641 | <source>스팀</source> |
| 2574 | 2642 | <translation>Steam</translation> |
| 2575 | 2643 | </message> |
| 2576 | 2644 | <message> |
| 2577 | - <location filename="mainwindow.ui" line="395"/> | |
| 2645 | + <location filename="mainwindow.ui" line="392"/> | |
| 2578 | 2646 | <source>육류</source> |
| 2579 | 2647 | <translation>Meat</translation> |
| 2580 | 2648 | </message> |
| 2581 | 2649 | <message> |
| 2582 | - <location filename="mainwindow.ui" line="398"/> | |
| 2583 | - <location filename="mainwindow.ui" line="424"/> | |
| 2584 | - <location filename="mainwindow.ui" line="450"/> | |
| 2585 | - <location filename="mainwindow.ui" line="476"/> | |
| 2586 | - <location filename="mainwindow.ui" line="502"/> | |
| 2587 | - <location filename="mainwindow.ui" line="528"/> | |
| 2588 | - <location filename="mainwindow.ui" line="554"/> | |
| 2589 | - <location filename="mainwindow.ui" line="580"/> | |
| 2650 | + <location filename="mainwindow.ui" line="395"/> | |
| 2651 | + <location filename="mainwindow.ui" line="421"/> | |
| 2652 | + <location filename="mainwindow.ui" line="447"/> | |
| 2653 | + <location filename="mainwindow.ui" line="473"/> | |
| 2654 | + <location filename="mainwindow.ui" line="499"/> | |
| 2655 | + <location filename="mainwindow.ui" line="525"/> | |
| 2656 | + <location filename="mainwindow.ui" line="551"/> | |
| 2657 | + <location filename="mainwindow.ui" line="577"/> | |
| 2590 | 2658 | <source>type</source> |
| 2591 | 2659 | <translation>type</translation> |
| 2592 | 2660 | </message> |
| 2593 | 2661 | <message> |
| 2594 | - <location filename="mainwindow.ui" line="421"/> | |
| 2662 | + <location filename="mainwindow.ui" line="418"/> | |
| 2595 | 2663 | <source>디저트류</source> |
| 2596 | 2664 | <translation>Dessert</translation> |
| 2597 | 2665 | </message> |
| 2598 | 2666 | <message> |
| 2599 | - <location filename="mainwindow.ui" line="447"/> | |
| 2667 | + <location filename="mainwindow.ui" line="444"/> | |
| 2600 | 2668 | <source>기타요리</source> |
| 2601 | 2669 | <translation>Other dishes</translation> |
| 2602 | 2670 | </message> |
| 2603 | 2671 | <message> |
| 2604 | - <location filename="mainwindow.ui" line="473"/> | |
| 2672 | + <location filename="mainwindow.ui" line="470"/> | |
| 2605 | 2673 | <source>채소및곡류</source> |
| 2606 | 2674 | <translation>Vegetables</translation> |
| 2607 | 2675 | </message> |
| 2608 | 2676 | <message> |
| 2609 | - <location filename="mainwindow.ui" line="499"/> | |
| 2677 | + <location filename="mainwindow.ui" line="496"/> | |
| 2610 | 2678 | <source>가금류</source> |
| 2611 | 2679 | <translation>Poultry</translation> |
| 2612 | 2680 | </message> |
| 2613 | 2681 | <message> |
| 2614 | - <location filename="mainwindow.ui" line="525"/> | |
| 2682 | + <location filename="mainwindow.ui" line="522"/> | |
| 2615 | 2683 | <source>생선류</source> |
| 2616 | 2684 | <translation>Fishes</translation> |
| 2617 | 2685 | </message> |
| 2618 | 2686 | <message> |
| 2619 | - <location filename="mainwindow.ui" line="551"/> | |
| 2687 | + <location filename="mainwindow.ui" line="548"/> | |
| 2620 | 2688 | <source>제과제빵류</source> |
| 2621 | 2689 | <translation>Baking</translation> |
| 2622 | 2690 | </message> |
| 2623 | 2691 | <message> |
| 2624 | - <location filename="mainwindow.ui" line="577"/> | |
| 2692 | + <location filename="mainwindow.ui" line="574"/> | |
| 2625 | 2693 | <source>부가기능</source> |
| 2626 | 2694 | <translation>Add-ons</translation> |
| 2627 | 2695 | </message> |
| ... | ... | @@ -2634,7 +2702,7 @@ Control</translation> |
| 2634 | 2702 | <translation type="vanished">V0.3.4</translation> |
| 2635 | 2703 | </message> |
| 2636 | 2704 | <message> |
| 2637 | - <location filename="mainwindow.cpp" line="128"/> | |
| 2705 | + <location filename="mainwindow.cpp" line="137"/> | |
| 2638 | 2706 | <source>세척이 정상적으로 종료되지 않아 |
| 2639 | 2707 | 반드시 세척통을 자동 세척해야 합니다. |
| 2640 | 2708 | 내부를 비워주세요</source> |
| ... | ... | @@ -2756,48 +2824,48 @@ Control</translation> |
| 2756 | 2824 | <translation>tool</translation> |
| 2757 | 2825 | </message> |
| 2758 | 2826 | <message> |
| 2759 | - <location filename="manualcookwindow.cpp" line="696"/> | |
| 2760 | - <location filename="manualcookwindow.cpp" line="706"/> | |
| 2827 | + <location filename="manualcookwindow.cpp" line="702"/> | |
| 2828 | + <location filename="manualcookwindow.cpp" line="712"/> | |
| 2761 | 2829 | <source>문을 닫아주세요</source> |
| 2762 | 2830 | <translation>Please close the door</translation> |
| 2763 | 2831 | </message> |
| 2764 | 2832 | <message> |
| 2765 | - <location filename="manualcookwindow.cpp" line="696"/> | |
| 2833 | + <location filename="manualcookwindow.cpp" line="702"/> | |
| 2766 | 2834 | <source>조리 중 문 열림 시간 모니터링 1단계</source> |
| 2767 | 2835 | <translation>Monitoring stage 1 of door open time during cooking </translation> |
| 2768 | 2836 | </message> |
| 2769 | 2837 | <message> |
| 2770 | - <location filename="manualcookwindow.cpp" line="706"/> | |
| 2838 | + <location filename="manualcookwindow.cpp" line="712"/> | |
| 2771 | 2839 | <source>조리 중 문 열림 시간 모니터링 2단계</source> |
| 2772 | 2840 | <translation>Monitoring stage 2 of door open time during cooking </translation> |
| 2773 | 2841 | </message> |
| 2774 | 2842 | <message> |
| 2775 | - <location filename="manualcookwindow.cpp" line="716"/> | |
| 2843 | + <location filename="manualcookwindow.cpp" line="722"/> | |
| 2776 | 2844 | <source>문이 오래 열려있어 조리가 취소되었습니다</source> |
| 2777 | 2845 | <translation>The door is opened for a long time, so cooking is cancelled</translation> |
| 2778 | 2846 | </message> |
| 2779 | 2847 | <message> |
| 2780 | - <location filename="manualcookwindow.cpp" line="716"/> | |
| 2848 | + <location filename="manualcookwindow.cpp" line="722"/> | |
| 2781 | 2849 | <source>조리 중 문 열림 시간 모니터링 3단계</source> |
| 2782 | 2850 | <translation>Monitoring stage 3 of door open time during cooking</translation> |
| 2783 | 2851 | </message> |
| 2784 | 2852 | <message> |
| 2785 | - <location filename="manualcookwindow.cpp" line="1053"/> | |
| 2853 | + <location filename="manualcookwindow.cpp" line="1059"/> | |
| 2786 | 2854 | <source>즐겨찾기 항목에 추가하시겠습니까?</source> |
| 2787 | 2855 | <translation>Do you want to add it to bookmark?</translation> |
| 2788 | 2856 | </message> |
| 2789 | 2857 | <message> |
| 2790 | - <location filename="manualcookwindow.cpp" line="1084"/> | |
| 2858 | + <location filename="manualcookwindow.cpp" line="1090"/> | |
| 2791 | 2859 | <source>요리가 중단되고 환경 설정 모드로 들어갑니다. 진행할까요?</source> |
| 2792 | 2860 | <translation>Cooking stops and the system goes to configuration mode. Do you want to proceed?</translation> |
| 2793 | 2861 | </message> |
| 2794 | 2862 | <message> |
| 2795 | - <location filename="manualcookwindow.cpp" line="1107"/> | |
| 2863 | + <location filename="manualcookwindow.cpp" line="1113"/> | |
| 2796 | 2864 | <source>요리가 중단되고 즐겨찾기 모드로 들어갑니다. 진행할까요?</source> |
| 2797 | 2865 | <translation>Cooking stops and the system goes to bookmark mode. Do you want to proceed?</translation> |
| 2798 | 2866 | </message> |
| 2799 | 2867 | <message> |
| 2800 | - <location filename="manualcookwindow.cpp" line="1131"/> | |
| 2868 | + <location filename="manualcookwindow.cpp" line="1137"/> | |
| 2801 | 2869 | <source>요리가 중단되고 자동 세척 모드로 들어갑니다. 진행할까요?</source> |
| 2802 | 2870 | <translation>Cooking stops and the system goes to automatic cleaning mode. Do you want to proceed?</translation> |
| 2803 | 2871 | </message> |
| ... | ... | @@ -2831,6 +2899,225 @@ Control</translation> |
| 2831 | 2899 | </message> |
| 2832 | 2900 | </context> |
| 2833 | 2901 | <context> |
| 2902 | + <name>MultiCookAutoWindow</name> | |
| 2903 | + <message> | |
| 2904 | + <location filename="multicookautowindow.cpp" line="140"/> | |
| 2905 | + <source>다중 요리 목록에 추가하시겠습니까?</source> | |
| 2906 | + <translation type="unfinished"></translation> | |
| 2907 | + </message> | |
| 2908 | +</context> | |
| 2909 | +<context> | |
| 2910 | + <name>MultiCookManualWindow</name> | |
| 2911 | + <message> | |
| 2912 | + <location filename="multicookmanualwindow.ui" line="81"/> | |
| 2913 | + <source>건열</source> | |
| 2914 | + <translation type="unfinished">Dry Heat</translation> | |
| 2915 | + </message> | |
| 2916 | + <message> | |
| 2917 | + <location filename="multicookmanualwindow.ui" line="170"/> | |
| 2918 | + <source>0%</source> | |
| 2919 | + <translation type="unfinished">0%</translation> | |
| 2920 | + </message> | |
| 2921 | + <message> | |
| 2922 | + <location filename="multicookmanualwindow.ui" line="232"/> | |
| 2923 | + <location filename="multicookmanualwindow.ui" line="378"/> | |
| 2924 | + <source>감소</source> | |
| 2925 | + <translation type="unfinished">Decrease</translation> | |
| 2926 | + </message> | |
| 2927 | + <message> | |
| 2928 | + <location filename="multicookmanualwindow.ui" line="294"/> | |
| 2929 | + <location filename="multicookmanualwindow.ui" line="709"/> | |
| 2930 | + <source>증가</source> | |
| 2931 | + <translation type="unfinished">Increase</translation> | |
| 2932 | + </message> | |
| 2933 | + <message> | |
| 2934 | + <location filename="multicookmanualwindow.ui" line="503"/> | |
| 2935 | + <source>0<span style="font-size:11pt;">초</span></source> | |
| 2936 | + <translation type="unfinished"></translation> | |
| 2937 | + </message> | |
| 2938 | + <message> | |
| 2939 | + <location filename="multicookmanualwindow.ui" line="527"/> | |
| 2940 | + <source>콤비</source> | |
| 2941 | + <translation type="unfinished">Combi</translation> | |
| 2942 | + </message> | |
| 2943 | + <message> | |
| 2944 | + <location filename="multicookmanualwindow.ui" line="580"/> | |
| 2945 | + <source>스팀</source> | |
| 2946 | + <translation type="unfinished">Steam</translation> | |
| 2947 | + </message> | |
| 2948 | + <message> | |
| 2949 | + <location filename="multicookmanualwindow.ui" line="647"/> | |
| 2950 | + <source>30<span style="font-size:11pt;">℃</span></source> | |
| 2951 | + <translation type="unfinished">30<span style="font-size:11pt;">℃</span></translation> | |
| 2952 | + </message> | |
| 2953 | +</context> | |
| 2954 | +<context> | |
| 2955 | + <name>MultiCookSelectionWindow</name> | |
| 2956 | + <message> | |
| 2957 | + <location filename="multicookselectionwindow.ui" line="78"/> | |
| 2958 | + <source>건열</source> | |
| 2959 | + <translation type="unfinished">Dry Heat</translation> | |
| 2960 | + </message> | |
| 2961 | + <message> | |
| 2962 | + <location filename="multicookselectionwindow.ui" line="121"/> | |
| 2963 | + <source>채소및곡류</source> | |
| 2964 | + <translation type="unfinished"></translation> | |
| 2965 | + </message> | |
| 2966 | + <message> | |
| 2967 | + <location filename="multicookselectionwindow.ui" line="164"/> | |
| 2968 | + <source>제과제빵류</source> | |
| 2969 | + <translation type="unfinished"></translation> | |
| 2970 | + </message> | |
| 2971 | + <message> | |
| 2972 | + <location filename="multicookselectionwindow.ui" line="207"/> | |
| 2973 | + <source>육류</source> | |
| 2974 | + <translation type="unfinished">Meat</translation> | |
| 2975 | + </message> | |
| 2976 | + <message> | |
| 2977 | + <location filename="multicookselectionwindow.ui" line="250"/> | |
| 2978 | + <source>디저트류</source> | |
| 2979 | + <translation type="unfinished">Dessert</translation> | |
| 2980 | + </message> | |
| 2981 | + <message> | |
| 2982 | + <location filename="multicookselectionwindow.ui" line="280"/> | |
| 2983 | + <source>가금류</source> | |
| 2984 | + <translation type="unfinished">Poultry</translation> | |
| 2985 | + </message> | |
| 2986 | + <message> | |
| 2987 | + <location filename="multicookselectionwindow.ui" line="304"/> | |
| 2988 | + <source>콤비</source> | |
| 2989 | + <translation type="unfinished">Combi</translation> | |
| 2990 | + </message> | |
| 2991 | + <message> | |
| 2992 | + <location filename="multicookselectionwindow.ui" line="337"/> | |
| 2993 | + <source>다중요리</source> | |
| 2994 | + <translation type="unfinished">Multiple Cooking</translation> | |
| 2995 | + </message> | |
| 2996 | + <message> | |
| 2997 | + <location filename="multicookselectionwindow.ui" line="370"/> | |
| 2998 | + <source>프로그래밍모드</source> | |
| 2999 | + <translation type="unfinished">Programming Mode</translation> | |
| 3000 | + </message> | |
| 3001 | + <message> | |
| 3002 | + <location filename="multicookselectionwindow.ui" line="413"/> | |
| 3003 | + <source>기타요리</source> | |
| 3004 | + <translation type="unfinished"></translation> | |
| 3005 | + </message> | |
| 3006 | + <message> | |
| 3007 | + <location filename="multicookselectionwindow.ui" line="459"/> | |
| 3008 | + <source>세척모드</source> | |
| 3009 | + <translation type="unfinished">Cleaning Mode</translation> | |
| 3010 | + </message> | |
| 3011 | + <message> | |
| 3012 | + <location filename="multicookselectionwindow.ui" line="489"/> | |
| 3013 | + <source>부가기능</source> | |
| 3014 | + <translation type="unfinished"></translation> | |
| 3015 | + </message> | |
| 3016 | + <message> | |
| 3017 | + <location filename="multicookselectionwindow.ui" line="617"/> | |
| 3018 | + <source>스팀</source> | |
| 3019 | + <translation type="unfinished">Steam</translation> | |
| 3020 | + </message> | |
| 3021 | + <message> | |
| 3022 | + <location filename="multicookselectionwindow.ui" line="647"/> | |
| 3023 | + <source>생선류</source> | |
| 3024 | + <translation type="unfinished">Fishes</translation> | |
| 3025 | + </message> | |
| 3026 | + <message> | |
| 3027 | + <location filename="multicookselectionwindow.ui" line="702"/> | |
| 3028 | + <location filename="multicookselectionwindow.cpp" line="83"/> | |
| 3029 | + <source>1. 다중 요리에서 사용할 요리 카테고리를 선택해주세요 | |
| 3030 | +2. 스팀, 콤비, 건열 중에서 선택하시면 자동으로 다음 단계로 진행됩니다</source> | |
| 3031 | + <translation type="unfinished"></translation> | |
| 3032 | + </message> | |
| 3033 | + <message> | |
| 3034 | + <location filename="multicookselectionwindow.cpp" line="103"/> | |
| 3035 | + <source>스팀을</source> | |
| 3036 | + <translation type="unfinished"></translation> | |
| 3037 | + </message> | |
| 3038 | + <message> | |
| 3039 | + <location filename="multicookselectionwindow.cpp" line="106"/> | |
| 3040 | + <source>콤비를</source> | |
| 3041 | + <translation type="unfinished"></translation> | |
| 3042 | + </message> | |
| 3043 | + <message> | |
| 3044 | + <location filename="multicookselectionwindow.cpp" line="109"/> | |
| 3045 | + <source>건열을</source> | |
| 3046 | + <translation type="unfinished"></translation> | |
| 3047 | + </message> | |
| 3048 | + <message> | |
| 3049 | + <location filename="multicookselectionwindow.cpp" line="113"/> | |
| 3050 | + <source>1. %1 선택하였습니다 | |
| 3051 | +2. 수동 메뉴 혹은 원하시는 자동 메뉴 상세 목록을 선택하세요</source> | |
| 3052 | + <translation type="unfinished"></translation> | |
| 3053 | + </message> | |
| 3054 | +</context> | |
| 3055 | +<context> | |
| 3056 | + <name>MultiCookWindow</name> | |
| 3057 | + <message> | |
| 3058 | + <location filename="multicookwindow.ui" line="14"/> | |
| 3059 | + <source>MainWindow</source> | |
| 3060 | + <translation type="unfinished"></translation> | |
| 3061 | + </message> | |
| 3062 | + <message> | |
| 3063 | + <location filename="multicookwindow.ui" line="113"/> | |
| 3064 | + <source>문이 열려있습니다 | |
| 3065 | +문을 닫으시면 다시 시작됩니다</source> | |
| 3066 | + <translation type="unfinished"></translation> | |
| 3067 | + </message> | |
| 3068 | + <message> | |
| 3069 | + <location filename="multicookwindow.ui" line="170"/> | |
| 3070 | + <source>문을 열어주세요</source> | |
| 3071 | + <translation type="unfinished"></translation> | |
| 3072 | + </message> | |
| 3073 | + <message> | |
| 3074 | + <location filename="multicookwindow.ui" line="538"/> | |
| 3075 | + <source>다중 요리 최근 요리 목록입니다</source> | |
| 3076 | + <translation type="unfinished"></translation> | |
| 3077 | + </message> | |
| 3078 | + <message> | |
| 3079 | + <location filename="multicookwindow.ui" line="754"/> | |
| 3080 | + <location filename="multicookwindow.ui" line="778"/> | |
| 3081 | + <location filename="multicookwindow.ui" line="802"/> | |
| 3082 | + <location filename="multicookwindow.ui" line="826"/> | |
| 3083 | + <location filename="multicookwindow.ui" line="850"/> | |
| 3084 | + <location filename="multicookwindow.ui" line="874"/> | |
| 3085 | + <location filename="multicookwindow.ui" line="898"/> | |
| 3086 | + <location filename="multicookwindow.ui" line="922"/> | |
| 3087 | + <location filename="multicookwindow.ui" line="946"/> | |
| 3088 | + <location filename="multicookwindow.ui" line="970"/> | |
| 3089 | + <location filename="multicookwindow.ui" line="1034"/> | |
| 3090 | + <source>slotLabel</source> | |
| 3091 | + <translation type="unfinished"></translation> | |
| 3092 | + </message> | |
| 3093 | + <message> | |
| 3094 | + <location filename="multicookwindow.ui" line="1027"/> | |
| 3095 | + <source>1. 해당 조리 칸 버튼을 눌러 메뉴를 선택해주세요. | |
| 3096 | +2. 메뉴가 선택되면, 해당 작업 시간이 적용됩니다.</source> | |
| 3097 | + <translation type="unfinished"></translation> | |
| 3098 | + </message> | |
| 3099 | + <message> | |
| 3100 | + <location filename="multicookwindow.cpp" line="178"/> | |
| 3101 | + <source>%1번 단 요리(%2)가 종료되었습니다</source> | |
| 3102 | + <translation type="unfinished"></translation> | |
| 3103 | + </message> | |
| 3104 | + <message> | |
| 3105 | + <location filename="multicookwindow.cpp" line="405"/> | |
| 3106 | + <location filename="multicookwindow.cpp" line="420"/> | |
| 3107 | + <location filename="multicookwindow.cpp" line="435"/> | |
| 3108 | + <source>요리를 취소하시겠습니까?</source> | |
| 3109 | + <translation type="unfinished"></translation> | |
| 3110 | + </message> | |
| 3111 | +</context> | |
| 3112 | +<context> | |
| 3113 | + <name>MultiManualCook</name> | |
| 3114 | + <message> | |
| 3115 | + <location filename="multimanualcook.cpp" line="39"/> | |
| 3116 | + <source>수동 요리</source> | |
| 3117 | + <translation type="unfinished"></translation> | |
| 3118 | + </message> | |
| 3119 | +</context> | |
| 3120 | +<context> | |
| 2834 | 3121 | <name>NotiPopupDlg</name> |
| 2835 | 3122 | <message> |
| 2836 | 3123 | <location filename="notipopupdlg.ui" line="60"/> |
| ... | ... | @@ -3602,7 +3889,7 @@ Nozzle Solenoid</translation> |
| 3602 | 3889 | <name>PreheatPopup</name> |
| 3603 | 3890 | <message> |
| 3604 | 3891 | <location filename="preheatpopup.ui" line="104"/> |
| 3605 | - <location filename="preheatpopup.ui" line="549"/> | |
| 3892 | + <location filename="preheatpopup.ui" line="552"/> | |
| 3606 | 3893 | <source>10</source> |
| 3607 | 3894 | <translation>10</translation> |
| 3608 | 3895 | </message> |
| ... | ... | @@ -3612,17 +3899,17 @@ Nozzle Solenoid</translation> |
| 3612 | 3899 | <translation>Preheat</translation> |
| 3613 | 3900 | </message> |
| 3614 | 3901 | <message> |
| 3615 | - <location filename="preheatpopup.ui" line="331"/> | |
| 3902 | + <location filename="preheatpopup.ui" line="334"/> | |
| 3616 | 3903 | <source>예열</source> |
| 3617 | 3904 | <translation>Preheating</translation> |
| 3618 | 3905 | </message> |
| 3619 | 3906 | <message> |
| 3620 | - <location filename="preheatpopup.ui" line="491"/> | |
| 3907 | + <location filename="preheatpopup.ui" line="494"/> | |
| 3621 | 3908 | <source>00:00</source> |
| 3622 | 3909 | <translation>0:00</translation> |
| 3623 | 3910 | </message> |
| 3624 | 3911 | <message> |
| 3625 | - <location filename="preheatpopup.ui" line="749"/> | |
| 3912 | + <location filename="preheatpopup.ui" line="752"/> | |
| 3626 | 3913 | <source>000/000</source> |
| 3627 | 3914 | <translation>000/000</translation> |
| 3628 | 3915 | </message> |
| ... | ... | @@ -3648,9 +3935,8 @@ Nozzle Solenoid</translation> |
| 3648 | 3935 | <context> |
| 3649 | 3936 | <name>ProgrammedCookPanelButton</name> |
| 3650 | 3937 | <message> |
| 3651 | - <location filename="programmedcookpanelbutton.ui" line="14"/> | |
| 3652 | 3938 | <source>Form</source> |
| 3653 | - <translation>form</translation> | |
| 3939 | + <translation type="vanished">form</translation> | |
| 3654 | 3940 | </message> |
| 3655 | 3941 | </context> |
| 3656 | 3942 | <context> |
| ... | ... | @@ -3794,7 +4080,7 @@ Nozzle Solenoid</translation> |
| 3794 | 4080 | <location filename="programmingselectionwindow.ui" line="417"/> |
| 3795 | 4081 | <location filename="programmingselectionwindow.ui" line="589"/> |
| 3796 | 4082 | <location filename="programmingselectionwindow.ui" line="643"/> |
| 3797 | - <location filename="programmingselectionwindow.ui" line="739"/> | |
| 4083 | + <location filename="programmingselectionwindow.ui" line="673"/> | |
| 3798 | 4084 | <source>type</source> |
| 3799 | 4085 | <translation>type</translation> |
| 3800 | 4086 | </message> |
| ... | ... | @@ -3873,7 +4159,7 @@ Nozzle Solenoid</translation> |
| 3873 | 4159 | <translation>Additional Functions</translation> |
| 3874 | 4160 | </message> |
| 3875 | 4161 | <message> |
| 3876 | - <location filename="programmingselectionwindow.ui" line="736"/> | |
| 4162 | + <location filename="programmingselectionwindow.ui" line="670"/> | |
| 3877 | 4163 | <source>제과제빵류</source> |
| 3878 | 4164 | <translation>Confectionery and Baking</translation> |
| 3879 | 4165 | </message> |
| ... | ... | @@ -3891,18 +4177,18 @@ Nozzle Solenoid</translation> |
| 3891 | 4177 | <translation>Make Manual Cooking</translation> |
| 3892 | 4178 | </message> |
| 3893 | 4179 | <message> |
| 3894 | - <location filename="programmingwindow.cpp" line="110"/> | |
| 3895 | - <location filename="programmingwindow.cpp" line="122"/> | |
| 4180 | + <location filename="programmingwindow.cpp" line="111"/> | |
| 4181 | + <location filename="programmingwindow.cpp" line="123"/> | |
| 3896 | 4182 | <source>추가하기</source> |
| 3897 | 4183 | <translation>Add</translation> |
| 3898 | 4184 | </message> |
| 3899 | 4185 | <message> |
| 3900 | - <location filename="programmingwindow.cpp" line="308"/> | |
| 4186 | + <location filename="programmingwindow.cpp" line="309"/> | |
| 3901 | 4187 | <source>저장하지 않고 돌아가시겠습니까?</source> |
| 3902 | 4188 | <translation>Do you want to go back without saving?</translation> |
| 3903 | 4189 | </message> |
| 3904 | 4190 | <message> |
| 3905 | - <location filename="programmingwindow.cpp" line="318"/> | |
| 4191 | + <location filename="programmingwindow.cpp" line="319"/> | |
| 3906 | 4192 | <source>저장하시겠습니까?</source> |
| 3907 | 4193 | <translation>Do you want to save it?</translation> |
| 3908 | 4194 | </message> |
| ... | ... | @@ -4329,17 +4615,6 @@ Spray Nozzle Solenoid</translation> |
| 4329 | 4615 | <translation>Door Sensor</translation> |
| 4330 | 4616 | </message> |
| 4331 | 4617 | <message> |
| 4332 | - <location filename="realtimepartswindow.cpp" line="81"/> | |
| 4333 | - <location filename="realtimepartswindow.cpp" line="84"/> | |
| 4334 | - <location filename="realtimepartswindow.cpp" line="87"/> | |
| 4335 | - <location filename="realtimepartswindow.cpp" line="100"/> | |
| 4336 | - <location filename="realtimepartswindow.cpp" line="103"/> | |
| 4337 | - <location filename="realtimepartswindow.cpp" line="106"/> | |
| 4338 | - <location filename="realtimepartswindow.cpp" line="109"/> | |
| 4339 | - <source>ON</source> | |
| 4340 | - <translation>ON</translation> | |
| 4341 | - </message> | |
| 4342 | - <message> | |
| 4343 | 4618 | <location filename="realtimepartswindow.cpp" line="82"/> |
| 4344 | 4619 | <location filename="realtimepartswindow.cpp" line="85"/> |
| 4345 | 4620 | <location filename="realtimepartswindow.cpp" line="88"/> |
| ... | ... | @@ -4347,21 +4622,32 @@ Spray Nozzle Solenoid</translation> |
| 4347 | 4622 | <location filename="realtimepartswindow.cpp" line="104"/> |
| 4348 | 4623 | <location filename="realtimepartswindow.cpp" line="107"/> |
| 4349 | 4624 | <location filename="realtimepartswindow.cpp" line="110"/> |
| 4625 | + <source>ON</source> | |
| 4626 | + <translation>ON</translation> | |
| 4627 | + </message> | |
| 4628 | + <message> | |
| 4629 | + <location filename="realtimepartswindow.cpp" line="83"/> | |
| 4630 | + <location filename="realtimepartswindow.cpp" line="86"/> | |
| 4631 | + <location filename="realtimepartswindow.cpp" line="89"/> | |
| 4632 | + <location filename="realtimepartswindow.cpp" line="102"/> | |
| 4633 | + <location filename="realtimepartswindow.cpp" line="105"/> | |
| 4634 | + <location filename="realtimepartswindow.cpp" line="108"/> | |
| 4635 | + <location filename="realtimepartswindow.cpp" line="111"/> | |
| 4350 | 4636 | <source>OFF</source> |
| 4351 | 4637 | <translation>OFF</translation> |
| 4352 | 4638 | </message> |
| 4353 | 4639 | <message> |
| 4354 | - <location filename="realtimepartswindow.cpp" line="93"/> | |
| 4640 | + <location filename="realtimepartswindow.cpp" line="94"/> | |
| 4355 | 4641 | <source>HIGH</source> |
| 4356 | 4642 | <translation>HIGH</translation> |
| 4357 | 4643 | </message> |
| 4358 | 4644 | <message> |
| 4359 | - <location filename="realtimepartswindow.cpp" line="96"/> | |
| 4645 | + <location filename="realtimepartswindow.cpp" line="97"/> | |
| 4360 | 4646 | <source>LOW</source> |
| 4361 | 4647 | <translation>LOW</translation> |
| 4362 | 4648 | </message> |
| 4363 | 4649 | <message> |
| 4364 | - <location filename="realtimepartswindow.cpp" line="98"/> | |
| 4650 | + <location filename="realtimepartswindow.cpp" line="99"/> | |
| 4365 | 4651 | <source>NORMAL</source> |
| 4366 | 4652 | <translation>NORMAL</translation> |
| 4367 | 4653 | </message> |
| ... | ... | @@ -4482,6 +4768,11 @@ Temperature Time</translation> |
| 4482 | 4768 | <translation type="unfinished">Month</translation> |
| 4483 | 4769 | </message> |
| 4484 | 4770 | <message> |
| 4771 | + <location filename="reservetimepopup.ui" line="167"/> | |
| 4772 | + <source>분 후</source> | |
| 4773 | + <translation type="unfinished"></translation> | |
| 4774 | + </message> | |
| 4775 | + <message> | |
| 4485 | 4776 | <source>분</source> |
| 4486 | 4777 | <translation type="vanished">Minute</translation> |
| 4487 | 4778 | </message> |
| ... | ... | @@ -4566,6 +4857,24 @@ Temperature Time</translation> |
| 4566 | 4857 | </message> |
| 4567 | 4858 | </context> |
| 4568 | 4859 | <context> |
| 4860 | + <name>TouchTestWindow</name> | |
| 4861 | + <message> | |
| 4862 | + <location filename="touchtestwindow.ui" line="14"/> | |
| 4863 | + <source>MainWindow</source> | |
| 4864 | + <translation type="unfinished"></translation> | |
| 4865 | + </message> | |
| 4866 | + <message> | |
| 4867 | + <location filename="touchtestwindow.ui" line="31"/> | |
| 4868 | + <source>X</source> | |
| 4869 | + <translation type="unfinished"></translation> | |
| 4870 | + </message> | |
| 4871 | + <message> | |
| 4872 | + <location filename="touchtestwindow.ui" line="48"/> | |
| 4873 | + <source>C</source> | |
| 4874 | + <translation type="unfinished"></translation> | |
| 4875 | + </message> | |
| 4876 | +</context> | |
| 4877 | +<context> | |
| 4569 | 4878 | <name>UsbCheckPopupDlg</name> |
| 4570 | 4879 | <message> |
| 4571 | 4880 | <location filename="usbcheckpopupdlg.ui" line="61"/> |
| ... | ... | @@ -4687,7 +4996,7 @@ Solenoid Valve</translation> |
| 4687 | 4996 | <name>WashWindow</name> |
| 4688 | 4997 | <message> |
| 4689 | 4998 | <location filename="washwindow.ui" line="200"/> |
| 4690 | - <location filename="washwindow.cpp" line="354"/> | |
| 4999 | + <location filename="washwindow.cpp" line="356"/> | |
| 4691 | 5000 | <source>기기의 내부를 세척 중입니다</source> |
| 4692 | 5001 | <translation>Inside of the device is being cleaned</translation> |
| 4693 | 5002 | </message> |
| ... | ... | @@ -4763,80 +5072,80 @@ Inside-device automatic cleaning function is in progress.</translation> |
| 4763 | 5072 | <translation>Cleanliness</translation> |
| 4764 | 5073 | </message> |
| 4765 | 5074 | <message> |
| 4766 | - <location filename="washwindow.cpp" line="80"/> | |
| 5075 | + <location filename="washwindow.cpp" line="82"/> | |
| 4767 | 5076 | <source>제품 스팀통을 세척 중입니다</source> |
| 4768 | 5077 | <translation type="unfinished"></translation> |
| 4769 | 5078 | </message> |
| 4770 | 5079 | <message> |
| 4771 | - <location filename="washwindow.cpp" line="81"/> | |
| 5080 | + <location filename="washwindow.cpp" line="83"/> | |
| 4772 | 5081 | <source>완료될 때까지 문을 열지 마세요 |
| 4773 | 5082 | 제품의 스팀통 자동 세척 기능을 실행 중입니다</source> |
| 4774 | 5083 | <translation type="unfinished"></translation> |
| 4775 | 5084 | </message> |
| 4776 | 5085 | <message> |
| 4777 | - <location filename="washwindow.cpp" line="214"/> | |
| 5086 | + <location filename="washwindow.cpp" line="216"/> | |
| 4778 | 5087 | <source>내부 헹굼 진행 중입니다.</source> |
| 4779 | 5088 | <translation>Inside rinsing is in progress. </translation> |
| 4780 | 5089 | </message> |
| 4781 | 5090 | <message> |
| 4782 | - <location filename="washwindow.cpp" line="217"/> | |
| 5091 | + <location filename="washwindow.cpp" line="219"/> | |
| 4783 | 5092 | <source>스팀 급수 진행 중입니다.</source> |
| 4784 | 5093 | <translation>Steam water supply is in progress.</translation> |
| 4785 | 5094 | </message> |
| 4786 | 5095 | <message> |
| 4787 | - <location filename="washwindow.cpp" line="220"/> | |
| 5096 | + <location filename="washwindow.cpp" line="222"/> | |
| 4788 | 5097 | <source>내부 팬 세척 진행 중입니다.</source> |
| 4789 | 5098 | <translation>Inside fan cleaning is in progress.</translation> |
| 4790 | 5099 | </message> |
| 4791 | 5100 | <message> |
| 4792 | - <location filename="washwindow.cpp" line="223"/> | |
| 5101 | + <location filename="washwindow.cpp" line="225"/> | |
| 4793 | 5102 | <source>내부 스팀 불림 진행 중입니다.</source> |
| 4794 | 5103 | <translation>Inside steam macerating is in progress.</translation> |
| 4795 | 5104 | </message> |
| 4796 | 5105 | <message> |
| 4797 | - <location filename="washwindow.cpp" line="226"/> | |
| 5106 | + <location filename="washwindow.cpp" line="228"/> | |
| 4798 | 5107 | <source>내부 강 세척 진행 중입니다.</source> |
| 4799 | 5108 | <translation>Inside strong cleaning is in progress.</translation> |
| 4800 | 5109 | </message> |
| 4801 | 5110 | <message> |
| 4802 | - <location filename="washwindow.cpp" line="229"/> | |
| 5111 | + <location filename="washwindow.cpp" line="231"/> | |
| 4803 | 5112 | <source>내부 상부 세척 진행 중입니다.</source> |
| 4804 | 5113 | <translation>Inside upper part cleaning is in progress.</translation> |
| 4805 | 5114 | </message> |
| 4806 | 5115 | <message> |
| 4807 | - <location filename="washwindow.cpp" line="232"/> | |
| 5116 | + <location filename="washwindow.cpp" line="234"/> | |
| 4808 | 5117 | <source>내부 스팀 세척 진행 중입니다.</source> |
| 4809 | 5118 | <translation>Inside steam cleaning is in progress.</translation> |
| 4810 | 5119 | </message> |
| 4811 | 5120 | <message> |
| 4812 | - <location filename="washwindow.cpp" line="235"/> | |
| 5121 | + <location filename="washwindow.cpp" line="237"/> | |
| 4813 | 5122 | <source>세척 종료 진행 중입니다.</source> |
| 4814 | 5123 | <translation>Cleaning is being finished.</translation> |
| 4815 | 5124 | </message> |
| 4816 | 5125 | <message> |
| 4817 | - <location filename="washwindow.cpp" line="238"/> | |
| 5126 | + <location filename="washwindow.cpp" line="240"/> | |
| 4818 | 5127 | <source>세제 세척수 만들기 진행 중입니다.</source> |
| 4819 | 5128 | <translation>Detergent cleaning water making is in progress.</translation> |
| 4820 | 5129 | </message> |
| 4821 | 5130 | <message> |
| 4822 | - <location filename="washwindow.cpp" line="241"/> | |
| 5131 | + <location filename="washwindow.cpp" line="243"/> | |
| 4823 | 5132 | <source>세제 세척수 헹굼 진행 중입니다.</source> |
| 4824 | 5133 | <translation>Detergent cleaning water rinsing is in progress.</translation> |
| 4825 | 5134 | </message> |
| 4826 | 5135 | <message> |
| 4827 | - <location filename="washwindow.cpp" line="244"/> | |
| 5136 | + <location filename="washwindow.cpp" line="246"/> | |
| 4828 | 5137 | <source>하부 탱크 세척수 만들기 진행 중입니다.</source> |
| 4829 | 5138 | <translation>Lower tank cleaning water making is in progress.</translation> |
| 4830 | 5139 | </message> |
| 4831 | 5140 | <message> |
| 4832 | - <location filename="washwindow.cpp" line="355"/> | |
| 5141 | + <location filename="washwindow.cpp" line="357"/> | |
| 4833 | 5142 | <source>완료될 때까지 문을 열지 마세요. |
| 4834 | 5143 | 제품 내부의 자동 세척 기능을 실행 중입니다.</source> |
| 4835 | 5144 | <translation type="unfinished"></translation> |
| 4836 | 5145 | </message> |
| 4837 | 5146 | <message> |
| 4838 | - <location filename="washwindow.cpp" line="409"/> | |
| 4839 | - <location filename="washwindow.cpp" line="455"/> | |
| 5147 | + <location filename="washwindow.cpp" line="413"/> | |
| 5148 | + <location filename="washwindow.cpp" line="463"/> | |
| 4840 | 5149 | <source>세척이 종료되었습니다</source> |
| 4841 | 5150 | <translation>Cleaning is finished</translation> |
| 4842 | 5151 | </message> | ... | ... |
app/gui/oven_control/lang_zh.ts
| ... | ... | @@ -14,13 +14,13 @@ |
| 14 | 14 | <translation>校正</translation> |
| 15 | 15 | </message> |
| 16 | 16 | <message> |
| 17 | - <location filename="adjustmentwindow.cpp" line="32"/> | |
| 17 | + <location filename="adjustmentwindow.cpp" line="33"/> | |
| 18 | 18 | <source>모든 설정 값을 공장(출고)초기화 |
| 19 | 19 | 값으로 변경 하시겠습니까?</source> |
| 20 | 20 | <translation>是否所有设定值都更改为工厂(出库)初始化值吗?</translation> |
| 21 | 21 | </message> |
| 22 | 22 | <message> |
| 23 | - <location filename="adjustmentwindow.cpp" line="98"/> | |
| 23 | + <location filename="adjustmentwindow.cpp" line="99"/> | |
| 24 | 24 | <source>테스트를 완료하였습니다.</source> |
| 25 | 25 | <translation>经测试.</translation> |
| 26 | 26 | </message> |
| ... | ... | @@ -118,7 +118,7 @@ |
| 118 | 118 | <translation>蒸汽</translation> |
| 119 | 119 | </message> |
| 120 | 120 | <message> |
| 121 | - <location filename="autocookconfigwindow.cpp" line="387"/> | |
| 121 | + <location filename="autocookconfigwindow.cpp" line="388"/> | |
| 122 | 122 | <source>즐겨찾기 항목에 추가하시겠습니까?</source> |
| 123 | 123 | <translation>添加到收藏夹项目吗?</translation> |
| 124 | 124 | </message> |
| ... | ... | @@ -184,81 +184,81 @@ |
| 184 | 184 | <translation>后续课程选项</translation> |
| 185 | 185 | </message> |
| 186 | 186 | <message> |
| 187 | - <location filename="autocookwindow.cpp" line="510"/> | |
| 187 | + <location filename="autocookwindow.cpp" line="513"/> | |
| 188 | 188 | <source>중심 온도계 삽입</source> |
| 189 | 189 | <translation>中心温度计插入</translation> |
| 190 | 190 | </message> |
| 191 | 191 | <message> |
| 192 | - <location filename="autocookwindow.cpp" line="517"/> | |
| 192 | + <location filename="autocookwindow.cpp" line="520"/> | |
| 193 | 193 | <source>식재료 적재</source> |
| 194 | 194 | <translation>食材装载</translation> |
| 195 | 195 | </message> |
| 196 | 196 | <message> |
| 197 | - <location filename="autocookwindow.cpp" line="529"/> | |
| 197 | + <location filename="autocookwindow.cpp" line="532"/> | |
| 198 | 198 | <source>자르기</source> |
| 199 | 199 | <translation>裁剪</translation> |
| 200 | 200 | </message> |
| 201 | 201 | <message> |
| 202 | - <location filename="autocookwindow.cpp" line="537"/> | |
| 202 | + <location filename="autocookwindow.cpp" line="540"/> | |
| 203 | 203 | <source>물 붓기</source> |
| 204 | 204 | <translation>灌水</translation> |
| 205 | 205 | </message> |
| 206 | 206 | <message> |
| 207 | - <location filename="autocookwindow.cpp" line="880"/> | |
| 208 | - <location filename="autocookwindow.cpp" line="892"/> | |
| 209 | - <location filename="autocookwindow.cpp" line="931"/> | |
| 210 | - <location filename="autocookwindow.cpp" line="943"/> | |
| 211 | - <location filename="autocookwindow.cpp" line="955"/> | |
| 207 | + <location filename="autocookwindow.cpp" line="890"/> | |
| 208 | + <location filename="autocookwindow.cpp" line="902"/> | |
| 209 | + <location filename="autocookwindow.cpp" line="941"/> | |
| 210 | + <location filename="autocookwindow.cpp" line="953"/> | |
| 211 | + <location filename="autocookwindow.cpp" line="965"/> | |
| 212 | 212 | <source>문을 닫아주세요</source> |
| 213 | 213 | <translation>请把门关上</translation> |
| 214 | 214 | </message> |
| 215 | 215 | <message> |
| 216 | - <location filename="autocookwindow.cpp" line="880"/> | |
| 216 | + <location filename="autocookwindow.cpp" line="890"/> | |
| 217 | 217 | <source>조리 중 문 열림 시간 모니터링 1단계</source> |
| 218 | 218 | <translation>烹饪中门打开的时间监测第一阶段</translation> |
| 219 | 219 | </message> |
| 220 | 220 | <message> |
| 221 | - <location filename="autocookwindow.cpp" line="892"/> | |
| 221 | + <location filename="autocookwindow.cpp" line="902"/> | |
| 222 | 222 | <source>조리 중 문 열림 시간 모니터링 2단계</source> |
| 223 | 223 | <translation>烹饪中门打开的时间监测第二阶段</translation> |
| 224 | 224 | </message> |
| 225 | 225 | <message> |
| 226 | - <location filename="autocookwindow.cpp" line="904"/> | |
| 226 | + <location filename="autocookwindow.cpp" line="914"/> | |
| 227 | 227 | <source>문이 오래 열려있어 조리가 취소되었습니다</source> |
| 228 | 228 | <translation>因为长时间开着门烹饪被取消了</translation> |
| 229 | 229 | </message> |
| 230 | 230 | <message> |
| 231 | - <location filename="autocookwindow.cpp" line="904"/> | |
| 231 | + <location filename="autocookwindow.cpp" line="914"/> | |
| 232 | 232 | <source>조리 중 문 열림 시간 모니터링 3단계</source> |
| 233 | 233 | <translation>烹饪中门打开的时间监测第三阶段监测</translation> |
| 234 | 234 | </message> |
| 235 | 235 | <message> |
| 236 | - <location filename="autocookwindow.cpp" line="931"/> | |
| 236 | + <location filename="autocookwindow.cpp" line="941"/> | |
| 237 | 237 | <source>적재 중 문 열림 시간 모니터링 1단계</source> |
| 238 | 238 | <translation>监控装载中门打开的时间 第一阶段</translation> |
| 239 | 239 | </message> |
| 240 | 240 | <message> |
| 241 | - <location filename="autocookwindow.cpp" line="943"/> | |
| 241 | + <location filename="autocookwindow.cpp" line="953"/> | |
| 242 | 242 | <source>적재 중 문 열림 시간 모니터링 2단계</source> |
| 243 | 243 | <translation>监控装载中门打开的时间第二阶段</translation> |
| 244 | 244 | </message> |
| 245 | 245 | <message> |
| 246 | - <location filename="autocookwindow.cpp" line="955"/> | |
| 246 | + <location filename="autocookwindow.cpp" line="965"/> | |
| 247 | 247 | <source>적재 중 문 열림 시간 모니터링 3단계</source> |
| 248 | 248 | <translation>装载中门打开的时间监测第三阶段监测</translation> |
| 249 | 249 | </message> |
| 250 | 250 | <message> |
| 251 | - <location filename="autocookwindow.cpp" line="1074"/> | |
| 251 | + <location filename="autocookwindow.cpp" line="1084"/> | |
| 252 | 252 | <source>요리가 중단되고 환경 설정 모드로 들어갑니다. 진행할까요?</source> |
| 253 | 253 | <translation>中断烹饪后进入设定环境模式。是否进行?</translation> |
| 254 | 254 | </message> |
| 255 | 255 | <message> |
| 256 | - <location filename="autocookwindow.cpp" line="1086"/> | |
| 256 | + <location filename="autocookwindow.cpp" line="1096"/> | |
| 257 | 257 | <source>즐겨찾기 항목에 추가하시겠습니까?</source> |
| 258 | 258 | <translation>添加到收藏夹项目吗?</translation> |
| 259 | 259 | </message> |
| 260 | 260 | <message> |
| 261 | - <location filename="autocookwindow.cpp" line="1105"/> | |
| 261 | + <location filename="autocookwindow.cpp" line="1115"/> | |
| 262 | 262 | <source>요리가 중단되고 자동 세척 모드로 들어갑니다. 진행할까요?</source> |
| 263 | 263 | <translation>中断烹饪后进入设定自动清洗模式。是否进行?</translation> |
| 264 | 264 | </message> |
| ... | ... | @@ -389,15 +389,15 @@ |
| 389 | 389 | </message> |
| 390 | 390 | <message> |
| 391 | 391 | <location filename="config.h" line="29"/> |
| 392 | - <source>잔여시간</source> | |
| 392 | + <source>잔여시간<byte value="x0"/></source> | |
| 393 | 393 | <oldsource>잔여시간</oldsource> |
| 394 | - <translation>剩余时间</translation> | |
| 394 | + <translation type="unfinished">剩余时间</translation> | |
| 395 | 395 | </message> |
| 396 | 396 | <message> |
| 397 | 397 | <location filename="config.h" line="30"/> |
| 398 | - <source>타겟시간</source> | |
| 398 | + <source>타겟시간<byte value="x0"/></source> | |
| 399 | 399 | <oldsource>타겟시간</oldsource> |
| 400 | - <translation>目标时间</translation> | |
| 400 | + <translation type="unfinished">目标时间</translation> | |
| 401 | 401 | </message> |
| 402 | 402 | <message> |
| 403 | 403 | <location filename="config.h" line="34"/> |
| ... | ... | @@ -411,66 +411,86 @@ |
| 411 | 411 | </message> |
| 412 | 412 | <message> |
| 413 | 413 | <location filename="config.h" line="39"/> |
| 414 | - <source>설정취소</source> | |
| 414 | + <source>설정취소<byte value="x0"/></source> | |
| 415 | 415 | <oldsource>설정취소</oldsource> |
| 416 | - <translation>取消设定</translation> | |
| 416 | + <translation type="unfinished">取消设定</translation> | |
| 417 | 417 | </message> |
| 418 | 418 | <message> |
| 419 | 419 | <location filename="config.h" line="40"/> |
| 420 | - <source>설정</source> | |
| 420 | + <source>설정<byte value="x0"/></source> | |
| 421 | 421 | <oldsource>설정</oldsource> |
| 422 | - <translation>设定</translation> | |
| 422 | + <translation type="unfinished">设定</translation> | |
| 423 | 423 | </message> |
| 424 | 424 | <message> |
| 425 | 425 | <location filename="config.h" line="63"/> |
| 426 | - <source>비활성</source> | |
| 426 | + <source>비활성<byte value="x0"/></source> | |
| 427 | 427 | <oldsource>비활성</oldsource> |
| 428 | - <translation>非活化</translation> | |
| 428 | + <translation type="unfinished">非活化</translation> | |
| 429 | 429 | </message> |
| 430 | 430 | <message> |
| 431 | 431 | <location filename="config.h" line="64"/> |
| 432 | - <source>활성화</source> | |
| 432 | + <source>활성화<byte value="x0"/></source> | |
| 433 | 433 | <oldsource>활성화</oldsource> |
| 434 | - <translation>活化</translation> | |
| 434 | + <translation type="unfinished">活化</translation> | |
| 435 | 435 | </message> |
| 436 | 436 | <message> |
| 437 | 437 | <location filename="config.h" line="68"/> |
| 438 | - <source>끄기</source> | |
| 438 | + <source>끄기<byte value="x0"/></source> | |
| 439 | 439 | <oldsource>끄기</oldsource> |
| 440 | - <translation>关闭</translation> | |
| 440 | + <translation type="unfinished">关闭</translation> | |
| 441 | 441 | </message> |
| 442 | 442 | <message> |
| 443 | 443 | <location filename="config.h" line="69"/> |
| 444 | - <source>켜기</source> | |
| 444 | + <source>켜기<byte value="x0"/></source> | |
| 445 | 445 | <oldsource>켜기</oldsource> |
| 446 | - <translation>启动</translation> | |
| 446 | + <translation type="unfinished">启动</translation> | |
| 447 | 447 | </message> |
| 448 | 448 | <message> |
| 449 | + <location filename="config.cpp" line="492"/> | |
| 450 | + <location filename="config.cpp" line="493"/> | |
| 449 | 451 | <location filename="config.h" line="94"/> |
| 450 | 452 | <source>모 델 명</source> |
| 451 | 453 | <translation>模型名称</translation> |
| 452 | 454 | </message> |
| 453 | 455 | <message> |
| 456 | + <location filename="config.cpp" line="499"/> | |
| 457 | + <location filename="config.cpp" line="500"/> | |
| 454 | 458 | <location filename="config.h" line="95"/> |
| 455 | 459 | <source>제조일자</source> |
| 456 | 460 | <translation>制造日期</translation> |
| 457 | 461 | </message> |
| 458 | 462 | <message> |
| 463 | + <location filename="config.cpp" line="506"/> | |
| 464 | + <location filename="config.cpp" line="507"/> | |
| 459 | 465 | <location filename="config.h" line="96"/> |
| 460 | 466 | <source>제조국</source> |
| 461 | 467 | <translation>制造国</translation> |
| 462 | 468 | </message> |
| 463 | 469 | <message> |
| 470 | + <location filename="config.cpp" line="513"/> | |
| 471 | + <location filename="config.cpp" line="514"/> | |
| 464 | 472 | <location filename="config.h" line="97"/> |
| 465 | 473 | <source>제조사</source> |
| 466 | 474 | <translation>制造商</translation> |
| 467 | 475 | </message> |
| 468 | 476 | <message> |
| 477 | + <location filename="config.cpp" line="520"/> | |
| 478 | + <location filename="config.cpp" line="521"/> | |
| 469 | 479 | <location filename="config.h" line="98"/> |
| 470 | 480 | <source>제품번호</source> |
| 471 | 481 | <translation>产品序列号</translation> |
| 472 | 482 | </message> |
| 473 | 483 | <message> |
| 484 | + <location filename="config.cpp" line="561"/> | |
| 485 | + <source>모든 음향설정 값을 공장초기화 하시겠습니까?</source> | |
| 486 | + <translation type="unfinished"></translation> | |
| 487 | + </message> | |
| 488 | + <message> | |
| 489 | + <location filename="config.cpp" line="593"/> | |
| 490 | + <source>모든 프로그램을 삭제하시겠습니까?</source> | |
| 491 | + <translation type="unfinished"></translation> | |
| 492 | + </message> | |
| 493 | + <message> | |
| 474 | 494 | <location filename="config.h" line="99"/> |
| 475 | 495 | <source>소프트웨어 버전</source> |
| 476 | 496 | <translation>软件版本</translation> |
| ... | ... | @@ -498,269 +518,329 @@ |
| 498 | 518 | <translation>位置信息</translation> |
| 499 | 519 | </message> |
| 500 | 520 | <message> |
| 501 | - <location filename="config.h" line="333"/> | |
| 521 | + <location filename="config.h" line="116"/> | |
| 522 | + <source>전기식 10단</source> | |
| 523 | + <translation type="unfinished">电动式 10段</translation> | |
| 524 | + </message> | |
| 525 | + <message> | |
| 526 | + <location filename="config.h" line="117"/> | |
| 527 | + <source>전기식 20단</source> | |
| 528 | + <translation type="unfinished">电动式 20段</translation> | |
| 529 | + </message> | |
| 530 | + <message> | |
| 531 | + <location filename="config.h" line="118"/> | |
| 532 | + <source>전기식 24단</source> | |
| 533 | + <translation type="unfinished">电动式 24段</translation> | |
| 534 | + </message> | |
| 535 | + <message> | |
| 536 | + <location filename="config.h" line="119"/> | |
| 537 | + <source>전기식 40단</source> | |
| 538 | + <translation type="unfinished">电动式 40段</translation> | |
| 539 | + </message> | |
| 540 | + <message> | |
| 541 | + <location filename="config.h" line="120"/> | |
| 542 | + <source>가스식 10단 LPG</source> | |
| 543 | + <translation type="unfinished">燃气式 10段 LPG</translation> | |
| 544 | + </message> | |
| 545 | + <message> | |
| 546 | + <location filename="config.h" line="121"/> | |
| 547 | + <source>가스식 20단 LPG</source> | |
| 548 | + <translation type="unfinished">燃气式 20段 LPG</translation> | |
| 549 | + </message> | |
| 550 | + <message> | |
| 551 | + <location filename="config.h" line="122"/> | |
| 552 | + <source>가스식 24단 LPG</source> | |
| 553 | + <translation type="unfinished">燃气式 24段 LPG</translation> | |
| 554 | + </message> | |
| 555 | + <message> | |
| 556 | + <location filename="config.h" line="123"/> | |
| 557 | + <source>가스식 40단 LPG</source> | |
| 558 | + <translation type="unfinished">燃气式 40段 LPG</translation> | |
| 559 | + </message> | |
| 560 | + <message> | |
| 561 | + <location filename="config.h" line="124"/> | |
| 562 | + <source>가스식 10단 LNG</source> | |
| 563 | + <translation type="unfinished">燃气式 10段 LNG</translation> | |
| 564 | + </message> | |
| 565 | + <message> | |
| 566 | + <location filename="config.h" line="125"/> | |
| 567 | + <source>가스식 20단 LNG</source> | |
| 568 | + <translation type="unfinished">燃气式 20段 LNG</translation> | |
| 569 | + </message> | |
| 570 | + <message> | |
| 571 | + <location filename="config.h" line="126"/> | |
| 572 | + <source>가스식 24단 LNG</source> | |
| 573 | + <translation type="unfinished">燃气式 24段 LNG</translation> | |
| 574 | + </message> | |
| 575 | + <message> | |
| 576 | + <location filename="config.h" line="127"/> | |
| 577 | + <source>가스식 40단 LNG</source> | |
| 578 | + <translation type="unfinished">燃气式 40段 LNG</translation> | |
| 579 | + </message> | |
| 580 | + <message> | |
| 581 | + <location filename="config.h" line="357"/> | |
| 502 | 582 | <source>%1 분</source> |
| 503 | 583 | <translation>%1分</translation> |
| 504 | 584 | </message> |
| 505 | 585 | <message> |
| 506 | - <location filename="config.h" line="343"/> | |
| 586 | + <location filename="config.h" line="367"/> | |
| 507 | 587 | <source>%1번</source> |
| 508 | 588 | <translation>%1号</translation> |
| 509 | 589 | </message> |
| 510 | 590 | <message> |
| 511 | - <location filename="config.h" line="349"/> | |
| 591 | + <location filename="config.h" line="373"/> | |
| 512 | 592 | <source>공장초기화</source> |
| 513 | 593 | <translation>工厂初始化</translation> |
| 514 | 594 | </message> |
| 515 | 595 | <message> |
| 516 | - <location filename="config.h" line="350"/> | |
| 596 | + <location filename="config.h" line="374"/> | |
| 517 | 597 | <source>USB 삽입</source> |
| 518 | 598 | <translation>USB插入</translation> |
| 519 | 599 | </message> |
| 520 | 600 | <message> |
| 521 | - <location filename="config.h" line="355"/> | |
| 601 | + <location filename="config.h" line="379"/> | |
| 522 | 602 | <source>초기화</source> |
| 523 | 603 | <translation>初始化</translation> |
| 524 | 604 | </message> |
| 525 | 605 | <message> |
| 526 | - <location filename="config.h" line="366"/> | |
| 527 | - <location filename="config.h" line="367"/> | |
| 606 | + <location filename="config.h" line="390"/> | |
| 607 | + <location filename="config.h" line="391"/> | |
| 528 | 608 | <source>%1단계</source> |
| 529 | 609 | <translation>%1阶段</translation> |
| 530 | 610 | </message> |
| 531 | 611 | <message> |
| 532 | - <location filename="config.h" line="368"/> | |
| 612 | + <location filename="config.h" line="392"/> | |
| 533 | 613 | <source>정보확인</source> |
| 534 | 614 | <translation>信息确认</translation> |
| 535 | 615 | </message> |
| 536 | 616 | <message> |
| 537 | - <location filename="config.h" line="371"/> | |
| 617 | + <location filename="config.h" line="395"/> | |
| 538 | 618 | <source>헹굼</source> |
| 539 | 619 | <translation>漂洗</translation> |
| 540 | 620 | </message> |
| 541 | 621 | <message> |
| 542 | - <location filename="config.h" line="373"/> | |
| 622 | + <location filename="config.h" line="397"/> | |
| 543 | 623 | <source>엔지니어모드 진입</source> |
| 544 | 624 | <translation>语言设定</translation> |
| 545 | 625 | </message> |
| 546 | 626 | <message> |
| 547 | - <location filename="config.h" line="377"/> | |
| 627 | + <location filename="config.h" line="401"/> | |
| 548 | 628 | <source>언어설정</source> |
| 549 | 629 | <translation>语言设定</translation> |
| 550 | 630 | </message> |
| 551 | 631 | <message> |
| 552 | - <location filename="config.h" line="378"/> | |
| 632 | + <location filename="config.h" line="402"/> | |
| 553 | 633 | <source>날짜와 시간</source> |
| 554 | 634 | <translation>日期和时间 </translation> |
| 555 | 635 | </message> |
| 556 | 636 | <message> |
| 557 | - <location filename="config.h" line="379"/> | |
| 637 | + <location filename="config.h" line="403"/> | |
| 558 | 638 | <source>온도단위</source> |
| 559 | 639 | <translation>温度单位</translation> |
| 560 | 640 | </message> |
| 561 | 641 | <message> |
| 562 | - <location filename="config.h" line="380"/> | |
| 642 | + <location filename="config.h" line="404"/> | |
| 563 | 643 | <source>화면밝기</source> |
| 564 | 644 | <translation>屏幕亮度</translation> |
| 565 | 645 | </message> |
| 566 | 646 | <message> |
| 567 | - <location filename="config.h" line="381"/> | |
| 647 | + <location filename="config.h" line="405"/> | |
| 568 | 648 | <source>응축식 후드의 정지지연</source> |
| 569 | 649 | <translation>冷凝式喉头的停止延迟</translation> |
| 570 | 650 | </message> |
| 571 | 651 | <message> |
| 572 | - <location filename="config.h" line="382"/> | |
| 652 | + <location filename="config.h" line="406"/> | |
| 573 | 653 | <source>일품요리용 접시무게</source> |
| 574 | 654 | <translation>单品烹饪用的盘子重量</translation> |
| 575 | 655 | </message> |
| 576 | 656 | <message> |
| 577 | - <location filename="config.h" line="383"/> | |
| 657 | + <location filename="config.h" line="407"/> | |
| 578 | 658 | <source>연회용 접시무게</source> |
| 579 | 659 | <translation>宴会用的盘子重量</translation> |
| 580 | 660 | </message> |
| 581 | 661 | <message> |
| 582 | - <location filename="config.h" line="384"/> | |
| 662 | + <location filename="config.h" line="408"/> | |
| 583 | 663 | <source>ILC 조리선반 개수</source> |
| 584 | 664 | <translation>ILC烹饪架数</translation> |
| 585 | 665 | </message> |
| 586 | 666 | <message> |
| 587 | - <location filename="config.h" line="385"/> | |
| 667 | + <location filename="config.h" line="409"/> | |
| 588 | 668 | <source>ILC 조리선반 순서</source> |
| 589 | 669 | <translation>ILC烹饪架顺序 </translation> |
| 590 | 670 | </message> |
| 591 | 671 | <message> |
| 592 | - <location filename="config.h" line="386"/> | |
| 593 | - <location filename="config.h" line="411"/> | |
| 672 | + <location filename="config.h" line="410"/> | |
| 673 | + <location filename="config.h" line="435"/> | |
| 594 | 674 | <source>ILC 조리 온습도 대기시간</source> |
| 595 | 675 | <translation>ILC烹调温度和湿度等待时间</translation> |
| 596 | 676 | </message> |
| 597 | 677 | <message> |
| 598 | - <location filename="config.h" line="387"/> | |
| 678 | + <location filename="config.h" line="411"/> | |
| 599 | 679 | <source>조리시간 포맷</source> |
| 600 | 680 | <translation>烹调时间格式</translation> |
| 601 | 681 | </message> |
| 602 | 682 | <message> |
| 603 | - <location filename="config.h" line="388"/> | |
| 683 | + <location filename="config.h" line="412"/> | |
| 604 | 684 | <source>실시간 단위 설정</source> |
| 605 | 685 | <translation>实时单位设定</translation> |
| 606 | 686 | </message> |
| 607 | 687 | <message> |
| 608 | - <location filename="config.h" line="389"/> | |
| 688 | + <location filename="config.h" line="413"/> | |
| 609 | 689 | <source>잔여시간 시점변경설정</source> |
| 610 | 690 | <translation>更改设定剩余时间时刻</translation> |
| 611 | 691 | </message> |
| 612 | 692 | <message> |
| 613 | - <location filename="config.h" line="390"/> | |
| 693 | + <location filename="config.h" line="414"/> | |
| 614 | 694 | <source>마스터 볼륨</source> |
| 615 | 695 | <translation>主控音量</translation> |
| 616 | 696 | </message> |
| 617 | 697 | <message> |
| 618 | - <location filename="config.h" line="391"/> | |
| 698 | + <location filename="config.h" line="415"/> | |
| 619 | 699 | <source>키패드 소리 - 1</source> |
| 620 | 700 | <translation>键盘的声音- 1</translation> |
| 621 | 701 | </message> |
| 622 | 702 | <message> |
| 623 | - <location filename="config.h" line="392"/> | |
| 703 | + <location filename="config.h" line="416"/> | |
| 624 | 704 | <source>키패드 볼륨 </source> |
| 625 | 705 | <translation>键盘音量</translation> |
| 626 | 706 | </message> |
| 627 | 707 | <message> |
| 628 | - <location filename="config.h" line="393"/> | |
| 708 | + <location filename="config.h" line="417"/> | |
| 629 | 709 | <source>적재/실행 요청</source> |
| 630 | 710 | <translation>装载/执行请求</translation> |
| 631 | 711 | </message> |
| 632 | 712 | <message> |
| 633 | - <location filename="config.h" line="394"/> | |
| 713 | + <location filename="config.h" line="418"/> | |
| 634 | 714 | <source>프로그램 단계 종료</source> |
| 635 | 715 | <translation>项目阶段终止</translation> |
| 636 | 716 | </message> |
| 637 | 717 | <message> |
| 638 | - <location filename="config.h" line="395"/> | |
| 718 | + <location filename="config.h" line="419"/> | |
| 639 | 719 | <source>조리시간 종료</source> |
| 640 | 720 | <translation>烹调时间结束</translation> |
| 641 | 721 | </message> |
| 642 | 722 | <message> |
| 643 | - <location filename="config.h" line="396"/> | |
| 723 | + <location filename="config.h" line="420"/> | |
| 644 | 724 | <source>과정 중단/오류 식별</source> |
| 645 | 725 | <translation>过程中断/错误识别</translation> |
| 646 | 726 | </message> |
| 647 | 727 | <message> |
| 648 | - <location filename="config.h" line="397"/> | |
| 728 | + <location filename="config.h" line="421"/> | |
| 649 | 729 | <source>음향설정 초기화</source> |
| 650 | 730 | <translation>音响设定初始化</translation> |
| 651 | 731 | </message> |
| 652 | 732 | <message> |
| 653 | - <location filename="config.h" line="398"/> | |
| 733 | + <location filename="config.h" line="422"/> | |
| 654 | 734 | <source>HACCP 데이터 다운로드</source> |
| 655 | 735 | <translation>HACCP数据下载</translation> |
| 656 | 736 | </message> |
| 657 | 737 | <message> |
| 658 | - <location filename="config.h" line="399"/> | |
| 738 | + <location filename="config.h" line="423"/> | |
| 659 | 739 | <source>인포 데이터 다운로드</source> |
| 660 | 740 | <translation>信息数据下载</translation> |
| 661 | 741 | </message> |
| 662 | 742 | <message> |
| 663 | - <location filename="config.h" line="400"/> | |
| 743 | + <location filename="config.h" line="424"/> | |
| 664 | 744 | <source>서비스 데이터 다운로드</source> |
| 665 | 745 | <translation>服务数据下载</translation> |
| 666 | 746 | </message> |
| 667 | 747 | <message> |
| 668 | - <location filename="config.h" line="401"/> | |
| 748 | + <location filename="config.h" line="425"/> | |
| 669 | 749 | <source>프로그램 다운로드</source> |
| 670 | 750 | <translation>程序下载</translation> |
| 671 | 751 | </message> |
| 672 | 752 | <message> |
| 673 | - <location filename="config.h" line="402"/> | |
| 753 | + <location filename="config.h" line="426"/> | |
| 674 | 754 | <source>프로그램 업로드</source> |
| 675 | 755 | <translation>程序上传</translation> |
| 676 | 756 | </message> |
| 677 | 757 | <message> |
| 678 | - <location filename="config.h" line="403"/> | |
| 758 | + <location filename="config.h" line="427"/> | |
| 679 | 759 | <source>모든 프로그램 삭제</source> |
| 680 | 760 | <translation>删除所有的程序</translation> |
| 681 | 761 | </message> |
| 682 | 762 | <message> |
| 683 | - <location filename="config.h" line="404"/> | |
| 763 | + <location filename="config.h" line="428"/> | |
| 684 | 764 | <source>IP 주소</source> |
| 685 | 765 | <translation>IP地址</translation> |
| 686 | 766 | </message> |
| 687 | 767 | <message> |
| 688 | - <location filename="config.h" line="405"/> | |
| 768 | + <location filename="config.h" line="429"/> | |
| 689 | 769 | <source>IP 게이트웨이</source> |
| 690 | 770 | <translation>IP网关</translation> |
| 691 | 771 | </message> |
| 692 | 772 | <message> |
| 693 | - <location filename="config.h" line="406"/> | |
| 773 | + <location filename="config.h" line="430"/> | |
| 694 | 774 | <source>IP 넷마스크</source> |
| 695 | 775 | <translation>IP子网掩码</translation> |
| 696 | 776 | </message> |
| 697 | 777 | <message> |
| 698 | - <location filename="config.h" line="407"/> | |
| 778 | + <location filename="config.h" line="431"/> | |
| 699 | 779 | <source>기본설정 다운로드</source> |
| 700 | 780 | <translation>基本设定下载</translation> |
| 701 | 781 | </message> |
| 702 | 782 | <message> |
| 703 | - <location filename="config.h" line="408"/> | |
| 783 | + <location filename="config.h" line="432"/> | |
| 704 | 784 | <source>기본설정 업로드</source> |
| 705 | 785 | <translation>基本设定上传</translation> |
| 706 | 786 | </message> |
| 707 | 787 | <message> |
| 708 | - <location filename="config.h" line="409"/> | |
| 788 | + <location filename="config.h" line="433"/> | |
| 709 | 789 | <source>하프에너지</source> |
| 710 | 790 | <translation>半能量</translation> |
| 711 | 791 | </message> |
| 712 | 792 | <message> |
| 713 | - <location filename="config.h" line="410"/> | |
| 793 | + <location filename="config.h" line="434"/> | |
| 714 | 794 | <source>화면 밝기 자동 감소</source> |
| 715 | 795 | <translation>屏幕亮度自动减少</translation> |
| 716 | 796 | </message> |
| 717 | 797 | <message> |
| 718 | - <location filename="config.h" line="412"/> | |
| 798 | + <location filename="config.h" line="436"/> | |
| 719 | 799 | <source>적재중 대기 시간</source> |
| 720 | 800 | <translation>装载中等待的时间</translation> |
| 721 | 801 | </message> |
| 722 | 802 | <message> |
| 723 | - <location filename="config.h" line="413"/> | |
| 803 | + <location filename="config.h" line="437"/> | |
| 724 | 804 | <source>의무 세척과정</source> |
| 725 | 805 | <translation>义务洗涤过程</translation> |
| 726 | 806 | </message> |
| 727 | 807 | <message> |
| 728 | - <location filename="config.h" line="414"/> | |
| 808 | + <location filename="config.h" line="438"/> | |
| 729 | 809 | <source>적재 중 문열림 시간 모니터링</source> |
| 730 | 810 | <translation>监控装载中门打开的时间</translation> |
| 731 | 811 | </message> |
| 732 | 812 | <message> |
| 733 | - <location filename="config.h" line="415"/> | |
| 813 | + <location filename="config.h" line="439"/> | |
| 734 | 814 | <source>조리 중 문열림 시간 모니터링</source> |
| 735 | 815 | <translation>监控烹饪中门打开的时间</translation> |
| 736 | 816 | </message> |
| 737 | 817 | <message> |
| 738 | - <location filename="config.h" line="416"/> | |
| 818 | + <location filename="config.h" line="440"/> | |
| 739 | 819 | <source>제품유형/소프트웨어에 관한 정보</source> |
| 740 | 820 | <translation>产品类型/软件有关的信息</translation> |
| 741 | 821 | </message> |
| 742 | 822 | <message> |
| 743 | - <location filename="config.h" line="417"/> | |
| 823 | + <location filename="config.h" line="441"/> | |
| 744 | 824 | <source>핫라인-쉐프</source> |
| 745 | 825 | <translation>热线-主厨</translation> |
| 746 | 826 | </message> |
| 747 | 827 | <message> |
| 748 | - <location filename="config.h" line="418"/> | |
| 828 | + <location filename="config.h" line="442"/> | |
| 749 | 829 | <source>핫라인-서비스</source> |
| 750 | 830 | <translation>热线-主厨</translation> |
| 751 | 831 | </message> |
| 752 | 832 | <message> |
| 753 | - <location filename="config.h" line="419"/> | |
| 833 | + <location filename="config.h" line="443"/> | |
| 754 | 834 | <source>증기 발생기 헹굼</source> |
| 755 | 835 | <translation>蒸汽发生器漂洗</translation> |
| 756 | 836 | </message> |
| 757 | 837 | <message> |
| 758 | - <location filename="config.h" line="420"/> | |
| 838 | + <location filename="config.h" line="444"/> | |
| 759 | 839 | <source>시연모드</source> |
| 760 | 840 | <translation>试演模式</translation> |
| 761 | 841 | </message> |
| 762 | 842 | <message> |
| 763 | - <location filename="config.h" line="421"/> | |
| 843 | + <location filename="config.h" line="445"/> | |
| 764 | 844 | <source>서비스단계(엔지니어모드)</source> |
| 765 | 845 | <translation>服务阶段(工程模式)</translation> |
| 766 | 846 | </message> |
| ... | ... | @@ -1058,114 +1138,102 @@ |
| 1058 | 1138 | <translation>确认</translation> |
| 1059 | 1139 | </message> |
| 1060 | 1140 | <message> |
| 1061 | - <location filename="configinfodlg.cpp" line="13"/> | |
| 1062 | 1141 | <source>전기식 10단</source> |
| 1063 | - <translation type="unfinished">电动式 10段</translation> | |
| 1142 | + <translation type="obsolete">电动式 10段</translation> | |
| 1064 | 1143 | </message> |
| 1065 | 1144 | <message> |
| 1066 | - <location filename="configinfodlg.cpp" line="14"/> | |
| 1067 | 1145 | <source>전기식 20단</source> |
| 1068 | - <translation>电动式 20段</translation> | |
| 1146 | + <translation type="vanished">电动式 20段</translation> | |
| 1069 | 1147 | </message> |
| 1070 | 1148 | <message> |
| 1071 | - <location filename="configinfodlg.cpp" line="15"/> | |
| 1072 | 1149 | <source>전기식 24단</source> |
| 1073 | - <translation>电动式 24段</translation> | |
| 1150 | + <translation type="vanished">电动式 24段</translation> | |
| 1074 | 1151 | </message> |
| 1075 | 1152 | <message> |
| 1076 | - <location filename="configinfodlg.cpp" line="16"/> | |
| 1077 | 1153 | <source>전기식 40단</source> |
| 1078 | - <translation>电动式 40段</translation> | |
| 1154 | + <translation type="vanished">电动式 40段</translation> | |
| 1079 | 1155 | </message> |
| 1080 | 1156 | <message> |
| 1081 | - <location filename="configinfodlg.cpp" line="17"/> | |
| 1082 | 1157 | <source>가스식 10단 LPG</source> |
| 1083 | - <translation>燃气式 10段 LPG</translation> | |
| 1158 | + <translation type="vanished">燃气式 10段 LPG</translation> | |
| 1084 | 1159 | </message> |
| 1085 | 1160 | <message> |
| 1086 | - <location filename="configinfodlg.cpp" line="18"/> | |
| 1087 | 1161 | <source>가스식 20단 LPG</source> |
| 1088 | - <translation>燃气式 20段 LPG</translation> | |
| 1162 | + <translation type="vanished">燃气式 20段 LPG</translation> | |
| 1089 | 1163 | </message> |
| 1090 | 1164 | <message> |
| 1091 | - <location filename="configinfodlg.cpp" line="19"/> | |
| 1092 | 1165 | <source>가스식 24단 LPG</source> |
| 1093 | - <translation>燃气式 24段 LPG</translation> | |
| 1166 | + <translation type="vanished">燃气式 24段 LPG</translation> | |
| 1094 | 1167 | </message> |
| 1095 | 1168 | <message> |
| 1096 | - <location filename="configinfodlg.cpp" line="20"/> | |
| 1097 | 1169 | <source>가스식 40단 LPG</source> |
| 1098 | - <translation>燃气式 40段 LPG</translation> | |
| 1170 | + <translation type="vanished">燃气式 40段 LPG</translation> | |
| 1099 | 1171 | </message> |
| 1100 | 1172 | <message> |
| 1101 | - <location filename="configinfodlg.cpp" line="21"/> | |
| 1102 | 1173 | <source>가스식 10단 LNG</source> |
| 1103 | - <translation>燃气式 10段 LNG</translation> | |
| 1174 | + <translation type="vanished">燃气式 10段 LNG</translation> | |
| 1104 | 1175 | </message> |
| 1105 | 1176 | <message> |
| 1106 | - <location filename="configinfodlg.cpp" line="22"/> | |
| 1107 | 1177 | <source>가스식 20단 LNG</source> |
| 1108 | - <translation>燃气式 20段 LNG</translation> | |
| 1178 | + <translation type="vanished">燃气式 20段 LNG</translation> | |
| 1109 | 1179 | </message> |
| 1110 | 1180 | <message> |
| 1111 | - <location filename="configinfodlg.cpp" line="23"/> | |
| 1112 | 1181 | <source>가스식 24단 LNG</source> |
| 1113 | - <translation>燃气式 24段 LNG</translation> | |
| 1182 | + <translation type="vanished">燃气式 24段 LNG</translation> | |
| 1114 | 1183 | </message> |
| 1115 | 1184 | <message> |
| 1116 | - <location filename="configinfodlg.cpp" line="24"/> | |
| 1117 | 1185 | <source>가스식 40단 LNG</source> |
| 1118 | - <translation>燃气式 40段 LNG</translation> | |
| 1186 | + <translation type="vanished">燃气式 40段 LNG</translation> | |
| 1119 | 1187 | </message> |
| 1120 | 1188 | <message> |
| 1121 | - <location filename="configinfodlg.cpp" line="112"/> | |
| 1189 | + <location filename="configinfodlg.cpp" line="89"/> | |
| 1122 | 1190 | <source>모 델 명</source> |
| 1123 | 1191 | <translation>模型名称</translation> |
| 1124 | 1192 | </message> |
| 1125 | 1193 | <message> |
| 1126 | - <location filename="configinfodlg.cpp" line="113"/> | |
| 1194 | + <location filename="configinfodlg.cpp" line="90"/> | |
| 1127 | 1195 | <source>제조일자</source> |
| 1128 | 1196 | <translation type="unfinished">制造日期</translation> |
| 1129 | 1197 | </message> |
| 1130 | 1198 | <message> |
| 1131 | - <location filename="configinfodlg.cpp" line="114"/> | |
| 1199 | + <location filename="configinfodlg.cpp" line="91"/> | |
| 1132 | 1200 | <source>제조국</source> |
| 1133 | 1201 | <translation>制造国</translation> |
| 1134 | 1202 | </message> |
| 1135 | 1203 | <message> |
| 1136 | - <location filename="configinfodlg.cpp" line="115"/> | |
| 1204 | + <location filename="configinfodlg.cpp" line="92"/> | |
| 1137 | 1205 | <source>제조사</source> |
| 1138 | 1206 | <translation>制造商</translation> |
| 1139 | 1207 | </message> |
| 1140 | 1208 | <message> |
| 1141 | - <location filename="configinfodlg.cpp" line="116"/> | |
| 1209 | + <location filename="configinfodlg.cpp" line="93"/> | |
| 1142 | 1210 | <source>제품번호</source> |
| 1143 | 1211 | <translation>产品序列号</translation> |
| 1144 | 1212 | </message> |
| 1145 | 1213 | <message> |
| 1146 | - <location filename="configinfodlg.cpp" line="117"/> | |
| 1214 | + <location filename="configinfodlg.cpp" line="94"/> | |
| 1147 | 1215 | <source>소프트웨어 버전</source> |
| 1148 | 1216 | <translation>软件版本</translation> |
| 1149 | 1217 | </message> |
| 1150 | 1218 | <message> |
| 1151 | - <location filename="configinfodlg.cpp" line="118"/> | |
| 1219 | + <location filename="configinfodlg.cpp" line="95"/> | |
| 1152 | 1220 | <source>현재모델</source> |
| 1153 | 1221 | <translation>现在模式</translation> |
| 1154 | 1222 | </message> |
| 1155 | 1223 | <message> |
| 1224 | + <location filename="configinfodlg.cpp" line="117"/> | |
| 1156 | 1225 | <location filename="configinfodlg.cpp" line="141"/> |
| 1157 | - <location filename="configinfodlg.cpp" line="165"/> | |
| 1158 | 1226 | <source>연 락 처</source> |
| 1159 | 1227 | <translation>联系方式</translation> |
| 1160 | 1228 | </message> |
| 1161 | 1229 | <message> |
| 1162 | - <location filename="configinfodlg.cpp" line="142"/> | |
| 1230 | + <location filename="configinfodlg.cpp" line="118"/> | |
| 1163 | 1231 | <source>이 름</source> |
| 1164 | 1232 | <translation>姓名</translation> |
| 1165 | 1233 | </message> |
| 1166 | 1234 | <message> |
| 1167 | - <location filename="configinfodlg.cpp" line="143"/> | |
| 1168 | - <location filename="configinfodlg.cpp" line="166"/> | |
| 1235 | + <location filename="configinfodlg.cpp" line="119"/> | |
| 1236 | + <location filename="configinfodlg.cpp" line="142"/> | |
| 1169 | 1237 | <source>위치정보</source> |
| 1170 | 1238 | <translation>位置信息</translation> |
| 1171 | 1239 | </message> |
| ... | ... | @@ -1529,8 +1597,8 @@ |
| 1529 | 1597 | <translation>服务</translation> |
| 1530 | 1598 | </message> |
| 1531 | 1599 | <message> |
| 1532 | - <location filename="configwindow.cpp" line="175"/> | |
| 1533 | - <location filename="configwindow.cpp" line="423"/> | |
| 1600 | + <location filename="configwindow.cpp" line="176"/> | |
| 1601 | + <location filename="configwindow.cpp" line="424"/> | |
| 1534 | 1602 | <source>현재 설정을 적용하시겠습니까?</source> |
| 1535 | 1603 | <translation>是否应用当前设定?</translation> |
| 1536 | 1604 | </message> |
| ... | ... | @@ -1879,10 +1947,10 @@ |
| 1879 | 1947 | <name>FileProcessDlg</name> |
| 1880 | 1948 | <message> |
| 1881 | 1949 | <location filename="fileprocessdlg.ui" line="100"/> |
| 1882 | - <location filename="fileprocessdlg.cpp" line="335"/> | |
| 1883 | - <location filename="fileprocessdlg.cpp" line="351"/> | |
| 1884 | - <location filename="fileprocessdlg.cpp" line="367"/> | |
| 1885 | - <location filename="fileprocessdlg.cpp" line="633"/> | |
| 1950 | + <location filename="fileprocessdlg.cpp" line="362"/> | |
| 1951 | + <location filename="fileprocessdlg.cpp" line="378"/> | |
| 1952 | + <location filename="fileprocessdlg.cpp" line="394"/> | |
| 1953 | + <location filename="fileprocessdlg.cpp" line="735"/> | |
| 1886 | 1954 | <source>남은 예상 시간 : 1초</source> |
| 1887 | 1955 | <translation>剩下的预计时间:1秒</translation> |
| 1888 | 1956 | </message> |
| ... | ... | @@ -1892,55 +1960,55 @@ |
| 1892 | 1960 | <translation>取消</translation> |
| 1893 | 1961 | </message> |
| 1894 | 1962 | <message> |
| 1895 | - <location filename="fileprocessdlg.cpp" line="292"/> | |
| 1963 | + <location filename="fileprocessdlg.cpp" line="319"/> | |
| 1896 | 1964 | <source>erro%1,</source> |
| 1897 | 1965 | <translation>误差%1,</translation> |
| 1898 | 1966 | </message> |
| 1899 | 1967 | <message> |
| 1900 | - <location filename="fileprocessdlg.cpp" line="326"/> | |
| 1901 | - <location filename="fileprocessdlg.cpp" line="342"/> | |
| 1902 | - <location filename="fileprocessdlg.cpp" line="358"/> | |
| 1968 | + <location filename="fileprocessdlg.cpp" line="353"/> | |
| 1969 | + <location filename="fileprocessdlg.cpp" line="369"/> | |
| 1970 | + <location filename="fileprocessdlg.cpp" line="385"/> | |
| 1903 | 1971 | <source>Gas Error History |
| 1904 | 1972 | </source> |
| 1905 | 1973 | <translation type="unfinished">气误差记录 |
| 1906 | 1974 | </translation> |
| 1907 | 1975 | </message> |
| 1908 | 1976 | <message> |
| 1909 | - <location filename="fileprocessdlg.cpp" line="327"/> | |
| 1910 | - <location filename="fileprocessdlg.cpp" line="343"/> | |
| 1911 | - <location filename="fileprocessdlg.cpp" line="359"/> | |
| 1912 | - <location filename="fileprocessdlg.cpp" line="375"/> | |
| 1977 | + <location filename="fileprocessdlg.cpp" line="354"/> | |
| 1978 | + <location filename="fileprocessdlg.cpp" line="370"/> | |
| 1979 | + <location filename="fileprocessdlg.cpp" line="386"/> | |
| 1980 | + <location filename="fileprocessdlg.cpp" line="402"/> | |
| 1913 | 1981 | <source>no,</source> |
| 1914 | 1982 | <translation>否,</translation> |
| 1915 | 1983 | </message> |
| 1916 | 1984 | <message> |
| 1917 | - <location filename="fileprocessdlg.cpp" line="327"/> | |
| 1918 | - <location filename="fileprocessdlg.cpp" line="343"/> | |
| 1919 | - <location filename="fileprocessdlg.cpp" line="359"/> | |
| 1920 | - <location filename="fileprocessdlg.cpp" line="375"/> | |
| 1985 | + <location filename="fileprocessdlg.cpp" line="354"/> | |
| 1986 | + <location filename="fileprocessdlg.cpp" line="370"/> | |
| 1987 | + <location filename="fileprocessdlg.cpp" line="386"/> | |
| 1988 | + <location filename="fileprocessdlg.cpp" line="402"/> | |
| 1921 | 1989 | <source>First Appearance,</source> |
| 1922 | 1990 | <translation>第一次出现,</translation> |
| 1923 | 1991 | </message> |
| 1924 | 1992 | <message> |
| 1925 | - <location filename="fileprocessdlg.cpp" line="327"/> | |
| 1926 | - <location filename="fileprocessdlg.cpp" line="343"/> | |
| 1927 | - <location filename="fileprocessdlg.cpp" line="359"/> | |
| 1928 | - <location filename="fileprocessdlg.cpp" line="375"/> | |
| 1993 | + <location filename="fileprocessdlg.cpp" line="354"/> | |
| 1994 | + <location filename="fileprocessdlg.cpp" line="370"/> | |
| 1995 | + <location filename="fileprocessdlg.cpp" line="386"/> | |
| 1996 | + <location filename="fileprocessdlg.cpp" line="402"/> | |
| 1929 | 1997 | <source>Counter,</source> |
| 1930 | 1998 | <translation>计数器,</translation> |
| 1931 | 1999 | </message> |
| 1932 | 2000 | <message> |
| 1933 | - <location filename="fileprocessdlg.cpp" line="327"/> | |
| 1934 | - <location filename="fileprocessdlg.cpp" line="343"/> | |
| 1935 | - <location filename="fileprocessdlg.cpp" line="359"/> | |
| 1936 | - <location filename="fileprocessdlg.cpp" line="375"/> | |
| 2001 | + <location filename="fileprocessdlg.cpp" line="354"/> | |
| 2002 | + <location filename="fileprocessdlg.cpp" line="370"/> | |
| 2003 | + <location filename="fileprocessdlg.cpp" line="386"/> | |
| 2004 | + <location filename="fileprocessdlg.cpp" line="402"/> | |
| 1937 | 2005 | <source>Last Appearance |
| 1938 | 2006 | </source> |
| 1939 | 2007 | <translation type="unfinished">最后出现 |
| 1940 | 2008 | </translation> |
| 1941 | 2009 | </message> |
| 1942 | 2010 | <message> |
| 1943 | - <location filename="fileprocessdlg.cpp" line="374"/> | |
| 2011 | + <location filename="fileprocessdlg.cpp" line="401"/> | |
| 1944 | 2012 | <source>Service Error History |
| 1945 | 2013 | |
| 1946 | 2014 | </source> |
| ... | ... | @@ -1949,193 +2017,203 @@ |
| 1949 | 2017 | </translation> |
| 1950 | 2018 | </message> |
| 1951 | 2019 | <message> |
| 1952 | - <location filename="fileprocessdlg.cpp" line="451"/> | |
| 1953 | - <location filename="fileprocessdlg.cpp" line="529"/> | |
| 1954 | - <location filename="fileprocessdlg.cpp" line="646"/> | |
| 1955 | - <location filename="fileprocessdlg.cpp" line="702"/> | |
| 1956 | - <location filename="fileprocessdlg.cpp" line="718"/> | |
| 1957 | - <location filename="fileprocessdlg.cpp" line="767"/> | |
| 2020 | + <location filename="fileprocessdlg.cpp" line="478"/> | |
| 2021 | + <location filename="fileprocessdlg.cpp" line="556"/> | |
| 2022 | + <location filename="fileprocessdlg.cpp" line="748"/> | |
| 2023 | + <location filename="fileprocessdlg.cpp" line="804"/> | |
| 2024 | + <location filename="fileprocessdlg.cpp" line="820"/> | |
| 2025 | + <location filename="fileprocessdlg.cpp" line="869"/> | |
| 1958 | 2026 | <source>남은 예상 시간 : 완료</source> |
| 1959 | 2027 | <translation>剩下的预计时间:完成</translation> |
| 1960 | 2028 | </message> |
| 1961 | 2029 | <message> |
| 1962 | - <location filename="fileprocessdlg.cpp" line="472"/> | |
| 2030 | + <location filename="fileprocessdlg.cpp" line="499"/> | |
| 1963 | 2031 | <source>,Steam Heating Time,</source> |
| 1964 | 2032 | <translation>,蒸汽加热时间,</translation> |
| 1965 | 2033 | </message> |
| 1966 | 2034 | <message> |
| 1967 | - <location filename="fileprocessdlg.cpp" line="474"/> | |
| 2035 | + <location filename="fileprocessdlg.cpp" line="501"/> | |
| 1968 | 2036 | <source>,Hot Air Heating Time,</source> |
| 1969 | 2037 | <translation>,热风加热时间,</translation> |
| 1970 | 2038 | </message> |
| 1971 | 2039 | <message> |
| 1972 | - <location filename="fileprocessdlg.cpp" line="479"/> | |
| 2040 | + <location filename="fileprocessdlg.cpp" line="506"/> | |
| 1973 | 2041 | <source>,Hot Air Mode,</source> |
| 1974 | 2042 | <translation>,热风模式,</translation> |
| 1975 | 2043 | </message> |
| 1976 | 2044 | <message> |
| 1977 | - <location filename="fileprocessdlg.cpp" line="482"/> | |
| 2045 | + <location filename="fileprocessdlg.cpp" line="509"/> | |
| 1978 | 2046 | <source>,Steam Mode,</source> |
| 1979 | 2047 | <translation>,蒸汽模式,</translation> |
| 1980 | 2048 | </message> |
| 1981 | 2049 | <message> |
| 1982 | - <location filename="fileprocessdlg.cpp" line="485"/> | |
| 2050 | + <location filename="fileprocessdlg.cpp" line="512"/> | |
| 1983 | 2051 | <source>,Combi Mode,</source> |
| 1984 | 2052 | <translation>,相结合的方式,</translation> |
| 1985 | 2053 | </message> |
| 1986 | 2054 | <message> |
| 1987 | - <location filename="fileprocessdlg.cpp" line="488"/> | |
| 2055 | + <location filename="fileprocessdlg.cpp" line="515"/> | |
| 1988 | 2056 | <source>,세제없이 헹굼,</source> |
| 1989 | 2057 | <translation>,无洗涤剂漂洗,</translation> |
| 1990 | 2058 | </message> |
| 1991 | 2059 | <message> |
| 1992 | - <location filename="fileprocessdlg.cpp" line="491"/> | |
| 2060 | + <location filename="fileprocessdlg.cpp" line="518"/> | |
| 1993 | 2061 | <source>,간이세척,</source> |
| 1994 | 2062 | <translation>,简易洗涤,</translation> |
| 1995 | 2063 | </message> |
| 1996 | 2064 | <message> |
| 1997 | - <location filename="fileprocessdlg.cpp" line="494"/> | |
| 2065 | + <location filename="fileprocessdlg.cpp" line="521"/> | |
| 1998 | 2066 | <source>,표준세척,</source> |
| 1999 | 2067 | <translation>,标准洗涤,</translation> |
| 2000 | 2068 | </message> |
| 2001 | 2069 | <message> |
| 2002 | - <location filename="fileprocessdlg.cpp" line="497"/> | |
| 2070 | + <location filename="fileprocessdlg.cpp" line="524"/> | |
| 2003 | 2071 | <source>,강세척</source> |
| 2004 | 2072 | <translation>,强洗涤</translation> |
| 2005 | 2073 | </message> |
| 2006 | 2074 | <message> |
| 2007 | - <location filename="fileprocessdlg.cpp" line="500"/> | |
| 2075 | + <location filename="fileprocessdlg.cpp" line="527"/> | |
| 2008 | 2076 | <source>,고속세척,</source> |
| 2009 | 2077 | <translation>,高速洗涤,</translation> |
| 2010 | 2078 | </message> |
| 2011 | 2079 | <message> |
| 2012 | - <location filename="fileprocessdlg.cpp" line="503"/> | |
| 2080 | + <location filename="fileprocessdlg.cpp" line="530"/> | |
| 2013 | 2081 | <source>,쿨다운,</source> |
| 2014 | 2082 | <translation>,变凉,</translation> |
| 2015 | 2083 | </message> |
| 2016 | 2084 | <message> |
| 2017 | - <location filename="fileprocessdlg.cpp" line="505"/> | |
| 2085 | + <location filename="fileprocessdlg.cpp" line="532"/> | |
| 2018 | 2086 | <source>,전체작동시간,</source> |
| 2019 | 2087 | <translation>,整个操作时间,</translation> |
| 2020 | 2088 | </message> |
| 2021 | 2089 | <message> |
| 2022 | - <location filename="fileprocessdlg.cpp" line="509"/> | |
| 2090 | + <location filename="fileprocessdlg.cpp" line="536"/> | |
| 2023 | 2091 | <source>,도어 Open,</source> |
| 2024 | 2092 | <translation>,门打开,</translation> |
| 2025 | 2093 | </message> |
| 2026 | 2094 | <message> |
| 2027 | - <location filename="fileprocessdlg.cpp" line="511"/> | |
| 2095 | + <location filename="fileprocessdlg.cpp" line="538"/> | |
| 2028 | 2096 | <source>,볼밸브 Open,</source> |
| 2029 | 2097 | <translation>,球阀打开,</translation> |
| 2030 | 2098 | </message> |
| 2031 | 2099 | <message> |
| 2032 | - <location filename="fileprocessdlg.cpp" line="513"/> | |
| 2100 | + <location filename="fileprocessdlg.cpp" line="540"/> | |
| 2033 | 2101 | <source>,S/G 급수 솔레노이드,</source> |
| 2034 | 2102 | <translation>,S/G 供水电磁阀,</translation> |
| 2035 | 2103 | </message> |
| 2036 | 2104 | <message> |
| 2037 | - <location filename="fileprocessdlg.cpp" line="515"/> | |
| 2105 | + <location filename="fileprocessdlg.cpp" line="542"/> | |
| 2038 | 2106 | <source>,퀀칭 솔레노이드,</source> |
| 2039 | 2107 | <translation>,供干热电磁阀,</translation> |
| 2040 | 2108 | </message> |
| 2041 | 2109 | <message> |
| 2042 | - <location filename="fileprocessdlg.cpp" line="517"/> | |
| 2110 | + <location filename="fileprocessdlg.cpp" line="544"/> | |
| 2043 | 2111 | <source>,고내살수 노즐 솔레노이드 ,</source> |
| 2044 | 2112 | <translation>,庫内撒水喷嘴电磁阀,</translation> |
| 2045 | 2113 | </message> |
| 2046 | 2114 | <message> |
| 2047 | - <location filename="fileprocessdlg.cpp" line="519"/> | |
| 2115 | + <location filename="fileprocessdlg.cpp" line="546"/> | |
| 2048 | 2116 | <source>,호스릴 솔레노이드,</source> |
| 2049 | 2117 | <translation>,软管盘电磁阀,</translation> |
| 2050 | 2118 | </message> |
| 2051 | 2119 | <message> |
| 2052 | - <location filename="fileprocessdlg.cpp" line="521"/> | |
| 2120 | + <location filename="fileprocessdlg.cpp" line="548"/> | |
| 2053 | 2121 | <source>,세제공급장치,</source> |
| 2054 | 2122 | <translation>,洗涤剂供应装置 ,</translation> |
| 2055 | 2123 | </message> |
| 2056 | 2124 | <message> |
| 2057 | - <location filename="fileprocessdlg.cpp" line="523"/> | |
| 2125 | + <location filename="fileprocessdlg.cpp" line="550"/> | |
| 2058 | 2126 | <source>,배습댐퍼,</source> |
| 2059 | 2127 | <translation>,排湿挡板,</translation> |
| 2060 | 2128 | </message> |
| 2061 | 2129 | <message> |
| 2062 | - <location filename="fileprocessdlg.cpp" line="525"/> | |
| 2130 | + <location filename="fileprocessdlg.cpp" line="552"/> | |
| 2063 | 2131 | <source>,소형펌프모터,</source> |
| 2064 | 2132 | <translation>,小型泵电机,</translation> |
| 2065 | 2133 | </message> |
| 2066 | 2134 | <message> |
| 2067 | - <location filename="fileprocessdlg.cpp" line="527"/> | |
| 2135 | + <location filename="fileprocessdlg.cpp" line="554"/> | |
| 2068 | 2136 | <source>,중형펌프모터,</source> |
| 2069 | 2137 | <translation>,中型泵电机,</translation> |
| 2070 | 2138 | </message> |
| 2071 | 2139 | <message> |
| 2072 | - <location filename="fileprocessdlg.cpp" line="557"/> | |
| 2073 | - <location filename="fileprocessdlg.cpp" line="614"/> | |
| 2074 | - <location filename="fileprocessdlg.cpp" line="655"/> | |
| 2075 | - <location filename="fileprocessdlg.cpp" line="711"/> | |
| 2076 | - <location filename="fileprocessdlg.cpp" line="777"/> | |
| 2140 | + <location filename="fileprocessdlg.cpp" line="586"/> | |
| 2141 | + <location filename="fileprocessdlg.cpp" line="716"/> | |
| 2142 | + <location filename="fileprocessdlg.cpp" line="757"/> | |
| 2143 | + <location filename="fileprocessdlg.cpp" line="813"/> | |
| 2144 | + <location filename="fileprocessdlg.cpp" line="879"/> | |
| 2077 | 2145 | <source>USB 인식을 실패하였습니다.</source> |
| 2078 | 2146 | <translation>USB识别失败了。</translation> |
| 2079 | 2147 | </message> |
| 2080 | 2148 | <message> |
| 2081 | - <location filename="fileprocessdlg.cpp" line="563"/> | |
| 2149 | + <location filename="fileprocessdlg.cpp" line="649"/> | |
| 2150 | + <source>CookBook Upload Success!.</source> | |
| 2151 | + <translation type="unfinished"></translation> | |
| 2152 | + </message> | |
| 2153 | + <message> | |
| 2154 | + <location filename="fileprocessdlg.cpp" line="653"/> | |
| 2082 | 2155 | <source>완료</source> |
| 2083 | 2156 | <translation>完成</translation> |
| 2084 | 2157 | </message> |
| 2085 | 2158 | <message> |
| 2086 | - <location filename="fileprocessdlg.cpp" line="574"/> | |
| 2159 | + <location filename="fileprocessdlg.cpp" line="661"/> | |
| 2160 | + <source>에러 발생으로 종료합니다.</source> | |
| 2161 | + <translation type="unfinished"></translation> | |
| 2162 | + </message> | |
| 2163 | + <message> | |
| 2164 | + <location filename="fileprocessdlg.cpp" line="672"/> | |
| 2087 | 2165 | <source>남은 예상 시간 : %1분 %2초</source> |
| 2088 | 2166 | <translation>剩下的预计时间:%1分%2秒</translation> |
| 2089 | 2167 | </message> |
| 2090 | 2168 | <message> |
| 2091 | - <location filename="fileprocessdlg.cpp" line="578"/> | |
| 2169 | + <location filename="fileprocessdlg.cpp" line="676"/> | |
| 2092 | 2170 | <source>남은 예상 시간 : %1초</source> |
| 2093 | 2171 | <translation>剩下的预计时间:%1秒</translation> |
| 2094 | 2172 | </message> |
| 2095 | 2173 | <message> |
| 2096 | - <location filename="fileprocessdlg.cpp" line="636"/> | |
| 2174 | + <location filename="fileprocessdlg.cpp" line="738"/> | |
| 2097 | 2175 | <source>설정 다운로드에 실패하였습니다.</source> |
| 2098 | 2176 | <translation>设定下载失败了。</translation> |
| 2099 | 2177 | </message> |
| 2100 | 2178 | <message> |
| 2101 | - <location filename="fileprocessdlg.cpp" line="650"/> | |
| 2179 | + <location filename="fileprocessdlg.cpp" line="752"/> | |
| 2102 | 2180 | <source>즐겨찾기 다운로드에 실패하였습니다.</source> |
| 2103 | 2181 | <translation>收藏夹下载失败了。</translation> |
| 2104 | 2182 | </message> |
| 2105 | 2183 | <message> |
| 2106 | - <location filename="fileprocessdlg.cpp" line="675"/> | |
| 2107 | - <location filename="fileprocessdlg.cpp" line="681"/> | |
| 2108 | - <location filename="fileprocessdlg.cpp" line="691"/> | |
| 2184 | + <location filename="fileprocessdlg.cpp" line="777"/> | |
| 2185 | + <location filename="fileprocessdlg.cpp" line="783"/> | |
| 2186 | + <location filename="fileprocessdlg.cpp" line="793"/> | |
| 2109 | 2187 | <source>설정 업로드에 실패하였습니다.</source> |
| 2110 | 2188 | <translation>设定上传失败了。</translation> |
| 2111 | 2189 | </message> |
| 2112 | 2190 | <message> |
| 2113 | - <location filename="fileprocessdlg.cpp" line="706"/> | |
| 2191 | + <location filename="fileprocessdlg.cpp" line="808"/> | |
| 2114 | 2192 | <source>즐겨찾기 업로드에 실패하였습니다.</source> |
| 2115 | 2193 | <translation>收藏夹上传失败了。</translation> |
| 2116 | 2194 | </message> |
| 2117 | 2195 | <message> |
| 2118 | - <location filename="fileprocessdlg.cpp" line="735"/> | |
| 2196 | + <location filename="fileprocessdlg.cpp" line="837"/> | |
| 2119 | 2197 | <source>남은 예상 시간 : 2초</source> |
| 2120 | 2198 | <translation>剩下的预计时间:2秒</translation> |
| 2121 | 2199 | </message> |
| 2122 | 2200 | <message> |
| 2123 | - <location filename="fileprocessdlg.cpp" line="738"/> | |
| 2201 | + <location filename="fileprocessdlg.cpp" line="840"/> | |
| 2124 | 2202 | <source>모델 정보 업로드에 실패하였습니다.</source> |
| 2125 | 2203 | <translation>上传模式失败。</translation> |
| 2126 | 2204 | </message> |
| 2127 | 2205 | <message> |
| 2128 | - <location filename="fileprocessdlg.cpp" line="751"/> | |
| 2206 | + <location filename="fileprocessdlg.cpp" line="853"/> | |
| 2129 | 2207 | <source>남은 예상 시간 : 1</source> |
| 2130 | 2208 | <translation>剩下的预计时间:1</translation> |
| 2131 | 2209 | </message> |
| 2132 | 2210 | <message> |
| 2133 | - <location filename="fileprocessdlg.cpp" line="755"/> | |
| 2211 | + <location filename="fileprocessdlg.cpp" line="857"/> | |
| 2134 | 2212 | <source>핫라인 쉐프 정보 업로드에 실패하였습니다.</source> |
| 2135 | 2213 | <translation>热线-主厨 设定上传失败了。</translation> |
| 2136 | 2214 | </message> |
| 2137 | 2215 | <message> |
| 2138 | - <location filename="fileprocessdlg.cpp" line="772"/> | |
| 2216 | + <location filename="fileprocessdlg.cpp" line="874"/> | |
| 2139 | 2217 | <source>핫라인 서비스 정보 업로드에 실패하였습니다.</source> |
| 2140 | 2218 | <translation>热线-服务 设定上传失败了。</translation> |
| 2141 | 2219 | </message> |
| ... | ... | @@ -2474,25 +2552,25 @@ |
| 2474 | 2552 | </message> |
| 2475 | 2553 | <message> |
| 2476 | 2554 | <location filename="historylistwindow.h" line="41"/> |
| 2477 | - <source>상부점화장치</source> | |
| 2555 | + <source>상부점화장치<byte value="x0"/></source> | |
| 2478 | 2556 | <oldsource>상부점화장치</oldsource> |
| 2479 | 2557 | <translation type="unfinished">上部点火装置</translation> |
| 2480 | 2558 | </message> |
| 2481 | 2559 | <message> |
| 2482 | 2560 | <location filename="historylistwindow.h" line="42"/> |
| 2483 | - <source>스팀점화장치</source> | |
| 2561 | + <source>스팀점화장치<byte value="x0"/></source> | |
| 2484 | 2562 | <oldsource>스팀점화장치</oldsource> |
| 2485 | 2563 | <translation type="unfinished">蒸汽点火装置</translation> |
| 2486 | 2564 | </message> |
| 2487 | 2565 | <message> |
| 2488 | 2566 | <location filename="historylistwindow.h" line="43"/> |
| 2489 | - <source>하부점화장치</source> | |
| 2567 | + <source>하부점화장치<byte value="x0"/></source> | |
| 2490 | 2568 | <oldsource>하부점화장치</oldsource> |
| 2491 | 2569 | <translation type="unfinished">下部点火装置</translation> |
| 2492 | 2570 | </message> |
| 2493 | 2571 | <message> |
| 2494 | 2572 | <location filename="historylistwindow.h" line="44"/> |
| 2495 | - <source>서비스에러기록종합</source> | |
| 2573 | + <source>서비스에러기록종합<byte value="x0"/></source> | |
| 2496 | 2574 | <oldsource>서비스에러기록종합</oldsource> |
| 2497 | 2575 | <translation type="unfinished">服务错误记录总结</translation> |
| 2498 | 2576 | </message> |
| ... | ... | @@ -2529,92 +2607,92 @@ |
| 2529 | 2607 | </message> |
| 2530 | 2608 | <message> |
| 2531 | 2609 | <location filename="mainwindow.ui" line="179"/> |
| 2532 | - <location filename="mainwindow.ui" line="208"/> | |
| 2533 | - <location filename="mainwindow.ui" line="234"/> | |
| 2610 | + <location filename="mainwindow.ui" line="205"/> | |
| 2611 | + <location filename="mainwindow.ui" line="231"/> | |
| 2534 | 2612 | <source>function</source> |
| 2535 | 2613 | <translation>function</translation> |
| 2536 | 2614 | </message> |
| 2537 | 2615 | <message> |
| 2538 | - <location filename="mainwindow.ui" line="205"/> | |
| 2616 | + <location filename="mainwindow.ui" line="202"/> | |
| 2539 | 2617 | <source>프로그래밍모드</source> |
| 2540 | 2618 | <translation>编程模式</translation> |
| 2541 | 2619 | </message> |
| 2542 | 2620 | <message> |
| 2543 | - <location filename="mainwindow.ui" line="231"/> | |
| 2621 | + <location filename="mainwindow.ui" line="228"/> | |
| 2544 | 2622 | <source>세척모드</source> |
| 2545 | 2623 | <translation>洗涤模式</translation> |
| 2546 | 2624 | </message> |
| 2547 | 2625 | <message> |
| 2548 | - <location filename="mainwindow.ui" line="329"/> | |
| 2626 | + <location filename="mainwindow.ui" line="326"/> | |
| 2549 | 2627 | <source>건열</source> |
| 2550 | 2628 | <translation>干热</translation> |
| 2551 | 2629 | </message> |
| 2552 | 2630 | <message> |
| 2553 | - <location filename="mainwindow.ui" line="332"/> | |
| 2554 | - <location filename="mainwindow.ui" line="352"/> | |
| 2555 | - <location filename="mainwindow.ui" line="372"/> | |
| 2631 | + <location filename="mainwindow.ui" line="329"/> | |
| 2632 | + <location filename="mainwindow.ui" line="349"/> | |
| 2633 | + <location filename="mainwindow.ui" line="369"/> | |
| 2556 | 2634 | <source>mode</source> |
| 2557 | 2635 | <translation>mode</translation> |
| 2558 | 2636 | </message> |
| 2559 | 2637 | <message> |
| 2560 | - <location filename="mainwindow.ui" line="349"/> | |
| 2638 | + <location filename="mainwindow.ui" line="346"/> | |
| 2561 | 2639 | <source>콤비</source> |
| 2562 | 2640 | <translation>组合</translation> |
| 2563 | 2641 | </message> |
| 2564 | 2642 | <message> |
| 2565 | - <location filename="mainwindow.ui" line="369"/> | |
| 2643 | + <location filename="mainwindow.ui" line="366"/> | |
| 2566 | 2644 | <source>스팀</source> |
| 2567 | 2645 | <translation>蒸汽</translation> |
| 2568 | 2646 | </message> |
| 2569 | 2647 | <message> |
| 2570 | - <location filename="mainwindow.ui" line="395"/> | |
| 2648 | + <location filename="mainwindow.ui" line="392"/> | |
| 2571 | 2649 | <source>육류</source> |
| 2572 | 2650 | <translation>肉类</translation> |
| 2573 | 2651 | </message> |
| 2574 | 2652 | <message> |
| 2575 | - <location filename="mainwindow.ui" line="398"/> | |
| 2576 | - <location filename="mainwindow.ui" line="424"/> | |
| 2577 | - <location filename="mainwindow.ui" line="450"/> | |
| 2578 | - <location filename="mainwindow.ui" line="476"/> | |
| 2579 | - <location filename="mainwindow.ui" line="502"/> | |
| 2580 | - <location filename="mainwindow.ui" line="528"/> | |
| 2581 | - <location filename="mainwindow.ui" line="554"/> | |
| 2582 | - <location filename="mainwindow.ui" line="580"/> | |
| 2653 | + <location filename="mainwindow.ui" line="395"/> | |
| 2654 | + <location filename="mainwindow.ui" line="421"/> | |
| 2655 | + <location filename="mainwindow.ui" line="447"/> | |
| 2656 | + <location filename="mainwindow.ui" line="473"/> | |
| 2657 | + <location filename="mainwindow.ui" line="499"/> | |
| 2658 | + <location filename="mainwindow.ui" line="525"/> | |
| 2659 | + <location filename="mainwindow.ui" line="551"/> | |
| 2660 | + <location filename="mainwindow.ui" line="577"/> | |
| 2583 | 2661 | <source>type</source> |
| 2584 | 2662 | <translation>type</translation> |
| 2585 | 2663 | </message> |
| 2586 | 2664 | <message> |
| 2587 | - <location filename="mainwindow.ui" line="421"/> | |
| 2665 | + <location filename="mainwindow.ui" line="418"/> | |
| 2588 | 2666 | <source>디저트류</source> |
| 2589 | 2667 | <translation>甜点类</translation> |
| 2590 | 2668 | </message> |
| 2591 | 2669 | <message> |
| 2592 | - <location filename="mainwindow.ui" line="447"/> | |
| 2670 | + <location filename="mainwindow.ui" line="444"/> | |
| 2593 | 2671 | <source>기타요리</source> |
| 2594 | 2672 | <translation>其他烹饪</translation> |
| 2595 | 2673 | </message> |
| 2596 | 2674 | <message> |
| 2597 | - <location filename="mainwindow.ui" line="473"/> | |
| 2675 | + <location filename="mainwindow.ui" line="470"/> | |
| 2598 | 2676 | <source>채소및곡류</source> |
| 2599 | 2677 | <translation>蔬菜和谷物</translation> |
| 2600 | 2678 | </message> |
| 2601 | 2679 | <message> |
| 2602 | - <location filename="mainwindow.ui" line="499"/> | |
| 2680 | + <location filename="mainwindow.ui" line="496"/> | |
| 2603 | 2681 | <source>가금류</source> |
| 2604 | 2682 | <translation>家禽类</translation> |
| 2605 | 2683 | </message> |
| 2606 | 2684 | <message> |
| 2607 | - <location filename="mainwindow.ui" line="525"/> | |
| 2685 | + <location filename="mainwindow.ui" line="522"/> | |
| 2608 | 2686 | <source>생선류</source> |
| 2609 | 2687 | <translation>海鲜类</translation> |
| 2610 | 2688 | </message> |
| 2611 | 2689 | <message> |
| 2612 | - <location filename="mainwindow.ui" line="551"/> | |
| 2690 | + <location filename="mainwindow.ui" line="548"/> | |
| 2613 | 2691 | <source>제과제빵류</source> |
| 2614 | 2692 | <translation>饼干面包类</translation> |
| 2615 | 2693 | </message> |
| 2616 | 2694 | <message> |
| 2617 | - <location filename="mainwindow.ui" line="577"/> | |
| 2695 | + <location filename="mainwindow.ui" line="574"/> | |
| 2618 | 2696 | <source>부가기능</source> |
| 2619 | 2697 | <translation>附加功能</translation> |
| 2620 | 2698 | </message> |
| ... | ... | @@ -2623,7 +2701,7 @@ |
| 2623 | 2701 | <translation type="vanished">V0.3.4</translation> |
| 2624 | 2702 | </message> |
| 2625 | 2703 | <message> |
| 2626 | - <location filename="mainwindow.cpp" line="128"/> | |
| 2704 | + <location filename="mainwindow.cpp" line="137"/> | |
| 2627 | 2705 | <source>세척이 정상적으로 종료되지 않아 |
| 2628 | 2706 | 반드시 세척통을 자동 세척해야 합니다. |
| 2629 | 2707 | 내부를 비워주세요</source> |
| ... | ... | @@ -2743,48 +2821,48 @@ |
| 2743 | 2821 | <translation>tool</translation> |
| 2744 | 2822 | </message> |
| 2745 | 2823 | <message> |
| 2746 | - <location filename="manualcookwindow.cpp" line="696"/> | |
| 2747 | - <location filename="manualcookwindow.cpp" line="706"/> | |
| 2824 | + <location filename="manualcookwindow.cpp" line="702"/> | |
| 2825 | + <location filename="manualcookwindow.cpp" line="712"/> | |
| 2748 | 2826 | <source>문을 닫아주세요</source> |
| 2749 | 2827 | <translation>请把门关上</translation> |
| 2750 | 2828 | </message> |
| 2751 | 2829 | <message> |
| 2752 | - <location filename="manualcookwindow.cpp" line="696"/> | |
| 2830 | + <location filename="manualcookwindow.cpp" line="702"/> | |
| 2753 | 2831 | <source>조리 중 문 열림 시간 모니터링 1단계</source> |
| 2754 | 2832 | <translation>烹饪中门打开的时间监测第一阶段</translation> |
| 2755 | 2833 | </message> |
| 2756 | 2834 | <message> |
| 2757 | - <location filename="manualcookwindow.cpp" line="706"/> | |
| 2835 | + <location filename="manualcookwindow.cpp" line="712"/> | |
| 2758 | 2836 | <source>조리 중 문 열림 시간 모니터링 2단계</source> |
| 2759 | 2837 | <translation>烹饪中门打开的时间监测第二阶段</translation> |
| 2760 | 2838 | </message> |
| 2761 | 2839 | <message> |
| 2762 | - <location filename="manualcookwindow.cpp" line="716"/> | |
| 2840 | + <location filename="manualcookwindow.cpp" line="722"/> | |
| 2763 | 2841 | <source>문이 오래 열려있어 조리가 취소되었습니다</source> |
| 2764 | 2842 | <translation>因为长时间开着门烹饪被取消了</translation> |
| 2765 | 2843 | </message> |
| 2766 | 2844 | <message> |
| 2767 | - <location filename="manualcookwindow.cpp" line="716"/> | |
| 2845 | + <location filename="manualcookwindow.cpp" line="722"/> | |
| 2768 | 2846 | <source>조리 중 문 열림 시간 모니터링 3단계</source> |
| 2769 | 2847 | <translation>烹饪中门打开的时间监测第三阶段</translation> |
| 2770 | 2848 | </message> |
| 2771 | 2849 | <message> |
| 2772 | - <location filename="manualcookwindow.cpp" line="1053"/> | |
| 2850 | + <location filename="manualcookwindow.cpp" line="1059"/> | |
| 2773 | 2851 | <source>즐겨찾기 항목에 추가하시겠습니까?</source> |
| 2774 | 2852 | <translation>添加到收藏夹项目吗?</translation> |
| 2775 | 2853 | </message> |
| 2776 | 2854 | <message> |
| 2777 | - <location filename="manualcookwindow.cpp" line="1084"/> | |
| 2855 | + <location filename="manualcookwindow.cpp" line="1090"/> | |
| 2778 | 2856 | <source>요리가 중단되고 환경 설정 모드로 들어갑니다. 진행할까요?</source> |
| 2779 | 2857 | <translation>中断烹饪后进入设定环境模式。是否进行?</translation> |
| 2780 | 2858 | </message> |
| 2781 | 2859 | <message> |
| 2782 | - <location filename="manualcookwindow.cpp" line="1107"/> | |
| 2860 | + <location filename="manualcookwindow.cpp" line="1113"/> | |
| 2783 | 2861 | <source>요리가 중단되고 즐겨찾기 모드로 들어갑니다. 진행할까요?</source> |
| 2784 | 2862 | <translation>中断烹饪后进入设定收藏夹模式。是否进行?</translation> |
| 2785 | 2863 | </message> |
| 2786 | 2864 | <message> |
| 2787 | - <location filename="manualcookwindow.cpp" line="1131"/> | |
| 2865 | + <location filename="manualcookwindow.cpp" line="1137"/> | |
| 2788 | 2866 | <source>요리가 중단되고 자동 세척 모드로 들어갑니다. 진행할까요?</source> |
| 2789 | 2867 | <translation>中断烹饪后进入设定自动清洗模式。是否进行?</translation> |
| 2790 | 2868 | </message> |
| ... | ... | @@ -2818,6 +2896,225 @@ |
| 2818 | 2896 | </message> |
| 2819 | 2897 | </context> |
| 2820 | 2898 | <context> |
| 2899 | + <name>MultiCookAutoWindow</name> | |
| 2900 | + <message> | |
| 2901 | + <location filename="multicookautowindow.cpp" line="140"/> | |
| 2902 | + <source>다중 요리 목록에 추가하시겠습니까?</source> | |
| 2903 | + <translation type="unfinished"></translation> | |
| 2904 | + </message> | |
| 2905 | +</context> | |
| 2906 | +<context> | |
| 2907 | + <name>MultiCookManualWindow</name> | |
| 2908 | + <message> | |
| 2909 | + <location filename="multicookmanualwindow.ui" line="81"/> | |
| 2910 | + <source>건열</source> | |
| 2911 | + <translation type="unfinished">干热</translation> | |
| 2912 | + </message> | |
| 2913 | + <message> | |
| 2914 | + <location filename="multicookmanualwindow.ui" line="170"/> | |
| 2915 | + <source>0%</source> | |
| 2916 | + <translation type="unfinished">0%</translation> | |
| 2917 | + </message> | |
| 2918 | + <message> | |
| 2919 | + <location filename="multicookmanualwindow.ui" line="232"/> | |
| 2920 | + <location filename="multicookmanualwindow.ui" line="378"/> | |
| 2921 | + <source>감소</source> | |
| 2922 | + <translation type="unfinished">减少</translation> | |
| 2923 | + </message> | |
| 2924 | + <message> | |
| 2925 | + <location filename="multicookmanualwindow.ui" line="294"/> | |
| 2926 | + <location filename="multicookmanualwindow.ui" line="709"/> | |
| 2927 | + <source>증가</source> | |
| 2928 | + <translation type="unfinished">增加</translation> | |
| 2929 | + </message> | |
| 2930 | + <message> | |
| 2931 | + <location filename="multicookmanualwindow.ui" line="503"/> | |
| 2932 | + <source>0<span style="font-size:11pt;">초</span></source> | |
| 2933 | + <translation type="unfinished"></translation> | |
| 2934 | + </message> | |
| 2935 | + <message> | |
| 2936 | + <location filename="multicookmanualwindow.ui" line="527"/> | |
| 2937 | + <source>콤비</source> | |
| 2938 | + <translation type="unfinished">组合</translation> | |
| 2939 | + </message> | |
| 2940 | + <message> | |
| 2941 | + <location filename="multicookmanualwindow.ui" line="580"/> | |
| 2942 | + <source>스팀</source> | |
| 2943 | + <translation type="unfinished">蒸汽</translation> | |
| 2944 | + </message> | |
| 2945 | + <message> | |
| 2946 | + <location filename="multicookmanualwindow.ui" line="647"/> | |
| 2947 | + <source>30<span style="font-size:11pt;">℃</span></source> | |
| 2948 | + <translation type="unfinished"></translation> | |
| 2949 | + </message> | |
| 2950 | +</context> | |
| 2951 | +<context> | |
| 2952 | + <name>MultiCookSelectionWindow</name> | |
| 2953 | + <message> | |
| 2954 | + <location filename="multicookselectionwindow.ui" line="78"/> | |
| 2955 | + <source>건열</source> | |
| 2956 | + <translation type="unfinished">干热</translation> | |
| 2957 | + </message> | |
| 2958 | + <message> | |
| 2959 | + <location filename="multicookselectionwindow.ui" line="121"/> | |
| 2960 | + <source>채소및곡류</source> | |
| 2961 | + <translation type="unfinished">蔬菜和谷物</translation> | |
| 2962 | + </message> | |
| 2963 | + <message> | |
| 2964 | + <location filename="multicookselectionwindow.ui" line="164"/> | |
| 2965 | + <source>제과제빵류</source> | |
| 2966 | + <translation type="unfinished">饼干面包类</translation> | |
| 2967 | + </message> | |
| 2968 | + <message> | |
| 2969 | + <location filename="multicookselectionwindow.ui" line="207"/> | |
| 2970 | + <source>육류</source> | |
| 2971 | + <translation type="unfinished">肉类</translation> | |
| 2972 | + </message> | |
| 2973 | + <message> | |
| 2974 | + <location filename="multicookselectionwindow.ui" line="250"/> | |
| 2975 | + <source>디저트류</source> | |
| 2976 | + <translation type="unfinished">甜点类</translation> | |
| 2977 | + </message> | |
| 2978 | + <message> | |
| 2979 | + <location filename="multicookselectionwindow.ui" line="280"/> | |
| 2980 | + <source>가금류</source> | |
| 2981 | + <translation type="unfinished">家禽类</translation> | |
| 2982 | + </message> | |
| 2983 | + <message> | |
| 2984 | + <location filename="multicookselectionwindow.ui" line="304"/> | |
| 2985 | + <source>콤비</source> | |
| 2986 | + <translation type="unfinished">组合</translation> | |
| 2987 | + </message> | |
| 2988 | + <message> | |
| 2989 | + <location filename="multicookselectionwindow.ui" line="337"/> | |
| 2990 | + <source>다중요리</source> | |
| 2991 | + <translation type="unfinished">多种烹饪</translation> | |
| 2992 | + </message> | |
| 2993 | + <message> | |
| 2994 | + <location filename="multicookselectionwindow.ui" line="370"/> | |
| 2995 | + <source>프로그래밍모드</source> | |
| 2996 | + <translation type="unfinished">编程模式</translation> | |
| 2997 | + </message> | |
| 2998 | + <message> | |
| 2999 | + <location filename="multicookselectionwindow.ui" line="413"/> | |
| 3000 | + <source>기타요리</source> | |
| 3001 | + <translation type="unfinished">其他烹饪</translation> | |
| 3002 | + </message> | |
| 3003 | + <message> | |
| 3004 | + <location filename="multicookselectionwindow.ui" line="459"/> | |
| 3005 | + <source>세척모드</source> | |
| 3006 | + <translation type="unfinished">洗涤模式</translation> | |
| 3007 | + </message> | |
| 3008 | + <message> | |
| 3009 | + <location filename="multicookselectionwindow.ui" line="489"/> | |
| 3010 | + <source>부가기능</source> | |
| 3011 | + <translation type="unfinished">附加功能</translation> | |
| 3012 | + </message> | |
| 3013 | + <message> | |
| 3014 | + <location filename="multicookselectionwindow.ui" line="617"/> | |
| 3015 | + <source>스팀</source> | |
| 3016 | + <translation type="unfinished">蒸汽</translation> | |
| 3017 | + </message> | |
| 3018 | + <message> | |
| 3019 | + <location filename="multicookselectionwindow.ui" line="647"/> | |
| 3020 | + <source>생선류</source> | |
| 3021 | + <translation type="unfinished">海鲜类</translation> | |
| 3022 | + </message> | |
| 3023 | + <message> | |
| 3024 | + <location filename="multicookselectionwindow.ui" line="702"/> | |
| 3025 | + <location filename="multicookselectionwindow.cpp" line="83"/> | |
| 3026 | + <source>1. 다중 요리에서 사용할 요리 카테고리를 선택해주세요 | |
| 3027 | +2. 스팀, 콤비, 건열 중에서 선택하시면 자동으로 다음 단계로 진행됩니다</source> | |
| 3028 | + <translation type="unfinished"></translation> | |
| 3029 | + </message> | |
| 3030 | + <message> | |
| 3031 | + <location filename="multicookselectionwindow.cpp" line="103"/> | |
| 3032 | + <source>스팀을</source> | |
| 3033 | + <translation type="unfinished"></translation> | |
| 3034 | + </message> | |
| 3035 | + <message> | |
| 3036 | + <location filename="multicookselectionwindow.cpp" line="106"/> | |
| 3037 | + <source>콤비를</source> | |
| 3038 | + <translation type="unfinished"></translation> | |
| 3039 | + </message> | |
| 3040 | + <message> | |
| 3041 | + <location filename="multicookselectionwindow.cpp" line="109"/> | |
| 3042 | + <source>건열을</source> | |
| 3043 | + <translation type="unfinished"></translation> | |
| 3044 | + </message> | |
| 3045 | + <message> | |
| 3046 | + <location filename="multicookselectionwindow.cpp" line="113"/> | |
| 3047 | + <source>1. %1 선택하였습니다 | |
| 3048 | +2. 수동 메뉴 혹은 원하시는 자동 메뉴 상세 목록을 선택하세요</source> | |
| 3049 | + <translation type="unfinished"></translation> | |
| 3050 | + </message> | |
| 3051 | +</context> | |
| 3052 | +<context> | |
| 3053 | + <name>MultiCookWindow</name> | |
| 3054 | + <message> | |
| 3055 | + <location filename="multicookwindow.ui" line="14"/> | |
| 3056 | + <source>MainWindow</source> | |
| 3057 | + <translation type="unfinished"></translation> | |
| 3058 | + </message> | |
| 3059 | + <message> | |
| 3060 | + <location filename="multicookwindow.ui" line="113"/> | |
| 3061 | + <source>문이 열려있습니다 | |
| 3062 | +문을 닫으시면 다시 시작됩니다</source> | |
| 3063 | + <translation type="unfinished"></translation> | |
| 3064 | + </message> | |
| 3065 | + <message> | |
| 3066 | + <location filename="multicookwindow.ui" line="170"/> | |
| 3067 | + <source>문을 열어주세요</source> | |
| 3068 | + <translation type="unfinished"></translation> | |
| 3069 | + </message> | |
| 3070 | + <message> | |
| 3071 | + <location filename="multicookwindow.ui" line="538"/> | |
| 3072 | + <source>다중 요리 최근 요리 목록입니다</source> | |
| 3073 | + <translation type="unfinished"></translation> | |
| 3074 | + </message> | |
| 3075 | + <message> | |
| 3076 | + <location filename="multicookwindow.ui" line="754"/> | |
| 3077 | + <location filename="multicookwindow.ui" line="778"/> | |
| 3078 | + <location filename="multicookwindow.ui" line="802"/> | |
| 3079 | + <location filename="multicookwindow.ui" line="826"/> | |
| 3080 | + <location filename="multicookwindow.ui" line="850"/> | |
| 3081 | + <location filename="multicookwindow.ui" line="874"/> | |
| 3082 | + <location filename="multicookwindow.ui" line="898"/> | |
| 3083 | + <location filename="multicookwindow.ui" line="922"/> | |
| 3084 | + <location filename="multicookwindow.ui" line="946"/> | |
| 3085 | + <location filename="multicookwindow.ui" line="970"/> | |
| 3086 | + <location filename="multicookwindow.ui" line="1034"/> | |
| 3087 | + <source>slotLabel</source> | |
| 3088 | + <translation type="unfinished"></translation> | |
| 3089 | + </message> | |
| 3090 | + <message> | |
| 3091 | + <location filename="multicookwindow.ui" line="1027"/> | |
| 3092 | + <source>1. 해당 조리 칸 버튼을 눌러 메뉴를 선택해주세요. | |
| 3093 | +2. 메뉴가 선택되면, 해당 작업 시간이 적용됩니다.</source> | |
| 3094 | + <translation type="unfinished"></translation> | |
| 3095 | + </message> | |
| 3096 | + <message> | |
| 3097 | + <location filename="multicookwindow.cpp" line="178"/> | |
| 3098 | + <source>%1번 단 요리(%2)가 종료되었습니다</source> | |
| 3099 | + <translation type="unfinished"></translation> | |
| 3100 | + </message> | |
| 3101 | + <message> | |
| 3102 | + <location filename="multicookwindow.cpp" line="405"/> | |
| 3103 | + <location filename="multicookwindow.cpp" line="420"/> | |
| 3104 | + <location filename="multicookwindow.cpp" line="435"/> | |
| 3105 | + <source>요리를 취소하시겠습니까?</source> | |
| 3106 | + <translation type="unfinished"></translation> | |
| 3107 | + </message> | |
| 3108 | +</context> | |
| 3109 | +<context> | |
| 3110 | + <name>MultiManualCook</name> | |
| 3111 | + <message> | |
| 3112 | + <location filename="multimanualcook.cpp" line="39"/> | |
| 3113 | + <source>수동 요리</source> | |
| 3114 | + <translation type="unfinished"></translation> | |
| 3115 | + </message> | |
| 3116 | +</context> | |
| 3117 | +<context> | |
| 2821 | 3118 | <name>NotiPopupDlg</name> |
| 2822 | 3119 | <message> |
| 2823 | 3120 | <location filename="notipopupdlg.ui" line="60"/> |
| ... | ... | @@ -3277,6 +3574,11 @@ |
| 3277 | 3574 | <translation type="unfinished"></translation> |
| 3278 | 3575 | </message> |
| 3279 | 3576 | <message> |
| 3577 | + <location filename="ovenstatics.cpp" line="219"/> | |
| 3578 | + <source>스팀 버너 컨트롤러 통신 이상</source> | |
| 3579 | + <translation type="unfinished"></translation> | |
| 3580 | + </message> | |
| 3581 | + <message> | |
| 3280 | 3582 | <location filename="ovenstatics.cpp" line="220"/> |
| 3281 | 3583 | <source>스팀발생기 버너 컨트롤러 PCB 통신 불량이 발생하였습니다. |
| 3282 | 3584 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| ... | ... | @@ -3284,6 +3586,11 @@ |
| 3284 | 3586 | <translation type="unfinished"></translation> |
| 3285 | 3587 | </message> |
| 3286 | 3588 | <message> |
| 3589 | + <location filename="ovenstatics.cpp" line="225"/> | |
| 3590 | + <source>하부 FAN 모터 컨트롤러 이상</source> | |
| 3591 | + <translation type="unfinished"></translation> | |
| 3592 | + </message> | |
| 3593 | + <message> | |
| 3287 | 3594 | <location filename="ovenstatics.cpp" line="226"/> |
| 3288 | 3595 | <source>하부 Fan 모터 컨트롤러 이상 상황이 발생하였습니다. |
| 3289 | 3596 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| ... | ... | @@ -3531,7 +3838,7 @@ |
| 3531 | 3838 | <name>PreheatPopup</name> |
| 3532 | 3839 | <message> |
| 3533 | 3840 | <location filename="preheatpopup.ui" line="104"/> |
| 3534 | - <location filename="preheatpopup.ui" line="549"/> | |
| 3841 | + <location filename="preheatpopup.ui" line="552"/> | |
| 3535 | 3842 | <source>10</source> |
| 3536 | 3843 | <translation>10</translation> |
| 3537 | 3844 | </message> |
| ... | ... | @@ -3541,17 +3848,17 @@ |
| 3541 | 3848 | <translation>预热中</translation> |
| 3542 | 3849 | </message> |
| 3543 | 3850 | <message> |
| 3544 | - <location filename="preheatpopup.ui" line="331"/> | |
| 3851 | + <location filename="preheatpopup.ui" line="334"/> | |
| 3545 | 3852 | <source>예열</source> |
| 3546 | 3853 | <translation>预热</translation> |
| 3547 | 3854 | </message> |
| 3548 | 3855 | <message> |
| 3549 | - <location filename="preheatpopup.ui" line="491"/> | |
| 3856 | + <location filename="preheatpopup.ui" line="494"/> | |
| 3550 | 3857 | <source>00:00</source> |
| 3551 | 3858 | <translation type="unfinished">00:00</translation> |
| 3552 | 3859 | </message> |
| 3553 | 3860 | <message> |
| 3554 | - <location filename="preheatpopup.ui" line="749"/> | |
| 3861 | + <location filename="preheatpopup.ui" line="752"/> | |
| 3555 | 3862 | <source>000/000</source> |
| 3556 | 3863 | <translation>000/000</translation> |
| 3557 | 3864 | </message> |
| ... | ... | @@ -3577,9 +3884,8 @@ |
| 3577 | 3884 | <context> |
| 3578 | 3885 | <name>ProgrammedCookPanelButton</name> |
| 3579 | 3886 | <message> |
| 3580 | - <location filename="programmedcookpanelbutton.ui" line="14"/> | |
| 3581 | 3887 | <source>Form</source> |
| 3582 | - <translation type="unfinished">Form</translation> | |
| 3888 | + <translation type="obsolete">Form</translation> | |
| 3583 | 3889 | </message> |
| 3584 | 3890 | </context> |
| 3585 | 3891 | <context> |
| ... | ... | @@ -3723,7 +4029,7 @@ |
| 3723 | 4029 | <location filename="programmingselectionwindow.ui" line="417"/> |
| 3724 | 4030 | <location filename="programmingselectionwindow.ui" line="589"/> |
| 3725 | 4031 | <location filename="programmingselectionwindow.ui" line="643"/> |
| 3726 | - <location filename="programmingselectionwindow.ui" line="739"/> | |
| 4032 | + <location filename="programmingselectionwindow.ui" line="673"/> | |
| 3727 | 4033 | <source>type</source> |
| 3728 | 4034 | <translation>type</translation> |
| 3729 | 4035 | </message> |
| ... | ... | @@ -3802,7 +4108,7 @@ |
| 3802 | 4108 | <translation>附加功能</translation> |
| 3803 | 4109 | </message> |
| 3804 | 4110 | <message> |
| 3805 | - <location filename="programmingselectionwindow.ui" line="736"/> | |
| 4111 | + <location filename="programmingselectionwindow.ui" line="670"/> | |
| 3806 | 4112 | <source>제과제빵류</source> |
| 3807 | 4113 | <translation>饼干面包类</translation> |
| 3808 | 4114 | </message> |
| ... | ... | @@ -3820,18 +4126,18 @@ |
| 3820 | 4126 | <translation>手动烹饪</translation> |
| 3821 | 4127 | </message> |
| 3822 | 4128 | <message> |
| 3823 | - <location filename="programmingwindow.cpp" line="110"/> | |
| 3824 | - <location filename="programmingwindow.cpp" line="122"/> | |
| 4129 | + <location filename="programmingwindow.cpp" line="111"/> | |
| 4130 | + <location filename="programmingwindow.cpp" line="123"/> | |
| 3825 | 4131 | <source>추가하기</source> |
| 3826 | 4132 | <translation>添加</translation> |
| 3827 | 4133 | </message> |
| 3828 | 4134 | <message> |
| 3829 | - <location filename="programmingwindow.cpp" line="308"/> | |
| 4135 | + <location filename="programmingwindow.cpp" line="309"/> | |
| 3830 | 4136 | <source>저장하지 않고 돌아가시겠습니까?</source> |
| 3831 | 4137 | <translation>不保存吗?</translation> |
| 3832 | 4138 | </message> |
| 3833 | 4139 | <message> |
| 3834 | - <location filename="programmingwindow.cpp" line="318"/> | |
| 4140 | + <location filename="programmingwindow.cpp" line="319"/> | |
| 3835 | 4141 | <source>저장하시겠습니까?</source> |
| 3836 | 4142 | <translation>保存吗?</translation> |
| 3837 | 4143 | </message> |
| ... | ... | @@ -4254,17 +4560,6 @@ |
| 4254 | 4560 | <translation>门传感器</translation> |
| 4255 | 4561 | </message> |
| 4256 | 4562 | <message> |
| 4257 | - <location filename="realtimepartswindow.cpp" line="81"/> | |
| 4258 | - <location filename="realtimepartswindow.cpp" line="84"/> | |
| 4259 | - <location filename="realtimepartswindow.cpp" line="87"/> | |
| 4260 | - <location filename="realtimepartswindow.cpp" line="100"/> | |
| 4261 | - <location filename="realtimepartswindow.cpp" line="103"/> | |
| 4262 | - <location filename="realtimepartswindow.cpp" line="106"/> | |
| 4263 | - <location filename="realtimepartswindow.cpp" line="109"/> | |
| 4264 | - <source>ON</source> | |
| 4265 | - <translation>ON</translation> | |
| 4266 | - </message> | |
| 4267 | - <message> | |
| 4268 | 4563 | <location filename="realtimepartswindow.cpp" line="82"/> |
| 4269 | 4564 | <location filename="realtimepartswindow.cpp" line="85"/> |
| 4270 | 4565 | <location filename="realtimepartswindow.cpp" line="88"/> |
| ... | ... | @@ -4272,21 +4567,32 @@ |
| 4272 | 4567 | <location filename="realtimepartswindow.cpp" line="104"/> |
| 4273 | 4568 | <location filename="realtimepartswindow.cpp" line="107"/> |
| 4274 | 4569 | <location filename="realtimepartswindow.cpp" line="110"/> |
| 4570 | + <source>ON</source> | |
| 4571 | + <translation>ON</translation> | |
| 4572 | + </message> | |
| 4573 | + <message> | |
| 4574 | + <location filename="realtimepartswindow.cpp" line="83"/> | |
| 4575 | + <location filename="realtimepartswindow.cpp" line="86"/> | |
| 4576 | + <location filename="realtimepartswindow.cpp" line="89"/> | |
| 4577 | + <location filename="realtimepartswindow.cpp" line="102"/> | |
| 4578 | + <location filename="realtimepartswindow.cpp" line="105"/> | |
| 4579 | + <location filename="realtimepartswindow.cpp" line="108"/> | |
| 4580 | + <location filename="realtimepartswindow.cpp" line="111"/> | |
| 4275 | 4581 | <source>OFF</source> |
| 4276 | 4582 | <translation>OFF</translation> |
| 4277 | 4583 | </message> |
| 4278 | 4584 | <message> |
| 4279 | - <location filename="realtimepartswindow.cpp" line="93"/> | |
| 4585 | + <location filename="realtimepartswindow.cpp" line="94"/> | |
| 4280 | 4586 | <source>HIGH</source> |
| 4281 | 4587 | <translation>HIGH</translation> |
| 4282 | 4588 | </message> |
| 4283 | 4589 | <message> |
| 4284 | - <location filename="realtimepartswindow.cpp" line="96"/> | |
| 4590 | + <location filename="realtimepartswindow.cpp" line="97"/> | |
| 4285 | 4591 | <source>LOW</source> |
| 4286 | 4592 | <translation>LOW</translation> |
| 4287 | 4593 | </message> |
| 4288 | 4594 | <message> |
| 4289 | - <location filename="realtimepartswindow.cpp" line="98"/> | |
| 4595 | + <location filename="realtimepartswindow.cpp" line="99"/> | |
| 4290 | 4596 | <source>NORMAL</source> |
| 4291 | 4597 | <translation>NORMAL</translation> |
| 4292 | 4598 | </message> |
| ... | ... | @@ -4404,6 +4710,11 @@ |
| 4404 | 4710 | <translation type="unfinished">月</translation> |
| 4405 | 4711 | </message> |
| 4406 | 4712 | <message> |
| 4713 | + <location filename="reservetimepopup.ui" line="167"/> | |
| 4714 | + <source>분 후</source> | |
| 4715 | + <translation type="unfinished"></translation> | |
| 4716 | + </message> | |
| 4717 | + <message> | |
| 4407 | 4718 | <source>분</source> |
| 4408 | 4719 | <translation type="vanished">分</translation> |
| 4409 | 4720 | </message> |
| ... | ... | @@ -4488,6 +4799,24 @@ |
| 4488 | 4799 | </message> |
| 4489 | 4800 | </context> |
| 4490 | 4801 | <context> |
| 4802 | + <name>TouchTestWindow</name> | |
| 4803 | + <message> | |
| 4804 | + <location filename="touchtestwindow.ui" line="14"/> | |
| 4805 | + <source>MainWindow</source> | |
| 4806 | + <translation type="unfinished"></translation> | |
| 4807 | + </message> | |
| 4808 | + <message> | |
| 4809 | + <location filename="touchtestwindow.ui" line="31"/> | |
| 4810 | + <source>X</source> | |
| 4811 | + <translation type="unfinished"></translation> | |
| 4812 | + </message> | |
| 4813 | + <message> | |
| 4814 | + <location filename="touchtestwindow.ui" line="48"/> | |
| 4815 | + <source>C</source> | |
| 4816 | + <translation type="unfinished"></translation> | |
| 4817 | + </message> | |
| 4818 | +</context> | |
| 4819 | +<context> | |
| 4491 | 4820 | <name>UsbCheckPopupDlg</name> |
| 4492 | 4821 | <message> |
| 4493 | 4822 | <location filename="usbcheckpopupdlg.ui" line="61"/> |
| ... | ... | @@ -4607,7 +4936,7 @@ USB를 삽입해 주세요!</source> |
| 4607 | 4936 | <name>WashWindow</name> |
| 4608 | 4937 | <message> |
| 4609 | 4938 | <location filename="washwindow.ui" line="200"/> |
| 4610 | - <location filename="washwindow.cpp" line="354"/> | |
| 4939 | + <location filename="washwindow.cpp" line="356"/> | |
| 4611 | 4940 | <source>기기의 내부를 세척 중입니다</source> |
| 4612 | 4941 | <translation>进行设备的内部清洗</translation> |
| 4613 | 4942 | </message> |
| ... | ... | @@ -4683,80 +5012,80 @@ USB를 삽입해 주세요!</source> |
| 4683 | 5012 | <translation>干净</translation> |
| 4684 | 5013 | </message> |
| 4685 | 5014 | <message> |
| 4686 | - <location filename="washwindow.cpp" line="80"/> | |
| 5015 | + <location filename="washwindow.cpp" line="82"/> | |
| 4687 | 5016 | <source>제품 스팀통을 세척 중입니다</source> |
| 4688 | 5017 | <translation type="unfinished"></translation> |
| 4689 | 5018 | </message> |
| 4690 | 5019 | <message> |
| 4691 | - <location filename="washwindow.cpp" line="81"/> | |
| 5020 | + <location filename="washwindow.cpp" line="83"/> | |
| 4692 | 5021 | <source>완료될 때까지 문을 열지 마세요 |
| 4693 | 5022 | 제품의 스팀통 자동 세척 기능을 실행 중입니다</source> |
| 4694 | 5023 | <translation type="unfinished"></translation> |
| 4695 | 5024 | </message> |
| 4696 | 5025 | <message> |
| 4697 | - <location filename="washwindow.cpp" line="214"/> | |
| 5026 | + <location filename="washwindow.cpp" line="216"/> | |
| 4698 | 5027 | <source>내부 헹굼 진행 중입니다.</source> |
| 4699 | 5028 | <translation>内部进行漂洗。</translation> |
| 4700 | 5029 | </message> |
| 4701 | 5030 | <message> |
| 4702 | - <location filename="washwindow.cpp" line="217"/> | |
| 5031 | + <location filename="washwindow.cpp" line="219"/> | |
| 4703 | 5032 | <source>스팀 급수 진행 중입니다.</source> |
| 4704 | 5033 | <translation>蒸汽供水处理中。</translation> |
| 4705 | 5034 | </message> |
| 4706 | 5035 | <message> |
| 4707 | - <location filename="washwindow.cpp" line="220"/> | |
| 5036 | + <location filename="washwindow.cpp" line="222"/> | |
| 4708 | 5037 | <source>내부 팬 세척 진행 중입니다.</source> |
| 4709 | 5038 | <translation>内部风扇进行洗涤。</translation> |
| 4710 | 5039 | </message> |
| 4711 | 5040 | <message> |
| 4712 | - <location filename="washwindow.cpp" line="223"/> | |
| 5041 | + <location filename="washwindow.cpp" line="225"/> | |
| 4713 | 5042 | <source>내부 스팀 불림 진행 중입니다.</source> |
| 4714 | 5043 | <translation>内部蒸汽进行冲泡。</translation> |
| 4715 | 5044 | </message> |
| 4716 | 5045 | <message> |
| 4717 | - <location filename="washwindow.cpp" line="226"/> | |
| 5046 | + <location filename="washwindow.cpp" line="228"/> | |
| 4718 | 5047 | <source>내부 강 세척 진행 중입니다.</source> |
| 4719 | 5048 | <translation>内部进行强洗涤。</translation> |
| 4720 | 5049 | </message> |
| 4721 | 5050 | <message> |
| 4722 | - <location filename="washwindow.cpp" line="229"/> | |
| 5051 | + <location filename="washwindow.cpp" line="231"/> | |
| 4723 | 5052 | <source>내부 상부 세척 진행 중입니다.</source> |
| 4724 | 5053 | <translation>内部上部进行洗涤。</translation> |
| 4725 | 5054 | </message> |
| 4726 | 5055 | <message> |
| 4727 | - <location filename="washwindow.cpp" line="232"/> | |
| 5056 | + <location filename="washwindow.cpp" line="234"/> | |
| 4728 | 5057 | <source>내부 스팀 세척 진행 중입니다.</source> |
| 4729 | 5058 | <translation>内部进行蒸汽洗涤。</translation> |
| 4730 | 5059 | </message> |
| 4731 | 5060 | <message> |
| 4732 | - <location filename="washwindow.cpp" line="235"/> | |
| 5061 | + <location filename="washwindow.cpp" line="237"/> | |
| 4733 | 5062 | <source>세척 종료 진행 중입니다.</source> |
| 4734 | 5063 | <translation>洗涤结束进行中。</translation> |
| 4735 | 5064 | </message> |
| 4736 | 5065 | <message> |
| 4737 | - <location filename="washwindow.cpp" line="238"/> | |
| 5066 | + <location filename="washwindow.cpp" line="240"/> | |
| 4738 | 5067 | <source>세제 세척수 만들기 진행 중입니다.</source> |
| 4739 | 5068 | <translation>做洗涤剂洗涤水进行中。</translation> |
| 4740 | 5069 | </message> |
| 4741 | 5070 | <message> |
| 4742 | - <location filename="washwindow.cpp" line="241"/> | |
| 5071 | + <location filename="washwindow.cpp" line="243"/> | |
| 4743 | 5072 | <source>세제 세척수 헹굼 진행 중입니다.</source> |
| 4744 | 5073 | <translation>洗涤剂洗涤水进行漂洗。</translation> |
| 4745 | 5074 | </message> |
| 4746 | 5075 | <message> |
| 4747 | - <location filename="washwindow.cpp" line="244"/> | |
| 5076 | + <location filename="washwindow.cpp" line="246"/> | |
| 4748 | 5077 | <source>하부 탱크 세척수 만들기 진행 중입니다.</source> |
| 4749 | 5078 | <translation>做下部槽洗涤水进行中。</translation> |
| 4750 | 5079 | </message> |
| 4751 | 5080 | <message> |
| 4752 | - <location filename="washwindow.cpp" line="355"/> | |
| 5081 | + <location filename="washwindow.cpp" line="357"/> | |
| 4753 | 5082 | <source>완료될 때까지 문을 열지 마세요. |
| 4754 | 5083 | 제품 내부의 자동 세척 기능을 실행 중입니다.</source> |
| 4755 | 5084 | <translation type="unfinished"></translation> |
| 4756 | 5085 | </message> |
| 4757 | 5086 | <message> |
| 4758 | - <location filename="washwindow.cpp" line="409"/> | |
| 4759 | - <location filename="washwindow.cpp" line="455"/> | |
| 5087 | + <location filename="washwindow.cpp" line="413"/> | |
| 5088 | + <location filename="washwindow.cpp" line="463"/> | |
| 4760 | 5089 | <source>세척이 종료되었습니다</source> |
| 4761 | 5090 | <translation>洗涤结束了</translation> |
| 4762 | 5091 | </message> | ... | ... |