| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- return [
- 'admin' => [
- 'title' => '礼品卡管理',
- 'datagrid' => [
- 'id' => 'ID',
- 'giftcard-number' => '礼品卡号',
- 'giftcard-amount' => '卡金额',
- 'used-amount' => '已用金额',
- 'remaining-amount' => '剩余金额',
- 'customer-id' => '客户 ID',
- 'expiration-date' => '过期日期',
- 'status' => '状态',
- 'created-at' => '创建时间',
- 'edit' => '编辑',
- 'delete' => '删除',
- 'delete-success' => '选中的礼品卡删除成功',
- ],
- 'create' => [
- 'title' => '创建礼品卡',
- 'save-btn' => '保存',
- 'back-btn' => '返回',
- 'general' => '常规信息',
- 'giftcard-number' => '礼品卡号',
- 'giftcard-amount' => '卡金额',
- 'customer-id' => '客户 ID',
- 'expirationdate' => '过期日期',
- 'giftcard-status' => '状态',
- 'unused' => '未使用',
- 'used' => '已使用',
- ],
- 'edit' => [
- 'title' => '编辑礼品卡',
- 'save-btn' => '保存',
- 'back-btn' => '返回',
- ],
- ],
- 'giftcard' => [
- 'giftcard_amount' => 'Giftcard Amount',
- 'applied' => 'Giftcard Applied',
- 'discount' => 'Giftcard Discount',
- 'apply' => 'Apply Giftcard',
- 'enter-your-code' => 'Enter your code',
- 'remove' => 'Remove Giftcard',
- 'remaining_giftcard_amount' => 'Remaining Amount',
- 'giftcard_number' => 'Giftcard Number',
- ]
- ];
|