en.js
32.6 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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
module.exports = {
message: {
login: 'Login',
Username: 'Username',
Password: 'Password',
Captcha: 'Captcha',
Language: 'Language',
zh: 'Chinese',
en: 'English'
},
glbalTips: {
sessionLost: "Your session has expired. For your account safety, please re-enter and submit again.",
sysError: "An error occurred, <br>please try again later. "
},
form: {
datePicker: {
datePlaceholder: "please select date"
},
modalUploadCard: {
tit: "請上傳證件資料",
front: "證件正面",
back: "證件反面",
}
},
error: {
nameTip: "name illegal"
},
nav: {
loginData: {
name: "Login",
path: "/login",
list: [{
name: "Register",
path: "/register",
type: "noAuth",
value: ""
}, {
name: "Login",
path: "",
type: "noAuth",
value: "login"
},
// {
// name: "Modify password",
// path: "/password/reset",
// type: "auth",
// value: ""
// },
// {
// name: "profile",
// path: "/infomation/improve",
// type: "auth",
// value: ""
// },
{
name: "Logout",
path: "",
type: "auth",
value: "logout"
},
]
},
navList: [{
name: "Products",
path: "/product/introduction",
list: [{
name: "VHIS",
path: "/vhis/detail"
},
{
name: "Insurance with Investment Focus",
path: "/vhis?p=endowment"
}
]
},
{
name: "Customer Service",
path: "/custom/product",
list: [
// {
// name: "Customer Service",
// path: "/custom/product"
// },
{
name: "Contact Us",
path: "/custom/service?q=m1"
},
{
name: "Payment Options",
path: "/custom/service?q=m2"
},
{
name: "Policy Enquiry",
path: "/custom/service?q=m3"
},
{
name: "Change of Policy",
path: "/custom/service?q=m41"
},
{
name: "Claims Application",
path: "/custom/service?q=m5"
},
{
name: "Reservation",
path: "/custom/service?q=m6"
},
{
name: "Complaints",
path: "/custom/service?q=m7"
},
{
name: "Useful Forms",
path: "/custom/service?q=m8"
},
]
},
{
name: "About Us",
path: "/profile",
list: [{
name: "About Ping An (Life) HK",
path: "/profile"
},
{
name: "Company Events",
path: "/company/events"
}, {
name: "News Center",
path: "/news/list"
},
{
name: "Corporate Social Responsibility",
path: "/responsibility"
},
{
name: "Awards",
path: "/awards"
}
]
},
{
name: "Join Us",
path: "/join/us",
list: [{
name: "Corporate Culture",
path: "/corporate/culture"
},
{
name: "Career Opportunities",
path: "/career/opportunities"
},
]
}
]
},
footer: {
hkPhone: "Hong Kong Phone No.",
cnPhone: "Mainland Phone No.",
aboutUs: "About Us",
companyIntroduction: "Group Introduction",
news: "News Center",
joinUs: "Join Us",
helpCenter: "Support Center",
privacy: "Privacy Policy",
terms: "Terms of Use",
protocol: "Personal Data Collection Statement",
map: "Sitemap",
contactUs: "Contact Us",
contactInformation: "Contact Method",
service: "Service Network",
qrcode: "Official Accounts",
qrcodeBot: "Official WeChat Account",
copyright: "Copyright © China Ping An Life Insurance (Hong Kong) Company Limited All rights reserved."
},
login: {
title: "PingAn Account Member Service",
loginType1: "Login with user name and password",
loginType2: "Dynamic password login",
account: "Account",
accountPlaceholder: "Please enter Mobile no.",
password: "Password",
passwordPlaceholder: "Please enter password",
verifyPlaceholder: "Please enter password",
agree: "Agree with ",
protocol: "Ping An Hong Kong’s Online Account Service Agreement",
login: "Confirm",
register: "Register",
forget: "Forget password",
mobile: "Mobile no.",
mobilePlaceholder: "Please enter Mobile no",
verifyCode: "SMS verification code",
verifyCodePlaceholder: "SMS verification code",
verifyCodeGet: "Get SMS verification code",
tips: {
e1: "Please enter account",
e2: "Please enter the password",
e3: "Please enter the picture verification code",
e4: "Agree with Ping An Hong Kong’s Online Account Service Agreement",
e5: "Invalidate account or password, please re-enter",
e6: "Your password has been mistyped 4 times. Your account will be locked soon. Please retrieve your password!",
e7: "Your password has been mistyped 5 times. You can't log in again in 24 hours!",
oe0: "Invalidate mobile no. , please re-enter",
oe1: "Please get SMS verification code first",
oe2: "Please enter the picture verification code",
oe3: "Please enter the picture verification code",
oe4: "Your verify code is not correct. Please try again",
}
},
session: {
sidExpire: "It has not been operated for a long time. For the sake of your account security, please restart",
},
register: {
mobileOptions: [{
type: "hk",
name: "HK No",
placeHolder: "Please enter 8-digit mobile number",
areaCode: "+852"
}, {
type: "zh",
name: "Mainland No.",
placeHolder: "Please enter 11-digit mobile number",
areaCode: "+86"
}],
coutTips: "{second}Seconds",
title: "Welcome",
title2: "Please set up new password",
mobilePlaceholder: "Please enter 8-digit mobile number",
verifyCodePlaceholder: "Please enter SMS verification code",
verifyCodeGet: "Get SMS verification code",
agree: "Agree with ",
protocol: "Ping An Hong Kong’s Online Account Service Agreement",
register: "Click to reister",
newPassword: "Password",
newPasswordPlaceholder: "Please enter password",
newPasswordSure: "Confirm password",
newPasswordSurePlaceholder: "Please confirm password",
sure: "Confirm",
tips: {
e1: "Invalidate mobile no. , please re-enter",
e2: "Agree with Ping An Hong Kong’s Online Account Service Agreement",
e3: "Your verify code is not correct. Please try again.",
e4: "Please get SMS verification code first",
e5: "The mobile number has been registered.",
e6: "Please enter the picture verification code",
e7: "Password length cannot be less than 8 bits",
e8: "Passwords must contain numbers, characters, and special numbers",
e9: "New password cannot be the same as the old one",
e10: "Verification code was Expired",
e11: "Registration failed, please contact the staff",
e12: "Success",
}
},
passwordCheck: {
error1: "Password length cannot be less than 8 bits",
error2: "Passwords must contain numbers, characters, and special numbers",
error3: "The passwords are inconsistent. Please confirm and re-enter",
error4: "Password modification failed. Please try again later or call 95511",
error5: "Current password is incorrect. Please re-enter",
error6: "The new password cannot be the same as the old password",
success: "Success"
},
passwordReset: {
oldPwd: "Current password",
oldPwdPlaceholde: "Please enter current password",
cidExpire: "It has not been operated for a long time. For the sake of your account security, please restart",
type1: {
title: "Retrieve password",
t1: "Please enter user information",
t1Placeholder: "Mobile no./ ID no.",
submit: "Confirm",
error: "Invalid mobile no./ ID no., please re-enter",
},
type2: {
title: "Retrieve password",
t1: "SMS verification code",
t1Placeholder: "Please enter verification code",
submit: "Confirm",
error1: "Invalid verification code",
error2: "Verification code was Expired",
error3: "短信验证码发放时间少于1分钟,请稍后再试",
},
type3: {
title: "Retrieve password",
t1: "Please verify ID information",
t1Placeholder: "",
submit: "Confirm",
},
type4: {
title: "Please set up new password",
t1: "New password",
t1Placeholder: "Please enter new password",
t2: "Confirm password",
t2Placeholder: "Please re-enter new password",
submit: "Confirm",
error1: "Password length not less than 8 bits",
error2: "Passwords must contain numbers, characters, and special numbers",
}
},
infomationImprove: {
title: "Please complete all information",
t1: "姓名",
t1c1: "Surname",
t1c2: "Name",
t1Placeholder: "",
t2: "Sex",
t2Placeholder: "",
t3: "Date of birth",
t3Placeholder: "",
t4: "Type of ID",
t4Placeholder: "",
t5: "ID no.",
t5Placeholder: "",
submit: "Confirm",
cancel: "Skip",
candidates: {
sex: [{
name: "Male",
value: "M"
}, {
name: "Female",
value: "F"
}],
idType: [{
name: "身份證",
value: "1"
}, {
name: "護照",
value: "2"
}, {
name: "軍官證或士兵證",
value: "3"
}, {
name: "港澳通行證/回鄉證或台胞證",
value: "6"
}, {
name: "外國人永久居留身份證",
value: "O"
}, {
name: "港澳台居民居住證",
value: "V"
}, {
name: "台灣居民居住證",
value: "W"
}, {
name: "其他",
value: "0"
}]
},
successMsg: "更新成功",
errorTips: {
e1: "請填寫姓名信息",
e2: "請選擇性別",
e3: "請選擇生日",
e4: "請選擇證件類型",
e5: "請填寫證件號碼",
e6: "您填寫的證件號碼有誤",
e7: "您填寫的信息有誤,請核實後重新提交",
},
noPolicy: "Sorry, the information you entered does not match our records. Please re-enter it. For help, please",
customService: "contact customer service hotline",
},
index: {
news: "新聞資訊",
newMore: "查看更多",
recommend: {
t1: "Online Quotation",
t2: "Customer Service",
t3: "Products",
t4: "Latest News",
item1: {
btn: "了解更多產品",
t1: "為自己和家人尋找壹份保障",
},
item2: {
btn: "立即預約",
t1: "在線預約 專業服務",
},
item3: {
btn: "客户服务",
t1: "專業客服為妳服務",
t2: "想了解更多,可致電",
t3: "95511",
t4: "聯絡我們,或進入",
}
},
},
complaintAcceptance: {
name: "Name",
namePlaceholder: "Name",
contactType: "Preferred Way of Contact",
email: "E-mail",
question: "Question/ Opinion",
questionPlaceHolder: "No more than 500 words",
orderNo: "Policy No",
orderNoPlaceHolder: "If you are Ping An customer, please provide the policy number",
contactTime: "Preferred Contact Date",
notice1: "The personal data collected in this form is processed in accordance with Ping An Life Insurance Company of China (HK), Ltd Personal Information Collection Statement and will only be used to contact you. However, the personal data collected will not be transferred to third-party organizations other than those specified in the \"Ping An Life Insurance Company of China (HK), Ltd Personal Data Collection Statement\" without your explicit authorization. You can choose not to provide us with the required personal information, but this may prevent us from contacting you. You can also access and correct your personal data in accordance with Ping An Life Insurance Company of China (HK), Ltd Personal Data Collection Statement。",
notice2: "I hereby confirm that I understand and agree that my personal data will be used for the above purposes in accordance with the Ping An Life Insurance Company of China (HK) Personal Data Collection Statement.",
contactTypes: [{
name: 'Mobile',
value: 1,
show: "Mobile",
icon: "mobile",
placeholder: "HK No./ Mainland No."
}, {
name: 'Email',
value: 2,
show: "Email",
icon: "email",
placeholder: "email"
}],
errorTips: {
e1: "Please fill in this item",
e2: "Please fill in the correct contact information",
e3: "Please fill in the correct policy number",
e4: "請填寫正確的聯繫電話",
e5: "請填寫正確的電郵地址",
},
success: "Thank you for your comments"
},
reservation: {
name: "Name",
namePlaceholder: "Name",
contactType: "Preferred way of contact",
contactTypeCadidates: [{
name: "phone no",
value: 1
}],
contact: "Contact Number",
contactPlaceholder: "(HK No./ Mainland No.)",
reservationType: "Type of Reservation",
reservationCandidates: [{
name: "Insurance consultation",
value: "投保諮詢"
},
{
name: "Agent change",
value: "代办保单变更"
}
],
reservationRemark: "Reservation Description",
reservationRemarkPlaceholder: "Optional, no more than 500 words, prompt text \"Please briefly explain the insurance type or business you want to consult",
hkClient: "Current Pingan HK Customer",
yes: "Yes",
no: "No",
contactTime: "Preferred Contact Date",
notice1: "The personal data collected in this form is processed in accordance with Ping An Life Insurance Company of China (HK), Ltd Personal Information Collection Statement and will only be used to contact you. However, the personal data collected will not be transferred to third-party organizations other than those specified in the \"Ping An Life Insurance Company of China (HK), Ltd Personal Data Collection Statement\" without your explicit authorization. You can choose not to provide us with the required personal information, but this may prevent us from contacting you. You can also access and correct your personal data in accordance with Ping An Life Insurance Company of China (HK), Ltd Personal Data Collection Statement。",
notice2: "I hereby confirm that I understand and agree that my personal data will be used for the above purposes in accordance with the Ping An Life Insurance Company of China (HK) Personal Data Collection Statement.",
success: "Success",
submitBtn: 'Confirm',
errorTips: {
e1: "Please fill in this item",
e2: "Please fill in the correct contact mobile no.",
e3: "You have submitted the appointment information, please do not repeat the appointment",
e4: "Please fill in the valid date",
e4: "Please fill in the correct mobile no.",
e5: "Please fill in the correct email",
}
},
paymentType: {
menu1: "Payment in Person at Cashier",
menu2: "Internet Banking",
menu3: "Telegrapgic Transfer",
menu4: "JETCO ATM",
menu5: "PPS",
menu6: "Hong Kong Post",
},
product: {
btnPosition: "Booking service",
iconProblem: "Common problem",
iconProcess: "Insurance process",
iconProduct: "Product details"
},
customProduct: {
menu1: "Contact us",
menu2: "Payment Options",
menu3: "Policy Enquiry",
menu4: "Change of Policy",
menu5: "Claims Application",
menu6: "Reservation",
menu7: "Complaints",
menu8: "Useful Forms",
},
commonForm: {
head1: "Type of Forms",
head2: "Forms",
head3: "Purpose",
head4: "Attachment",
download: "Download",
form: [{
type: "Payment",
list: [{
name: "「E-account Service」and Direct Debit Authorization Application for Bank Account",
desc: "For applying e-service account and direct debit authorization",
download: "./doc/「電子入賬服務」及銀行戶口直接付款授權申請.pdf",
},
{
name: "Credit Card Account Direct Debit Authorization",
desc: "Application for credit card direct debit",
download: "./doc/信用卡戶口直接付款授權書.pdf",
}
]
},
{
type: "Change of Policy",
list: [{
name: "Policy Termination Application Form",
desc: "Policy surrender",
download: "./doc/保險合同解除申請書.pdf",
},
{
name: "Application for Change of Policy Form<br>(Policy Loan Repayment)",
desc: "Policy loan",
download: "./doc/保險合同變更申請書( 保單貸款還款類).pdf",
},
{
name: "Application for Change of Policy Form<br>(Change of Policy)",
desc: "Newly added premium, deducted premium",
download: "./doc/保險合同變更申請書( 保險合同計劃變更類).pdf",
},
{
name: "Application for Change of Policy Form<br>(Change of Customer Information)",
desc: "Basic Information Change",
download: "./doc/保險合同變更申請書( 客戶權益變更類).pdf",
},
{
name: "Application for Change of Policy Form<br>(Change of Beneficiary)",
desc: "Mode of payment, self-replacement and reissues",
download: "./doc/保險合同變更申請書( 客戶信息變更類).pdf",
},
{
name: "Authorization Letter",
desc: "To authorize 3rd party to handle on behalf of policy owner",
download: "./doc/授權委托書.pdf",
},
{
name: "Tax Statement",
desc: "CRS",
download: "./doc/稅收聲明.pdf",
},
{
name: "Health Declaration",
desc: "For underwriting purpose",
download: "./doc/健康告知.pdf",
}
]
},
{
type: "Claims",
list: [{
name: "Claims Form",
desc: "For written claims application",
download: "./doc/理賠申請書.pdf",
}]
},
]
},
policyChangeGuide: {
notice: "Please ",
noticeLink: "contact customer service hotline",
noticeTail: "for other policy changes",
head1: "Item",
head2: "Details",
head3: "Applicant",
head4: "Deadline",
head5: "Materials to be submitted",
download: "下載文檔",
form: [{
project: "Policy Surrender",
content: "Cancellation of contract after the cooling-off period, the company will refund the policy cash value",
applicant: "Policy Owner",
receptionTime: "Before Policy Expires",
materialList: [{
name: "Policy",
},
{
name: "Application form",
type: 1,
},
{
name: "ID card of Policy Owner",
},
{
name: "Bank information",
}
],
},
{
project: "Policy Surrender within cool off period",
content: "If the contract is cancelled within the cooling-off period, the company will refund the entire premium without interest.",
applicant: "Policy Owner",
receptionTime: "Before cool off period",
materialList: [{
name: "Policy",
},
{
name: "Application form",
type: 1,
},
{
name: "ID card of Policy Owner",
},
{
name: "Bank information",
},
{
name: "First premium receipt",
}
],
},
{
project: "Change of Customer Information",
projectType: 1,
path: "/custom/service",
query: {
q: "m43"
},
content: "Change of Policy Owner, Insured and Beneficiary informat",
applicant: "Policy Owner",
receptionTime: "Anytime",
materialList: [{
name: "Application form",
type: 1,
},
{
name: "Other necessary proving documents",
}
],
},
{
project: "Change of Contact Information",
projectType: 1,
path: "/custom/service",
query: {
q: "m42"
},
content: "Change of address, contact no.",
applicant: "Policy Owner",
receptionTime: "Anytime",
materialList: [{
name: "Application form",
type: 1,
},
{
name: "ID card of Policy Owner",
}
],
},
{
project: "Change of Payment Information",
content: "Change of mode of payment or payement account",
applicant: "Policy Owner",
// receptionTime: "Before the expiration of policy payment",
receptionTime: "Before the policy payment expiration date",
materialList: [{
name: "Application form",
type: 1,
},
{
name: "Policy",
}
],
},
]
},
policyChangeContact: {
phone: "Contact Number",
address: "Correspondence Address",
email: "E-Mail",
checkTips: "I do not agree to receive promotional information",
submit: "Confirm",
errorTips: {
e1: "Please enter the collect mobile no",
e2: "請填寫聯繫地址",
e3: "Please enter the collect E-mail"
},
success: "Success",
},
policyChangeInformation: {
title: "Change of Customer Information",
owner: "Policy Owner",
insured: "Insured",
obj: "Select for change",
name: "Name",
sex: "Sex",
birth: "Date of Birth",
type: "Type of Identification Document",
NO: "ID No.",
validityPeriod: "ID Validation Date",
nationality: "Nationality",
employer: "Employer",
maritalStatus: "Marital Status",
submit: "Confirm",
upload: "Upload Attachment",
modifyTips1: "If you need to modify please",
modifyTips2: "contact customer service",
success: "Success",
},
contactUs: {
service: {
center: {
title: "Customer Service Center",
address: "Address: Unit 3501 - 7 & 14, Floor 35, The Gateway Tower 5, Tsim Sha Tsui, Kowloon, Hong Kong",
time: "Service Hour:9 a.m. - 6 p.m. , Monday to Friday",
},
hotline: {
title: "Customer Service Hotline",
hk: "Hong Kong:(852) 2983 8866",
cn: "Mainland:(86) 40078 95511",
time: "Service Hour:9 a.m. - 6 p.m. , Monday to Friday"
},
mail: {
title: "Customer Service Email",
mail: "cs@pingan.com.hk"
}
},
pulbic: {
title: "Official WeChat Account",
m1: "(1):Login to the \"WeChat\" APP, press the " + " button in the upper right corner and select \"Add Friend\", select \"Public Account\" Enter and search \"Ping An Life Hong Kong\"",
m2: "(2):Log in to the WeChat APP, press the " + " button in the upper right corner and select \"Scan\" to scan the QR code below(QR Code here)"
},
qrcode: {
title: "Official WeChat Account"
}
},
customService: {
name: "Customer service",
menu1: "Contact Us",
menu2: "Payment Options",
menu3: "Policy Enquiry",
menu4: "Change of Policy",
menu41: "Policy Change Guidelines",
menu42: "Change of Contact Information",
menu43: "Change of Customer Information",
menu5: "Claims Application",
menu6: "Reservation",
menu7: "Complaints",
menu8: "Useful Forms",
insuranceQuery: {
modify: "modify",
InsurantNumber: "Policy Number",
policyState: "Policy State",
activeDate: "Active Date",
Insurant: "Insured",
InsurantName: "Policy Type",
InsurantAmount: "Sum Insured",
effectiveDate: "Premium Due Date",
period: "Protection Duration",
t2Title: "Policy Information",
t2n1: "Policy Type",
t2n2: "Sum Insured",
t2n3: "Effective Date",
t2n4: "Protection Duration",
t2n5: "Name of Insured(Chinese)",
t2n6: "Name of Insured (English) ",
t2n7: "Date of Birth",
t2n8: "ID No",
t3Title: "Customer Information",
t3n1: "Name of Policy Owner(Chinese)",
t3n2: "Name of Policy Owner(English)",
t3n3: "Date of Birth",
t3n4: "ID No",
t3n5: "Postal Address",
t3n6: "Residential Address",
t3n7: "Mobile No.",
t3n8: "Email",
t4Title: "Beneficiary information",
t4NameCn: "Name(Chinese)",
t4NameEn: "Name (English)",
t4Relation: "Relationship with Insured",
t4Allocation: "Distribution ratio",
t5Title: "Payment information",
t5PaymentPeriod: "Payment period",
t5PaymentMethod: "Mode of Payment",
t5PaymentCurrency: "Currency",
t5CurrentPremium: "Current premium",
t5PaymentBank: "Bank",
t5PaymentAccount: "Payment Account",
t6Title: "Payment Record",
t6PaymentPeriod: "Premium Payment Term",
t6PaymentMethod: "Payment Method",
t6ClosingDate: "Premium Settlement Date",
t6PaymentAmount: "Payment Amount",
showMore: "Show all policies.",
noPolicy: "You haven't bought any policy, if you have any questions please",
customService: " contact customer service",
downloadClick: "Download",
},
unauth: {
m1: {
tit: "Policy Holder can login with PingAn Account to view policy details.",
or: "/",
tail: ""
},
m2: {
tit: "Policy Holder can login with PingAn Account to amend policy details.",
or: "/",
tail: ""
},
m3: {
tit: "Login with your PingAn Account in order to enjoy full online service.",
or: "/",
tail: ""
},
tips: "Login with your PingAn Account in order to enjoy full online service.",
or: "or",
login: " Login",
register: " Register",
baseInfoTip: "To verify account information, please ",
infoBtn: "provide",
baseInfoTail: "customer information same as your insured information."
},
auth: {
defaultTip: "You have not verified the customer information, please fill in the customer information provided at the time of insurance",
customService: "customer service hotline",
notMatch: "The information provided did not match our record. Please contact",
notMatch2: " if you have any queries.",
}
},
pagination: {
firstPage: "last",
nextPage: "next",
goto: "Go to",
per: "page",
page: "",
total: "total",
unit: "news"
},
newsDetail: {
back: "Back",
publishAt: "Publish time",
readers: "Number of reader",
per: ""
},
vhis: {
title: "Confirmation of policy receipt",
titleAft: "(to be confirmed by Policy Owner)",
desc1: "Thank you for choosing Ping An Life (HK).",
desc2: "The policy is underwritten and enclosed here for your reference and record.",
desc3: "This is an important document, we recommend you to check the accuracy immediately.",
desc4: "Should there be any missing documents or incorrect information, please contact our customer hotline.",
desc5: "Please confirm your receipt of the policy by clicking the confirm button below.",
label1: "Policy no.",
label2: "Product name",
label3: "Effective date",
label4: "Policy Owner",
label5: "Insured",
btn1: "E-policy",
btn2: "Confirm Now",
btn3: "Confirm Later",
ymd1: "/",
ymd2: "/",
ymd3: "",
tip1: "I ",
tip2: " confirm the receipt of the above policy on ",
tip3: ".",
tip4: "",
tip5: "Contact Customer Service Hotline",
tip6: "The policy acknowledgement has been done, to inquire about the policy information or download ePolicy, please click ",
tip7: "Policy Enquiry"
},
clarms: {
title: "File a claim",
step1: {
register: "Register",
login: "Login",
t1: "to OneConnect account to enjoy better service.",
label0: "Claimant information",
label1: "Last name",
label2: "First name",
label3: "Document type",
label4: "Identification Number",
label5: "Birthday",
btn: "Apply now",
noPolicy: "Sorry, the information you entered does not match our records. Please re-enter it. For help, please",
customService: "contact customer service hotline",
},
step2: {
label1: "I want to claim for",
label2: "",
label3: "Type of application ",
label4: "(Can choose more than one)",
op1: "Accidential medical",
op2: "Accidential death",
op3: "Illness medical",
op4: "Illness death",
op5: "Critical illness",
label5: "Please fill in receipt amount",
label6: "Amount",
label7: "(HKD)",
label8: "Please convert to HKD if the currency you paid is not in HKD",
label9: "Date",
label10: "Required Documents",
label11: "Receipts",
label12: "Medical record",
label13: "Additional Documents",
label14: "Hospital diagnostic report",
label15: "Claimant information",
label16: "Others",
label17: "Declaration of Authorization: ",
label18: "Personal data collection statement: ",
btn: "Submit",
btnUpload: "Upload",
uploadFile: "Uploaded file:",
contact: "Contact customer service",
contact2: "",
tip1: "I / We hereby authorize (1) any employer, registered medical practitioner, hospital, clinic, insurance company, bank, government agency, or other agency, organization, or person who knows or holds any relevant policy holder / Those in the insured's records can provide, issue and transfer these assets to Ping An Life Insurance (Hong Kong) Co., Ltd .; (2) your company or any of its designated doctors or laboratories can apply for compensation for this policy The medical evaluation and testing required for the holder / insured person to audit the health status of the policy holder / insured person. This authorization is binding on the policyholder / insured's heirs and grantors; this authorization is valid even if the policyholder / insured dies or becomes incompetent.",
tip2: "I / We confirm that I have read and understood the Personal Data Collection Statement (Ping An Life Insurance (Hong Kong) Co., Ltd.) (this statement). ",
tip3: "I / We hereby confirm and agree to your company's use and transfer of my / our personal assets in accordance with this statement, including the use and provision of my / our personal assets for direct marketing purposes. I / We acknowledge and agree to transfer my / our personal resources for the purposes described in this statement to the type of transferee outside Hong Kong to which this statement refers.",
tip4: "I / We hereby declare that the above statement and information, as far as I / we know and believe, are all facts and true.",
tip5: "The type of application you selected is not within the scope of insurance liability. Please verify and confirm. If you have any questions, ",
tip6: "please contact customer service.",
tip7: "Your claim application has been processed and we will process this application as soon as possible. We will notify you of the progress of the claim through a short message. Due to the need for review, we may notify you to supplement the relevant information or mail the physical object. If approved, the claims will be transferred to the insurance payment account by default. If changes are required, please upload ",
tip8: "the claimant's account information.",
tip9: "The accident time you selected is not within the validity of the policy. Please verify and confirm. If you have any questions,",
toast1: "Medical treatment receipts",
toast2: "Discharge document / doctor's certificate with clear diagnosis",
toast3: "Such as blood test report, computer scan report, ultrasound report, etc.",
toast4: "The claims are transferred to the insured account by default. If you need to change, please upload the account information.",
toast5: "Evidence of accidents such as police reports, traffic accident reports, etc.",
failure: "Claim report failed,",
failureContact: "Please contact customer service",
placeHolder1: "Select",
}
},
vhisDetail: {
expand: "展开",
close: "收起",
bannerTips: {
t1: "【期间限定保费8折优惠】",
t2: "即日起至5月28日或之前投保,只需输入以下优惠码,即享首年保费8折优惠*",
t3: "优惠码:CISAVE20"
},
title: {
t1: "自愿医保计划",
t2: "平安人寿(香港)",
t3: "自愿医保标准计划",
t4: "为政府自愿医保认可的标准计划,可同时申请享有税务扣减优惠。",
},
main: {
t1: "产品特点",
},
guarantee1: {
t1: "保障一览",
t2: "产品性质",
t3: "医疗保障保险计划",
t4: "投保人投保时的年龄",
t5: "15日至80岁",
t6: "保证续保",
t7: "至100岁",
t8: "地域保障范围",
t9: "全球(精神科治疗除外)",
t10: "终生保障限额",
t11: "无",
t12: "每年保障限额",
t13: "每保单年度420,000港元",
},
guarantee2: {
t1: "更多特点:",
t2: "若您更改计划、终止保单或您未能支付保费导致保单被终止,便有机会获退还部分款项",
t3: "(如适用)。",
t4: "保证自动续保,无需进一步提供健康证明。",
t5: "保证于保费缴付期内保费不变。",
t6: "计划不包括:",
t7: "若受保人于保单签发日后一年内自杀,将不能获发身故赔偿,但将获退还于现行保单保障期内所缴的总保费。",
},
download: {
t1: "下载产品简介",
t2: "下载标准保费表",
t3: "下载保单契约",
},
submitBtn: "立即投保",
productList: [{
title: "保证续保至100岁",
desc: "平安人寿(香港)「好e时」自愿医保标准计划 接受任何介乎15天至80岁人士投保,您可以一直续保至100岁。计划保证不会因您的索偿记录或身体状况变而调高续保保费,而您的续保保费将根据当时保单周年日之保费表厘定。",
tips: ""
}, {
title: "不设终身保障限额",
desc: "每年保障限额高达420,000 港元,并将每年重新设置至原先限额,让您享有充裕的医疗保障,减轻因医疗需求而造成的财务负担。",
tips: ""
}, {
title: "一家投保 尽享税务扣减",
desc: "保费可用作申请税务扣除,若保单持有人为纳税人,便可为自己及任何指明亲属,即每一名合资格受保人,申请每名受保人每年8,000 港元的扣税额,可申请税务扣减的指明亲属 数目更不设上限。",
tips: "*需根据香港自愿医保计划保单所缴付的合资格保费的扣税安排"
}, {
title: "承保投保前未知的已有疾病",
desc: "承保您在投保时不察觉,及理应不察觉的已有病症。对上述有关病症,此计划会在保单生效首3年的等候期间提供部份保障*,并由第4个保单年度起提供全面保障。",
tips: "*保单生效日后提供部分赔偿(第二年25%、第三年50%),其后提供全面赔偿(100%) "
}, {
title: "出院免找数 让您安心无忧",
desc: "只需完成简单手续,我们便会直接向有关私家医院缴付住院期间的医疗开支。",
tips: "*有关详情及指定医院列表,请参阅「出院免找数服务」单张。"
}, {
title: "无索偿折扣",
desc: "最高可获得上一个保单年度有已缴总保费之10%。 如您在连续3个保单年度或以上没有作出赔偿,在下一个保单周年日您将可获得此保费折扣。",
tips: "*有关详情请参阅产品介绍书。"
}]
}
}