We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07ea0aa commit abcc8b1Copy full SHA for abcc8b1
python/plugins/db_manager/db_plugins/spatialite/info_model.py
@@ -32,14 +32,14 @@ def __init__(self, db):
32
33
def connectionDetails(self):
34
tbl = [
35
- (self.tr("Filename:"), self.db.connector.dbname)
+ (QApplication.translate("DBManagerPlugin","Filename:"), self.db.connector.dbname)
36
]
37
return HtmlTable( tbl )
38
39
def generalInfo(self):
40
info = self.db.connector.getInfo()
41
42
- (self.tr("SQLite version"), info[0])
+ (QApplication.translate("DBManagerPlugin","SQLite version:"), info[0])
43
44
45
0 commit comments