[PC-BSD Commits] r19241 - pcbsd/current/src-qt4/pc-installgui
svn at pcbsd.org
svn at pcbsd.org
Mon Sep 17 08:32:02 PDT 2012
Author: kris
Date: 2012-09-17 15:32:02 +0000 (Mon, 17 Sep 2012)
New Revision: 19241
Modified:
pcbsd/current/src-qt4/pc-installgui/installer.cpp
Log:
Fix next / back / cancel buttons not showing i18n text
Modified: pcbsd/current/src-qt4/pc-installgui/installer.cpp
===================================================================
--- pcbsd/current/src-qt4/pc-installgui/installer.cpp 2012-09-17 15:11:05 UTC (rev 19240)
+++ pcbsd/current/src-qt4/pc-installgui/installer.cpp 2012-09-17 15:32:02 UTC (rev 19241)
@@ -20,6 +20,10 @@
connect(pushChangeKeyLayout, SIGNAL(clicked()), this, SLOT(slotPushKeyLayout()));
connect(pushHardware, SIGNAL(clicked()), this, SLOT(slotCheckHardware()));
+ abortButton->setText(tr("&Cancel"));
+ backButton->setText(tr("&Back"));
+ nextButton->setText(tr("&Next"));
+
// Init the MBR to yes
loadMBR = true;
// Init the GPT to no
More information about the Commits
mailing list