diff --git a/program/js/app.js b/program/js/app.js index 71e907e1e..26a6f6fb7 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1999,7 +1999,7 @@ function rcube_webmail() // detect popup blocker (#1489618) // don't care this might not work with all browsers if (!extwin || extwin.closed) { - this.display_message(this.get_label('windowopenerror'), 'warning'); + this.display_message('windowopenerror', 'warning'); return; } @@ -3090,7 +3090,7 @@ function rcube_webmail() return; // send request to server - this.http_post('copy', post_data, this.display_message(this.get_label('copyingmessage'), 'loading')); + this.http_post('copy', post_data, this.display_message('copyingmessage', 'loading')); }; // move selected messages to the specified mailbox @@ -3211,7 +3211,7 @@ function rcube_webmail() if (!lock) { msg = action == 'move' ? 'movingmessage' : 'deletingmessage'; - lock = this.display_message(this.get_label(msg), 'loading'); + lock = this.display_message(msg, 'loading'); } // send request to server @@ -3300,7 +3300,7 @@ function rcube_webmail() { var i, len = a_uids.length, post_data = this.selection_post_data({_uid: this.uids_to_list(a_uids), _flag: flag}), - lock = this.display_message(this.get_label('markingmessage'), 'loading'); + lock = this.display_message('markingmessage', 'loading'); // mark all message rows as read/unread for (i=0; i