43 lines
1.2 KiB
PHP
43 lines
1.2 KiB
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_name' => 'Please fill in your name',
|
|
'error_required_email' => 'Please enter your email',
|
|
'unauthenticated' => 'Please login first',
|
|
'success' => 'Success',
|
|
'created_success' => 'Created Successfully!',
|
|
'deleted_success' => 'Deleted Successfully!',
|
|
'restored_success' => 'Restore Successfully!',
|
|
'updated_success' => 'Updated Successfully!',
|
|
'edit_success' => 'Modify Success!',
|
|
'get_success' => 'Get Successfully!',
|
|
'enable' => 'Enable',
|
|
'disable' => 'Disable',
|
|
'home' => 'Home',
|
|
'submit' => 'Submit',
|
|
'save' => 'Save',
|
|
'cancel' => 'Cancel',
|
|
'confirm' => 'Confirm',
|
|
'no' => 'No',
|
|
'yes' => 'Yes',
|
|
'delete' => 'Delete',
|
|
'sign_out' => 'Sign Out',
|
|
'contact_us' => 'Contact us',
|
|
|
|
'order' => [
|
|
'unpaid' => 'Unpaid',
|
|
'paid' => 'Paid',
|
|
'shipped' => 'Shipped',
|
|
'completed' => 'Completed',
|
|
],
|
|
];
|