Commit 8a89c201ea37619950f8ad7dfbe93a90607da086
1 parent
7ae6a4b1d9
Exists in
master
and in
2 other branches
tr 추가
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
app/gui/oven_control/manualcookwindow.cpp
... | ... | @@ -528,7 +528,7 @@ void ManualCookWindow::jumpWash() |
528 | 528 | void ManualCookWindow::onMonitor1Timeout() |
529 | 529 | { |
530 | 530 | SoundPlayer::playError1(); |
531 | - ErrorPopupDlg *d = new ErrorPopupDlg(this, "문을 닫아주세요", "조리 중 문 열림 시간 모니터링 1단계"); | |
531 | + ErrorPopupDlg *d = new ErrorPopupDlg(this, tr("문을 닫아주세요"), tr("조리 중 문 열림 시간 모니터링 1단계")); | |
532 | 532 | d->showFullScreen(); |
533 | 533 | |
534 | 534 | if (monitorLevel > 1) |
... | ... | @@ -538,7 +538,7 @@ void ManualCookWindow::onMonitor1Timeout() |
538 | 538 | void ManualCookWindow::onMonitor2Timeout() |
539 | 539 | { |
540 | 540 | SoundPlayer::playError1(); |
541 | - ErrorPopupDlg *d = new ErrorPopupDlg(this, "문을 닫아주세요", "조리 중 문 열림 시간 모니터링 2단계"); | |
541 | + ErrorPopupDlg *d = new ErrorPopupDlg(this, tr("문을 닫아주세요"), tr("조리 중 문 열림 시간 모니터링 2단계")); | |
542 | 542 | d->showFullScreen(); |
543 | 543 | |
544 | 544 | if (monitorLevel > 2) |
... | ... | @@ -548,7 +548,7 @@ void ManualCookWindow::onMonitor2Timeout() |
548 | 548 | void ManualCookWindow::onMonitor3Timeout() |
549 | 549 | { |
550 | 550 | SoundPlayer::playError1(); |
551 | - ErrorPopupDlg *d = new ErrorPopupDlg(MainWindow::getInstance(), "문이 오래 열려있어 조리가 취소되었습니다", "조리 중 문 열림 시간 모니터링 3단계"); | |
551 | + ErrorPopupDlg *d = new ErrorPopupDlg(MainWindow::getInstance(), tr("문이 오래 열려있어 조리가 취소되었습니다"), tr("조리 중 문 열림 시간 모니터링 3단계")); | |
552 | 552 | d->showFullScreen(); |
553 | 553 | close(); |
554 | 554 | } | ... | ... |