21 lines
579 B
PHP
21 lines
579 B
PHP
<?php
|
|
/**
|
|
* currency.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author TL <mengwb@guangda.work>
|
|
* @created 2022-07-28 17:21:38
|
|
* @modified 2022-07-28 17:21:38
|
|
*/
|
|
return [
|
|
'decimal_point' => '.',
|
|
'thousand_point' => ',',
|
|
'currencies_index' => 'Index',
|
|
'currencies_create' => 'Create',
|
|
'currencies_show' => 'Detail',
|
|
'currencies_update' => 'Edit',
|
|
'currencies_delete' => 'Delete',
|
|
'order_exist' => 'This currency has orders in use and cannot be deleted!',
|
|
];
|