Blame view

src/views/scm/couponPropertyUserManageLang.js 2.12 KB
f52d2b06   wuxw   积分功能开发中
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
  export const messages = {
    en: {
      couponPropertyUserManage: {
        search: {
          title: 'Search Conditions',
          couponId: 'Coupon ID',
          couponName: 'Coupon Name',
          validityDay: 'Validity Day',
          userName: 'User Name',
          tel: 'Phone Number',
          toType: 'Usage',
          selectToType: 'Select Usage',
          shopping: 'Shopping',
          payment: 'Payment',
          repair: 'Repair Coupon',
          parking: 'Parking Coupon',
          state: 'Status',
          selectState: 'Select Status',
          unused: 'Unused',
          used: 'Used'
        },
        list: {
          title: 'Owner Coupons'
        },
        table: {
          couponId: 'ID',
          couponName: 'Coupon Name',
          value: 'Face Value',
          validityDay: 'Validity',
          userName: 'User Name',
          tel: 'Phone',
          toType: 'Usage',
          quantity: 'Quantity',
          sheet: 'Sheet',
          state: 'Status',
          startTime: 'Effective Time',
          unused: 'Unused',
          used: 'Used'
        },
        fetchError: 'Failed to fetch coupon data'
      }
    },
    zh: {
      couponPropertyUserManage: {
        search: {
          title: '查询条件',
          couponId: '优惠券编号',
          couponName: '优惠券名称',
          validityDay: '有效期',
          userName: '用户名称',
          tel: '手机号',
          toType: '用途',
          selectToType: '选择用途',
          shopping: '购物',
          payment: '缴费',
          repair: '维修劵',
          parking: '停车劵',
          state: '状态',
          selectState: '请选择状态',
          unused: '未使用',
          used: '已使用'
        },
        list: {
          title: '业主优惠券'
        },
        table: {
          couponId: '编号',
          couponName: '优惠券名称',
          value: '面值',
          validityDay: '有效期',
          userName: '用户名称',
          tel: '手机号',
          toType: '用途',
          quantity: '数量',
          sheet: '张',
          state: '状态',
          startTime: '生效时间',
          unused: '未使用',
          used: '已使用'
        },
        fetchError: '获取优惠券数据失败'
      }
    }
  }