Skip to content

Commit ea40f1e

Browse files
committed
More capitalization homogenization
1 parent fa56aa5 commit ea40f1e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

python/plugins/db_manager/db_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ def setupUi(self):
448448
sep.setVisible(False)
449449

450450
self.actionImport = self.menuTable.addAction(QIcon(":/db_manager/actions/import"),
451-
self.tr("&Import Layer/file…"), self.importActionSlot)
451+
self.tr("&Import Layer/File…"), self.importActionSlot)
452452
self.actionExport = self.menuTable.addAction(QIcon(":/db_manager/actions/export"), self.tr("&Export to File…"),
453453
self.exportActionSlot)
454454
self.menuTable.addSeparator()

python/plugins/db_manager/db_manager_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def initGui(self):
5252
else:
5353
self.iface.addPluginToMenu(QApplication.translate("DBManagerPlugin", "DB Manager"), self.action)
5454

55-
self.layerAction = QAction(QgsApplication.getThemeIcon('dbmanager.svg'), QApplication.translate("DBManagerPlugin", "Update Sql Layer…"),
55+
self.layerAction = QAction(QgsApplication.getThemeIcon('dbmanager.svg'), QApplication.translate("DBManagerPlugin", "Update SQL Layer…"),
5656
self.iface.mainWindow())
5757
self.layerAction.setObjectName("dbManagerUpdateSqlLayer")
5858
self.layerAction.triggered.connect(self.onUpdateSqlLayer)

python/plugins/db_manager/db_plugins/oracle/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def registerDatabaseActions(self, mainWindow):
245245
"DBManagerPlugin", "&Table"), self.createTableActionSlot)
246246
action = QAction(QIcon(":/db_manager/actions/edit_table"),
247247
QApplication.translate(
248-
"DBManagerPlugin", "&Edit Eable…"), self)
248+
"DBManagerPlugin", "&Edit Table…"), self)
249249
mainWindow.registerAction(action, QApplication.translate(
250250
"DBManagerPlugin", "&Table"), self.editTableActionSlot)
251251
action = QAction(QIcon(":/db_manager/actions/del_table"),

python/plugins/db_manager/db_plugins/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ def registerDatabaseActions(self, mainWindow):
327327
QApplication.translate("DBManagerPlugin", "&Edit Table…"), self)
328328
mainWindow.registerAction(action, QApplication.translate("DBManagerPlugin", "&Table"), self.editTableActionSlot)
329329
action = QAction(QIcon(":/db_manager/actions/del_table"),
330-
QApplication.translate("DBManagerPlugin", "&Delete Table/view…"), self)
330+
QApplication.translate("DBManagerPlugin", "&Delete Table/View…"), self)
331331
mainWindow.registerAction(action, QApplication.translate("DBManagerPlugin", "&Table"),
332332
self.deleteTableActionSlot)
333333
action = QAction(QApplication.translate("DBManagerPlugin", "&Empty Table…"), self)

python/plugins/db_manager/dlg_table_properties.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def currentConstraint(self):
238238
sel = self.viewConstraints.selectionModel()
239239
indexes = sel.selectedRows()
240240
if len(indexes) == 0:
241-
QMessageBox.information(self, self.tr("DB Manager"), self.tr("No constraints were selected"))
241+
QMessageBox.information(self, self.tr("DB Manager"), self.tr("No constraints were selected."))
242242
return -1
243243
return indexes[0].row()
244244

0 commit comments

Comments
 (0)