PublishToOvi: Text fixes

Change-Id: I49ecb07ddaae02a901c8dab0b3d691d7b1589db6
Reviewed-on: http://codereview.qt.nokia.com/708
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@nokia.com>
This commit is contained in:
Pawel Polanski
2011-06-24 14:47:17 +02:00
committed by Leena Miettinen
parent faa3a32d4d
commit 97f4192fc8
2 changed files with 7 additions and 7 deletions

View File

@@ -162,7 +162,7 @@ void S60PublisherOvi::completeCreation()
m_publishSteps.append(new S60CommandPublishStep(*m_qt4bc,
qmakepp->effectiveCommand() + ' ' + qmakepp->arguments(),
tr("QMake")));
tr("qmake")));
m_publishSteps.append(new S60CommandPublishStep(*m_qt4bc,
makepp->effectiveCommand() + ' ' + makepp->arguments(),
@@ -175,16 +175,16 @@ void S60PublisherOvi::completeCreation()
m_publishSteps.append(new S60CommandPublishStep(*m_qt4bc,
makepp->effectiveCommand() + ' ' + QLatin1String("clean -w"),
tr("Secondary Clean"),
tr("Secondary clean"),
false));
m_publishSteps.append(new S60CommandPublishStep(*m_qt4bc,
qmakepp->effectiveCommand() + ' ' + qmakepp->arguments(),
tr("Secondary QMake")));
tr("Secondary qmake")));
m_publishSteps.append(new S60CommandPublishStep(*m_qt4bc,
makepp->effectiveCommand() + ' ' + makepp->arguments(),
tr("Secondary Build")));
tr("Secondary build")));
}
QString signArg = QLatin1String("unsigned_installer_sis");
@@ -192,7 +192,7 @@ void S60PublisherOvi::completeCreation()
signArg = QLatin1String("installer_sis");
m_publishSteps.append(new S60CommandPublishStep(*m_qt4bc,
makepp->effectiveCommand() + ' ' + signArg,
tr("Making Sis File")));
tr("Making sis file")));
// set up access to vendor names
QStringList deploymentLevelVars = m_reader->values(QLatin1String("DEPLOYMENT"));

View File

@@ -87,8 +87,8 @@ S60PublishingBuildSettingsPageOvi::S60PublishingBuildSettingsPageOvi(S60Publishe
m_publisher->setBuildConfiguration(static_cast<Qt4BuildConfiguration *>(m_bc));
m_ui->buildConfigInfoLabel->setVisible(list.isEmpty());
m_ui->buildConfigInfoLabel->setToolTip(tr("No valid build configuration has been detected.<br>"
"Define a correct build configuration in \"Options > Qt4\""));
m_ui->buildConfigInfoLabel->setToolTip(tr("No valid Qt version has been detected.<br>"
"Define a correct Qt version in \"Options > Qt4\""));
m_ui->toolchainInfoIconLabel->setToolTip(tr("No valid tool chain has been detected.<br>"
"Define a correct tool chain in \"Options > Tool Chains\""));
populateToolchainList(m_bc);