65 lines
1.8 KiB
PHP
65 lines
1.8 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' => 'Please fill out the :name', // 这个有用别删了,:name 是一个变量
|
||
'error_required_name' => 'Please fill in your name',
|
||
'error_required_email' => 'Please enter your email',
|
||
'unauthenticated' => 'Please login first',
|
||
'success' => 'Success',
|
||
'no_data' => 'No data~',
|
||
'created_success' => 'Created Successfully!',
|
||
'deleted_success' => 'Deleted Successfully!',
|
||
'restored_success' => 'Restore Successfully!',
|
||
'updated_success' => 'Updated Successfully!',
|
||
'edit_success' => 'Modify Success!',
|
||
'get_success' => 'Get Successfully!',
|
||
'all' => 'All',
|
||
'status' => 'Status',
|
||
'enable' => 'Enable',
|
||
'disable' => 'Disable',
|
||
'enabled' => 'Enabled',
|
||
'disabled' => 'Disabled',
|
||
'home' => 'Home',
|
||
'submit' => 'Submit',
|
||
'save' => 'Save',
|
||
'cancel' => 'Cancel',
|
||
'confirm' => 'Confirm',
|
||
'no' => 'No',
|
||
'yes' => 'Yes',
|
||
'delete' => 'Delete',
|
||
'sign_out' => 'Sign Out',
|
||
'contact_us' => 'Contact us',
|
||
'input' => 'Type your search here',
|
||
'filter' => 'Filter',
|
||
'reset' => 'Reset',
|
||
'export' => 'Export',
|
||
'edit' => 'Edit',
|
||
'action' => 'Action',
|
||
'add' => 'Add',
|
||
'please_choose' => 'Please Choose',
|
||
'recommend_size' => 'Recommend Size',
|
||
'pick_datetime' => 'Pick Datetime',
|
||
|
||
'id' => 'ID',
|
||
'created_at' => 'Created At',
|
||
'updated_at' => 'Updated At',
|
||
'sort_order' => 'Sort Order',
|
||
|
||
'order' => [
|
||
'unpaid' => 'Unpaid',
|
||
'paid' => 'Paid',
|
||
'shipped' => 'Shipped',
|
||
'completed' => 'Completed',
|
||
'cancelled' => 'Cancelled',
|
||
],
|
||
];
|