# HG changeset patch
# User Wuzzy <almikes@aol.com>
# Date 1506027409 -7200
# Node ID f29a1c645cf1d39b493c6519d85fe8b63564cdda
# Parent  943f74b7a4b9c3ecf6561983c17643158e5901e4
Make string “Check now” in Apple build translatable

diff -r 943f74b7a4b9 -r f29a1c645cf1 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);
         }