diff --git a/share/qtcreator/templates/html5app/html/index.html b/share/qtcreator/templates/html5app/html/index.html index 49f2ceee7eca2871b995ca6675f256d178217359..aa8a59c32171d287de3fea67ba5f6eda3dabf584 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 9aad1b2e39e567ea6ac252b3c6db4dbcab2101a3..2afece5bc498bf8e3fb7b20891ce2b355880f804 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 "