Fix tr()-messages.

Change-Id: I89bf087e924d7941aaec12bb8f4324df4a93793a
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Friedemann Kleint
2013-11-15 12:33:13 +01:00
committed by hjk
parent 7f13b8d3f0
commit 11cc6eb131
2 changed files with 3 additions and 3 deletions

View File

@@ -98,8 +98,8 @@ void AnalyzerRunConfigWidget::chooseSettings(int setting)
m_configWidget->setEnabled(isCustom); m_configWidget->setEnabled(isCustom);
m_restoreButton->setEnabled(isCustom); m_restoreButton->setEnabled(isCustom);
m_details->setSummaryText(isCustom m_details->setSummaryText(isCustom
? tr("Use <strong>Customized Settings<strong>") ? tr("Use <strong>Customized Settings</strong>")
: tr("Use <strong>Global Settings<strong>")); : tr("Use <strong>Global Settings</strong>"));
} }
void AnalyzerRunConfigWidget::restoreGlobal() void AnalyzerRunConfigWidget::restoreGlobal()

View File

@@ -85,7 +85,7 @@ AndroidPotentialKitWidget::AndroidPotentialKitWidget(QWidget *parent)
layout->setMargin(0); layout->setMargin(0);
QLabel *label = new QLabel; QLabel *label = new QLabel;
label->setText(tr("Qt Creator needs additional settings to enable Android support." label->setText(tr("Qt Creator needs additional settings to enable Android support."
"You can configure those settings in the Options dialog.")); " You can configure those settings in the Options dialog."));
label->setWordWrap(true); label->setWordWrap(true);
layout->addWidget(label, 0, 0, 1, 2); layout->addWidget(label, 0, 0, 1, 2);