Git: Fix UI text according to the guidelines

https://doc.qt.io/qtcreator-extending/qtcreator-ui-text.html

Task-number: QTCREATORBUG-23683
Change-Id: I1843de5a9166760bf52632f75dab74507029bf8c
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Leena Miettinen
2020-03-11 11:17:01 +01:00
parent 6d484ec120
commit ff8751c576
3 changed files with 3 additions and 3 deletions

View File

@@ -629,7 +629,7 @@ public:
QAction *showDateButton = QAction *showDateButton =
addToggleButton("--date=iso", addToggleButton("--date=iso",
tr("Show Date"), tr("Show Date"),
tr("Show date instead of sequence")); tr("Show date instead of sequence."));
mapSetting(showDateButton, settings.boolPointer(GitSettings::refLogShowDateKey)); mapSetting(showDateButton, settings.boolPointer(GitSettings::refLogShowDateKey));
addReloadButton(); addReloadButton();

View File

@@ -92,7 +92,7 @@ public:
addSeparator(); addSeparator();
addWidget(pickaxeLineEdit); addWidget(pickaxeLineEdit);
addSeparator(); addSeparator();
caseAction = new QAction(tr("Case sensitive"), this); caseAction = new QAction(tr("Case Sensitive"), this);
caseAction->setCheckable(true); caseAction->setCheckable(true);
caseAction->setChecked(true); caseAction->setChecked(true);
connect(caseAction, &QAction::toggled, editor, &GitEditorWidget::refresh); connect(caseAction, &QAction::toggled, editor, &GitEditorWidget::refresh);

View File

@@ -1533,7 +1533,7 @@ void GitPluginPrivate::cleanRepository(const QString &directory)
QApplication::restoreOverrideCursor(); QApplication::restoreOverrideCursor();
if (!gotFiles) { if (!gotFiles) {
Core::AsynchronousMessageBox::warning(tr("Unable to retrieve file list"), errorMessage); Core::AsynchronousMessageBox::warning(tr("Unable to Retrieve File List"), errorMessage);
return; return;
} }
if (files.isEmpty() && ignoredFiles.isEmpty()) { if (files.isEmpty() && ignoredFiles.isEmpty()) {