base_report_to_printer: fix string

This commit is contained in:
Alexis de Lattre
2023-11-03 20:11:24 +01:00
committed by trisdoan
parent 71678f2c29
commit 64f778e599
2 changed files with 9 additions and 5 deletions

View File

@@ -20,7 +20,7 @@ async function cupsReportActionHandler(action, options, env) {
if (result) {
env.services.notification.add(_t("Successfully sent to printer!"));
} else {
env.services.notification.add(_t("Could not sent to printer!"));
env.services.notification.add(_t("Could not send to printer!"));
}
return true;
}