forked from qt-creator/qt-creator
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:
@@ -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();
|
||||||
|
@@ -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);
|
||||||
|
@@ -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()) {
|
||||||
|
Reference in New Issue
Block a user