Blame view

src/views/account/adminAccountDetailLang.js 986 Bytes
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
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
  export const messages = {
    en: {
      adminAccountDetail: {
        title: 'Account Details',
        detailId: 'Detail ID',
        orderId: 'Transaction ID',
        acctName: 'Account Name',
        detailType: 'Detail Type',
        detailType1001: 'Transfer In',
        detailType3003: 'Transfer In Revoked',
        detailTypeOther: 'Transfer Out',
        amount: 'Amount/Points',
        createTime: 'Transaction Time',
        remark: 'Remark',
        noRemark: 'None',
        fetchError: 'Failed to fetch account details'
      }
    },
    zh: {
      adminAccountDetail: {
        title: '账户明细',
        detailId: '明细编号',
        orderId: '交易编号',
        acctName: '账户名称',
        detailType: '明细类型',
        detailType1001: '转入',
        detailType3003: '转入已撤销',
        detailTypeOther: '转出',
        amount: '金额/积分',
        createTime: '交易时间',
        remark: '说明',
        noRemark: '无',
        fetchError: '获取账户明细失败'
      }
    }
  }