We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1233398 commit b9ada4cCopy full SHA for b9ada4c
python/plugins/db_manager/db_plugins/spatialite/connector.py
@@ -37,7 +37,7 @@ def __init__(self, uri):
37
38
self.dbname = uri.database()
39
if not QFile.exists( self.dbname ):
40
- raise ConnectionError( self.tr('"%s" not found') % self.dbname )
+ raise ConnectionError( QApplication.translate("DBManagerPlugin", '"{0}" not found').format( self.dbname ) )
41
42
try:
43
self.connection = sqlite.connect( self._connectionInfo() )
0 commit comments