diff --git a/templates/email/default/sample_order_confirmation.html b/templates/email/default/order_confirmation.html
similarity index 70%
rename from templates/email/default/sample_order_confirmation.html
rename to templates/email/default/order_confirmation.html
index c4169c4bc..fb0dbe4c9 100644
--- a/templates/email/default/sample_order_confirmation.html
+++ b/templates/email/default/order_confirmation.html
@@ -4,10 +4,10 @@
{block name="browser"}{/block}
{* Subject *}
-{block name="email-subject"}Your order confirmation Nº {$order_ref}{/block}
+{block name="email-subject"}{intl l="Your order confirmation Nº %ref" ref={$order_ref}}{/block}
{* Title *}
-{block name="email-title"}Thank you for your order!{/block}
+{block name="email-title"}{intl l="Thank you for your order!"}{/block}
{* Content *}
{block name="email-content"}
@@ -21,12 +21,12 @@
{assign var="customerRef" value=$REF}
{/loop}
- Here are the details of your purchase:
+ {intl l="Here are the details of your purchase:"}
|
- Delivery address: + {intl l="Delivery address:"} {loop type="order_address" name="delivery_address" id=$DELIVERY_ADDRESS} {$FIRSTNAME} {$LASTNAME} {$ADDRESS1} @@ -37,7 +37,7 @@ {/loop} |
- Billing address: + {intl l="Billing address:"} {loop type="order_address" name="invoice_address" id=$INVOICE_ADDRESS} {$FIRSTNAME} {$LASTNAME} {$ADDRESS1} @@ -53,11 +53,11 @@
- Order Total: {$TOTAL_TAXED_AMOUNT} {$orderCurrencySymbol} {$orderCurrencyIsoCode}
- Support- For any questions, or concerns, feel free to contact support@yourdomain.com.- Our contact us at: - Thelia V2 - Street name of my business - City - 75000, France + {intl l="Support"}+ {intl l='For any questions, or concerns, feel free to contact %mail.' ref={config key="store_email"}}+ {intl l="Our contact us at:"} + {config key="store_name"} + {config key="store_address1"} + {config key="store_zipcode"}, {config key="store_city"} + {loop type="country" name="store_country" id={config key="store_country"}} + {$TITLE} + {/loop} - Thanks, - The Thelia V2 team + {intl l="Thanks"} {/block} diff --git a/templates/email/default/sample_order_confirmation.txt b/templates/email/default/order_confirmation.txt similarity index 100% rename from templates/email/default/sample_order_confirmation.txt rename to templates/email/default/order_confirmation.txt |