base_report_to_printer: fix string

This commit is contained in:
Alexis de Lattre
2023-11-03 20:11:24 +01:00
parent 58c60290ca
commit 424c4bb61d
2 changed files with 9 additions and 5 deletions

View File

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