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 =
|
||||
addToggleButton("--date=iso",
|
||||
tr("Show Date"),
|
||||
tr("Show date instead of sequence"));
|
||||
tr("Show date instead of sequence."));
|
||||
mapSetting(showDateButton, settings.boolPointer(GitSettings::refLogShowDateKey));
|
||||
|
||||
addReloadButton();
|
||||
|
@@ -92,7 +92,7 @@ public:
|
||||
addSeparator();
|
||||
addWidget(pickaxeLineEdit);
|
||||
addSeparator();
|
||||
caseAction = new QAction(tr("Case sensitive"), this);
|
||||
caseAction = new QAction(tr("Case Sensitive"), this);
|
||||
caseAction->setCheckable(true);
|
||||
caseAction->setChecked(true);
|
||||
connect(caseAction, &QAction::toggled, editor, &GitEditorWidget::refresh);
|
||||
|
@@ -1533,7 +1533,7 @@ void GitPluginPrivate::cleanRepository(const QString &directory)
|
||||
QApplication::restoreOverrideCursor();
|
||||
|
||||
if (!gotFiles) {
|
||||
Core::AsynchronousMessageBox::warning(tr("Unable to retrieve file list"), errorMessage);
|
||||
Core::AsynchronousMessageBox::warning(tr("Unable to Retrieve File List"), errorMessage);
|
||||
return;
|
||||
}
|
||||
if (files.isEmpty() && ignoredFiles.isEmpty()) {
|
||||
|
Reference in New Issue
Block a user