en.js
58.4 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
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
module.exports = {
common: {
Confirm: "Confirm",
Cancel: "Cancel",
Male: "Male",
Female: "Female",
MaleTitle: "Mr.",
FemaleTitle: "Ms.",
Sex: "Sex",
Age: "Age",
Birthday: "Birthday",
SubmitSuccess: "Successfully submitted",
Email: "Email",
Birth:"Date of birth",
},
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: "Please upload identity information",
front: "Front side of identity card",
back: "Back side of identity card",
}
},
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: "Our Products",
// path: "/product/introduction",
path:"/vhis/detail?r=t",
list: [{
name: "Medical",
path: "/vhis/detail"
},
{
name: "Savings",
path: "/gen/rich"
}
]
},
{
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: "Change of Contact Information",
path: "/custom/service?q=m42"
},
{
name: "Change of Customer Information",
path: "/custom/service?q=m43"
},
{
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: "eCorrespondence Enquiry",
path: "/custom/service?q=m9"
},
{
name: "FAQ",
path: "/custom/service?q=m10"
},
]
},
{
name: "About Us",
path: "/profile?r=t",
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"
// },
]
}
]
},
header:{
quote: "Quote now",
},
footer: {
hotline:"Customer Service Hotline",
serviceHour:"Service Hour:9:00 - 17:30 Monday to Friday",
address:"A137, 16/F, Tower 5, The Gateway, 21 Canton Road, Tsim Sha Tsui, Kowloon, Hong Kong",
ourProducts:"Our Products",
VHIS:"Medical",
Insurance:"Savings",
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: "Dynamic password login",
loginType2: "Dynamic password login",
account: "Account",
accountPlaceholder: "Please enter user name",
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: "Please enter verification code",
verifyCodeGet: "Get verification codee",
SMSVerificationCode:"SMS verification code",
tips: {
e1: "Please enter user name",
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!",
e6: "Your SMS verification code has been mistyped 4 times. Your account will be locked soon!",
e7: "Your SMS verification code has been mistyped 5 times. You can't log in again in 24 hours!",
e8: "The user name was not registered, please register before using!",
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 for registration",
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 register",
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",
e13: "The name can't not contain numbers, special numbers",
e14: "Please setup user name",
e15: "The user name has been registered."
},
account:"Login Account",
accountPlaceholder:"Please setup user name",
},
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: {
recommend: {
title: "Why choose us?",
contact: "Contact us",
item1: {
desc: "E-service at Finger Tips",
},
item2: {
desc: "Serving more than 200 million customers",
},
item3: {
desc: "International risk management standard",
},
},
quote: {
quote: "Quote now",
want: "",
service: "Contact customer service",
genRich:{
t1:"Scroll to select insured amount",
t2:"USD (10 thousands)",
PaymentPeriod:"Payment period",
PaymentOptions:"Payment options",
quotePerMonth:"Monthly Premium",
tips:"Please contact customer service for insured amount exceeds US$ 3 million.",
years:"years",
Yearly:"Yearly",
SemiYearly:"Semi-yearly",
Quarterly:"Quarterly",
Monthly:"Monthly",
Premium:"Premium",
}
},
contact: {
t1: "Contact us for more product information.",
t2: "Leave your contact or call us at (852) 2983 8866.",
form: {
Title: "Title",
Name: "Name",
PhoneNumber: "Phone number",
Email: "Email",
Time: "Preferred contact time slot",
Inquiry: "Inquiry",
Submit: "Submit",
},
errorTips: {
e1: "Please select the collect title",
e2: "Please enter the collect name",
e3: "Please enter the collect mobile no",
e4: "Please enter the collect E-mail",
e5: "Please select the collect preferred contact time slot",
},
}
},
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",
menu9: "eCorrespondence<br>Enquiry",
menu10: "FAQ",
},
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,
download : "./doc/退保申請書(含冷静期退保).pdf"
},
{
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,
download : "./doc/退保申請書(含冷静期退保).pdf"
},
{
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,
download : "./doc/更改個人資料申請書.pdf"
},
{
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,
download : "./doc/更改聯絡資料申請書.pdf"
},
{
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,
download : "./doc/保單更改申請書(缴费方式变更).pdf"
},
{
name: "Policy",
}
],
},
]
},
policyChangeContact: {
phone: "Contact Number",
address: "Correspondence Address",
email: "E-Mail",
checkTips: "I do not agree to receive promotional information",
submit: "Submit",
errorTips: {
e1: "Please enter the collect mobile no",
e2: "Please enter the collect address",
e3: "Please enter the collect E-mail",
e4: "Please select the collect nation(region)",
e5: "Please select the collect district",
e6: "Please select the collect province",
e7: "Please select the collect city",
},
form:{
InternationalArea:"International area",
Mobile:"Mobile",
Nation:"Nation(Region)",
District:"District",
Province:"Province",
City:"City",
Address:"Address",
Mail:"Please enter",
},
tax:{
tt:"IRS website",
t1:"The country of your request for change of correspondence address / phone no. is the United States of America. To comply with the requirements of the US tax regulations, please complete the W8 / W9 form and submit it to us at the same time. The W8 / W9 form can be downloaded from the ",
t2:". For questions about US tax regulations, please contact your tax advisor",
Upload :"Upload",
Submit :"Submit",
},
success: "Successfully submitted",
uploadSuccess: "Uploaded successfully",
},
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: "Submit",
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"
}
},
FAQ: {
title: "FAQ",
},
eCorrespondenceEnquiry: {
PolicyNumber: "Policy Number",
TypeOfCorrespondence: "Type of Correspondence",
SentOutDate: "Sent Out Date",
DownloadLink: "Download link",
Status: "Status",
letterName: "Notice of Policy Issuance and Cooling-off Period",
DownloadDoc: "Download document",
Read: "Read",
UnRead: "Unread",
showMore:"Show all eCorrespondence enquiry."
},
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",
menu9: "eCorrespondence Enquiry",
menu10: "FAQ",
insuranceQuery: {
modify: "modify",
InsurantNumber: "Policy Number",
policyState: "Policy State",
activeDate: "Active Date",
Insurant: "Insured",
InsurantName: "Product Name",
InsurantAmount: "Sum Insured",
effectiveDate: "Premium Due Date",
period: "Protection Duration",
t2Title: "Policy Information",
t2n1: "Product Name",
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",
t2n9k: "Death Benefit Settlement Option",
t2n9v: "In a lump sum",
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: "Acknowledgement of Receipt of Policy",
titleAft: "(to be confirmed by Policy Owner)",
desc1: "Thank you for choosing Ping An Life (HK).",
desc2: "The Policy has been issued. ",
desc3: "Enclosed as below for your reference and safe keeping.",
desc4: "This Policy is an important document, please read the content carefully and acknowledge receipt of this Policy immediately for company record.",
desc5: "Please contact our Customer Service hotline if you have any questions.",
label1: "Policy no.",
label2: "Product name",
label3: "Policy Issue Date",
label4: "Policy Holder",
label5: "Insured Person",
btn0: "Cooling-off Period",
btn1: "E-policy",
btn2: "Confirm",
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",
notice: "I / We hereby acknowledge that I / We have received the Ping An Life Insurance Company of China (HK), Ltd. Policy and have read the details (including but are not limited to the cooling off right) of the Policy.",
agreeTips: "Please download and read the “Notice of Policy Issuance and Cooling-off Period” and the “e-policy”",
confirmNow:"Confirm now"
},
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: "Read more",
close: "Close",
bannerTips: {
t1: "【期间限定保费8折优惠】",
t2: "即日起至5月28日或之前投保,只需输入以下优惠码,即享首年保费8折优惠*",
t3: "优惠码:CISAVE20"
},
title: {
t1: "Ping An 'Pro Easy' Voluntary Health Insurance Scheme ",
t2: "Ping An 'Pro Easy' Voluntary Health Insurance Scheme is a certified medical insurance plan under the Government’s Voluntary Health Insurance Scheme that allows you to enjoy essential medical coverage with easy online application.",
t3: "",
t4: "",
},
main: {
t1: "Plan Features",
},
guarantee1: {
title: "Plan Summary",
titleT1: "(VHIS Standard Plan Certification Number:",
titleT2: ")",
titleNum: "F00021-01-000-01/",
k1: "Issue Age(Insured’s attained age)",
v1: "15 days to age 80",
k2: "Protection Period",
v2: "1 year and guaranteed renewable, up to age 100",
k3: "Policy Currency",
v3: "HKD",
k4: "Premium Payment Mode",
v4: "Monthly / Annually",
k5: "Eligible Applicants (The insured)",
v5: "Hong Kong residents (holder of a valid identity card issued by the HKSAR Government)",
t2: "产品性质",
t3: "医疗保障保险计划",
t4: "投保人投保时的年龄",
t5: "15日至80岁",
t6: "保证续保",
t7: "至100岁",
t8: "地域保障范围",
t9: "全球(精神科治疗除外)",
t10: "终生保障限额",
t11: "无",
t12: "每年保障限额",
t13: "每保单年度420,000港元",
},
guarantee2: {
title: "Benefit Schedule",
titK: "Benefit items",
titV: "Benefit limit (in HKD)",
ak: "Room and board",
av: "$750 per day<br>Maximum 180 days per Policy Year",
bk: "Miscellaneous charges",
bv: "$14,000 per policy year",
ck: "Attending doctor's visit fee",
cv: "$750 per day<br>Maximum 180 days per Policy Year",
dk: "Specialist's fee",
dv: "$4,300 per policy year",
ek: "Intensive care",
ev: "$3,500 per day<br>Maximum 25 days per Policy Year",
fk: "Surgeon's fee",
fv0: "Per surgery, subject to surgical category for the surgery/procedure in the Schedule of Surgical Procedures -",
fv1: "Complex $50,000",
fv2: "Major $25,000",
fv3: "Intermediate $12,500",
fv4: "Minor $5,000",
gk: "Anesthetist’s fee",
gv: "35% of Surgeon’s fee payable",
hk: "Operating theatre charges",
hv: "35% of Surgeon’s fee payable",
ik: "Prescribed Diagnostic Imaging Tests",
iv: "$20,000 per Policy Year<br>Subject to 30% Coinsurance",
jk: "Prescribed Non-surgical Cancer Treatments",
jv: "$80,000 per policy year",
kk: "Pre- and post-Confinement/<br>Day Case Procedure outpatient care",
kv11: "$580 per visit",
kv12: "up to $3,000 per Policy Year",
kv1: "$580 per visit, up to $3,000 per Policy Year",
kv2: "1 prior outpatient visit or Emergency consultation per Confinement/Day Case Procedure",
kv3: "3 follow-up outpatient visits per Confinement/Day Case Procedure (within 90 days after discharge from Hospital or completion of Day Case Procedure)",
lk: "Psychiatric treatments",
lv: "$30,000 per Policy Year",
},
guarantee3: {
title: "Other limits",
k1: "Annual Benefit Limit for benefit items (a) – (l)",
v1: "$420,000 per Policy Year",
k2: "Lifetime Benefit Limit for benefit items (a) – (l)",
v2: "Nil",
},
guarantee4: {
title: "Other Benefits",
k1: "Compassionate Death Benefit",
v1: "$10,000",
k2: "No Claims Discount",
v2: "If no claims had been made in the last three (3) consecutive policy years, the premium payable for the subsequent policy year shall be reduced by a No Claims Discount. The No Claims Discount shall be equivalent to 10% of the total due and payable premium in the immediately preceding Policy Year (before any discount).",
},
download: {
t1: "Download Product Introduction",
t2: "Download Standard Premium Table",
t3: "Download Policy Provision",
},
submitBtn: "Apply now",
productList: [{
title: "Certified VHIS-compliant Plan",
desc: "The plan is a certified plan under the Voluntary Health Insurance Scheme (VHIS) that aims to support your access to private healthcare services for essential needs, at the same time you could enjoy tax deduction benefit. The plan is approved by the Food and Health Bureau for your peace of mind. For more details on VHIS, please visit www.vhis.gov.hk. ",
tips: ""
}, {
title: "No Lifetime Benefit Limit",
desc: "The plan sets no lifetime benefit limit. With a benefit limit of each Policy Year up to HKD 420,000, it offers you with key medical protection to mitigate the financial burden arising from medical treatments.",
tips: ""
}, {
title: "Tax Deduction while insuring your whole family",
desc: "The premiums you pay for the plan is eligible for tax deduction application. If the policyholder is a taxpayer, he/ she could apply for a tax deduction of up to HKD8,000 per insured person, which the insured person of the Certified Plan should be the taxpayer himself or any specified relatives*, in each assessment year. There is no cap on the number of specified relatives* that a taxpayer can use to claim tax deductions as long as all the policies are held by the same taxpayer and cover yourself and / or your specified relatives*. ",
tips: "* Specified relatives are defined under Inland Revenue Ordinance (Chapter 112). "
}, {
title: "Cover for Unknown Pre-existing Conditions",
desc: "To give you an extra peace of mind, the plan covers unknown pre-existing conditions of which you were not aware and would not reasonably have been aware at the time of application. This plan provides partial cover during a waiting period of 3 policy years upon policy inception and full cover from the 4th policy year and onwards.",
tips: "*Partial compensation will be provided after the effective date of the policy (25% in the second year and 50% in the third year), and full compensation will be provided thereafter (100%)"
}, {
title: "Guarantee Renewal up to Age 100",
desc: "The plan is suitable for individuals between 15 days and age 80. Regardless of your health conditions in the future, the plan guarantees renewal until age 100. Renewal premium will not be increased due to changes in your claim history or physical condition, and your renewal premium will be determined based on the premium schedule at the policy anniversary date. ",
tips: ""
}, {
title: "No Claim Discount",
desc: "To encourage maintaining a healthy living lifestyle, you can enjoy a No Claims Discount, which is equivalent to 10% of the total due and payable premium in the immediately preceding policy year, if you have not claimed in the last three consecutive policy year.",
tips: ""
}]
},
genRich: {
expand: "Read more",
close: "Close",
bannerTips: {
t1: "【期間限定保費8折優惠】",
t2: "即日起至5月28日或之前投保,只需輸入以下優惠碼,即享首年保費8折優惠*",
t3: "優惠碼:CISAVE20"
},
title: {
t1: "Ping An GenRich Insurance Plan",
t2: "We all want to protect what’s important to us. Ping An GenRich Insurance Plan safeguards your income and wealth by providing you long-term returns and whole life insurance protection. The unique plan features and guaranteed minimum returns to help you prepare for the future of yourself as well as your whole family.",
t3: "",
t4: "",
},
main: {
t1: "Plan Features",
},
guarantee1: {
num1: "(i)",
num2: "(ii)",
title: "Plan At-a-glance",
titleLt: "Basic Information",
titleT1: "",
titleT2: "",
titleNum: "",
k1: "Issue age",
k11: "Premium payment period",
v11: "3/5/8/10 years",
k12: "Issue age",
v12: "From 15 days - age 72<br>(the policy must be paid up before age 75)",
k2: "Premium payment mode",
v2: "Annual, semi-annual, quarterly and monthly payment",
k3: "Policy term",
v3: "Lifetime of the insured",
k4: "Policy currency",
v4: "US dollars",
k5: "Death benefit",
v5: "The higher of the following, less any indebtedness:",
v51: "110% of the sum of the Total Basic Premiums Paid;",
v52: "Guaranteed Cash Value plus the face value of accumulated Reversionary Bonus and face value of Terminal Bonus (if any).",
k6: "Additional accidental death benefit for the Insured Person",
v6: "Equivalent to the Basic Total Premiums Paid",
v61: "Maximum USD 125,000 for all Ping An GenRich Insurance Plans",
k7: "Accidental death benefit for the Policy Owner",
v7: "Equivalent to the future premiums payable for the remainder of the Premium Payment Term.",
v71: "Maximum USD 125,000 for all Ping An GenRich Insurance Plans",
v72: "Not applicable if the Policy Owner is also the Insured Person",
v73: "Not applicable if the Insured Person and the Policy Holder both died in the same accident.",
k8: "Surrender benefit",
v8: "The sum of guaranteed surrender value, accumulated cash value of reversionary bonus and cash value of terminal bonus (if any) less any indebtedness.",
k9: "Bonus withdrawal",
v9: "While this Policy is in effect, the Policy Holder may withdraw some or all of the cash value of accumulated Reversionary Bonus at any time, subject to our prevailing administrative rules regarding the minimum and maximum amount of each withdrawals. The cash value of the corresponding Terminal Bonus (on the withdrawn Reversionary Bonus), if any, will also be withdrawn.",
k10: "Policy loan",
v10: "The Policy Holder can apply for a policy loan for an amount not exceeding 80% of the sum of guaranteed surrender value and cash value of accumulated reversionary bonus of the policy. The policy may also be subject to an automatic policy loan if premium remains unpaid at the end of the Grace Period to cover the outstanding premium and levy payable (if any). Any policy loan and automatic policy loan will be charged with loan interest, where the loan interest rate is solely determined by the Company.",
},
download: {
t1: "Download Product Brochure",
t2: "Download Product Promotion Flyer",
},
submitBtn: "Contact Customer Service",
productList: [{
title: "Potential long-term capital growth",
desc: "The Plan is a participating insurance plan. The potential long-term capital growth comes from guaranteed cash value, reversionary bonus and terminal bonus (if any)*.",
tips: "*Please refer to product brochure and policy provision for bonus details."
}, {
title: "Flexible savings for withdrawal to meet your financial needs",
desc: "It is flexible to withdraw the cash value of the reversionary bonus and the corresponding terminal bonus in the Plan, you may also partially surrender the policy to withdraw part of your guaranteed cash value to meet your cash needs.",
tips: ""
}, {
title: "Passing wealth down the generations",
desc: "GenRich helps you to build generational wealth by offering a Change of the Insured Person Option. You are allowed to change the insured four times for this plan without affecting the plan value after the end of the 1st policy anniversary*.",
tips: "*Subject to the satisfaction of the administration rules and final approval of the Company."
}, {
title: "Death and accidental death benefits",
desc: "In the unfortunate event of death of the insured, we will pay a death benefit to your designated beneficiary*.",
tips: "*Please refer to product brochure and policy provision for death benefits details."
}, {
title: "Accidental death benefit for Policy Holder",
desc: "If the Policy Holder passes away before the end of the premium term due to an accident, an amount which is equivalent to the remaining premiums of the GenRich, will be paid. The family may consider using this benefit amount to cover future premiums in order to keep the plan in force*.",
tips: "*Please refer to product brochure and policy provision for details."
}, {
title: "Options on payment terms that fit your plan",
desc: "You can choose a payment term of 3 years, 5 years, 8 years or 10 years flexibly per your own financial situation. Premium amount is guaranteed to be fixed throughout the whole payment terms.",
tips: ""
}, {
title: "Flexible settlement options to fit your specific financial needs",
desc: "Subject to satisfying the administration rules, the policy holder can choose lump sum; regular installments or partially in lump sum as settlement option for death and accidental death benefit payments to the beneficiary, in the unfortunate event of the insured’s death.",
tips: ""
}, {
title: "Hassle free application with no medical underwriting",
desc: "The application process of GenRich is simple and requires no medical check-up or health information, provided that your total annualized premium issued under our list of specified products covering the same insured does not exceed USD 4,000,000 in the past 24 months.",
tips: ""
}]
}
}