create new password email template

This commit is contained in:
Manuel Raynaud
2014-04-21 21:36:24 +02:00
parent 27500363e7
commit f257bf9422
5 changed files with 48 additions and 8 deletions

View File

@@ -9,12 +9,15 @@ return array(
'Email not displaying correctly?' => 'Email not displaying correctly?',
'For any questions, or concerns, feel free to contact <a href="mailto:%mail" style="color:#3c69c1;text-decoration:none" target="_blank">%mail</a>.' => 'For any questions, or concerns, feel free to contact <a href="mailto:%mail" style="color:#3c69c1;text-decoration:none" target="_blank">%mail</a>.',
'Here are the details of your purchase:' => 'Here are the details of your purchase:',
'Hi there' => 'Hi there',
'Kind regards' => 'Kind regards',
'Order Number:' => 'Order Number:',
'Order Total' => 'Order Total',
'Order Total:' => 'Order Total:',
'Our contact us at:' => 'Our contact us at:',
'Our mailing address is:' => 'Our mailing address is:',
'Paid With:' => 'Paid With:',
'Password' => 'Password',
'Purchase Date:' => 'Purchase Date:',
'Shipping:' => 'Shipping:',
'Support' => 'Support',
@@ -23,5 +26,9 @@ return array(
'Thelia V2' => 'Thelia V2',
'Total' => 'Total',
'View it in your browser' => 'View it in your browser',
'You can change your password in your user account by opening the "Change my password" link under your personal information' => 'You can change your password in your user account by opening the "Change my password" link under your personal information',
'You have requested a new password for your Thelia V2 account' => 'You have requested a new password for your Thelia V2 account',
'Your new password is' => 'Your new password is',
'Your order confirmation Nº %ref' => 'Your order confirmation Nº %ref',
'Your password for %store' => 'Your password for %store',
);

View File

@@ -8,11 +8,14 @@ return array(
'Delivery method:' => 'entraga con : ',
'Email not displaying correctly?' => 'No puedes ver correctamente el mail ?',
'Here are the details of your purchase:' => 'Detalles del encarga',
'Hi there' => 'Holà',
'Kind regards' => 'Gracias',
'Order Number:' => 'Entraga numero',
'Order Total' => 'Total de la entraga',
'Order Total:' => 'Total de la entraga',
'Our mailing address is:' => 'Nuestra dirección',
'Paid With:' => 'pagado con : ',
'Password' => 'contraseña',
'Shipping:' => 'envio',
'Support' => 'Support',
'Thank you for your order!' => 'Graciàs por su encarga',
@@ -20,5 +23,8 @@ return array(
'Thelia V2' => 'Thelia V2',
'Total' => 'Total',
'View it in your browser' => 'Ver en el navegador ',
'You can change your password in your user account by opening the "Change my password" link under your personal information' => 'Puedes cambiar tu contraseña en tu cuenta',
'Your new password is' => 'la nueva contraseña es',
'Your order confirmation Nº %ref' => 'Numero de encarga : %ref',
'Your password for %store' => 'contraseña por %store',
);

View File

@@ -9,12 +9,15 @@ return array(
'Email not displaying correctly?' => 'Le mail ne s\'affiche pas correctement ?',
'For any questions, or concerns, feel free to contact <a href="mailto:%mail" style="color:#3c69c1;text-decoration:none" target="_blank">%mail</a>.' => 'Pour toutes questions contactez nous par mail : <a href="mailto:%mail" style="color:#3c69c1;text-decoration:none" target="_blank">%mail</a>.',
'Here are the details of your purchase:' => 'Voici les détails de votre commande',
'Hi there' => 'Bonjour',
'Kind regards' => 'Cordialement',
'Order Number:' => 'Commande N° : ',
'Order Total' => 'Total de la commande',
'Order Total:' => 'Total de la commande : ',
'Our contact us at:' => 'Contactez nous au',
'Our mailing address is:' => 'Adresse postale',
'Paid With:' => 'Payé par : ',
'Password' => 'Mot de passe',
'Purchase Date:' => 'Date d\'achat : ',
'Shipping:' => 'Frais de livraison',
'Support' => 'SAV',
@@ -23,5 +26,9 @@ return array(
'Thelia V2' => 'Thelia V2',
'Total' => 'Total',
'View it in your browser' => 'Voir dans le navigateur',
'You can change your password in your user account by opening the "Change my password" link under your personal information' => 'Vous pouvez changer votre mot de passe dans votre espace client',
'You have requested a new password for your account' => 'Vous avez demandé un nouveau mot de passe',
'Your new password is' => 'Votre nouveau mot de passe est',
'Your order confirmation Nº %ref' => 'Confirmation de commande N° %ref',
'Your password for %store' => 'Votre mot de passe pour %store',
);

View File

@@ -0,0 +1,20 @@
{extends file="email-layout.tpl"}
{* Open in browser *}
{block name="browser"}{/block}
{* Subject *}
{block name="email-subject"}{intl l="Your password for %store" store={config key="store_name"}}{/block}
{* Title *}
{block name="email-title"}{intl l="Password"}{/block}
{* Content *}
{block name="email-content"}
{intl l="Hi there"},<br /><br />
{intl l="You have requested a new password for your account"}.<br /><br />
{intl l="Your new password is"}&nbsp;:&nbsp;{$password}<br /><br />
{intl l='You can change your password in your user account by opening the "Change my password" link under your personal information'}.<br /><br />
{intl l='Kind regards'},<br />
- {config key="store_name"}
{/block}