forked from qt-creator/qt-creator
tr()-Fixes.
- Message box titles. - Profile->Target. Change-Id: I9a977b28de948b16521758fd653ff3576ef72e8f Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
This commit is contained in:
@@ -310,7 +310,7 @@ void ToolChainModel::apply()
|
||||
|
||||
if (removedTcs.count() == 1) {
|
||||
QMessageBox::warning(0,
|
||||
tr("Duplicate compilers detected"),
|
||||
tr("Duplicate Compilers Detected"),
|
||||
tr("The following compiler was already configured:<br>"
|
||||
" %1<br>"
|
||||
"It was not configured again.")
|
||||
@@ -318,7 +318,7 @@ void ToolChainModel::apply()
|
||||
|
||||
} else if (!removedTcs.isEmpty()) {
|
||||
QMessageBox::warning(0,
|
||||
tr("Duplicate compilers detected"),
|
||||
tr("Duplicate Compilers Detected"),
|
||||
tr("The following compilers were already configured:<br>"
|
||||
" %1<br>"
|
||||
"They were not configured again.")
|
||||
|
||||
@@ -53,7 +53,7 @@ QtProfileConfigWidget::QtProfileConfigWidget(ProjectExplorer::Profile *p,
|
||||
m_combo(new QComboBox),
|
||||
m_manageButton(new QPushButton(this))
|
||||
{
|
||||
setToolTip(tr("The Qt library to use for all projects using this profile.<br>"
|
||||
setToolTip(tr("The Qt library to use for all projects using this target.<br>"
|
||||
"A Qt version is required for qmake-based projects and optional when using other build systems."));
|
||||
QHBoxLayout *layout = new QHBoxLayout(this);
|
||||
layout->setMargin(0);
|
||||
|
||||
Reference in New Issue
Block a user