24 lines
677 B
PHP
24 lines
677 B
PHP
<?php
|
|
/**
|
|
* common.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author TL <mengwb@opencart.cn>
|
|
* @created 2022-08-16 18:16:09
|
|
* @modified 2022-08-16 18:16:09
|
|
*/
|
|
|
|
return [
|
|
'error_required' => 'Please fill out the :name',
|
|
'unauthenticated' => 'Please login first',
|
|
'success' => 'Success',
|
|
'created_success' => 'Created Successfully!',
|
|
'deleted_success' => 'Deleted Successfully!',
|
|
'restored_success' => 'Restore Successfully!',
|
|
'updated_success' => 'Updated Successfully!',
|
|
'get_success' => 'Get Successfully!',
|
|
'enable' => 'Enable',
|
|
'disable' => 'Disable',
|
|
];
|