Nim: Fix product name capitalization and writing style in UI text

Change-Id: I277c10f87e9645a09bd7a6910fb9d5182417c9c9
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Leena Miettinen
2017-04-05 14:11:15 +02:00
parent 71f2181ffb
commit c749ec507c

View File

@@ -159,12 +159,12 @@ bool NimProject::supportsKit(Kit *k, QString *errorMessage) const
auto tc = dynamic_cast<NimToolChain*>(ToolChainKitInformation::toolChain(k, Constants::C_NIMLANGUAGE_ID));
if (!tc) {
if (errorMessage)
*errorMessage = tr("No nim compiler set.");
*errorMessage = tr("No Nim compiler set.");
return false;
}
if (!tc->compilerCommand().exists()) {
if (errorMessage)
*errorMessage = tr("Nim compiler doesn't exist");
*errorMessage = tr("Nim compiler does not exist");
return false;
}
return true;