UI text - fix capitalization

This commit is contained in:
Leena Miettinen
2010-09-17 15:23:49 +02:00
parent 002ca9ca7b
commit d84282b37c
2 changed files with 3 additions and 3 deletions

View File

@@ -3542,7 +3542,7 @@
\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}.
\image qtcreator-gs-build-example-open.png "Selecting an example"

View File

@@ -128,7 +128,7 @@ void GettingStartedWelcomePageWidget::updateCppExamples(const QString &examplePa
return;
ui->cppExamplesButton->setEnabled(true);;
ui->cppExamplesButton->setText(tr("Choose an example..."));
ui->cppExamplesButton->setText(tr("Choose an Example..."));
QMenu *menu = new QMenu(ui->cppExamplesButton);
ui->cppExamplesButton->setMenu(menu);
@@ -183,7 +183,7 @@ void GettingStartedWelcomePageWidget::updateCppExamples(const QString &examplePa
void GettingStartedWelcomePageWidget::updateQmlExamples(const QString &examplePath,
const QString &sourcePath)
{
ui->qmlExamplesButton->setText(tr("Choose an example..."));
ui->qmlExamplesButton->setText(tr("Choose an Example..."));
QStringList roots;
roots << (examplePath + QLatin1String("/declarative"))