Module-pour-UPS #2

Merged
TheCoreDev merged 2 commits from Module-pour-UPS into main 2024-02-10 19:15:26 +01:00
2 changed files with 4 additions and 5 deletions
Showing only changes of commit 43757f1a0c - Show all commits

View File

@@ -3,11 +3,12 @@
return array(
'Best Regards.' => 'Cordialement.',
'Dear' => 'Cher/Chère',
'Feel free to contact us for any further information' => 'Vous pouvez nous contacter pour toutes informations complémentaires',
'Feel free to contact us for any further information' => 'Vous pouvez nous contacter pour toute information complémentaire.',
'Please check <a href=\'%tracking_url\'>this URL</a> to track your parcel' => ' Vous pouvez suivre l\'envoi via <a href=\'%tracking_url\'>ce lien</a>',
'Please check this URL to track your parcel : %tracking_url' => 'Vous pouvez suivre votre colis en ligne à cette adresse : %tracking_url',
'Thank you for your order on our online store %store_name' => 'Merci pour votre commande sur notre boutique en ligne %store_name',
'The tracking number for this delivery is: %package' => 'Le numéro de suivi pour cette commande est: %package',
'Your %ref order has been shipped' => 'Votre commande %ref vient d\'être expédiée.',
'Your order %order_ref (dated %order_date) has been shipped on {format_date date=$update_date output=' => 'Votre commande %order_ref (datée du %order_date) a été expédiée le {format_date date=$update_date output="date"}',
'Your order %order_ref dated %order_date has been shipped on %update_date' => 'Votre commande %order_ref datée du %order_date a été expédié le %update_date',
'Your order %order_ref dated %order_date has been shipped on {format_date date=$update_date output=' => 'Votre commande %order_ref du %order_date vient d\'être expédiée le {format_date date=$update_date output="date"} order_ref={$order_ref} order_date={format_date date=$order_date} update_date={format_date date=$update_date}',
);

View File

@@ -15,7 +15,6 @@
{* Content *}
{block name="email-content"}
{loop type="customer" name="customer.order" current="false" id="$customer_id" backend_context="1"}
<p>{intl l="Dear" } {$LASTNAME} {$FIRSTNAME},</p>
{/loop}
@@ -25,10 +24,9 @@
{if $package}
<p>{intl l="The tracking number for this delivery is: %package" package={$package}}</p>
{if $tracking_url}
<p>{intl l="Please check this URL to track your parcel : %tracking_url" tracking_url={$tracking_url}}</p>
<p>{intl l="Please check <a href='%tracking_url'>this URL</a> to track your parcel" tracking_url={$tracking_url}}</p>
{/if}
{/if}
<p>{intl l="Feel free to contact us for any further information"}</p>
<p>{intl l="Best Regards."}</p>
{/block}