diff options
author | Leena Miettinen <riitta-leena.miettinen@nokia.com> | 2010-09-16 14:40:01 +0200 |
---|---|---|
committer | Leena Miettinen <riitta-leena.miettinen@nokia.com> | 2010-09-16 14:44:24 +0200 |
commit | 64aeb904bfb1b227cf646e9644359469b819acce (patch) | |
tree | 9656c82cdd1f046bd7dfc48326d96b456e7d8162 /src | |
parent | 8abe72e181e2caa2deb874f6b5fbf0412fc83fb7 (diff) | |
download | qt-creator-64aeb904bfb1b227cf646e9644359469b819acce.tar.gz |
Fix UI capitalization
Diffstat (limited to 'src')
5 files changed, 9 insertions, 9 deletions
diff --git a/src/libs/utils/projectintropage.ui b/src/libs/utils/projectintropage.ui index b1efee76c8..609c53f62e 100644 --- a/src/libs/utils/projectintropage.ui +++ b/src/libs/utils/projectintropage.ui @@ -3,7 +3,7 @@ <class>Utils::ProjectIntroPage</class> <widget class="QWizardPage" name="Utils::ProjectIntroPage"> <property name="title"> - <string>Introduction and project location</string> + <string>Introduction and Project Location</string> </property> <layout class="QVBoxLayout" name="verticalLayout"> <property name="sizeConstraint"> diff --git a/src/plugins/projectexplorer/projectwizardpage.ui b/src/plugins/projectexplorer/projectwizardpage.ui index 5c98f5ed69..e1a2266e60 100644 --- a/src/plugins/projectexplorer/projectwizardpage.ui +++ b/src/plugins/projectexplorer/projectwizardpage.ui @@ -11,7 +11,7 @@ </rect> </property> <property name="title"> - <string>Project management</string> + <string>Project Management</string> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> diff --git a/src/plugins/qt4projectmanager/addlibrarywizard.cpp b/src/plugins/qt4projectmanager/addlibrarywizard.cpp index fbb028abfa..74476153f0 100644 --- a/src/plugins/qt4projectmanager/addlibrarywizard.cpp +++ b/src/plugins/qt4projectmanager/addlibrarywizard.cpp @@ -112,7 +112,7 @@ LibraryTypePage::LibraryTypePage(AddLibraryWizard *parent) QVBoxLayout *layout = new QVBoxLayout(this); - m_systemRadio = new QRadioButton(tr("System Library"), this); + m_systemRadio = new QRadioButton(tr("System library"), this); m_systemRadio->setChecked(true); layout->addWidget(m_systemRadio); @@ -125,7 +125,7 @@ LibraryTypePage::LibraryTypePage(AddLibraryWizard *parent) systemLabel->setAttribute(Qt::WA_MacSmallSize, true); layout->addWidget(systemLabel); - m_externalRadio = new QRadioButton(tr("External Library"), this); + m_externalRadio = new QRadioButton(tr("External library"), this); layout->addWidget(m_externalRadio); QLabel *externalLabel = new QLabel(tr("Links to a library " @@ -137,7 +137,7 @@ LibraryTypePage::LibraryTypePage(AddLibraryWizard *parent) externalLabel->setAttribute(Qt::WA_MacSmallSize, true); layout->addWidget(externalLabel); - m_internalRadio = new QRadioButton(tr("Internal Library"), this); + m_internalRadio = new QRadioButton(tr("Internal library"), this); layout->addWidget(m_internalRadio); QLabel *internalLabel = new QLabel(tr("Links to a library " diff --git a/src/plugins/qt4projectmanager/wizards/librarywizarddialog.cpp b/src/plugins/qt4projectmanager/wizards/librarywizarddialog.cpp index 05a12e1211..3e59e48f21 100644 --- a/src/plugins/qt4projectmanager/wizards/librarywizarddialog.cpp +++ b/src/plugins/qt4projectmanager/wizards/librarywizarddialog.cpp @@ -112,11 +112,11 @@ LibraryIntroPage::LibraryIntroPage(QWidget *parent) : m_typeCombo(new QComboBox) { m_typeCombo->setEditable(false); - m_typeCombo->addItem(LibraryWizardDialog::tr("Shared library"), + m_typeCombo->addItem(LibraryWizardDialog::tr("Shared Library"), QVariant(QtProjectParameters::SharedLibrary)); - m_typeCombo->addItem(LibraryWizardDialog::tr("Statically linked library"), + m_typeCombo->addItem(LibraryWizardDialog::tr("Statically Linked Library"), QVariant(QtProjectParameters::StaticLibrary)); - m_typeCombo->addItem(LibraryWizardDialog::tr("Qt 4 plugin"), + m_typeCombo->addItem(LibraryWizardDialog::tr("Qt 4 Plugin"), QVariant(QtProjectParameters::Qt4Plugin)); insertControl(0, new QLabel(LibraryWizardDialog::tr("Type")), m_typeCombo); } diff --git a/src/plugins/qt4projectmanager/wizards/modulespage.cpp b/src/plugins/qt4projectmanager/wizards/modulespage.cpp index bd2a66337c..bfee6f029c 100644 --- a/src/plugins/qt4projectmanager/wizards/modulespage.cpp +++ b/src/plugins/qt4projectmanager/wizards/modulespage.cpp @@ -48,7 +48,7 @@ using namespace Qt4ProjectManager::Internal; ModulesPage::ModulesPage(QWidget *parent) : QWizardPage(parent) { - setTitle(tr("Select required modules")); + setTitle(tr("Select Required Modules")); QLabel *label = new QLabel(tr("Select the modules you want to include in your " "project. The recommended modules for this project are selected by default.")); label->setWordWrap(true); |