diff options
author | Leena Miettinen <riitta-leena.miettinen@nokia.com> | 2011-06-21 17:07:45 +0200 |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2011-06-22 10:05:33 +0200 |
commit | f1889864db05a7944d0c62db8c8477fcc2bc7d33 (patch) | |
tree | 3bf81138049f9971735d773e0818c263e59d39e7 /src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp | |
parent | efeefef10a288a4f1878b68e931987f562353530 (diff) | |
download | qt-creator-f1889864db05a7944d0c62db8c8477fcc2bc7d33.tar.gz |
UI text: check capitalization and tooltips
Change-Id: I3686ac83e5fdc009b03e84ab3c7b24a052d119c4
Reviewed-on: http://codereview.qt.nokia.com/569
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
Diffstat (limited to 'src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp')
-rw-r--r-- | src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp b/src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp index a2151e3154..6c443b55ed 100644 --- a/src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp +++ b/src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp @@ -163,7 +163,7 @@ bool S60DeployStep::init() m_channel = deployConfiguration->communicationChannel(); if (m_signedPackages.isEmpty()) { - appendMessage(tr("No package has been found. Please specify at least one installation package."), true); + appendMessage(tr("No package has been found. Specify at least one installation package."), true); return false; } @@ -238,13 +238,13 @@ void S60DeployStep::start() bool serialConnection = m_channel == S60DeployConfiguration::CommunicationCodaSerialConnection; if (serialConnection && m_serialPortName.isEmpty()) { - errorMessage = tr("No device is connected. Please connect a device and try again."); + errorMessage = tr("No device is connected. Connect a device and try again."); reportError(errorMessage); return; } QTC_ASSERT(!m_codaDevice.data(), return); if (m_address.isEmpty() && !serialConnection) { - errorMessage = tr("No address for a device has been defined. Please define an address and try again."); + errorMessage = tr("No address for a device has been defined. Define an address and try again."); reportError(errorMessage); return; } @@ -444,7 +444,7 @@ void S60DeployStep::initFileInstallation() } else { m_codaDevice->sendSymbianInstallUIInstallCommand(Coda::CodaCallback(this, &S60DeployStep::handleSymbianInstall), remoteFileLocation.toAscii()); - appendMessage(tr("Please continue the installation on your device."), false); + appendMessage(tr("Continue the installation on your device."), false); emit manualInstallation(); } } @@ -586,7 +586,7 @@ void S60DeployStep::checkForTimeout() void S60DeployStep::showManualInstallationInfo() { const QString title = tr("Installation"); - const QString text = tr("Please continue the installation on your device."); + const QString text = tr("Continue the installation on your device."); QMessageBox *mb = new QMessageBox(QMessageBox::Information, title, text, QMessageBox::Ok, Core::ICore::instance()->mainWindow()); connect(this, SIGNAL(allFilesInstalled()), mb, SLOT(close())); |