forked from qt-creator/qt-creator
CMake: Fix UI text according to the guidelines
https://doc.qt.io/qtcreator-extending/qtcreator-ui-text.html Task-number: QTCREATORBUG-23683 Change-Id: I56af56e745fe4237e1bb9df94f8cd423585e63a4 Reviewed-by: Cristian Adam <cristian.adam@qt.io>
This commit is contained in:
@@ -576,9 +576,9 @@ bool BuildDirManager::checkConfiguration()
|
||||
box->setText(tr("The project has been changed outside of %1.")
|
||||
.arg(Core::Constants::IDE_DISPLAY_NAME));
|
||||
box->setInformativeText(table);
|
||||
auto *defaultButton = box->addButton(tr("Discard external changes"),
|
||||
auto *defaultButton = box->addButton(tr("Discard External Changes"),
|
||||
QMessageBox::RejectRole);
|
||||
auto *applyButton = box->addButton(tr("Adapt %1 project to changes")
|
||||
auto *applyButton = box->addButton(tr("Adapt %1 Project to Changes")
|
||||
.arg(Core::Constants::IDE_DISPLAY_NAME),
|
||||
QMessageBox::ApplyRole);
|
||||
box->setDefaultButton(defaultButton);
|
||||
|
||||
Reference in New Issue
Block a user