app.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. return [
  3. 'admin' => [
  4. 'title' => '礼品卡管理',
  5. 'datagrid' => [
  6. 'id' => 'ID',
  7. 'giftcard-number' => '礼品卡号',
  8. 'giftcard-amount' => '卡金额',
  9. 'used-amount' => '已用金额',
  10. 'remaining-amount' => '剩余金额',
  11. 'customer-id' => '客户 ID',
  12. 'expiration-date' => '过期日期',
  13. 'status' => '状态',
  14. 'created-at' => '创建时间',
  15. 'edit' => '编辑',
  16. 'delete' => '删除',
  17. 'delete-success' => '选中的礼品卡删除成功',
  18. ],
  19. 'create' => [
  20. 'title' => '创建礼品卡',
  21. 'save-btn' => '保存',
  22. 'back-btn' => '返回',
  23. 'general' => '常规信息',
  24. 'giftcard-number' => '礼品卡号',
  25. 'giftcard-amount' => '卡金额',
  26. 'customer-id' => '客户 ID',
  27. 'expirationdate' => '过期日期',
  28. 'giftcard-status' => '状态',
  29. 'unused' => '未使用',
  30. 'used' => '已使用',
  31. ],
  32. 'edit' => [
  33. 'title' => '编辑礼品卡',
  34. 'save-btn' => '保存',
  35. 'back-btn' => '返回',
  36. ],
  37. ],
  38. 'giftcard' => [
  39. 'giftcard_amount' => 'Giftcard Amount',
  40. 'applied' => 'Giftcard Applied',
  41. 'discount' => 'Giftcard Discount',
  42. 'apply' => 'Apply Giftcard',
  43. 'enter-your-code' => 'Enter your code',
  44. 'remove' => 'Remove Giftcard',
  45. 'remaining_giftcard_amount' => 'Remaining Amount',
  46. 'giftcard_number' => 'Giftcard Number',
  47. ]
  48. ];