diff options
author | Eike Ziller <eike.ziller@nokia.com> | 2012-08-24 08:31:01 +0200 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2012-08-24 09:26:51 +0200 |
commit | 5a895d4fe5935bae85c1cec22ba56874945d9b10 (patch) | |
tree | 7082c83b37e41cf33f781f32f39093e5fdb5004b /src/plugins/projectexplorer/toolchainoptionspage.cpp | |
parent | a110c98d08ef558d6f0bb614a347bccc1c02c782 (diff) | |
download | qt-creator-5a895d4fe5935bae85c1cec22ba56874945d9b10.tar.gz |
Rename "Tool Chains" option page to "Compilers"
Currently it contains compiler settings only, so there's no
need to let people search for e.g. debugger settings there,
that might be considered part of the toolchain, too.
Change-Id: I458f3d1cf1784b85820f8af7604a2a004372a909
Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/projectexplorer/toolchainoptionspage.cpp')
-rw-r--r-- | src/plugins/projectexplorer/toolchainoptionspage.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/projectexplorer/toolchainoptionspage.cpp b/src/plugins/projectexplorer/toolchainoptionspage.cpp index 9a3be07871..051dd6ee36 100644 --- a/src/plugins/projectexplorer/toolchainoptionspage.cpp +++ b/src/plugins/projectexplorer/toolchainoptionspage.cpp @@ -310,16 +310,16 @@ void ToolChainModel::apply() if (removedTcs.count() == 1) { QMessageBox::warning(0, - tr("Duplicate Tool Chain detected"), - tr("The following tool chain was already configured:<br>" + tr("Duplicate compilers detected"), + tr("The following compiler was already configured:<br>" " %1<br>" "It was not configured again.") .arg(removedTcs.at(0))); } else if (!removedTcs.isEmpty()) { QMessageBox::warning(0, - tr("Duplicate Tool Chains detected"), - tr("The following tool chains were already configured:<br>" + tr("Duplicate compilers detected"), + tr("The following compilers were already configured:<br>" " %1<br>" "They were not configured again.") .arg(removedTcs.join(QLatin1String(",<br> ")))); @@ -444,7 +444,7 @@ ToolChainOptionsPage::ToolChainOptionsPage() : m_addButton(0), m_cloneButton(0), m_delButton(0) { setId(QLatin1String(Constants::TOOLCHAIN_SETTINGS_PAGE_ID)); - setDisplayName(tr("Tool Chains")); + setDisplayName(tr("Compilers")); setCategory(QLatin1String(Constants::PROJECTEXPLORER_SETTINGS_CATEGORY)); setDisplayCategory(QCoreApplication::translate("ProjectExplorer", Constants::PROJECTEXPLORER_SETTINGS_TR_CATEGORY)); @@ -528,7 +528,7 @@ QWidget *ToolChainOptionsPage::createPage(QWidget *parent) if (m_searchKeywords.isEmpty()) { QLatin1Char sep(' '); QTextStream stream(&m_searchKeywords); - stream << tr("Tool Chains"); + stream << tr("Compilers"); foreach (ToolChainFactory *f, m_factories) stream << sep << f->displayName(); |