aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/module-providers/Qt/templates
diff options
context:
space:
mode:
Diffstat (limited to 'share/qbs/module-providers/Qt/templates')
-rw-r--r--share/qbs/module-providers/Qt/templates/QtPlugin.qbs2
-rw-r--r--share/qbs/module-providers/Qt/templates/core.qbs2
-rw-r--r--share/qbs/module-providers/Qt/templates/gui.qbs2
-rw-r--r--share/qbs/module-providers/Qt/templates/qml.qbs2
4 files changed, 4 insertions, 4 deletions
diff --git a/share/qbs/module-providers/Qt/templates/QtPlugin.qbs b/share/qbs/module-providers/Qt/templates/QtPlugin.qbs
index 88bfa5a65..883e34465 100644
--- a/share/qbs/module-providers/Qt/templates/QtPlugin.qbs
+++ b/share/qbs/module-providers/Qt/templates/QtPlugin.qbs
@@ -38,7 +38,7 @@ QtModule {
prepare: {
var cmd = new JavaScriptCommand();
var pluginName = product.moduleProperty(product.moduleName, "qtModuleName");
- cmd.description = "Creating static import for plugin '" + pluginName + "'.";
+ cmd.description = "creating static import for plugin '" + pluginName + "'";
cmd.sourceCode = function() {
var f = new TextFile(output.filePath, TextFile.WriteOnly);
var className = product.moduleProperty(product.moduleName, "className");
diff --git a/share/qbs/module-providers/Qt/templates/core.qbs b/share/qbs/module-providers/Qt/templates/core.qbs
index c313a3b98..010216f42 100644
--- a/share/qbs/module-providers/Qt/templates/core.qbs
+++ b/share/qbs/module-providers/Qt/templates/core.qbs
@@ -499,7 +499,7 @@ Module {
var args = ['-silent', '-qm', output.filePath].concat(inputFilePaths);
var cmd = new Command(product.Qt.core.binPath + '/'
+ product.Qt.core.lreleaseName, args);
- cmd.description = 'Creating ' + output.fileName;
+ cmd.description = 'creating ' + output.fileName;
cmd.highlight = 'filegen';
return cmd;
}
diff --git a/share/qbs/module-providers/Qt/templates/gui.qbs b/share/qbs/module-providers/Qt/templates/gui.qbs
index 24cc34d45..6ba5e48c4 100644
--- a/share/qbs/module-providers/Qt/templates/gui.qbs
+++ b/share/qbs/module-providers/Qt/templates/gui.qbs
@@ -28,7 +28,7 @@ QtModule {
: product.Qt.core.libExecPath + '/' + product.Qt.gui.uicName;
var cmd = new Command(uicPath, [input.filePath, '-o', output.filePath]);
- cmd.description = 'uic ' + input.fileName;
+ cmd.description = 'generating ' + output.fileName;
cmd.highlight = 'codegen';
return cmd;
}
diff --git a/share/qbs/module-providers/Qt/templates/qml.qbs b/share/qbs/module-providers/Qt/templates/qml.qbs
index 8a02a0655..55bf31dee 100644
--- a/share/qbs/module-providers/Qt/templates/qml.qbs
+++ b/share/qbs/module-providers/Qt/templates/qml.qbs
@@ -135,7 +135,7 @@ QtModule {
prepare: {
var cmd = new JavaScriptCommand();
if (inputs["qt.qml.qml"])
- cmd.description = "Creating " + outputs["cpp"][0].fileName;
+ cmd.description = "creating " + outputs["cpp"][0].fileName;
else
cmd.silent = true;
cmd.sourceCode = function() {