From d8faa4e7e3fb74e554f6c9339f6fe4e2883c3bf1 Mon Sep 17 00:00:00 2001 From: Till Brehm <tbrehm@ispconfig.org> Date: Fri, 18 Sep 2015 13:43:03 -0400 Subject: [PATCH] Fix by dirkd: Since file() doesn't remove "\n" from the lines read the condition $lines[$l] == '' never evaluated to true. So $mailHeaders would always contain every line from the template while $mailBody contained none of them. --- interface/web/help/lib/lang/es_support_message.lng | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/interface/web/help/lib/lang/es_support_message.lng b/interface/web/help/lib/lang/es_support_message.lng index 5b3a6b3..cab8587 100644 --- a/interface/web/help/lib/lang/es_support_message.lng +++ b/interface/web/help/lib/lang/es_support_message.lng @@ -1,7 +1,15 @@ <?php -$wb['recipient_id_txt'] = 'ID Recipiente'; +$wb['recipient_id_txt'] = 'ID Destinatario'; $wb['sender_id_txt'] = 'ID Remitente'; $wb['subject_txt'] = 'Asunto'; $wb['message_txt'] = 'Mensaje'; -$wb['tstamp_txt'] = 'Marcadetiempo'; +$wb['tstamp_txt'] = 'Hora'; +$wb['reply_txt'] = 'Responder'; +$wb['date_txt'] = 'Fecha'; +$wb['support_request_subject_txt'] = 'Petición de soporte'; +$wb['support_request_txt'] = 'Tienes una petición de soporte. Por favor no responda a este correo, procese la petición de soporte desde el panel de gestión.'; +$wb['answer_to_support_request_txt'] = 'Tienes una respuesta a tu petición de soporte. Por favor no responda a este correo, responda el correo desde el panel de gestión.'; +$wb['answer_to_support_request_sent_txt'] = 'Se ha enviado tu respuesta a la petición de soporte. Por favor no responda a este correo.'; +$wb['support_request_sent_txt'] = 'Se ha enviado tu petición de soporte. Por favor no responda a este correo.'; +$wb['recipient_or_sender_email_address_not_valid_txt'] = 'No se pudo enviar el mensaje porque el destinatario y/o remitente no es válido.'; ?> -- Gitblit v1.9.1