Commit 94c1b260b24baf36b99ddfadb39ff869ed669154
1 parent
e1a76d3eb3
Exists in
master
and in
2 other branches
고객사 요청 사항 반영 V1.3.00
Showing
13 changed files
with
979 additions
and
768 deletions
Show diff stats
app/app-prime-modbus/app/app-prime-modbus/main_controller.c
| ... | ... | @@ -121,10 +121,10 @@ int on_stdin_read( poll_obj_t *obj ) |
| 121 | 121 | @return |
| 122 | 122 | -----------------------------------------------------------------------------*/ |
| 123 | 123 | static int main_initialize(){ |
| 124 | - poll_obj_t *obj; | |
| 124 | + // poll_obj_t *obj; | |
| 125 | 125 | |
| 126 | - obj = poll_add( fileno(stdin) ); // 디버깅을 위한 키보드 입력을 받는다. | |
| 127 | - obj->on_poll_in = on_stdin_read; | |
| 126 | + // obj = poll_add( fileno(stdin) ); // 디버깅을 위한 키보드 입력을 받는다. | |
| 127 | + // obj->on_poll_in = on_stdin_read; | |
| 128 | 128 | |
| 129 | 129 | return 0; |
| 130 | 130 | } | ... | ... |
app/gui/oven_control/adjustmentwindow.cpp
| ... | ... | @@ -6,6 +6,7 @@ |
| 6 | 6 | #include "notipopupdlg.h" |
| 7 | 7 | #include "touchtestwindow.h" |
| 8 | 8 | #include "dirtylevel.h" |
| 9 | +#include "ovenstatics.h" | |
| 9 | 10 | |
| 10 | 11 | AdjustmentWindow::AdjustmentWindow(QWidget *parent) : |
| 11 | 12 | QMainWindow(parent), |
| ... | ... | @@ -149,6 +150,8 @@ void AdjustmentWindow::on_btnAdjust_LCD_clicked() |
| 149 | 150 | |
| 150 | 151 | void AdjustmentWindow::on_btnClearWashData_clicked() |
| 151 | 152 | { |
| 152 | - DirtyLevel::setCookingTime(0); | |
| 153 | - DirtyLevel::setCookingCount(0); | |
| 153 | +// DirtyLevel::setCookingTime(0); | |
| 154 | +// DirtyLevel::setCookingCount(0); | |
| 155 | + OvenStatistics::getInstance()->setTotalCookingCount(0,false); | |
| 156 | + OvenStatistics::getInstance()->setTotalCookingTime(0, true); | |
| 154 | 157 | } | ... | ... |
app/gui/oven_control/config.cpp
| ... | ... | @@ -148,7 +148,7 @@ bool Config::saveConfig(void){ |
| 148 | 148 | qint64 writelen; |
| 149 | 149 | QFile file(CONFIG_FILE_NAME);+ |
| 150 | 150 | memcpy(buff, configlist.data, sizeof(config_lists)); |
| 151 | - buff[sizeof(config_lists)] = 0x9C; | |
| 151 | + buff[sizeof(config_lists)] = CONFIG_FILE_VER; | |
| 152 | 152 | if(file.open(QIODevice::WriteOnly)){ |
| 153 | 153 | writelen = file.write(buff,sizeof(config_lists)+1); |
| 154 | 154 | file.close(); |
| ... | ... | @@ -163,27 +163,28 @@ bool Config::saveConfig(void){ |
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | bool Config::loadConfig(){ |
| 166 | - uint8_t buff[sizeof(config_lists)+1]; | |
| 166 | + uint8_t buff[2048]; | |
| 167 | 167 | qint64 readlen; |
| 168 | 168 | QFile file(CONFIG_FILE_NAME); |
| 169 | 169 | initConfig(); |
| 170 | 170 | if(file.open(QIODevice::ReadOnly)){ |
| 171 | - readlen = file.read((char *) buff,sizeof(config_lists)+1); | |
| 171 | + readlen = file.read((char *) buff,2048); | |
| 172 | 172 | file.close(); |
| 173 | - if(readlen != (sizeof(configlist)+1)){ | |
| 174 | - //File size is wrong. apply default config value & save default value; | |
| 175 | - qDebug() << "config file size wrone, apply defult setting!"; | |
| 176 | - saveConfig(); | |
| 177 | - return false; | |
| 173 | + | |
| 174 | + if(buff[readlen-1] != CONFIG_FILE_VER){ | |
| 175 | + //File ver 0x9C | |
| 176 | + if(readlen < (sizeof(config_lists)+1)){ | |
| 177 | + memcpy(configlist.data, buff, readlen); | |
| 178 | + } | |
| 179 | + else{ | |
| 180 | + saveConfig(); | |
| 181 | + return false; | |
| 182 | + } | |
| 178 | 183 | } |
| 179 | - if (buff[sizeof(config_lists)] ==0x9c){ | |
| 184 | + else if(buff[readlen-1] == CONFIG_FILE_VER){ | |
| 180 | 185 | memcpy(configlist.data,buff,sizeof(config_lists)); |
| 181 | 186 | qDebug() << "loading config file success"; |
| 182 | - } | |
| 183 | - else { | |
| 184 | - qDebug()<<"loading config file fail"; | |
| 185 | - saveConfig(); | |
| 186 | - return false; | |
| 187 | + return true; | |
| 187 | 188 | } |
| 188 | 189 | } |
| 189 | 190 | else{ |
| ... | ... | @@ -286,7 +287,9 @@ QString Config::getValueString(Define::ConfigType idx){ |
| 286 | 287 | qstrTemp.sprintf(config_format[(uint32_t)idx], configlist.values[(uint32_t)idx].f32); |
| 287 | 288 | break; |
| 288 | 289 | case 2: |
| 290 | + //if(idx == config_anti_freeze) idx = config_enter_engineer_mode; | |
| 289 | 291 | qstrTemp = tr(config_format[(uint32_t)idx]); |
| 292 | + qDebug() << "Value String " << idx << qstrTemp; | |
| 290 | 293 | break; |
| 291 | 294 | case 3: |
| 292 | 295 | //qstrTemp.sprintf(config_format[(uint32_t)idx], configlist.values[(uint32_t)idx].d32+1); | ... | ... |
app/gui/oven_control/config.h
| ... | ... | @@ -9,7 +9,7 @@ |
| 9 | 9 | #define STRUCT_PACK __attribute__ ((packed)) |
| 10 | 10 | |
| 11 | 11 | |
| 12 | -#define MAX_CONFIG_COUNT 54 | |
| 12 | +#define MAX_CONFIG_COUNT 56 | |
| 13 | 13 | #define MAX_SOFTWARE_INFO_CNT 7 |
| 14 | 14 | #define MAX_HOTLINE_CHEF_CNT 3 |
| 15 | 15 | #define MAX_HOTLINE_SERVICE_CNT 2 |
| ... | ... | @@ -25,6 +25,8 @@ |
| 25 | 25 | |
| 26 | 26 | #define DEFAULT_PRODUCT_SERIAL "0123" |
| 27 | 27 | |
| 28 | +#define CONFIG_FILE_VER 0x9D | |
| 29 | + | |
| 28 | 30 | static const char rest_time_type_menu[2][16] = { |
| 29 | 31 | QT_TRANSLATE_NOOP("Config","잔여시간\0"), |
| 30 | 32 | QT_TRANSLATE_NOOP("Config","타겟시간\0") |
| ... | ... | @@ -143,7 +145,7 @@ namespace Define |
| 143 | 145 | config_ilc_rack_number, |
| 144 | 146 | config_ilc_rack_sequnece, |
| 145 | 147 | config_ilc_cook_wait_time, |
| 146 | - config_cooktime_format, | |
| 148 | + config_cooktime_format, //10 | |
| 147 | 149 | config_time_type, |
| 148 | 150 | config_resttime_format, |
| 149 | 151 | config_marster_vol, |
| ... | ... | @@ -153,7 +155,7 @@ namespace Define |
| 153 | 155 | config_programstep_finish, |
| 154 | 156 | config_cooktime_finish, |
| 155 | 157 | config_stoperror_distinguish, |
| 156 | - config_sound_factory_reset, | |
| 158 | + config_sound_factory_reset, //20 | |
| 157 | 159 | config_haccp_data_download, |
| 158 | 160 | config_info_data_download, |
| 159 | 161 | config_service_data_download, |
| ... | ... | @@ -163,7 +165,7 @@ namespace Define |
| 163 | 165 | config_ip, |
| 164 | 166 | config_gateway, |
| 165 | 167 | config_netmask, |
| 166 | - config_set_download, | |
| 168 | + config_set_download, //30 | |
| 167 | 169 | config_set_upload, |
| 168 | 170 | config_set_half_energy, |
| 169 | 171 | config_set_auto_darkness, |
| ... | ... | @@ -173,21 +175,22 @@ namespace Define |
| 173 | 175 | config_loading_door_monitoring, |
| 174 | 176 | config_cooking_door_monitoring, |
| 175 | 177 | config_software_info, |
| 176 | - config_hotline_chef, | |
| 178 | + config_hotline_chef, //40 | |
| 177 | 179 | config_hotline_service, |
| 178 | 180 | config_steam_wash, |
| 179 | 181 | config_demo_mode, |
| 180 | - config_enter_engineer_mode, | |
| 182 | + config_enter_engineer_mode, //44 | |
| 181 | 183 | config_model, |
| 182 | 184 | config_burner1_pwr1_normal_rpm, |
| 183 | 185 | config_burner1_pwr2_normal_rpm, |
| 184 | 186 | config_burner23_pwr1_normal_rpm, |
| 185 | 187 | config_burner23_pwr2_normal_rpm, |
| 186 | - config_burner1_pwr1_half_rpm, | |
| 188 | + config_burner1_pwr1_half_rpm, //50 | |
| 187 | 189 | config_burner1_pwr2_half_rpm, |
| 188 | 190 | config_burner23_pwr1_half_rpm, |
| 189 | 191 | config_burner23_pwr2_half_rpm, |
| 190 | 192 | config_standard_info_upload, |
| 193 | + config_anti_freeze, //55 | |
| 191 | 194 | config_invalid = MAX_CONFIG_COUNT+1 |
| 192 | 195 | }; |
| 193 | 196 | |
| ... | ... | @@ -218,7 +221,7 @@ namespace Define |
| 218 | 221 | config_item party_dish_weight; |
| 219 | 222 | config_item ilc_rack_number; |
| 220 | 223 | config_item ilc_rack_sequnece; |
| 221 | - config_item ilc_cook_wait_time; | |
| 224 | + config_item ilc_cook_wait_time; //10 | |
| 222 | 225 | config_item cooktime_format; |
| 223 | 226 | config_item time_type; |
| 224 | 227 | config_item resttime_format; |
| ... | ... | @@ -228,7 +231,7 @@ namespace Define |
| 228 | 231 | config_item request_loadexec; |
| 229 | 232 | config_item programstep_finish; |
| 230 | 233 | config_item cooktime_finish; |
| 231 | - config_item stoperror_distinguish; | |
| 234 | + config_item stoperror_distinguish; //20 | |
| 232 | 235 | config_item sound_factory_reset; |
| 233 | 236 | config_item haccp_data_download; |
| 234 | 237 | config_item info_data_download; |
| ... | ... | @@ -238,7 +241,7 @@ namespace Define |
| 238 | 241 | config_item program_initialize; |
| 239 | 242 | config_item ip; |
| 240 | 243 | config_item gateway; |
| 241 | - config_item netmask; | |
| 244 | + config_item netmask; //30 | |
| 242 | 245 | config_item set_download; |
| 243 | 246 | config_item set_upload; |
| 244 | 247 | config_item set_half_energy; |
| ... | ... | @@ -248,21 +251,23 @@ namespace Define |
| 248 | 251 | config_item duty_wash; |
| 249 | 252 | config_item loading_door_monitoring; |
| 250 | 253 | config_item cooking_door_monitoring; |
| 251 | - config_item software_info; | |
| 254 | + config_item software_info; //40 | |
| 252 | 255 | config_item hotline_chef; |
| 253 | 256 | config_item hotline_service; |
| 254 | 257 | config_item steam_wash; |
| 255 | 258 | config_item demo_mode; |
| 256 | - config_item enter_engineer_mode; | |
| 259 | + config_item enter_engineer_mode; //44 | |
| 257 | 260 | config_item model; //System Data, Do not copy after this item when config upload. |
| 258 | 261 | config_item burner1_pwr1_normal_rpm; |
| 259 | 262 | config_item burner1_pwr2_normal_rpm; |
| 260 | 263 | config_item burner23_pwr1_normal_rpm; |
| 261 | - config_item burner23_pwr2_normal_rpm; | |
| 264 | + config_item burner23_pwr2_normal_rpm; //50 | |
| 262 | 265 | config_item burner1_pwr1_half_rpm; |
| 263 | 266 | config_item burner1_pwr2_half_rpm; |
| 264 | 267 | config_item burner23_pwr1_half_rpm; |
| 265 | 268 | config_item burner23_pwr2_half_rpm; |
| 269 | + config_item config_standard_info_upload; | |
| 270 | + config_item config_anti_freeze; //55 | |
| 266 | 271 | }items; |
| 267 | 272 | }STRUCT_PACK config_lists; |
| 268 | 273 | |
| ... | ... | @@ -340,12 +345,14 @@ class Config : public QObject |
| 340 | 345 | * 7f = none value |
| 341 | 346 | */ |
| 342 | 347 | const uint8_t config_data_type[MAX_CONFIG_COUNT] = { |
| 343 | - 0x80, 0x80, 0x80, 0x00, 0x00, 0x80, 0x80, 0x00, 0x80, 0x00, 0x80, 0x80, 0x80, //Settings | |
| 344 | - 0x00, 0x03, 0x00, 0x03, 0x03, 0x03, 0x03, 0x02, | |
| 345 | - 0x02, 0x02, 0x02,0x02, 0x02,0x02, 0x80, 0x80, 0x80, 0x02, 0x02, | |
| 346 | - 0x80, 0x00, 0x00,0x00, | |
| 347 | - 0x80, 0x80, 0x80, | |
| 348 | - 0x02,0x02,0x02,0x02,0x80,0x02 | |
| 348 | + 0x80, 0x80, 0x80, 0x00, 0x00, 0x80, 0x80, 0x00, 0x80, 0x00, 0x80, 0x80, 0x80, //Settings 12 | |
| 349 | + 0x00, 0x03, 0x00, 0x03, 0x03, 0x03, 0x03, 0x02, //20 | |
| 350 | + 0x02, 0x02, 0x02,0x02, 0x02,0x02, 0x80, 0x80, 0x80, 0x02, 0x02, //31 | |
| 351 | + 0x80, 0x00, 0x00,0x00, //35 | |
| 352 | + 0x80, 0x80, 0x80, //38 | |
| 353 | + 0x02,0x02,0x02,0x02,0x80,0x02, // 44 | |
| 354 | + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, //54 | |
| 355 | + 0x02 //55 anit freeze | |
| 349 | 356 | }; |
| 350 | 357 | |
| 351 | 358 | |
| ... | ... | @@ -370,7 +377,7 @@ class Config : public QObject |
| 370 | 377 | "%1번", |
| 371 | 378 | "%1번", |
| 372 | 379 | "%1번", |
| 373 | - QT_TR_NOOP("공장초기화"), | |
| 380 | + QT_TR_NOOP("공장초기화"), //20 | |
| 374 | 381 | QT_TR_NOOP("USB 삽입"), //config_haccp_data_download, |
| 375 | 382 | "USB 삽입", //config_info_data_download, |
| 376 | 383 | "USB 삽입", //config_service_data_download, |
| ... | ... | @@ -380,7 +387,7 @@ class Config : public QObject |
| 380 | 387 | "%d.%d.%d.%d", //config_ip, |
| 381 | 388 | "%d.%d.%d.%d", //config_gateway, |
| 382 | 389 | "%d.%d.%d.%d", //config_netmask, |
| 383 | - "USB 삽입", //config_set_download, | |
| 390 | + "USB 삽입", //config_set_download, 30 | |
| 384 | 391 | "USB 삽입", //config_set_upload, |
| 385 | 392 | "%s", //config_set_half_energy, |
| 386 | 393 | "%1", //config_set_auto_darkness, |
| ... | ... | @@ -390,11 +397,22 @@ class Config : public QObject |
| 390 | 397 | QT_TR_NOOP("%1단계"), //config_loading_door_monitoring, |
| 391 | 398 | QT_TR_NOOP("%1단계"), //config_cooking_door_monitoring |
| 392 | 399 | QT_TR_NOOP("정보확인"), //config_software_info, |
| 393 | - "정보확인", //config_hotline_chef, | |
| 400 | + "정보확인", //config_hotline_chef, //40 | |
| 394 | 401 | "정보확인", //config_hotline_service, |
| 395 | 402 | QT_TR_NOOP("헹굼"), //config_steam_wash |
| 396 | 403 | "%s", //config_demo_mode, |
| 397 | - QT_TR_NOOP("엔지니어모드 진입"), //config_enter_engineer_mode, | |
| 404 | + QT_TR_NOOP("엔지니어모드 진입"), //config_enter_engineer_mode, 44 | |
| 405 | + "test", //config_item model; //System Data, Do not copy after this item when config upload. | |
| 406 | + "test", //config_item burner1_pwr1_normal_rpm; | |
| 407 | + "test", //config_item burner1_pwr2_normal_rpm; | |
| 408 | + "test", //config_item burner23_pwr1_normal_rpm; | |
| 409 | + "test", //config_item burner23_pwr2_normal_rpm; | |
| 410 | + "test", //config_item burner1_pwr1_half_rpm; //50 | |
| 411 | + "test", //config_item burner1_pwr2_half_rpm; | |
| 412 | + "test", //config_item burner23_pwr1_half_rpm; | |
| 413 | + "test", //config_item burner23_pwr2_half_rpm; | |
| 414 | + "test", //config_standard_info_upload, | |
| 415 | + QT_TR_NOOP("실행"), //config_item config_anti_freeze; //55 | |
| 398 | 416 | }; |
| 399 | 417 | |
| 400 | 418 | const char config_title[MAX_CONFIG_COUNT][64]={ |
| ... | ... | @@ -438,11 +456,22 @@ class Config : public QObject |
| 438 | 456 | QT_TR_NOOP("적재 중 문열림 시간 모니터링"), //config_loading_door_monitoring, |
| 439 | 457 | QT_TR_NOOP("조리 중 문열림 시간 모니터링"), //config_cooking_door_monitoring |
| 440 | 458 | QT_TR_NOOP("제품유형/소프트웨어에 관한 정보"), //config_software_info, |
| 441 | - QT_TR_NOOP("핫라인-쉐프"), //config_hotline_chef, | |
| 459 | + QT_TR_NOOP("핫라인-쉐프"), // 40 config_hotline_chef, | |
| 442 | 460 | QT_TR_NOOP("핫라인-서비스"), //config_hotline_service, |
| 443 | 461 | QT_TR_NOOP("증기 발생기 헹굼"), //config_steam_wash |
| 444 | 462 | QT_TR_NOOP("시연모드"), //config_demo_mode, |
| 445 | - QT_TR_NOOP("서비스단계(엔지니어모드)") //config_enter_engineer_mode, | |
| 463 | + QT_TR_NOOP("서비스단계(엔지니어모드)"), // 44config_enter_engineer_mode, | |
| 464 | + QT_TR_NOOP("SYSTEM"), //config_item model; | |
| 465 | + QT_TR_NOOP("SYSTEM"), //config_item burner1_pwr1_normal_rpm; | |
| 466 | + QT_TR_NOOP("SYSTEM"), //config_item burner1_pwr2_normal_rpm; | |
| 467 | + QT_TR_NOOP("SYSTEM"), //config_item burner23_pwr1_normal_rpm; | |
| 468 | + QT_TR_NOOP("SYSTEM"), //config_item burner23_pwr2_normal_rpm; | |
| 469 | + QT_TR_NOOP("SYSTEM"), // 50config_item burner1_pwr1_half_rpm; | |
| 470 | + QT_TR_NOOP("SYSTEM"), //config_item burner1_pwr2_half_rpm; | |
| 471 | + QT_TR_NOOP("SYSTEM"), //config_item burner23_pwr1_half_rpm; | |
| 472 | + QT_TR_NOOP("SYSTEM"), //config_item burner23_pwr2_half_rpm; | |
| 473 | + QT_TR_NOOP("SYSTEM"), //config_standard_info_upload, | |
| 474 | + QT_TR_NOOP("동파방지실행") // 55 config_item config_anti_freeze; | |
| 446 | 475 | }; |
| 447 | 476 | |
| 448 | 477 | QSet<uint32_t> m_setFavorite; | ... | ... |
app/gui/oven_control/configwindow.cpp
| ... | ... | @@ -16,6 +16,7 @@ |
| 16 | 16 | #include "configdoormonitoring.h" |
| 17 | 17 | #include "servicepassinputdlg.h" |
| 18 | 18 | #include "manualviewerdlg.h" |
| 19 | +#include "flushwaterwindow.h" | |
| 19 | 20 | |
| 20 | 21 | ConfigWindow::ConfigWindow(QWidget *parent) : |
| 21 | 22 | QMainWindow(parent), |
| ... | ... | @@ -222,6 +223,12 @@ void ConfigWindow::onConfigBtnClicked(uint16_t id){ |
| 222 | 223 | QDialog* dlg; |
| 223 | 224 | QWidget *focusedWidget = focusWidget(); |
| 224 | 225 | switch(id){ |
| 226 | + case config_anti_freeze: | |
| 227 | + { | |
| 228 | + FlushWaterWindow *w = new FlushWaterWindow(this); | |
| 229 | + w->showFullScreen(); | |
| 230 | + break; | |
| 231 | + } | |
| 225 | 232 | case config_loading_door_monitoring: |
| 226 | 233 | case config_cooking_door_monitoring: |
| 227 | 234 | ConfigDoorMonitoring* wnd; | ... | ... |
app/gui/oven_control/configwindow.h
| ... | ... | @@ -32,14 +32,14 @@ class ConfigWindow : public QMainWindow |
| 32 | 32 | |
| 33 | 33 | private: |
| 34 | 34 | const uint16_t m_arrMaxMenuCount[7] ={ |
| 35 | - 6,8,9,2,3,0,6 | |
| 35 | + 6,8,9,2,4,0,6 | |
| 36 | 36 | }; |
| 37 | 37 | const Define::ConfigType m_arrConfigListInfos[7][20] = { |
| 38 | 38 | {config_language,config_datetime, config_temptype,config_backlight, config_time_type,config_resttime_format,}, |
| 39 | 39 | {config_marster_vol,config_keypad_sound1,config_keypad_sound2,config_request_loadexec,config_programstep_finish,config_cooktime_finish,config_stoperror_distinguish,config_sound_factory_reset}, |
| 40 | 40 | {config_haccp_data_download, config_info_data_download,config_service_data_download,config_program_download,config_program_upload ,config_program_initialize,config_ip,config_set_download,config_set_upload}, |
| 41 | 41 | {config_set_half_energy,config_set_auto_darkness,}, |
| 42 | - {config_duty_wash,config_loading_door_monitoring,config_cooking_door_monitoring}, | |
| 42 | + {config_duty_wash,config_loading_door_monitoring,config_cooking_door_monitoring,config_anti_freeze}, | |
| 43 | 43 | {config_invalid,}, |
| 44 | 44 | {config_software_info,config_hotline_chef,config_hotline_service,config_steam_wash,config_demo_mode,config_enter_engineer_mode} |
| 45 | 45 | }; | ... | ... |
app/gui/oven_control/define.h
| ... | ... | @@ -4,12 +4,12 @@ |
| 4 | 4 | #include <QtCore> |
| 5 | 5 | |
| 6 | 6 | #define MAJOR_VER 1 |
| 7 | -#define MINOR_VER 2 | |
| 8 | -#define HOTFIX_VER 02 | |
| 7 | +#define MINOR_VER 3 | |
| 8 | +#define HOTFIX_VER 00 | |
| 9 | 9 | |
| 10 | 10 | // 0 for normal |
| 11 | 11 | // 1 for premium |
| 12 | -#define MODEL_GRADE 0 | |
| 12 | +#define MODEL_GRADE 1 | |
| 13 | 13 | |
| 14 | 14 | namespace Define |
| 15 | 15 | { | ... | ... |
app/gui/oven_control/lang_en.qm
No preview for this file type
app/gui/oven_control/lang_en.ts
| ... | ... | @@ -14,14 +14,14 @@ |
| 14 | 14 | <translation>correction</translation> |
| 15 | 15 | </message> |
| 16 | 16 | <message> |
| 17 | - <location filename="adjustmentwindow.cpp" line="33"/> | |
| 17 | + <location filename="adjustmentwindow.cpp" line="35"/> | |
| 18 | 18 | <source>모든 설정 값을 공장(출고)초기화 |
| 19 | 19 | 값으로 변경 하시겠습니까?</source> |
| 20 | 20 | <translation>Do you confirm the change of all settings |
| 21 | 21 | to factory default values?</translation> |
| 22 | 22 | </message> |
| 23 | 23 | <message> |
| 24 | - <location filename="adjustmentwindow.cpp" line="99"/> | |
| 24 | + <location filename="adjustmentwindow.cpp" line="101"/> | |
| 25 | 25 | <source>테스트를 완료하였습니다.</source> |
| 26 | 26 | <translation>Test is completed.</translation> |
| 27 | 27 | </message> |
| ... | ... | @@ -139,7 +139,7 @@ to factory default values?</translation> |
| 139 | 139 | <location filename="autocookselectionpopup.ui" line="177"/> |
| 140 | 140 | <location filename="autocookselectionpopup.ui" line="197"/> |
| 141 | 141 | <source>cook</source> |
| 142 | - <translation type="unfinished">cook</translation> | |
| 142 | + <translation>cook</translation> | |
| 143 | 143 | </message> |
| 144 | 144 | </context> |
| 145 | 145 | <context> |
| ... | ... | @@ -392,452 +392,463 @@ to factory setting values?</translation> |
| 392 | 392 | <translation type="vanished">Do you want to delete all programs?</translation> |
| 393 | 393 | </message> |
| 394 | 394 | <message> |
| 395 | - <location filename="config.h" line="29"/> | |
| 396 | 395 | <source>잔여시간</source> |
| 397 | 396 | <oldsource>잔여시간</oldsource> |
| 398 | - <translation type="unfinished">Remaining Time</translation> | |
| 397 | + <translation type="obsolete">Remaining Time</translation> | |
| 399 | 398 | </message> |
| 400 | 399 | <message> |
| 401 | - <location filename="config.h" line="30"/> | |
| 402 | 400 | <source>타겟시간</source> |
| 403 | 401 | <oldsource>타겟시간</oldsource> |
| 404 | - <translation type="unfinished">Target Time</translation> | |
| 402 | + <translation type="obsolete">Target Time</translation> | |
| 405 | 403 | </message> |
| 406 | 404 | <message> |
| 407 | - <location filename="config.h" line="34"/> | |
| 405 | + <location filename="config.h" line="36"/> | |
| 408 | 406 | <source>섭씨(℃)</source> |
| 409 | 407 | <translation>Centigrade</translation> |
| 410 | 408 | </message> |
| 411 | 409 | <message> |
| 412 | - <location filename="config.h" line="35"/> | |
| 410 | + <location filename="config.h" line="37"/> | |
| 413 | 411 | <source>화씨(℉)</source> |
| 414 | 412 | <translation>Fahrenheit</translation> |
| 415 | 413 | </message> |
| 416 | 414 | <message> |
| 417 | - <location filename="config.h" line="39"/> | |
| 418 | 415 | <source>설정취소</source> |
| 419 | 416 | <oldsource>설정취소</oldsource> |
| 420 | - <translation type="unfinished">Cancel</translation> | |
| 417 | + <translation type="obsolete">Cancel</translation> | |
| 421 | 418 | </message> |
| 422 | 419 | <message> |
| 423 | - <location filename="config.h" line="40"/> | |
| 424 | 420 | <source>설정</source> |
| 425 | 421 | <oldsource>설정</oldsource> |
| 426 | - <translation type="unfinished">Set</translation> | |
| 422 | + <translation type="obsolete">Set</translation> | |
| 427 | 423 | </message> |
| 428 | 424 | <message> |
| 429 | - <location filename="config.h" line="63"/> | |
| 430 | 425 | <source>비활성</source> |
| 431 | 426 | <oldsource>비활성</oldsource> |
| 432 | - <translation type="unfinished">Disenable</translation> | |
| 427 | + <translation type="obsolete">Disenable</translation> | |
| 433 | 428 | </message> |
| 434 | 429 | <message> |
| 435 | - <location filename="config.h" line="64"/> | |
| 436 | 430 | <source>활성화</source> |
| 437 | 431 | <oldsource>활성화</oldsource> |
| 438 | - <translation type="unfinished">Enable</translation> | |
| 432 | + <translation type="obsolete">Enable</translation> | |
| 439 | 433 | </message> |
| 440 | 434 | <message> |
| 441 | - <location filename="config.h" line="68"/> | |
| 442 | 435 | <source>끄기</source> |
| 443 | 436 | <oldsource>끄기</oldsource> |
| 444 | - <translation type="unfinished">Off</translation> | |
| 437 | + <translation type="obsolete">Off</translation> | |
| 445 | 438 | </message> |
| 446 | 439 | <message> |
| 447 | - <location filename="config.h" line="69"/> | |
| 448 | 440 | <source>켜기</source> |
| 449 | 441 | <oldsource>켜기</oldsource> |
| 450 | - <translation type="unfinished">On</translation> | |
| 442 | + <translation type="obsolete">On</translation> | |
| 451 | 443 | </message> |
| 452 | 444 | <message> |
| 453 | - <location filename="config.cpp" line="492"/> | |
| 454 | - <location filename="config.cpp" line="493"/> | |
| 455 | - <location filename="config.h" line="94"/> | |
| 445 | + <location filename="config.cpp" line="499"/> | |
| 446 | + <location filename="config.cpp" line="500"/> | |
| 447 | + <location filename="config.h" line="96"/> | |
| 456 | 448 | <source>모 델 명</source> |
| 457 | 449 | <translation>Model Name</translation> |
| 458 | 450 | </message> |
| 459 | 451 | <message> |
| 460 | - <location filename="config.cpp" line="499"/> | |
| 461 | - <location filename="config.cpp" line="500"/> | |
| 462 | - <location filename="config.h" line="95"/> | |
| 452 | + <location filename="config.cpp" line="506"/> | |
| 453 | + <location filename="config.cpp" line="507"/> | |
| 454 | + <location filename="config.h" line="97"/> | |
| 463 | 455 | <source>제조일자</source> |
| 464 | 456 | <translation>Date of Manufacturing</translation> |
| 465 | 457 | </message> |
| 466 | 458 | <message> |
| 467 | - <location filename="config.cpp" line="506"/> | |
| 468 | - <location filename="config.cpp" line="507"/> | |
| 469 | - <location filename="config.h" line="96"/> | |
| 459 | + <location filename="config.cpp" line="514"/> | |
| 460 | + <location filename="config.cpp" line="515"/> | |
| 461 | + <location filename="config.h" line="98"/> | |
| 470 | 462 | <source>제조국</source> |
| 471 | 463 | <translation>Manufacturing Country</translation> |
| 472 | 464 | </message> |
| 473 | 465 | <message> |
| 474 | - <location filename="config.cpp" line="513"/> | |
| 475 | - <location filename="config.cpp" line="514"/> | |
| 476 | - <location filename="config.h" line="97"/> | |
| 466 | + <location filename="config.cpp" line="521"/> | |
| 467 | + <location filename="config.cpp" line="522"/> | |
| 468 | + <location filename="config.h" line="99"/> | |
| 477 | 469 | <source>제조사</source> |
| 478 | 470 | <translation>Manufacturing Company</translation> |
| 479 | 471 | </message> |
| 480 | 472 | <message> |
| 481 | - <location filename="config.cpp" line="520"/> | |
| 482 | - <location filename="config.cpp" line="521"/> | |
| 483 | - <location filename="config.h" line="98"/> | |
| 473 | + <location filename="config.cpp" line="528"/> | |
| 474 | + <location filename="config.cpp" line="529"/> | |
| 475 | + <location filename="config.h" line="100"/> | |
| 484 | 476 | <source>제품번호</source> |
| 485 | 477 | <translation>Model No</translation> |
| 486 | 478 | </message> |
| 487 | 479 | <message> |
| 488 | - <location filename="config.h" line="99"/> | |
| 480 | + <location filename="config.h" line="101"/> | |
| 489 | 481 | <source>소프트웨어 버전</source> |
| 490 | 482 | <translation>Software Version</translation> |
| 491 | 483 | </message> |
| 492 | 484 | <message> |
| 493 | - <location filename="config.h" line="100"/> | |
| 485 | + <location filename="config.h" line="102"/> | |
| 494 | 486 | <source>현재모델</source> |
| 495 | 487 | <translation>Current model </translation> |
| 496 | 488 | </message> |
| 497 | 489 | <message> |
| 498 | - <location filename="config.h" line="104"/> | |
| 499 | - <location filename="config.h" line="110"/> | |
| 490 | + <location filename="config.h" line="106"/> | |
| 491 | + <location filename="config.h" line="112"/> | |
| 500 | 492 | <source>연 락 처</source> |
| 501 | 493 | <translation>Contact</translation> |
| 502 | 494 | </message> |
| 503 | 495 | <message> |
| 504 | - <location filename="config.h" line="105"/> | |
| 496 | + <location filename="config.h" line="107"/> | |
| 505 | 497 | <source>이 름</source> |
| 506 | 498 | <translation>Name</translation> |
| 507 | 499 | </message> |
| 508 | 500 | <message> |
| 509 | - <location filename="config.h" line="106"/> | |
| 510 | - <location filename="config.h" line="111"/> | |
| 501 | + <location filename="config.h" line="108"/> | |
| 502 | + <location filename="config.h" line="113"/> | |
| 511 | 503 | <source>위치정보</source> |
| 512 | 504 | <translation>Location</translation> |
| 513 | 505 | </message> |
| 514 | 506 | <message> |
| 515 | - <location filename="config.h" line="116"/> | |
| 507 | + <location filename="config.h" line="118"/> | |
| 516 | 508 | <source>전기식 10단</source> |
| 517 | 509 | <translation>Electric Type 10 Stages</translation> |
| 518 | 510 | </message> |
| 519 | 511 | <message> |
| 520 | - <location filename="config.h" line="117"/> | |
| 512 | + <location filename="config.h" line="119"/> | |
| 521 | 513 | <source>전기식 20단</source> |
| 522 | 514 | <translation>Electric Type 20 Stages</translation> |
| 523 | 515 | </message> |
| 524 | 516 | <message> |
| 525 | - <location filename="config.h" line="118"/> | |
| 517 | + <location filename="config.h" line="120"/> | |
| 526 | 518 | <source>전기식 24단</source> |
| 527 | 519 | <translation>Electric Type 24 Stages</translation> |
| 528 | 520 | </message> |
| 529 | 521 | <message> |
| 530 | - <location filename="config.h" line="119"/> | |
| 522 | + <location filename="config.h" line="121"/> | |
| 531 | 523 | <source>전기식 40단</source> |
| 532 | 524 | <translation>Electric Type 40 Stages</translation> |
| 533 | 525 | </message> |
| 534 | 526 | <message> |
| 535 | - <location filename="config.h" line="120"/> | |
| 527 | + <location filename="config.h" line="122"/> | |
| 536 | 528 | <source>가스식 10단 LPG</source> |
| 537 | 529 | <translation>Gas Type 10 Stages lpg</translation> |
| 538 | 530 | </message> |
| 539 | 531 | <message> |
| 540 | - <location filename="config.h" line="121"/> | |
| 532 | + <location filename="config.h" line="123"/> | |
| 541 | 533 | <source>가스식 20단 LPG</source> |
| 542 | 534 | <translation>Gas Type 20 Stages lpg</translation> |
| 543 | 535 | </message> |
| 544 | 536 | <message> |
| 545 | - <location filename="config.h" line="122"/> | |
| 537 | + <location filename="config.h" line="124"/> | |
| 546 | 538 | <source>가스식 24단 LPG</source> |
| 547 | 539 | <translation>Gas Type 24 Stages lpg</translation> |
| 548 | 540 | </message> |
| 549 | 541 | <message> |
| 550 | - <location filename="config.h" line="123"/> | |
| 542 | + <location filename="config.h" line="125"/> | |
| 551 | 543 | <source>가스식 40단 LPG</source> |
| 552 | 544 | <translation>Gas Type 40 Stages lpg</translation> |
| 553 | 545 | </message> |
| 554 | 546 | <message> |
| 555 | - <location filename="config.h" line="124"/> | |
| 547 | + <location filename="config.h" line="126"/> | |
| 556 | 548 | <source>가스식 10단 LNG</source> |
| 557 | 549 | <translation>Gas Type 10 Stages lpg</translation> |
| 558 | 550 | </message> |
| 559 | 551 | <message> |
| 560 | - <location filename="config.h" line="125"/> | |
| 552 | + <location filename="config.h" line="127"/> | |
| 561 | 553 | <source>가스식 20단 LNG</source> |
| 562 | 554 | <translation>Gas Type 20 Stages lpg</translation> |
| 563 | 555 | </message> |
| 564 | 556 | <message> |
| 565 | - <location filename="config.h" line="126"/> | |
| 557 | + <location filename="config.h" line="128"/> | |
| 566 | 558 | <source>가스식 24단 LNG</source> |
| 567 | 559 | <translation>Gas Type 24 Stages lpg</translation> |
| 568 | 560 | </message> |
| 569 | 561 | <message> |
| 570 | - <location filename="config.h" line="127"/> | |
| 562 | + <location filename="config.h" line="129"/> | |
| 571 | 563 | <source>가스식 40단 LNG</source> |
| 572 | 564 | <translation>Gas Type 40 Stages lpg</translation> |
| 573 | 565 | </message> |
| 574 | 566 | <message> |
| 575 | - <location filename="config.h" line="357"/> | |
| 567 | + <location filename="config.h" line="364"/> | |
| 576 | 568 | <source>%1 분</source> |
| 577 | 569 | <translation>%1 Min</translation> |
| 578 | 570 | </message> |
| 579 | 571 | <message> |
| 580 | - <location filename="config.h" line="367"/> | |
| 572 | + <location filename="config.h" line="374"/> | |
| 581 | 573 | <source>%1번</source> |
| 582 | 574 | <translation>No.%1</translation> |
| 583 | 575 | </message> |
| 584 | 576 | <message> |
| 585 | - <location filename="config.h" line="373"/> | |
| 577 | + <location filename="config.h" line="380"/> | |
| 586 | 578 | <source>공장초기화</source> |
| 587 | 579 | <translation>Factory Reset</translation> |
| 588 | 580 | </message> |
| 589 | 581 | <message> |
| 590 | - <location filename="config.h" line="374"/> | |
| 582 | + <location filename="config.h" line="381"/> | |
| 591 | 583 | <source>USB 삽입</source> |
| 592 | 584 | <translation>Insert USB</translation> |
| 593 | 585 | </message> |
| 594 | 586 | <message> |
| 595 | - <location filename="config.h" line="379"/> | |
| 587 | + <location filename="config.h" line="386"/> | |
| 596 | 588 | <source>초기화</source> |
| 597 | 589 | <translation>Reset</translation> |
| 598 | 590 | </message> |
| 599 | 591 | <message> |
| 600 | - <location filename="config.h" line="390"/> | |
| 601 | - <location filename="config.h" line="391"/> | |
| 592 | + <location filename="config.h" line="397"/> | |
| 593 | + <location filename="config.h" line="398"/> | |
| 602 | 594 | <source>%1단계</source> |
| 603 | 595 | <translation>Stage%1</translation> |
| 604 | 596 | </message> |
| 605 | 597 | <message> |
| 606 | - <location filename="config.h" line="392"/> | |
| 598 | + <location filename="config.h" line="399"/> | |
| 607 | 599 | <source>정보확인</source> |
| 608 | 600 | <translation>Information</translation> |
| 609 | 601 | </message> |
| 610 | 602 | <message> |
| 611 | - <location filename="config.h" line="395"/> | |
| 603 | + <location filename="config.h" line="402"/> | |
| 612 | 604 | <source>헹굼</source> |
| 613 | 605 | <translation>Rinsing</translation> |
| 614 | 606 | </message> |
| 615 | 607 | <message> |
| 616 | - <location filename="config.h" line="397"/> | |
| 608 | + <location filename="config.h" line="404"/> | |
| 617 | 609 | <source>엔지니어모드 진입</source> |
| 618 | 610 | <translation>Engineer Mode</translation> |
| 619 | 611 | </message> |
| 620 | 612 | <message> |
| 621 | - <location filename="config.h" line="401"/> | |
| 613 | + <location filename="config.h" line="419"/> | |
| 622 | 614 | <source>언어설정</source> |
| 623 | 615 | <translation>Language Setting</translation> |
| 624 | 616 | </message> |
| 625 | 617 | <message> |
| 626 | - <location filename="config.h" line="402"/> | |
| 618 | + <location filename="config.h" line="420"/> | |
| 627 | 619 | <source>날짜와 시간</source> |
| 628 | 620 | <translation>Date and Time</translation> |
| 629 | 621 | </message> |
| 630 | 622 | <message> |
| 631 | - <location filename="config.h" line="403"/> | |
| 623 | + <location filename="config.h" line="421"/> | |
| 632 | 624 | <source>온도단위</source> |
| 633 | 625 | <translation>Temperature Unit</translation> |
| 634 | 626 | </message> |
| 635 | 627 | <message> |
| 636 | - <location filename="config.h" line="404"/> | |
| 628 | + <location filename="config.h" line="422"/> | |
| 637 | 629 | <source>화면밝기</source> |
| 638 | 630 | <translation>Screen Brightness</translation> |
| 639 | 631 | </message> |
| 640 | 632 | <message> |
| 641 | - <location filename="config.h" line="405"/> | |
| 633 | + <location filename="config.h" line="423"/> | |
| 642 | 634 | <source>응축식 후드의 정지지연</source> |
| 643 | 635 | <translation>Stop Delay of Condensation Type Hood</translation> |
| 644 | 636 | </message> |
| 645 | 637 | <message> |
| 646 | - <location filename="config.h" line="406"/> | |
| 638 | + <location filename="config.h" line="424"/> | |
| 647 | 639 | <source>일품요리용 접시무게</source> |
| 648 | 640 | <translation>Weight of the dish for one-dish meal</translation> |
| 649 | 641 | </message> |
| 650 | 642 | <message> |
| 651 | - <location filename="config.h" line="407"/> | |
| 643 | + <location filename="config.h" line="425"/> | |
| 652 | 644 | <source>연회용 접시무게</source> |
| 653 | 645 | <translation>Weight of the dish for a banquet</translation> |
| 654 | 646 | </message> |
| 655 | 647 | <message> |
| 656 | - <location filename="config.h" line="408"/> | |
| 648 | + <location filename="config.h" line="426"/> | |
| 657 | 649 | <source>ILC 조리선반 개수</source> |
| 658 | 650 | <translation>Number of ILC cooking rack</translation> |
| 659 | 651 | </message> |
| 660 | 652 | <message> |
| 661 | - <location filename="config.h" line="409"/> | |
| 653 | + <location filename="config.h" line="427"/> | |
| 662 | 654 | <source>ILC 조리선반 순서</source> |
| 663 | 655 | <translation>Sequence of ILC cooking rack</translation> |
| 664 | 656 | </message> |
| 665 | 657 | <message> |
| 666 | - <location filename="config.h" line="410"/> | |
| 667 | - <location filename="config.h" line="435"/> | |
| 658 | + <location filename="config.h" line="428"/> | |
| 659 | + <location filename="config.h" line="453"/> | |
| 668 | 660 | <source>ILC 조리 온습도 대기시간</source> |
| 669 | 661 | <translation>ILC cooking temperature and humidity standby time</translation> |
| 670 | 662 | </message> |
| 671 | 663 | <message> |
| 672 | - <location filename="config.h" line="411"/> | |
| 664 | + <location filename="config.h" line="429"/> | |
| 673 | 665 | <source>조리시간 포맷</source> |
| 674 | 666 | <translation>Cooking time format</translation> |
| 675 | 667 | </message> |
| 676 | 668 | <message> |
| 677 | - <location filename="config.h" line="412"/> | |
| 669 | + <location filename="config.h" line="430"/> | |
| 678 | 670 | <source>실시간 단위 설정</source> |
| 679 | 671 | <translation>Real time unit setting</translation> |
| 680 | 672 | </message> |
| 681 | 673 | <message> |
| 682 | - <location filename="config.h" line="413"/> | |
| 674 | + <location filename="config.h" line="431"/> | |
| 683 | 675 | <source>잔여시간 시점변경설정</source> |
| 684 | 676 | <translation>Remaining time change setting</translation> |
| 685 | 677 | </message> |
| 686 | 678 | <message> |
| 687 | - <location filename="config.h" line="414"/> | |
| 679 | + <location filename="config.h" line="432"/> | |
| 688 | 680 | <source>마스터 볼륨</source> |
| 689 | 681 | <translation>Master Volume</translation> |
| 690 | 682 | </message> |
| 691 | 683 | <message> |
| 692 | - <location filename="config.h" line="415"/> | |
| 684 | + <location filename="config.h" line="433"/> | |
| 693 | 685 | <source>키패드 소리 - 1</source> |
| 694 | 686 | <translation>Keypad Sound - 1</translation> |
| 695 | 687 | </message> |
| 696 | 688 | <message> |
| 697 | - <location filename="config.h" line="416"/> | |
| 689 | + <location filename="config.h" line="434"/> | |
| 698 | 690 | <source>키패드 볼륨 </source> |
| 699 | 691 | <translation>Keypad Volume</translation> |
| 700 | 692 | </message> |
| 701 | 693 | <message> |
| 702 | - <location filename="config.h" line="417"/> | |
| 694 | + <location filename="config.h" line="435"/> | |
| 703 | 695 | <source>적재/실행 요청</source> |
| 704 | 696 | <translation>Stacking/Execution Request</translation> |
| 705 | 697 | </message> |
| 706 | 698 | <message> |
| 707 | - <location filename="config.h" line="418"/> | |
| 699 | + <location filename="config.h" line="436"/> | |
| 708 | 700 | <source>프로그램 단계 종료</source> |
| 709 | 701 | <translation>Program Stage Finish</translation> |
| 710 | 702 | </message> |
| 711 | 703 | <message> |
| 712 | - <location filename="config.h" line="419"/> | |
| 704 | + <location filename="config.h" line="437"/> | |
| 713 | 705 | <source>조리시간 종료</source> |
| 714 | 706 | <translation>Cooking Time Finish</translation> |
| 715 | 707 | </message> |
| 716 | 708 | <message> |
| 717 | - <location filename="config.h" line="420"/> | |
| 709 | + <location filename="config.h" line="438"/> | |
| 718 | 710 | <source>과정 중단/오류 식별</source> |
| 719 | 711 | <translation>Process Stop/Error Identification</translation> |
| 720 | 712 | </message> |
| 721 | 713 | <message> |
| 722 | - <location filename="config.h" line="421"/> | |
| 714 | + <location filename="config.h" line="439"/> | |
| 723 | 715 | <source>음향설정 초기화</source> |
| 724 | 716 | <translation>Sound Setting Reset</translation> |
| 725 | 717 | </message> |
| 726 | 718 | <message> |
| 727 | - <location filename="config.h" line="422"/> | |
| 719 | + <location filename="config.h" line="440"/> | |
| 728 | 720 | <source>HACCP 데이터 다운로드</source> |
| 729 | 721 | <translation>HACCP Data Download</translation> |
| 730 | 722 | </message> |
| 731 | 723 | <message> |
| 732 | - <location filename="config.h" line="423"/> | |
| 724 | + <location filename="config.h" line="441"/> | |
| 733 | 725 | <source>인포 데이터 다운로드</source> |
| 734 | 726 | <translation>Info Data Download</translation> |
| 735 | 727 | </message> |
| 736 | 728 | <message> |
| 737 | - <location filename="config.h" line="424"/> | |
| 729 | + <location filename="config.h" line="442"/> | |
| 738 | 730 | <source>서비스 데이터 다운로드</source> |
| 739 | 731 | <translation>Service Data Download</translation> |
| 740 | 732 | </message> |
| 741 | 733 | <message> |
| 742 | - <location filename="config.h" line="425"/> | |
| 734 | + <location filename="config.h" line="443"/> | |
| 743 | 735 | <source>프로그램 다운로드</source> |
| 744 | 736 | <translation>Program Download</translation> |
| 745 | 737 | </message> |
| 746 | 738 | <message> |
| 747 | - <location filename="config.h" line="426"/> | |
| 739 | + <location filename="config.h" line="444"/> | |
| 748 | 740 | <source>프로그램 업로드</source> |
| 749 | 741 | <translation>Program Upload</translation> |
| 750 | 742 | </message> |
| 751 | 743 | <message> |
| 752 | - <location filename="config.h" line="427"/> | |
| 744 | + <location filename="config.h" line="445"/> | |
| 753 | 745 | <source>모든 프로그램 삭제</source> |
| 754 | 746 | <translation>Delete All Programs </translation> |
| 755 | 747 | </message> |
| 756 | 748 | <message> |
| 757 | - <location filename="config.h" line="428"/> | |
| 749 | + <location filename="config.h" line="446"/> | |
| 758 | 750 | <source>IP 주소</source> |
| 759 | 751 | <translation>IP Address</translation> |
| 760 | 752 | </message> |
| 761 | 753 | <message> |
| 762 | - <location filename="config.h" line="429"/> | |
| 754 | + <location filename="config.h" line="447"/> | |
| 763 | 755 | <source>IP 게이트웨이</source> |
| 764 | 756 | <translation>IP Gateway</translation> |
| 765 | 757 | </message> |
| 766 | 758 | <message> |
| 767 | - <location filename="config.h" line="430"/> | |
| 759 | + <location filename="config.h" line="448"/> | |
| 768 | 760 | <source>IP 넷마스크</source> |
| 769 | 761 | <translation>IP Netmask</translation> |
| 770 | 762 | </message> |
| 771 | 763 | <message> |
| 772 | - <location filename="config.h" line="431"/> | |
| 764 | + <location filename="config.h" line="449"/> | |
| 773 | 765 | <source>기본설정 다운로드</source> |
| 774 | 766 | <translation>Basic Settings Download</translation> |
| 775 | 767 | </message> |
| 776 | 768 | <message> |
| 777 | - <location filename="config.h" line="432"/> | |
| 769 | + <location filename="config.h" line="450"/> | |
| 778 | 770 | <source>기본설정 업로드</source> |
| 779 | 771 | <translation>Basic Settings Upload</translation> |
| 780 | 772 | </message> |
| 781 | 773 | <message> |
| 782 | - <location filename="config.h" line="433"/> | |
| 774 | + <location filename="config.h" line="451"/> | |
| 783 | 775 | <source>하프에너지</source> |
| 784 | 776 | <translation>Half Energy</translation> |
| 785 | 777 | </message> |
| 786 | 778 | <message> |
| 787 | - <location filename="config.h" line="434"/> | |
| 779 | + <location filename="config.h" line="452"/> | |
| 788 | 780 | <source>화면 밝기 자동 감소</source> |
| 789 | 781 | <translation>Auto Decrease Backlight</translation> |
| 790 | 782 | </message> |
| 791 | 783 | <message> |
| 792 | - <location filename="config.h" line="436"/> | |
| 784 | + <location filename="config.h" line="454"/> | |
| 793 | 785 | <source>적재중 대기 시간</source> |
| 794 | 786 | <translation>Standby Time during Stacking</translation> |
| 795 | 787 | </message> |
| 796 | 788 | <message> |
| 797 | - <location filename="config.h" line="437"/> | |
| 789 | + <location filename="config.h" line="455"/> | |
| 798 | 790 | <source>의무 세척과정</source> |
| 799 | 791 | <translation>Mandatory Cleaning Process</translation> |
| 800 | 792 | </message> |
| 801 | 793 | <message> |
| 802 | - <location filename="config.h" line="438"/> | |
| 794 | + <location filename="config.h" line="456"/> | |
| 803 | 795 | <source>적재 중 문열림 시간 모니터링</source> |
| 804 | 796 | <translation>Door monitoring during stacking </translation> |
| 805 | 797 | </message> |
| 806 | 798 | <message> |
| 807 | - <location filename="config.h" line="439"/> | |
| 799 | + <location filename="config.h" line="457"/> | |
| 808 | 800 | <source>조리 중 문열림 시간 모니터링</source> |
| 809 | 801 | <translation>Door monitoring during cooking</translation> |
| 810 | 802 | </message> |
| 811 | 803 | <message> |
| 812 | - <location filename="config.h" line="440"/> | |
| 804 | + <location filename="config.h" line="458"/> | |
| 813 | 805 | <source>제품유형/소프트웨어에 관한 정보</source> |
| 814 | 806 | <translation>Product type/Software information</translation> |
| 815 | 807 | </message> |
| 816 | 808 | <message> |
| 817 | - <location filename="config.h" line="441"/> | |
| 809 | + <location filename="config.h" line="459"/> | |
| 818 | 810 | <source>핫라인-쉐프</source> |
| 819 | 811 | <translation>Hot Line - Chef </translation> |
| 820 | 812 | </message> |
| 821 | 813 | <message> |
| 822 | - <location filename="config.h" line="442"/> | |
| 814 | + <location filename="config.h" line="460"/> | |
| 823 | 815 | <source>핫라인-서비스</source> |
| 824 | 816 | <translation>Hot Line - Service</translation> |
| 825 | 817 | </message> |
| 826 | 818 | <message> |
| 827 | - <location filename="config.h" line="443"/> | |
| 819 | + <location filename="config.h" line="461"/> | |
| 828 | 820 | <source>증기 발생기 헹굼</source> |
| 829 | 821 | <translation>Steam Generator Rinsing</translation> |
| 830 | 822 | </message> |
| 831 | 823 | <message> |
| 832 | - <location filename="config.h" line="444"/> | |
| 824 | + <location filename="config.h" line="462"/> | |
| 833 | 825 | <source>시연모드</source> |
| 834 | 826 | <translation>Demonstration Mode</translation> |
| 835 | 827 | </message> |
| 836 | 828 | <message> |
| 837 | - <location filename="config.h" line="445"/> | |
| 829 | + <location filename="config.h" line="463"/> | |
| 838 | 830 | <source>서비스단계(엔지니어모드)</source> |
| 839 | 831 | <translation>Service Mode (Engineer Mode)</translation> |
| 840 | 832 | </message> |
| 833 | + <message> | |
| 834 | + <location filename="config.h" line="464"/> | |
| 835 | + <location filename="config.h" line="465"/> | |
| 836 | + <location filename="config.h" line="466"/> | |
| 837 | + <location filename="config.h" line="467"/> | |
| 838 | + <location filename="config.h" line="468"/> | |
| 839 | + <location filename="config.h" line="469"/> | |
| 840 | + <location filename="config.h" line="470"/> | |
| 841 | + <location filename="config.h" line="471"/> | |
| 842 | + <location filename="config.h" line="472"/> | |
| 843 | + <location filename="config.h" line="473"/> | |
| 844 | + <source>SYSTEM</source> | |
| 845 | + <translation></translation> | |
| 846 | + </message> | |
| 847 | + <message> | |
| 848 | + <location filename="config.h" line="474"/> | |
| 849 | + <source>동파방지실행</source> | |
| 850 | + <translation type="unfinished"></translation> | |
| 851 | + </message> | |
| 841 | 852 | </context> |
| 842 | 853 | <context> |
| 843 | 854 | <name>Config1DigitSetAndEnableSetDlg</name> |
| ... | ... | @@ -1005,7 +1016,7 @@ using the dial to alarm sounding or alarm off</translation> |
| 1005 | 1016 | <source>문을 닫고 다이얼을 사용하여 경고가 <BR> 울리거나 꺼질 때까지 시간</source> |
| 1006 | 1017 | <oldsource>문을 닫고 다이얼을 사용하여 경고가 |
| 1007 | 1018 | 울리거나 꺼질 때까지 시간</oldsource> |
| 1008 | - <translation type="unfinished">Time from closing the door and using<BR>the dial to alarm sounding or alarm off</translation> | |
| 1019 | + <translation>Time from closing the door and using<BR>the dial to alarm sounding or alarm off</translation> | |
| 1009 | 1020 | </message> |
| 1010 | 1021 | <message> |
| 1011 | 1022 | <location filename="configdoormonitoring.ui" line="203"/> |
| ... | ... | @@ -1184,54 +1195,54 @@ Value</translation> |
| 1184 | 1195 | <translation type="vanished">Gas Type 40 Stages lpg</translation> |
| 1185 | 1196 | </message> |
| 1186 | 1197 | <message> |
| 1187 | - <location filename="configinfodlg.cpp" line="89"/> | |
| 1198 | + <location filename="configinfodlg.cpp" line="67"/> | |
| 1188 | 1199 | <source>모 델 명</source> |
| 1189 | 1200 | <translation>Model Name</translation> |
| 1190 | 1201 | </message> |
| 1191 | 1202 | <message> |
| 1192 | - <location filename="configinfodlg.cpp" line="90"/> | |
| 1203 | + <location filename="configinfodlg.cpp" line="68"/> | |
| 1193 | 1204 | <source>제조일자</source> |
| 1194 | 1205 | <translation>Date of Manufacturing</translation> |
| 1195 | 1206 | </message> |
| 1196 | 1207 | <message> |
| 1197 | - <location filename="configinfodlg.cpp" line="91"/> | |
| 1208 | + <location filename="configinfodlg.cpp" line="69"/> | |
| 1198 | 1209 | <source>제조국</source> |
| 1199 | 1210 | <translation>Manufacturing Country</translation> |
| 1200 | 1211 | </message> |
| 1201 | 1212 | <message> |
| 1202 | - <location filename="configinfodlg.cpp" line="92"/> | |
| 1213 | + <location filename="configinfodlg.cpp" line="70"/> | |
| 1203 | 1214 | <source>제조사</source> |
| 1204 | 1215 | <translation>Manufacturing Company</translation> |
| 1205 | 1216 | </message> |
| 1206 | 1217 | <message> |
| 1207 | - <location filename="configinfodlg.cpp" line="93"/> | |
| 1218 | + <location filename="configinfodlg.cpp" line="71"/> | |
| 1208 | 1219 | <source>제품번호</source> |
| 1209 | 1220 | <translation>Product Serial</translation> |
| 1210 | 1221 | </message> |
| 1211 | 1222 | <message> |
| 1212 | - <location filename="configinfodlg.cpp" line="94"/> | |
| 1223 | + <location filename="configinfodlg.cpp" line="72"/> | |
| 1213 | 1224 | <source>소프트웨어 버전</source> |
| 1214 | 1225 | <translation>Software Version</translation> |
| 1215 | 1226 | </message> |
| 1216 | 1227 | <message> |
| 1217 | - <location filename="configinfodlg.cpp" line="95"/> | |
| 1228 | + <location filename="configinfodlg.cpp" line="73"/> | |
| 1218 | 1229 | <source>현재모델</source> |
| 1219 | 1230 | <translation>Current Model</translation> |
| 1220 | 1231 | </message> |
| 1221 | 1232 | <message> |
| 1222 | - <location filename="configinfodlg.cpp" line="117"/> | |
| 1223 | - <location filename="configinfodlg.cpp" line="141"/> | |
| 1233 | + <location filename="configinfodlg.cpp" line="95"/> | |
| 1234 | + <location filename="configinfodlg.cpp" line="119"/> | |
| 1224 | 1235 | <source>연 락 처</source> |
| 1225 | 1236 | <translation>Contact Information</translation> |
| 1226 | 1237 | </message> |
| 1227 | 1238 | <message> |
| 1228 | - <location filename="configinfodlg.cpp" line="118"/> | |
| 1239 | + <location filename="configinfodlg.cpp" line="96"/> | |
| 1229 | 1240 | <source>이 름</source> |
| 1230 | 1241 | <translation>Name</translation> |
| 1231 | 1242 | </message> |
| 1232 | 1243 | <message> |
| 1233 | - <location filename="configinfodlg.cpp" line="119"/> | |
| 1234 | - <location filename="configinfodlg.cpp" line="142"/> | |
| 1244 | + <location filename="configinfodlg.cpp" line="97"/> | |
| 1245 | + <location filename="configinfodlg.cpp" line="120"/> | |
| 1235 | 1246 | <source>위치정보</source> |
| 1236 | 1247 | <translation>Location Information</translation> |
| 1237 | 1248 | </message> |
| ... | ... | @@ -1408,7 +1419,7 @@ Value</translation> |
| 1408 | 1419 | <message> |
| 1409 | 1420 | <location filename="configsteamwashdlg.ui" line="14"/> |
| 1410 | 1421 | <source>Dialog</source> |
| 1411 | - <translation></translation> | |
| 1422 | + <translation type="unfinished">Dialog</translation> | |
| 1412 | 1423 | </message> |
| 1413 | 1424 | <message> |
| 1414 | 1425 | <location filename="configsteamwashdlg.ui" line="59"/> |
| ... | ... | @@ -1597,8 +1608,8 @@ Value</translation> |
| 1597 | 1608 | <translation>Service</translation> |
| 1598 | 1609 | </message> |
| 1599 | 1610 | <message> |
| 1600 | - <location filename="configwindow.cpp" line="176"/> | |
| 1601 | - <location filename="configwindow.cpp" line="424"/> | |
| 1611 | + <location filename="configwindow.cpp" line="177"/> | |
| 1612 | + <location filename="configwindow.cpp" line="431"/> | |
| 1602 | 1613 | <source>현재 설정을 적용하시겠습니까?</source> |
| 1603 | 1614 | <translation>Do you want to apply current settings?</translation> |
| 1604 | 1615 | </message> |
| ... | ... | @@ -1948,10 +1959,10 @@ Control</translation> |
| 1948 | 1959 | <name>FileProcessDlg</name> |
| 1949 | 1960 | <message> |
| 1950 | 1961 | <location filename="fileprocessdlg.ui" line="100"/> |
| 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"/> | |
| 1962 | + <location filename="fileprocessdlg.cpp" line="434"/> | |
| 1963 | + <location filename="fileprocessdlg.cpp" line="450"/> | |
| 1964 | + <location filename="fileprocessdlg.cpp" line="466"/> | |
| 1965 | + <location filename="fileprocessdlg.cpp" line="819"/> | |
| 1955 | 1966 | <source>남은 예상 시간 : 1초</source> |
| 1956 | 1967 | <translation>Expected Remaining Time : 1 Second</translation> |
| 1957 | 1968 | </message> |
| ... | ... | @@ -1961,261 +1972,306 @@ Control</translation> |
| 1961 | 1972 | <translation>Cancel</translation> |
| 1962 | 1973 | </message> |
| 1963 | 1974 | <message> |
| 1964 | - <location filename="fileprocessdlg.cpp" line="319"/> | |
| 1975 | + <location filename="fileprocessdlg.cpp" line="391"/> | |
| 1965 | 1976 | <source>erro%1,</source> |
| 1966 | 1977 | <translation>erro%1,</translation> |
| 1967 | 1978 | </message> |
| 1968 | 1979 | <message> |
| 1969 | - <location filename="fileprocessdlg.cpp" line="353"/> | |
| 1970 | - <location filename="fileprocessdlg.cpp" line="369"/> | |
| 1971 | - <location filename="fileprocessdlg.cpp" line="385"/> | |
| 1980 | + <location filename="fileprocessdlg.cpp" line="425"/> | |
| 1981 | + <location filename="fileprocessdlg.cpp" line="441"/> | |
| 1982 | + <location filename="fileprocessdlg.cpp" line="457"/> | |
| 1972 | 1983 | <source>Gas Error History |
| 1973 | 1984 | </source> |
| 1974 | - <translation></translation> | |
| 1985 | + <translation>Gas Error History | |
| 1986 | +</translation> | |
| 1975 | 1987 | </message> |
| 1976 | 1988 | <message> |
| 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"/> | |
| 1989 | + <location filename="fileprocessdlg.cpp" line="426"/> | |
| 1990 | + <location filename="fileprocessdlg.cpp" line="442"/> | |
| 1991 | + <location filename="fileprocessdlg.cpp" line="458"/> | |
| 1992 | + <location filename="fileprocessdlg.cpp" line="474"/> | |
| 1981 | 1993 | <source>no,</source> |
| 1982 | 1994 | <translation>no,</translation> |
| 1983 | 1995 | </message> |
| 1984 | 1996 | <message> |
| 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"/> | |
| 1997 | + <location filename="fileprocessdlg.cpp" line="426"/> | |
| 1998 | + <location filename="fileprocessdlg.cpp" line="442"/> | |
| 1999 | + <location filename="fileprocessdlg.cpp" line="458"/> | |
| 2000 | + <location filename="fileprocessdlg.cpp" line="474"/> | |
| 1989 | 2001 | <source>First Appearance,</source> |
| 1990 | 2002 | <translation>First Appearance,</translation> |
| 1991 | 2003 | </message> |
| 1992 | 2004 | <message> |
| 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"/> | |
| 2005 | + <location filename="fileprocessdlg.cpp" line="426"/> | |
| 2006 | + <location filename="fileprocessdlg.cpp" line="442"/> | |
| 2007 | + <location filename="fileprocessdlg.cpp" line="458"/> | |
| 2008 | + <location filename="fileprocessdlg.cpp" line="474"/> | |
| 1997 | 2009 | <source>Counter,</source> |
| 1998 | 2010 | <translation></translation> |
| 1999 | 2011 | </message> |
| 2000 | 2012 | <message> |
| 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"/> | |
| 2013 | + <location filename="fileprocessdlg.cpp" line="426"/> | |
| 2014 | + <location filename="fileprocessdlg.cpp" line="442"/> | |
| 2015 | + <location filename="fileprocessdlg.cpp" line="458"/> | |
| 2016 | + <location filename="fileprocessdlg.cpp" line="474"/> | |
| 2005 | 2017 | <source>Last Appearance |
| 2006 | 2018 | </source> |
| 2007 | 2019 | <translation></translation> |
| 2008 | 2020 | </message> |
| 2009 | 2021 | <message> |
| 2010 | - <location filename="fileprocessdlg.cpp" line="401"/> | |
| 2022 | + <location filename="fileprocessdlg.cpp" line="473"/> | |
| 2011 | 2023 | <source>Service Error History |
| 2012 | 2024 | |
| 2013 | 2025 | </source> |
| 2014 | 2026 | <translation></translation> |
| 2015 | 2027 | </message> |
| 2016 | 2028 | <message> |
| 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"/> | |
| 2029 | + <location filename="fileprocessdlg.cpp" line="550"/> | |
| 2030 | + <location filename="fileprocessdlg.cpp" line="628"/> | |
| 2031 | + <location filename="fileprocessdlg.cpp" line="832"/> | |
| 2032 | + <location filename="fileprocessdlg.cpp" line="888"/> | |
| 2033 | + <location filename="fileprocessdlg.cpp" line="983"/> | |
| 2023 | 2034 | <source>남은 예상 시간 : 완료</source> |
| 2024 | 2035 | <translation>Expected Remaining Time : Finish</translation> |
| 2025 | 2036 | </message> |
| 2026 | 2037 | <message> |
| 2027 | - <location filename="fileprocessdlg.cpp" line="499"/> | |
| 2038 | + <location filename="fileprocessdlg.cpp" line="571"/> | |
| 2028 | 2039 | <source>,Steam Heating Time,</source> |
| 2029 | 2040 | <translation>,Steam Heating Time,</translation> |
| 2030 | 2041 | </message> |
| 2031 | 2042 | <message> |
| 2032 | - <location filename="fileprocessdlg.cpp" line="501"/> | |
| 2043 | + <location filename="fileprocessdlg.cpp" line="573"/> | |
| 2033 | 2044 | <source>,Hot Air Heating Time,</source> |
| 2034 | 2045 | <translation>,Hot Air Heating Time,</translation> |
| 2035 | 2046 | </message> |
| 2036 | 2047 | <message> |
| 2037 | - <location filename="fileprocessdlg.cpp" line="506"/> | |
| 2048 | + <location filename="fileprocessdlg.cpp" line="578"/> | |
| 2038 | 2049 | <source>,Hot Air Mode,</source> |
| 2039 | 2050 | <translation>,Hot Air Mode,</translation> |
| 2040 | 2051 | </message> |
| 2041 | 2052 | <message> |
| 2042 | - <location filename="fileprocessdlg.cpp" line="509"/> | |
| 2053 | + <location filename="fileprocessdlg.cpp" line="581"/> | |
| 2043 | 2054 | <source>,Steam Mode,</source> |
| 2044 | 2055 | <translation>,Steam Mode,</translation> |
| 2045 | 2056 | </message> |
| 2046 | 2057 | <message> |
| 2047 | - <location filename="fileprocessdlg.cpp" line="512"/> | |
| 2058 | + <location filename="fileprocessdlg.cpp" line="584"/> | |
| 2048 | 2059 | <source>,Combi Mode,</source> |
| 2049 | 2060 | <translation>,Combi Mode,</translation> |
| 2050 | 2061 | </message> |
| 2051 | 2062 | <message> |
| 2052 | - <location filename="fileprocessdlg.cpp" line="515"/> | |
| 2063 | + <location filename="fileprocessdlg.cpp" line="587"/> | |
| 2053 | 2064 | <source>,세제없이 헹굼,</source> |
| 2054 | 2065 | <translation>,Rinsing without Detergent,</translation> |
| 2055 | 2066 | </message> |
| 2056 | 2067 | <message> |
| 2057 | - <location filename="fileprocessdlg.cpp" line="518"/> | |
| 2068 | + <location filename="fileprocessdlg.cpp" line="590"/> | |
| 2058 | 2069 | <source>,간이세척,</source> |
| 2059 | 2070 | <translation>,Simple Cleaning,</translation> |
| 2060 | 2071 | </message> |
| 2061 | 2072 | <message> |
| 2062 | - <location filename="fileprocessdlg.cpp" line="521"/> | |
| 2073 | + <location filename="fileprocessdlg.cpp" line="593"/> | |
| 2063 | 2074 | <source>,표준세척,</source> |
| 2064 | 2075 | <translation>,Standard Cleaning,</translation> |
| 2065 | 2076 | </message> |
| 2066 | 2077 | <message> |
| 2067 | - <location filename="fileprocessdlg.cpp" line="524"/> | |
| 2078 | + <location filename="fileprocessdlg.cpp" line="596"/> | |
| 2068 | 2079 | <source>,강세척</source> |
| 2069 | 2080 | <translation>,Strong Cleaning</translation> |
| 2070 | 2081 | </message> |
| 2071 | 2082 | <message> |
| 2072 | - <location filename="fileprocessdlg.cpp" line="527"/> | |
| 2083 | + <location filename="fileprocessdlg.cpp" line="599"/> | |
| 2073 | 2084 | <source>,고속세척,</source> |
| 2074 | 2085 | <translation>,High Speed Cleaning,</translation> |
| 2075 | 2086 | </message> |
| 2076 | 2087 | <message> |
| 2077 | - <location filename="fileprocessdlg.cpp" line="530"/> | |
| 2088 | + <location filename="fileprocessdlg.cpp" line="602"/> | |
| 2078 | 2089 | <source>,쿨다운,</source> |
| 2079 | 2090 | <translation>,Cool Down,</translation> |
| 2080 | 2091 | </message> |
| 2081 | 2092 | <message> |
| 2082 | - <location filename="fileprocessdlg.cpp" line="532"/> | |
| 2093 | + <location filename="fileprocessdlg.cpp" line="604"/> | |
| 2083 | 2094 | <source>,전체작동시간,</source> |
| 2084 | 2095 | <translation>,Total Operation Tine,</translation> |
| 2085 | 2096 | </message> |
| 2086 | 2097 | <message> |
| 2087 | - <location filename="fileprocessdlg.cpp" line="536"/> | |
| 2098 | + <location filename="fileprocessdlg.cpp" line="608"/> | |
| 2088 | 2099 | <source>,도어 Open,</source> |
| 2089 | 2100 | <translation>,Door Open,</translation> |
| 2090 | 2101 | </message> |
| 2091 | 2102 | <message> |
| 2092 | - <location filename="fileprocessdlg.cpp" line="538"/> | |
| 2103 | + <location filename="fileprocessdlg.cpp" line="610"/> | |
| 2093 | 2104 | <source>,볼밸브 Open,</source> |
| 2094 | 2105 | <translation>,Ball Valve Open,</translation> |
| 2095 | 2106 | </message> |
| 2096 | 2107 | <message> |
| 2097 | - <location filename="fileprocessdlg.cpp" line="540"/> | |
| 2108 | + <location filename="fileprocessdlg.cpp" line="612"/> | |
| 2098 | 2109 | <source>,S/G 급수 솔레노이드,</source> |
| 2099 | 2110 | <translation>,S/G Water Supply Solenoid,</translation> |
| 2100 | 2111 | </message> |
| 2101 | 2112 | <message> |
| 2102 | - <location filename="fileprocessdlg.cpp" line="542"/> | |
| 2113 | + <location filename="fileprocessdlg.cpp" line="614"/> | |
| 2103 | 2114 | <source>,퀀칭 솔레노이드,</source> |
| 2104 | 2115 | <translation>,Quenching Solenoid,</translation> |
| 2105 | 2116 | </message> |
| 2106 | 2117 | <message> |
| 2107 | - <location filename="fileprocessdlg.cpp" line="544"/> | |
| 2118 | + <location filename="fileprocessdlg.cpp" line="616"/> | |
| 2108 | 2119 | <source>,고내살수 노즐 솔레노이드 ,</source> |
| 2109 | 2120 | <translation>,Inside-storage Water Spray Nozzle Solenoid,</translation> |
| 2110 | 2121 | </message> |
| 2111 | 2122 | <message> |
| 2112 | - <location filename="fileprocessdlg.cpp" line="546"/> | |
| 2123 | + <location filename="fileprocessdlg.cpp" line="618"/> | |
| 2113 | 2124 | <source>,호스릴 솔레노이드,</source> |
| 2114 | 2125 | <translation>,Hose Reel Solenoid,</translation> |
| 2115 | 2126 | </message> |
| 2116 | 2127 | <message> |
| 2117 | - <location filename="fileprocessdlg.cpp" line="548"/> | |
| 2128 | + <location filename="fileprocessdlg.cpp" line="620"/> | |
| 2118 | 2129 | <source>,세제공급장치,</source> |
| 2119 | 2130 | <translation>,Detergent Supply Device,</translation> |
| 2120 | 2131 | </message> |
| 2121 | 2132 | <message> |
| 2122 | - <location filename="fileprocessdlg.cpp" line="550"/> | |
| 2133 | + <location filename="fileprocessdlg.cpp" line="622"/> | |
| 2123 | 2134 | <source>,배습댐퍼,</source> |
| 2124 | 2135 | <translation>,Moisture-discharging Damper,</translation> |
| 2125 | 2136 | </message> |
| 2126 | 2137 | <message> |
| 2127 | - <location filename="fileprocessdlg.cpp" line="552"/> | |
| 2138 | + <location filename="fileprocessdlg.cpp" line="624"/> | |
| 2128 | 2139 | <source>,소형펌프모터,</source> |
| 2129 | 2140 | <translation>,Small Pump Motor,</translation> |
| 2130 | 2141 | </message> |
| 2131 | 2142 | <message> |
| 2132 | - <location filename="fileprocessdlg.cpp" line="554"/> | |
| 2143 | + <location filename="fileprocessdlg.cpp" line="626"/> | |
| 2133 | 2144 | <source>,중형펌프모터,</source> |
| 2134 | 2145 | <translation>,Medium size Pump Motor,</translation> |
| 2135 | 2146 | </message> |
| 2136 | 2147 | <message> |
| 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"/> | |
| 2148 | + <location filename="fileprocessdlg.cpp" line="656"/> | |
| 2149 | + <location filename="fileprocessdlg.cpp" line="800"/> | |
| 2150 | + <location filename="fileprocessdlg.cpp" line="841"/> | |
| 2151 | + <location filename="fileprocessdlg.cpp" line="897"/> | |
| 2152 | + <location filename="fileprocessdlg.cpp" line="931"/> | |
| 2153 | + <location filename="fileprocessdlg.cpp" line="993"/> | |
| 2142 | 2154 | <source>USB 인식을 실패하였습니다.</source> |
| 2143 | 2155 | <translation>USB recognition failed.</translation> |
| 2144 | 2156 | </message> |
| 2145 | 2157 | <message> |
| 2146 | - <location filename="fileprocessdlg.cpp" line="649"/> | |
| 2158 | + <location filename="fileprocessdlg.cpp" line="719"/> | |
| 2159 | + <source>Program & CookBook Upload Success!.</source> | |
| 2160 | + <translation></translation> | |
| 2161 | + </message> | |
| 2162 | + <message> | |
| 2163 | + <location filename="fileprocessdlg.cpp" line="721"/> | |
| 2147 | 2164 | <source>CookBook Upload Success!.</source> |
| 2148 | - <translation type="unfinished"></translation> | |
| 2165 | + <translation></translation> | |
| 2149 | 2166 | </message> |
| 2150 | 2167 | <message> |
| 2151 | - <location filename="fileprocessdlg.cpp" line="653"/> | |
| 2152 | - <source>완료</source> | |
| 2153 | - <translation>Finished</translation> | |
| 2168 | + <location filename="fileprocessdlg.cpp" line="727"/> | |
| 2169 | + <source>Program Upload Success</source> | |
| 2170 | + <translation></translation> | |
| 2154 | 2171 | </message> |
| 2155 | 2172 | <message> |
| 2156 | - <location filename="fileprocessdlg.cpp" line="661"/> | |
| 2157 | - <source>에러 발생으로 종료합니다.</source> | |
| 2158 | - <translation type="unfinished"></translation> | |
| 2173 | + <location filename="fileprocessdlg.cpp" line="731"/> | |
| 2174 | + <source>Program Upload Fail</source> | |
| 2175 | + <translation></translation> | |
| 2176 | + </message> | |
| 2177 | + <message> | |
| 2178 | + <location filename="fileprocessdlg.cpp" line="736"/> | |
| 2179 | + <source>완료</source> | |
| 2180 | + <translation>Finished</translation> | |
| 2159 | 2181 | </message> |
| 2160 | 2182 | <message> |
| 2161 | - <location filename="fileprocessdlg.cpp" line="672"/> | |
| 2183 | + <location filename="fileprocessdlg.cpp" line="756"/> | |
| 2162 | 2184 | <source>남은 예상 시간 : %1분 %2초</source> |
| 2163 | 2185 | <translation>Expected Remaining Time : %1min %2sec</translation> |
| 2164 | 2186 | </message> |
| 2165 | 2187 | <message> |
| 2166 | - <location filename="fileprocessdlg.cpp" line="676"/> | |
| 2188 | + <location filename="fileprocessdlg.cpp" line="760"/> | |
| 2167 | 2189 | <source>남은 예상 시간 : %1초</source> |
| 2168 | 2190 | <translation>Expected Remaining Time : %1 sec</translation> |
| 2169 | 2191 | </message> |
| 2170 | 2192 | <message> |
| 2171 | - <location filename="fileprocessdlg.cpp" line="738"/> | |
| 2193 | + <location filename="fileprocessdlg.cpp" line="822"/> | |
| 2172 | 2194 | <source>설정 다운로드에 실패하였습니다.</source> |
| 2173 | 2195 | <translation>Setting download failed.</translation> |
| 2174 | 2196 | </message> |
| 2175 | 2197 | <message> |
| 2176 | - <location filename="fileprocessdlg.cpp" line="752"/> | |
| 2198 | + <location filename="fileprocessdlg.cpp" line="836"/> | |
| 2177 | 2199 | <source>즐겨찾기 다운로드에 실패하였습니다.</source> |
| 2178 | 2200 | <translation>Bookmark download failed.</translation> |
| 2179 | 2201 | </message> |
| 2180 | 2202 | <message> |
| 2181 | - <location filename="fileprocessdlg.cpp" line="777"/> | |
| 2182 | - <location filename="fileprocessdlg.cpp" line="783"/> | |
| 2183 | - <location filename="fileprocessdlg.cpp" line="793"/> | |
| 2203 | + <location filename="fileprocessdlg.cpp" line="861"/> | |
| 2204 | + <location filename="fileprocessdlg.cpp" line="867"/> | |
| 2205 | + <location filename="fileprocessdlg.cpp" line="877"/> | |
| 2184 | 2206 | <source>설정 업로드에 실패하였습니다.</source> |
| 2185 | 2207 | <translation>Setting upload failed.</translation> |
| 2186 | 2208 | </message> |
| 2187 | 2209 | <message> |
| 2188 | - <location filename="fileprocessdlg.cpp" line="808"/> | |
| 2210 | + <location filename="fileprocessdlg.cpp" line="892"/> | |
| 2189 | 2211 | <source>즐겨찾기 업로드에 실패하였습니다.</source> |
| 2190 | 2212 | <translation>Bookmark upload failed.</translation> |
| 2191 | 2213 | </message> |
| 2192 | 2214 | <message> |
| 2193 | - <location filename="fileprocessdlg.cpp" line="837"/> | |
| 2215 | + <location filename="fileprocessdlg.cpp" line="949"/> | |
| 2194 | 2216 | <source>남은 예상 시간 : 2초</source> |
| 2195 | 2217 | <translation>Expected Remaining Time : 2 sec</translation> |
| 2196 | 2218 | </message> |
| 2197 | 2219 | <message> |
| 2198 | - <location filename="fileprocessdlg.cpp" line="840"/> | |
| 2220 | + <location filename="fileprocessdlg.cpp" line="952"/> | |
| 2199 | 2221 | <source>모델 정보 업로드에 실패하였습니다.</source> |
| 2200 | 2222 | <translation>model Information upload failed.</translation> |
| 2201 | 2223 | </message> |
| 2202 | 2224 | <message> |
| 2203 | - <location filename="fileprocessdlg.cpp" line="853"/> | |
| 2225 | + <location filename="fileprocessdlg.cpp" line="967"/> | |
| 2204 | 2226 | <source>남은 예상 시간 : 1</source> |
| 2205 | 2227 | <translation>Expected Remaining Time : 1</translation> |
| 2206 | 2228 | </message> |
| 2207 | 2229 | <message> |
| 2208 | - <location filename="fileprocessdlg.cpp" line="857"/> | |
| 2230 | + <location filename="fileprocessdlg.cpp" line="971"/> | |
| 2209 | 2231 | <source>핫라인 쉐프 정보 업로드에 실패하였습니다.</source> |
| 2210 | 2232 | <translation>Hot Line - Chef Setting upload failed.</translation> |
| 2211 | 2233 | </message> |
| 2212 | 2234 | <message> |
| 2213 | - <location filename="fileprocessdlg.cpp" line="874"/> | |
| 2235 | + <location filename="fileprocessdlg.cpp" line="988"/> | |
| 2214 | 2236 | <source>핫라인 서비스 정보 업로드에 실패하였습니다.</source> |
| 2215 | 2237 | <translation>Hot Line - Service Setting upload failed.</translation> |
| 2216 | 2238 | </message> |
| 2217 | 2239 | </context> |
| 2218 | 2240 | <context> |
| 2241 | + <name>FlushWaterWindow</name> | |
| 2242 | + <message> | |
| 2243 | + <location filename="flushwaterwindow.ui" line="14"/> | |
| 2244 | + <source>MainWindow</source> | |
| 2245 | + <translation></translation> | |
| 2246 | + </message> | |
| 2247 | + <message> | |
| 2248 | + <location filename="flushwaterwindow.ui" line="157"/> | |
| 2249 | + <source>동파 방지 실행 중입니다</source> | |
| 2250 | + <translation type="unfinished"></translation> | |
| 2251 | + </message> | |
| 2252 | + <message> | |
| 2253 | + <location filename="flushwaterwindow.ui" line="219"/> | |
| 2254 | + <source>완료될 때까지 문을 열지 마세요. | |
| 2255 | +동파 방지 기능을 실행 중입니다.</source> | |
| 2256 | + <translation type="unfinished"></translation> | |
| 2257 | + </message> | |
| 2258 | + <message> | |
| 2259 | + <location filename="flushwaterwindow.ui" line="297"/> | |
| 2260 | + <source>실행 중</source> | |
| 2261 | + <translation type="unfinished"></translation> | |
| 2262 | + </message> | |
| 2263 | + <message> | |
| 2264 | + <location filename="flushwaterwindow.cpp" line="57"/> | |
| 2265 | + <source>동파 방지 실행이 완료되었습니다. 전원을 OFF 해주십시오</source> | |
| 2266 | + <translation type="unfinished"></translation> | |
| 2267 | + </message> | |
| 2268 | + <message> | |
| 2269 | + <location filename="flushwaterwindow.cpp" line="57"/> | |
| 2270 | + <source>취소</source> | |
| 2271 | + <translation>Cancel</translation> | |
| 2272 | + </message> | |
| 2273 | +</context> | |
| 2274 | +<context> | |
| 2219 | 2275 | <name>FormatterSpinBox</name> |
| 2220 | 2276 | <message> |
| 2221 | 2277 | <location filename="formatterspinbox.cpp" line="24"/> |
| ... | ... | @@ -2389,17 +2445,17 @@ Control</translation> |
| 2389 | 2445 | <message> |
| 2390 | 2446 | <location filename="gastestwindow.ui" line="204"/> |
| 2391 | 2447 | <source>RPM</source> |
| 2392 | - <translation type="unfinished"></translation> | |
| 2448 | + <translation></translation> | |
| 2393 | 2449 | </message> |
| 2394 | 2450 | <message> |
| 2395 | 2451 | <location filename="gastestwindow.ui" line="260"/> |
| 2396 | 2452 | <source>Max-RPM</source> |
| 2397 | - <translation type="unfinished"></translation> | |
| 2453 | + <translation></translation> | |
| 2398 | 2454 | </message> |
| 2399 | 2455 | <message> |
| 2400 | 2456 | <location filename="gastestwindow.ui" line="316"/> |
| 2401 | 2457 | <source>Min-RPM</source> |
| 2402 | - <translation type="unfinished"></translation> | |
| 2458 | + <translation></translation> | |
| 2403 | 2459 | </message> |
| 2404 | 2460 | <message> |
| 2405 | 2461 | <location filename="gastestwindow.ui" line="388"/> |
| ... | ... | @@ -2410,7 +2466,7 @@ Control</translation> |
| 2410 | 2466 | <message> |
| 2411 | 2467 | <location filename="gastestwindow.ui" line="507"/> |
| 2412 | 2468 | <source>0 rpm</source> |
| 2413 | - <translation type="unfinished">1400 rpm {0 ?}</translation> | |
| 2469 | + <translation></translation> | |
| 2414 | 2470 | </message> |
| 2415 | 2471 | <message> |
| 2416 | 2472 | <location filename="gastestwindow.cpp" line="25"/> |
| ... | ... | @@ -2424,6 +2480,32 @@ Control</translation> |
| 2424 | 2480 | </message> |
| 2425 | 2481 | </context> |
| 2426 | 2482 | <context> |
| 2483 | + <name>HaccpDownloadDlg</name> | |
| 2484 | + <message> | |
| 2485 | + <location filename="haccpdownloaddlg.ui" line="89"/> | |
| 2486 | + <source>HACCP 데이터 다운로드</source> | |
| 2487 | + <translation>HACCP Data Download</translation> | |
| 2488 | + </message> | |
| 2489 | + <message> | |
| 2490 | + <location filename="haccpdownloaddlg.ui" line="184"/> | |
| 2491 | + <location filename="haccpdownloaddlg.ui" line="374"/> | |
| 2492 | + <source>년</source> | |
| 2493 | + <translation>Y</translation> | |
| 2494 | + </message> | |
| 2495 | + <message> | |
| 2496 | + <location filename="haccpdownloaddlg.ui" line="237"/> | |
| 2497 | + <location filename="haccpdownloaddlg.ui" line="427"/> | |
| 2498 | + <source>월</source> | |
| 2499 | + <translation>M</translation> | |
| 2500 | + </message> | |
| 2501 | + <message> | |
| 2502 | + <location filename="haccpdownloaddlg.ui" line="290"/> | |
| 2503 | + <location filename="haccpdownloaddlg.ui" line="480"/> | |
| 2504 | + <source>일</source> | |
| 2505 | + <translation>D</translation> | |
| 2506 | + </message> | |
| 2507 | +</context> | |
| 2508 | +<context> | |
| 2427 | 2509 | <name>HistoryListWindow</name> |
| 2428 | 2510 | <message> |
| 2429 | 2511 | <location filename="historylistwindow.ui" line="263"/> |
| ... | ... | @@ -2551,25 +2633,25 @@ Control</translation> |
| 2551 | 2633 | <location filename="historylistwindow.h" line="41"/> |
| 2552 | 2634 | <source>상부점화장치</source> |
| 2553 | 2635 | <oldsource>상부점화장치</oldsource> |
| 2554 | - <translation type="unfinished">Upper Part Ignition Device</translation> | |
| 2636 | + <translation>Upper Part Ignition Device</translation> | |
| 2555 | 2637 | </message> |
| 2556 | 2638 | <message> |
| 2557 | 2639 | <location filename="historylistwindow.h" line="42"/> |
| 2558 | 2640 | <source>스팀점화장치</source> |
| 2559 | 2641 | <oldsource>스팀점화장치</oldsource> |
| 2560 | - <translation type="unfinished">Steam Ignition Device</translation> | |
| 2642 | + <translation>Steam Ignition Device</translation> | |
| 2561 | 2643 | </message> |
| 2562 | 2644 | <message> |
| 2563 | 2645 | <location filename="historylistwindow.h" line="43"/> |
| 2564 | 2646 | <source>하부점화장치</source> |
| 2565 | 2647 | <oldsource>하부점화장치</oldsource> |
| 2566 | - <translation type="unfinished">Lower Part Ignition Device</translation> | |
| 2648 | + <translation>Lower Part Ignition Device</translation> | |
| 2567 | 2649 | </message> |
| 2568 | 2650 | <message> |
| 2569 | 2651 | <location filename="historylistwindow.h" line="44"/> |
| 2570 | 2652 | <source>서비스에러기록종합</source> |
| 2571 | 2653 | <oldsource>서비스에러기록종합</oldsource> |
| 2572 | - <translation type="unfinished">Total Service Error Record</translation> | |
| 2654 | + <translation>Total Service Error Record</translation> | |
| 2573 | 2655 | </message> |
| 2574 | 2656 | </context> |
| 2575 | 2657 | <context> |
| ... | ... | @@ -2702,7 +2784,7 @@ Control</translation> |
| 2702 | 2784 | <translation type="vanished">V0.3.4</translation> |
| 2703 | 2785 | </message> |
| 2704 | 2786 | <message> |
| 2705 | - <location filename="mainwindow.cpp" line="137"/> | |
| 2787 | + <location filename="mainwindow.cpp" line="142"/> | |
| 2706 | 2788 | <source>세척이 정상적으로 종료되지 않아 |
| 2707 | 2789 | 반드시 세척통을 자동 세척해야 합니다. |
| 2708 | 2790 | 내부를 비워주세요</source> |
| ... | ... | @@ -2824,48 +2906,48 @@ Control</translation> |
| 2824 | 2906 | <translation>tool</translation> |
| 2825 | 2907 | </message> |
| 2826 | 2908 | <message> |
| 2827 | - <location filename="manualcookwindow.cpp" line="702"/> | |
| 2828 | - <location filename="manualcookwindow.cpp" line="712"/> | |
| 2909 | + <location filename="manualcookwindow.cpp" line="711"/> | |
| 2910 | + <location filename="manualcookwindow.cpp" line="721"/> | |
| 2829 | 2911 | <source>문을 닫아주세요</source> |
| 2830 | 2912 | <translation>Please close the door</translation> |
| 2831 | 2913 | </message> |
| 2832 | 2914 | <message> |
| 2833 | - <location filename="manualcookwindow.cpp" line="702"/> | |
| 2915 | + <location filename="manualcookwindow.cpp" line="711"/> | |
| 2834 | 2916 | <source>조리 중 문 열림 시간 모니터링 1단계</source> |
| 2835 | 2917 | <translation>Monitoring stage 1 of door open time during cooking </translation> |
| 2836 | 2918 | </message> |
| 2837 | 2919 | <message> |
| 2838 | - <location filename="manualcookwindow.cpp" line="712"/> | |
| 2920 | + <location filename="manualcookwindow.cpp" line="721"/> | |
| 2839 | 2921 | <source>조리 중 문 열림 시간 모니터링 2단계</source> |
| 2840 | 2922 | <translation>Monitoring stage 2 of door open time during cooking </translation> |
| 2841 | 2923 | </message> |
| 2842 | 2924 | <message> |
| 2843 | - <location filename="manualcookwindow.cpp" line="722"/> | |
| 2925 | + <location filename="manualcookwindow.cpp" line="731"/> | |
| 2844 | 2926 | <source>문이 오래 열려있어 조리가 취소되었습니다</source> |
| 2845 | 2927 | <translation>The door is opened for a long time, so cooking is cancelled</translation> |
| 2846 | 2928 | </message> |
| 2847 | 2929 | <message> |
| 2848 | - <location filename="manualcookwindow.cpp" line="722"/> | |
| 2930 | + <location filename="manualcookwindow.cpp" line="731"/> | |
| 2849 | 2931 | <source>조리 중 문 열림 시간 모니터링 3단계</source> |
| 2850 | 2932 | <translation>Monitoring stage 3 of door open time during cooking</translation> |
| 2851 | 2933 | </message> |
| 2852 | 2934 | <message> |
| 2853 | - <location filename="manualcookwindow.cpp" line="1059"/> | |
| 2935 | + <location filename="manualcookwindow.cpp" line="1068"/> | |
| 2854 | 2936 | <source>즐겨찾기 항목에 추가하시겠습니까?</source> |
| 2855 | 2937 | <translation>Do you want to add it to bookmark?</translation> |
| 2856 | 2938 | </message> |
| 2857 | 2939 | <message> |
| 2858 | - <location filename="manualcookwindow.cpp" line="1090"/> | |
| 2940 | + <location filename="manualcookwindow.cpp" line="1099"/> | |
| 2859 | 2941 | <source>요리가 중단되고 환경 설정 모드로 들어갑니다. 진행할까요?</source> |
| 2860 | 2942 | <translation>Cooking stops and the system goes to configuration mode. Do you want to proceed?</translation> |
| 2861 | 2943 | </message> |
| 2862 | 2944 | <message> |
| 2863 | - <location filename="manualcookwindow.cpp" line="1113"/> | |
| 2945 | + <location filename="manualcookwindow.cpp" line="1122"/> | |
| 2864 | 2946 | <source>요리가 중단되고 즐겨찾기 모드로 들어갑니다. 진행할까요?</source> |
| 2865 | 2947 | <translation>Cooking stops and the system goes to bookmark mode. Do you want to proceed?</translation> |
| 2866 | 2948 | </message> |
| 2867 | 2949 | <message> |
| 2868 | - <location filename="manualcookwindow.cpp" line="1137"/> | |
| 2950 | + <location filename="manualcookwindow.cpp" line="1146"/> | |
| 2869 | 2951 | <source>요리가 중단되고 자동 세척 모드로 들어갑니다. 진행할까요?</source> |
| 2870 | 2952 | <translation>Cooking stops and the system goes to automatic cleaning mode. Do you want to proceed?</translation> |
| 2871 | 2953 | </message> |
| ... | ... | @@ -2903,7 +2985,7 @@ Control</translation> |
| 2903 | 2985 | <message> |
| 2904 | 2986 | <location filename="multicookautowindow.cpp" line="140"/> |
| 2905 | 2987 | <source>다중 요리 목록에 추가하시겠습니까?</source> |
| 2906 | - <translation type="unfinished"></translation> | |
| 2988 | + <translation>Add to multiple cooking list?</translation> | |
| 2907 | 2989 | </message> |
| 2908 | 2990 | </context> |
| 2909 | 2991 | <context> |
| ... | ... | @@ -2911,44 +2993,44 @@ Control</translation> |
| 2911 | 2993 | <message> |
| 2912 | 2994 | <location filename="multicookmanualwindow.ui" line="81"/> |
| 2913 | 2995 | <source>건열</source> |
| 2914 | - <translation type="unfinished">Dry Heat</translation> | |
| 2996 | + <translation>Dry Heat</translation> | |
| 2915 | 2997 | </message> |
| 2916 | 2998 | <message> |
| 2917 | 2999 | <location filename="multicookmanualwindow.ui" line="170"/> |
| 2918 | 3000 | <source>0%</source> |
| 2919 | - <translation type="unfinished">0%</translation> | |
| 3001 | + <translation>0%</translation> | |
| 2920 | 3002 | </message> |
| 2921 | 3003 | <message> |
| 2922 | 3004 | <location filename="multicookmanualwindow.ui" line="232"/> |
| 2923 | 3005 | <location filename="multicookmanualwindow.ui" line="378"/> |
| 2924 | 3006 | <source>감소</source> |
| 2925 | - <translation type="unfinished">Decrease</translation> | |
| 3007 | + <translation>Decrease</translation> | |
| 2926 | 3008 | </message> |
| 2927 | 3009 | <message> |
| 2928 | 3010 | <location filename="multicookmanualwindow.ui" line="294"/> |
| 2929 | 3011 | <location filename="multicookmanualwindow.ui" line="709"/> |
| 2930 | 3012 | <source>증가</source> |
| 2931 | - <translation type="unfinished">Increase</translation> | |
| 3013 | + <translation>Increase</translation> | |
| 2932 | 3014 | </message> |
| 2933 | 3015 | <message> |
| 2934 | 3016 | <location filename="multicookmanualwindow.ui" line="503"/> |
| 2935 | 3017 | <source>0<span style="font-size:11pt;">초</span></source> |
| 2936 | - <translation type="unfinished"></translation> | |
| 3018 | + <translation>0<span style="font-size:11pt;">Sec</span></translation> | |
| 2937 | 3019 | </message> |
| 2938 | 3020 | <message> |
| 2939 | 3021 | <location filename="multicookmanualwindow.ui" line="527"/> |
| 2940 | 3022 | <source>콤비</source> |
| 2941 | - <translation type="unfinished">Combi</translation> | |
| 3023 | + <translation>Combi</translation> | |
| 2942 | 3024 | </message> |
| 2943 | 3025 | <message> |
| 2944 | 3026 | <location filename="multicookmanualwindow.ui" line="580"/> |
| 2945 | 3027 | <source>스팀</source> |
| 2946 | - <translation type="unfinished">Steam</translation> | |
| 3028 | + <translation>Steam</translation> | |
| 2947 | 3029 | </message> |
| 2948 | 3030 | <message> |
| 2949 | 3031 | <location filename="multicookmanualwindow.ui" line="647"/> |
| 2950 | 3032 | <source>30<span style="font-size:11pt;">℃</span></source> |
| 2951 | - <translation type="unfinished">30<span style="font-size:11pt;">℃</span></translation> | |
| 3033 | + <translation>30<span style="font-size:11pt;">℃</span></translation> | |
| 2952 | 3034 | </message> |
| 2953 | 3035 | </context> |
| 2954 | 3036 | <context> |
| ... | ... | @@ -2956,100 +3038,102 @@ Control</translation> |
| 2956 | 3038 | <message> |
| 2957 | 3039 | <location filename="multicookselectionwindow.ui" line="78"/> |
| 2958 | 3040 | <source>건열</source> |
| 2959 | - <translation type="unfinished">Dry Heat</translation> | |
| 3041 | + <translation>Dry Heat</translation> | |
| 2960 | 3042 | </message> |
| 2961 | 3043 | <message> |
| 2962 | 3044 | <location filename="multicookselectionwindow.ui" line="121"/> |
| 2963 | 3045 | <source>채소및곡류</source> |
| 2964 | - <translation type="unfinished"></translation> | |
| 3046 | + <translation>Veg&Cereals</translation> | |
| 2965 | 3047 | </message> |
| 2966 | 3048 | <message> |
| 2967 | 3049 | <location filename="multicookselectionwindow.ui" line="164"/> |
| 2968 | 3050 | <source>제과제빵류</source> |
| 2969 | - <translation type="unfinished"></translation> | |
| 3051 | + <translation>Bread</translation> | |
| 2970 | 3052 | </message> |
| 2971 | 3053 | <message> |
| 2972 | 3054 | <location filename="multicookselectionwindow.ui" line="207"/> |
| 2973 | 3055 | <source>육류</source> |
| 2974 | - <translation type="unfinished">Meat</translation> | |
| 3056 | + <translation>Meat</translation> | |
| 2975 | 3057 | </message> |
| 2976 | 3058 | <message> |
| 2977 | 3059 | <location filename="multicookselectionwindow.ui" line="250"/> |
| 2978 | 3060 | <source>디저트류</source> |
| 2979 | - <translation type="unfinished">Dessert</translation> | |
| 3061 | + <translation>Dessert</translation> | |
| 2980 | 3062 | </message> |
| 2981 | 3063 | <message> |
| 2982 | 3064 | <location filename="multicookselectionwindow.ui" line="280"/> |
| 2983 | 3065 | <source>가금류</source> |
| 2984 | - <translation type="unfinished">Poultry</translation> | |
| 3066 | + <translation>Poultry</translation> | |
| 2985 | 3067 | </message> |
| 2986 | 3068 | <message> |
| 2987 | 3069 | <location filename="multicookselectionwindow.ui" line="304"/> |
| 2988 | 3070 | <source>콤비</source> |
| 2989 | - <translation type="unfinished">Combi</translation> | |
| 3071 | + <translation>Combi</translation> | |
| 2990 | 3072 | </message> |
| 2991 | 3073 | <message> |
| 2992 | 3074 | <location filename="multicookselectionwindow.ui" line="337"/> |
| 2993 | 3075 | <source>다중요리</source> |
| 2994 | - <translation type="unfinished">Multiple Cooking</translation> | |
| 3076 | + <translation>Multiple Cooking</translation> | |
| 2995 | 3077 | </message> |
| 2996 | 3078 | <message> |
| 2997 | 3079 | <location filename="multicookselectionwindow.ui" line="370"/> |
| 2998 | 3080 | <source>프로그래밍모드</source> |
| 2999 | - <translation type="unfinished">Programming Mode</translation> | |
| 3081 | + <translation>Programming Mode</translation> | |
| 3000 | 3082 | </message> |
| 3001 | 3083 | <message> |
| 3002 | 3084 | <location filename="multicookselectionwindow.ui" line="413"/> |
| 3003 | 3085 | <source>기타요리</source> |
| 3004 | - <translation type="unfinished"></translation> | |
| 3086 | + <translation>Others</translation> | |
| 3005 | 3087 | </message> |
| 3006 | 3088 | <message> |
| 3007 | 3089 | <location filename="multicookselectionwindow.ui" line="459"/> |
| 3008 | 3090 | <source>세척모드</source> |
| 3009 | - <translation type="unfinished">Cleaning Mode</translation> | |
| 3091 | + <translation>Cleaning Mode</translation> | |
| 3010 | 3092 | </message> |
| 3011 | 3093 | <message> |
| 3012 | 3094 | <location filename="multicookselectionwindow.ui" line="489"/> |
| 3013 | 3095 | <source>부가기능</source> |
| 3014 | - <translation type="unfinished"></translation> | |
| 3096 | + <translation>Add-ons</translation> | |
| 3015 | 3097 | </message> |
| 3016 | 3098 | <message> |
| 3017 | 3099 | <location filename="multicookselectionwindow.ui" line="617"/> |
| 3018 | 3100 | <source>스팀</source> |
| 3019 | - <translation type="unfinished">Steam</translation> | |
| 3101 | + <translation>Steam</translation> | |
| 3020 | 3102 | </message> |
| 3021 | 3103 | <message> |
| 3022 | 3104 | <location filename="multicookselectionwindow.ui" line="647"/> |
| 3023 | 3105 | <source>생선류</source> |
| 3024 | - <translation type="unfinished">Fishes</translation> | |
| 3106 | + <translation>Fishes</translation> | |
| 3025 | 3107 | </message> |
| 3026 | 3108 | <message> |
| 3027 | 3109 | <location filename="multicookselectionwindow.ui" line="702"/> |
| 3028 | 3110 | <location filename="multicookselectionwindow.cpp" line="83"/> |
| 3029 | 3111 | <source>1. 다중 요리에서 사용할 요리 카테고리를 선택해주세요 |
| 3030 | 3112 | 2. 스팀, 콤비, 건열 중에서 선택하시면 자동으로 다음 단계로 진행됩니다</source> |
| 3031 | - <translation type="unfinished"></translation> | |
| 3113 | + <translation>1. Please select the category to be used for multiple cooking | |
| 3114 | +2. choice from Steam, combi or dry it will automatically proceed to the next step</translation> | |
| 3032 | 3115 | </message> |
| 3033 | 3116 | <message> |
| 3034 | 3117 | <location filename="multicookselectionwindow.cpp" line="103"/> |
| 3035 | 3118 | <source>스팀을</source> |
| 3036 | - <translation type="unfinished"></translation> | |
| 3119 | + <translation>Steam</translation> | |
| 3037 | 3120 | </message> |
| 3038 | 3121 | <message> |
| 3039 | 3122 | <location filename="multicookselectionwindow.cpp" line="106"/> |
| 3040 | 3123 | <source>콤비를</source> |
| 3041 | - <translation type="unfinished"></translation> | |
| 3124 | + <translation>Combi</translation> | |
| 3042 | 3125 | </message> |
| 3043 | 3126 | <message> |
| 3044 | 3127 | <location filename="multicookselectionwindow.cpp" line="109"/> |
| 3045 | 3128 | <source>건열을</source> |
| 3046 | - <translation type="unfinished"></translation> | |
| 3129 | + <translation>Dry Heat</translation> | |
| 3047 | 3130 | </message> |
| 3048 | 3131 | <message> |
| 3049 | 3132 | <location filename="multicookselectionwindow.cpp" line="113"/> |
| 3050 | 3133 | <source>1. %1 선택하였습니다 |
| 3051 | 3134 | 2. 수동 메뉴 혹은 원하시는 자동 메뉴 상세 목록을 선택하세요</source> |
| 3052 | - <translation type="unfinished"></translation> | |
| 3135 | + <translation>1. %1 mode is selected | |
| 3136 | +2. Select the manual menu or the desired auto menu list</translation> | |
| 3053 | 3137 | </message> |
| 3054 | 3138 | </context> |
| 3055 | 3139 | <context> |
| ... | ... | @@ -3057,7 +3141,7 @@ Control</translation> |
| 3057 | 3141 | <message> |
| 3058 | 3142 | <location filename="multicookwindow.ui" line="14"/> |
| 3059 | 3143 | <source>MainWindow</source> |
| 3060 | - <translation type="unfinished"></translation> | |
| 3144 | + <translation></translation> | |
| 3061 | 3145 | </message> |
| 3062 | 3146 | <message> |
| 3063 | 3147 | <location filename="multicookwindow.ui" line="113"/> |
| ... | ... | @@ -3073,7 +3157,7 @@ Control</translation> |
| 3073 | 3157 | <message> |
| 3074 | 3158 | <location filename="multicookwindow.ui" line="538"/> |
| 3075 | 3159 | <source>다중 요리 최근 요리 목록입니다</source> |
| 3076 | - <translation type="unfinished"></translation> | |
| 3160 | + <translation>Multiple cooking list of recently cooked</translation> | |
| 3077 | 3161 | </message> |
| 3078 | 3162 | <message> |
| 3079 | 3163 | <location filename="multicookwindow.ui" line="754"/> |
| ... | ... | @@ -3088,7 +3172,7 @@ Control</translation> |
| 3088 | 3172 | <location filename="multicookwindow.ui" line="970"/> |
| 3089 | 3173 | <location filename="multicookwindow.ui" line="1034"/> |
| 3090 | 3174 | <source>slotLabel</source> |
| 3091 | - <translation type="unfinished"></translation> | |
| 3175 | + <translation></translation> | |
| 3092 | 3176 | </message> |
| 3093 | 3177 | <message> |
| 3094 | 3178 | <location filename="multicookwindow.ui" line="1027"/> |
| ... | ... | @@ -3106,7 +3190,7 @@ Control</translation> |
| 3106 | 3190 | <location filename="multicookwindow.cpp" line="420"/> |
| 3107 | 3191 | <location filename="multicookwindow.cpp" line="435"/> |
| 3108 | 3192 | <source>요리를 취소하시겠습니까?</source> |
| 3109 | - <translation type="unfinished"></translation> | |
| 3193 | + <translation>Are you sure you want to cancel?</translation> | |
| 3110 | 3194 | </message> |
| 3111 | 3195 | </context> |
| 3112 | 3196 | <context> |
| ... | ... | @@ -3121,10 +3205,9 @@ Control</translation> |
| 3121 | 3205 | <name>NotiPopupDlg</name> |
| 3122 | 3206 | <message> |
| 3123 | 3207 | <location filename="notipopupdlg.ui" line="60"/> |
| 3208 | + <location filename="notipopupdlg.h" line="15"/> | |
| 3124 | 3209 | <source>확인</source> |
| 3125 | - <translation>Confirm | |
| 3126 | - | |
| 3127 | -</translation> | |
| 3210 | + <translation>Confirm</translation> | |
| 3128 | 3211 | </message> |
| 3129 | 3212 | <message> |
| 3130 | 3213 | <location filename="notipopupdlg.ui" line="101"/> |
| ... | ... | @@ -3469,7 +3552,7 @@ Nozzle Solenoid</translation> |
| 3469 | 3552 | <translation type="vanished">Lower Fan Controller Communication Abnormality Occurrence</translation> |
| 3470 | 3553 | </message> |
| 3471 | 3554 | <message> |
| 3472 | - <location filename="ovenstatics.cpp" line="269"/> | |
| 3555 | + <location filename="ovenstatics.cpp" line="279"/> | |
| 3473 | 3556 | <source>하부 FAN 컨트롤러 이상 발생</source> |
| 3474 | 3557 | <translation>Lower Fan Controller Communication Abnormality Occurrence</translation> |
| 3475 | 3558 | </message> |
| ... | ... | @@ -3478,297 +3561,297 @@ Nozzle Solenoid</translation> |
| 3478 | 3561 | <translation type="vanished">Upper Fan Controller Communication Abnormality Occurrence</translation> |
| 3479 | 3562 | </message> |
| 3480 | 3563 | <message> |
| 3481 | - <location filename="ovenstatics.cpp" line="275"/> | |
| 3564 | + <location filename="ovenstatics.cpp" line="285"/> | |
| 3482 | 3565 | <source>상부 FAN 컨트롤러 이상 발생</source> |
| 3483 | 3566 | <translation>Upper Fan Controller Abnormality Occurrence</translation> |
| 3484 | 3567 | </message> |
| 3485 | 3568 | <message> |
| 3486 | - <location filename="ovenstatics.cpp" line="250"/> | |
| 3569 | + <location filename="ovenstatics.cpp" line="260"/> | |
| 3487 | 3570 | <source>버너컨트롤러 1 이상 발생하였습니다.</source> |
| 3488 | 3571 | <translation>Malfunction occurs with burner controller 1. </translation> |
| 3489 | 3572 | </message> |
| 3490 | 3573 | <message> |
| 3491 | - <location filename="ovenstatics.cpp" line="130"/> | |
| 3574 | + <location filename="ovenstatics.cpp" line="140"/> | |
| 3492 | 3575 | <source>내부 온도 센서 이상</source> |
| 3493 | 3576 | <translation type="unfinished"></translation> |
| 3494 | 3577 | </message> |
| 3495 | 3578 | <message> |
| 3496 | - <location filename="ovenstatics.cpp" line="131"/> | |
| 3579 | + <location filename="ovenstatics.cpp" line="141"/> | |
| 3497 | 3580 | <source>조리실 내부 온도센서 오류가 발생하였습니다. |
| 3498 | 3581 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3499 | 3582 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3500 | 3583 | <translation type="unfinished"></translation> |
| 3501 | 3584 | </message> |
| 3502 | 3585 | <message> |
| 3503 | - <location filename="ovenstatics.cpp" line="136"/> | |
| 3586 | + <location filename="ovenstatics.cpp" line="146"/> | |
| 3504 | 3587 | <source>배수 탱크 온도 센서 이상</source> |
| 3505 | 3588 | <translation type="unfinished"></translation> |
| 3506 | 3589 | </message> |
| 3507 | 3590 | <message> |
| 3508 | - <location filename="ovenstatics.cpp" line="137"/> | |
| 3591 | + <location filename="ovenstatics.cpp" line="147"/> | |
| 3509 | 3592 | <source>배수 탱크 온도센서 오류가 발생하였습니다. |
| 3510 | 3593 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3511 | 3594 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3512 | 3595 | <translation type="unfinished"></translation> |
| 3513 | 3596 | </message> |
| 3514 | 3597 | <message> |
| 3515 | - <location filename="ovenstatics.cpp" line="143"/> | |
| 3598 | + <location filename="ovenstatics.cpp" line="153"/> | |
| 3516 | 3599 | <source>퀀칭 온도 센서 발생</source> |
| 3517 | 3600 | <translation type="unfinished"></translation> |
| 3518 | 3601 | </message> |
| 3519 | 3602 | <message> |
| 3520 | - <location filename="ovenstatics.cpp" line="144"/> | |
| 3603 | + <location filename="ovenstatics.cpp" line="154"/> | |
| 3521 | 3604 | <source>퀀칭 온도센서 오류가 발생하였습니다. |
| 3522 | 3605 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3523 | 3606 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3524 | 3607 | <translation type="unfinished"></translation> |
| 3525 | 3608 | </message> |
| 3526 | 3609 | <message> |
| 3527 | - <location filename="ovenstatics.cpp" line="149"/> | |
| 3610 | + <location filename="ovenstatics.cpp" line="159"/> | |
| 3528 | 3611 | <source>벽면 온도 센서 이상</source> |
| 3529 | 3612 | <translation type="unfinished"></translation> |
| 3530 | 3613 | </message> |
| 3531 | 3614 | <message> |
| 3532 | - <location filename="ovenstatics.cpp" line="150"/> | |
| 3615 | + <location filename="ovenstatics.cpp" line="160"/> | |
| 3533 | 3616 | <source>조리실 벽면 센서 오류가 발생하였습니다. |
| 3534 | 3617 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3535 | 3618 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3536 | 3619 | <translation type="unfinished"></translation> |
| 3537 | 3620 | </message> |
| 3538 | 3621 | <message> |
| 3539 | - <location filename="ovenstatics.cpp" line="155"/> | |
| 3622 | + <location filename="ovenstatics.cpp" line="165"/> | |
| 3540 | 3623 | <source>스팀발생기 온도 센서 이상</source> |
| 3541 | 3624 | <translation type="unfinished"></translation> |
| 3542 | 3625 | </message> |
| 3543 | 3626 | <message> |
| 3544 | - <location filename="ovenstatics.cpp" line="156"/> | |
| 3627 | + <location filename="ovenstatics.cpp" line="166"/> | |
| 3545 | 3628 | <source>스팀발생기 내부 센서 오류가 발생하였습니다. |
| 3546 | 3629 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3547 | 3630 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3548 | 3631 | <translation type="unfinished"></translation> |
| 3549 | 3632 | </message> |
| 3550 | 3633 | <message> |
| 3551 | - <location filename="ovenstatics.cpp" line="161"/> | |
| 3552 | - <location filename="ovenstatics.cpp" line="168"/> | |
| 3553 | - <location filename="ovenstatics.cpp" line="175"/> | |
| 3554 | - <location filename="ovenstatics.cpp" line="182"/> | |
| 3634 | + <location filename="ovenstatics.cpp" line="171"/> | |
| 3635 | + <location filename="ovenstatics.cpp" line="178"/> | |
| 3636 | + <location filename="ovenstatics.cpp" line="185"/> | |
| 3637 | + <location filename="ovenstatics.cpp" line="192"/> | |
| 3555 | 3638 | <source>중심온도 센서 이상</source> |
| 3556 | 3639 | <translation type="unfinished"></translation> |
| 3557 | 3640 | </message> |
| 3558 | 3641 | <message> |
| 3559 | - <location filename="ovenstatics.cpp" line="162"/> | |
| 3560 | - <location filename="ovenstatics.cpp" line="169"/> | |
| 3561 | - <location filename="ovenstatics.cpp" line="176"/> | |
| 3562 | - <location filename="ovenstatics.cpp" line="183"/> | |
| 3642 | + <location filename="ovenstatics.cpp" line="172"/> | |
| 3643 | + <location filename="ovenstatics.cpp" line="179"/> | |
| 3644 | + <location filename="ovenstatics.cpp" line="186"/> | |
| 3645 | + <location filename="ovenstatics.cpp" line="193"/> | |
| 3563 | 3646 | <source>중심온도계 센서 오류가 발생하였습니다. |
| 3564 | 3647 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3565 | 3648 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3566 | 3649 | <translation type="unfinished"></translation> |
| 3567 | 3650 | </message> |
| 3568 | 3651 | <message> |
| 3569 | - <location filename="ovenstatics.cpp" line="188"/> | |
| 3652 | + <location filename="ovenstatics.cpp" line="198"/> | |
| 3570 | 3653 | <source>PCB온도 과열 이상</source> |
| 3571 | 3654 | <translation type="unfinished"></translation> |
| 3572 | 3655 | </message> |
| 3573 | 3656 | <message> |
| 3574 | - <location filename="ovenstatics.cpp" line="189"/> | |
| 3657 | + <location filename="ovenstatics.cpp" line="199"/> | |
| 3575 | 3658 | <source>PCB 과열 안전장치가 작동하였습니다. |
| 3576 | 3659 | 제품의 전원을 OFF한 뒤, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3577 | 3660 | <translation type="unfinished"></translation> |
| 3578 | 3661 | </message> |
| 3579 | 3662 | <message> |
| 3580 | - <location filename="ovenstatics.cpp" line="207"/> | |
| 3663 | + <location filename="ovenstatics.cpp" line="217"/> | |
| 3581 | 3664 | <source>상부 버너 컨트롤러 통신 이상</source> |
| 3582 | 3665 | <translation type="unfinished"></translation> |
| 3583 | 3666 | </message> |
| 3584 | 3667 | <message> |
| 3585 | - <location filename="ovenstatics.cpp" line="208"/> | |
| 3668 | + <location filename="ovenstatics.cpp" line="218"/> | |
| 3586 | 3669 | <source>상부 버너 컨트롤러 PCB 통신 불량이 발생하였습니다. |
| 3587 | 3670 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3588 | 3671 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3589 | 3672 | <translation type="unfinished"></translation> |
| 3590 | 3673 | </message> |
| 3591 | 3674 | <message> |
| 3592 | - <location filename="ovenstatics.cpp" line="213"/> | |
| 3675 | + <location filename="ovenstatics.cpp" line="223"/> | |
| 3593 | 3676 | <source>하부 버너 컨트롤러 통신 이상</source> |
| 3594 | 3677 | <translation type="unfinished"></translation> |
| 3595 | 3678 | </message> |
| 3596 | 3679 | <message> |
| 3597 | - <location filename="ovenstatics.cpp" line="214"/> | |
| 3680 | + <location filename="ovenstatics.cpp" line="224"/> | |
| 3598 | 3681 | <source>하 버너 컨트롤러 PCB 통신 불량이 발생하였습니다. |
| 3599 | 3682 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3600 | 3683 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3601 | 3684 | <translation type="unfinished"></translation> |
| 3602 | 3685 | </message> |
| 3603 | 3686 | <message> |
| 3604 | - <location filename="ovenstatics.cpp" line="219"/> | |
| 3687 | + <location filename="ovenstatics.cpp" line="229"/> | |
| 3605 | 3688 | <source>스팀 버너 컨트롤러 통신 이상</source> |
| 3606 | 3689 | <translation type="unfinished"></translation> |
| 3607 | 3690 | </message> |
| 3608 | 3691 | <message> |
| 3609 | - <location filename="ovenstatics.cpp" line="220"/> | |
| 3692 | + <location filename="ovenstatics.cpp" line="230"/> | |
| 3610 | 3693 | <source>스팀발생기 버너 컨트롤러 PCB 통신 불량이 발생하였습니다. |
| 3611 | 3694 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3612 | 3695 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3613 | 3696 | <translation type="unfinished"></translation> |
| 3614 | 3697 | </message> |
| 3615 | 3698 | <message> |
| 3616 | - <location filename="ovenstatics.cpp" line="225"/> | |
| 3699 | + <location filename="ovenstatics.cpp" line="235"/> | |
| 3617 | 3700 | <source>하부 FAN 모터 컨트롤러 이상</source> |
| 3618 | 3701 | <translation type="unfinished"></translation> |
| 3619 | 3702 | </message> |
| 3620 | 3703 | <message> |
| 3621 | - <location filename="ovenstatics.cpp" line="226"/> | |
| 3704 | + <location filename="ovenstatics.cpp" line="236"/> | |
| 3622 | 3705 | <source>하부 Fan 모터 컨트롤러 이상 상황이 발생하였습니다. |
| 3623 | 3706 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3624 | 3707 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3625 | 3708 | <translation type="unfinished"></translation> |
| 3626 | 3709 | </message> |
| 3627 | 3710 | <message> |
| 3628 | - <location filename="ovenstatics.cpp" line="231"/> | |
| 3711 | + <location filename="ovenstatics.cpp" line="241"/> | |
| 3629 | 3712 | <source>상부 FAN 모터 컨트롤러 이상</source> |
| 3630 | 3713 | <translation type="unfinished"></translation> |
| 3631 | 3714 | </message> |
| 3632 | 3715 | <message> |
| 3633 | - <location filename="ovenstatics.cpp" line="232"/> | |
| 3716 | + <location filename="ovenstatics.cpp" line="242"/> | |
| 3634 | 3717 | <source>상부 Fan 모터 컨트롤러 이상 상황이 발생하였습니다. |
| 3635 | 3718 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3636 | 3719 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3637 | 3720 | <translation type="unfinished"></translation> |
| 3638 | 3721 | </message> |
| 3639 | 3722 | <message> |
| 3640 | - <location filename="ovenstatics.cpp" line="251"/> | |
| 3723 | + <location filename="ovenstatics.cpp" line="261"/> | |
| 3641 | 3724 | <source>버너컨트롤러 1 이상 발생</source> |
| 3642 | 3725 | <translation>Burner Controller 1 Abnormality Occurrence</translation> |
| 3643 | 3726 | </message> |
| 3644 | 3727 | <message> |
| 3645 | - <location filename="ovenstatics.cpp" line="256"/> | |
| 3728 | + <location filename="ovenstatics.cpp" line="266"/> | |
| 3646 | 3729 | <source>버너컨트롤러 2 이상 발생하였습니다.</source> |
| 3647 | 3730 | <translation>Malfunction occurs with burner controller 2. </translation> |
| 3648 | 3731 | </message> |
| 3649 | 3732 | <message> |
| 3650 | - <location filename="ovenstatics.cpp" line="257"/> | |
| 3733 | + <location filename="ovenstatics.cpp" line="267"/> | |
| 3651 | 3734 | <source>버너컨트롤러 2 이상 발생</source> |
| 3652 | 3735 | <translation>Burner Controller 2 Abnormality Occurrence</translation> |
| 3653 | 3736 | </message> |
| 3654 | 3737 | <message> |
| 3655 | - <location filename="ovenstatics.cpp" line="262"/> | |
| 3738 | + <location filename="ovenstatics.cpp" line="272"/> | |
| 3656 | 3739 | <source>버너컨트롤러 3 이상 발생하였습니다.</source> |
| 3657 | 3740 | <translation>Malfunction occurs with burner controller 3. </translation> |
| 3658 | 3741 | </message> |
| 3659 | 3742 | <message> |
| 3660 | - <location filename="ovenstatics.cpp" line="263"/> | |
| 3743 | + <location filename="ovenstatics.cpp" line="273"/> | |
| 3661 | 3744 | <source>버너컨트롤러 3 이상 발생</source> |
| 3662 | 3745 | <translation>Burner Controller 3 Abnormality Occurrence</translation> |
| 3663 | 3746 | </message> |
| 3664 | 3747 | <message> |
| 3665 | - <location filename="ovenstatics.cpp" line="268"/> | |
| 3748 | + <location filename="ovenstatics.cpp" line="278"/> | |
| 3666 | 3749 | <source>하부 FAN 컨트롤러 이상 발생하였습니다.</source> |
| 3667 | 3750 | <translation>Malfunction occurs with lower fan controller. </translation> |
| 3668 | 3751 | </message> |
| 3669 | 3752 | <message> |
| 3670 | - <location filename="ovenstatics.cpp" line="274"/> | |
| 3753 | + <location filename="ovenstatics.cpp" line="284"/> | |
| 3671 | 3754 | <source>상부 FAN 컨트롤러 이상 발생하였습니다.</source> |
| 3672 | 3755 | <translation>Malfunction occurs with upper fan controller.</translation> |
| 3673 | 3756 | </message> |
| 3674 | 3757 | <message> |
| 3675 | - <location filename="ovenstatics.cpp" line="294"/> | |
| 3758 | + <location filename="ovenstatics.cpp" line="304"/> | |
| 3676 | 3759 | <source>상부 버너 착화 이상</source> |
| 3677 | 3760 | <translation type="unfinished"></translation> |
| 3678 | 3761 | </message> |
| 3679 | 3762 | <message> |
| 3680 | - <location filename="ovenstatics.cpp" line="295"/> | |
| 3763 | + <location filename="ovenstatics.cpp" line="305"/> | |
| 3681 | 3764 | <source>상부 버너 착화 이상 안전장치가 작동하였습니다. |
| 3682 | 3765 | 제품의 전원을 OFF한 후 가스 밸브가 잠겨있는지 확인 해 주십시오. |
| 3683 | 3766 | 가스 밸브가 열려 있는데도 에러 발생 시, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3684 | 3767 | <translation type="unfinished"></translation> |
| 3685 | 3768 | </message> |
| 3686 | 3769 | <message> |
| 3687 | - <location filename="ovenstatics.cpp" line="301"/> | |
| 3770 | + <location filename="ovenstatics.cpp" line="311"/> | |
| 3688 | 3771 | <source>하부 버너 착화 이상</source> |
| 3689 | 3772 | <translation type="unfinished"></translation> |
| 3690 | 3773 | </message> |
| 3691 | 3774 | <message> |
| 3692 | - <location filename="ovenstatics.cpp" line="302"/> | |
| 3775 | + <location filename="ovenstatics.cpp" line="312"/> | |
| 3693 | 3776 | <source>하부 버너 착화 이상 안전장치가 작동하였습니다. |
| 3694 | 3777 | 제품의 전원을 OFF한 후 가스 밸브가 잠겨있는지 확인 해 주십시오. |
| 3695 | 3778 | 가스 밸브가 열려 있는데도 에러 발생 시, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3696 | 3779 | <translation type="unfinished"></translation> |
| 3697 | 3780 | </message> |
| 3698 | 3781 | <message> |
| 3699 | - <location filename="ovenstatics.cpp" line="307"/> | |
| 3782 | + <location filename="ovenstatics.cpp" line="317"/> | |
| 3700 | 3783 | <source>스팀 버너 착화 이상</source> |
| 3701 | 3784 | <translation type="unfinished"></translation> |
| 3702 | 3785 | </message> |
| 3703 | 3786 | <message> |
| 3704 | - <location filename="ovenstatics.cpp" line="308"/> | |
| 3787 | + <location filename="ovenstatics.cpp" line="318"/> | |
| 3705 | 3788 | <source>스팀발생기 버너 착화 이상 안전장치가 작동하였습니다. |
| 3706 | 3789 | 제품의 전원을 OFF한 후 가스 밸브가 잠겨있는지 확인 해 주십시오. |
| 3707 | 3790 | 가스 밸브가 열려 있는데도 에러 발생 시, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3708 | 3791 | <translation type="unfinished"></translation> |
| 3709 | 3792 | </message> |
| 3710 | 3793 | <message> |
| 3711 | - <location filename="ovenstatics.cpp" line="313"/> | |
| 3794 | + <location filename="ovenstatics.cpp" line="323"/> | |
| 3712 | 3795 | <source>내부 온도 과열 이상</source> |
| 3713 | 3796 | <translation type="unfinished"></translation> |
| 3714 | 3797 | </message> |
| 3715 | 3798 | <message> |
| 3716 | - <location filename="ovenstatics.cpp" line="314"/> | |
| 3799 | + <location filename="ovenstatics.cpp" line="324"/> | |
| 3717 | 3800 | <source>조리실 내부 과열 안전장치가 작동하였습니다. |
| 3718 | 3801 | 제품의 전원을 OFF한 뒤, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3719 | 3802 | <translation type="unfinished"></translation> |
| 3720 | 3803 | </message> |
| 3721 | 3804 | <message> |
| 3722 | - <location filename="ovenstatics.cpp" line="320"/> | |
| 3805 | + <location filename="ovenstatics.cpp" line="330"/> | |
| 3723 | 3806 | <source>배수 탱크 온도 과열 이상</source> |
| 3724 | 3807 | <translation type="unfinished"></translation> |
| 3725 | 3808 | </message> |
| 3726 | 3809 | <message> |
| 3727 | - <location filename="ovenstatics.cpp" line="321"/> | |
| 3810 | + <location filename="ovenstatics.cpp" line="331"/> | |
| 3728 | 3811 | <source>배수 탱크 과열 안전장치가 작동하였습니다. |
| 3729 | 3812 | 제품의 전원을 OFF한 뒤, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3730 | 3813 | <translation type="unfinished"></translation> |
| 3731 | 3814 | </message> |
| 3732 | 3815 | <message> |
| 3733 | - <location filename="ovenstatics.cpp" line="327"/> | |
| 3816 | + <location filename="ovenstatics.cpp" line="337"/> | |
| 3734 | 3817 | <source>중심 온도 과열 이상</source> |
| 3735 | 3818 | <translation type="unfinished"></translation> |
| 3736 | 3819 | </message> |
| 3737 | 3820 | <message> |
| 3738 | - <location filename="ovenstatics.cpp" line="328"/> | |
| 3821 | + <location filename="ovenstatics.cpp" line="338"/> | |
| 3739 | 3822 | <source>중심온도계 과열 안전장치가 작동하였습니다. |
| 3740 | 3823 | 제품의 전원을 OFF한 뒤, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3741 | 3824 | <translation type="unfinished"></translation> |
| 3742 | 3825 | </message> |
| 3743 | 3826 | <message> |
| 3744 | - <location filename="ovenstatics.cpp" line="333"/> | |
| 3827 | + <location filename="ovenstatics.cpp" line="343"/> | |
| 3745 | 3828 | <source>벽면 온도 과열 이상</source> |
| 3746 | 3829 | <translation type="unfinished"></translation> |
| 3747 | 3830 | </message> |
| 3748 | 3831 | <message> |
| 3749 | - <location filename="ovenstatics.cpp" line="334"/> | |
| 3832 | + <location filename="ovenstatics.cpp" line="344"/> | |
| 3750 | 3833 | <source>조리실 벽면 과열 안전장치가 작동하였습니다. |
| 3751 | 3834 | 제품의 전원을 OFF한 뒤, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3752 | 3835 | <translation type="unfinished"></translation> |
| 3753 | 3836 | </message> |
| 3754 | 3837 | <message> |
| 3755 | - <location filename="ovenstatics.cpp" line="339"/> | |
| 3838 | + <location filename="ovenstatics.cpp" line="349"/> | |
| 3756 | 3839 | <source>스팀 온도 과열 이상</source> |
| 3757 | 3840 | <translation type="unfinished"></translation> |
| 3758 | 3841 | </message> |
| 3759 | 3842 | <message> |
| 3760 | - <location filename="ovenstatics.cpp" line="340"/> | |
| 3843 | + <location filename="ovenstatics.cpp" line="350"/> | |
| 3761 | 3844 | <source>스팀통 내부 과열 안전장치가 작동하였습니다. |
| 3762 | 3845 | 제품의 전원을 OFF한 뒤, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3763 | 3846 | <translation type="unfinished"></translation> |
| 3764 | 3847 | </message> |
| 3765 | 3848 | <message> |
| 3766 | - <location filename="ovenstatics.cpp" line="346"/> | |
| 3849 | + <location filename="ovenstatics.cpp" line="356"/> | |
| 3767 | 3850 | <source>급수 이상</source> |
| 3768 | 3851 | <translation type="unfinished"></translation> |
| 3769 | 3852 | </message> |
| 3770 | 3853 | <message> |
| 3771 | - <location filename="ovenstatics.cpp" line="347"/> | |
| 3854 | + <location filename="ovenstatics.cpp" line="357"/> | |
| 3772 | 3855 | <source>제품 급수이상 안전장치가 작동하였습니다. |
| 3773 | 3856 | 제품에 들어가는 물 공급을 확인하십시오. |
| 3774 | 3857 | 물 공급이 정상적으로 들어갈 시 즉시 서비스센터에 연락하여 주십시오. |
| ... | ... | @@ -3776,12 +3859,12 @@ Nozzle Solenoid</translation> |
| 3776 | 3859 | <translation type="unfinished"></translation> |
| 3777 | 3860 | </message> |
| 3778 | 3861 | <message> |
| 3779 | - <location filename="ovenstatics.cpp" line="353"/> | |
| 3862 | + <location filename="ovenstatics.cpp" line="363"/> | |
| 3780 | 3863 | <source>수위 센서 이상</source> |
| 3781 | 3864 | <translation type="unfinished"></translation> |
| 3782 | 3865 | </message> |
| 3783 | 3866 | <message> |
| 3784 | - <location filename="ovenstatics.cpp" line="354"/> | |
| 3867 | + <location filename="ovenstatics.cpp" line="364"/> | |
| 3785 | 3868 | <source>스팀통 수위 감지 안전장치가 작동하였습니다. |
| 3786 | 3869 | 제품에 들어가는 물 공급을 확인하십시오. |
| 3787 | 3870 | 물 공급이 정상적으로 들어갈 시 즉시 서비스센터에 연락하여 주십시오. |
| ... | ... | @@ -3906,7 +3989,7 @@ Nozzle Solenoid</translation> |
| 3906 | 3989 | <message> |
| 3907 | 3990 | <location filename="preheatpopup.ui" line="494"/> |
| 3908 | 3991 | <source>00:00</source> |
| 3909 | - <translation>0:00</translation> | |
| 3992 | + <translation>00:00</translation> | |
| 3910 | 3993 | </message> |
| 3911 | 3994 | <message> |
| 3912 | 3995 | <location filename="preheatpopup.ui" line="752"/> |
| ... | ... | @@ -4621,7 +4704,7 @@ Spray Nozzle Solenoid</translation> |
| 4621 | 4704 | <location filename="realtimepartswindow.cpp" line="101"/> |
| 4622 | 4705 | <location filename="realtimepartswindow.cpp" line="104"/> |
| 4623 | 4706 | <location filename="realtimepartswindow.cpp" line="107"/> |
| 4624 | - <location filename="realtimepartswindow.cpp" line="110"/> | |
| 4707 | + <location filename="realtimepartswindow.cpp" line="111"/> | |
| 4625 | 4708 | <source>ON</source> |
| 4626 | 4709 | <translation>ON</translation> |
| 4627 | 4710 | </message> |
| ... | ... | @@ -4632,7 +4715,7 @@ Spray Nozzle Solenoid</translation> |
| 4632 | 4715 | <location filename="realtimepartswindow.cpp" line="102"/> |
| 4633 | 4716 | <location filename="realtimepartswindow.cpp" line="105"/> |
| 4634 | 4717 | <location filename="realtimepartswindow.cpp" line="108"/> |
| 4635 | - <location filename="realtimepartswindow.cpp" line="111"/> | |
| 4718 | + <location filename="realtimepartswindow.cpp" line="110"/> | |
| 4636 | 4719 | <source>OFF</source> |
| 4637 | 4720 | <translation>OFF</translation> |
| 4638 | 4721 | </message> |
| ... | ... | @@ -4678,7 +4761,7 @@ Temperature</translation> |
| 4678 | 4761 | <message> |
| 4679 | 4762 | <location filename="realtimesensorwindow.ui" line="813"/> |
| 4680 | 4763 | <source>PCB 온도</source> |
| 4681 | - <translation type="unfinished"></translation> | |
| 4764 | + <translation>PCB Temp</translation> | |
| 4682 | 4765 | </message> |
| 4683 | 4766 | <message> |
| 4684 | 4767 | <location filename="realtimesensorwindow.ui" line="1536"/> |
| ... | ... | @@ -4759,13 +4842,13 @@ Temperature Time</translation> |
| 4759 | 4842 | <location filename="reservetimepopup.ui" line="122"/> |
| 4760 | 4843 | <source>예약하기</source> |
| 4761 | 4844 | <oldsource>예약 시간 설정</oldsource> |
| 4762 | - <translation type="unfinished">Reservation Time Setting</translation> | |
| 4845 | + <translation>Reservation Time Setting</translation> | |
| 4763 | 4846 | </message> |
| 4764 | 4847 | <message> |
| 4765 | 4848 | <location filename="reservetimepopup.ui" line="146"/> |
| 4766 | 4849 | <source>시</source> |
| 4767 | 4850 | <oldsource>월</oldsource> |
| 4768 | - <translation type="unfinished">Month</translation> | |
| 4851 | + <translation>Month</translation> | |
| 4769 | 4852 | </message> |
| 4770 | 4853 | <message> |
| 4771 | 4854 | <location filename="reservetimepopup.ui" line="167"/> |
| ... | ... | @@ -4787,7 +4870,7 @@ Temperature Time</translation> |
| 4787 | 4870 | <location filename="reservedtimepopup.ui" line="64"/> |
| 4788 | 4871 | <source>예약하기</source> |
| 4789 | 4872 | <oldsource>예약 시간</oldsource> |
| 4790 | - <translation type="unfinished">Reservation Time</translation> | |
| 4873 | + <translation>Reservation Time</translation> | |
| 4791 | 4874 | </message> |
| 4792 | 4875 | <message> |
| 4793 | 4876 | <location filename="reservedtimepopup.ui" line="88"/> |
| ... | ... | @@ -4861,17 +4944,17 @@ Temperature Time</translation> |
| 4861 | 4944 | <message> |
| 4862 | 4945 | <location filename="touchtestwindow.ui" line="14"/> |
| 4863 | 4946 | <source>MainWindow</source> |
| 4864 | - <translation type="unfinished"></translation> | |
| 4947 | + <translation></translation> | |
| 4865 | 4948 | </message> |
| 4866 | 4949 | <message> |
| 4867 | 4950 | <location filename="touchtestwindow.ui" line="31"/> |
| 4868 | 4951 | <source>X</source> |
| 4869 | - <translation type="unfinished"></translation> | |
| 4952 | + <translation></translation> | |
| 4870 | 4953 | </message> |
| 4871 | 4954 | <message> |
| 4872 | 4955 | <location filename="touchtestwindow.ui" line="48"/> |
| 4873 | 4956 | <source>C</source> |
| 4874 | - <translation type="unfinished"></translation> | |
| 4957 | + <translation></translation> | |
| 4875 | 4958 | </message> |
| 4876 | 4959 | </context> |
| 4877 | 4960 | <context> | ... | ... |
app/gui/oven_control/lang_zh.qm
No preview for this file type
app/gui/oven_control/lang_zh.ts
| ... | ... | @@ -14,13 +14,13 @@ |
| 14 | 14 | <translation>校正</translation> |
| 15 | 15 | </message> |
| 16 | 16 | <message> |
| 17 | - <location filename="adjustmentwindow.cpp" line="33"/> | |
| 17 | + <location filename="adjustmentwindow.cpp" line="35"/> | |
| 18 | 18 | <source>모든 설정 값을 공장(출고)초기화 |
| 19 | 19 | 값으로 변경 하시겠습니까?</source> |
| 20 | 20 | <translation>是否所有设定值都更改为工厂(出库)初始化值吗?</translation> |
| 21 | 21 | </message> |
| 22 | 22 | <message> |
| 23 | - <location filename="adjustmentwindow.cpp" line="99"/> | |
| 23 | + <location filename="adjustmentwindow.cpp" line="101"/> | |
| 24 | 24 | <source>테스트를 완료하였습니다.</source> |
| 25 | 25 | <translation>经测试.</translation> |
| 26 | 26 | </message> |
| ... | ... | @@ -388,462 +388,463 @@ |
| 388 | 388 | <translation type="vanished">是否删除所有项目?</translation> |
| 389 | 389 | </message> |
| 390 | 390 | <message> |
| 391 | - <location filename="config.h" line="29"/> | |
| 392 | - <source>잔여시간<byte value="x0"/></source> | |
| 391 | + <source>잔여시간</source> | |
| 393 | 392 | <oldsource>잔여시간</oldsource> |
| 394 | - <translation type="unfinished">剩余时间</translation> | |
| 393 | + <translation type="obsolete">剩余时间</translation> | |
| 395 | 394 | </message> |
| 396 | 395 | <message> |
| 397 | - <location filename="config.h" line="30"/> | |
| 398 | - <source>타겟시간<byte value="x0"/></source> | |
| 396 | + <source>타겟시간</source> | |
| 399 | 397 | <oldsource>타겟시간</oldsource> |
| 400 | - <translation type="unfinished">目标时间</translation> | |
| 398 | + <translation type="obsolete">目标时间</translation> | |
| 401 | 399 | </message> |
| 402 | 400 | <message> |
| 403 | - <location filename="config.h" line="34"/> | |
| 401 | + <location filename="config.h" line="36"/> | |
| 404 | 402 | <source>섭씨(℃)</source> |
| 405 | 403 | <translation>摄氏度(℃)</translation> |
| 406 | 404 | </message> |
| 407 | 405 | <message> |
| 408 | - <location filename="config.h" line="35"/> | |
| 406 | + <location filename="config.h" line="37"/> | |
| 409 | 407 | <source>화씨(℉)</source> |
| 410 | 408 | <translation>华氏度(℉)</translation> |
| 411 | 409 | </message> |
| 412 | 410 | <message> |
| 413 | - <location filename="config.h" line="39"/> | |
| 414 | - <source>설정취소<byte value="x0"/></source> | |
| 411 | + <source>설정취소</source> | |
| 415 | 412 | <oldsource>설정취소</oldsource> |
| 416 | - <translation type="unfinished">取消设定</translation> | |
| 413 | + <translation type="obsolete">取消设定</translation> | |
| 417 | 414 | </message> |
| 418 | 415 | <message> |
| 419 | - <location filename="config.h" line="40"/> | |
| 420 | - <source>설정<byte value="x0"/></source> | |
| 416 | + <source>설정</source> | |
| 421 | 417 | <oldsource>설정</oldsource> |
| 422 | - <translation type="unfinished">设定</translation> | |
| 418 | + <translation type="obsolete">设定</translation> | |
| 423 | 419 | </message> |
| 424 | 420 | <message> |
| 425 | - <location filename="config.h" line="63"/> | |
| 426 | - <source>비활성<byte value="x0"/></source> | |
| 421 | + <source>비활성</source> | |
| 427 | 422 | <oldsource>비활성</oldsource> |
| 428 | - <translation type="unfinished">非活化</translation> | |
| 423 | + <translation type="obsolete">非活化</translation> | |
| 429 | 424 | </message> |
| 430 | 425 | <message> |
| 431 | - <location filename="config.h" line="64"/> | |
| 432 | - <source>활성화<byte value="x0"/></source> | |
| 426 | + <source>활성화</source> | |
| 433 | 427 | <oldsource>활성화</oldsource> |
| 434 | - <translation type="unfinished">活化</translation> | |
| 428 | + <translation type="obsolete">活化</translation> | |
| 435 | 429 | </message> |
| 436 | 430 | <message> |
| 437 | - <location filename="config.h" line="68"/> | |
| 438 | - <source>끄기<byte value="x0"/></source> | |
| 431 | + <source>끄기</source> | |
| 439 | 432 | <oldsource>끄기</oldsource> |
| 440 | - <translation type="unfinished">关闭</translation> | |
| 433 | + <translation type="obsolete">关闭</translation> | |
| 441 | 434 | </message> |
| 442 | 435 | <message> |
| 443 | - <location filename="config.h" line="69"/> | |
| 444 | - <source>켜기<byte value="x0"/></source> | |
| 436 | + <source>켜기</source> | |
| 445 | 437 | <oldsource>켜기</oldsource> |
| 446 | - <translation type="unfinished">启动</translation> | |
| 438 | + <translation type="obsolete">启动</translation> | |
| 447 | 439 | </message> |
| 448 | 440 | <message> |
| 449 | - <location filename="config.cpp" line="492"/> | |
| 450 | - <location filename="config.cpp" line="493"/> | |
| 451 | - <location filename="config.h" line="94"/> | |
| 441 | + <location filename="config.cpp" line="499"/> | |
| 442 | + <location filename="config.cpp" line="500"/> | |
| 443 | + <location filename="config.h" line="96"/> | |
| 452 | 444 | <source>모 델 명</source> |
| 453 | 445 | <translation>模型名称</translation> |
| 454 | 446 | </message> |
| 455 | 447 | <message> |
| 456 | - <location filename="config.cpp" line="499"/> | |
| 457 | - <location filename="config.cpp" line="500"/> | |
| 458 | - <location filename="config.h" line="95"/> | |
| 448 | + <location filename="config.cpp" line="506"/> | |
| 449 | + <location filename="config.cpp" line="507"/> | |
| 450 | + <location filename="config.h" line="97"/> | |
| 459 | 451 | <source>제조일자</source> |
| 460 | 452 | <translation>制造日期</translation> |
| 461 | 453 | </message> |
| 462 | 454 | <message> |
| 463 | - <location filename="config.cpp" line="506"/> | |
| 464 | - <location filename="config.cpp" line="507"/> | |
| 465 | - <location filename="config.h" line="96"/> | |
| 455 | + <location filename="config.cpp" line="514"/> | |
| 456 | + <location filename="config.cpp" line="515"/> | |
| 457 | + <location filename="config.h" line="98"/> | |
| 466 | 458 | <source>제조국</source> |
| 467 | 459 | <translation>制造国</translation> |
| 468 | 460 | </message> |
| 469 | 461 | <message> |
| 470 | - <location filename="config.cpp" line="513"/> | |
| 471 | - <location filename="config.cpp" line="514"/> | |
| 472 | - <location filename="config.h" line="97"/> | |
| 462 | + <location filename="config.cpp" line="521"/> | |
| 463 | + <location filename="config.cpp" line="522"/> | |
| 464 | + <location filename="config.h" line="99"/> | |
| 473 | 465 | <source>제조사</source> |
| 474 | 466 | <translation>制造商</translation> |
| 475 | 467 | </message> |
| 476 | 468 | <message> |
| 477 | - <location filename="config.cpp" line="520"/> | |
| 478 | - <location filename="config.cpp" line="521"/> | |
| 479 | - <location filename="config.h" line="98"/> | |
| 469 | + <location filename="config.cpp" line="528"/> | |
| 470 | + <location filename="config.cpp" line="529"/> | |
| 471 | + <location filename="config.h" line="100"/> | |
| 480 | 472 | <source>제품번호</source> |
| 481 | 473 | <translation>产品序列号</translation> |
| 482 | 474 | </message> |
| 483 | 475 | <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> | |
| 494 | - <location filename="config.h" line="99"/> | |
| 476 | + <location filename="config.h" line="101"/> | |
| 495 | 477 | <source>소프트웨어 버전</source> |
| 496 | 478 | <translation>软件版本</translation> |
| 497 | 479 | </message> |
| 498 | 480 | <message> |
| 499 | - <location filename="config.h" line="100"/> | |
| 481 | + <location filename="config.h" line="102"/> | |
| 500 | 482 | <source>현재모델</source> |
| 501 | 483 | <translation>现在模式</translation> |
| 502 | 484 | </message> |
| 503 | 485 | <message> |
| 504 | - <location filename="config.h" line="104"/> | |
| 505 | - <location filename="config.h" line="110"/> | |
| 486 | + <location filename="config.h" line="106"/> | |
| 487 | + <location filename="config.h" line="112"/> | |
| 506 | 488 | <source>연 락 처</source> |
| 507 | 489 | <translation>联系人</translation> |
| 508 | 490 | </message> |
| 509 | 491 | <message> |
| 510 | - <location filename="config.h" line="105"/> | |
| 492 | + <location filename="config.h" line="107"/> | |
| 511 | 493 | <source>이 름</source> |
| 512 | 494 | <translation>姓名</translation> |
| 513 | 495 | </message> |
| 514 | 496 | <message> |
| 515 | - <location filename="config.h" line="106"/> | |
| 516 | - <location filename="config.h" line="111"/> | |
| 497 | + <location filename="config.h" line="108"/> | |
| 498 | + <location filename="config.h" line="113"/> | |
| 517 | 499 | <source>위치정보</source> |
| 518 | 500 | <translation>位置信息</translation> |
| 519 | 501 | </message> |
| 520 | 502 | <message> |
| 521 | - <location filename="config.h" line="116"/> | |
| 503 | + <location filename="config.h" line="118"/> | |
| 522 | 504 | <source>전기식 10단</source> |
| 523 | - <translation type="unfinished">电动式 10段</translation> | |
| 505 | + <translation>电动式 10段</translation> | |
| 524 | 506 | </message> |
| 525 | 507 | <message> |
| 526 | - <location filename="config.h" line="117"/> | |
| 508 | + <location filename="config.h" line="119"/> | |
| 527 | 509 | <source>전기식 20단</source> |
| 528 | - <translation type="unfinished">电动式 20段</translation> | |
| 510 | + <translation>电动式 20段</translation> | |
| 529 | 511 | </message> |
| 530 | 512 | <message> |
| 531 | - <location filename="config.h" line="118"/> | |
| 513 | + <location filename="config.h" line="120"/> | |
| 532 | 514 | <source>전기식 24단</source> |
| 533 | - <translation type="unfinished">电动式 24段</translation> | |
| 515 | + <translation>电动式 24段</translation> | |
| 534 | 516 | </message> |
| 535 | 517 | <message> |
| 536 | - <location filename="config.h" line="119"/> | |
| 518 | + <location filename="config.h" line="121"/> | |
| 537 | 519 | <source>전기식 40단</source> |
| 538 | - <translation type="unfinished">电动式 40段</translation> | |
| 520 | + <translation>电动式 40段</translation> | |
| 539 | 521 | </message> |
| 540 | 522 | <message> |
| 541 | - <location filename="config.h" line="120"/> | |
| 523 | + <location filename="config.h" line="122"/> | |
| 542 | 524 | <source>가스식 10단 LPG</source> |
| 543 | - <translation type="unfinished">燃气式 10段 LPG</translation> | |
| 525 | + <translation>燃气式 10段 LPG</translation> | |
| 544 | 526 | </message> |
| 545 | 527 | <message> |
| 546 | - <location filename="config.h" line="121"/> | |
| 528 | + <location filename="config.h" line="123"/> | |
| 547 | 529 | <source>가스식 20단 LPG</source> |
| 548 | - <translation type="unfinished">燃气式 20段 LPG</translation> | |
| 530 | + <translation>燃气式 20段 LPG</translation> | |
| 549 | 531 | </message> |
| 550 | 532 | <message> |
| 551 | - <location filename="config.h" line="122"/> | |
| 533 | + <location filename="config.h" line="124"/> | |
| 552 | 534 | <source>가스식 24단 LPG</source> |
| 553 | - <translation type="unfinished">燃气式 24段 LPG</translation> | |
| 535 | + <translation>燃气式 24段 LPG</translation> | |
| 554 | 536 | </message> |
| 555 | 537 | <message> |
| 556 | - <location filename="config.h" line="123"/> | |
| 538 | + <location filename="config.h" line="125"/> | |
| 557 | 539 | <source>가스식 40단 LPG</source> |
| 558 | - <translation type="unfinished">燃气式 40段 LPG</translation> | |
| 540 | + <translation>燃气式 40段 LPG</translation> | |
| 559 | 541 | </message> |
| 560 | 542 | <message> |
| 561 | - <location filename="config.h" line="124"/> | |
| 543 | + <location filename="config.h" line="126"/> | |
| 562 | 544 | <source>가스식 10단 LNG</source> |
| 563 | - <translation type="unfinished">燃气式 10段 LNG</translation> | |
| 545 | + <translation>燃气式 10段 LNG</translation> | |
| 564 | 546 | </message> |
| 565 | 547 | <message> |
| 566 | - <location filename="config.h" line="125"/> | |
| 548 | + <location filename="config.h" line="127"/> | |
| 567 | 549 | <source>가스식 20단 LNG</source> |
| 568 | - <translation type="unfinished">燃气式 20段 LNG</translation> | |
| 550 | + <translation>燃气式 20段 LNG</translation> | |
| 569 | 551 | </message> |
| 570 | 552 | <message> |
| 571 | - <location filename="config.h" line="126"/> | |
| 553 | + <location filename="config.h" line="128"/> | |
| 572 | 554 | <source>가스식 24단 LNG</source> |
| 573 | - <translation type="unfinished">燃气式 24段 LNG</translation> | |
| 555 | + <translation>燃气式 24段 LNG</translation> | |
| 574 | 556 | </message> |
| 575 | 557 | <message> |
| 576 | - <location filename="config.h" line="127"/> | |
| 558 | + <location filename="config.h" line="129"/> | |
| 577 | 559 | <source>가스식 40단 LNG</source> |
| 578 | - <translation type="unfinished">燃气式 40段 LNG</translation> | |
| 560 | + <translation>燃气式 40段 LNG</translation> | |
| 579 | 561 | </message> |
| 580 | 562 | <message> |
| 581 | - <location filename="config.h" line="357"/> | |
| 563 | + <location filename="config.h" line="364"/> | |
| 582 | 564 | <source>%1 분</source> |
| 583 | 565 | <translation>%1分</translation> |
| 584 | 566 | </message> |
| 585 | 567 | <message> |
| 586 | - <location filename="config.h" line="367"/> | |
| 568 | + <location filename="config.h" line="374"/> | |
| 587 | 569 | <source>%1번</source> |
| 588 | 570 | <translation>%1号</translation> |
| 589 | 571 | </message> |
| 590 | 572 | <message> |
| 591 | - <location filename="config.h" line="373"/> | |
| 573 | + <location filename="config.h" line="380"/> | |
| 592 | 574 | <source>공장초기화</source> |
| 593 | 575 | <translation>工厂初始化</translation> |
| 594 | 576 | </message> |
| 595 | 577 | <message> |
| 596 | - <location filename="config.h" line="374"/> | |
| 578 | + <location filename="config.h" line="381"/> | |
| 597 | 579 | <source>USB 삽입</source> |
| 598 | 580 | <translation>USB插入</translation> |
| 599 | 581 | </message> |
| 600 | 582 | <message> |
| 601 | - <location filename="config.h" line="379"/> | |
| 583 | + <location filename="config.h" line="386"/> | |
| 602 | 584 | <source>초기화</source> |
| 603 | 585 | <translation>初始化</translation> |
| 604 | 586 | </message> |
| 605 | 587 | <message> |
| 606 | - <location filename="config.h" line="390"/> | |
| 607 | - <location filename="config.h" line="391"/> | |
| 588 | + <location filename="config.h" line="397"/> | |
| 589 | + <location filename="config.h" line="398"/> | |
| 608 | 590 | <source>%1단계</source> |
| 609 | 591 | <translation>%1阶段</translation> |
| 610 | 592 | </message> |
| 611 | 593 | <message> |
| 612 | - <location filename="config.h" line="392"/> | |
| 594 | + <location filename="config.h" line="399"/> | |
| 613 | 595 | <source>정보확인</source> |
| 614 | 596 | <translation>信息确认</translation> |
| 615 | 597 | </message> |
| 616 | 598 | <message> |
| 617 | - <location filename="config.h" line="395"/> | |
| 599 | + <location filename="config.h" line="402"/> | |
| 618 | 600 | <source>헹굼</source> |
| 619 | 601 | <translation>漂洗</translation> |
| 620 | 602 | </message> |
| 621 | 603 | <message> |
| 622 | - <location filename="config.h" line="397"/> | |
| 604 | + <location filename="config.h" line="404"/> | |
| 623 | 605 | <source>엔지니어모드 진입</source> |
| 624 | 606 | <translation>语言设定</translation> |
| 625 | 607 | </message> |
| 626 | 608 | <message> |
| 627 | - <location filename="config.h" line="401"/> | |
| 609 | + <location filename="config.h" line="419"/> | |
| 628 | 610 | <source>언어설정</source> |
| 629 | 611 | <translation>语言设定</translation> |
| 630 | 612 | </message> |
| 631 | 613 | <message> |
| 632 | - <location filename="config.h" line="402"/> | |
| 614 | + <location filename="config.h" line="420"/> | |
| 633 | 615 | <source>날짜와 시간</source> |
| 634 | 616 | <translation>日期和时间 </translation> |
| 635 | 617 | </message> |
| 636 | 618 | <message> |
| 637 | - <location filename="config.h" line="403"/> | |
| 619 | + <location filename="config.h" line="421"/> | |
| 638 | 620 | <source>온도단위</source> |
| 639 | 621 | <translation>温度单位</translation> |
| 640 | 622 | </message> |
| 641 | 623 | <message> |
| 642 | - <location filename="config.h" line="404"/> | |
| 624 | + <location filename="config.h" line="422"/> | |
| 643 | 625 | <source>화면밝기</source> |
| 644 | 626 | <translation>屏幕亮度</translation> |
| 645 | 627 | </message> |
| 646 | 628 | <message> |
| 647 | - <location filename="config.h" line="405"/> | |
| 629 | + <location filename="config.h" line="423"/> | |
| 648 | 630 | <source>응축식 후드의 정지지연</source> |
| 649 | 631 | <translation>冷凝式喉头的停止延迟</translation> |
| 650 | 632 | </message> |
| 651 | 633 | <message> |
| 652 | - <location filename="config.h" line="406"/> | |
| 634 | + <location filename="config.h" line="424"/> | |
| 653 | 635 | <source>일품요리용 접시무게</source> |
| 654 | 636 | <translation>单品烹饪用的盘子重量</translation> |
| 655 | 637 | </message> |
| 656 | 638 | <message> |
| 657 | - <location filename="config.h" line="407"/> | |
| 639 | + <location filename="config.h" line="425"/> | |
| 658 | 640 | <source>연회용 접시무게</source> |
| 659 | 641 | <translation>宴会用的盘子重量</translation> |
| 660 | 642 | </message> |
| 661 | 643 | <message> |
| 662 | - <location filename="config.h" line="408"/> | |
| 644 | + <location filename="config.h" line="426"/> | |
| 663 | 645 | <source>ILC 조리선반 개수</source> |
| 664 | 646 | <translation>ILC烹饪架数</translation> |
| 665 | 647 | </message> |
| 666 | 648 | <message> |
| 667 | - <location filename="config.h" line="409"/> | |
| 649 | + <location filename="config.h" line="427"/> | |
| 668 | 650 | <source>ILC 조리선반 순서</source> |
| 669 | 651 | <translation>ILC烹饪架顺序 </translation> |
| 670 | 652 | </message> |
| 671 | 653 | <message> |
| 672 | - <location filename="config.h" line="410"/> | |
| 673 | - <location filename="config.h" line="435"/> | |
| 654 | + <location filename="config.h" line="428"/> | |
| 655 | + <location filename="config.h" line="453"/> | |
| 674 | 656 | <source>ILC 조리 온습도 대기시간</source> |
| 675 | 657 | <translation>ILC烹调温度和湿度等待时间</translation> |
| 676 | 658 | </message> |
| 677 | 659 | <message> |
| 678 | - <location filename="config.h" line="411"/> | |
| 660 | + <location filename="config.h" line="429"/> | |
| 679 | 661 | <source>조리시간 포맷</source> |
| 680 | 662 | <translation>烹调时间格式</translation> |
| 681 | 663 | </message> |
| 682 | 664 | <message> |
| 683 | - <location filename="config.h" line="412"/> | |
| 665 | + <location filename="config.h" line="430"/> | |
| 684 | 666 | <source>실시간 단위 설정</source> |
| 685 | 667 | <translation>实时单位设定</translation> |
| 686 | 668 | </message> |
| 687 | 669 | <message> |
| 688 | - <location filename="config.h" line="413"/> | |
| 670 | + <location filename="config.h" line="431"/> | |
| 689 | 671 | <source>잔여시간 시점변경설정</source> |
| 690 | 672 | <translation>更改设定剩余时间时刻</translation> |
| 691 | 673 | </message> |
| 692 | 674 | <message> |
| 693 | - <location filename="config.h" line="414"/> | |
| 675 | + <location filename="config.h" line="432"/> | |
| 694 | 676 | <source>마스터 볼륨</source> |
| 695 | 677 | <translation>主控音量</translation> |
| 696 | 678 | </message> |
| 697 | 679 | <message> |
| 698 | - <location filename="config.h" line="415"/> | |
| 680 | + <location filename="config.h" line="433"/> | |
| 699 | 681 | <source>키패드 소리 - 1</source> |
| 700 | 682 | <translation>键盘的声音- 1</translation> |
| 701 | 683 | </message> |
| 702 | 684 | <message> |
| 703 | - <location filename="config.h" line="416"/> | |
| 685 | + <location filename="config.h" line="434"/> | |
| 704 | 686 | <source>키패드 볼륨 </source> |
| 705 | 687 | <translation>键盘音量</translation> |
| 706 | 688 | </message> |
| 707 | 689 | <message> |
| 708 | - <location filename="config.h" line="417"/> | |
| 690 | + <location filename="config.h" line="435"/> | |
| 709 | 691 | <source>적재/실행 요청</source> |
| 710 | 692 | <translation>装载/执行请求</translation> |
| 711 | 693 | </message> |
| 712 | 694 | <message> |
| 713 | - <location filename="config.h" line="418"/> | |
| 695 | + <location filename="config.h" line="436"/> | |
| 714 | 696 | <source>프로그램 단계 종료</source> |
| 715 | 697 | <translation>项目阶段终止</translation> |
| 716 | 698 | </message> |
| 717 | 699 | <message> |
| 718 | - <location filename="config.h" line="419"/> | |
| 700 | + <location filename="config.h" line="437"/> | |
| 719 | 701 | <source>조리시간 종료</source> |
| 720 | 702 | <translation>烹调时间结束</translation> |
| 721 | 703 | </message> |
| 722 | 704 | <message> |
| 723 | - <location filename="config.h" line="420"/> | |
| 705 | + <location filename="config.h" line="438"/> | |
| 724 | 706 | <source>과정 중단/오류 식별</source> |
| 725 | 707 | <translation>过程中断/错误识别</translation> |
| 726 | 708 | </message> |
| 727 | 709 | <message> |
| 728 | - <location filename="config.h" line="421"/> | |
| 710 | + <location filename="config.h" line="439"/> | |
| 729 | 711 | <source>음향설정 초기화</source> |
| 730 | 712 | <translation>音响设定初始化</translation> |
| 731 | 713 | </message> |
| 732 | 714 | <message> |
| 733 | - <location filename="config.h" line="422"/> | |
| 715 | + <location filename="config.h" line="440"/> | |
| 734 | 716 | <source>HACCP 데이터 다운로드</source> |
| 735 | 717 | <translation>HACCP数据下载</translation> |
| 736 | 718 | </message> |
| 737 | 719 | <message> |
| 738 | - <location filename="config.h" line="423"/> | |
| 720 | + <location filename="config.h" line="441"/> | |
| 739 | 721 | <source>인포 데이터 다운로드</source> |
| 740 | 722 | <translation>信息数据下载</translation> |
| 741 | 723 | </message> |
| 742 | 724 | <message> |
| 743 | - <location filename="config.h" line="424"/> | |
| 725 | + <location filename="config.h" line="442"/> | |
| 744 | 726 | <source>서비스 데이터 다운로드</source> |
| 745 | 727 | <translation>服务数据下载</translation> |
| 746 | 728 | </message> |
| 747 | 729 | <message> |
| 748 | - <location filename="config.h" line="425"/> | |
| 730 | + <location filename="config.h" line="443"/> | |
| 749 | 731 | <source>프로그램 다운로드</source> |
| 750 | 732 | <translation>程序下载</translation> |
| 751 | 733 | </message> |
| 752 | 734 | <message> |
| 753 | - <location filename="config.h" line="426"/> | |
| 735 | + <location filename="config.h" line="444"/> | |
| 754 | 736 | <source>프로그램 업로드</source> |
| 755 | 737 | <translation>程序上传</translation> |
| 756 | 738 | </message> |
| 757 | 739 | <message> |
| 758 | - <location filename="config.h" line="427"/> | |
| 740 | + <location filename="config.h" line="445"/> | |
| 759 | 741 | <source>모든 프로그램 삭제</source> |
| 760 | 742 | <translation>删除所有的程序</translation> |
| 761 | 743 | </message> |
| 762 | 744 | <message> |
| 763 | - <location filename="config.h" line="428"/> | |
| 745 | + <location filename="config.h" line="446"/> | |
| 764 | 746 | <source>IP 주소</source> |
| 765 | 747 | <translation>IP地址</translation> |
| 766 | 748 | </message> |
| 767 | 749 | <message> |
| 768 | - <location filename="config.h" line="429"/> | |
| 750 | + <location filename="config.h" line="447"/> | |
| 769 | 751 | <source>IP 게이트웨이</source> |
| 770 | 752 | <translation>IP网关</translation> |
| 771 | 753 | </message> |
| 772 | 754 | <message> |
| 773 | - <location filename="config.h" line="430"/> | |
| 755 | + <location filename="config.h" line="448"/> | |
| 774 | 756 | <source>IP 넷마스크</source> |
| 775 | 757 | <translation>IP子网掩码</translation> |
| 776 | 758 | </message> |
| 777 | 759 | <message> |
| 778 | - <location filename="config.h" line="431"/> | |
| 760 | + <location filename="config.h" line="449"/> | |
| 779 | 761 | <source>기본설정 다운로드</source> |
| 780 | 762 | <translation>基本设定下载</translation> |
| 781 | 763 | </message> |
| 782 | 764 | <message> |
| 783 | - <location filename="config.h" line="432"/> | |
| 765 | + <location filename="config.h" line="450"/> | |
| 784 | 766 | <source>기본설정 업로드</source> |
| 785 | 767 | <translation>基本设定上传</translation> |
| 786 | 768 | </message> |
| 787 | 769 | <message> |
| 788 | - <location filename="config.h" line="433"/> | |
| 770 | + <location filename="config.h" line="451"/> | |
| 789 | 771 | <source>하프에너지</source> |
| 790 | 772 | <translation>半能量</translation> |
| 791 | 773 | </message> |
| 792 | 774 | <message> |
| 793 | - <location filename="config.h" line="434"/> | |
| 775 | + <location filename="config.h" line="452"/> | |
| 794 | 776 | <source>화면 밝기 자동 감소</source> |
| 795 | 777 | <translation>屏幕亮度自动减少</translation> |
| 796 | 778 | </message> |
| 797 | 779 | <message> |
| 798 | - <location filename="config.h" line="436"/> | |
| 780 | + <location filename="config.h" line="454"/> | |
| 799 | 781 | <source>적재중 대기 시간</source> |
| 800 | 782 | <translation>装载中等待的时间</translation> |
| 801 | 783 | </message> |
| 802 | 784 | <message> |
| 803 | - <location filename="config.h" line="437"/> | |
| 785 | + <location filename="config.h" line="455"/> | |
| 804 | 786 | <source>의무 세척과정</source> |
| 805 | 787 | <translation>义务洗涤过程</translation> |
| 806 | 788 | </message> |
| 807 | 789 | <message> |
| 808 | - <location filename="config.h" line="438"/> | |
| 790 | + <location filename="config.h" line="456"/> | |
| 809 | 791 | <source>적재 중 문열림 시간 모니터링</source> |
| 810 | 792 | <translation>监控装载中门打开的时间</translation> |
| 811 | 793 | </message> |
| 812 | 794 | <message> |
| 813 | - <location filename="config.h" line="439"/> | |
| 795 | + <location filename="config.h" line="457"/> | |
| 814 | 796 | <source>조리 중 문열림 시간 모니터링</source> |
| 815 | 797 | <translation>监控烹饪中门打开的时间</translation> |
| 816 | 798 | </message> |
| 817 | 799 | <message> |
| 818 | - <location filename="config.h" line="440"/> | |
| 800 | + <location filename="config.h" line="458"/> | |
| 819 | 801 | <source>제품유형/소프트웨어에 관한 정보</source> |
| 820 | 802 | <translation>产品类型/软件有关的信息</translation> |
| 821 | 803 | </message> |
| 822 | 804 | <message> |
| 823 | - <location filename="config.h" line="441"/> | |
| 805 | + <location filename="config.h" line="459"/> | |
| 824 | 806 | <source>핫라인-쉐프</source> |
| 825 | 807 | <translation>热线-主厨</translation> |
| 826 | 808 | </message> |
| 827 | 809 | <message> |
| 828 | - <location filename="config.h" line="442"/> | |
| 810 | + <location filename="config.h" line="460"/> | |
| 829 | 811 | <source>핫라인-서비스</source> |
| 830 | 812 | <translation>热线-主厨</translation> |
| 831 | 813 | </message> |
| 832 | 814 | <message> |
| 833 | - <location filename="config.h" line="443"/> | |
| 815 | + <location filename="config.h" line="461"/> | |
| 834 | 816 | <source>증기 발생기 헹굼</source> |
| 835 | 817 | <translation>蒸汽发生器漂洗</translation> |
| 836 | 818 | </message> |
| 837 | 819 | <message> |
| 838 | - <location filename="config.h" line="444"/> | |
| 820 | + <location filename="config.h" line="462"/> | |
| 839 | 821 | <source>시연모드</source> |
| 840 | 822 | <translation>试演模式</translation> |
| 841 | 823 | </message> |
| 842 | 824 | <message> |
| 843 | - <location filename="config.h" line="445"/> | |
| 825 | + <location filename="config.h" line="463"/> | |
| 844 | 826 | <source>서비스단계(엔지니어모드)</source> |
| 845 | 827 | <translation>服务阶段(工程模式)</translation> |
| 846 | 828 | </message> |
| 829 | + <message> | |
| 830 | + <location filename="config.h" line="464"/> | |
| 831 | + <location filename="config.h" line="465"/> | |
| 832 | + <location filename="config.h" line="466"/> | |
| 833 | + <location filename="config.h" line="467"/> | |
| 834 | + <location filename="config.h" line="468"/> | |
| 835 | + <location filename="config.h" line="469"/> | |
| 836 | + <location filename="config.h" line="470"/> | |
| 837 | + <location filename="config.h" line="471"/> | |
| 838 | + <location filename="config.h" line="472"/> | |
| 839 | + <location filename="config.h" line="473"/> | |
| 840 | + <source>SYSTEM</source> | |
| 841 | + <translation></translation> | |
| 842 | + </message> | |
| 843 | + <message> | |
| 844 | + <location filename="config.h" line="474"/> | |
| 845 | + <source>동파방지실행</source> | |
| 846 | + <translation type="unfinished"></translation> | |
| 847 | + </message> | |
| 847 | 848 | </context> |
| 848 | 849 | <context> |
| 849 | 850 | <name>Config1DigitSetAndEnableSetDlg</name> |
| ... | ... | @@ -1008,7 +1009,7 @@ |
| 1008 | 1009 | <location filename="configdoormonitoring.ui" line="240"/> |
| 1009 | 1010 | <location filename="configdoormonitoring.ui" line="355"/> |
| 1010 | 1011 | <source>문을 닫고 다이얼을 사용하여 경고가 <BR> 울리거나 꺼질 때까지 시간</source> |
| 1011 | - <translation type="unfinished"></translation> | |
| 1012 | + <translation></translation> | |
| 1012 | 1013 | </message> |
| 1013 | 1014 | <message> |
| 1014 | 1015 | <location filename="configdoormonitoring.ui" line="203"/> |
| ... | ... | @@ -1130,7 +1131,7 @@ |
| 1130 | 1131 | <message> |
| 1131 | 1132 | <location filename="configinfodlg.ui" line="92"/> |
| 1132 | 1133 | <source>TITLE</source> |
| 1133 | - <translation type="unfinished">TITLE</translation> | |
| 1134 | + <translation>TITLE</translation> | |
| 1134 | 1135 | </message> |
| 1135 | 1136 | <message> |
| 1136 | 1137 | <location filename="configinfodlg.ui" line="144"/> |
| ... | ... | @@ -1186,54 +1187,54 @@ |
| 1186 | 1187 | <translation type="vanished">燃气式 40段 LNG</translation> |
| 1187 | 1188 | </message> |
| 1188 | 1189 | <message> |
| 1189 | - <location filename="configinfodlg.cpp" line="89"/> | |
| 1190 | + <location filename="configinfodlg.cpp" line="67"/> | |
| 1190 | 1191 | <source>모 델 명</source> |
| 1191 | 1192 | <translation>模型名称</translation> |
| 1192 | 1193 | </message> |
| 1193 | 1194 | <message> |
| 1194 | - <location filename="configinfodlg.cpp" line="90"/> | |
| 1195 | + <location filename="configinfodlg.cpp" line="68"/> | |
| 1195 | 1196 | <source>제조일자</source> |
| 1196 | - <translation type="unfinished">制造日期</translation> | |
| 1197 | + <translation>制造日期</translation> | |
| 1197 | 1198 | </message> |
| 1198 | 1199 | <message> |
| 1199 | - <location filename="configinfodlg.cpp" line="91"/> | |
| 1200 | + <location filename="configinfodlg.cpp" line="69"/> | |
| 1200 | 1201 | <source>제조국</source> |
| 1201 | 1202 | <translation>制造国</translation> |
| 1202 | 1203 | </message> |
| 1203 | 1204 | <message> |
| 1204 | - <location filename="configinfodlg.cpp" line="92"/> | |
| 1205 | + <location filename="configinfodlg.cpp" line="70"/> | |
| 1205 | 1206 | <source>제조사</source> |
| 1206 | 1207 | <translation>制造商</translation> |
| 1207 | 1208 | </message> |
| 1208 | 1209 | <message> |
| 1209 | - <location filename="configinfodlg.cpp" line="93"/> | |
| 1210 | + <location filename="configinfodlg.cpp" line="71"/> | |
| 1210 | 1211 | <source>제품번호</source> |
| 1211 | 1212 | <translation>产品序列号</translation> |
| 1212 | 1213 | </message> |
| 1213 | 1214 | <message> |
| 1214 | - <location filename="configinfodlg.cpp" line="94"/> | |
| 1215 | + <location filename="configinfodlg.cpp" line="72"/> | |
| 1215 | 1216 | <source>소프트웨어 버전</source> |
| 1216 | 1217 | <translation>软件版本</translation> |
| 1217 | 1218 | </message> |
| 1218 | 1219 | <message> |
| 1219 | - <location filename="configinfodlg.cpp" line="95"/> | |
| 1220 | + <location filename="configinfodlg.cpp" line="73"/> | |
| 1220 | 1221 | <source>현재모델</source> |
| 1221 | 1222 | <translation>现在模式</translation> |
| 1222 | 1223 | </message> |
| 1223 | 1224 | <message> |
| 1224 | - <location filename="configinfodlg.cpp" line="117"/> | |
| 1225 | - <location filename="configinfodlg.cpp" line="141"/> | |
| 1225 | + <location filename="configinfodlg.cpp" line="95"/> | |
| 1226 | + <location filename="configinfodlg.cpp" line="119"/> | |
| 1226 | 1227 | <source>연 락 처</source> |
| 1227 | 1228 | <translation>联系方式</translation> |
| 1228 | 1229 | </message> |
| 1229 | 1230 | <message> |
| 1230 | - <location filename="configinfodlg.cpp" line="118"/> | |
| 1231 | + <location filename="configinfodlg.cpp" line="96"/> | |
| 1231 | 1232 | <source>이 름</source> |
| 1232 | 1233 | <translation>姓名</translation> |
| 1233 | 1234 | </message> |
| 1234 | 1235 | <message> |
| 1235 | - <location filename="configinfodlg.cpp" line="119"/> | |
| 1236 | - <location filename="configinfodlg.cpp" line="142"/> | |
| 1236 | + <location filename="configinfodlg.cpp" line="97"/> | |
| 1237 | + <location filename="configinfodlg.cpp" line="120"/> | |
| 1237 | 1238 | <source>위치정보</source> |
| 1238 | 1239 | <translation>位置信息</translation> |
| 1239 | 1240 | </message> |
| ... | ... | @@ -1292,7 +1293,7 @@ |
| 1292 | 1293 | <location filename="configlanguagedlg.ui" line="147"/> |
| 1293 | 1294 | <location filename="configlanguagedlg.ui" line="182"/> |
| 1294 | 1295 | <source>PushButton</source> |
| 1295 | - <translation type="unfinished">PushButton</translation> | |
| 1296 | + <translation>PushButton</translation> | |
| 1296 | 1297 | </message> |
| 1297 | 1298 | <message> |
| 1298 | 1299 | <location filename="configlanguagedlg.ui" line="224"/> |
| ... | ... | @@ -1328,7 +1329,7 @@ |
| 1328 | 1329 | <message> |
| 1329 | 1330 | <location filename="configsoundselelectdlg.ui" line="79"/> |
| 1330 | 1331 | <source>TITLE</source> |
| 1331 | - <translation type="unfinished">TITLE</translation> | |
| 1332 | + <translation>TITLE</translation> | |
| 1332 | 1333 | </message> |
| 1333 | 1334 | <message> |
| 1334 | 1335 | <location filename="configsoundselelectdlg.ui" line="113"/> |
| ... | ... | @@ -1410,17 +1411,17 @@ |
| 1410 | 1411 | <message> |
| 1411 | 1412 | <location filename="configsteamwashdlg.ui" line="14"/> |
| 1412 | 1413 | <source>Dialog</source> |
| 1413 | - <translation type="unfinished"></translation> | |
| 1414 | + <translation>Dialog</translation> | |
| 1414 | 1415 | </message> |
| 1415 | 1416 | <message> |
| 1416 | 1417 | <location filename="configsteamwashdlg.ui" line="59"/> |
| 1417 | 1418 | <source>확인</source> |
| 1418 | - <translation type="unfinished">确认</translation> | |
| 1419 | + <translation>确认</translation> | |
| 1419 | 1420 | </message> |
| 1420 | 1421 | <message> |
| 1421 | 1422 | <location filename="configsteamwashdlg.ui" line="86"/> |
| 1422 | 1423 | <source>증기 발생기 헹굼</source> |
| 1423 | - <translation type="unfinished">蒸汽发生器漂洗</translation> | |
| 1424 | + <translation>蒸汽发生器漂洗</translation> | |
| 1424 | 1425 | </message> |
| 1425 | 1426 | <message> |
| 1426 | 1427 | <location filename="configsteamwashdlg.ui" line="129"/> |
| ... | ... | @@ -1431,67 +1432,67 @@ |
| 1431 | 1432 | <message> |
| 1432 | 1433 | <location filename="configsteamwashdlg.ui" line="171"/> |
| 1433 | 1434 | <source>취소</source> |
| 1434 | - <translation type="unfinished">取消</translation> | |
| 1435 | + <translation>取消</translation> | |
| 1435 | 1436 | </message> |
| 1436 | 1437 | <message> |
| 1437 | 1438 | <location filename="configsteamwashdlg.cpp" line="58"/> |
| 1438 | 1439 | <source>내부 헹굼 진행 중입니다.</source> |
| 1439 | - <translation type="unfinished">内部进行漂洗。</translation> | |
| 1440 | + <translation>内部进行漂洗。</translation> | |
| 1440 | 1441 | </message> |
| 1441 | 1442 | <message> |
| 1442 | 1443 | <location filename="configsteamwashdlg.cpp" line="61"/> |
| 1443 | 1444 | <source>스팀 급수 진행 중입니다.</source> |
| 1444 | - <translation type="unfinished">蒸汽供水处理中。</translation> | |
| 1445 | + <translation>蒸汽供水处理中。</translation> | |
| 1445 | 1446 | </message> |
| 1446 | 1447 | <message> |
| 1447 | 1448 | <location filename="configsteamwashdlg.cpp" line="64"/> |
| 1448 | 1449 | <source>내부 팬 세척 진행 중입니다.</source> |
| 1449 | - <translation type="unfinished">内部风扇进行洗涤。</translation> | |
| 1450 | + <translation>内部风扇进行洗涤。</translation> | |
| 1450 | 1451 | </message> |
| 1451 | 1452 | <message> |
| 1452 | 1453 | <location filename="configsteamwashdlg.cpp" line="67"/> |
| 1453 | 1454 | <source>내부 스팀 불림 진행 중입니다.</source> |
| 1454 | - <translation type="unfinished">内部蒸汽进行冲泡。</translation> | |
| 1455 | + <translation>内部蒸汽进行冲泡。</translation> | |
| 1455 | 1456 | </message> |
| 1456 | 1457 | <message> |
| 1457 | 1458 | <location filename="configsteamwashdlg.cpp" line="70"/> |
| 1458 | 1459 | <source>내부 강 세척 진행 중입니다.</source> |
| 1459 | - <translation type="unfinished">内部进行强洗涤。</translation> | |
| 1460 | + <translation>内部进行强洗涤。</translation> | |
| 1460 | 1461 | </message> |
| 1461 | 1462 | <message> |
| 1462 | 1463 | <location filename="configsteamwashdlg.cpp" line="73"/> |
| 1463 | 1464 | <source>내부 상부 세척 진행 중입니다.</source> |
| 1464 | - <translation type="unfinished">内部上部进行洗涤。</translation> | |
| 1465 | + <translation>内部上部进行洗涤。</translation> | |
| 1465 | 1466 | </message> |
| 1466 | 1467 | <message> |
| 1467 | 1468 | <location filename="configsteamwashdlg.cpp" line="76"/> |
| 1468 | 1469 | <source>내부 스팀 세척 진행 중입니다.</source> |
| 1469 | - <translation type="unfinished">内部进行蒸汽洗涤。</translation> | |
| 1470 | + <translation>内部进行蒸汽洗涤。</translation> | |
| 1470 | 1471 | </message> |
| 1471 | 1472 | <message> |
| 1472 | 1473 | <location filename="configsteamwashdlg.cpp" line="79"/> |
| 1473 | 1474 | <source>세척 종료 진행 중입니다.</source> |
| 1474 | - <translation type="unfinished">洗涤结束进行中。</translation> | |
| 1475 | + <translation>洗涤结束进行中。</translation> | |
| 1475 | 1476 | </message> |
| 1476 | 1477 | <message> |
| 1477 | 1478 | <location filename="configsteamwashdlg.cpp" line="82"/> |
| 1478 | 1479 | <source>세제 세척수 만들기 진행 중입니다.</source> |
| 1479 | - <translation type="unfinished">做洗涤剂洗涤水进行中。</translation> | |
| 1480 | + <translation>做洗涤剂洗涤水进行中。</translation> | |
| 1480 | 1481 | </message> |
| 1481 | 1482 | <message> |
| 1482 | 1483 | <location filename="configsteamwashdlg.cpp" line="85"/> |
| 1483 | 1484 | <source>세제 세척수 헹굼 진행 중입니다.</source> |
| 1484 | - <translation type="unfinished">洗涤剂洗涤水进行漂洗。</translation> | |
| 1485 | + <translation>洗涤剂洗涤水进行漂洗。</translation> | |
| 1485 | 1486 | </message> |
| 1486 | 1487 | <message> |
| 1487 | 1488 | <location filename="configsteamwashdlg.cpp" line="88"/> |
| 1488 | 1489 | <source>하부 탱크 세척수 만들기 진행 중입니다.</source> |
| 1489 | - <translation type="unfinished">做下部槽洗涤水进行中。</translation> | |
| 1490 | + <translation>做下部槽洗涤水进行中。</translation> | |
| 1490 | 1491 | </message> |
| 1491 | 1492 | <message> |
| 1492 | 1493 | <location filename="configsteamwashdlg.cpp" line="102"/> |
| 1493 | 1494 | <source>세척이 종료되었습니다</source> |
| 1494 | - <translation type="unfinished">洗涤结束了</translation> | |
| 1495 | + <translation>洗涤结束了</translation> | |
| 1495 | 1496 | </message> |
| 1496 | 1497 | </context> |
| 1497 | 1498 | <context> |
| ... | ... | @@ -1505,7 +1506,7 @@ |
| 1505 | 1506 | <location filename="configtemptypedlg.ui" line="103"/> |
| 1506 | 1507 | <location filename="configtemptypedlg.ui" line="141"/> |
| 1507 | 1508 | <source>PushButton</source> |
| 1508 | - <translation type="unfinished">PushButton</translation> | |
| 1509 | + <translation>PushButton</translation> | |
| 1509 | 1510 | </message> |
| 1510 | 1511 | <message> |
| 1511 | 1512 | <location filename="configtemptypedlg.ui" line="183"/> |
| ... | ... | @@ -1529,7 +1530,7 @@ |
| 1529 | 1530 | <location filename="configtimeformatdlg.ui" line="103"/> |
| 1530 | 1531 | <location filename="configtimeformatdlg.ui" line="141"/> |
| 1531 | 1532 | <source>PushButton</source> |
| 1532 | - <translation type="unfinished">PushButton</translation> | |
| 1533 | + <translation>PushButton</translation> | |
| 1533 | 1534 | </message> |
| 1534 | 1535 | <message> |
| 1535 | 1536 | <location filename="configtimeformatdlg.ui" line="183"/> |
| ... | ... | @@ -1597,8 +1598,8 @@ |
| 1597 | 1598 | <translation>服务</translation> |
| 1598 | 1599 | </message> |
| 1599 | 1600 | <message> |
| 1600 | - <location filename="configwindow.cpp" line="176"/> | |
| 1601 | - <location filename="configwindow.cpp" line="424"/> | |
| 1601 | + <location filename="configwindow.cpp" line="177"/> | |
| 1602 | + <location filename="configwindow.cpp" line="431"/> | |
| 1602 | 1603 | <source>현재 설정을 적용하시겠습니까?</source> |
| 1603 | 1604 | <translation>是否应用当前设定?</translation> |
| 1604 | 1605 | </message> |
| ... | ... | @@ -1641,7 +1642,7 @@ |
| 1641 | 1642 | <message> |
| 1642 | 1643 | <location filename="cooldownpopup.ui" line="408"/> |
| 1643 | 1644 | <source>TextLabel</source> |
| 1644 | - <translation type="unfinished">TextLabel</translation> | |
| 1645 | + <translation>TextLabel</translation> | |
| 1645 | 1646 | </message> |
| 1646 | 1647 | </context> |
| 1647 | 1648 | <context> |
| ... | ... | @@ -1863,7 +1864,7 @@ |
| 1863 | 1864 | <location filename="fantestwindow.ui" line="241"/> |
| 1864 | 1865 | <location filename="fantestwindow.ui" line="272"/> |
| 1865 | 1866 | <source>START</source> |
| 1866 | - <translation type="unfinished">START</translation> | |
| 1867 | + <translation>START</translation> | |
| 1867 | 1868 | </message> |
| 1868 | 1869 | <message> |
| 1869 | 1870 | <location filename="fantestwindow.ui" line="456"/> |
| ... | ... | @@ -1947,10 +1948,10 @@ |
| 1947 | 1948 | <name>FileProcessDlg</name> |
| 1948 | 1949 | <message> |
| 1949 | 1950 | <location filename="fileprocessdlg.ui" line="100"/> |
| 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"/> | |
| 1951 | + <location filename="fileprocessdlg.cpp" line="434"/> | |
| 1952 | + <location filename="fileprocessdlg.cpp" line="450"/> | |
| 1953 | + <location filename="fileprocessdlg.cpp" line="466"/> | |
| 1954 | + <location filename="fileprocessdlg.cpp" line="819"/> | |
| 1954 | 1955 | <source>남은 예상 시간 : 1초</source> |
| 1955 | 1956 | <translation>剩下的预计时间:1秒</translation> |
| 1956 | 1957 | </message> |
| ... | ... | @@ -1960,265 +1961,309 @@ |
| 1960 | 1961 | <translation>取消</translation> |
| 1961 | 1962 | </message> |
| 1962 | 1963 | <message> |
| 1963 | - <location filename="fileprocessdlg.cpp" line="319"/> | |
| 1964 | + <location filename="fileprocessdlg.cpp" line="391"/> | |
| 1964 | 1965 | <source>erro%1,</source> |
| 1965 | 1966 | <translation>误差%1,</translation> |
| 1966 | 1967 | </message> |
| 1967 | 1968 | <message> |
| 1968 | - <location filename="fileprocessdlg.cpp" line="353"/> | |
| 1969 | - <location filename="fileprocessdlg.cpp" line="369"/> | |
| 1970 | - <location filename="fileprocessdlg.cpp" line="385"/> | |
| 1969 | + <location filename="fileprocessdlg.cpp" line="425"/> | |
| 1970 | + <location filename="fileprocessdlg.cpp" line="441"/> | |
| 1971 | + <location filename="fileprocessdlg.cpp" line="457"/> | |
| 1971 | 1972 | <source>Gas Error History |
| 1972 | 1973 | </source> |
| 1973 | - <translation type="unfinished">气误差记录 | |
| 1974 | + <translation>气误差记录 | |
| 1974 | 1975 | </translation> |
| 1975 | 1976 | </message> |
| 1976 | 1977 | <message> |
| 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"/> | |
| 1978 | + <location filename="fileprocessdlg.cpp" line="426"/> | |
| 1979 | + <location filename="fileprocessdlg.cpp" line="442"/> | |
| 1980 | + <location filename="fileprocessdlg.cpp" line="458"/> | |
| 1981 | + <location filename="fileprocessdlg.cpp" line="474"/> | |
| 1981 | 1982 | <source>no,</source> |
| 1982 | 1983 | <translation>否,</translation> |
| 1983 | 1984 | </message> |
| 1984 | 1985 | <message> |
| 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"/> | |
| 1986 | + <location filename="fileprocessdlg.cpp" line="426"/> | |
| 1987 | + <location filename="fileprocessdlg.cpp" line="442"/> | |
| 1988 | + <location filename="fileprocessdlg.cpp" line="458"/> | |
| 1989 | + <location filename="fileprocessdlg.cpp" line="474"/> | |
| 1989 | 1990 | <source>First Appearance,</source> |
| 1990 | 1991 | <translation>第一次出现,</translation> |
| 1991 | 1992 | </message> |
| 1992 | 1993 | <message> |
| 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"/> | |
| 1994 | + <location filename="fileprocessdlg.cpp" line="426"/> | |
| 1995 | + <location filename="fileprocessdlg.cpp" line="442"/> | |
| 1996 | + <location filename="fileprocessdlg.cpp" line="458"/> | |
| 1997 | + <location filename="fileprocessdlg.cpp" line="474"/> | |
| 1997 | 1998 | <source>Counter,</source> |
| 1998 | 1999 | <translation>计数器,</translation> |
| 1999 | 2000 | </message> |
| 2000 | 2001 | <message> |
| 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"/> | |
| 2002 | + <location filename="fileprocessdlg.cpp" line="426"/> | |
| 2003 | + <location filename="fileprocessdlg.cpp" line="442"/> | |
| 2004 | + <location filename="fileprocessdlg.cpp" line="458"/> | |
| 2005 | + <location filename="fileprocessdlg.cpp" line="474"/> | |
| 2005 | 2006 | <source>Last Appearance |
| 2006 | 2007 | </source> |
| 2007 | - <translation type="unfinished">最后出现 | |
| 2008 | + <translation>最后出现 | |
| 2008 | 2009 | </translation> |
| 2009 | 2010 | </message> |
| 2010 | 2011 | <message> |
| 2011 | - <location filename="fileprocessdlg.cpp" line="401"/> | |
| 2012 | + <location filename="fileprocessdlg.cpp" line="473"/> | |
| 2012 | 2013 | <source>Service Error History |
| 2013 | 2014 | |
| 2014 | 2015 | </source> |
| 2015 | - <translation type="unfinished">服务错误的记录 | |
| 2016 | + <translation>服务错误的记录 | |
| 2016 | 2017 | |
| 2017 | 2018 | </translation> |
| 2018 | 2019 | </message> |
| 2019 | 2020 | <message> |
| 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"/> | |
| 2021 | + <location filename="fileprocessdlg.cpp" line="550"/> | |
| 2022 | + <location filename="fileprocessdlg.cpp" line="628"/> | |
| 2023 | + <location filename="fileprocessdlg.cpp" line="832"/> | |
| 2024 | + <location filename="fileprocessdlg.cpp" line="888"/> | |
| 2025 | + <location filename="fileprocessdlg.cpp" line="983"/> | |
| 2026 | 2026 | <source>남은 예상 시간 : 완료</source> |
| 2027 | 2027 | <translation>剩下的预计时间:完成</translation> |
| 2028 | 2028 | </message> |
| 2029 | 2029 | <message> |
| 2030 | - <location filename="fileprocessdlg.cpp" line="499"/> | |
| 2030 | + <location filename="fileprocessdlg.cpp" line="571"/> | |
| 2031 | 2031 | <source>,Steam Heating Time,</source> |
| 2032 | 2032 | <translation>,蒸汽加热时间,</translation> |
| 2033 | 2033 | </message> |
| 2034 | 2034 | <message> |
| 2035 | - <location filename="fileprocessdlg.cpp" line="501"/> | |
| 2035 | + <location filename="fileprocessdlg.cpp" line="573"/> | |
| 2036 | 2036 | <source>,Hot Air Heating Time,</source> |
| 2037 | 2037 | <translation>,热风加热时间,</translation> |
| 2038 | 2038 | </message> |
| 2039 | 2039 | <message> |
| 2040 | - <location filename="fileprocessdlg.cpp" line="506"/> | |
| 2040 | + <location filename="fileprocessdlg.cpp" line="578"/> | |
| 2041 | 2041 | <source>,Hot Air Mode,</source> |
| 2042 | 2042 | <translation>,热风模式,</translation> |
| 2043 | 2043 | </message> |
| 2044 | 2044 | <message> |
| 2045 | - <location filename="fileprocessdlg.cpp" line="509"/> | |
| 2045 | + <location filename="fileprocessdlg.cpp" line="581"/> | |
| 2046 | 2046 | <source>,Steam Mode,</source> |
| 2047 | 2047 | <translation>,蒸汽模式,</translation> |
| 2048 | 2048 | </message> |
| 2049 | 2049 | <message> |
| 2050 | - <location filename="fileprocessdlg.cpp" line="512"/> | |
| 2050 | + <location filename="fileprocessdlg.cpp" line="584"/> | |
| 2051 | 2051 | <source>,Combi Mode,</source> |
| 2052 | 2052 | <translation>,相结合的方式,</translation> |
| 2053 | 2053 | </message> |
| 2054 | 2054 | <message> |
| 2055 | - <location filename="fileprocessdlg.cpp" line="515"/> | |
| 2055 | + <location filename="fileprocessdlg.cpp" line="587"/> | |
| 2056 | 2056 | <source>,세제없이 헹굼,</source> |
| 2057 | 2057 | <translation>,无洗涤剂漂洗,</translation> |
| 2058 | 2058 | </message> |
| 2059 | 2059 | <message> |
| 2060 | - <location filename="fileprocessdlg.cpp" line="518"/> | |
| 2060 | + <location filename="fileprocessdlg.cpp" line="590"/> | |
| 2061 | 2061 | <source>,간이세척,</source> |
| 2062 | 2062 | <translation>,简易洗涤,</translation> |
| 2063 | 2063 | </message> |
| 2064 | 2064 | <message> |
| 2065 | - <location filename="fileprocessdlg.cpp" line="521"/> | |
| 2065 | + <location filename="fileprocessdlg.cpp" line="593"/> | |
| 2066 | 2066 | <source>,표준세척,</source> |
| 2067 | 2067 | <translation>,标准洗涤,</translation> |
| 2068 | 2068 | </message> |
| 2069 | 2069 | <message> |
| 2070 | - <location filename="fileprocessdlg.cpp" line="524"/> | |
| 2070 | + <location filename="fileprocessdlg.cpp" line="596"/> | |
| 2071 | 2071 | <source>,강세척</source> |
| 2072 | 2072 | <translation>,强洗涤</translation> |
| 2073 | 2073 | </message> |
| 2074 | 2074 | <message> |
| 2075 | - <location filename="fileprocessdlg.cpp" line="527"/> | |
| 2075 | + <location filename="fileprocessdlg.cpp" line="599"/> | |
| 2076 | 2076 | <source>,고속세척,</source> |
| 2077 | 2077 | <translation>,高速洗涤,</translation> |
| 2078 | 2078 | </message> |
| 2079 | 2079 | <message> |
| 2080 | - <location filename="fileprocessdlg.cpp" line="530"/> | |
| 2080 | + <location filename="fileprocessdlg.cpp" line="602"/> | |
| 2081 | 2081 | <source>,쿨다운,</source> |
| 2082 | 2082 | <translation>,变凉,</translation> |
| 2083 | 2083 | </message> |
| 2084 | 2084 | <message> |
| 2085 | - <location filename="fileprocessdlg.cpp" line="532"/> | |
| 2085 | + <location filename="fileprocessdlg.cpp" line="604"/> | |
| 2086 | 2086 | <source>,전체작동시간,</source> |
| 2087 | 2087 | <translation>,整个操作时间,</translation> |
| 2088 | 2088 | </message> |
| 2089 | 2089 | <message> |
| 2090 | - <location filename="fileprocessdlg.cpp" line="536"/> | |
| 2090 | + <location filename="fileprocessdlg.cpp" line="608"/> | |
| 2091 | 2091 | <source>,도어 Open,</source> |
| 2092 | 2092 | <translation>,门打开,</translation> |
| 2093 | 2093 | </message> |
| 2094 | 2094 | <message> |
| 2095 | - <location filename="fileprocessdlg.cpp" line="538"/> | |
| 2095 | + <location filename="fileprocessdlg.cpp" line="610"/> | |
| 2096 | 2096 | <source>,볼밸브 Open,</source> |
| 2097 | 2097 | <translation>,球阀打开,</translation> |
| 2098 | 2098 | </message> |
| 2099 | 2099 | <message> |
| 2100 | - <location filename="fileprocessdlg.cpp" line="540"/> | |
| 2100 | + <location filename="fileprocessdlg.cpp" line="612"/> | |
| 2101 | 2101 | <source>,S/G 급수 솔레노이드,</source> |
| 2102 | 2102 | <translation>,S/G 供水电磁阀,</translation> |
| 2103 | 2103 | </message> |
| 2104 | 2104 | <message> |
| 2105 | - <location filename="fileprocessdlg.cpp" line="542"/> | |
| 2105 | + <location filename="fileprocessdlg.cpp" line="614"/> | |
| 2106 | 2106 | <source>,퀀칭 솔레노이드,</source> |
| 2107 | 2107 | <translation>,供干热电磁阀,</translation> |
| 2108 | 2108 | </message> |
| 2109 | 2109 | <message> |
| 2110 | - <location filename="fileprocessdlg.cpp" line="544"/> | |
| 2110 | + <location filename="fileprocessdlg.cpp" line="616"/> | |
| 2111 | 2111 | <source>,고내살수 노즐 솔레노이드 ,</source> |
| 2112 | 2112 | <translation>,庫内撒水喷嘴电磁阀,</translation> |
| 2113 | 2113 | </message> |
| 2114 | 2114 | <message> |
| 2115 | - <location filename="fileprocessdlg.cpp" line="546"/> | |
| 2115 | + <location filename="fileprocessdlg.cpp" line="618"/> | |
| 2116 | 2116 | <source>,호스릴 솔레노이드,</source> |
| 2117 | 2117 | <translation>,软管盘电磁阀,</translation> |
| 2118 | 2118 | </message> |
| 2119 | 2119 | <message> |
| 2120 | - <location filename="fileprocessdlg.cpp" line="548"/> | |
| 2120 | + <location filename="fileprocessdlg.cpp" line="620"/> | |
| 2121 | 2121 | <source>,세제공급장치,</source> |
| 2122 | 2122 | <translation>,洗涤剂供应装置 ,</translation> |
| 2123 | 2123 | </message> |
| 2124 | 2124 | <message> |
| 2125 | - <location filename="fileprocessdlg.cpp" line="550"/> | |
| 2125 | + <location filename="fileprocessdlg.cpp" line="622"/> | |
| 2126 | 2126 | <source>,배습댐퍼,</source> |
| 2127 | 2127 | <translation>,排湿挡板,</translation> |
| 2128 | 2128 | </message> |
| 2129 | 2129 | <message> |
| 2130 | - <location filename="fileprocessdlg.cpp" line="552"/> | |
| 2130 | + <location filename="fileprocessdlg.cpp" line="624"/> | |
| 2131 | 2131 | <source>,소형펌프모터,</source> |
| 2132 | 2132 | <translation>,小型泵电机,</translation> |
| 2133 | 2133 | </message> |
| 2134 | 2134 | <message> |
| 2135 | - <location filename="fileprocessdlg.cpp" line="554"/> | |
| 2135 | + <location filename="fileprocessdlg.cpp" line="626"/> | |
| 2136 | 2136 | <source>,중형펌프모터,</source> |
| 2137 | 2137 | <translation>,中型泵电机,</translation> |
| 2138 | 2138 | </message> |
| 2139 | 2139 | <message> |
| 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"/> | |
| 2140 | + <location filename="fileprocessdlg.cpp" line="656"/> | |
| 2141 | + <location filename="fileprocessdlg.cpp" line="800"/> | |
| 2142 | + <location filename="fileprocessdlg.cpp" line="841"/> | |
| 2143 | + <location filename="fileprocessdlg.cpp" line="897"/> | |
| 2144 | + <location filename="fileprocessdlg.cpp" line="931"/> | |
| 2145 | + <location filename="fileprocessdlg.cpp" line="993"/> | |
| 2145 | 2146 | <source>USB 인식을 실패하였습니다.</source> |
| 2146 | 2147 | <translation>USB识别失败了。</translation> |
| 2147 | 2148 | </message> |
| 2148 | 2149 | <message> |
| 2149 | - <location filename="fileprocessdlg.cpp" line="649"/> | |
| 2150 | + <location filename="fileprocessdlg.cpp" line="719"/> | |
| 2151 | + <source>Program & CookBook Upload Success!.</source> | |
| 2152 | + <translation></translation> | |
| 2153 | + </message> | |
| 2154 | + <message> | |
| 2155 | + <location filename="fileprocessdlg.cpp" line="721"/> | |
| 2150 | 2156 | <source>CookBook Upload Success!.</source> |
| 2151 | - <translation type="unfinished"></translation> | |
| 2157 | + <translation></translation> | |
| 2152 | 2158 | </message> |
| 2153 | 2159 | <message> |
| 2154 | - <location filename="fileprocessdlg.cpp" line="653"/> | |
| 2155 | - <source>완료</source> | |
| 2156 | - <translation>完成</translation> | |
| 2160 | + <location filename="fileprocessdlg.cpp" line="727"/> | |
| 2161 | + <source>Program Upload Success</source> | |
| 2162 | + <translation></translation> | |
| 2157 | 2163 | </message> |
| 2158 | 2164 | <message> |
| 2159 | - <location filename="fileprocessdlg.cpp" line="661"/> | |
| 2160 | - <source>에러 발생으로 종료합니다.</source> | |
| 2161 | - <translation type="unfinished"></translation> | |
| 2165 | + <location filename="fileprocessdlg.cpp" line="731"/> | |
| 2166 | + <source>Program Upload Fail</source> | |
| 2167 | + <translation></translation> | |
| 2162 | 2168 | </message> |
| 2163 | 2169 | <message> |
| 2164 | - <location filename="fileprocessdlg.cpp" line="672"/> | |
| 2170 | + <location filename="fileprocessdlg.cpp" line="736"/> | |
| 2171 | + <source>완료</source> | |
| 2172 | + <translation>完成</translation> | |
| 2173 | + </message> | |
| 2174 | + <message> | |
| 2175 | + <location filename="fileprocessdlg.cpp" line="756"/> | |
| 2165 | 2176 | <source>남은 예상 시간 : %1분 %2초</source> |
| 2166 | 2177 | <translation>剩下的预计时间:%1分%2秒</translation> |
| 2167 | 2178 | </message> |
| 2168 | 2179 | <message> |
| 2169 | - <location filename="fileprocessdlg.cpp" line="676"/> | |
| 2180 | + <location filename="fileprocessdlg.cpp" line="760"/> | |
| 2170 | 2181 | <source>남은 예상 시간 : %1초</source> |
| 2171 | 2182 | <translation>剩下的预计时间:%1秒</translation> |
| 2172 | 2183 | </message> |
| 2173 | 2184 | <message> |
| 2174 | - <location filename="fileprocessdlg.cpp" line="738"/> | |
| 2185 | + <location filename="fileprocessdlg.cpp" line="822"/> | |
| 2175 | 2186 | <source>설정 다운로드에 실패하였습니다.</source> |
| 2176 | 2187 | <translation>设定下载失败了。</translation> |
| 2177 | 2188 | </message> |
| 2178 | 2189 | <message> |
| 2179 | - <location filename="fileprocessdlg.cpp" line="752"/> | |
| 2190 | + <location filename="fileprocessdlg.cpp" line="836"/> | |
| 2180 | 2191 | <source>즐겨찾기 다운로드에 실패하였습니다.</source> |
| 2181 | 2192 | <translation>收藏夹下载失败了。</translation> |
| 2182 | 2193 | </message> |
| 2183 | 2194 | <message> |
| 2184 | - <location filename="fileprocessdlg.cpp" line="777"/> | |
| 2185 | - <location filename="fileprocessdlg.cpp" line="783"/> | |
| 2186 | - <location filename="fileprocessdlg.cpp" line="793"/> | |
| 2195 | + <location filename="fileprocessdlg.cpp" line="861"/> | |
| 2196 | + <location filename="fileprocessdlg.cpp" line="867"/> | |
| 2197 | + <location filename="fileprocessdlg.cpp" line="877"/> | |
| 2187 | 2198 | <source>설정 업로드에 실패하였습니다.</source> |
| 2188 | 2199 | <translation>设定上传失败了。</translation> |
| 2189 | 2200 | </message> |
| 2190 | 2201 | <message> |
| 2191 | - <location filename="fileprocessdlg.cpp" line="808"/> | |
| 2202 | + <location filename="fileprocessdlg.cpp" line="892"/> | |
| 2192 | 2203 | <source>즐겨찾기 업로드에 실패하였습니다.</source> |
| 2193 | 2204 | <translation>收藏夹上传失败了。</translation> |
| 2194 | 2205 | </message> |
| 2195 | 2206 | <message> |
| 2196 | - <location filename="fileprocessdlg.cpp" line="837"/> | |
| 2207 | + <location filename="fileprocessdlg.cpp" line="949"/> | |
| 2197 | 2208 | <source>남은 예상 시간 : 2초</source> |
| 2198 | 2209 | <translation>剩下的预计时间:2秒</translation> |
| 2199 | 2210 | </message> |
| 2200 | 2211 | <message> |
| 2201 | - <location filename="fileprocessdlg.cpp" line="840"/> | |
| 2212 | + <location filename="fileprocessdlg.cpp" line="952"/> | |
| 2202 | 2213 | <source>모델 정보 업로드에 실패하였습니다.</source> |
| 2203 | 2214 | <translation>上传模式失败。</translation> |
| 2204 | 2215 | </message> |
| 2205 | 2216 | <message> |
| 2206 | - <location filename="fileprocessdlg.cpp" line="853"/> | |
| 2217 | + <location filename="fileprocessdlg.cpp" line="967"/> | |
| 2207 | 2218 | <source>남은 예상 시간 : 1</source> |
| 2208 | 2219 | <translation>剩下的预计时间:1</translation> |
| 2209 | 2220 | </message> |
| 2210 | 2221 | <message> |
| 2211 | - <location filename="fileprocessdlg.cpp" line="857"/> | |
| 2222 | + <location filename="fileprocessdlg.cpp" line="971"/> | |
| 2212 | 2223 | <source>핫라인 쉐프 정보 업로드에 실패하였습니다.</source> |
| 2213 | 2224 | <translation>热线-主厨 设定上传失败了。</translation> |
| 2214 | 2225 | </message> |
| 2215 | 2226 | <message> |
| 2216 | - <location filename="fileprocessdlg.cpp" line="874"/> | |
| 2227 | + <location filename="fileprocessdlg.cpp" line="988"/> | |
| 2217 | 2228 | <source>핫라인 서비스 정보 업로드에 실패하였습니다.</source> |
| 2218 | 2229 | <translation>热线-服务 设定上传失败了。</translation> |
| 2219 | 2230 | </message> |
| 2220 | 2231 | </context> |
| 2221 | 2232 | <context> |
| 2233 | + <name>FlushWaterWindow</name> | |
| 2234 | + <message> | |
| 2235 | + <location filename="flushwaterwindow.ui" line="14"/> | |
| 2236 | + <source>MainWindow</source> | |
| 2237 | + <translation></translation> | |
| 2238 | + </message> | |
| 2239 | + <message> | |
| 2240 | + <location filename="flushwaterwindow.ui" line="157"/> | |
| 2241 | + <source>동파 방지 실행 중입니다</source> | |
| 2242 | + <translation type="unfinished"></translation> | |
| 2243 | + </message> | |
| 2244 | + <message> | |
| 2245 | + <location filename="flushwaterwindow.ui" line="219"/> | |
| 2246 | + <source>완료될 때까지 문을 열지 마세요. | |
| 2247 | +동파 방지 기능을 실행 중입니다.</source> | |
| 2248 | + <translation type="unfinished"></translation> | |
| 2249 | + </message> | |
| 2250 | + <message> | |
| 2251 | + <location filename="flushwaterwindow.ui" line="297"/> | |
| 2252 | + <source>실행 중</source> | |
| 2253 | + <translation type="unfinished"></translation> | |
| 2254 | + </message> | |
| 2255 | + <message> | |
| 2256 | + <location filename="flushwaterwindow.cpp" line="57"/> | |
| 2257 | + <source>동파 방지 실행이 완료되었습니다. 전원을 OFF 해주십시오</source> | |
| 2258 | + <translation type="unfinished"></translation> | |
| 2259 | + </message> | |
| 2260 | + <message> | |
| 2261 | + <location filename="flushwaterwindow.cpp" line="57"/> | |
| 2262 | + <source>취소</source> | |
| 2263 | + <translation>取消</translation> | |
| 2264 | + </message> | |
| 2265 | +</context> | |
| 2266 | +<context> | |
| 2222 | 2267 | <name>FormatterSpinBox</name> |
| 2223 | 2268 | <message> |
| 2224 | 2269 | <location filename="formatterspinbox.cpp" line="24"/> |
| ... | ... | @@ -2387,22 +2432,22 @@ |
| 2387 | 2432 | <location filename="gastestwindow.ui" line="148"/> |
| 2388 | 2433 | <location filename="gastestwindow.ui" line="419"/> |
| 2389 | 2434 | <source>START</source> |
| 2390 | - <translation type="unfinished">START</translation> | |
| 2435 | + <translation>START</translation> | |
| 2391 | 2436 | </message> |
| 2392 | 2437 | <message> |
| 2393 | 2438 | <location filename="gastestwindow.ui" line="204"/> |
| 2394 | 2439 | <source>RPM</source> |
| 2395 | - <translation type="unfinished"></translation> | |
| 2440 | + <translation></translation> | |
| 2396 | 2441 | </message> |
| 2397 | 2442 | <message> |
| 2398 | 2443 | <location filename="gastestwindow.ui" line="260"/> |
| 2399 | 2444 | <source>Max-RPM</source> |
| 2400 | - <translation type="unfinished"></translation> | |
| 2445 | + <translation></translation> | |
| 2401 | 2446 | </message> |
| 2402 | 2447 | <message> |
| 2403 | 2448 | <location filename="gastestwindow.ui" line="316"/> |
| 2404 | 2449 | <source>Min-RPM</source> |
| 2405 | - <translation type="unfinished"></translation> | |
| 2450 | + <translation></translation> | |
| 2406 | 2451 | </message> |
| 2407 | 2452 | <message> |
| 2408 | 2453 | <location filename="gastestwindow.ui" line="388"/> |
| ... | ... | @@ -2427,6 +2472,32 @@ |
| 2427 | 2472 | </message> |
| 2428 | 2473 | </context> |
| 2429 | 2474 | <context> |
| 2475 | + <name>HaccpDownloadDlg</name> | |
| 2476 | + <message> | |
| 2477 | + <location filename="haccpdownloaddlg.ui" line="89"/> | |
| 2478 | + <source>HACCP 데이터 다운로드</source> | |
| 2479 | + <translation>HACCP数据下载</translation> | |
| 2480 | + </message> | |
| 2481 | + <message> | |
| 2482 | + <location filename="haccpdownloaddlg.ui" line="184"/> | |
| 2483 | + <location filename="haccpdownloaddlg.ui" line="374"/> | |
| 2484 | + <source>년</source> | |
| 2485 | + <translation>年</translation> | |
| 2486 | + </message> | |
| 2487 | + <message> | |
| 2488 | + <location filename="haccpdownloaddlg.ui" line="237"/> | |
| 2489 | + <location filename="haccpdownloaddlg.ui" line="427"/> | |
| 2490 | + <source>월</source> | |
| 2491 | + <translation>月</translation> | |
| 2492 | + </message> | |
| 2493 | + <message> | |
| 2494 | + <location filename="haccpdownloaddlg.ui" line="290"/> | |
| 2495 | + <location filename="haccpdownloaddlg.ui" line="480"/> | |
| 2496 | + <source>일</source> | |
| 2497 | + <translation>日</translation> | |
| 2498 | + </message> | |
| 2499 | +</context> | |
| 2500 | +<context> | |
| 2430 | 2501 | <name>HistoryListWindow</name> |
| 2431 | 2502 | <message> |
| 2432 | 2503 | <location filename="historylistwindow.ui" line="263"/> |
| ... | ... | @@ -2552,27 +2623,27 @@ |
| 2552 | 2623 | </message> |
| 2553 | 2624 | <message> |
| 2554 | 2625 | <location filename="historylistwindow.h" line="41"/> |
| 2555 | - <source>상부점화장치<byte value="x0"/></source> | |
| 2626 | + <source>상부점화장치</source> | |
| 2556 | 2627 | <oldsource>상부점화장치</oldsource> |
| 2557 | - <translation type="unfinished">上部点火装置</translation> | |
| 2628 | + <translation>上部点火装置</translation> | |
| 2558 | 2629 | </message> |
| 2559 | 2630 | <message> |
| 2560 | 2631 | <location filename="historylistwindow.h" line="42"/> |
| 2561 | - <source>스팀점화장치<byte value="x0"/></source> | |
| 2632 | + <source>스팀점화장치</source> | |
| 2562 | 2633 | <oldsource>스팀점화장치</oldsource> |
| 2563 | - <translation type="unfinished">蒸汽点火装置</translation> | |
| 2634 | + <translation>蒸汽点火装置</translation> | |
| 2564 | 2635 | </message> |
| 2565 | 2636 | <message> |
| 2566 | 2637 | <location filename="historylistwindow.h" line="43"/> |
| 2567 | - <source>하부점화장치<byte value="x0"/></source> | |
| 2638 | + <source>하부점화장치</source> | |
| 2568 | 2639 | <oldsource>하부점화장치</oldsource> |
| 2569 | - <translation type="unfinished">下部点火装置</translation> | |
| 2640 | + <translation>下部点火装置</translation> | |
| 2570 | 2641 | </message> |
| 2571 | 2642 | <message> |
| 2572 | 2643 | <location filename="historylistwindow.h" line="44"/> |
| 2573 | - <source>서비스에러기록종합<byte value="x0"/></source> | |
| 2644 | + <source>서비스에러기록종합</source> | |
| 2574 | 2645 | <oldsource>서비스에러기록종합</oldsource> |
| 2575 | - <translation type="unfinished">服务错误记录总结</translation> | |
| 2646 | + <translation>服务错误记录总结</translation> | |
| 2576 | 2647 | </message> |
| 2577 | 2648 | </context> |
| 2578 | 2649 | <context> |
| ... | ... | @@ -2701,7 +2772,7 @@ |
| 2701 | 2772 | <translation type="vanished">V0.3.4</translation> |
| 2702 | 2773 | </message> |
| 2703 | 2774 | <message> |
| 2704 | - <location filename="mainwindow.cpp" line="137"/> | |
| 2775 | + <location filename="mainwindow.cpp" line="142"/> | |
| 2705 | 2776 | <source>세척이 정상적으로 종료되지 않아 |
| 2706 | 2777 | 반드시 세척통을 자동 세척해야 합니다. |
| 2707 | 2778 | 내부를 비워주세요</source> |
| ... | ... | @@ -2790,12 +2861,12 @@ |
| 2790 | 2861 | <message> |
| 2791 | 2862 | <location filename="manualcookwindow.ui" line="552"/> |
| 2792 | 2863 | <source>0<span style="font-size:11pt;">초</span></source> |
| 2793 | - <translation type="unfinished"></translation> | |
| 2864 | + <translation>0<span style="font-size:11pt;">秒</span></translation> | |
| 2794 | 2865 | </message> |
| 2795 | 2866 | <message> |
| 2796 | 2867 | <location filename="manualcookwindow.ui" line="638"/> |
| 2797 | 2868 | <source>30<span style="font-size:11pt;">℃</span></source> |
| 2798 | - <translation type="unfinished"></translation> | |
| 2869 | + <translation>30<span style="font-size:11pt;">℃</span</translation> | |
| 2799 | 2870 | </message> |
| 2800 | 2871 | <message> |
| 2801 | 2872 | <location filename="manualcookwindow.ui" line="702"/> |
| ... | ... | @@ -2805,7 +2876,7 @@ |
| 2805 | 2876 | <message> |
| 2806 | 2877 | <location filename="manualcookwindow.ui" line="897"/> |
| 2807 | 2878 | <source><span style="font-size:11pt;">℃</span></source> |
| 2808 | - <translation type="unfinished"></translation> | |
| 2879 | + <translation><span style="font-size:11pt;">℃</span></translation> | |
| 2809 | 2880 | </message> |
| 2810 | 2881 | <message> |
| 2811 | 2882 | <location filename="manualcookwindow.ui" line="1063"/> |
| ... | ... | @@ -2821,48 +2892,48 @@ |
| 2821 | 2892 | <translation>tool</translation> |
| 2822 | 2893 | </message> |
| 2823 | 2894 | <message> |
| 2824 | - <location filename="manualcookwindow.cpp" line="702"/> | |
| 2825 | - <location filename="manualcookwindow.cpp" line="712"/> | |
| 2895 | + <location filename="manualcookwindow.cpp" line="711"/> | |
| 2896 | + <location filename="manualcookwindow.cpp" line="721"/> | |
| 2826 | 2897 | <source>문을 닫아주세요</source> |
| 2827 | 2898 | <translation>请把门关上</translation> |
| 2828 | 2899 | </message> |
| 2829 | 2900 | <message> |
| 2830 | - <location filename="manualcookwindow.cpp" line="702"/> | |
| 2901 | + <location filename="manualcookwindow.cpp" line="711"/> | |
| 2831 | 2902 | <source>조리 중 문 열림 시간 모니터링 1단계</source> |
| 2832 | 2903 | <translation>烹饪中门打开的时间监测第一阶段</translation> |
| 2833 | 2904 | </message> |
| 2834 | 2905 | <message> |
| 2835 | - <location filename="manualcookwindow.cpp" line="712"/> | |
| 2906 | + <location filename="manualcookwindow.cpp" line="721"/> | |
| 2836 | 2907 | <source>조리 중 문 열림 시간 모니터링 2단계</source> |
| 2837 | 2908 | <translation>烹饪中门打开的时间监测第二阶段</translation> |
| 2838 | 2909 | </message> |
| 2839 | 2910 | <message> |
| 2840 | - <location filename="manualcookwindow.cpp" line="722"/> | |
| 2911 | + <location filename="manualcookwindow.cpp" line="731"/> | |
| 2841 | 2912 | <source>문이 오래 열려있어 조리가 취소되었습니다</source> |
| 2842 | 2913 | <translation>因为长时间开着门烹饪被取消了</translation> |
| 2843 | 2914 | </message> |
| 2844 | 2915 | <message> |
| 2845 | - <location filename="manualcookwindow.cpp" line="722"/> | |
| 2916 | + <location filename="manualcookwindow.cpp" line="731"/> | |
| 2846 | 2917 | <source>조리 중 문 열림 시간 모니터링 3단계</source> |
| 2847 | 2918 | <translation>烹饪中门打开的时间监测第三阶段</translation> |
| 2848 | 2919 | </message> |
| 2849 | 2920 | <message> |
| 2850 | - <location filename="manualcookwindow.cpp" line="1059"/> | |
| 2921 | + <location filename="manualcookwindow.cpp" line="1068"/> | |
| 2851 | 2922 | <source>즐겨찾기 항목에 추가하시겠습니까?</source> |
| 2852 | 2923 | <translation>添加到收藏夹项目吗?</translation> |
| 2853 | 2924 | </message> |
| 2854 | 2925 | <message> |
| 2855 | - <location filename="manualcookwindow.cpp" line="1090"/> | |
| 2926 | + <location filename="manualcookwindow.cpp" line="1099"/> | |
| 2856 | 2927 | <source>요리가 중단되고 환경 설정 모드로 들어갑니다. 진행할까요?</source> |
| 2857 | 2928 | <translation>中断烹饪后进入设定环境模式。是否进行?</translation> |
| 2858 | 2929 | </message> |
| 2859 | 2930 | <message> |
| 2860 | - <location filename="manualcookwindow.cpp" line="1113"/> | |
| 2931 | + <location filename="manualcookwindow.cpp" line="1122"/> | |
| 2861 | 2932 | <source>요리가 중단되고 즐겨찾기 모드로 들어갑니다. 진행할까요?</source> |
| 2862 | 2933 | <translation>中断烹饪后进入设定收藏夹模式。是否进行?</translation> |
| 2863 | 2934 | </message> |
| 2864 | 2935 | <message> |
| 2865 | - <location filename="manualcookwindow.cpp" line="1137"/> | |
| 2936 | + <location filename="manualcookwindow.cpp" line="1146"/> | |
| 2866 | 2937 | <source>요리가 중단되고 자동 세척 모드로 들어갑니다. 진행할까요?</source> |
| 2867 | 2938 | <translation>中断烹饪后进入设定自动清洗模式。是否进行?</translation> |
| 2868 | 2939 | </message> |
| ... | ... | @@ -2900,7 +2971,7 @@ |
| 2900 | 2971 | <message> |
| 2901 | 2972 | <location filename="multicookautowindow.cpp" line="140"/> |
| 2902 | 2973 | <source>다중 요리 목록에 추가하시겠습니까?</source> |
| 2903 | - <translation type="unfinished"></translation> | |
| 2974 | + <translation>添加到多个烹饪清单?</translation> | |
| 2904 | 2975 | </message> |
| 2905 | 2976 | </context> |
| 2906 | 2977 | <context> |
| ... | ... | @@ -2908,44 +2979,44 @@ |
| 2908 | 2979 | <message> |
| 2909 | 2980 | <location filename="multicookmanualwindow.ui" line="81"/> |
| 2910 | 2981 | <source>건열</source> |
| 2911 | - <translation type="unfinished">干热</translation> | |
| 2982 | + <translation>干热</translation> | |
| 2912 | 2983 | </message> |
| 2913 | 2984 | <message> |
| 2914 | 2985 | <location filename="multicookmanualwindow.ui" line="170"/> |
| 2915 | 2986 | <source>0%</source> |
| 2916 | - <translation type="unfinished">0%</translation> | |
| 2987 | + <translation>0%</translation> | |
| 2917 | 2988 | </message> |
| 2918 | 2989 | <message> |
| 2919 | 2990 | <location filename="multicookmanualwindow.ui" line="232"/> |
| 2920 | 2991 | <location filename="multicookmanualwindow.ui" line="378"/> |
| 2921 | 2992 | <source>감소</source> |
| 2922 | - <translation type="unfinished">减少</translation> | |
| 2993 | + <translation>减少</translation> | |
| 2923 | 2994 | </message> |
| 2924 | 2995 | <message> |
| 2925 | 2996 | <location filename="multicookmanualwindow.ui" line="294"/> |
| 2926 | 2997 | <location filename="multicookmanualwindow.ui" line="709"/> |
| 2927 | 2998 | <source>증가</source> |
| 2928 | - <translation type="unfinished">增加</translation> | |
| 2999 | + <translation>增加</translation> | |
| 2929 | 3000 | </message> |
| 2930 | 3001 | <message> |
| 2931 | 3002 | <location filename="multicookmanualwindow.ui" line="503"/> |
| 2932 | 3003 | <source>0<span style="font-size:11pt;">초</span></source> |
| 2933 | - <translation type="unfinished"></translation> | |
| 3004 | + <translation>0<span style="font-size:11pt;">秒</span></translation> | |
| 2934 | 3005 | </message> |
| 2935 | 3006 | <message> |
| 2936 | 3007 | <location filename="multicookmanualwindow.ui" line="527"/> |
| 2937 | 3008 | <source>콤비</source> |
| 2938 | - <translation type="unfinished">组合</translation> | |
| 3009 | + <translation>组合</translation> | |
| 2939 | 3010 | </message> |
| 2940 | 3011 | <message> |
| 2941 | 3012 | <location filename="multicookmanualwindow.ui" line="580"/> |
| 2942 | 3013 | <source>스팀</source> |
| 2943 | - <translation type="unfinished">蒸汽</translation> | |
| 3014 | + <translation>蒸汽</translation> | |
| 2944 | 3015 | </message> |
| 2945 | 3016 | <message> |
| 2946 | 3017 | <location filename="multicookmanualwindow.ui" line="647"/> |
| 2947 | 3018 | <source>30<span style="font-size:11pt;">℃</span></source> |
| 2948 | - <translation type="unfinished"></translation> | |
| 3019 | + <translation></translation> | |
| 2949 | 3020 | </message> |
| 2950 | 3021 | </context> |
| 2951 | 3022 | <context> |
| ... | ... | @@ -2953,79 +3024,80 @@ |
| 2953 | 3024 | <message> |
| 2954 | 3025 | <location filename="multicookselectionwindow.ui" line="78"/> |
| 2955 | 3026 | <source>건열</source> |
| 2956 | - <translation type="unfinished">干热</translation> | |
| 3027 | + <translation>干热</translation> | |
| 2957 | 3028 | </message> |
| 2958 | 3029 | <message> |
| 2959 | 3030 | <location filename="multicookselectionwindow.ui" line="121"/> |
| 2960 | 3031 | <source>채소및곡류</source> |
| 2961 | - <translation type="unfinished">蔬菜和谷物</translation> | |
| 3032 | + <translation>蔬菜和谷物</translation> | |
| 2962 | 3033 | </message> |
| 2963 | 3034 | <message> |
| 2964 | 3035 | <location filename="multicookselectionwindow.ui" line="164"/> |
| 2965 | 3036 | <source>제과제빵류</source> |
| 2966 | - <translation type="unfinished">饼干面包类</translation> | |
| 3037 | + <translation>饼干面包类</translation> | |
| 2967 | 3038 | </message> |
| 2968 | 3039 | <message> |
| 2969 | 3040 | <location filename="multicookselectionwindow.ui" line="207"/> |
| 2970 | 3041 | <source>육류</source> |
| 2971 | - <translation type="unfinished">肉类</translation> | |
| 3042 | + <translation>肉类</translation> | |
| 2972 | 3043 | </message> |
| 2973 | 3044 | <message> |
| 2974 | 3045 | <location filename="multicookselectionwindow.ui" line="250"/> |
| 2975 | 3046 | <source>디저트류</source> |
| 2976 | - <translation type="unfinished">甜点类</translation> | |
| 3047 | + <translation>甜点类</translation> | |
| 2977 | 3048 | </message> |
| 2978 | 3049 | <message> |
| 2979 | 3050 | <location filename="multicookselectionwindow.ui" line="280"/> |
| 2980 | 3051 | <source>가금류</source> |
| 2981 | - <translation type="unfinished">家禽类</translation> | |
| 3052 | + <translation>家禽类</translation> | |
| 2982 | 3053 | </message> |
| 2983 | 3054 | <message> |
| 2984 | 3055 | <location filename="multicookselectionwindow.ui" line="304"/> |
| 2985 | 3056 | <source>콤비</source> |
| 2986 | - <translation type="unfinished">组合</translation> | |
| 3057 | + <translation>组合</translation> | |
| 2987 | 3058 | </message> |
| 2988 | 3059 | <message> |
| 2989 | 3060 | <location filename="multicookselectionwindow.ui" line="337"/> |
| 2990 | 3061 | <source>다중요리</source> |
| 2991 | - <translation type="unfinished">多种烹饪</translation> | |
| 3062 | + <translation>多种烹饪</translation> | |
| 2992 | 3063 | </message> |
| 2993 | 3064 | <message> |
| 2994 | 3065 | <location filename="multicookselectionwindow.ui" line="370"/> |
| 2995 | 3066 | <source>프로그래밍모드</source> |
| 2996 | - <translation type="unfinished">编程模式</translation> | |
| 3067 | + <translation>编程模式</translation> | |
| 2997 | 3068 | </message> |
| 2998 | 3069 | <message> |
| 2999 | 3070 | <location filename="multicookselectionwindow.ui" line="413"/> |
| 3000 | 3071 | <source>기타요리</source> |
| 3001 | - <translation type="unfinished">其他烹饪</translation> | |
| 3072 | + <translation>其他烹饪</translation> | |
| 3002 | 3073 | </message> |
| 3003 | 3074 | <message> |
| 3004 | 3075 | <location filename="multicookselectionwindow.ui" line="459"/> |
| 3005 | 3076 | <source>세척모드</source> |
| 3006 | - <translation type="unfinished">洗涤模式</translation> | |
| 3077 | + <translation>洗涤模式</translation> | |
| 3007 | 3078 | </message> |
| 3008 | 3079 | <message> |
| 3009 | 3080 | <location filename="multicookselectionwindow.ui" line="489"/> |
| 3010 | 3081 | <source>부가기능</source> |
| 3011 | - <translation type="unfinished">附加功能</translation> | |
| 3082 | + <translation>附加功能</translation> | |
| 3012 | 3083 | </message> |
| 3013 | 3084 | <message> |
| 3014 | 3085 | <location filename="multicookselectionwindow.ui" line="617"/> |
| 3015 | 3086 | <source>스팀</source> |
| 3016 | - <translation type="unfinished">蒸汽</translation> | |
| 3087 | + <translation>蒸汽</translation> | |
| 3017 | 3088 | </message> |
| 3018 | 3089 | <message> |
| 3019 | 3090 | <location filename="multicookselectionwindow.ui" line="647"/> |
| 3020 | 3091 | <source>생선류</source> |
| 3021 | - <translation type="unfinished">海鲜类</translation> | |
| 3092 | + <translation>海鲜类</translation> | |
| 3022 | 3093 | </message> |
| 3023 | 3094 | <message> |
| 3024 | 3095 | <location filename="multicookselectionwindow.ui" line="702"/> |
| 3025 | 3096 | <location filename="multicookselectionwindow.cpp" line="83"/> |
| 3026 | 3097 | <source>1. 다중 요리에서 사용할 요리 카테고리를 선택해주세요 |
| 3027 | 3098 | 2. 스팀, 콤비, 건열 중에서 선택하시면 자동으로 다음 단계로 진행됩니다</source> |
| 3028 | - <translation type="unfinished"></translation> | |
| 3099 | + <translation>1. 请选择用于多种烹饪的类别 | |
| 3100 | +2. 选择蒸汽,混合或干燥它将自动进入下一步</translation> | |
| 3029 | 3101 | </message> |
| 3030 | 3102 | <message> |
| 3031 | 3103 | <location filename="multicookselectionwindow.cpp" line="103"/> |
| ... | ... | @@ -3046,7 +3118,8 @@ |
| 3046 | 3118 | <location filename="multicookselectionwindow.cpp" line="113"/> |
| 3047 | 3119 | <source>1. %1 선택하였습니다 |
| 3048 | 3120 | 2. 수동 메뉴 혹은 원하시는 자동 메뉴 상세 목록을 선택하세요</source> |
| 3049 | - <translation type="unfinished"></translation> | |
| 3121 | + <translation>1. 选择%1 | |
| 3122 | +2. 选择手动菜单或所需的自动菜单列表</translation> | |
| 3050 | 3123 | </message> |
| 3051 | 3124 | </context> |
| 3052 | 3125 | <context> |
| ... | ... | @@ -3054,7 +3127,7 @@ |
| 3054 | 3127 | <message> |
| 3055 | 3128 | <location filename="multicookwindow.ui" line="14"/> |
| 3056 | 3129 | <source>MainWindow</source> |
| 3057 | - <translation type="unfinished"></translation> | |
| 3130 | + <translation></translation> | |
| 3058 | 3131 | </message> |
| 3059 | 3132 | <message> |
| 3060 | 3133 | <location filename="multicookwindow.ui" line="113"/> |
| ... | ... | @@ -3070,7 +3143,7 @@ |
| 3070 | 3143 | <message> |
| 3071 | 3144 | <location filename="multicookwindow.ui" line="538"/> |
| 3072 | 3145 | <source>다중 요리 최근 요리 목록입니다</source> |
| 3073 | - <translation type="unfinished"></translation> | |
| 3146 | + <translation>最近煮熟的多个烹饪清单</translation> | |
| 3074 | 3147 | </message> |
| 3075 | 3148 | <message> |
| 3076 | 3149 | <location filename="multicookwindow.ui" line="754"/> |
| ... | ... | @@ -3085,7 +3158,7 @@ |
| 3085 | 3158 | <location filename="multicookwindow.ui" line="970"/> |
| 3086 | 3159 | <location filename="multicookwindow.ui" line="1034"/> |
| 3087 | 3160 | <source>slotLabel</source> |
| 3088 | - <translation type="unfinished"></translation> | |
| 3161 | + <translation></translation> | |
| 3089 | 3162 | </message> |
| 3090 | 3163 | <message> |
| 3091 | 3164 | <location filename="multicookwindow.ui" line="1027"/> |
| ... | ... | @@ -3103,7 +3176,7 @@ |
| 3103 | 3176 | <location filename="multicookwindow.cpp" line="420"/> |
| 3104 | 3177 | <location filename="multicookwindow.cpp" line="435"/> |
| 3105 | 3178 | <source>요리를 취소하시겠습니까?</source> |
| 3106 | - <translation type="unfinished"></translation> | |
| 3179 | + <translation>你确定要取消?</translation> | |
| 3107 | 3180 | </message> |
| 3108 | 3181 | </context> |
| 3109 | 3182 | <context> |
| ... | ... | @@ -3118,13 +3191,14 @@ |
| 3118 | 3191 | <name>NotiPopupDlg</name> |
| 3119 | 3192 | <message> |
| 3120 | 3193 | <location filename="notipopupdlg.ui" line="60"/> |
| 3194 | + <location filename="notipopupdlg.h" line="15"/> | |
| 3121 | 3195 | <source>확인</source> |
| 3122 | 3196 | <translation>确认</translation> |
| 3123 | 3197 | </message> |
| 3124 | 3198 | <message> |
| 3125 | 3199 | <location filename="notipopupdlg.ui" line="101"/> |
| 3126 | 3200 | <source>TextLabel</source> |
| 3127 | - <translation type="unfinished">TextLabel</translation> | |
| 3201 | + <translation>TextLabel</translation> | |
| 3128 | 3202 | </message> |
| 3129 | 3203 | </context> |
| 3130 | 3204 | <context> |
| ... | ... | @@ -3163,7 +3237,7 @@ |
| 3163 | 3237 | <location filename="operationtimeheat.ui" line="305"/> |
| 3164 | 3238 | <location filename="operationtimeheat.ui" line="340"/> |
| 3165 | 3239 | <source>RESET</source> |
| 3166 | - <translation type="unfinished">RESET</translation> | |
| 3240 | + <translation>RESET</translation> | |
| 3167 | 3241 | </message> |
| 3168 | 3242 | </context> |
| 3169 | 3243 | <context> |
| ... | ... | @@ -3367,7 +3441,7 @@ |
| 3367 | 3441 | <translation type="vanished">内部温度传感器出现了异常。</translation> |
| 3368 | 3442 | </message> |
| 3369 | 3443 | <message> |
| 3370 | - <location filename="ovenstatics.cpp" line="130"/> | |
| 3444 | + <location filename="ovenstatics.cpp" line="140"/> | |
| 3371 | 3445 | <source>내부 온도 센서 이상</source> |
| 3372 | 3446 | <oldsource>퀀칭 온도 이상 발생</oldsource> |
| 3373 | 3447 | <translation type="unfinished">淬火温度出现异常</translation> |
| ... | ... | @@ -3381,7 +3455,7 @@ |
| 3381 | 3455 | <translation type="vanished">淬火温度传感器出现了异常。</translation> |
| 3382 | 3456 | </message> |
| 3383 | 3457 | <message> |
| 3384 | - <location filename="ovenstatics.cpp" line="143"/> | |
| 3458 | + <location filename="ovenstatics.cpp" line="153"/> | |
| 3385 | 3459 | <source>퀀칭 온도 센서 발생</source> |
| 3386 | 3460 | <oldsource>벽면 온도 이상 발생</oldsource> |
| 3387 | 3461 | <translation type="unfinished">壁面温度出现异常</translation> |
| ... | ... | @@ -3391,17 +3465,17 @@ |
| 3391 | 3465 | <translation type="vanished">壁面温度传感器出现了异常。</translation> |
| 3392 | 3466 | </message> |
| 3393 | 3467 | <message> |
| 3394 | - <location filename="ovenstatics.cpp" line="149"/> | |
| 3468 | + <location filename="ovenstatics.cpp" line="159"/> | |
| 3395 | 3469 | <source>벽면 온도 센서 이상</source> |
| 3396 | 3470 | <oldsource>스팀제네레이터 온도 이상 발생</oldsource> |
| 3397 | - <translation type="unfinished">蒸汽发生器温度出现异常</translation> | |
| 3471 | + <translation>蒸汽发生器温度出现异常</translation> | |
| 3398 | 3472 | </message> |
| 3399 | 3473 | <message> |
| 3400 | 3474 | <source>스팀제네레이터 온도 센서에 이상이 발생하였습니다.</source> |
| 3401 | 3475 | <translation type="vanished">蒸汽发生器温度出现了异常 。</translation> |
| 3402 | 3476 | </message> |
| 3403 | 3477 | <message> |
| 3404 | - <location filename="ovenstatics.cpp" line="155"/> | |
| 3478 | + <location filename="ovenstatics.cpp" line="165"/> | |
| 3405 | 3479 | <source>스팀발생기 온도 센서 이상</source> |
| 3406 | 3480 | <oldsource>미트프로브 온도 이상 발생</oldsource> |
| 3407 | 3481 | <translation type="unfinished">肉探测器温度出现异常</translation> |
| ... | ... | @@ -3435,10 +3509,10 @@ |
| 3435 | 3509 | <translation type="vanished">肉探测器4温度出现异常</translation> |
| 3436 | 3510 | </message> |
| 3437 | 3511 | <message> |
| 3438 | - <location filename="ovenstatics.cpp" line="161"/> | |
| 3439 | - <location filename="ovenstatics.cpp" line="168"/> | |
| 3440 | - <location filename="ovenstatics.cpp" line="175"/> | |
| 3441 | - <location filename="ovenstatics.cpp" line="182"/> | |
| 3512 | + <location filename="ovenstatics.cpp" line="171"/> | |
| 3513 | + <location filename="ovenstatics.cpp" line="178"/> | |
| 3514 | + <location filename="ovenstatics.cpp" line="185"/> | |
| 3515 | + <location filename="ovenstatics.cpp" line="192"/> | |
| 3442 | 3516 | <source>중심온도 센서 이상</source> |
| 3443 | 3517 | <oldsource>PCB 온도 센서에 이상이 발생하였습니다.</oldsource> |
| 3444 | 3518 | <translation type="unfinished"></translation> |
| ... | ... | @@ -3460,7 +3534,7 @@ |
| 3460 | 3534 | <translation type="vanished">下部送风机出现通信异常</translation> |
| 3461 | 3535 | </message> |
| 3462 | 3536 | <message> |
| 3463 | - <location filename="ovenstatics.cpp" line="207"/> | |
| 3537 | + <location filename="ovenstatics.cpp" line="217"/> | |
| 3464 | 3538 | <source>상부 버너 컨트롤러 통신 이상</source> |
| 3465 | 3539 | <oldsource>하부 송풍기 이상 발생</oldsource> |
| 3466 | 3540 | <translation type="unfinished">上部送风机出现异常</translation> |
| ... | ... | @@ -3470,7 +3544,7 @@ |
| 3470 | 3544 | <translation type="vanished">蒸汽送风机出现通信异常</translation> |
| 3471 | 3545 | </message> |
| 3472 | 3546 | <message> |
| 3473 | - <location filename="ovenstatics.cpp" line="213"/> | |
| 3547 | + <location filename="ovenstatics.cpp" line="223"/> | |
| 3474 | 3548 | <source>하부 버너 컨트롤러 통신 이상</source> |
| 3475 | 3549 | <oldsource>스팀 송풍기 이상 발생</oldsource> |
| 3476 | 3550 | <translation type="unfinished">蒸汽送风机出现异常</translation> |
| ... | ... | @@ -3480,7 +3554,7 @@ |
| 3480 | 3554 | <translation type="vanished">下部风扇控制器出现通信异常</translation> |
| 3481 | 3555 | </message> |
| 3482 | 3556 | <message> |
| 3483 | - <location filename="ovenstatics.cpp" line="269"/> | |
| 3557 | + <location filename="ovenstatics.cpp" line="279"/> | |
| 3484 | 3558 | <source>하부 FAN 컨트롤러 이상 발생</source> |
| 3485 | 3559 | <translation>下部风扇控制器出现异常</translation> |
| 3486 | 3560 | </message> |
| ... | ... | @@ -3489,259 +3563,259 @@ |
| 3489 | 3563 | <translation type="vanished">上部风扇控制器出现通信异常</translation> |
| 3490 | 3564 | </message> |
| 3491 | 3565 | <message> |
| 3492 | - <location filename="ovenstatics.cpp" line="275"/> | |
| 3566 | + <location filename="ovenstatics.cpp" line="285"/> | |
| 3493 | 3567 | <source>상부 FAN 컨트롤러 이상 발생</source> |
| 3494 | 3568 | <translation>上部风扇控制器出现异常</translation> |
| 3495 | 3569 | </message> |
| 3496 | 3570 | <message> |
| 3497 | - <location filename="ovenstatics.cpp" line="250"/> | |
| 3571 | + <location filename="ovenstatics.cpp" line="260"/> | |
| 3498 | 3572 | <source>버너컨트롤러 1 이상 발생하였습니다.</source> |
| 3499 | 3573 | <translation>烧嘴控制器1出现了异常 。</translation> |
| 3500 | 3574 | </message> |
| 3501 | 3575 | <message> |
| 3502 | - <location filename="ovenstatics.cpp" line="131"/> | |
| 3576 | + <location filename="ovenstatics.cpp" line="141"/> | |
| 3503 | 3577 | <source>조리실 내부 온도센서 오류가 발생하였습니다. |
| 3504 | 3578 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3505 | 3579 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3506 | 3580 | <translation type="unfinished"></translation> |
| 3507 | 3581 | </message> |
| 3508 | 3582 | <message> |
| 3509 | - <location filename="ovenstatics.cpp" line="136"/> | |
| 3583 | + <location filename="ovenstatics.cpp" line="146"/> | |
| 3510 | 3584 | <source>배수 탱크 온도 센서 이상</source> |
| 3511 | 3585 | <translation type="unfinished"></translation> |
| 3512 | 3586 | </message> |
| 3513 | 3587 | <message> |
| 3514 | - <location filename="ovenstatics.cpp" line="137"/> | |
| 3588 | + <location filename="ovenstatics.cpp" line="147"/> | |
| 3515 | 3589 | <source>배수 탱크 온도센서 오류가 발생하였습니다. |
| 3516 | 3590 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3517 | 3591 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3518 | 3592 | <translation type="unfinished"></translation> |
| 3519 | 3593 | </message> |
| 3520 | 3594 | <message> |
| 3521 | - <location filename="ovenstatics.cpp" line="144"/> | |
| 3595 | + <location filename="ovenstatics.cpp" line="154"/> | |
| 3522 | 3596 | <source>퀀칭 온도센서 오류가 발생하였습니다. |
| 3523 | 3597 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3524 | 3598 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3525 | 3599 | <translation type="unfinished"></translation> |
| 3526 | 3600 | </message> |
| 3527 | 3601 | <message> |
| 3528 | - <location filename="ovenstatics.cpp" line="150"/> | |
| 3602 | + <location filename="ovenstatics.cpp" line="160"/> | |
| 3529 | 3603 | <source>조리실 벽면 센서 오류가 발생하였습니다. |
| 3530 | 3604 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3531 | 3605 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3532 | 3606 | <translation type="unfinished"></translation> |
| 3533 | 3607 | </message> |
| 3534 | 3608 | <message> |
| 3535 | - <location filename="ovenstatics.cpp" line="156"/> | |
| 3609 | + <location filename="ovenstatics.cpp" line="166"/> | |
| 3536 | 3610 | <source>스팀발생기 내부 센서 오류가 발생하였습니다. |
| 3537 | 3611 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3538 | 3612 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3539 | 3613 | <translation type="unfinished"></translation> |
| 3540 | 3614 | </message> |
| 3541 | 3615 | <message> |
| 3542 | - <location filename="ovenstatics.cpp" line="162"/> | |
| 3543 | - <location filename="ovenstatics.cpp" line="169"/> | |
| 3544 | - <location filename="ovenstatics.cpp" line="176"/> | |
| 3545 | - <location filename="ovenstatics.cpp" line="183"/> | |
| 3616 | + <location filename="ovenstatics.cpp" line="172"/> | |
| 3617 | + <location filename="ovenstatics.cpp" line="179"/> | |
| 3618 | + <location filename="ovenstatics.cpp" line="186"/> | |
| 3619 | + <location filename="ovenstatics.cpp" line="193"/> | |
| 3546 | 3620 | <source>중심온도계 센서 오류가 발생하였습니다. |
| 3547 | 3621 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3548 | 3622 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3549 | 3623 | <translation type="unfinished"></translation> |
| 3550 | 3624 | </message> |
| 3551 | 3625 | <message> |
| 3552 | - <location filename="ovenstatics.cpp" line="188"/> | |
| 3626 | + <location filename="ovenstatics.cpp" line="198"/> | |
| 3553 | 3627 | <source>PCB온도 과열 이상</source> |
| 3554 | 3628 | <translation type="unfinished"></translation> |
| 3555 | 3629 | </message> |
| 3556 | 3630 | <message> |
| 3557 | - <location filename="ovenstatics.cpp" line="189"/> | |
| 3631 | + <location filename="ovenstatics.cpp" line="199"/> | |
| 3558 | 3632 | <source>PCB 과열 안전장치가 작동하였습니다. |
| 3559 | 3633 | 제품의 전원을 OFF한 뒤, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3560 | 3634 | <translation type="unfinished"></translation> |
| 3561 | 3635 | </message> |
| 3562 | 3636 | <message> |
| 3563 | - <location filename="ovenstatics.cpp" line="208"/> | |
| 3637 | + <location filename="ovenstatics.cpp" line="218"/> | |
| 3564 | 3638 | <source>상부 버너 컨트롤러 PCB 통신 불량이 발생하였습니다. |
| 3565 | 3639 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3566 | 3640 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3567 | 3641 | <translation type="unfinished"></translation> |
| 3568 | 3642 | </message> |
| 3569 | 3643 | <message> |
| 3570 | - <location filename="ovenstatics.cpp" line="214"/> | |
| 3644 | + <location filename="ovenstatics.cpp" line="224"/> | |
| 3571 | 3645 | <source>하 버너 컨트롤러 PCB 통신 불량이 발생하였습니다. |
| 3572 | 3646 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3573 | 3647 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3574 | 3648 | <translation type="unfinished"></translation> |
| 3575 | 3649 | </message> |
| 3576 | 3650 | <message> |
| 3577 | - <location filename="ovenstatics.cpp" line="219"/> | |
| 3651 | + <location filename="ovenstatics.cpp" line="229"/> | |
| 3578 | 3652 | <source>스팀 버너 컨트롤러 통신 이상</source> |
| 3579 | 3653 | <translation type="unfinished"></translation> |
| 3580 | 3654 | </message> |
| 3581 | 3655 | <message> |
| 3582 | - <location filename="ovenstatics.cpp" line="220"/> | |
| 3656 | + <location filename="ovenstatics.cpp" line="230"/> | |
| 3583 | 3657 | <source>스팀발생기 버너 컨트롤러 PCB 통신 불량이 발생하였습니다. |
| 3584 | 3658 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3585 | 3659 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3586 | 3660 | <translation type="unfinished"></translation> |
| 3587 | 3661 | </message> |
| 3588 | 3662 | <message> |
| 3589 | - <location filename="ovenstatics.cpp" line="225"/> | |
| 3663 | + <location filename="ovenstatics.cpp" line="235"/> | |
| 3590 | 3664 | <source>하부 FAN 모터 컨트롤러 이상</source> |
| 3591 | 3665 | <translation type="unfinished"></translation> |
| 3592 | 3666 | </message> |
| 3593 | 3667 | <message> |
| 3594 | - <location filename="ovenstatics.cpp" line="226"/> | |
| 3668 | + <location filename="ovenstatics.cpp" line="236"/> | |
| 3595 | 3669 | <source>하부 Fan 모터 컨트롤러 이상 상황이 발생하였습니다. |
| 3596 | 3670 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3597 | 3671 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3598 | 3672 | <translation type="unfinished"></translation> |
| 3599 | 3673 | </message> |
| 3600 | 3674 | <message> |
| 3601 | - <location filename="ovenstatics.cpp" line="231"/> | |
| 3675 | + <location filename="ovenstatics.cpp" line="241"/> | |
| 3602 | 3676 | <source>상부 FAN 모터 컨트롤러 이상</source> |
| 3603 | 3677 | <translation type="unfinished"></translation> |
| 3604 | 3678 | </message> |
| 3605 | 3679 | <message> |
| 3606 | - <location filename="ovenstatics.cpp" line="232"/> | |
| 3680 | + <location filename="ovenstatics.cpp" line="242"/> | |
| 3607 | 3681 | <source>상부 Fan 모터 컨트롤러 이상 상황이 발생하였습니다. |
| 3608 | 3682 | 제품의 전원을 OFF한 후 다시 ON해 주십시오. |
| 3609 | 3683 | 이 후에도 문제가 해결되지 않을 경우, 서비스센터로 연락하여 주십시오.</source> |
| 3610 | 3684 | <translation type="unfinished"></translation> |
| 3611 | 3685 | </message> |
| 3612 | 3686 | <message> |
| 3613 | - <location filename="ovenstatics.cpp" line="251"/> | |
| 3687 | + <location filename="ovenstatics.cpp" line="261"/> | |
| 3614 | 3688 | <source>버너컨트롤러 1 이상 발생</source> |
| 3615 | 3689 | <translation>烧嘴控制器1出现异常</translation> |
| 3616 | 3690 | </message> |
| 3617 | 3691 | <message> |
| 3618 | - <location filename="ovenstatics.cpp" line="256"/> | |
| 3692 | + <location filename="ovenstatics.cpp" line="266"/> | |
| 3619 | 3693 | <source>버너컨트롤러 2 이상 발생하였습니다.</source> |
| 3620 | 3694 | <translation>烧嘴控制器2出现了异常 。</translation> |
| 3621 | 3695 | </message> |
| 3622 | 3696 | <message> |
| 3623 | - <location filename="ovenstatics.cpp" line="257"/> | |
| 3697 | + <location filename="ovenstatics.cpp" line="267"/> | |
| 3624 | 3698 | <source>버너컨트롤러 2 이상 발생</source> |
| 3625 | 3699 | <translation>烧嘴控制器1出现异常</translation> |
| 3626 | 3700 | </message> |
| 3627 | 3701 | <message> |
| 3628 | - <location filename="ovenstatics.cpp" line="262"/> | |
| 3702 | + <location filename="ovenstatics.cpp" line="272"/> | |
| 3629 | 3703 | <source>버너컨트롤러 3 이상 발생하였습니다.</source> |
| 3630 | 3704 | <translation>烧嘴控制器3出现了异常 。</translation> |
| 3631 | 3705 | </message> |
| 3632 | 3706 | <message> |
| 3633 | - <location filename="ovenstatics.cpp" line="263"/> | |
| 3707 | + <location filename="ovenstatics.cpp" line="273"/> | |
| 3634 | 3708 | <source>버너컨트롤러 3 이상 발생</source> |
| 3635 | 3709 | <translation>烧嘴控制器3出现异常</translation> |
| 3636 | 3710 | </message> |
| 3637 | 3711 | <message> |
| 3638 | - <location filename="ovenstatics.cpp" line="268"/> | |
| 3712 | + <location filename="ovenstatics.cpp" line="278"/> | |
| 3639 | 3713 | <source>하부 FAN 컨트롤러 이상 발생하였습니다.</source> |
| 3640 | 3714 | <translation>下部风扇控制器出现了异常 。</translation> |
| 3641 | 3715 | </message> |
| 3642 | 3716 | <message> |
| 3643 | - <location filename="ovenstatics.cpp" line="274"/> | |
| 3717 | + <location filename="ovenstatics.cpp" line="284"/> | |
| 3644 | 3718 | <source>상부 FAN 컨트롤러 이상 발생하였습니다.</source> |
| 3645 | 3719 | <translation>上部风扇控制器出现了异常 。</translation> |
| 3646 | 3720 | </message> |
| 3647 | 3721 | <message> |
| 3648 | - <location filename="ovenstatics.cpp" line="294"/> | |
| 3722 | + <location filename="ovenstatics.cpp" line="304"/> | |
| 3649 | 3723 | <source>상부 버너 착화 이상</source> |
| 3650 | 3724 | <translation type="unfinished"></translation> |
| 3651 | 3725 | </message> |
| 3652 | 3726 | <message> |
| 3653 | - <location filename="ovenstatics.cpp" line="295"/> | |
| 3727 | + <location filename="ovenstatics.cpp" line="305"/> | |
| 3654 | 3728 | <source>상부 버너 착화 이상 안전장치가 작동하였습니다. |
| 3655 | 3729 | 제품의 전원을 OFF한 후 가스 밸브가 잠겨있는지 확인 해 주십시오. |
| 3656 | 3730 | 가스 밸브가 열려 있는데도 에러 발생 시, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3657 | 3731 | <translation type="unfinished"></translation> |
| 3658 | 3732 | </message> |
| 3659 | 3733 | <message> |
| 3660 | - <location filename="ovenstatics.cpp" line="301"/> | |
| 3734 | + <location filename="ovenstatics.cpp" line="311"/> | |
| 3661 | 3735 | <source>하부 버너 착화 이상</source> |
| 3662 | 3736 | <translation type="unfinished"></translation> |
| 3663 | 3737 | </message> |
| 3664 | 3738 | <message> |
| 3665 | - <location filename="ovenstatics.cpp" line="302"/> | |
| 3739 | + <location filename="ovenstatics.cpp" line="312"/> | |
| 3666 | 3740 | <source>하부 버너 착화 이상 안전장치가 작동하였습니다. |
| 3667 | 3741 | 제품의 전원을 OFF한 후 가스 밸브가 잠겨있는지 확인 해 주십시오. |
| 3668 | 3742 | 가스 밸브가 열려 있는데도 에러 발생 시, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3669 | 3743 | <translation type="unfinished"></translation> |
| 3670 | 3744 | </message> |
| 3671 | 3745 | <message> |
| 3672 | - <location filename="ovenstatics.cpp" line="307"/> | |
| 3746 | + <location filename="ovenstatics.cpp" line="317"/> | |
| 3673 | 3747 | <source>스팀 버너 착화 이상</source> |
| 3674 | 3748 | <translation type="unfinished"></translation> |
| 3675 | 3749 | </message> |
| 3676 | 3750 | <message> |
| 3677 | - <location filename="ovenstatics.cpp" line="308"/> | |
| 3751 | + <location filename="ovenstatics.cpp" line="318"/> | |
| 3678 | 3752 | <source>스팀발생기 버너 착화 이상 안전장치가 작동하였습니다. |
| 3679 | 3753 | 제품의 전원을 OFF한 후 가스 밸브가 잠겨있는지 확인 해 주십시오. |
| 3680 | 3754 | 가스 밸브가 열려 있는데도 에러 발생 시, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3681 | 3755 | <translation type="unfinished"></translation> |
| 3682 | 3756 | </message> |
| 3683 | 3757 | <message> |
| 3684 | - <location filename="ovenstatics.cpp" line="313"/> | |
| 3758 | + <location filename="ovenstatics.cpp" line="323"/> | |
| 3685 | 3759 | <source>내부 온도 과열 이상</source> |
| 3686 | 3760 | <translation type="unfinished"></translation> |
| 3687 | 3761 | </message> |
| 3688 | 3762 | <message> |
| 3689 | - <location filename="ovenstatics.cpp" line="314"/> | |
| 3763 | + <location filename="ovenstatics.cpp" line="324"/> | |
| 3690 | 3764 | <source>조리실 내부 과열 안전장치가 작동하였습니다. |
| 3691 | 3765 | 제품의 전원을 OFF한 뒤, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3692 | 3766 | <translation type="unfinished"></translation> |
| 3693 | 3767 | </message> |
| 3694 | 3768 | <message> |
| 3695 | - <location filename="ovenstatics.cpp" line="320"/> | |
| 3769 | + <location filename="ovenstatics.cpp" line="330"/> | |
| 3696 | 3770 | <source>배수 탱크 온도 과열 이상</source> |
| 3697 | 3771 | <translation type="unfinished"></translation> |
| 3698 | 3772 | </message> |
| 3699 | 3773 | <message> |
| 3700 | - <location filename="ovenstatics.cpp" line="321"/> | |
| 3774 | + <location filename="ovenstatics.cpp" line="331"/> | |
| 3701 | 3775 | <source>배수 탱크 과열 안전장치가 작동하였습니다. |
| 3702 | 3776 | 제품의 전원을 OFF한 뒤, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3703 | 3777 | <translation type="unfinished"></translation> |
| 3704 | 3778 | </message> |
| 3705 | 3779 | <message> |
| 3706 | - <location filename="ovenstatics.cpp" line="327"/> | |
| 3780 | + <location filename="ovenstatics.cpp" line="337"/> | |
| 3707 | 3781 | <source>중심 온도 과열 이상</source> |
| 3708 | 3782 | <translation type="unfinished"></translation> |
| 3709 | 3783 | </message> |
| 3710 | 3784 | <message> |
| 3711 | - <location filename="ovenstatics.cpp" line="328"/> | |
| 3785 | + <location filename="ovenstatics.cpp" line="338"/> | |
| 3712 | 3786 | <source>중심온도계 과열 안전장치가 작동하였습니다. |
| 3713 | 3787 | 제품의 전원을 OFF한 뒤, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3714 | 3788 | <translation type="unfinished"></translation> |
| 3715 | 3789 | </message> |
| 3716 | 3790 | <message> |
| 3717 | - <location filename="ovenstatics.cpp" line="333"/> | |
| 3791 | + <location filename="ovenstatics.cpp" line="343"/> | |
| 3718 | 3792 | <source>벽면 온도 과열 이상</source> |
| 3719 | 3793 | <translation type="unfinished"></translation> |
| 3720 | 3794 | </message> |
| 3721 | 3795 | <message> |
| 3722 | - <location filename="ovenstatics.cpp" line="334"/> | |
| 3796 | + <location filename="ovenstatics.cpp" line="344"/> | |
| 3723 | 3797 | <source>조리실 벽면 과열 안전장치가 작동하였습니다. |
| 3724 | 3798 | 제품의 전원을 OFF한 뒤, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3725 | 3799 | <translation type="unfinished"></translation> |
| 3726 | 3800 | </message> |
| 3727 | 3801 | <message> |
| 3728 | - <location filename="ovenstatics.cpp" line="339"/> | |
| 3802 | + <location filename="ovenstatics.cpp" line="349"/> | |
| 3729 | 3803 | <source>스팀 온도 과열 이상</source> |
| 3730 | 3804 | <translation type="unfinished"></translation> |
| 3731 | 3805 | </message> |
| 3732 | 3806 | <message> |
| 3733 | - <location filename="ovenstatics.cpp" line="340"/> | |
| 3807 | + <location filename="ovenstatics.cpp" line="350"/> | |
| 3734 | 3808 | <source>스팀통 내부 과열 안전장치가 작동하였습니다. |
| 3735 | 3809 | 제품의 전원을 OFF한 뒤, 즉시 서비스센터에 연락하여 주십시오.</source> |
| 3736 | 3810 | <translation type="unfinished"></translation> |
| 3737 | 3811 | </message> |
| 3738 | 3812 | <message> |
| 3739 | - <location filename="ovenstatics.cpp" line="346"/> | |
| 3813 | + <location filename="ovenstatics.cpp" line="356"/> | |
| 3740 | 3814 | <source>급수 이상</source> |
| 3741 | 3815 | <translation type="unfinished"></translation> |
| 3742 | 3816 | </message> |
| 3743 | 3817 | <message> |
| 3744 | - <location filename="ovenstatics.cpp" line="347"/> | |
| 3818 | + <location filename="ovenstatics.cpp" line="357"/> | |
| 3745 | 3819 | <source>제품 급수이상 안전장치가 작동하였습니다. |
| 3746 | 3820 | 제품에 들어가는 물 공급을 확인하십시오. |
| 3747 | 3821 | 물 공급이 정상적으로 들어갈 시 즉시 서비스센터에 연락하여 주십시오. |
| ... | ... | @@ -3749,12 +3823,12 @@ |
| 3749 | 3823 | <translation type="unfinished"></translation> |
| 3750 | 3824 | </message> |
| 3751 | 3825 | <message> |
| 3752 | - <location filename="ovenstatics.cpp" line="353"/> | |
| 3826 | + <location filename="ovenstatics.cpp" line="363"/> | |
| 3753 | 3827 | <source>수위 센서 이상</source> |
| 3754 | 3828 | <translation type="unfinished"></translation> |
| 3755 | 3829 | </message> |
| 3756 | 3830 | <message> |
| 3757 | - <location filename="ovenstatics.cpp" line="354"/> | |
| 3831 | + <location filename="ovenstatics.cpp" line="364"/> | |
| 3758 | 3832 | <source>스팀통 수위 감지 안전장치가 작동하였습니다. |
| 3759 | 3833 | 제품에 들어가는 물 공급을 확인하십시오. |
| 3760 | 3834 | 물 공급이 정상적으로 들어갈 시 즉시 서비스센터에 연락하여 주십시오. |
| ... | ... | @@ -3855,7 +3929,7 @@ |
| 3855 | 3929 | <message> |
| 3856 | 3930 | <location filename="preheatpopup.ui" line="494"/> |
| 3857 | 3931 | <source>00:00</source> |
| 3858 | - <translation type="unfinished">00:00</translation> | |
| 3932 | + <translation>00:00</translation> | |
| 3859 | 3933 | </message> |
| 3860 | 3934 | <message> |
| 3861 | 3935 | <location filename="preheatpopup.ui" line="752"/> |
| ... | ... | @@ -3962,7 +4036,7 @@ |
| 3962 | 4036 | <message> |
| 3963 | 4037 | <location filename="programmingmanualwindow.ui" line="389"/> |
| 3964 | 4038 | <source><span style="font-size:11pt;">℃</span></source> |
| 3965 | - <translation type="unfinished"></translation> | |
| 4039 | + <translation></translation> | |
| 3966 | 4040 | </message> |
| 3967 | 4041 | <message> |
| 3968 | 4042 | <location filename="programmingmanualwindow.ui" line="513"/> |
| ... | ... | @@ -3978,7 +4052,7 @@ |
| 3978 | 4052 | <message> |
| 3979 | 4053 | <location filename="programmingmanualwindow.ui" line="701"/> |
| 3980 | 4054 | <source>30<span style="font-size:11pt;">℃</span></source> |
| 3981 | - <translation type="unfinished"></translation> | |
| 4055 | + <translation></translation> | |
| 3982 | 4056 | </message> |
| 3983 | 4057 | <message> |
| 3984 | 4058 | <location filename="programmingmanualwindow.ui" line="831"/> |
| ... | ... | @@ -3988,7 +4062,7 @@ |
| 3988 | 4062 | <message> |
| 3989 | 4063 | <location filename="programmingmanualwindow.ui" line="898"/> |
| 3990 | 4064 | <source>0<span style="font-size:11pt;">초</span></source> |
| 3991 | - <translation type="unfinished"></translation> | |
| 4065 | + <translation>0<span style="font-size:11pt;">秒</span></translation> | |
| 3992 | 4066 | </message> |
| 3993 | 4067 | </context> |
| 3994 | 4068 | <context> |
| ... | ... | @@ -4566,7 +4640,7 @@ |
| 4566 | 4640 | <location filename="realtimepartswindow.cpp" line="101"/> |
| 4567 | 4641 | <location filename="realtimepartswindow.cpp" line="104"/> |
| 4568 | 4642 | <location filename="realtimepartswindow.cpp" line="107"/> |
| 4569 | - <location filename="realtimepartswindow.cpp" line="110"/> | |
| 4643 | + <location filename="realtimepartswindow.cpp" line="111"/> | |
| 4570 | 4644 | <source>ON</source> |
| 4571 | 4645 | <translation>ON</translation> |
| 4572 | 4646 | </message> |
| ... | ... | @@ -4577,7 +4651,7 @@ |
| 4577 | 4651 | <location filename="realtimepartswindow.cpp" line="102"/> |
| 4578 | 4652 | <location filename="realtimepartswindow.cpp" line="105"/> |
| 4579 | 4653 | <location filename="realtimepartswindow.cpp" line="108"/> |
| 4580 | - <location filename="realtimepartswindow.cpp" line="111"/> | |
| 4654 | + <location filename="realtimepartswindow.cpp" line="110"/> | |
| 4581 | 4655 | <source>OFF</source> |
| 4582 | 4656 | <translation>OFF</translation> |
| 4583 | 4657 | </message> |
| ... | ... | @@ -4707,7 +4781,7 @@ |
| 4707 | 4781 | <location filename="reservetimepopup.ui" line="146"/> |
| 4708 | 4782 | <source>시</source> |
| 4709 | 4783 | <oldsource>월</oldsource> |
| 4710 | - <translation type="unfinished">月</translation> | |
| 4784 | + <translation>月</translation> | |
| 4711 | 4785 | </message> |
| 4712 | 4786 | <message> |
| 4713 | 4787 | <location filename="reservetimepopup.ui" line="167"/> |
| ... | ... | @@ -4803,17 +4877,17 @@ |
| 4803 | 4877 | <message> |
| 4804 | 4878 | <location filename="touchtestwindow.ui" line="14"/> |
| 4805 | 4879 | <source>MainWindow</source> |
| 4806 | - <translation type="unfinished"></translation> | |
| 4880 | + <translation></translation> | |
| 4807 | 4881 | </message> |
| 4808 | 4882 | <message> |
| 4809 | 4883 | <location filename="touchtestwindow.ui" line="31"/> |
| 4810 | 4884 | <source>X</source> |
| 4811 | - <translation type="unfinished"></translation> | |
| 4885 | + <translation></translation> | |
| 4812 | 4886 | </message> |
| 4813 | 4887 | <message> |
| 4814 | 4888 | <location filename="touchtestwindow.ui" line="48"/> |
| 4815 | 4889 | <source>C</source> |
| 4816 | - <translation type="unfinished"></translation> | |
| 4890 | + <translation></translation> | |
| 4817 | 4891 | </message> |
| 4818 | 4892 | </context> |
| 4819 | 4893 | <context> | ... | ... |
app/gui/oven_control/ovenstatics.cpp
| ... | ... | @@ -75,6 +75,14 @@ void OvenStatistics::onDataChanged() |
| 75 | 75 | bDataRefreshed = true; |
| 76 | 76 | time(<ime); |
| 77 | 77 | |
| 78 | + if(state.burner1_current_rpm != m_nUpperRpm || state.burner2_current_rpm != m_nLowerRpm || state.burner3_current_rpm != m_nSteamRpm){ | |
| 79 | + m_nUpperRpm = state.burner1_current_rpm; | |
| 80 | + m_nLowerRpm = state.burner2_current_rpm; | |
| 81 | + m_nSteamRpm = state.burner3_current_rpm; | |
| 82 | + | |
| 83 | + qDebug() << " Upper RPM : " << m_nUpperRpm << ", Lower Rpm : " << m_nLowerRpm << ", Steam Rpm : " << m_nSteamRpm; | |
| 84 | + } | |
| 85 | + | |
| 78 | 86 | if((control.cooking || oven->cooking() || oven->preheating() || oven->cooldown())) cookingstate = 1; |
| 79 | 87 | else if(state.cleaning_sate != 0 ) cookingstate = 2; |
| 80 | 88 | ... | ... |
app/gui/oven_control/ovenstatics.h
| ... | ... | @@ -429,7 +429,8 @@ private: |
| 429 | 429 | {error_type_popclr,error_type_popclr,error_type_popclr,error_type_popclr,error_type_popclr}, //SYS_OFF_COO_OFF |
| 430 | 430 | {error_type_popclrstopcmd,error_type_popclrstopcmd,error_type_popclrstopcmd,error_type_popclrstopcmd,error_type_popclrstopcmd}, //SYS_ON_COO_OFF |
| 431 | 431 | {error_type_popclrstopcmd,error_type_popclrstopcmd,error_type_popclrstopcmd,error_type_popclrstopcmd,error_type_popclrstopcmd}, //SYS_ON_COO_ON |
| 432 | - {error_type_popclrstopcmd,error_type_popclrstopcmd,error_type_popclrstopcmd,error_type_popclrstopcmd,error_type_popclrstopcmd}, //SYS_ON_WASH | |
| 432 | + {error_type_allnone,error_type_allnone,error_type_allnone,error_type_allnone,error_type_allnone}, //SYS_ON_WASH | |
| 433 | + //{error_type_popclrstopcmd,error_type_popclrstopcmd,error_type_popclrstopcmd,error_type_popclrstopcmd,error_type_popclrstopcmd}, //SYS_ON_WASH | |
| 433 | 434 | {error_type_popclr,error_type_popclr,error_type_popclr,error_type_popclr,error_type_popclr}, //SYS_OFF_COO_ON |
| 434 | 435 | }; |
| 435 | 436 | |
| ... | ... | @@ -492,6 +493,9 @@ private: |
| 492 | 493 | bool bDataRefreshed; |
| 493 | 494 | realtime_data realdata; |
| 494 | 495 | ServicePassInputDlg *m_wndSrvpassdlg; |
| 496 | + uint32_t m_nUpperRpm; | |
| 497 | + uint32_t m_nLowerRpm; | |
| 498 | + uint32_t m_nSteamRpm; | |
| 495 | 499 | |
| 496 | 500 | explicit OvenStatistics(QObject* parent); |
| 497 | 501 | ~OvenStatistics(); | ... | ... |