25 lines
626 B
PHP
25 lines
626 B
PHP
<?php
|
|
/**
|
|
* currency.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author TL <mengwb@opencart.cn>
|
|
* @created 2022-07-28 17:21:38
|
|
* @modified 2022-07-28 17:21:38
|
|
*/
|
|
return [
|
|
'error_required' => '请填写 :name',
|
|
'unauthenticated' => '请先登录',
|
|
'success' => '成功',
|
|
'created_success' => '创建成功!',
|
|
'deleted_success' => '删除成功!',
|
|
'restored_success' => '恢复成功!',
|
|
'updated_success' => '更新成功!',
|
|
'get_success' => '获取成功!',
|
|
'enable' => '启用',
|
|
'disable' => '禁用',
|
|
];
|
|
|
|
|