aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSergey Belyashov <Sergey.Belyashov@gmail.com>2012-12-12 23:52:21 +0400
committerOswald Buddenhagen <oswald.buddenhagen@digia.com>2012-12-14 16:52:29 +0100
commit609f1b4ac9a92700d4d1155098e124439622f595 (patch)
tree7ed96e6ac154669066a299f9db063be4f1eb1e37 /src
parent27742b6fc8b2925abedfb4d142a6bedffd7590c9 (diff)
Added disambiguation for build step name
For example in Russian for step name used noun but for action - verb. Change-Id: I7396b386f5384d6838a83645c31aaffaa88ebe90 Reviewed-by: Viktor Ostashevskiy <ostash@ostash.kiev.ua> Reviewed-by: Pavel Fric Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/projectexplorer/projectexplorer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp
index c9a7aac6f44..f74b7a88fb4 100644
--- a/src/plugins/projectexplorer/projectexplorer.cpp
+++ b/src/plugins/projectexplorer/projectexplorer.cpp
@@ -1822,10 +1822,10 @@ QString ProjectExplorerPlugin::displayNameForStepId(Core::Id stepId)
if (stepId == Constants::BUILDSTEPS_CLEAN)
return tr("Clean");
if (stepId == Constants::BUILDSTEPS_BUILD)
- return tr("Build");
+ return tr("Build", "Build step");
if (stepId == Constants::BUILDSTEPS_DEPLOY)
return tr("Deploy");
- return tr("Build");
+ return tr("Build", "Build step");
}
int ProjectExplorerPlugin::queue(QList<Project *> projects, QList<Core::Id> stepIds)