Commit 64f6e5e049cae3eb2577ce7cc43f66efe13f996a

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

한글화 진행

 - autocookwindow.cpp
Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
app/gui/oven_control/autocookwindow.cpp
@@ -444,14 +444,14 @@ void AutoCookWindow::updateView() @@ -444,14 +444,14 @@ void AutoCookWindow::updateView()
444 switch (showingStep.type) 444 switch (showingStep.type)
445 { 445 {
446 case Define::PutThermometer: 446 case Define::PutThermometer:
447 - ui->doorStepLabel->setText("중심 온도계 삽입"); 447 + ui->doorStepLabel->setText(tr("중심 온도계 삽입"));
448 ui->cookStepAnimation->load(":/images/animation/thermometer_01.png"); 448 ui->cookStepAnimation->load(":/images/animation/thermometer_01.png");
449 ui->cookStepAnimation->load(":/images/animation/thermometer_02.png"); 449 ui->cookStepAnimation->load(":/images/animation/thermometer_02.png");
450 ui->cookStepAnimation->setGeometry((900-210)/2, 800, 210, 307); 450 ui->cookStepAnimation->setGeometry((900-210)/2, 800, 210, 307);
451 ui->cookStepAnimation->start(300); 451 ui->cookStepAnimation->start(300);
452 break; 452 break;
453 case Define::Load: 453 case Define::Load:
454 - ui->doorStepLabel->setText("식재료 적재"); 454 + ui->doorStepLabel->setText(tr("식재료 적재"));
455 ui->cookStepAnimation->load(":/images/animation/load_01.png"); 455 ui->cookStepAnimation->load(":/images/animation/load_01.png");
456 ui->cookStepAnimation->load(":/images/animation/load_02.png"); 456 ui->cookStepAnimation->load(":/images/animation/load_02.png");
457 ui->cookStepAnimation->load(":/images/animation/load_03.png"); 457 ui->cookStepAnimation->load(":/images/animation/load_03.png");
@@ -463,7 +463,7 @@ void AutoCookWindow::updateView() @@ -463,7 +463,7 @@ void AutoCookWindow::updateView()
463 ui->cookStepAnimation->start(300); 463 ui->cookStepAnimation->start(300);
464 break; 464 break;
465 case Define::Cut: 465 case Define::Cut:
466 - ui->doorStepLabel->setText("자르기"); 466 + ui->doorStepLabel->setText(tr("자르기"));
467 ui->cookStepAnimation->load(":/images/animation/cut_01.png"); 467 ui->cookStepAnimation->load(":/images/animation/cut_01.png");
468 ui->cookStepAnimation->load(":/images/animation/cut_02.png"); 468 ui->cookStepAnimation->load(":/images/animation/cut_02.png");
469 ui->cookStepAnimation->load(":/images/animation/cut_03.png"); 469 ui->cookStepAnimation->load(":/images/animation/cut_03.png");
@@ -471,7 +471,7 @@ void AutoCookWindow::updateView() @@ -471,7 +471,7 @@ void AutoCookWindow::updateView()
471 ui->cookStepAnimation->start(300); 471 ui->cookStepAnimation->start(300);
472 break; 472 break;
473 case Define::Pour: 473 case Define::Pour:
474 - ui->doorStepLabel->setText("물 붓기"); 474 + ui->doorStepLabel->setText(tr("물 붓기"));
475 ui->cookStepAnimation->load(":/images/animation/pour_01.png"); 475 ui->cookStepAnimation->load(":/images/animation/pour_01.png");
476 ui->cookStepAnimation->load(":/images/animation/pour_02.png"); 476 ui->cookStepAnimation->load(":/images/animation/pour_02.png");
477 ui->cookStepAnimation->load(":/images/animation/pour_03.png"); 477 ui->cookStepAnimation->load(":/images/animation/pour_03.png");