From 46f7b7096450939fe03c95aa81ce06ae4bfca89d Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Mon, 28 Mar 2016 06:51:43 -0400 Subject: [PATCH] Enable reply/reply-all/forward buttons also in preview frame of message/rfc822 --- plugins/attachment_reminder/attachment_reminder.js | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/attachment_reminder/attachment_reminder.js b/plugins/attachment_reminder/attachment_reminder.js old mode 100755 new mode 100644 index d6cf8e4..4626ce7 --- a/plugins/attachment_reminder/attachment_reminder.js +++ b/plugins/attachment_reminder/attachment_reminder.js @@ -33,7 +33,7 @@ function rcmail_check_message(msg) { - var i, rx, keywords = rcmail.gettext('keywords', 'attachment_reminder').split(",").concat([".doc", ".pdf"]); + var i, rx, keywords = rcmail.get_label('keywords', 'attachment_reminder').split(",").concat([".doc", ".pdf"]); keywords = $.map(keywords, function(n) { return RegExp.escape(n); }); rx = new RegExp('(' + keywords.join('|') + ')', 'i'); @@ -50,21 +50,21 @@ { var buttons = {}; - buttons[rcmail.gettext('addattachment')] = function() { + buttons[rcmail.get_label('addattachment')] = function() { $(this).remove(); if (window.UI && UI.show_uploadform) // Larry skin UI.show_uploadform(); else if (window.rcmail_ui && rcmail_ui.show_popup) // classic skin rcmail_ui.show_popup('uploadmenu', true); }; - buttons[rcmail.gettext('send')] = function(e) { + buttons[rcmail.get_label('send')] = function(e) { $(this).remove(); rcmail.env.attachment_reminder = true; rcmail.command('send', '', e); }; rcmail.env.attachment_reminder = false; - rcmail.show_popup_dialog(rcmail.gettext('attachment_reminder.forgotattachment'), '', buttons); + rcmail.show_popup_dialog(rcmail.get_label('attachment_reminder.forgotattachment'), '', buttons); }; -- Gitblit v1.9.1