Blame view

src/views/scm/reserveConfirmLang.js 1.63 KB
9d4e862a   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
  export const messages = {
    en: {
      reserveConfirm: {
        scanPlaceholder: 'Please scan the QR code',
        confirm: 'Confirm',
        result: 'Result',
        confirmTime: 'Confirm Time',
        goodsService: 'Goods/Service',
        quantity: 'Quantity',
        appointmentDate: 'Appointment Date',
        appointmentHour: 'Appointment Hour',
        appointmentPerson: 'Appointment Person',
        appointmentPhone: 'Appointment Phone',
        remark: 'Remark',
        searchCondition: 'Search Condition',
        personNamePlaceholder: 'Please enter person name',
        personTelPlaceholder: 'Please enter phone number',
        appointmentTimePlaceholder: 'Please select appointment time',
        search: 'Search',
        orderId: 'Order ID',
        scanWarning: 'Please scan the QR code',
        confirmSuccess: 'Confirm success',
        fetchError: 'Failed to fetch data'
      }
    },
    zh: {
      reserveConfirm: {
        scanPlaceholder: '请扫码枪扫码核销',
        confirm: '核销',
        result: '核销结果',
        confirmTime: '核销时间',
        goodsService: '商品/服务',
        quantity: '核销数量',
        appointmentDate: '预约日期',
        appointmentHour: '预约小时',
        appointmentPerson: '预约人',
        appointmentPhone: '预约电话',
        remark: '备注',
        searchCondition: '查询条件',
        personNamePlaceholder: '请输入预约人',
        personTelPlaceholder: '请输入预约电话',
        appointmentTimePlaceholder: '请选择预约时间',
        search: '查询',
        orderId: '核销订单',
        scanWarning: '请扫码',
        confirmSuccess: '核销成功',
        fetchError: '获取数据失败'
      }
    }
  }