diff --git a/src/libs/utils/projectintropage.ui b/src/libs/utils/projectintropage.ui index b1efee76c81..609c53f62e1 100644 --- a/src/libs/utils/projectintropage.ui +++ b/src/libs/utils/projectintropage.ui @@ -3,7 +3,7 @@ Utils::ProjectIntroPage - Introduction and project location + Introduction and Project Location diff --git a/src/plugins/projectexplorer/projectwizardpage.ui b/src/plugins/projectexplorer/projectwizardpage.ui index 5c98f5ed692..e1a2266e60f 100644 --- a/src/plugins/projectexplorer/projectwizardpage.ui +++ b/src/plugins/projectexplorer/projectwizardpage.ui @@ -11,7 +11,7 @@ - Project management + Project Management diff --git a/src/plugins/qt4projectmanager/addlibrarywizard.cpp b/src/plugins/qt4projectmanager/addlibrarywizard.cpp index fbb028abfa7..74476153f09 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 05a12e12115..3e59e48f212 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 bd2a66337c1..bfee6f029cf 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);