| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <?php
- return [
- 'customer' => [
- 'my-reward-points' => 'My Reward Points',
- 'available-points' => 'Available Points',
- 'daily-sign-in' => 'Daily Sign In',
- 'sign-in-now' => 'Sign In Now',
- 'signed-today' => 'Signed In Today',
- 'sign-in-success' => 'Sign in successful! You earned',
- 'sign-in-failed' => 'Failed to sign in',
- 'sign-in-error' => 'An error occurred during sign in',
- 'current-streak' => 'Current Streak',
- 'days' => 'days',
- 'points-history' => 'Points History',
- 'date' => 'Date',
- 'type' => 'Type',
- 'description' => 'Description',
- 'points' => 'Points',
- 'balance' => 'Balance',
- 'status' => 'Status',
- 'order' => 'Order',
- 'registration' => 'Registration',
- 'review' => 'Review',
- 'sign-in' => 'Sign In',
- 'referral' => 'Referral',
- 'birthday' => 'Birthday',
- 'other' => 'Other',
- 'pending' => 'Pending',
- 'completed' => 'Completed',
- 'cancelled' => 'Cancelled',
- 'expired' => 'Expired',
- 'no-history' => 'No points history yet',
- ],
- 'admin' => [
- 'reward-points' => 'Reward Points',
- 'rules' => 'Rules',
- 'customers' => 'Customers',
- 'reports' => 'Reports',
- 'add-rule' => 'Add Rule',
- 'transactions' => 'Transactions',
- 'earned-transactions' => 'Earned Transactions',
- 'view-all-transactions' => 'All Transactions',
- 'view-earned-only' => 'Earned Only',
- 'total' => 'Total',
- 'edit-rule' => 'Edit Rule',
- 'delete-rule' => 'Delete Rule',
- 'rule-name' => 'Rule Name',
- 'transaction-type' => 'Transaction Type',
- 'status' => 'Status',
- 'active' => 'Active',
- 'inactive' => 'Inactive',
- 'actions' => 'Actions',
- 'edit' => 'Edit',
- 'delete' => 'Delete',
- 'create-rule' => 'Create Rule',
- 'update-rule' => 'Update Rule',
- 'back' => 'Back',
- 'save' => 'Save',
- 'cancel' => 'Cancel',
- 'customer-list' => 'Customer List',
- 'customer-name' => 'Customer Name',
- 'email' => 'Email',
- 'points-balance' => 'Points Balance',
- 'add-points' => 'Add Points',
- 'deduct-points' => 'Deduct Points',
- 'reason' => 'Reason',
- 'total-points' => 'Total Points',
- 'total-customers' => 'Total Customers',
- 'average-points' => 'Average Points',
- 'export' => 'Export',
- 'bulk-update' => 'Bulk Update',
- 'date-range' => 'Date Range',
- 'start-date' => 'Start Date',
- 'end-date' => 'End Date',
- 'points-earned' => 'Points Earned',
- 'points-redeemed' => 'Points Redeemed',
- 'title' => 'Customer Reward Points',
- 'details-title' => ':name\'s Reward Points Details',
- 'customer-info' => 'Customer Information',
- 'points-history' => 'Points History',
- 'adjust-points' => 'Adjust Points',
- 'type' => 'Type',
- 'amount' => 'Amount',
- 'balance' => 'Balance',
- 'date' => 'Date',
- 'description' => 'Description',
- 'customer-id' => 'Customer ID',
- 'name' => 'Name',
- 'view' => 'View',
- 'no-customers-found' => 'No customers found',
- 'no-reward-points-records' => 'No reward points records available',
- // 交易类型映射(使用字符串而不是数组)
- 'transaction-types' => [
- 'order' => 'Order',
- 'registration' => 'Registration',
- 'review' => 'Product Review',
- 'sign-in' => 'Daily Sign In',
- 'referral' => 'Referral',
- 'birthday' => 'Birthday',
- 'share' => 'Share',
- 'subscribe' => 'Subscribe',
- ],
- 'adjust-points-by-identifier' => 'Adjust Points by Email or ID',
- 'identifier' => 'Identifier',
- 'email-or-id' => 'Email or ID',
- 'enter-email-or-id' => 'Enter customer email or ID',
- 'enter-points' => 'Enter points amount',
- 'enter-reason' => 'Enter reason for adjustment',
- 'submit' => 'Submit',
- 'action' => 'Action',
- // 总交易数
- 'total-transactions' => 'Total Transactions',
- 'total-points-earned' => 'Total Points Earned',
- 'total-points-redeemed' => 'Total Points Redeemed',
- // 搜索相关
- 'search' => 'Search',
- 'reset' => 'Reset',
- 'customer-email' => 'Customer Email',
- 'amount-type' => 'Amount Type',
- 'earned' => 'Earned',
- 'redeemed' => 'Redeemed',
- 'all' => 'All',
- 'all-types' => 'All Types',
- 'admin-adjustment' => 'Admin Adjustment',
- 'admin-action' => 'Admin Action',
- // 表格表头
- 'id' => 'ID',
- 'customer' => 'Customer',
- 'amount' => 'Amount',
- 'date' => 'Date',
- 'description' => 'Description',
- 'balance' => 'Balance',
- // 提示信息
- 'no-transactions-found' => 'No transactions found',
- 'try-adjusting-filters' => 'Try adjusting your filters',
- // 其他
- 'points' => 'Points',
- 'transactions-count' => 'Transactions',
- ],
- 'validation' => [
- 'points-required' => 'Points are required',
- 'points-invalid' => 'Invalid points amount',
- 'customer-not-found' => 'Customer not found',
- 'rule-not-found' => 'Rule not found',
- ],
- ];
|