Inital commit

This commit is contained in:
2020-11-19 15:36:28 +01:00
parent 71f32f83d3
commit 66ce4ee218
18077 changed files with 2166122 additions and 35184 deletions

View File

@@ -0,0 +1,5 @@
<?php
return array(
'Atos Configuration' => 'Atos Configuration',
);

View File

@@ -0,0 +1,5 @@
<?php
return array(
'Atos Configuration' => 'Atos Configuration',
);

View File

@@ -0,0 +1,13 @@
<?php
return array(
'Atos Configuration' => 'Atos Configuration',
'Atos-SIPS Platform configuration' => 'Atos-SIPS Platform configuration',
'Atos-SIPS call log to callback URL' => 'Atos-SIPS call log to callback URL',
'Callback URL' => 'Callback URL',
'Download full log' => 'Download full log',
'Operation mode' => 'Operation mode',
'Payment configuration' => 'Payment configuration',
'This is the callback URL, that will be called by Atos SIPS after customer payment. Be sure that this URL is reachable by remote mechines' => 'This is the callback URL, that will be called by Atos SIPS after customer payment. Be sure that this URL is reachable by remote machines',
'You can <a href="%url">edit the payment confirmation email</a> sent to the customer after a successful payment.' => 'You can <a href="%url">edit the payment confirmation email</a> sent to the customer after a successful payment.',
);

View File

@@ -0,0 +1,13 @@
<?php
return array(
'Atos Configuration' => 'Atos Configuration',
'Atos-SIPS Platform configuration' => 'Configuration de la plate-forme SIPS-Atos',
'Atos-SIPS call log to callback URL' => 'Atos-SIPS callback URL log',
'Callback URL' => 'URL de retour',
'Download full log' => 'Télécharger l\'historique complet',
'Operation mode' => 'Mode de fonctionnement',
'Payment configuration' => 'Configuration du paiement',
'This is the callback URL, that will be called by Atos SIPS after customer payment. Be sure that this URL is reachable by remote mechines' => 'Il s\'agit de l\'URL de retour appelée par Atos SIPS après le paiement de vos clients. Assurez-vous que cette URL est joignable par des machines distantes.',
'You can <a href="%url">edit the payment confirmation email</a> sent to the customer after a successful payment.' => 'Vous pouvez <a href="%url">modifier le mail de confirmation de paiement</a> envoyé au client.',
);

View File

@@ -0,0 +1,60 @@
<!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>courriel de confirmation de commande de {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">The payment of your order is confirmed</h2>
<h3 id="commande">Reference {$order_ref} </h3>
</div>
<p id="liencompte">
Your invoice is now available in your customer account on
<a href="{config key="url_site"}">{config key="store_name"}</a>.
</p>
<p>Thank you for your order !</p>
<p>The {config key="store_name"} team.</p>
</div>
</body>
</html>

View File

@@ -0,0 +1,9 @@
Dear customer,
This is a confirmation of the payment of your order {$order_ref} via Payzen on our shop.
Your invoice is now available in your customer account at {config key="url_site"}
Thank you again for your purchase.
The {config key="store_name"} team.

View File

@@ -0,0 +1,62 @@
<!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 du paiement 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">Confirmation du paiement de votre commande</h2>
<h3 id="commande">N&deg; {$order_ref}</h3>
</div>
<p id="liencompte">
Le suivi de votre commande est disponible dans la rubrique mon compte sur
<a href="{config key="url_site"}">{config key="url_site"}</a>
</p>
<p>Merci pour votre achat !</p>
<p>L'équipe {config key="store_name"}</p>
</div>
</body>
</html>

View File

@@ -0,0 +1,9 @@
Cher client,
Ce message confirme le paiement de votre commande numero {$order_ref} via Payzen sur notre boutique.
Votre facture est maintenant disponible dans votre compte client à l'adresse {config key="url_site"}
Merci encore pour votre achat !
L'équipe {config key="store_name"}

View File

@@ -0,0 +1,12 @@
<?php
return array(
'Dear customer' => 'Dear customer',
'Payment of your order %ref' => 'Payment of your order %ref',
'Thank you again for your purchase.' => 'Thank you again for your purchase.',
'The %store_name team.' => 'The %store_name team.',
'The payment of your order %ref with SIPS Atos is confirmed' => 'The payment of your order %ref with SIPS Atos is confirmed',
'This is a confirmation of the payment of your order %ref with SIPS-Atos on our shop.' => 'This is a confirmation of the payment of your order %ref with SIPS-Atos on our shop.',
'View this order in your account at %shop_name' => 'View this order in your account at %shop_name',
'Your invoice is now available in your customer account at %url.' => 'Your invoice is now available in your customer account at %url.',
);

View File

@@ -0,0 +1,12 @@
<?php
return array(
'Dear customer' => 'Cher client',
'Payment of your order %ref' => 'Paiement de votre commande %ref',
'Thank you again for your purchase.' => 'Merci encore pour votre commande.',
'The %store_name team.' => 'L\'équipe %store_name',
'The payment of your order %ref with SIPS Atos is confirmed' => 'Le paiement de votre commande %ref avec SIPS Atos est confirmé.',
'This is a confirmation of the payment of your order %ref with SIPS-Atos on our shop.' => 'Ce message confirme le paiement de votre commande %ref avec SIPS Atos dans notre boutique.',
'View this order in your account at %shop_name' => 'Les détails de cette commande sont disponibles dans votre compte client sur %shop_name',
'Your invoice is now available in your customer account at %url.' => 'Les détails de cette commande sont disponibles dans votre compte client sur %url',
);

View File

@@ -0,0 +1,44 @@
<?php
return array(
'(Previous log is in %file file.)\n' => '(Previous log is in %file file.)\n',
'ATOS certificate content' => 'ATOS certificate content',
'Allowed IPs in test mode' => 'Allowed IPs in test mode',
'Atos configuration' => 'Atos configuration',
'Atos payment module is nort properly configured. Please check module configuration in your back-office.' => 'Atos payment module is nort properly configured. Please check module configuration in your back-office.',
'Atos platform request processing terminated.' => 'Atos platform request processing terminated.',
'Atos-SIPS platform request received.' => 'Atos-SIPS platform request received.',
'Cannot find an order for transaction ID "%trans"' => 'Cannot find an order for transaction ID "%trans"',
'Cannot validate order. Response code is %resp' => 'Cannot validate order. Response code is %resp',
'Empty response recevied from Atos binary "%path". Please check path and permissions.' => 'Empty response recevied from Atos binary "%path". Please check path and permissions.',
'Error %code while processing response, with message %message' => 'Error %code while processing response, with message %message',
'Failed to read the %file file. Please check file and directory permissions.' => 'Failed to read the %file file. Please check file and directory permissions.',
'Failed to write certificate data in file \'%file\'. Please check file permission' => 'Failed to write certificate data in file \'%file\'. Please check file permission',
'File %file must be writable, please check Atos/Config directory permissions.' => 'File %file must be writable, please check Atos/Config directory permissions.',
'Got empty response from executable %binary, check path and permissions' => 'Got empty response from executable %binary, check path and permissions',
'If checked, a payment confirmation e-mail is sent to the customer.' => 'If checked, a payment confirmation e-mail is sent to the customer.',
'If checked, the order confirmation message is sent to the customer only when the payment is successful. The order notification is always sent to the shop administrator' => 'If checked, the order confirmation message is sent to the customer only when the payment is successful. The order notification is always sent to the shop administrator',
'List of IP addresses allowed to use this payment on the front-office when in test mode (your current IP is %ip). One address per line' => 'List of IP addresses allowed to use this payment on the front-office when in test mode (your current IP is %ip). One address per line',
'Maximum order total' => 'Maximum order total',
'Maximum order total in the default currency for which this payment method is available. Enter 0 for no maximum' => 'Maximum order total in the default currency for which this payment method is available. Enter 0 for no maximum',
'Minimum order total' => 'Minimum order total',
'Minimum order total in the default currency for which this payment method is available. Enter 0 for no minimum' => 'Minimum order total in the default currency for which this payment method is available. Enter 0 for no minimum',
'Operation Mode' => 'Operation Mode',
'Order ID %id is confirmed.' => 'Order ID %id is confirmed.',
'Please paste here the certificate downloaded from the Atos SIPS platform' => 'Please paste here the certificate downloaded from the Atos SIPS platform',
'Production' => 'Production',
'Request binary not found in "%path"' => 'Request binary not found in "%path"',
'Request does not contains any data' => 'Request does not contains any data',
'Response parameters : %resp' => 'Response parameters : %resp',
'Response request not found in %response' => 'Response request not found in %response',
'Send a payment confirmation e-mail' => 'Send a payment confirmation e-mail',
'Send order confirmation on payment success' => 'Send order confirmation on payment success',
'Shop Merchant ID' => 'Shop Merchant ID',
'Test' => 'Test',
'Test or production mode' => 'Test or production mode',
'The \'%file\' should be executable. Please check file permission' => 'The \'%file\' should be executable. Please check file permission',
'The log file \'%log\' does not exists yet.' => 'The log file \'%log\' does not exists yet.',
'The log file is currently empty.' => 'The log file is currently empty.',
'User canceled payment of order %id' => 'User canceled payment of order ID %id',
'you cancel the payment' => 'you cancel the payment',
);

View File

@@ -0,0 +1,44 @@
<?php
return array(
'(Previous log is in %file file.)\n' => '(L\'historique précédent se trouve dans n %file file.)\n',
'ATOS certificate content' => 'Certificat ATOS',
'Allowed IPs in test mode' => 'Adresse IP autorisées en phase de test',
'Atos configuration' => 'Configuration ATOS-SIPS',
'Atos payment module is nort properly configured. Please check module configuration in your back-office.' => 'Le module de paiement Atos n\'est pas correctement configuré. Merci de vérifier la configuration dans votre back-office.',
'Atos platform request processing terminated.' => 'Traitemenr de la requête ATOS terminé.',
'Atos-SIPS platform request received.' => 'Réception d\'une requête ATOS',
'Cannot find an order for transaction ID "%trans"' => 'Aucune commande ne correspond à l\'ID de transaction "%trans"',
'Cannot validate order. Response code is %resp' => 'La commande ne peut être validée. Le code de réponse est %resp',
'Empty response recevied from Atos binary "%path". Please check path and permissions.' => 'Le binaire Atos %path a retourné une réponse vide. Vérifiez que ce fichier est exécutable.',
'Error %code while processing response, with message %message' => 'Erreur %code lors du traitement de la réponse, avec le message %message',
'Failed to read the %file file. Please check file and directory permissions.' => 'Impossible de lire le fichier %file. Vérifier que le fichier existe et est est accessible en lecture.',
'Failed to write certificate data in file \'%file\'. Please check file permission' => 'L\'écriture des données du certificat dans le fichier %file a échoué. Vérifier que le fichier est accessible en écriture.',
'File %file must be writable, please check Atos/Config directory permissions.' => 'Le fichier %file doit être accessible en écriture, merci de vérifier qu\'il possède les permissions nécessaires.',
'Got empty response from executable %binary, check path and permissions' => 'L\'executable %binary a retourné une réponse vide. Vérifier les permissions du fichier.',
'If checked, a payment confirmation e-mail is sent to the customer.' => 'Si cette case est cochée, un mail de confirmation de paiement sera envoyé au client.',
'If checked, the order confirmation message is sent to the customer only when the payment is successful. The order notification is always sent to the shop administrator' => 'Si cette case est cochée, le mail de confirmation de commande sera envoyé au client seulement si son paiement est validé.',
'List of IP addresses allowed to use this payment on the front-office when in test mode (your current IP is %ip). One address per line' => 'Liste des adresse IP qui pourront choisir ce module de paiement en front-office pendant la phase de test (votre IP est %ip). Une adresse par ligne.',
'Maximum order total' => 'Montant de commande maximum',
'Maximum order total in the default currency for which this payment method is available. Enter 0 for no maximum' => 'Montant maximum dans la devise par défaut pour proposer ce moyen de paiement. Laisser 0 pour ne pas fixer de maximum.',
'Minimum order total' => 'Montant minimum de commande',
'Minimum order total in the default currency for which this payment method is available. Enter 0 for no minimum' => 'Montant minimum dans la devise par défaut pour proposer ce moyen de paiement. Laisser 0 pour ne pas fixer de minimum.',
'Operation Mode' => 'Mode de fonctionnement',
'Order ID %id is confirmed.' => 'La commande ID %id est confirmée',
'Please paste here the certificate downloaded from the Atos SIPS platform' => 'Vous pouvez coller ici le texte du certificat téléhergé depuis la plate-forme ATOS',
'Production' => 'Production',
'Request binary not found in "%path"' => 'le binaire request n\'est pas trouvé dans "%path"',
'Request does not contains any data' => 'La requête ne contient aucune donnée',
'Response parameters : %resp' => 'Paramètres de la réponse : %resp',
'Response request not found in %response' => 'La réponse ATOS n\'a pas été trouvée dans %response',
'Send a payment confirmation e-mail' => 'Envoyer une confirmation de paiement',
'Send order confirmation on payment success' => 'Confirmation de commande si le paiement réussit ',
'Shop Merchant ID' => 'Identifiant Marchand',
'Test' => 'Test',
'Test or production mode' => 'Test ou production',
'The \'%file\' should be executable. Please check file permission' => 'Le fichier %file doit être exécutable. Vérifier que ce fichier a les permission nécessaires/.',
'The log file \'%log\' does not exists yet.' => 'Le fichier de log %log n\'existe pas encore.',
'The log file is currently empty.' => 'Le fichier de log est vide',
'User canceled payment of order %id' => 'Le client a annulé le paiement de la commande ID %id',
'you cancel the payment' => 'Vous avez annulé le paiement',
);