英文词条

This commit is contained in:
sl 2022-08-19 18:41:37 +08:00
parent 3aa20d084a
commit 2e989a3382
13 changed files with 381 additions and 43 deletions

View File

@ -20,4 +20,12 @@ return [
'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',
];

View File

@ -10,20 +10,121 @@
*/
return [
'login' => 'Login',
'new_account' => 'New Account',
'index' => 'Account',
'index' => 'account',
'revise_info' => 'modify information',
'collect' => 'collect',
'coupon' => 'coupon',
'my_order' => 'my order',
'orders' => 'all orders',
'pending_payment' => 'pending payment',
'pending_send' => 'to be delivered',
'pending_receipt' => 'pending receipt',
'after_sales' => 'after sales',
'no_order' => "You don't have an order yet!",
'to_buy' => 'to place an order',
'order_number' => 'order number',
'order_time' => 'order time',
'state' => 'state',
'amount' => 'amount',
'check_details' => 'check details',
'edit' => [
'index' => 'edit',
'modify_avatar' => 'modify avatar',
'suggest' => 'Upload a JPG or PNG image. 300 x 300 is recommended.',
'name' => 'name',
'email' => 'email',
'crop' => 'crop',
],
'wishlist' => [
'index' => 'Wishlist',
'index' => 'wishlist',
'product' => 'product',
'price' => 'price',
'check_details' => 'check details',
],
'order' => [
'index' => 'Order List',
'completed' => 'Completed Order',
'index' => 'order',
'completed' => 'completed',
'order_details' => 'order details',
'amount' => 'amount',
'state' => 'state',
'operate' => 'operate',
'order_number' => 'order number',
'check' => 'check',
'order_info' => [
'index' => 'order info',
'order_details' => 'order details',
'to_pay' => 'to pay',
'confirm_receipt' => 'confirm the receipt of goods',
'order_number' => 'order number',
'order_date' => 'order date',
'state' => 'state',
'order_amount' => 'order amount',
'order_items' => 'order items',
'apply_after_sales' => 'apply for after-sales',
'order_total' => 'order total',
'logistics_status' => 'logistics status',
'order_status' => 'order status',
'remark' => 'remark',
'update_time' => 'update time',
],
'order_success' => [
'order_success' => 'Congratulations, the order was successfully generated!',
'order_number' => 'order number',
'amounts_payable' => 'amounts payable ',
'payment_method' => 'payment method ',
'view_order' => 'view order ',
'pay_now' => 'pay now ',
'kind_tips' => 'Reminder: Your order has been successfully generated, please complete the payment as soon as possible~ ',
'also' => 'You can also',
'continue_purchase' => 'continue to purchase',
'contact_customer_service' => 'If you have any questions during the order process, you can contact our customer service staff at any time',
'emaill' => 'email',
'service_hotline' => 'service hotline',
],
],
'addresses' => [
'index' => 'My Addresses'
'index' => 'addresses',
'add_address' => 'add new address',
'default_address' => 'default address',
'delete' => 'delete',
'edit' => 'edit',
'enter_name' => 'Please type in your name',
'enter_phone' => 'Please type your phone number',
'enter_address' => 'Please enter detailed address 1',
'select_province' => 'Please select province',
'enter_city' => 'Please fill in the city',
'confirm_delete' => 'Are you sure you want to delete the address?',
'hint' => 'hint',
],
'rma' => [
'index' => 'rma',
'commodity' => 'commodity',
'quantity' => 'quantity',
'service_type' => 'service type',
'return_reason' => 'reason for return',
'creation_time' => 'creation time',
'operate' => 'operate',
'check' => 'check',
'rma_info' => [
'index' => 'after-sales details',
],
'rma_form' => [
'index' => 'Submit after-sales information',
'service_type' => 'service type',
'return_quantity' => 'return quantity',
'unpacked' => 'unpacked',
'return_reason' => 'reason for return',
'remark' => 'remark',
]
]
];

View File

@ -1,14 +0,0 @@
<?php
/**
* cart.php
*
* @copyright 2022 opencart.cn - All Rights Reserved
* @link http://www.guangdawangluo.com
* @author Edward Yang <yangjin@opencart.cn>
* @created 2022-08-19 14:54:21
* @modified 2022-08-19 14:54:21
*/
return [
'added_to_cart' => 'Added to cart',
];

View File

@ -0,0 +1,32 @@
<?php
/**
* cart.php
*
* @copyright 2022 opencart.cn - All Rights Reserved
* @link http://www.guangdawangluo.com
* @author Edward Yang <yangjin@opencart.cn>
* @created 2022-08-19 14:54:21
* @modified 2022-08-19 14:54:21
*/
return [
'index' => 'cart',
'added_to_cart' => 'added to cart',
'select_all' => 'select all',
'commodity' => 'commodity',
'quantity' => 'quantity',
'subtotal' => 'subtotal',
'operate' => 'operate',
'product_total' => 'product totals',
'all' => 'all',
'selected' => 'selected',
'total_price' => 'total_price',
'to_checkout' => 'to_checkout',
'cart_empty' => 'Your shopping cart is empty',
'go_buy' => 'You can go and see what you want to buy',
'go_shopping' => 'go shopping',
'must_select' => 'Please select at least one product',
'mini' => 'your cart',
'delete' => 'delete',
'check_cart' => 'check the shopping cart',
];

View File

@ -0,0 +1,37 @@
<?php
/**
* common.php
*
* @copyright 2022 opencart.cn - All Rights Reserved
* @link http://www.guangdawangluo.com
* @author Edward Yang <yangjin@opencart.cn>
* @created 2022-08-17 23:10:20
* @modified 2022-08-17 23:10:20
*/
return [
'index' => 'checkouts',
'address' => 'address',
'chosen' => 'chosen',
'edit' => 'edit',
'choose_another_address' => 'Choose another address',
'add_new_address' => 'add new address',
'payment_method' => 'payment method',
'delivery_method' => 'Delivery Method',
'cart_totals' => 'cart totals',
'submit_order' => 'Submit Order',
'enter_name' => 'Please type in your name',
'enter_phone' => 'Please type your phone number',
'enter_address' => 'Please enter detailed address 1',
'select_province' => 'Please select province',
'enter_city' => 'Please fill in the city ',
'check_form' => 'Please check that the form is filled out correctly',
'payment' => [
'index' => 'please pay',
'please_pay' => 'Order submitted successfully, please pay',
'order_number' => 'order number',
'amounts_payable' => 'amounts payable',
'payment_method' => 'payment method',
]
];

View File

@ -0,0 +1,31 @@
<?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 [
'index' => 'forgot password',
'follow_prompt' => 'Please follow the prompts to retrieve your password',
'email_forCode' => 'Please enter your email address to get the verification code',
'enter_password' => 'Please enter a new password',
'email' => 'email',
'email_address' => 'email address',
'verification_code' => 'verification code',
'password' => 'password',
'confirm_password' => 'confirm password',
'send_code' => 'send code',
'to_back' => 'Back to previous step',
'enter_password' => 'Please enter password',
'enter_email' => 'please input your email',
'please_confirm' => 'Please confirm your password',
'password_err' => 'The passwords entered twice do not match!',
'email_err' => 'Please enter a valid email address!',
'enter_code' => 'please enter verification code',
];

View File

@ -11,25 +11,25 @@
*/
return [
'index' => '用户登录与注册',
'Home' => '首页',
'Library' => '个人中心',
'Login' => '登录',
'Already' => '已经是我们的客户了?',
'description' => '已经是我们的客户了?',
'email' => '邮件',
'email_address' => '邮件地址',
'password' => '密码',
'forget_password' => '忘记密码',
'login' => '登录',
'new' => '新账号',
'not_Already' => '还不是我们的注册客户?',
'confirm_password' => '确认密码',
'register' => '注册',
'enter_password' => '请输入密码',
'enter_email' => '请输入邮箱',
'please_confirm' => '请确认密码',
'password_err' => '两次输入密码不一致!',
'email_err' => '请输入正确邮箱地址!',
'check_form' => '请检查表单是否填写正确',
'index' => 'User login and registration',
'home' => 'home',
'library' => 'library',
'login' => 'login',
'already' => 'Already our customer?',
'description' => 'Already our customer?',
'email' => 'email',
'email_address' => 'email address',
'password' => 'password',
'forget_password' => 'forget password',
'login' => 'login',
'new' => 'new account',
'not_already' => 'Not yet our registered customer?',
'confirm_password' => 'confirm password',
'register' => 'register',
'enter_password' => 'Please enter password',
'enter_email' => 'please input your email',
'please_confirm' => 'Please confirm your password',
'password_err' => 'The passwords entered twice do not match!',
'email_err' => 'Please enter a valid email address!',
'check_form' => 'Please check that the form is filled out correctly',
];

View File

@ -10,5 +10,12 @@
*/
return [
'search' => 'Search',
'search' => 'search',
'add_to_favorites' => 'add to favorites',
'add_to_cart' => 'add to Shopping Cart',
'buy_now' => 'buy now',
'product_details' => 'product details',
'in_stock' => 'In stock',
'out_stock' => 'Out stock',
'model' => 'model',
];

View File

@ -0,0 +1,18 @@
<?php
/**
* products.php
*
* @copyright 2022 opencart.cn - All Rights Reserved
* @link http://www.guangdawangluo.com
* @author Edward Yang <yangjin@opencart.cn>
* @created 2022-08-18 08:31:03
* @modified 2022-08-18 08:31:03
*/
return [
'index' => 'steps',
'cart' => 'cart',
'checkout' => 'checkouts',
'submitted_successfully' => 'submitted successfully',
'payment' => 'payment',
];

View File

@ -0,0 +1,32 @@
<?php
/**
* common.php
*
* @copyright 2022 opencart.cn - All Rights Reserved
* @link http://www.guangdawangluo.com
* @author Edward Yang <yangjin@opencart.cn>
* @created 2022-08-17 23:10:20
* @modified 2022-08-17 23:10:20
*/
return [
'index' => '购物车',
'added_to_cart' => '已加入购物车',
'select_all' => '全选',
'commodity' => '商品',
'quantity' => '数量',
'subtotal' => '小计',
'operate' => '操作',
'product_total' => '商品总计',
'all' => '全部',
'selected' => '已选',
'total_price' => '总价',
'to_checkout' => '去结账',
'cart_empty' => '您的购物车是空的',
'go_buy' => '您可以去看看有哪些想买的',
'go_shopping' => '去逛逛',
'must_select' => '请选择至少一个商品',
'mini' => '您的购物车',
'delete' => '删除',
'check_cart' => '查看购物车',
];

View File

@ -0,0 +1,37 @@
<?php
/**
* common.php
*
* @copyright 2022 opencart.cn - All Rights Reserved
* @link http://www.guangdawangluo.com
* @author Edward Yang <yangjin@opencart.cn>
* @created 2022-08-17 23:10:20
* @modified 2022-08-17 23:10:20
*/
return [
'index' => '结账',
'address' => '地址',
'chosen' => '已选择',
'edit' => '编辑',
'choose_another_address' => '选择其他地址',
'add_new_address' => '添加新地址',
'payment_method' => '支付方式',
'delivery_method' => '配送方式',
'cart_totals' => '购物车总数',
'submit_order' => '提交订单',
'enter_name' => '请输入姓名',
'enter_phone' => '请输入联系电话',
'enter_address' => '请输入详细地址 1',
'select_province' => '请选择省份',
'enter_city' => '请填写城市',
'check_form' => '请检查表单是否填写正确',
'payment' => [
'index' => '请付款',
'please_pay' => '订单提交成功,请付款',
'order_number' => '订单编号',
'amounts_payable' => '应付金额',
'payment_method' => '支付方式',
]
];

View File

@ -0,0 +1,31 @@
<?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 [
'index' => '忘记密码',
'follow_prompt' => '请根据提示找回您的密码',
'email_forCode' => '请输入邮箱地址获取验证码',
'enter_password' => '请输入新密码',
'email' => '邮箱',
'email_address' => '邮箱地址',
'verification_code' => '验证码',
'password' => '密码',
'confirm_password' => '确认密码',
'send_code' => '发送验证码',
'to_back' => '返回上一步',
'enter_password' => '请输入密码',
'enter_email' => '请输入邮箱',
'please_confirm' => '请确认密码',
'password_err' => '两次输入密码不一致!',
'email_err' => '请输入正确邮箱地址!',
'enter_code' => '请输入验证码',
];

View File

@ -0,0 +1,18 @@
<?php
/**
* products.php
*
* @copyright 2022 opencart.cn - All Rights Reserved
* @link http://www.guangdawangluo.com
* @author Edward Yang <yangjin@opencart.cn>
* @created 2022-08-18 08:31:03
* @modified 2022-08-18 08:31:03
*/
return [
'index' => '步骤',
'cart' => '购物车',
'checkout' => '结账',
'submitted_successfully' => '提交成功',
'payment' => '付款',
];