32 lines
873 B
PHP
32 lines
873 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',
|
|
'home' => 'home',
|
|
'submit' => 'submit',
|
|
'cancel' => 'cancel',
|
|
'confirm' => 'confirm',
|
|
'no' => 'no',
|
|
'yes' => 'yes',
|
|
'delete' => 'delete',
|
|
'sign_out' => 'sign out',
|
|
];
|