forked from qt-creator/qt-creator
Doc: fix capitalization
Reviewed-by: Alessandro Portale
This commit is contained in:
@@ -32,7 +32,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<a id="quit">X</a>
|
<a id="quit">X</a>
|
||||||
<h1>Hello</h1>
|
<h1>Hello</h1>
|
||||||
<h1>Html5</h1>
|
<h1>HTML5</h1>
|
||||||
<h1>World</h1>
|
<h1>World</h1>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -62,11 +62,11 @@ Html5AppWizardDialog::Html5AppWizardDialog(QWidget *parent)
|
|||||||
: AbstractMobileAppWizardDialog(parent)
|
: AbstractMobileAppWizardDialog(parent)
|
||||||
, m_htmlSourcesPage(0)
|
, m_htmlSourcesPage(0)
|
||||||
{
|
{
|
||||||
setWindowTitle(tr("New Html5 Application"));
|
setWindowTitle(tr("New HTML5 Application"));
|
||||||
setIntroDescription(tr("This wizard generates a Html5 application project."));
|
setIntroDescription(tr("This wizard generates a HTML5 application project."));
|
||||||
|
|
||||||
m_htmlSourcesPage = new Html5AppWizardSourcesPage;
|
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);
|
Core::BaseFileWizardParameters parameters(ProjectWizard);
|
||||||
parameters.setIcon(QIcon(QLatin1String(Constants::ICON_HTML5_APP)));
|
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.setId(QLatin1String("QA.HTML5A Application"));
|
||||||
parameters.setDescription(tr("Creates an Html5 application project that can contain "
|
parameters.setDescription(tr("Creates an HTML5 application project that can contain "
|
||||||
"both Html5 and C++ code and includes a Webkit view.\n\n"
|
"both HTML5 and C++ code and includes a WebKit view.\n\n"
|
||||||
"You can build the application and deploy it on desktop and "
|
"You can build the application and deploy it on desktop and "
|
||||||
"mobile target platforms. For example, you can create signed "
|
"mobile target platforms. For example, you can create signed "
|
||||||
"Symbian Installation System (SIS) packages for this type of "
|
"Symbian Installation System (SIS) packages for this type of "
|
||||||
|
|||||||
Reference in New Issue
Block a user