en.js
3.61 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
module.exports = {
message: {
login: 'Login',
Username: 'Username',
Password: 'Password',
Captcha: 'Captcha',
Language: 'Language',
zh: 'Chinese',
en: 'English'
},
nav: {
loginData: {
name: "login",
path: "",
list: [{
name: "login",
path: "/login",
value: ""
},
{
name: "modify password",
path: "",
value: ""
},
{
name: "logout",
path: "",
value: ""
},
]
},
navList: [{
name: "Product description",
path: "/product",
list: []
},
{
name: "Customer service",
path: "/custom/product",
list: [{
name: "Contact us",
path: ""
},
{
name: "Pay premium",
path: "/payment/type"
},
{
name: "Query policy",
path: "/custom/service"
},
{
name: "Change policy",
path: ""
},
{
name: "Claim report",
path: ""
},
{
name: "Reservation service",
path: "/reservation"
},
{
name: "Suggestions",
path: ""
},
{
name: "Common form",
path: ""
},
]
},
{
name: "News",
path: "/news/list",
list: []
},
{
name: "About",
path: "",
list: [{
name: "Company",
path: "/profile"
},
{
name: "Leaders",
path: ""
},
]
},
]
},
footer: {
hkPhone: "HK Tel",
cnPhone: "CN Tel",
aboutUs: "About us",
companyIntroduction: "Company introduction",
news: "News",
joinUs: "Join us",
helpCenter: "Help center",
privacy: "Privacy",
terms: "Terms",
map: "Map",
contactUs: "Contact us",
contactInformation: "Contact Information",
service: "Service",
qrcode: "Official Accounts"
},
index: {
news: "news",
newMore: "more",
},
product: {
btnPosition: "Booking service",
iconProblem: "Common problem",
iconProcess: "Insurance process",
iconProduct: "Product details"
},
customProduct: {
menu1: "Contact us",
menu2: "Pay premium",
menu3: "Query policy",
menu4: "Change policy",
menu5: "Claim report",
menu6: "Reservation service",
menu7: "Suggestions",
menu8: "Common form",
},
customService: {
name: "Customer service",
menu1: "Query",
menu2: "Change",
menu3: "Renewal",
menu4: "Claim",
menu5: "Booking",
menu6: "Complaint",
insuranceQuery: {
InsurantNumber: "Insurant number",
Insurant: "Insurant",
InsurantName: "Insurant name",
InsurantAmount: "Insurant amount",
effectiveDate: "Effective date",
period: "Guarantee period",
t2Title: "Guarantee information",
t2InsurantClassify: "Name of insurance",
t2InsurantAmount: "Insured amount",
t3Title: "Customer information",
t3InsurantNameCn: "Name of applicant (Cn)",
t3InsurantNameEn: "Name of applicant (En)",
t3InsurantIdNumber: "ID Number",
t3InsurantContactAddress: "Contact address",
t3InsurantAddress: "Address",
t3InsurantMobile: "mobile",
t3InsurantEmail: "email",
t3InsuredNameCn: "Name of insured (Cn)",
t3InsuredNameEn: "Name of insured (En)",
t3InsuredBirthday: "Birthday",
t3InsuredIdNumber: "ID Number",
t4Title: "Beneficiary information",
t4NameCn: "Name (Cn)",
t4NameEn: "Name (En)",
t4Allocation: "Distribution ratio",
t5Title: "Payment information",
t5PaymentPeriod: "Payment period",
t5PaymentMethod: "Payment method",
t5PaymentCurrency: "Payment currency",
t5CurrentPremium: "Current premium",
t5PaymentBank: "Payment bank",
t5PaymentAccount: "Payment account",
t6Title: "Payment record",
t6PaymentPeriod: "Payment period",
t6PaymentMethod: "Payment method",
t6ClosingDate: "Closing date",
t6PaymentAmount: "Payment amount",
}
}
}