From c06dffc6132417ae0fe31c1a21482072791b651f Mon Sep 17 00:00:00 2001 From: Manuel Claeys Bouuaert Date: Wed, 6 May 2020 15:04:17 +0200 Subject: [PATCH] [IMP] pos_mail_receipt: mention email address in error message --- pos_mail_receipt/static/src/js/screens.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pos_mail_receipt/static/src/js/screens.js b/pos_mail_receipt/static/src/js/screens.js index 588c5376..fbbd9365 100644 --- a/pos_mail_receipt/static/src/js/screens.js +++ b/pos_mail_receipt/static/src/js/screens.js @@ -86,7 +86,7 @@ odoo.define("pos_mail_receipt.screens", function (require) { if(connection_problem){ self.gui.show_popup('error',{ 'title': _t('The e-mail could not be sent'), - 'body': _t('Check your internet connection and try again.'), + 'body': _t('The e-mail could not be sent to ') + options["email"] + _t('. Check your internet connection and try again.'), }); self.$('.button.email').removeClass("highlight"); }