Inital commit
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'Flat rate' => 'Flat rate',
|
||||
'Flat rate shipping cost for this area' => 'Flat rate shipping cost for this area',
|
||||
'Save' => 'Save',
|
||||
);
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'Flat rate' => 'Montant du forfait',
|
||||
'Flat rate shipping cost for this area' => 'Frais de livraison forfaitaire pour cette zone',
|
||||
'Save' => 'Enregistrer',
|
||||
);
|
||||
55
local/modules/FlatFeeDelivery/I18n/email-templates/en.html
Normal file
55
local/modules/FlatFeeDelivery/I18n/email-templates/en.html
Normal file
@@ -0,0 +1,55 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<title>Order {config key="url_site"} </title>
|
||||
<style type="text/css">
|
||||
body {
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#liencompte {
|
||||
margin: 15px 0;
|
||||
text-align: center;
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
width: 480pt;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
#entete {
|
||||
padding-bottom: 20px;
|
||||
margin-bottom: 10px;
|
||||
border-bottom: 1px dotted #000;
|
||||
}
|
||||
|
||||
#logotexte {
|
||||
float: left;
|
||||
width: 180pt;
|
||||
height: 75pt;
|
||||
border: 1pt solid #000;
|
||||
font-size: 18pt;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
<div id="entete">
|
||||
<h1 id="logotexte">{config key="store_name"}</h1>
|
||||
|
||||
<h2 id="info">Your order has been shipped.</h2>
|
||||
</div>
|
||||
|
||||
<p>Dear customer,<p>
|
||||
<p>Your order {$order_ref} in {config key="store_name"} has been shipped.<p>
|
||||
<p>Thank you for your order !</p>
|
||||
|
||||
<p>The {config key="store_name"} team.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,7 @@
|
||||
Dear customer,
|
||||
|
||||
Your order {$order_ref} in {config key="store_name"} has been shipped.
|
||||
|
||||
Thank you again for your purchase.
|
||||
|
||||
The {config key="store_name"} team.
|
||||
57
local/modules/FlatFeeDelivery/I18n/email-templates/fr.html
Normal file
57
local/modules/FlatFeeDelivery/I18n/email-templates/fr.html
Normal file
@@ -0,0 +1,57 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="fr">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<title>Confirmation de l'expédition de votre commande sur {config key="url_site"}</title>
|
||||
<style type="text/css">
|
||||
body {
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#liencompte {
|
||||
margin: 15px 0;
|
||||
text-align: center;
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
width: 480pt;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
#entete {
|
||||
padding-bottom: 20px;
|
||||
margin-bottom: 10px;
|
||||
border-bottom: 1px dotted #000;
|
||||
}
|
||||
|
||||
#logotexte {
|
||||
float: left;
|
||||
width: 180pt;
|
||||
height: 75pt;
|
||||
border: 1pt solid #000;
|
||||
font-size: 18pt;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
<div id="entete">
|
||||
<h1 id="logotexte">{config key="store_name"}</h1>
|
||||
|
||||
<h2 id="info">Votre commande a été expédiée.</h2>
|
||||
</div>
|
||||
|
||||
<p>Cher client,</p>
|
||||
<p>Votre commande {$order_ref} sur {config key="store_name"} a été expédiée.</p>
|
||||
<p>Merci pour votre achat !</p>
|
||||
|
||||
<p>L'équipe {config key="store_name"}</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,7 @@
|
||||
Cher client,
|
||||
|
||||
Ce message confirme que votre commande {$order_ref} sur {config key="store_name"} a été expédiée.
|
||||
|
||||
Merci encore pour votre achat !
|
||||
|
||||
L'équipe {config key="store_name"}
|
||||
Reference in New Issue
Block a user