summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2010-08-26 10:23:03 +0200
committerChristian Kandeler <christian.kandeler@nokia.com>2010-08-26 11:49:44 +0200
commitd3c496f86dad309c5ea913cf8bdd22404881957c (patch)
tree7a75013eac69f41b2cc61431f4dce3e8161b7413 /src
parent382e63c5fc879b873a6eb56fdf5342b2ae890bc4 (diff)
downloadqt-creator-d3c496f86dad309c5ea913cf8bdd22404881957c.tar.gz
Maemo: Clarify user string.
Diffstat (limited to 'src')
-rw-r--r--src/plugins/qt4projectmanager/qt-maemo/maemorunconfigurationwidget.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemorunconfigurationwidget.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemorunconfigurationwidget.cpp
index 852e0720c7..d260c4bdd3 100644
--- a/src/plugins/qt4projectmanager/qt-maemo/maemorunconfigurationwidget.cpp
+++ b/src/plugins/qt4projectmanager/qt-maemo/maemorunconfigurationwidget.cpp
@@ -408,13 +408,13 @@ void MaemoRunConfigurationWidget::handleRemoteMountsChanged()
QString text;
switch (mountCount) {
case 0:
- text = tr("No local directories to be mounted from the device.");
+ text = tr("No local directories to be mounted on the device.");
break;
case 1:
- text = tr("One local directory to be mounted from the device.");
+ text = tr("One local directory to be mounted on the device.");
break;
default:
- text = tr("%1 local directories to be mounted from the device.")
+ text = tr("%1 local directories to be mounted on the device.")
.arg(mountCount);
break;
}