summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/projectmodels.cpp
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2019-06-25 08:48:29 +0200
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2019-06-25 11:58:23 +0000
commit77f1a5963dca0f06da3975e0e883255d41e885c0 (patch)
treeb1b94c9ef03cb85d57d270686adca3cb825b3a69 /src/plugins/projectexplorer/projectmodels.cpp
parent73f3291c6d3f85a01b476070806f45a81c8a0c99 (diff)
downloadqt-creator-77f1a5963dca0f06da3975e0e883255d41e885c0.tar.gz
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>
Diffstat (limited to 'src/plugins/projectexplorer/projectmodels.cpp')
-rw-r--r--src/plugins/projectexplorer/projectmodels.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/projectexplorer/projectmodels.cpp b/src/plugins/projectexplorer/projectmodels.cpp
index c2c02b1d02..c3df0688ae 100644
--- a/src/plugins/projectexplorer/projectmodels.cpp
+++ b/src/plugins/projectexplorer/projectmodels.cpp
@@ -457,7 +457,7 @@ public:
: m_buttonBox(new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel)),
m_buttonGroup(new QButtonGroup(this))
{
- setWindowTitle(tr("Please choose a drop action"));
+ setWindowTitle(tr("Choose Drop Action"));
const bool offerFileIo = !defaultTargetDir.isEmpty();
auto * const layout = new QVBoxLayout(this);
layout->addWidget(new QLabel(tr("You just dragged some files from one project node to "
@@ -469,8 +469,8 @@ public:
m_buttonGroup->addButton(moveButton, int(DropAction::Move));
layout->addWidget(moveButton);
if (offerFileIo) {
- copyButton->setText(tr("Copy only the file references"));
- moveButton->setText(tr("Move only the file references"));
+ copyButton->setText(tr("Copy Only File References"));
+ moveButton->setText(tr("Move Only File References"));
auto * const copyWithFilesButton
= new QRadioButton(tr("Copy file references and files"), this);
m_buttonGroup->addButton(copyWithFilesButton, int(DropAction::CopyWithFiles));
@@ -506,8 +506,8 @@ public:
}
});
} else {
- copyButton->setText(tr("Copy the file references"));
- moveButton->setText(tr("Move the file references"));
+ copyButton->setText(tr("Copy File References"));
+ moveButton->setText(tr("Move File References"));
moveButton->setChecked(true);
}
connect(m_buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept);