forked from qt-creator/qt-creator
tr()-Fixes for 2.3: No contractions, spelling.
Change-Id: I08babdb15bcf7f7ac086e9e12955b780b7591391 Reviewed-on: http://codereview.qt.nokia.com/480 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
@@ -3603,7 +3603,7 @@ bool FakeVimHandler::Private::handleExSourceCommand(const ExCommand &cmd)
|
||||
QString fileName = cmd.args;
|
||||
QFile file(fileName);
|
||||
if (!file.open(QIODevice::ReadOnly)) {
|
||||
showRedMessage(FakeVimHandler::tr("Can't open file %1").arg(fileName));
|
||||
showRedMessage(FakeVimHandler::tr("Cannot open file %1").arg(fileName));
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
@@ -91,7 +91,7 @@ QList<QToolButton *> NavigatorWidget::createToolBarWidgets()
|
||||
connect(buttons.last(), SIGNAL(clicked()), this, SIGNAL(leftButtonClicked()));
|
||||
buttons << new QToolButton();
|
||||
buttons.last()->setIcon(QIcon(":/navigator/icon/arrowright.png"));
|
||||
buttons.last()->setToolTip(tr("Become child of first silbing (CTRL + Right)"));
|
||||
buttons.last()->setToolTip(tr("Become child of first sibling (CTRL + Right)"));
|
||||
buttons.last()->setShortcut(QKeySequence(Qt::Key_Right | Qt::CTRL));
|
||||
connect(buttons.last(), SIGNAL(clicked()), this, SIGNAL(rightButtonClicked()));
|
||||
|
||||
|
||||
@@ -686,7 +686,7 @@ void QMakeStepConfigWidget::updateQmlDebuggingOption()
|
||||
if (!m_step->isQmlDebuggingLibrarySupported(&warningText))
|
||||
;
|
||||
else if (m_step->linkQmlDebuggingLibrary())
|
||||
warningText = tr("Might make your application vulnerable. Only use in a safe environment!");
|
||||
warningText = tr("Might make your application vulnerable. Only use in a safe environment.");
|
||||
|
||||
m_ui->qmlDebuggingWarningText->setText(warningText);
|
||||
m_ui->qmlDebuggingWarningIcon->setVisible(!warningText.isEmpty());
|
||||
@@ -696,7 +696,7 @@ void QMakeStepConfigWidget::updateEffectiveQMakeCall()
|
||||
{
|
||||
Qt4BuildConfiguration *qt4bc = m_step->qt4BuildConfiguration();
|
||||
QtSupport::BaseQtVersion *qtVersion = qt4bc->qtVersion();
|
||||
QString program = tr("<No qtversion>");
|
||||
QString program = tr("<No Qt version>");
|
||||
if (qtVersion)
|
||||
program = QFileInfo(qtVersion->qmakeCommand()).fileName();
|
||||
m_ui->qmakeArgumentsEdit->setPlainText(program + QLatin1Char(' ') + m_step->allArguments());
|
||||
|
||||
@@ -143,7 +143,7 @@ void S60PublishingSisSettingsPageOvi::displayNameChanged()
|
||||
ui->displayNameErrorLabel,
|
||||
ui->displayNameErrorReasonLabel,
|
||||
tr("This should be application's display name. <br>"
|
||||
"It can't' be empty.<br>"));
|
||||
"It cannot be empty.<br>"));
|
||||
|
||||
const int visibleCharacters = 12;
|
||||
if (ui->displayNameLineEdit->text().length() > visibleCharacters) {
|
||||
|
||||
@@ -179,7 +179,7 @@ bool QtVersionManager::restoreQtVersions()
|
||||
if (BaseQtVersion *qtv = f->restore(qtversionMap)) {
|
||||
if (m_versions.contains(qtv->uniqueId())) {
|
||||
// This shouldn't happen, we are restoring the same id multiple times?
|
||||
qWarning() << "A qt version with id"<<qtv->uniqueId()<<"already exists";
|
||||
qWarning() << "A Qt version with id"<<qtv->uniqueId()<<"already exists";
|
||||
delete qtv;
|
||||
} else {
|
||||
m_versions.insert(qtv->uniqueId(), qtv);
|
||||
@@ -191,7 +191,7 @@ bool QtVersionManager::restoreQtVersions()
|
||||
}
|
||||
}
|
||||
if (!restored)
|
||||
qWarning("Warning: Unable to restore qtversion '%s' stored in %s.",
|
||||
qWarning("Warning: Unable to restore Qt version '%s' stored in %s.",
|
||||
qPrintable(type),
|
||||
qPrintable(QDir::toNativeSeparators(settingsFileName())));
|
||||
}
|
||||
@@ -212,7 +212,7 @@ void QtVersionManager::updateFromInstaller()
|
||||
QVariantMap data = reader.restoreValues();
|
||||
|
||||
if (debug) {
|
||||
qDebug()<< "======= Existing qt versions =======";
|
||||
qDebug()<< "======= Existing Qt versions =======";
|
||||
foreach (BaseQtVersion *version, m_versions) {
|
||||
qDebug() << version->qmakeCommand() << "id:"<<version->uniqueId();
|
||||
qDebug() << " autodetection source:"<< version->autodetectionSource();
|
||||
|
||||
@@ -149,7 +149,7 @@ void AbstractMaemoInstallPackageToSysrootStep::run(QFutureInterface<bool> &fi)
|
||||
const Qt4BuildConfiguration * const bc
|
||||
= qobject_cast<Qt4BaseTarget *>(target())->activeBuildConfiguration();
|
||||
if (!bc) {
|
||||
addOutput(tr("Can't install to sysroot without build configuration."),
|
||||
addOutput(tr("Cannot install to sysroot without build configuration."),
|
||||
ErrorMessageOutput);
|
||||
fi.reportResult(false);
|
||||
return;
|
||||
@@ -158,14 +158,14 @@ void AbstractMaemoInstallPackageToSysrootStep::run(QFutureInterface<bool> &fi)
|
||||
const AbstractMaemoPackageCreationStep * const pStep
|
||||
= MaemoGlobal::earlierBuildStep<AbstractMaemoPackageCreationStep>(deployConfiguration(), this);
|
||||
if (!pStep) {
|
||||
addOutput(tr("Can't install package to sysroot without packaging step."),
|
||||
addOutput(tr("Cannot install package to sysroot without packaging step."),
|
||||
ErrorMessageOutput);
|
||||
fi.reportResult(false);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!bc->qtVersion()) {
|
||||
addOutput(tr("Can't install package to sysroot without a qt version."),
|
||||
addOutput(tr("Cannot install package to sysroot without a Qt version."),
|
||||
ErrorMessageOutput);
|
||||
fi.reportResult(false);
|
||||
return;
|
||||
@@ -297,7 +297,7 @@ void MaemoCopyToSysrootStep::run(QFutureInterface<bool> &fi)
|
||||
const Qt4BuildConfiguration * const bc
|
||||
= qobject_cast<Qt4BaseTarget *>(target())->activeBuildConfiguration();
|
||||
if (!bc) {
|
||||
addOutput(tr("Can't copy to sysroot without build configuration."),
|
||||
addOutput(tr("Cannot copy to sysroot without build configuration."),
|
||||
ErrorMessageOutput);
|
||||
fi.reportResult(false);
|
||||
return;
|
||||
@@ -305,7 +305,7 @@ void MaemoCopyToSysrootStep::run(QFutureInterface<bool> &fi)
|
||||
|
||||
const MaemoQtVersion * const qtVersion = dynamic_cast<MaemoQtVersion *>(bc->qtVersion());
|
||||
if (!qtVersion) {
|
||||
addOutput(tr("Can't copy to sysroot without valid Qt version."),
|
||||
addOutput(tr("Cannot copy to sysroot without valid Qt version."),
|
||||
ErrorMessageOutput);
|
||||
fi.reportResult(false);
|
||||
return;
|
||||
@@ -368,13 +368,13 @@ bool MaemoMakeInstallToSysrootStep::init()
|
||||
const Qt4BuildConfiguration * const bc
|
||||
= qobject_cast<Qt4BuildConfiguration *>(target()->activeBuildConfiguration());
|
||||
if (!bc) {
|
||||
addOutput("Can't deploy: No active build dconfiguration.",
|
||||
addOutput("Cannot deploy: No active build dconfiguration.",
|
||||
ErrorMessageOutput);
|
||||
return false;
|
||||
}
|
||||
const QtSupport::BaseQtVersion * const qtVersion = bc->qtVersion();
|
||||
if (!qtVersion) {
|
||||
addOutput("Can't deploy: Unusable build configuration.",
|
||||
addOutput("Cannot deploy: Unusable build configuration.",
|
||||
ErrorMessageOutput);
|
||||
return false;
|
||||
|
||||
|
||||
@@ -258,7 +258,7 @@ bool AbstractMaemoPackageCreationStep::callPackagingCommand(QProcess *proc,
|
||||
preparePackagingProcess(proc, qt4BuildConfiguration(), buildDirectory());
|
||||
const QtSupport::BaseQtVersion * const qtVersion = qt4BuildConfiguration()->qtVersion();
|
||||
if (!qtVersion) {
|
||||
raiseError(tr("Packaging failed."), tr("Packaging error: No qt version."));
|
||||
raiseError(tr("Packaging failed."), tr("Packaging error: No Qt version."));
|
||||
return false;
|
||||
}
|
||||
const QString madCommand = MaemoGlobal::madCommand(qtVersion->qmakeCommand());
|
||||
|
||||
@@ -712,7 +712,7 @@ AbstractQt4MaemoTarget::ActionStatus AbstractDebBasedQt4MaemoTarget::createSpeci
|
||||
+ AbstractMaemoPackageCreationStep::DefaultVersionNumber);
|
||||
QtSupport::BaseQtVersion *lqt = activeBuildConfiguration()->qtVersion();
|
||||
if (!lqt) {
|
||||
raiseError(tr("Unable to create Debian templates: No qt version set"));
|
||||
raiseError(tr("Unable to create Debian templates: No Qt version set"));
|
||||
return ActionFailed;
|
||||
}
|
||||
if (!MaemoGlobal::callMad(dh_makeProc, dh_makeArgs, lqt->qmakeCommand(), true)
|
||||
|
||||
Reference in New Issue
Block a user