summaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
authorStiepen22 <stiepen22@gmx.de>2013-09-08 23:43:19 +0200
committerStiepen22 <stiepen22@gmx.de>2013-09-08 23:43:19 +0200
commit3e1cb5798835917bd64f34dc52fa1ca44eb4c7b2 (patch)
treec9305f1c365a8f6421dfc562e5f3887f1ecc445c /gui
parent45a338a3cd17be47dd5fe64a62b8ae42a2e3b1ca (diff)
downloadMultiMC-3e1cb5798835917bd64f34dc52fa1ca44eb4c7b2.tar
MultiMC-3e1cb5798835917bd64f34dc52fa1ca44eb4c7b2.tar.gz
MultiMC-3e1cb5798835917bd64f34dc52fa1ca44eb4c7b2.tar.lz
MultiMC-3e1cb5798835917bd64f34dc52fa1ca44eb4c7b2.tar.xz
MultiMC-3e1cb5798835917bd64f34dc52fa1ca44eb4c7b2.zip
Filed attempt on making localization work
Diffstat (limited to 'gui')
-rw-r--r--gui/consolewindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/consolewindow.cpp b/gui/consolewindow.cpp
index 392eb50d..628c5f00 100644
--- a/gui/consolewindow.cpp
+++ b/gui/consolewindow.cpp
@@ -91,7 +91,7 @@ void ConsoleWindow::on_btnKillMinecraft_clicked()
QMessageBox r_u_sure;
//: 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.setInformativeText(tr("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);
if (r_u_sure.exec() == QMessageBox::Yes)