27 lines
929 B
PHP
27 lines
929 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',
|
|
'notify' => 'S\'il faut rappeler',
|
|
'orders_delete' => 'supprimer la commande',
|
|
'orders_update_status' => 'état de mise à jour',
|
|
'error_status' => 'Veuillez sélectionner un statut',
|
|
];
|