Added possibility to translate "Add" and "Remove" buttons and "Clear system environment" checkbox in build settings of project.

Merge-request: 1141
Reviewed-by: Daniel Molkentin <daniel.molkentin@nokia.com>
This commit is contained in:
Sergey Belyashov
2009-08-07 11:07:41 +02:00
committed by Daniel Molkentin
parent 1010ea5251
commit 2c9f0e2d91
3 changed files with 4 additions and 4 deletions

View File

@@ -146,13 +146,13 @@ BuildSettingsWidget::BuildSettingsWidget(Project *project)
hbox->addWidget(m_buildConfigurationComboBox);
m_addButton = new QPushButton(this);
m_addButton->setText("Add");
m_addButton->setText(tr("Add"));
m_addButton->setIcon(QIcon(Core::Constants::ICON_PLUS));
m_addButton->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
hbox->addWidget(m_addButton);
m_removeButton = new QPushButton(this);
m_removeButton->setText("Remove");
m_removeButton->setText(tr("Remove"));
m_removeButton->setIcon(QIcon(Core::Constants::ICON_MINUS));
m_removeButton->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
hbox->addWidget(m_removeButton);