forked from qt-creator/qt-creator
UI text - fix capitalization
This commit is contained in:
@@ -3542,7 +3542,7 @@
|
|||||||
|
|
||||||
\list 1
|
\list 1
|
||||||
|
|
||||||
\o On the \gui Welcome page, select \gui {Choose an example... >
|
\o On the \gui Welcome page, select \gui {Choose an Example... >
|
||||||
Animation Framework > Animated Tiles}.
|
Animation Framework > Animated Tiles}.
|
||||||
|
|
||||||
\image qtcreator-gs-build-example-open.png "Selecting an example"
|
\image qtcreator-gs-build-example-open.png "Selecting an example"
|
||||||
|
|||||||
@@ -128,7 +128,7 @@ void GettingStartedWelcomePageWidget::updateCppExamples(const QString &examplePa
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
ui->cppExamplesButton->setEnabled(true);;
|
ui->cppExamplesButton->setEnabled(true);;
|
||||||
ui->cppExamplesButton->setText(tr("Choose an example..."));
|
ui->cppExamplesButton->setText(tr("Choose an Example..."));
|
||||||
|
|
||||||
QMenu *menu = new QMenu(ui->cppExamplesButton);
|
QMenu *menu = new QMenu(ui->cppExamplesButton);
|
||||||
ui->cppExamplesButton->setMenu(menu);
|
ui->cppExamplesButton->setMenu(menu);
|
||||||
@@ -183,7 +183,7 @@ void GettingStartedWelcomePageWidget::updateCppExamples(const QString &examplePa
|
|||||||
void GettingStartedWelcomePageWidget::updateQmlExamples(const QString &examplePath,
|
void GettingStartedWelcomePageWidget::updateQmlExamples(const QString &examplePath,
|
||||||
const QString &sourcePath)
|
const QString &sourcePath)
|
||||||
{
|
{
|
||||||
ui->qmlExamplesButton->setText(tr("Choose an example..."));
|
ui->qmlExamplesButton->setText(tr("Choose an Example..."));
|
||||||
|
|
||||||
QStringList roots;
|
QStringList roots;
|
||||||
roots << (examplePath + QLatin1String("/declarative"))
|
roots << (examplePath + QLatin1String("/declarative"))
|
||||||
|
|||||||
Reference in New Issue
Block a user