Commit 64f6e5e049cae3eb2577ce7cc43f66efe13f996a
1 parent
cdb8e1595c
Exists in
master
and in
2 other branches
한글화 진행
- 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 | 444 | switch (showingStep.type) |
445 | 445 | { |
446 | 446 | case Define::PutThermometer: |
447 | - ui->doorStepLabel->setText("중심 온도계 삽입"); | |
447 | + ui->doorStepLabel->setText(tr("중심 온도계 삽입")); | |
448 | 448 | ui->cookStepAnimation->load(":/images/animation/thermometer_01.png"); |
449 | 449 | ui->cookStepAnimation->load(":/images/animation/thermometer_02.png"); |
450 | 450 | ui->cookStepAnimation->setGeometry((900-210)/2, 800, 210, 307); |
451 | 451 | ui->cookStepAnimation->start(300); |
452 | 452 | break; |
453 | 453 | case Define::Load: |
454 | - ui->doorStepLabel->setText("식재료 적재"); | |
454 | + ui->doorStepLabel->setText(tr("식재료 적재")); | |
455 | 455 | ui->cookStepAnimation->load(":/images/animation/load_01.png"); |
456 | 456 | ui->cookStepAnimation->load(":/images/animation/load_02.png"); |
457 | 457 | ui->cookStepAnimation->load(":/images/animation/load_03.png"); |
... | ... | @@ -463,7 +463,7 @@ void AutoCookWindow::updateView() |
463 | 463 | ui->cookStepAnimation->start(300); |
464 | 464 | break; |
465 | 465 | case Define::Cut: |
466 | - ui->doorStepLabel->setText("자르기"); | |
466 | + ui->doorStepLabel->setText(tr("자르기")); | |
467 | 467 | ui->cookStepAnimation->load(":/images/animation/cut_01.png"); |
468 | 468 | ui->cookStepAnimation->load(":/images/animation/cut_02.png"); |
469 | 469 | ui->cookStepAnimation->load(":/images/animation/cut_03.png"); |
... | ... | @@ -471,7 +471,7 @@ void AutoCookWindow::updateView() |
471 | 471 | ui->cookStepAnimation->start(300); |
472 | 472 | break; |
473 | 473 | case Define::Pour: |
474 | - ui->doorStepLabel->setText("물 붓기"); | |
474 | + ui->doorStepLabel->setText(tr("물 붓기")); | |
475 | 475 | ui->cookStepAnimation->load(":/images/animation/pour_01.png"); |
476 | 476 | ui->cookStepAnimation->load(":/images/animation/pour_02.png"); |
477 | 477 | ui->cookStepAnimation->load(":/images/animation/pour_03.png"); | ... | ... |