Skip to content

Commit

Permalink
Translation string fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Sep 22, 2020
1 parent 9d885af commit a15fff1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/db_manager/dlg_sql_window.py
Expand Up @@ -28,7 +28,7 @@

import os

from qgis.PyQt.QtCore import Qt, pyqtSignal, QDir
from qgis.PyQt.QtCore import Qt, pyqtSignal, QDir, QCoreApplication
from qgis.PyQt.QtWidgets import (QDialog,
QWidget,
QAction,
Expand Down Expand Up @@ -381,7 +381,7 @@ def updateUiWhileSqlExecution(self, status):

def executeSqlCanceled(self):
self.btnCancel.setEnabled(False)
self.btnCancel.setText(self.tr("Canceling…"))
self.btnCancel.setText(QCoreApplication.translate("DlgSqlWindow", "Canceling…"))
self.modelAsync.cancel()

def executeSqlCompleted(self):
Expand Down

0 comments on commit a15fff1

Please sign in to comment.