translations

This commit is contained in:
2024-12-01 15:01:55 +03:00
parent fdfeb57049
commit b59b42a40c
5 changed files with 89 additions and 9 deletions

View File

@@ -37,9 +37,9 @@ void AdjustPictureDialog::accept() {
if (result == "") {
QMessageBox infoDialog;
infoDialog.setText("QR code was not detected on that image. Please edit it again or enter data manually");
infoDialog.setText(tr("QR code was not detected on that image. Please edit it again or enter data manually"));
infoDialog.setIcon(QMessageBox::Warning);
infoDialog.setWindowTitle("No QR code");
infoDialog.setWindowTitle(tr("No QR code"));
infoDialog.exec();
} else {
emit decodedData(result);