26 lines
898 B
PHP
26 lines
898 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 [
|
|
'index' => 'Kundengruppe',
|
|
'consumption_limit' => 'Verbrauchslimit',
|
|
'discount_rate' => 'Rabattsatz',
|
|
'reward_points_factor' => 'Belohnungspunktefaktor',
|
|
'integral_factor' => 'Integralkoeffizient verwenden',
|
|
|
|
'customer_groups_index' => 'Kundengruppenliste',
|
|
'customer_groups_create' => 'Kundengruppen erstellen',
|
|
'customer_groups_show' => 'Kundengruppendetails',
|
|
'customer_groups_update' => 'Kundengruppen aktualisieren',
|
|
'customer_groups_delete' => 'Kundengruppe löschen',
|
|
'default_cannot_delete' => 'Standardkundengruppe kann nicht gelöscht werden',
|
|
];
|