Skip to content

Commit 11991c5

Browse files
committed
Fix capitalization
1 parent ea2c16d commit 11991c5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

python/plugins/processing/gui/MultipleInputDialog.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,17 +64,17 @@ def __init__(self, options, selectedoptions=None, datatype=None):
6464
self.selectedoptions = selectedoptions or []
6565

6666
# Additional buttons
67-
self.btnSelectAll = QPushButton(self.tr('Select all'))
67+
self.btnSelectAll = QPushButton(self.tr('Select All'))
6868
self.buttonBox.addButton(self.btnSelectAll,
6969
QDialogButtonBox.ActionRole)
70-
self.btnClearSelection = QPushButton(self.tr('Clear selection'))
70+
self.btnClearSelection = QPushButton(self.tr('Clear Selection'))
7171
self.buttonBox.addButton(self.btnClearSelection,
7272
QDialogButtonBox.ActionRole)
73-
self.btnToggleSelection = QPushButton(self.tr('Toggle selection'))
73+
self.btnToggleSelection = QPushButton(self.tr('Toggle Selection'))
7474
self.buttonBox.addButton(self.btnToggleSelection,
7575
QDialogButtonBox.ActionRole)
7676
if self.datatype is not None:
77-
btnAddFile = QPushButton(QCoreApplication.translate("MultipleInputDialog", 'Add file(s)…'))
77+
btnAddFile = QPushButton(QCoreApplication.translate("MultipleInputDialog", 'Add File(s)…'))
7878
btnAddFile.clicked.connect(self.addFiles)
7979
self.buttonBox.addButton(btnAddFile,
8080
QDialogButtonBox.ActionRole)

0 commit comments

Comments
 (0)