diff ui/createinstallerdialog.cpp @ 781:60d3f59f0803

Fix typos in translatable strings.
author Andre Heinecke <andre.heinecke@intevation.de>
date Mon, 14 Jul 2014 11:50:23 +0200
parents aec00847d86d
children 637948e9e32d
line wrap: on
line diff
--- a/ui/createinstallerdialog.cpp	Mon Jul 14 11:50:02 2014 +0200
+++ b/ui/createinstallerdialog.cpp	Mon Jul 14 11:50:23 2014 +0200
@@ -235,7 +235,7 @@
     /* Sign the linux installer */
     QDir linuxDir(binDir.path() + "/linux");
     if (!linuxDir.exists()) {
-        showErrorMessage(tr("Failed to find the directory for linux binaries: %s")
+        showErrorMessage(tr("Failed to find the directory for linux binaries: %1")
                 .arg(linuxDir.path()));
         return;
     }
@@ -243,12 +243,12 @@
     nameFilter << "*.sh";
     QStringList candidates = linuxDir.entryList(nameFilter, QDir::Files | QDir::Readable);
     if (candidates.isEmpty()) {
-        showErrorMessage(tr("Failed to find a readable *.sh file in: %s")
+        showErrorMessage(tr("Failed to find a readable *.sh file in: %1")
                 .arg(linuxDir.path()));
         return;
     }
     if (candidates.size() > 1) {
-        showErrorMessage(tr("Unexpected additional .sh files in: %s")
+        showErrorMessage(tr("Unexpected additional .sh files in: %1")
                 .arg(linuxDir.path()));
         return;
     }

http://wald.intevation.org/projects/trustbridge/