From c749ec507c53a7e99a0880dde78ddd06a2c11374 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Wed, 5 Apr 2017 14:11:15 +0200 Subject: [PATCH] Nim: Fix product name capitalization and writing style in UI text Change-Id: I277c10f87e9645a09bd7a6910fb9d5182417c9c9 Reviewed-by: hjk --- src/plugins/nim/project/nimproject.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/nim/project/nimproject.cpp b/src/plugins/nim/project/nimproject.cpp index 39c8ac3e80f..33eb7718157 100644 --- a/src/plugins/nim/project/nimproject.cpp +++ b/src/plugins/nim/project/nimproject.cpp @@ -159,12 +159,12 @@ bool NimProject::supportsKit(Kit *k, QString *errorMessage) const auto tc = dynamic_cast(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;