Commit ffa23885eb23430ee4225a4ab16cf5ac6f64c2a1
1 parent
dcfe1e5248
Exists in
master
and in
2 other branches
tr 추가
Showing
1 changed file
with
6 additions
and
6 deletions
Show diff stats
app/gui/oven_control/autocookwindow.cpp
| ... | ... | @@ -757,7 +757,7 @@ void AutoCookWindow::monitor() |
| 757 | 757 | { |
| 758 | 758 | SoundPlayer::playError2(); |
| 759 | 759 | |
| 760 | - ErrorPopupDlg *d = new ErrorPopupDlg(this, "문을 닫아주세요", "조리 중 문 열림 시간 모니터링 1단계"); | |
| 760 | + ErrorPopupDlg *d = new ErrorPopupDlg(this, tr("문을 닫아주세요"), tr("조리 중 문 열림 시간 모니터링 1단계")); | |
| 761 | 761 | d->showFullScreen(); |
| 762 | 762 | |
| 763 | 763 | cookingMonitorTime2.start(); |
| ... | ... | @@ -769,7 +769,7 @@ void AutoCookWindow::monitor() |
| 769 | 769 | { |
| 770 | 770 | SoundPlayer::playError2(); |
| 771 | 771 | |
| 772 | - ErrorPopupDlg *d = new ErrorPopupDlg(this, "문을 닫아주세요", "조리 중 문 열림 시간 모니터링 2단계"); | |
| 772 | + ErrorPopupDlg *d = new ErrorPopupDlg(this, tr("문을 닫아주세요"), tr("조리 중 문 열림 시간 모니터링 2단계")); | |
| 773 | 773 | d->showFullScreen(); |
| 774 | 774 | |
| 775 | 775 | cookingMonitorTime3.start(); |
| ... | ... | @@ -781,7 +781,7 @@ void AutoCookWindow::monitor() |
| 781 | 781 | { |
| 782 | 782 | SoundPlayer::playError2(); |
| 783 | 783 | |
| 784 | - ErrorPopupDlg *d = new ErrorPopupDlg(MainWindow::getInstance(), "문이 오래 열려있어 조리가 취소되었습니다", "조리 중 문 열림 시간 모니터링 3단계"); | |
| 784 | + ErrorPopupDlg *d = new ErrorPopupDlg(MainWindow::getInstance(), tr("문이 오래 열려있어 조리가 취소되었습니다"), tr("조리 중 문 열림 시간 모니터링 3단계")); | |
| 785 | 785 | d->showFullScreen(); |
| 786 | 786 | |
| 787 | 787 | MainWindow::killChild(); |
| ... | ... | @@ -808,7 +808,7 @@ void AutoCookWindow::monitor() |
| 808 | 808 | { |
| 809 | 809 | SoundPlayer::playError2(); |
| 810 | 810 | |
| 811 | - ErrorPopupDlg *d = new ErrorPopupDlg(this, "문을 닫아주세요", "적재 중 문 열림 시간 모니터링 1단계"); | |
| 811 | + ErrorPopupDlg *d = new ErrorPopupDlg(this, tr("문을 닫아주세요"), tr("적재 중 문 열림 시간 모니터링 1단계")); | |
| 812 | 812 | d->showFullScreen(); |
| 813 | 813 | |
| 814 | 814 | loadingMonitorTime2.start(); |
| ... | ... | @@ -820,7 +820,7 @@ void AutoCookWindow::monitor() |
| 820 | 820 | { |
| 821 | 821 | SoundPlayer::playError2(); |
| 822 | 822 | |
| 823 | - ErrorPopupDlg *d = new ErrorPopupDlg(this, "문을 닫아주세요", "적재 중 문 열림 시간 모니터링 2단계"); | |
| 823 | + ErrorPopupDlg *d = new ErrorPopupDlg(this, tr("문을 닫아주세요"), tr("적재 중 문 열림 시간 모니터링 2단계")); | |
| 824 | 824 | d->showFullScreen(); |
| 825 | 825 | |
| 826 | 826 | loadingMonitorTime3.start(); |
| ... | ... | @@ -832,7 +832,7 @@ void AutoCookWindow::monitor() |
| 832 | 832 | { |
| 833 | 833 | SoundPlayer::playError2(); |
| 834 | 834 | |
| 835 | - ErrorPopupDlg *d = new ErrorPopupDlg(this, "문을 닫아주세요", "적재 중 문 열림 시간 모니터링 3단계"); | |
| 835 | + ErrorPopupDlg *d = new ErrorPopupDlg(this, tr("문을 닫아주세요"), tr("적재 중 문 열림 시간 모니터링 3단계")); | |
| 836 | 836 | d->showFullScreen(); |
| 837 | 837 | |
| 838 | 838 | MainWindow::killChild(); | ... | ... |