Jump to content

Problema al solucionar asunto Emails


ErikSebastia2

Recommended Posts

<?php
global $_LANGMAIL;
$_LANGMAIL = array();
$_LANGMAIL['Welcome!'] = 'Bienvenido !';
$_LANGMAIL['Message from contact form'] = 'Mensaje desde el formulario de contacto';
$_LANGMAIL['Order confirmation'] = 'Confirmacion de pedido';
$_LANGMAIL['Message from a customer'] = 'Mensaje de un cliente';
$_LANGMAIL['Your password'] = 'Tu contrase�a';
?>

 

La modificación que he realizado son las dos últimas líneas del siguiente código, para traducir el asunto de 2 correos (archivos HTML) que no tenían traducción.

 

<?php
global $_LANGMAIL;
$_LANGMAIL = array();
$_LANGMAIL['Welcome!'] = 'Bienvenido !';
$_LANGMAIL['Message from contact form'] = 'Mensaje desde el formulario de contacto';
$_LANGMAIL['Order confirmation'] = 'Confirmacion de pedido';
$_LANGMAIL['Message from a customer'] = 'Mensaje de un cliente';
$_LANGMAIL['Your password'] = 'Tu contrase�a';


$_LANGMAIL['Your message has been correctly sent'] = 'Su mensaje ha sido enviado correctamente';
$_LANGMAIL['An answer to your message is available'] = 'Una respuesta a su mensaje está disponible';
?>

 

 

Gracias

Edited by ErikSebastia2 (see edit history)
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...