Blame view

src/views/community/wechatSubscribeLang.js 1.21 KB
316052fa   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
  export const messages = {
    en: {
      wechatSubscribe: {
        title: 'Subscribed Users',
        type: 'Type',
        openId: 'Open ID',
        unionId: 'Union ID',
        syncTime: 'Sync Time',
        wechat: 'WeChat',
        other: 'Other',
        syncUser: 'Sync Users',
        confirmTitle: 'Please confirm your operation!',
        syncConfirmText: 'Confirm to sync subscribed users data from WeChat official account. Please do not use frequently to avoid being banned by WeChat. Please refresh to view sync records after submission.',
        syncSuccess: 'Sync successfully',
        syncError: 'Sync failed',
        fetchError: 'Failed to fetch subscribed users'
      }
    },
    zh: {
      wechatSubscribe: {
        title: '关注用户',
        type: '类型',
        openId: 'Open ID',
        unionId: 'Union ID',
        syncTime: '同步时间',
        wechat: '微信',
        other: '其他',
        syncUser: '同步用户',
        confirmTitle: '请确认您的操作!',
        syncConfirmText: '确定从公众号同步关注用户数据,请不要频繁使用,以免微信公众号封禁,提交后请刷新查看同步记录',
        syncSuccess: '同步成功',
        syncError: '同步失败',
        fetchError: '获取关注用户失败'
      }
    }
  }