Skip to content

Commit

Permalink
Fixes #8065
Browse files Browse the repository at this point in the history
  • Loading branch information
slarosa committed Jun 14, 2013
1 parent 07ea0aa commit abcc8b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/db_manager/db_plugins/spatialite/info_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ def __init__(self, db):

def connectionDetails(self):
tbl = [
(self.tr("Filename:"), self.db.connector.dbname)
(QApplication.translate("DBManagerPlugin","Filename:"), self.db.connector.dbname)
]
return HtmlTable( tbl )

def generalInfo(self):
info = self.db.connector.getInfo()
tbl = [
(self.tr("SQLite version"), info[0])
(QApplication.translate("DBManagerPlugin","SQLite version:"), info[0])
]
return HtmlTable( tbl )

Expand Down

0 comments on commit abcc8b1

Please sign in to comment.