forked from qt-creator/qt-creator
Added tr() for 2 messages in cmake plugin
Messages: "Build directory:" and "Run cmake" Change-Id: Id9306d595cf9d539fd7acd22f0759e3726a4c376 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
This commit is contained in:
committed by
Oswald Buddenhagen
parent
fd82e54a5b
commit
cb6e324738
@@ -821,7 +821,7 @@ CMakeBuildSettingsWidget::CMakeBuildSettingsWidget(CMakeTarget *target)
|
||||
setLayout(fl);
|
||||
|
||||
// TODO add action to Build menu?
|
||||
QPushButton *runCmakeButton = new QPushButton("Run cmake");
|
||||
QPushButton *runCmakeButton = new QPushButton(tr("Run cmake"));
|
||||
connect(runCmakeButton, SIGNAL(clicked()),
|
||||
this, SLOT(runCMake()));
|
||||
fl->addRow(tr("Reconfigure project:"), runCmakeButton);
|
||||
@@ -837,7 +837,7 @@ CMakeBuildSettingsWidget::CMakeBuildSettingsWidget(CMakeTarget *target)
|
||||
connect(m_changeButton, SIGNAL(clicked()), this, SLOT(openChangeBuildDirectoryDialog()));
|
||||
hbox->addWidget(m_changeButton);
|
||||
|
||||
fl->addRow("Build directory:", hbox);
|
||||
fl->addRow(tr("Build directory:"), hbox);
|
||||
}
|
||||
|
||||
QString CMakeBuildSettingsWidget::displayName() const
|
||||
|
Reference in New Issue
Block a user