order.php
1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
// Heading
$_['heading_title'] = 'Votre historique de commande';
// Text
$_['text_account'] = 'Compte';
$_['text_order'] = 'Information commande';
$_['text_order_detail'] = 'Détail de la commande';
$_['text_invoice_no'] = 'Facture N° :';
$_['text_order_id'] = 'Commande N° :';
$_['text_date_added'] = 'Date d’ajout :';
$_['text_shipping_address'] = 'Adresse de livraison';
$_['text_shipping_method'] = 'Mode de livraison :';
$_['text_payment_address'] = 'Adresse de paiement';
$_['text_payment_method'] = 'Mode de paiement :';
$_['text_comment'] = 'Commentaires commande';
$_['text_history'] = 'Historique de commande';
$_['text_success'] = 'Félicitations, vous avez ajouté avec succès les produits de la commande N° #%s à votre panier !';
$_['text_empty'] = 'Vous n’avez aucune commande précédente';
$_['text_error'] = 'La commande que vous désirez n’a pas été trouvée !';
// Column
$_['column_order_id'] = 'Référence commande';
$_['column_product'] = 'Nombre de produits';
$_['column_customer'] = 'Client';
$_['column_name'] = 'Nom du produit';
$_['column_model'] = 'Modèle';
$_['column_quantity'] = 'Quantité';
$_['column_price'] = 'Prix';
$_['column_total'] = 'Total';
$_['column_action'] = 'Action';
$_['column_date_added'] = 'Date d’ajout';
$_['column_status'] = 'État';
$_['column_comment'] = 'Commentaires';
// Error
$_['error_reorder'] = '%s n'est actuellement pas disponible pour être réorganisé.';
?>