Skip to content
Snippets Groups Projects
Commit c88ed7d6 authored by Leena Miettinen's avatar Leena Miettinen
Browse files

UI text: edit custom compiler messages


There is no good solution for %n entry(ies).

Change-Id: Ideaa5686c8efd0bb70e54a76f00dfca2e26c7bb0
Reviewed-by: default avatarTobias Hunger <tobias.hunger@digia.com>
parent aecab937
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment