From a6fc7e8857d057655757e2ecc4ff101b66215362 Mon Sep 17 00:00:00 2001
From: Leena Miettinen <riitta-leena.miettinen@nokia.com>
Date: Tue, 15 Feb 2011 15:56:54 +0100
Subject: [PATCH] Doc: fix capitalization

Reviewed-by: Alessandro Portale
---
 share/qtcreator/templates/html5app/html/index.html   |  2 +-
 .../qt4projectmanager/wizards/html5appwizard.cpp     | 12 ++++++------
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/share/qtcreator/templates/html5app/html/index.html b/share/qtcreator/templates/html5app/html/index.html
index 49f2ceee7ec..aa8a59c3217 100644
--- a/share/qtcreator/templates/html5app/html/index.html
+++ b/share/qtcreator/templates/html5app/html/index.html
@@ -32,7 +32,7 @@
     <body>
         <a id="quit">X</a>
         <h1>Hello</h1>
-        <h1>Html5</h1>
+        <h1>HTML5</h1>
         <h1>World</h1>
     </body>
 </html>
diff --git a/src/plugins/qt4projectmanager/wizards/html5appwizard.cpp b/src/plugins/qt4projectmanager/wizards/html5appwizard.cpp
index 9aad1b2e39e..2afece5bc49 100644
--- a/src/plugins/qt4projectmanager/wizards/html5appwizard.cpp
+++ b/src/plugins/qt4projectmanager/wizards/html5appwizard.cpp
@@ -62,11 +62,11 @@ Html5AppWizardDialog::Html5AppWizardDialog(QWidget *parent)
     : AbstractMobileAppWizardDialog(parent)
     , m_htmlSourcesPage(0)
 {
-    setWindowTitle(tr("New Html5 Application"));
-    setIntroDescription(tr("This wizard generates a Html5 application project."));
+    setWindowTitle(tr("New HTML5 Application"));
+    setIntroDescription(tr("This wizard generates a HTML5 application project."));
 
     m_htmlSourcesPage = new Html5AppWizardSourcesPage;
-    addPageWithTitle(m_htmlSourcesPage, tr("Html Sources"));
+    addPageWithTitle(m_htmlSourcesPage, tr("HTML Sources"));
 }
 
 
@@ -95,10 +95,10 @@ Core::BaseFileWizardParameters Html5AppWizard::parameters()
 {
     Core::BaseFileWizardParameters parameters(ProjectWizard);
     parameters.setIcon(QIcon(QLatin1String(Constants::ICON_HTML5_APP)));
-    parameters.setDisplayName(tr("Html5 Application"));
+    parameters.setDisplayName(tr("HTML5 Application"));
     parameters.setId(QLatin1String("QA.HTML5A Application"));
-    parameters.setDescription(tr("Creates an Html5 application project that can contain "
-                                 "both Html5 and C++ code and includes a Webkit view.\n\n"
+    parameters.setDescription(tr("Creates an HTML5 application project that can contain "
+                                 "both HTML5 and C++ code and includes a WebKit view.\n\n"
                                  "You can build the application and deploy it on desktop and "
                                  "mobile target platforms. For example, you can create signed "
                                  "Symbian Installation System (SIS) packages for this type of "
-- 
GitLab