summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/customtoolchain.cpp
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@digia.com>2013-02-12 16:55:00 +0100
committerLeena Miettinen <riitta-leena.miettinen@digia.com>2013-02-13 09:42:46 +0100
commitc88ed7d690d841ab619e3132cb14f689266960c0 (patch)
tree62396f19c5f09874fcfab8bf0562a1387a0126bd /src/plugins/projectexplorer/customtoolchain.cpp
parentaecab937e21376eb2eaba4c264fdb9d84bf36c0c (diff)
downloadqt-creator-c88ed7d690d841ab619e3132cb14f689266960c0.tar.gz
UI text: edit custom compiler messages
There is no good solution for %n entry(ies). Change-Id: Ideaa5686c8efd0bb70e54a76f00dfca2e26c7bb0 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/projectexplorer/customtoolchain.cpp')
-rw-r--r--src/plugins/projectexplorer/customtoolchain.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/projectexplorer/customtoolchain.cpp b/src/plugins/projectexplorer/customtoolchain.cpp
index d8609fdbac..51643fe3b6 100644
--- a/src/plugins/projectexplorer/customtoolchain.cpp
+++ b/src/plugins/projectexplorer/customtoolchain.cpp
@@ -395,7 +395,7 @@ public:
void updateSummaryText()
{
int count = entryCount();
- setSummaryText(count ? tr("%n entry(ies)", "", count) : tr("Empty"));
+ setSummaryText(count ? tr("%n entries)", "", count) : tr("Empty"));
}
};
@@ -420,9 +420,9 @@ CustomToolChainConfigWidget::CustomToolChainConfigWidget(CustomToolChain *tc) :
m_predefinedMacros->setTabChangesFocus(true);
m_predefinedMacros->setToolTip(tr("Each line defines a macro. Format is MACRO[=VALUE]"));
m_headerPaths->setTabChangesFocus(true);
- m_headerPaths->setToolTip(tr("Each line adds a global header lookup path"));
- m_cxx11Flags->setToolTip(tr("Comma-separated list of flags that turn on C++11 support"));
- m_mkspecs->setToolTip(tr("Comma-separated list of mkspecs"));
+ m_headerPaths->setToolTip(tr("Each line adds a global header lookup path."));
+ m_cxx11Flags->setToolTip(tr("Comma-separated list of flags that turn on C++11 support."));
+ m_mkspecs->setToolTip(tr("Comma-separated list of mkspecs."));
m_compilerCommand->setExpectedKind(PathChooser::ExistingCommand);
m_makeCommand->setExpectedKind(PathChooser::ExistingCommand);
m_mainLayout->addRow(tr("&Compiler path:"), m_compilerCommand);