26 lines
793 B
PHP
26 lines
793 B
PHP
<?php
|
|
/**
|
|
* order.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-02 14:22:41
|
|
* @modified 2022-08-02 14:22:41
|
|
*/
|
|
|
|
return [
|
|
'list' => 'Liste de commandes',
|
|
|
|
'order_quantity' => 'quantité de commande',
|
|
'order_amount' => 'montant de la commande',
|
|
'orders_index' => 'Liste de commandes',
|
|
'orders_create' => 'Créer une commande',
|
|
'orders_show' => 'détails de la commande',
|
|
'orders_export' => 'commande d\'exportation',
|
|
'orders_update' => 'Mise à jour de la commande',
|
|
'orders_delete' => 'supprimer la commande',
|
|
'orders_update_status' => 'état de mise à jour',
|
|
'error_status' => 'Veuillez sélectionner un statut',
|
|
];
|