diff options
author | Christian Kandeler <christian.kandeler@nokia.com> | 2010-08-26 10:23:03 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@nokia.com> | 2010-08-26 11:49:44 +0200 |
commit | d3c496f86dad309c5ea913cf8bdd22404881957c (patch) | |
tree | 7a75013eac69f41b2cc61431f4dce3e8161b7413 /src | |
parent | 382e63c5fc879b873a6eb56fdf5342b2ae890bc4 (diff) | |
download | qt-creator-d3c496f86dad309c5ea913cf8bdd22404881957c.tar.gz |
Maemo: Clarify user string.
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/qt4projectmanager/qt-maemo/maemorunconfigurationwidget.cpp | 6 |
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; } |