13 lines
495 B
PHP
13 lines
495 B
PHP
<?php
|
|
|
|
global $_LANGMAIL;
|
|
$_LANGMAIL = array();
|
|
$_LANGMAIL['Your new admin password'] = 'Tu nueva contraseña de Administrador';
|
|
$_LANGMAIL['Your password'] = 'Tu contraseña';
|
|
$_LANGMAIL['Welcome!'] = 'Bienvenido !';
|
|
$_LANGMAIL['Order confirmation'] = 'Confirmación de pedido';
|
|
$_LANGMAIL['Message from contact form'] = 'Mensaje desde el formulario de contacto';
|
|
$_LANGMAIL['My personal informations'] = 'Información personal';
|
|
$_LANGMAIL['Message from a customer'] = 'Mensaje de un cliente';
|
|
|
|
?>
|