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:
Friedemann Kleint
2012-07-26 16:08:41 +02:00
committed by hjk
parent ed7c80d4c6
commit 455b677f8e
11 changed files with 22 additions and 22 deletions

View File

@@ -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();