forked from qt-creator/qt-creator
Project Explorer: Fix UI text
Use book-style capitalization for dialog and button labels. Change-Id: I2c074d83d6a95ad348daacabd561c758e0a493f8 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -104,7 +104,7 @@ public:
|
||||
: QDialog(parent), m_view(new Utils::TreeView(this))
|
||||
{
|
||||
setWindowTitle(QCoreApplication::translate("ProjectExplorer::JsonWizard",
|
||||
"Choose project file"));
|
||||
"Choose Project File"));
|
||||
const auto model = new ProjectFilesModel(candidates, this);
|
||||
m_view->setSelectionMode(Utils::TreeView::ExtendedSelection);
|
||||
m_view->setSelectionBehavior(Utils::TreeView::SelectRows);
|
||||
@@ -121,7 +121,7 @@ public:
|
||||
const auto layout = new QVBoxLayout(this);
|
||||
layout->addWidget(new QLabel(QCoreApplication::translate("ProjectExplorer::JsonWizard",
|
||||
"The project contains more than one project file. "
|
||||
"Please select the one you would like to use.")));
|
||||
"Select the one you would like to use.")));
|
||||
layout->addWidget(m_view);
|
||||
layout->addWidget(buttonBox);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user