summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}