summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@theqtcompany.com>2015-10-22 17:13:38 +0200
committerTobias Hunger <tobias.hunger@theqtcompany.com>2015-10-23 08:05:33 +0000
commite195526d54c6361004ea886f12dced4b9537e73c (patch)
tree26172e92dbe1f36863f68013dc045b8fa2d9da9a
parenta2ae98557d4744db79d91a475a24b293be692fb8 (diff)
downloadqt-creator-e195526d54c6361004ea886f12dced4b9537e73c.tar.gz
Core: fix capitalization of JavaScript in a message
Change-Id: I6f3392192a57ced81f7c051fb9df2032941e19f7 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
-rw-r--r--src/plugins/coreplugin/jsexpander.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/coreplugin/jsexpander.cpp b/src/plugins/coreplugin/jsexpander.cpp
index 9ac707a964..d8fc71013a 100644
--- a/src/plugins/coreplugin/jsexpander.cpp
+++ b/src/plugins/coreplugin/jsexpander.cpp
@@ -87,7 +87,7 @@ JsExpander::JsExpander()
d = new Internal::JsExpanderPrivate;
Utils::globalMacroExpander()->registerPrefix("JS",
QCoreApplication::translate("Core::JsExpander",
- "Evaluate simple Javascript statements.<br>"
+ "Evaluate simple JavaScript statements.<br>"
"The statements may not contain '{' nor '}' characters."),
[this](QString in) -> QString {
QString errorMessage;