Added remaining QMessageBox text to self.tr method

I'm assuming it was left out on accident. Sorry, but I can't update the translation files on my own.
This commit is contained in:
tntscreed 2023-03-16 13:19:19 +01:00
parent 389cb19f55
commit 9b372eac73

View file

@ -448,8 +448,8 @@ class MainWindow(QMainWindow, Ui_MainWindow):
tableview_model = self.BulkManageUi.tableView.model()
if tableview_model.rowCount() > 0:
confirm = QMessageBox.warning(
self, "Un-applied data!",
"There are un-applied entries in this tab. Discard them?",
self, self.tr("Un-applied data!"),
self.tr("There are un-applied entries in this tab. Discard them?"),
QMessageBox.Yes | QMessageBox.No,
defaultButton = QMessageBox.No
)