Make string “Check now” in Apple build translatable
authorWuzzy <almikes@aol.com>
Thu, 21 Sep 2017 22:56:49 +0200
changeset 12480 f29a1c645cf1
parent 12479 943f74b7a4b9
child 12481 37bcd4ef9242
Make string “Check now” in Apple build translatable
QTfrontend/ui/page/pageoptions.cpp
--- a/QTfrontend/ui/page/pageoptions.cpp	Thu Sep 21 22:51:36 2017 +0200
+++ b/QTfrontend/ui/page/pageoptions.cpp	Thu Sep 21 22:56:49 2017 +0200
@@ -707,7 +707,7 @@
             btnUpdateNow = new QPushButton(groupUpdates);
             connect(btnUpdateNow, SIGNAL(clicked()), this, SLOT(checkForUpdates()));
             btnUpdateNow->setWhatsThis(tr("Check for updates"));
-            btnUpdateNow->setText("Check now");
+            btnUpdateNow->setText(tr("Check now"));
             btnUpdateNow->setFixedSize(130, 30);
             groupUpdates->layout()->addWidget(btnUpdateNow, 0, 1);
         }