From 3d5fe118703f6f6a3eac89e994324fe40a646800 Mon Sep 17 00:00:00 2001 From: byloveletter Date: Fri, 9 Jun 2017 16:09:45 +0900 Subject: [PATCH] =?UTF-8?q?=ED=95=9C=EA=B8=80=ED=99=94=20=EC=A7=84?= =?UTF-8?q?=ED=96=89=20washwindow.cpp?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/gui/oven_control/washwindow.cpp | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/app/gui/oven_control/washwindow.cpp b/app/gui/oven_control/washwindow.cpp index 508a98d..0553bfe 100644 --- a/app/gui/oven_control/washwindow.cpp +++ b/app/gui/oven_control/washwindow.cpp @@ -152,8 +152,8 @@ void WashWindow::onChanged() ui->animation->load(":/images/animation/wash_03.png"); ui->animation->load(":/images/animation/wash_04.png"); ui->washStepGauge->setValue(0); - ui->titleLabel->setText("기기의 내부를 세척 중입니다"); - ui->descLabel->setText("완료될 때까지 문을 열지 마세요.\n기기의 내부의 자동 세척 기능을 실행 중입니다."); + ui->titleLabel->setText(tr("기기의 내부를 세척 중입니다")); + ui->descLabel->setText(tr("완료될 때까지 문을 열지 마세요.\n기기의 내부의 자동 세척 기능을 실행 중입니다.")); ui->washStepTypeLabel->setText(""); ui->washStepCountLabel->setText(""); @@ -180,37 +180,37 @@ void WashWindow::onChanged() switch (control.clean_step_type) { case 1: - ui->washStepTypeLabel->setText("내부 헹굼 진행 중입니다."); + ui->washStepTypeLabel->setText(tr("내부 헹굼 진행 중입니다.")); break; case 2: - ui->washStepTypeLabel->setText("스팀 급수 진행 중입니다."); + ui->washStepTypeLabel->setText(tr("스팀 급수 진행 중입니다.")); break; case 3: - ui->washStepTypeLabel->setText("내부 팬 세척 진행 중입니다."); + ui->washStepTypeLabel->setText(tr("내부 팬 세척 진행 중입니다.")); break; case 4: - ui->washStepTypeLabel->setText("내부 스팀 불림 진행 중입니다."); + ui->washStepTypeLabel->setText(tr("내부 스팀 불림 진행 중입니다.")); break; case 5: - ui->washStepTypeLabel->setText("내부 강 세척 진행 중입니다."); + ui->washStepTypeLabel->setText(tr("내부 강 세척 진행 중입니다.")); break; case 6: - ui->washStepTypeLabel->setText("내부 상부 세척 진행 중입니다."); + ui->washStepTypeLabel->setText(tr("내부 상부 세척 진행 중입니다.")); break; case 7: - ui->washStepTypeLabel->setText("내부 스팀 세척 진행 중입니다."); + ui->washStepTypeLabel->setText(tr("내부 스팀 세척 진행 중입니다.")); break; case 8: - ui->washStepTypeLabel->setText("세척 종료 진행 중입니다."); + ui->washStepTypeLabel->setText(tr("세척 종료 진행 중입니다.")); break; case 9: - ui->washStepTypeLabel->setText("세제 세척수 만들기 진행 중입니다."); + ui->washStepTypeLabel->setText(tr("세제 세척수 만들기 진행 중입니다.")); break; case 10: - ui->washStepTypeLabel->setText("세제 세척수 헹굼 진행 중입니다."); + ui->washStepTypeLabel->setText(tr("세제 세척수 헹굼 진행 중입니다.")); break; case 11: - ui->washStepTypeLabel->setText("하부 탱크 세척수 만들기 진행 중입니다."); + ui->washStepTypeLabel->setText(tr("하부 탱크 세척수 만들기 진행 중입니다.")); break; } } @@ -226,7 +226,7 @@ void WashWindow::onChanged() SoundPlayer::playStop(); DirtyLevel::wash(type); - ui->titleLabel->setText("세척이 종료되었습니다"); + ui->titleLabel->setText(tr("세척이 종료되었습니다")); ui->descLabel->setText(""); ui->washStepTypeLabel->setText(""); ui->washStepCountLabel->setText(""); -- 2.1.4