diff options
author | Stiepen22 <stiepen22@gmx.de> | 2013-09-08 18:13:09 +0200 |
---|---|---|
committer | Stiepen22 <stiepen22@gmx.de> | 2013-09-08 18:13:09 +0200 |
commit | 31e5a0fe6d75e124bc772faafcef2618e16c3dbf (patch) | |
tree | a49f2cd2669423fb185baaa6fed78370c3ae3e45 /gui/consolewindow.cpp | |
parent | cbf3238f0e4d761ff34c9469f1ec88bd937152a5 (diff) | |
download | MultiMC-31e5a0fe6d75e124bc772faafcef2618e16c3dbf.tar MultiMC-31e5a0fe6d75e124bc772faafcef2618e16c3dbf.tar.gz MultiMC-31e5a0fe6d75e124bc772faafcef2618e16c3dbf.tar.lz MultiMC-31e5a0fe6d75e124bc772faafcef2618e16c3dbf.tar.xz MultiMC-31e5a0fe6d75e124bc772faafcef2618e16c3dbf.zip |
Changed all strings displayed to end user to use qts localization system
Diffstat (limited to 'gui/consolewindow.cpp')
-rw-r--r-- | gui/consolewindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/consolewindow.cpp b/gui/consolewindow.cpp index 8ea90d45..392eb50d 100644 --- a/gui/consolewindow.cpp +++ b/gui/consolewindow.cpp @@ -89,7 +89,8 @@ void ConsoleWindow::on_btnKillMinecraft_clicked() { ui->btnKillMinecraft->setEnabled(false); QMessageBox r_u_sure; - r_u_sure.setText("Kill Minecraft?"); + //: Main question of the kill confirmation dialog + r_u_sure.setText(tr("Kill Minecraft?")); r_u_sure.setInformativeText("This can cause the instance to get corrupted and should only be used if Minecraft is frozen for some reason"); r_u_sure.setStandardButtons(QMessageBox::Yes | QMessageBox::No); r_u_sure.setDefaultButton(QMessageBox::Yes); |