forked from qt-creator/qt-creator
tr()-fixes for 2.6
- 'profile' -> 'target'. - 'qt version' -> 'Qt version'. Fix occurrences in comments as well to make grepping easier. - Placeholders. Change-Id: I451eae2f0571bccf1e75cf0def425a09fa80855b Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -153,7 +153,7 @@ bool MakeStep::init()
|
||||
|
||||
ToolChain *tc = ToolChainProfileInformation::toolChain(target()->profile());
|
||||
if (!tc) {
|
||||
m_tasks.append(Task(Task::Error, tr("Qt Creator needs a tool chain set up to build. Configure a tool chain the profile options."),
|
||||
m_tasks.append(Task(Task::Error, tr("Qt Creator needs a tool chain set up to build. Configure a tool chain the target options."),
|
||||
Utils::FileName(), -1,
|
||||
Core::Id(ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM)));
|
||||
return false;
|
||||
@@ -418,7 +418,7 @@ void MakeStepConfigWidget::updateDetails()
|
||||
m_ui->makeLabel->setText(tr("Make:"));
|
||||
|
||||
if (!tc) {
|
||||
setSummaryText(tr("<b>Make:</b> No tool chain set in profile."));
|
||||
setSummaryText(tr("<b>Make:</b> No tool chain set in target."));
|
||||
return;
|
||||
}
|
||||
Qt4BuildConfiguration *bc = m_makeStep->qt4BuildConfiguration();
|
||||
|
||||
Reference in New Issue
Block a user