We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9f3a879 + abcc8b1 commit 6c2689eCopy full SHA for 6c2689e
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