Commit 39aeb7f29fae288d488f21759700015fafdab5fe

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

한글화 진행 Programmingwindow.cpp

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
app/gui/oven_control/programmingwindow.cpp
... ... @@ -225,7 +225,7 @@ void ProgrammingWindow::on_backButton_clicked()
225 225 {
226 226 if (CookProgram::isModified())
227 227 {
228   - ConfirmPopup *p = new ConfirmPopup(this, "저장하지 않고 돌아가시겠습니까?");
  228 + ConfirmPopup *p = new ConfirmPopup(this, tr("저장하지 않고 돌아가시겠습니까?"));
229 229 connect(p, SIGNAL(accepted()), SLOT(back()));
230 230 p->showFullScreen();
231 231 }
... ... @@ -235,7 +235,7 @@ void ProgrammingWindow::on_backButton_clicked()
235 235  
236 236 void ProgrammingWindow::on_saveButton_clicked()
237 237 {
238   - ConfirmPopup *p = new ConfirmPopup(this, "저장하시겠습니까?");
  238 + ConfirmPopup *p = new ConfirmPopup(this, tr("저장하시겠습니까?"));
239 239 connect(p, SIGNAL(accepted()), SLOT(save()));
240 240 p->showFullScreen();
241 241 }
... ...