Doc - UI - Fix UI text capitalization to follow the KDE Style Guide rules.

Reviewed-by: ossi
This commit is contained in:
Leena Miettinen
2010-05-14 15:45:43 +02:00
parent cf250f26c1
commit cf233161fa
55 changed files with 110 additions and 111 deletions

View File

@@ -302,7 +302,7 @@ void BuildStepsPage::setupUi()
QHBoxLayout *hboxLayout = new QHBoxLayout();
hboxLayout->setContentsMargins(m_leftMargin, 4, 0, 0);
m_addButton = new QPushButton(this);
m_addButton->setText(m_type == Clean ? tr("Add clean step") : tr("Add build step"));
m_addButton->setText(m_type == Clean ? tr("Add Clean Step") : tr("Add Build Step"));
m_addButton->setMenu(new QMenu(this));
hboxLayout->addWidget(m_addButton);