Skip to content
Snippets Groups Projects
Commit 6dedad8e authored by Kai Koehne's avatar Kai Koehne
Browse files

Qt4Project: Fix label for helper (tools)

Replace 'Helper tools' with just 'helper', and make label gramatically
correct even if there is just one helper. (We don't provide an english2english
translation).
parent 34f28a87
No related branches found
No related tags found
No related merge requests found
......@@ -498,9 +498,9 @@ void QtOptionsPageWidget::updateDebuggingHelperInfo(const QtVersion *version)
QString status;
if (helperNames.isEmpty()) {
status = tr("Helper Tools: None available");
status = tr("Helpers: None available");
} else {
status = tr("Helper Tools: %1 are available.", "%1 is list of tool names").arg(
status = tr("Helper(s): %1.", "%1 is list of tool names", helperNames.size()).arg(
helperNames.join(tr(", ", "Separator used to join names of helper tools.")));
}
......
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