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