Commit 0d34b6c351872ef25b115241114aa9e936302c4d

Authored by 고영탁
1 parent da8d6a2947
Exists in master and in 2 other branches fhd, fhd-demo

시스템 정보 표시 관련 변경

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