-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext.json
8531 lines (8531 loc) · 739 KB
/
text.json
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
{
"AddInformationLayout_ClickToEdit": "Click to edit",
"AddInformationLayout_InformationMessage": "Information message",
"Adjustments_Made_Label_Text": "Adjustment made",
"Admin_Comments_Empty_Text": "No comments yet. To add a comment click on \"See more details\"",
"Admin_Comments_Label_Text": "Admin comments",
"AdministrationTeam_Name": "Name",
"AdministrationTeamList_AddNewAdministrationTeam": "Add New Employee Security Group",
"AdministrationTeamList_EditExistingAdministrationTeam": "Edit Existing Employee Security Group",
"AdministrationTeamList_EditPayrollDefaultAdministrationTeam": "Edit Payroll Default Employee Security Group",
"AdministrationTeamList_Payroll_DefaultAdministrationTeam": "Default Employee Security Group",
"AdministrationTeamList_Payroll_Name": "Payroll",
"Administrator_IdentityProviderNameMustBeUnique": "Identity provider name must be unique",
"Administrator_SessionTimeout": "SessionTimeout",
"Administrator_SsoIdentifierMustBeUnique": "SSO identifier must be unique",
"Administrator_SSOLoginOverride": "SSO Login Override",
"AdministratorAuditing_AdminName": "Admin Name: {0}",
"AdministratorAuditing_Admins": "Admins",
"AdministratorAuditing_AllAdmins": "All Admins",
"AdministratorAuditing_AllChangeAdmins": "All Change Admins",
"AdministratorAuditing_AllEventTypes": "All Event Types",
"AdministratorAuditing_AllGroups": "All Groups",
"AdministratorAuditing_AllLoginTypes": "All Login Types",
"AdministratorAuditing_Change_ChangeType_Add": "Creation",
"AdministratorAuditing_Change_ChangeType_Edit": "Edit",
"AdministratorAuditing_Change_ChangeType_NoChangeTypeFilter": "No Filter",
"AdministratorAuditing_Change_SectionLabel": "Details Audit",
"AdministratorAuditing_Change_SelectChangeType": "Select Change Filter",
"AdministratorAuditing_ChangeAdmins": "Change Admins",
"AdministratorAuditing_ChangedByName": "Changed By: {0}",
"AdministratorAuditing_GroupName": "Group Name: {0}",
"AdministratorAuditing_Groups": "Groups",
"AdministratorAuditing_MultiEventTypes": "Multiple Event Types",
"AdministratorAuditing_MultiLoginTypes": "Multiple Login Types",
"AdministratorAuditing_Security_AuditType_AccountLocked": "Account locked",
"AdministratorAuditing_Security_AuditType_AllEventTypes": "All event types",
"AdministratorAuditing_Security_AuditType_LoginFailed": "Login failed",
"AdministratorAuditing_Security_LoginSuccessful": "Login successful",
"AdministratorAuditing_Security_MFA": "MFA",
"AdministratorAuditing_Security_OtpResendRequest": "Otp resend request",
"AdministratorAuditing_Security_Passphrase": "Passphrase",
"AdministratorAuditing_Security_PasswordResetRequest": "Password reset request",
"AdministratorAuditing_Security_SectionLabel": "Security Audit",
"AdministratorAuditing_Security_SSO": "SSO",
"AdministratorAuditing_Security_UpdatePasswordFailed": "Password update failed",
"AdministratorAuditing_Security_UpdatePasswordSuccessful": "Password update successful",
"AdministratorAuditing_Security_UsernamePassword": "Username & password",
"AdministratorAuditing_SelectAdmin": "Select Admin",
"AdministratorAuditing_SelectAdminGroup": "Select Group",
"AdministratorAuditing_SelectChangeAdmin": "Select Change Admin",
"AdministratorAuditing_SelectEventTypes": "Select Event Types",
"AdministratorAuditing_SelectLoginTypes": "Select Login Types",
"AdministratorGroup_AdministrationTeamRestriction": "Employee Security Group restriction",
"AdministratorGroup_Claims": "Permissions",
"AdministratorGroup_EntityType": "Employee Restriction type",
"AdministratorGroup_EntityType_AdministrationTeam": "Employee Security Group",
"AdministratorGroup_EntityType_None": "None",
"AdministratorGroup_EntityType_Organisation": "Organisation",
"AdministratorGroup_EntityType_Payroll": "Payroll",
"AdministratorGroup_EntityType_Scheme": "Scheme",
"AdministratorGroup_Members": "Members",
"AdministratorGroup_Name": "Name",
"AdministratorGroup_OrganisationRestriction": "Organisation restriction",
"AdministratorGroup_PayrollRestriction": "Payroll restriction",
"AdministratorGroup_SchemeRestriction": "Scheme restriction",
"AdministratorGroupList_AddGroup": "Add Group",
"AdministratorGroupList_AddNewAdministratorGroup": "Add New Administrator Group",
"AdministratorGroupList_EditExistingAdministratorGroup": "Edit Existing Administrator Group",
"AdministratorGroupList_PageTitle": "Administrator Groups",
"AdministratorGroupList_UpdateGroup": "Update Group",
"AdministratorGroupList_EditGroup": "Edit Group",
"AdministratorList_AccountLockOutDate": "This account was locked on {0}",
"AdministratorList_Actions": "Actions",
"AdministratorList_Active": "Active",
"AdministratorList_AddAdministrator": "Add Administrator",
"AdministratorList_AdministratorCount": "{0} administrators",
"AdministratorList_ConfirmEmail": "Confirm Email Address",
"AdministratorList_ConfirmPassword": "Confirm Password",
"AdministratorList_CurrentPassword": "Current password",
"AdministratorList_EditAdminDetails": "Edit Details",
"AdministratorList_EditAdminGroups": "Edit Groups",
"AdministratorList_EditAdminMembership": "Change Membership",
"AdministratorList_Email": "Email Address",
"AdministratorList_EmailMatch": "Email and Confirmation Email do not match",
"AdministratorList_EmptyStateTitle": "No administrators have been added",
"AdministratorList_EmptyStateSubtitle": "Click below to add an administrator",
"AdministratorList_FirstName": "First Name",
"AdministratorList_Groups": "Groups",
"AdministratorList_InActive": "InActive",
"AdministratorList_LastName": "Last Name",
"AdministratorList_Leaver": "Leaver",
"AdministratorList_LeavingDate": "Leaving Date",
"AdministratorList_Locked": "Locked",
"AdministratorList_NoAdminsInFilterTitle": "No administrators found with current filters",
"AdministratorList_NoAdminsInFilterSubtitle": "Please select different filters",
"AdministratorList_PageTitle": "Administrators",
"AdministratorList_Password": "Password",
"AdministratorList_PasswordMatch": "Password and confirmation password do not match",
"AdministratorList_SearchHeader": "Username | First Name Last Name",
"AdministratorList_SearchPlaceholder": "Search administrators",
"AdministratorList_SsoIdentifier": "SSO Identifier for {0}",
"AdministratorList_Status": "Status",
"AdministratorList_StatusNoFilters": "No filters selected",
"AdministratorList_StatusAllFilters": "All filters selected",
"AdministratorList_Username": "Username",
"Agreement_Message_Error_Compilation": "Agreement {0} failed to compile, error: {1}",
"Agreement_Message_Error_Text_Null": "Agreement {0} failed to compile, agreement text can not be null",
"Align_Payrun_To_Payroll_Message": "Align payrun to payroll?",
"AnalyticsTemplateConfiguration_TemplateConfig": "Analytics Template Configuration",
"ApplicationForm_Adjudication_AdjudicationStatus": "Adjudication Status",
"ApplicationForm_Adjudication_Applicant": "Applicant name",
"ApplicationForm_Adjudication_ApplicationName": "Application Name",
"ApplicationForm_Adjudication_ApplicationTypeName": "Application Type Name",
"ApplicationForm_Adjudication_Approve": "Approve",
"ApplicationForm_Adjudication_Details_Header": "Application details",
"ApplicationForm_Adjudication_EmployeeName": "Employee Name",
"ApplicationForm_Adjudication_LastUpdatedDate": "Last Updated Date",
"ApplicationForm_Adjudication_Reject": "Reject",
"ApplicationForm_Adjudication_SelectAdjudicationStatuses": "Select Adjudication Statuses",
"ApplicationForm_Adjudication_Status_Approved": "Approved",
"ApplicationForm_Adjudication_Status_PendingApproval": "Pending Approval",
"ApplicationForm_Adjudication_Status_Rejected": "Rejected",
"ApplicationForm_Adjudication_SubmitedDate": "Submited Date",
"ApplicationForm_ApplicationType": "Application type",
"ApplicationForm_ApplicationType_Add": "Add application type",
"ApplicationForm_ApplicationType_CopyNewVersion": "Copy new version",
"ApplicationForm_ApplicationType_DCL_Less_FundingSources_Header": "Funding sources",
"ApplicationForm_ApplicationType_DCLEditor": "DCL editor",
"ApplicationForm_ApplicationType_Details": "Application Type Details",
"ApplicationForm_ApplicationType_DuplicateName": "Application Type Name already exists",
"ApplicationForm_ApplicationType_Name": "Application Type Name",
"ApplicationForm_ApplicationType_Save": "Save Application Type",
"ApplicationForm_ApplicationType_Saved": "Saved",
"ApplicationForm_ApplicationType_SelectVersion": "Select version",
"ApplicationForm_ApplicationType_UpdateError": "Error updating application type version",
"ApplicationForm_ApplicationType_Version": "Application Type Version",
"ApplicationForm_Details": "Details",
"ApplicationForm_EndDate": "End date:",
"ApplicationForm_Nav_Adjudication": "App Form Adjudications",
"ApplicationForm_StartDate": "Start date:",
"ApplicationForm_UploadTexts": "Upload Texts",
"Audit_AccountancySummaryTitle": "Employee Accountancy Summary Audit",
"Audit_AllAuditTypes": "All Audit Types",
"Audit_AllChangedByAdminUsers": "All Users",
"Audit_AllChangedByUsers": "All Admins and Employee",
"Audit_AllowedBenefits": "Allowed Benefits:",
"Audit_AllShares": "All Share Types",
"Audit_AssignedTo": "Assigned To",
"Audit_Backdated": "Backdated",
"Audit_BackToEmployee": "< Back To Employee",
"Audit_BenefitVersionDCL_BenefitName": "Benefit Name:",
"Audit_BenefitVersionDCL_Description": "Description:",
"Audit_BenefitVersionDCL_Filter": "Filter by benefit or admin name",
"Audit_BenefitVersionDCL_Title": "Benefit Version DCL Audit",
"Audit_BenefitVersionDCL_VersionContext": "Context:",
"Audit_BenefitVersionDCL_VersionName": "Version Name:",
"Audit_CampaignReportVersionDCL_CampaignName": "Campaign Name:",
"Audit_CampaignReportVersionDCL_CampaignReportName": "Campaign Report Name:",
"Audit_CampaignReportVersionDCL_FilterByCampaignOrAdminName": "Filter by campaign or admin",
"Audit_CampaignReportVersionDCL_Title": "Campaign Report Version DCL Audit",
"Audit_CampaignReportVersionDCL_VersionContext": "Context:",
"Audit_ChangedBy": "Changed By",
"Audit_ClaimTypeVersionDCL_ClaimTypeName": "Claim Type Name:",
"Audit_ClaimTypeVersionDCL_ClaimTypeVersionName": "Claim Type Version Name:",
"Audit_ClaimTypeVersionDCL_FilterByClaimTypeOrAdminName": "Filter by claim type or admin",
"Audit_ClaimTypeVersionDCL_Title": "Claim Type Version DCL Audit",
"Audit_ClaimTypeVersionDCL_VersionContext": "Context:",
"Audit_Completed": "Completed",
"Audit_Detail": "Detail",
"Audit_DueDateTime": "Due Date Time",
"Audit_Effective": "Effective:",
"Audit_EmployeeArchivedAudit": "Employee Archived Audit",
"Audit_EmployeeCommunications": "Employee Communications Audit",
"Audit_EmployeeNameAndEmail": "{0} ({1})",
"Audit_EmployeePreSelectionAgreements": "Employee Pre Selection Agreements",
"Audit_EmployeePreSelectionAgreementsAgreedBy": "Agreed by",
"Audit_EmployeePreSelectionAgreementsAgreementName": "Agreement Name",
"Audit_EmployeeSelectionAudit": "Selection Audit",
"Audit_EmployeeSharesAudit": "Employee Shares Audit",
"Audit_EndDate": "End Date:",
"Audit_EventVersionDCL_Title": "Event Version DCL Audit",
"Audit_EventVersionDCL_FilterByAdminName": "Filter by admin name",
"Audit_EventVersionDCL_VersionContext": "Context:",
"Audit_EventVersionDCL_VersionEffectiveDate": "Effective date:",
"Audit_EventVersionDCL_VersionDescription": "Description:",
"Audit_InterfaceVersionDCL_FilterByInterfaceOrAdminName": "Filter by interface or admin name",
"Audit_InterfaceVersionDCL_InterfaceName": "Interface name:",
"Audit_InterfaceVersionDCL_InterfaceVersionStartDate": "Interface version start date:",
"Audit_InterfaceVersionDCL_Title": "Interface Version DCL Audit",
"Audit_InterfaceVersionDCL_VersionContext": "Context:",
"Audit_LifeEventsTitle": "Employee Life Events Audit",
"Audit_NewValue": "New",
"Audit_NoAuditTypeFilter": "No Audit Type Filter",
"Audit_NoBenefitFilter": "No Benefit Filter",
"Audit_OldValue": "Old",
"Audit_OrganisationExportDownload": "Organisation Export Download",
"Audit_SchemeExportDownload": "Scheme Export Download",
"Audit_OrganisationInterfaceTemplateVersion": "Organisation Interface Template Version",
"Audit_OrganisationOverviewAction": "Action",
"Audit_OrganisationOverviewAllSources": "All Sources",
"Audit_OrganisationOverviewChanges": "Changes:",
"Audit_OrganisationOverviewDescription": "Description",
"Audit_OrganisationOverviewDetails": "Details:",
"Audit_OrganisationOverviewSource": "Source",
"Audit_OrganisationOverviewTitle": "Organisation Changes Overview",
"Audit_OrganisationTemplateVersion": "Organisation Template Version",
"Audit_OrganisationVersion": "Organisation Version",
"Audit_PayItemsTitle": "Employee Pay Items Audit",
"Audit_PayrollEffective": "Payroll effective:",
"Audit_RateMatrix_BenefitVersionId": "Benefit Version Id",
"Audit_RateMatrix_Download_InitialFile": "Initial file",
"Audit_RateMatrix_Download_OptimizedFile": "Optimized file",
"Audit_RateMatrix_Formula": "Formula Edited",
"Audit_RateMatrix_Type": "Matrix Data",
"Audit_RateMatrix_Type_Add": "Add",
"Audit_RateMatrix_Type_Copy": "Copy",
"Audit_RateMatrix_Type_Delete": "Delete",
"Audit_RateMatrix_Type_Update": "Update",
"Audit_RateMatrixAudit": "Rate Matrices Audit",
"Audit_ReportVersionDCL_FilterByReportOrAdminName": "Filter by report or admin name",
"Audit_ReportVersionDCL_ReportName": "Report name:",
"Audit_ReportVersionDCL_ReportVersionStartDate": "Report version start date:",
"Audit_ReportVersionDCL_Title": "Report Version DCL Audit",
"Audit_ReportVersionDCL_VersionContext": "Context:",
"Audit_ResponseCount": "Response Count",
"Audit_RewardCenterAllSources": "All Sources",
"Audit_RewardCenterDescription": "Description",
"Audit_RewardCentreAdvancedConfigurationTitle": "Reward Centre Advanced Configuration Audit",
"Audit_RewardCentreAudit": "Reward Centre Audit",
"Audit_RewardCentreBeneficiaryProfileConfig": "Beneficiary Profile Configuration",
"Audit_RewardCentreBeneficiaryProfileContent": "Beneficiary Profile Content",
"Audit_RewardCentreBenefitEditLayoutContent": "Benefit Edit Layout Content",
"Audit_RewardCentreBenefitServiceProviderConfig": "Benefit Service Provider",
"Audit_RewardCentreBenefitsManagerPageConfiguration": "Benefits Manager Page Configuration",
"Audit_RewardCentreBrandingConfiguration": "Branding configuration",
"Audit_RewardCentreConfigurationTitle": "Reward Centre Configuration Audit",
"Audit_RewardCentreCostsDisplayConfiguration": "Costs Display Configuration",
"Audit_RewardCentreDependantProfileConfig": "Dependant Profile Configuration",
"Audit_RewardCentreDependantProfileContent": "Dependant Profile Content",
"Audit_RewardCentreEligibility": "Reward Centre Eligibility",
"Audit_RewardCentreEmployeeProfileConfig": "Employee Profile Configuration",
"Audit_RewardCentreEmployeeProfileContent": "Employee Profile Content",
"Audit_RewardCentreEngagerConfiguration": "Engager Configuration",
"Audit_RewardCentreEngagerContent": "Engager Content",
"Audit_RewardCentreEngagerPageConfiguration": "Engager Page Configuration",
"Audit_RewardCentreGeneralConfigurationContent": "General Configuration Content",
"Audit_RewardCentreHelpConfigContent": "Help Faqs Content",
"Audit_RewardCentreHelpConfiguration": "Help Page Configuration",
"Audit_RewardCentreHelpContent": "Help Page Content",
"Audit_RewardCentreHelpPageConfiguration": "Help Page Configuration",
"Audit_RewardCentreHomePageConfiguration": "Home Page Configuration",
"Audit_RewardCentreHomePageContent": "Home Page Content",
"Audit_RewardCentreHubPageConfiguration": "Hub Page Configuration",
"Audit_RewardCentreHubPageContent": "Hub Page Content",
"Audit_RewardCentreHubPageOrder": "Hub Page Order",
"Audit_RewardCentreLineManagerConfiguration": "Line manager page configuration",
"Audit_RewardCentreLoginPageConfiguration": "Login Page Configuration",
"Audit_RewardCentreNavigationMenuConfiguration": "Quick Link Configuration",
"Audit_RewardCentreNavigationMenuContent": "Quick Link Content",
"Audit_RewardCentreProfilePageConfiguration": "Profile Page Configuration",
"Audit_RewardCentreReimbursementClaimConfiguration": "Reimbursement Claim Type Layout",
"Audit_RewardCentreReimbursementPageConfiguration": "Reimbursement Page Configuration",
"Audit_RewardCentreReimbursementRewardConfiguration": "Reimbursement Reward Centre Layout Configuration",
"Audit_RewardCentreReimbursementRewardContent": "Reimbursement Reward Centre Layout Content",
"Audit_RewardCentreSchemeIdentityProvider": "Scheme Identity Provider",
"Audit_RewardCentreSchemeSecurityConfiguration": "Scheme Security Configuration",
"Audit_RewardCentreSchemeServiceProviderConfiguration": "Scheme Service Provider Configuration",
"Audit_RewardCentreSchemeTextConfiguration": "Scheme Text Configuration",
"Audit_RewardCentreSelectionConfiguration": "Selection Configuration",
"Audit_RewardCentreSelectionContent": "Selection Content",
"Audit_RewardCentreSettings": "Reward Centre Settings",
"Audit_RewardCentreTitle": "Reward Centre Changes Overview",
"Audit_SchemeFields_FieldName": "Field Name:",
"Audit_SchemeFields_FilterByFieldOrAdminName": "Filter by field or admin name",
"Audit_SchemeFields_SchemeVersion": "Scheme Version:",
"Audit_SchemeFields_Title": "Fields Audit",
"Audit_SchemeOverviewAction": "Action",
"Audit_SchemeOverviewAllSources": "All Sources",
"Audit_SchemeOverviewBenefitHeader": "Benefit Header",
"Audit_SchemeOverviewBenefitVersionDCL": "Benefit Version DCL",
"Audit_SchemeOverviewCampaignReportVersionDCL": "Campaign Report Version DCL",
"Audit_SchemeOverviewChanges": "Changes:",
"Audit_SchemeOverviewClaimExportVersion": "Claim Export Version",
"Audit_SchemeOverviewClaimTypeVersion": "Claim Type Version",
"Audit_SchemeOverviewClaimTypeVersionDCL": "Claim Type Version DCL",
"Audit_SchemeOverviewDescription": "Description",
"Audit_SchemeOverviewDetails": "Details:",
"Audit_SchemeOverviewEvent": "Event",
"Audit_SchemeOverviewField": "Field",
"Audit_SchemeOverviewInterfaceTemplateVersionDCL": "Interface Template Version",
"Audit_SchemeOverviewInterfaceVersionDCL": "Interface Version DCL",
"Audit_SchemeOverviewPayroll": "Payroll",
"Audit_SchemeOverviewReimbursement": "Reimbursement",
"Audit_SchemeOverviewReimbursementVersion": "Reimbursement Version",
"Audit_SchemeOverviewReportVersion": "Report Version",
"Audit_SchemeOverviewReportVersionDCL": "Report Version DCL",
"Audit_SchemeOverviewRewardCentre": "Reward Centre",
"Audit_SchemeOverviewSchemeVersionDCL": "Scheme Version DCL",
"Audit_SchemeOverviewSource": "Source",
"Audit_SchemeOverviewTitle": "Scheme Changes Overview",
"Audit_SchemeSharesAudit": "Shares Audit",
"Audit_SchemeStatus": "Status",
"Audit_SchemeStatus_FilterByAdminName": "Filter by admin name",
"Audit_SchemeStatus_Setting": "Setting:",
"Audit_SchemeStatus_Title": "Status Audit",
"Audit_SchemeVersionDCL_FilterByAdminName": "Filter by admin name",
"Audit_SchemeVersionDCL_Title": "Scheme Version DCL Audit",
"Audit_SchemeVersionDCL_VersionContext": "Context:",
"Audit_SchemeVersionDCL_VersionDescription": "Description:",
"Audit_SchemeVersionDCL_VersionEffectiveDate": "Effective date:",
"Audit_SchemeVersionDCL_VersionName": "Name:",
"Audit_SelectAccountancySummaries": "Select Employee Accountancy Summaries",
"Audit_SelectAuditType": "Select Audit Type",
"Audit_SelectAuditTypes": "Select Audit Types",
"Audit_SelectBenefit": "Select Benefit Filter",
"Audit_SelectChangedByAdminUsers": "Select Users",
"Audit_SelectChangedByUsers": "Select Admins And/Or Employee",
"Audit_SelectDateTimeFrom": "Audit Date From",
"Audit_SelectDateTimeTo": "Audit Date To",
"Audit_SelectedAuditTypes": "Audit Types Selected",
"Audit_SelectedChangedByUsers": "Users Selected",
"Audit_SelectedShares": "Share Types Selected",
"Audit_SelectionPeriodAdministration": "Selection Period Administration Audit",
"Audit_SelectLifeEvents": "Select Life Events",
"Audit_SelectPayItems": "Select Pay Items",
"Audit_SelectShares": "Select Share Types",
"Audit_Status": "Status",
"AuthenticationMechanismHasTooManyRepeatedChars": "Must NOT contain more than two consecutive repeating characters (e.g. aa, bb, 11, 22)",
"AuthenticationMechanismInvalidBannedPasswords": "This is one of the most commonly used passwords. Please use a more secure password.",
"AuthenticationMechanismInvalidComposition": "{0} must contain 3 of the following 4 items: a number, a special character, a capital letter, a lower case letter.",
"AuthenticationMechanismInvalidHasBeenUsedBefore": "{0} has been used before. Please specify another.",
"AuthenticationMechanismInvalidIncludesSequence": "Must NOT contain more than two numbers or letters in sequence (e.g. ab, cd, 12, 67)",
"AuthenticationMechanismInvalidIncludesUsername": "{0} must not contain your username.",
"Benefit_Adjudication": "Adjudication",
"Benefit_Adjudication_Actions": "Actions",
"Benefit_Adjudication_AdjudicateAll_Button_Text": "Adjudication all",
"Benefit_Adjudication_AdjudicateAll_Label_Text": "All selections",
"Benefit_Adjudication_AdjudicationInput": "{0}",
"Benefit_Adjudication_Adjudications": "Adjudications",
"Benefit_Adjudication_AdjudicationStatus": "Status",
"Benefit_Adjudication_Adjust": "Adjust Benefit",
"Benefit_Adjudication_Adjust_EffectiveDate": "Adjust the benefit effective date",
"Benefit_Adjudication_Adjust_EffectiveDate_WarningText": "The benefit effective date will automatically be adjusted to the first available date in the selected period",
"Benefit_Adjudication_Adjust_EffectiveDate_WarningHeader": "Benefit effective date adjustment",
"Benefit_Adjudication_AdjustmentMade": "Adjustment made",
"Benefit_Adjudication_AdminComment_ApproveButton": "Send and Approve",
"Benefit_Adjudication_AdminComment_ApproveTitle": "Are you sure you wish to approve this benefit?",
"Benefit_Adjudication_AdminComment_Heading": "Admin comments",
"Benefit_Adjudication_AdminComment_Placeholder": "Message body",
"Benefit_Adjudication_AdminComment_RejectButton": "Send and Reject",
"Benefit_Adjudication_AdminComment_RejectTitle": "Please add an explanation of why this benefit is to be rejected",
"Benefit_Adjudication_Amount": "Amount:",
"Benefit_Adjudication_Approved": "Approved",
"Benefit_Adjudication_Assignee": "Assignee",
"Benefit_Adjudication_Attachments_Label": "Attachments",
"Benefit_Adjudication_Benefit": "Benefit name",
"Benefit_Adjudication_BenefitAttachment_DisplayName": "{0}",
"Benefit_Adjudication_BenefitAttachment_FileName": "File Name: {0}",
"Benefit_Adjudication_BenefitCosts_CalculateInputs_Label": "Calculate costs",
"Benefit_Adjudication_BenefitCosts_CurrentCosts_Label": "Current",
"Benefit_Adjudication_BenefitCosts_EditInputs_Label": "Edit Inputs",
"Benefit_Adjudication_BenefitCosts_EmployeeCosts_Label": "Employee",
"Benefit_Adjudication_BenefitCosts_EmployeePostTaxCost_Label": "Employee Post-Tax",
"Benefit_Adjudication_BenefitCosts_EmployeePreTextCost_Label": "Employee Pre-Tax",
"Benefit_Adjudication_BenefitCosts_EmployerCosts_Label": "Employer",
"Benefit_Adjudication_BenefitCosts_FundingAccountCosts_Label": "Funding Account",
"Benefit_Adjudication_BenefitCosts_ProjectedCosts_Label": "Projected",
"Benefit_Adjudication_BenefitCosts_TotalCosts_Label": "Total",
"Benefit_Adjudication_Completed_Dialog_MessageBody": "An adjudication decision has already been made, this selection can no longer be adjusted or adjudicated upon.",
"Benefit_Adjudication_Completed_Dialog_Title": "This selection has already been adjudicated upon.",
"Benefit_Adjudication_Costs_Label": "Costs",
"Benefit_Adjudication_Declined": "Declined",
"Benefit_Adjudication_Discarded": "Discarded",
"Benefit_Adjudication_Discarded_Main_Text": "This adjudication has been discarded.",
"Benefit_Adjudication_Employee": "Employee",
"Benefit_Adjudication_EmployeeFilterPlaceholder": "Search by employee",
"Benefit_Adjudication_ExpirationDate": "Expiration date",
"Benefit_Adjudication_NoHiddenInputs": "There are no adjustable inputs",
"Benefit_Adjudication_Organisation": "Organisation",
"Benefit_Adjudication_Payroll": "Payroll",
"Benefit_Adjudication_PendingApproval": "Pending Approval",
"Benefit_Adjudication_Reject": "Reject",
"Benefit_Adjudication_Rejected_Main_Text": "This adjudication has been rejected.",
"Benefit_Adjudication_Rejected_Sub_Text": "This benefit has automatically been deselected.",
"Benefit_Adjudication_RequestedAt": "Date selected",
"Benefit_Adjudication_Required": "Adjudication Required",
"Benefit_Adjudication_SaveAdjustments": "Save adjustments",
"Benefit_Adjudication_SelectAdjudicationStatuses": "Select Adjudication Statuses",
"Benefit_Adjudication_Selection": "Benefit Selection",
"Benefit_Adjudication_Status_Last_Refreshed": "Data as of {0} at {1} UTC",
"Benefit_Adjudication_Status_Pending_Expiry30": "Expires in the next 30 days",
"Benefit_Adjudication_Status_Pending_Expiry7": "Expires in the next 7 days",
"Benefit_Adjudication_Status_Pending_Header": "Pending adjudications",
"Benefit_Adjudication_Status_Pending_Label": "Pending approval",
"Benefit_AdjudicationDetails_AdjudicationExpires_Label": "Adjudication expires",
"Benefit_AdjudicationDetails_BenefitName_Label": "Benefit",
"Benefit_AdjudicationDetails_EffectiveDate_Label": "Effective from",
"Benefit_AdjudicationDetails_SelectionMade_Label": "Selection made",
"Benefit_AllAllowedOnCover": "All allowed on cover",
"Benefit_AllEmployees": "All employees",
"Benefit_ApprovalItems": "Adjudication Inputs/Uploads",
"Benefit_Calculations": "Calculations",
"Benefit_CantResetToDefault": "You can't reset to default because there is no default file in the template!",
"Benefit_ChangeElement_Add_Dialog_Title": "Add a {0} change element",
"Benefit_ChangeElement_Add_Dialog_Title_Field": "Select a field for change element",
"Benefit_ChangeElement_Add_Dialog_Title_PayItem": "Select a pay item for change element",
"Benefit_ChangeElement_ChangeDateType": "Change Date Type",
"Benefit_ChangeElement_ChangeDateType_ChangeDate": "Change Date",
"Benefit_ChangeElement_ChangeDateType_FieldEffectiveDate": "Field Effective Date",
"Benefit_ChangeElement_ChangeDateType_FieldValue": "Field Value",
"Benefit_ChangeElement_Date": "Date",
"Benefit_ChangeElement_EffectiveFrom": "Effective From",
"Benefit_ChangeElement_EffectiveFrom_Tooltip_ChangeDateType": "Change Date Type: ",
"Benefit_ChangeElement_Empty_Subtitle": "Define the Change Elements which can be used to trigger changes within an employee's benefit",
"Benefit_ChangeElement_Empty_Title": "Start adding change elements",
"Benefit_ChangeElement_Enabled": "Enabled",
"Benefit_ChangeElement_Field": "Field",
"Benefit_ChangeElement_PayItems": "Pay Item",
"Benefit_ChangeElement_Rule": "Change Element Rule",
"Benefit_Cost_Header": "Costs:",
"Benefit_Cost_Info": "<b>DCL Category: Costs</b>Calculations and properties that are shown here have been linked with benefit costs as they are only used to derive cost.Properties are used to set static values (\"constants\").Calculations are used compute values from employee and dependant field values, benefit properties, pay items and various other content in Darwin.",
"Benefit_Cost_SubHeader": "Define calculations and properties that are used to determine benefit cost ",
"Benefit_CostElements_RoungingCorrectionTypeBanner_Body": "The rounding correction applied to this benefit is set as “{0}” and differs from the rounding correction defined at the scheme level which is defined to be at “{1}”. The latter is applicable by default to all benefits and funding accounts unless if overwritten, like it is the case for this benefit. This means that the corrections will differ across benefits. If you need a change in configuration for this benefit please contact configuration engineering.",
"Benefit_CostElements_RoungingCorrectionTypeBanner_Header": "Different rounding applied to this benefit",
"Benefit_DarwinVariable_DarwinVariableTextTitle": "Darwin variable applied to this population",
"Benefit_DeleteBenefitConfirmationDialog_ConfirmationCheckboxLabel": "<p>I acknowledge that: <br><br>- all data will be lost<br>- this action is irreversible</p>",
"Benefit_DeleteBenefitConfirmationDialog_ConfirmationHeading": "You are trying to delete <b>{0}</b>",
"Benefit_DeleteBenefitConfirmationDialog_ConfirmationTitle": "Are you sure you want to delete this?",
"Benefit_DeleteBenefitConfirmationDialog_ConfirmationValidationMessage": "Please confirm your acknowledgement",
"Benefit_Download_Actions": "Actions",
"Benefit_Download_DefineFile": "Define the default file the users will be downloading (please provider a file with one of the following extensions {0}):",
"Benefit_Download_EditingRestrictions_Body": "You can only edit the display name and source file of the download, if you need to edit any of the other features please contact the Build Team.",
"Benefit_Download_EditSubtitle": "Downloads are files that the employee can download during selection and upload back (via Uploads) that are relevant for their benefit access",
"Benefit_Download_EditTitle": "Configure download options",
"Benefit_Download_Enabled": "Enabled",
"Benefit_Download_Mandatory": "Mandatory",
"Benefit_Download_PrepopulationHeader": "We found fields that can be prepopulated by DARWIN",
"Benefit_Download_PrepopulationMessage": "Do you wish to review which fields you can prepopulate?",
"Benefit_Download_ReviewDocument": "Review Document",
"Benefit_Download_Source": "Source",
"Benefit_Download_ToWhom": "To whom",
"Benefit_Download_ViewTitle": "View download options",
"Benefit_Download_WhatIsRequired": "What is required",
"Benefit_DownloadsCardTitle": "Document Downloads:",
"Benefit_DownloadsCardTitle_SubHeader": "Define any documents which need to be available for download as part of benefit enrolment",
"Benefit_DownloadsCardTitleTooltip": "<b>DCL Category: Downloads</b>Specifies the rules for benefit document downloads that are configured in the benefit template. Rules can be defined for downloads for certain behaviours, such as whether they are enabled, mandatory, or require approval",
"Benefit_EditingRestrictions": "Editing restrictions",
"Benefit_Expression_ExpressionTextTitle": "Rules applied to this population",
"Benefit_FundingBreakdown_EndDateWarningMessage": "Any remaining benefit allowance will expire on {0}.",
"Benefit_FundingRelatedItems_Header_SubHeader": "Define calculations and properties that impact benefit funding",
"Benefit_FundingSource": "Funding Source",
"Benefit_FundingSource_SourceType_Assignee": "Assignee",
"Benefit_FundingSource_SourceType_Benefit": "Benefit",
"Benefit_FundingSource_SourceType_Description": "Choose the source type you would like to configure for this funding source rule. A grouped cost should have 'Benefit' source type otherwise it will default to 'Assignee'.",
"Benefit_FundingSourceAdd": "Add funding source",
"Benefit_FundingSourceAllCostElements": "All costs",
"Benefit_FundingSourceCostElements": "Cost(s)",
"Benefit_FundingSourceCostElements_Description": "Select which of the benefit cost(s) you would like to fund via this funding source rule. If you choose not to select anything here all costs will be funded.",
"Benefit_FundingSourceCostElements_InvalidSelection_Tooltip": "'{0}' cannot be selected because grouped cost elements must be linked to a 'Benefit' source type.",
"Benefit_FundingSourceDetails": "Funding source basic details",
"Benefit_FundingSourceEditInfo": "Edit the funding source",
"Benefit_FundingSourceName": "Funding source name",
"Benefit_FundingSources": "Funding Sources",
"Benefit_FundingSources_Header": "Funding Sources:",
"Benefit_FundingSources_Header_SubHeader": "Define the funding accounts used to fund this benefit partially or completely",
"Benefit_FundingSources_Tooltip": "<b>DCL Category: Funding Sources</b>Specifies the funding sources that can be used by the benefit's cost elements",
"Benefit_FundingSourcesCalculation": "Funding source selection",
"Benefit_FundingSourcesCalculation_Description": "Select which funding account(s) you would like to use to fund the above benefit cost(s) and in which order they should be used, e.g if the first selected account does not contain the required funds, the second account will be used to cover the remaining balance and so on.",
"Benefit_FundingSourcesCalculationList": "Orderable List",
"Benefit_FundingSourcesCalculationRuledBased": "Based On Rules",
"Benefit_FundingSourcesNotAddedYet": "Funding sources not added yet",
"Benefit_FundingSourceSourceType": "Source Type",
"Benefit_FundingSourcesStartAddingFundingSources": "Click below to start adding funding sources to {0}",
"Benefit_Input_AdjudicationExpiryDate": "Adjudication Expiry Date",
"Benefit_Input_ApprovalsThreshold": "Approvals Threshold",
"Benefit_Input_BehaveAsList": "Behave as List",
"Benefit_Input_DecimalIncrement": "Decimal Increment",
"Benefit_Input_DefaultValue": "Default Value",
"Benefit_Input_Editable": "Editable",
"Benefit_Input_EditableOnSelection": "Editable On Selection",
"Benefit_Input_Enabled": "Enabled",
"Benefit_Input_EvaluateAfterAssigneeLoad": "Evaluate After Assignee Load",
"Benefit_Input_Expiry": "Expiry",
"Benefit_Input_Hidden": "Hidden",
"Benefit_Input_IsListRestrictionExclusive": "exclusive",
"Benefit_Input_ListItems": "List Items",
"Benefit_Input_ListRestriction": "List Restriction",
"Benefit_Input_LockEffectiveDate": "Lock Effective Date",
"Benefit_Input_LockEndDate": "Lock End Date",
"Benefit_Input_LockOverride": "Lock Override",
"Benefit_Input_Mandatory": "Mandatory",
"Benefit_Input_MaxValue": "Maximum Value",
"Benefit_Input_MinValue": "Minimum Value",
"Benefit_Input_RequiresApproval": "Requires Approval",
"Benefit_Input_ValidationMask": "Validation Mask",
"Benefit_Inputs": "Inputs",
"Benefit_Label_FundingAccountCostDeductedFrom": "The total cost for this is deducted from:",
"Benefit_Loa_Actions": "Actions",
"Benefits_Loa_Card_Header": "Leave Of Absence:",
"Benefits_Loa_Card_SubHeader": "Define benefit level leave of absence behaviours",
"Benefit_Loa_CoverLevel_Empty_ValidationMessage": "Cover level values must not be blank.",
"Benefit_Loa_Disabled": "Disabled",
"Benefit_Loa_Edited": "Edited",
"Benefit_Loa_Inherited": "Inherited",
"Benefit_Loa_Name": "Name",
"Benefit_Loa_Select_Cover_Level": "Select Cover Level",
"Benefit_Loa_Source": "Source",
"Benefit_Loa_TooltipData": "<b>DCL Category: Leave of Absence</b>Specifies how a employee's' benefits are managed during a Leave of Absence. This includes determining changes to benefit levels, continuation or suspension of coverage, and any condition that apply during the absence period.",
"Benefit_MissingDescription_Body": "This is set in the template but neither a description nor a default value have been set in the metadata.<br>Please contact the build team for details of what's been configured",
"Benefit_MissingDescription_Body_Country": "This is set in the country but neither a description nor a default value have been set in the metadata.<br>Please contact the build team for details of what's been configured",
"Benefit_MissingDescription_Body_Scheme": "This is set in the scheme but neither a description nor a default value have been set in the metadata.<br>Please contact the build team for details of what's been configured",
"Benefit_MissingDescription_Title": "Missing description",
"Benefit_MultiLanguageDownload_DefineFile": "Define the file the users will be downloading based on selected language (please provider a file with one of the following extensions {0}):",
"Benefit_MultiLanguageDownload_Source": "Multi-language downloads",
"Benefit_MultiLanguageDownloadsListHeader": "What do you want to download",
"Benefit_NoOne": "No one",
"Benefit_PopulationBasedOnDarwinVariable": "Population based on Darwin variable",
"Benefit_PopulationBasedOnRules": "Population based on rules",
"Benefit_RateMatrices_Description": "This benefit uses one or more rate tables to calculate costs. You can see the current values by downloading the rate table, and apply new values by updating the table and uploading.",
"Benefit_RateMatrices_Header": "Rate matrices:",
"Benefit_RateMatrices_Header_SubHeader": "Define any rate tables used to calculate the cost of the benefit",
"Benefit_RateMatrices_Tooltip": "<b>DCL Category: Rate Matrix Formulas</b> Specifies any costs for this benefit using one or more rate table. The rate table automatically generates any factors used to calculated the benefit cost (for example, age and gender). Where defined, employees have to meet all factors for the specified rate to be used.",
"Benefit_RoundingCorrection_Header": "Rounding Correction Type:",
"Benefit_RoundingCorrection_SubHeader": "Defines if cost elements will be rounded and when",
"Benefit_RoundingCorrection_Tooltip": "<b>DCL Category: Rounding Correction Type</b>Determines when to apply rounding corrections. The options are:</br>Always: attempts to apply rounding correction for every period it can. When correction happens an additional transaction is created and the latest rounding error (post-correction) is corrected.</br>End of Scheme Period: attempts to apply rounding correction to the accumulated rounding error (if any) at the end of the scheme period.</br>None: no rounding correction takes places within the scheme period.",
"Benefit_Salary_Header": "Benefit Salary:",
"Benefit_Salary_Info": "<b>DCL Category: Benefit Salary</b><br>Specifies the definition of salary that is used to calculate entitlement or a calculation within the benefit. This is comprised of 3 parts:",
"Benefit_Salary_Info_Date": "Date",
"Benefit_Salary_Info_Date_Description": "At what point in time should the values for the pay items be calculated from",
"Benefit_Salary_Info_PayItems": "Pay Items",
"Benefit_Salary_Info_PayItems_Description": "Select which pay items are used in the calculation",
"Benefit_Salary_Info_Type": "Type",
"Benefit_Salary_Info_Type_Description": "Should the pay item value be calculated on an annual or pay period definition",
"Benefit_Salary_SubHeader": "Define the benefit salary if benefit coverage or calculations are based on pay items",
"Benefit_Tooltip_Added": "Successfully added!",
"Benefit_Tooltip_NoFile": "File was not uploaded",
"Benefit_Tooltip_Updated": "Successfully updated!",
"Benefit_Upload_Actions": "Actions",
"Benefit_Upload_AddTitle": "Add new upload",
"Benefit_Upload_AllowedExtensions_Body": "Employees will be only able to upload files that match the following file extensions: {0}.<br>If you wish to allow any other formats please make a request to the Build team ",
"Benefit_Upload_AllowedExtensions_Title": "File formats allowed",
"Benefit_Upload_DataSensitivity": "Data Sensitivity",
"Benefit_Upload_Editable": "Editable",
"Benefit_Upload_EditingRestrictions_Body": "You can only edit the display name of the upload, if you need to edit any of the other features please contact the Build Team.",
"Benefit_Upload_EditSubtitle": "Uploads are files/forms that the employee will be requested to provide in order to complete a benefit selection. These can be linked to existinhg downloads from Reward Centre configuration (user is required to download the form and then upload the same form filled) or not (user only needs to upload a document).",
"Benefit_Upload_EditTitle": "Configure upload options",
"Benefit_Upload_Enabled": "Enabled",
"Benefit_Upload_Information_Body": "If you want to make sure that the employee will upload a file based on a previous downloaded file you need to do so in Reward Centre Configuration",
"Benefit_Upload_Information_Title": "Wish to link this upload to a download?",
"Benefit_Upload_Mandatory": "Mandatory",
"Benefit_Upload_NeedsApproval": "Needs Approval",
"Benefit_Upload_RequiresApproval": "Requires Approval",
"Benefit_Upload_ToWhom": "To whom",
"Benefit_Upload_ViewTitle": "View Upload Options",
"Benefit_Upload_WhatIsRequired": "What is required",
"Benefit_UploadsAddNew": "Add new upload",
"Benefit_UploadsCardTitle": "Document Uploads:",
"Benefit_UploadsCardTitle_SubHeader": "Define any documents which need to be available for upload as part of benefit enrolment",
"Benefit_UploadsCardTitleTooltip": "<b>DCL Category: Uploads</b>Specifies the rules for benefit document uploads that are configured in the benefit template. Rules can be defined for uploads for certain behaviours, such as whether they are enabled, mandatory, or require approval",
"Benefit_UploadsEmptyDescription": "Please define the files that need to be uploaded by the employee (these can be related to an existing download or independent from it).",
"Benefit_UploadsEmptyHeader": "Start defining uploads",
"BenefitDownload_DocumentPrepopulation_AssigneeFullName": "Assignee Full Name",
"BenefitDownload_DocumentPrepopulation_BenefitName": "Benefit Name",
"BenefitDownload_DocumentPrepopulation_BenefitPolicyNumber": "Policy number",
"BenefitDownload_DocumentPrepopulation_BenefitProviderProductIdentifier": "Provider number",
"BenefitDownload_DocumentPrepopulation_BenefitProviderProductName": "Provider product name",
"BenefitDownload_DocumentPrepopulation_CollectionIndex": "Collection Index",
"BenefitDownload_DocumentPrepopulation_EmployeeAnnualActualCurrentCost": "Employee Annual Actual Current Cost",
"BenefitDownload_DocumentPrepopulation_EmployeePeriodActualCost": "Employee Period Actual Cost",
"BenefitDownload_DocumentPrepopulation_EmployerAnnualActualCurrentCost": "Employer Annual Actual Current Cost",
"BenefitDownload_DocumentPrepopulation_EmployerPeriodActualCost": "Employer Period Actual Cost",
"BenefitDownload_DocumentPrepopulation_Field": "Field",
"BenefitDownload_DocumentPrepopulation_Filter": "Filter",
"BenefitDownload_DocumentPrepopulation_FilterCondition": "Filter Condition",
"BenefitDownload_DocumentPrepopulation_FilterValue": "Filter Value",
"BenefitDownload_DocumentPrepopulation_ProviderName": "Provider Name",
"BenefitDownload_DocumentPrepopulation_SchemeCurrentDate": "Current Date",
"BenefitDownload_DocumentPrepopulation_SchemeName": "Scheme Name",
"BenefitDownload_DocumentPrepopulation_Subtitle": "Map the fields that will be displayed on this downloadable document to the employee",
"BenefitDownload_DocumentPrepopulation_Title": "Document Prepopulation",
"BenefitDownload_DocumentPrepopulation_Type": "Type",
"BenefitDownload_DocumentPrepopulation_ValueType": "Value Type",
"BenefitDownload_FileExtensionError": "File has invalid extension.",
"BenefitDownload_FileSizeError": "File is invalid. It exceeds maximum file size of 15MB.",
"Benefits_Access": "Access",
"Benefits_Accordion_Adjudications": "Adjudications",
"Benefits_Accordion_AllowedOnCover": "Allowed on cover",
"Benefits_Accordion_AssigneeDisplayText": "Assignee display text calculations and properties",
"Benefits_Accordion_AssigneeSelectionPeriod": "Selection Period",
"Benefits_Accordion_AssigneeSelectionPeriodPriority": "Selection Period Priority",
"Benefits_Accordion_BenefitDates": "Benefit dates and changes to benefit",
"Benefits_Accordion_BenefitDetails": "Benefit details",
"Benefits_Accordion_CostCalculationsAndProperties": "Cost calculations and properties",
"Benefits_Accordion_DeselectionPreferences": "Deselection preferences",
"Benefits_Accordion_DisplayTextCalc": "Benefit display text calculations and properties",
"Benefits_Accordion_DownloadsUploadsAgreements": "Downloads, uploads, and agreements",
"Benefits_Accordion_InputsAndPreSelectionFields": "Inputs and pre-selection fields",
"Benefits_Accordion_LinkedBenefits": "Linked benefits",
"Benefits_Accordion_PolicyDocuments": "Provider Documents:",
"Benefits_Accordion_PolicyDocuments_SubHeader": "Define which policy documents will be exposed to configurators",
"Benefits_Accordion_RateMatrices": "Rate matrices",
"Benefits_Accordion_SalaryDefinition": "Salary definition",
"Benefits_Accordion_SelectionAndAutoAllocationPreferences": "Selection and auto allocation preferences",
"Benefits_Accordion_SumAssured": "Sum Assured",
"Benefits_Add_LinkedBenefits_Subheading": "Define the benefits that will be linked to this benefit so that in further steps you can define the nature of this link.",
"Benefits_AddBenefit": "Add Benefit",
"Benefits_AddBenefitDialog_AddBenefitBasedOnTemplate": "Add benefit based on template {0}",
"Benefits_AddBenefitDialog_NameNotEditable": "This name won't be editable",
"Benefits_AddBenefitDialog_WarningMessage": "This will be the name used to reference this benefit from within Darwin, display name to employees will be defined in subsequent steps",
"Benefits_AddBenefitSimple": "Add Benefit Simple",
"Benefits_AddContainerBenefit": "Add Benefit Lite",
"Benefits_AddMutuallyExclusiveBenefitRules": "Mutual Exclusivity",
"Benefits_AddNewVersion": "Add New Version",
"Benefits_Adjudications_HeaderText_SubHeader": "Define calculations and properties that impact adjudications",
"Benefits_Agreements_Calculation_EnabledTo": "Enabled to",
"Benefits_Agreements_Checkout_Info_Body": "Checkout agreements will show on the checkout page cost panel if the benefit is in cart AND the agreement is enabled.",
"Benefits_Agreements_Checkout_Info_Header": "Conditions to display this checkout agreement",
"Benefits_Agreements_ConfigEdit_Add": "Let's start creating this benefit agreement",
"Benefits_Agreements_ConfigEdit_Edit": "Edit {0} configuration",
"Benefits_Agreements_ConfigEdit_Subtitle_Add": "Please define the configuration preferences. You'll be asked to provide the display text shown to employees in the next step.",
"Benefits_Agreements_ConfigEdit_Subtitle_DifferentLevel": "You can only define who can access this agreement at benefit level. If you wish to change any of the other preferences, you can do so at scheme or country level. ",
"Benefits_Agreements_ConfigEdit_SystemName": "System Name",
"Benefits_Agreements_ConfigEdit_View": "View {0} configuration",
"Benefits_Agreements_Country_Tooltip_Content": "The display text of this agreement is reused across the country and can't be edited at benefit level.<br><br>Defining who can access this agreement is benefit specific and can be edited at this level.",
"Benefits_Agreements_CreateNew": "Create custom",
"Benefits_Agreements_Disabled_Tooltip_Body": "This agreement is disabled and therefore not shown to employees (equivalent to deleting the agreement).<br><br>If you want to activate this agreement again, you need to select “Edit” and set the enabled rule to an option different from “No one”. This will make it visible to the configured population.",
"Benefits_Agreements_Disabled_Tooltip_Header": "Currently not shown to employees",
"Benefits_Agreements_DisplayTextEdit_Add_Title": "Add {0} display text",
"Benefits_Agreements_DisplayTextEdit_Confirmation_Heading": "Changes made will be applied to all the benefits using this agreement: ",
"Benefits_Agreements_DisplayTextEdit_DisplayName": "Display Name",
"Benefits_Agreements_DisplayTextEdit_Edit_Title": "Edit {0} display text",
"Benefits_Agreements_DisplayTextEdit_LanguagesError_Property": "Please correct the errors in the following languages",
"Benefits_Agreements_DisplayTextEdit_ShortText": "Confirmation message",
"Benefits_Agreements_DisplayTextEdit_ShortText_Subtitle": "This will be shown with the checkbox where the user will state their compliance with the agreement",
"Benefits_Agreements_DisplayTextEdit_Text": "Agreement Text",
"Benefits_Agreements_DisplayTextEdit_Text_Subtitle": "This will be the content displayed to the employees",
"Benefits_Agreements_DisplayTextEdit_UnsavedChanges_ContinueEditing": "Continue Editing",
"Benefits_Agreements_DisplayTextEdit_UnsavedChanges_DiscardAction": "Discard changes",
"Benefits_Agreements_DisplayTextEdit_UnsavedChanges_SaveAction": "Save changes",
"Benefits_Agreements_DisplayTextEdit_UnsavedChanges_Title": "You have unsaved changes",
"Benefits_Agreements_DisplayTextEdit_View_Title": "View {0} display text",
"Benefits_Agreements_Edit_Back": "< Back to existing agreements",
"Benefits_Agreements_Edit_Country_Body": "Agreement imported from country level. You can only edit the enable of this agreement.",
"Benefits_Agreements_Edit_Country_Body_Short": "Agreement imported from country level.",
"Benefits_Agreements_Edit_Country_Header": "Editing restriction applied",
"Benefits_Agreements_Edit_Detail": "Provide the agreement details",
"Benefits_Agreements_Edit_DialogHeading": "If you choose “Yes” all the configuration done for this agreement will be lost.",
"Benefits_Agreements_Edit_DialogTitle": "Are you sure you wish to go back to existing agreements?",
"Benefits_Agreements_Edit_DisplayName": "Display Name",
"Benefits_Agreements_Edit_Header": "Configure {0} agreement",
"Benefits_Agreements_Edit_HeaderAdd": "Create a new agreement",
"Benefits_Agreements_Edit_HeaderView": "View {0} agreement",
"Benefits_Agreements_Edit_Identification": "Identification",
"Benefits_Agreements_Edit_Preferences": "Define preferences for this agreement",
"Benefits_Agreements_Edit_Subheader": "Provide the agreement details",
"Benefits_Agreements_EditConfig": "Edit configuration",
"Benefits_Agreements_EditDisplayText": "Edit display text",
"Benefits_Agreements_EditDisplayText_Disabled_Body": "The display text can't be edited here and must be edited in the Scheme Configuration area. This can be accessed via Configuration > Agreements > Edit display text.<br><br>You can preview the agreement text by clicking the View icon > View display text",
"Benefits_Agreements_EditDisplayText_Disabled_Header": "Editing restrictions:",
"Benefits_Agreements_Empty_Description": "You can specify agreements which will be required for employees to provide in the context of this benefit.",
"Benefits_Agreements_Empty_Header": "Start adding agreements",
"Benefits_Agreements_Header": "Agreements:",
"Benefits_Agreements_Header_SubHeader": "Request agreement before or after benefit selection",
"Benefits_Agreements_Import_AddCustom": "Add custom",
"Benefits_Agreements_Import_Empty_Subtitle": "There are no agreements pre-defined for {0}. You can create a custom agreement by clicking “Add custom”",
"Benefits_Agreements_Import_Empty_Title": "No reusable agreements available",
"Benefits_Agreements_Import_Footer_Body": "Create a custom agreement for this benefit (can be of type pre selection or post selection).",
"Benefits_Agreements_Import_Header": "Add agreement to {0}",
"Benefits_Agreements_Import_NoAgreements_Checkout": "No checkout agreements available",
"Benefits_Agreements_Import_NoAgreements_Label": "Can't find what you need?",
"Benefits_Agreements_Import_NoAgreements_PreSelection": "No pre selection agreements available",
"Benefits_Agreements_Import_NoPostSelection": "No post selection agreements available",
"Benefits_Agreements_Import_Preview": "Preview",
"Benefits_Agreements_Import_Search": "Search agreement",
"Benefits_Agreements_Import_Search_Tooltip": "{0} agreements found",
"Benefits_Agreements_Import_Select": "Select",
"Benefits_Agreements_Import_Subtitle": "Here you can access DARWIN's pre-configured agreements available to {0} that you can import. You can also create custom agreements for this benefit.<br><br>Define the agreements you want to make available for this benefit.",
"Benefits_Agreements_Info": "<b>DCL Category: Agreements</b>Request agreement before or after benefit selection",
"Benefits_Agreements_List_Actions": "Actions",
"Benefits_Agreements_List_Add": "Add new agreement",
"Benefits_Agreements_List_Level": "Level",
"Benefits_Agreements_List_Name": "What is required",
"Benefits_Agreements_List_ToWhom": "To whom",
"Benefits_Agreements_List_Type": "When",
"Benefits_Agreements_MissingDescription_Body": "This is set in the {0} but neither a description nor a default value have been set in the metadata.<br>Please contact the build team for details of what's been configured",
"Benefits_Agreements_MissingDescription_Title": "Missing description",
"Benefits_Agreements_PostSelection": "Post Selection",
"Benefits_Agreements_PostSelection_Info_Body": "Post Selection agreements will show in the cost panel of the benefit selection page if the benefit has been changed or deleted AND the agreement is enabled",
"Benefits_Agreements_PostSelection_Info_Header": "Conditions to expose this post selection agreement",
"Benefits_Agreements_PreSelection": "Pre Selection",
"Benefits_Agreements_PreSelection_Info_Body": "Pre Selection agreements will show before the employee accesses the benefit edit page AND the agreement is enabled.",
"Benefits_Agreements_PreSelection_Info_Header": "Conditions to expose this pre selection agreement",
"Benefits_Agreements_Preview_Define": "Define who can access this agreement",
"Benefits_Agreements_Preview_Review": "Review reusable agreement information",
"Benefits_Agreements_PreviewConfig": "Preview configuration",
"Benefits_Agreements_PreviewDisplayText": "Preview display text",
"Benefits_Agreements_Review_Description_Body": "You can only define who can access this agreement at benefit level. If you wish to change any of the other preferences you can do so at the level where the agreement sits e.g scheme or country.<br><br>Alternatively, you can go back to the previous overlay and create a new custom agreement applicable only to this benefit.",
"Benefits_Agreements_Review_Description_Header": "Customisation restrictions",
"Benefits_Agreements_Review_Title": "Add {0}",
"Benefits_Agreements_Review_UnsavedChanges_Heading": "If you choose “Yes” all the configuration done for the {0} will be lost and the agreement will not be added to this benefit.",
"Benefits_Agreements_Review_UnsavedChanges_Title": "Are you sure you wish to cancel adding {0} to {1}?",
"Benefits_Agreements_Scheme_Tooltip_Content": "The display text of this agreement is reused across the scheme and can't be edited at benefit level.<br><br>Defining who can access this agreements is benefit specific and can be edited at this level.",
"Benefits_Agreements_Tooltip_Content": "This agreement can only be used for this benefit.",
"Benefits_Agreements_Tooltip_DisplayTextMissing_Body": "Display text is missing from this configuration.<br><br> Please provide display text for this agreement by clicking 'Edit display text'",
"Benefits_Agreements_Tooltip_DisplayTextMissing_Header": "Display text missing",
"Benefits_Agreements_Type_Checkout": "Checkout",
"Benefits_Agreements_Type_PostSelection": "Post Selection",
"Benefits_Agreements_Type_PreSelection": "Pre Selection",
"Benefits_Agreements_UnsavedChanges_Message": "Do you wish to save the changes you made to {0} for {1}?",
"Benefits_Agreements_ViewConfig": "View configuration",
"Benefits_Agreements_ViewDisplayText": "View display text",
"Benefits_AllDependantTypes": "All dependant types",
"Benefits_Allow": "Allow",
"Benefits_Allow_HeaderText": "Benefit Eligibility:",
"Benefits_Allow_HeaderText_SubHeader": "Define which employees can access the benefit",
"Benefits_Allow_TooltipText": "<b>DCL Category: Allow</b>Specifies any base level eligibility conditions for who is eligible for the benefit. This can be defined at the template and/or scheme implementation level; and where both are implemented the employee must meet all criteria to be eligible",
"Benefits_AssigneeAllow": "Assignee Eligibility:",
"Benefits_AssigneeAllow_Info": "<b>DCL Category: Assignee Allow</b>Specifies which assignees (employees/dependants) if any, are eligible for cover on the benefit. For example, this could include, spouse, child, mother, father etc.",
"Benefits_AssigneeAllow_SubHeader": "Define who can be added to cover",
"Benefits_AssigneeAllowRule": "Assignee Allow Rule",
"Benefits_AssigneeAutoAllocate": "Assignee Auto Allocation:",
"Benefits_AssigneeAutoAllocate_Info": "<b>DCL Category: Assignee Auto Allocate</b>Specifies whether employee and/or dependants need to be manually added to cover or whether they are automatically added to cover without a selection being required. This rule can be provided conditionally; meaning some dependants may be automatically allocated whilst others may be manually assigned.",
"Benefits_AssigneeAutoAllocate_SubHeader": "Define who should be auto allocated selections",
"Benefits_AssigneeDeselectable": "Assignee Discontinuation:",
"Benefits_AssigneeDeselectable_Info": "<b>DCL Category: Deselectable Assignee</b>Specifies if employees and/or dependants can discontinue benefit membership once established. This can be used for auto-allocated or manually allocated dependants.",
"Benefits_AssigneeDeselectable_SubHeader": "Define who can be manually removed from cover (deselected)",
"Benefits_AssigneeDisplayText": "Assignee Display Text",
"Benefits_AssigneeDisplayText_HeaderText": "Define text values which will be shown for each assignee on cover",
"Benefits_AssigneeDisplayText_TooltipText": "<b>Assignee Display Text</b>Assignee display text is used to define the text shown for each assignee covered on the benefit. Most typically this will be used to summarise each assignee's benefit coverage; for instance the employee's cover level, their spouse's cover level and each of their children's cover levels. Since this can differ for each assignee on cover, the assignee display text defines the data attributes and/or flat text which constructs the text displayed.",
"Benefits_AssigneeExpiry": "Assignee Expiry",
"Benefits_AssigneeExpiry_HeaderText": "Expiry:",
"Benefits_AssigneeExpiry_HeaderText_SubHeader": "Define if benefit coverage automatically expires for employees and dependants.",
"Benefits_AssigneeExpiry_TooltipText": "<b>DCL Category: Assignee Expiry</b>Specifies an expiration rule for employees and dependants from cover. When effective and triggered, employees and dependants will automatically discontinue cover. For instance, an employee may lose their benefit coverage in the month after terminating employment.",
"Benefits_AssigneeMutuallyInclusive_HeaderText": "Mutual Inclusivity:",
"Benefits_AssigneeMutuallyInclusive_HeaderText_SubHeader": "Define if assignees of a certain type should be added or removed from cover at the same time",
"Benefits_AssigneeMutuallyInclusive_TooltipText": "<b>DCL Category: Assignee Mutually Inclusive</b>Assignee Mutual Inclusivity determines if assignees of a certain type, or who meet specified criteria, are added and removed from cover together. For example, a benefit might specify that if any child is added to cover, then all children must be added to cover.<br /><br />Typically this will be set in the benefit template.",
"Benefits_AssigneePriority_HeaderText": "Assignee Priority:",
"Benefits_AssigneePriority_HeaderText_SubHeader": "Define the processing order of who can be added to cover (eg: spouse before child)",
"Benefits_AssigneePriority_TooltipText": "<b>DCL Category: Assignee Priority</b>Assignee Priority allows you to define the processing order of assignees. This can be based on the assignee type (Employee or Dependant) or other properties such as their age. For example, it could specify that the Employee's spouse should be processed before any children.<br /><br />Typically this will be set in the benefit template.",
"Benefits_AssigneeSelectable": "Assignee Manual Allocation:",
"Benefits_AssigneeSelectable_Info": "<b>DCL Category: Assignee Selectable</b>Specifies which employee and/or dependant types can be manually added to benefit coverage. This does not affect uploads or auto-allocated benefits (which are evaluate using the Assignee Allow rule).",
"Benefits_AssigneeSelectable_SubHeader": "Define who can be manually added to cover",
"Benefits_AssigneeSelectionPeriod_HeaderText": "Selection Period Priority:",
"Benefits_AssigneeSelectionPeriod_HeaderText_SubHeader": "Define the selection period to use if more than one is available with the same effective date",
"Benefits_AssigneeSelectionPeriod_TooltipText": "<b>DCL Category: Assignee Selection Period</b>There can only be 1 selection period open per assignee for a specific effetive date. This prioritises the selection periods for each assignee based on the type of selection period. It will always be set in the template and typically it will not need to be updated.",
"Benefits_AssigneeSelectionPeriodAllowed_HeaderText": "Selection Period Allowed:",
"Benefits_AssigneeSelectionPeriodAllowed_HeaderText_SubHeader": "Define which selection period is allowed for assignees",
"Benefits_AssigneeSelectionPeriodAllowed_TooltipText": "<b>DCL Category: Assignee Selection Period Allowed</b>This allows selection periods to either be closed as per their configuration or on a per assignee basis that are based on payroll closing or benefits being checked out.",
"Benefits_AssigneeSelectionPeriodPriority_HeaderText": "Selection Period Priority:",
"Benefits_AssigneeSelectionPeriodPriority_HeaderText_SubHeader": "Define the priority of selection periods for assignees",
"Benefits_AssigneeSelectionPeriodPriority_TooltipText": "<b>DCL Category: Assignee Selection Period Priority</b>There can only be one selection period open per assignee for the same effective date. Where there is more than one selection period for an assignee with the same effective date this configuration will determine which selection period is used. The order is numerically ascending, so 1 is the highest priority.",
"Benefits_AssigneeTypes": "Assignee Types",
"Benefits_AssigneeTypes_HeaderText": "Assignee Types Allowed:",
"Benefits_AssigneeTypes_HeaderText_SubHeader": "Define which types of assignee can be assigned to the benefit",
"Benefits_AssigneeTypes_TooltipText": "<b>DCL Category: Assignee Types</b>Specifies whether, employees, dependants and / or beneficiaries can be assigned to benefit coverage",
"Benefits_AutoAllocate": "Auto Allocate",
"Benefits_AutoAllocate_HeaderText": "Auto Allocation:",
"Benefits_AutoAllocate_HeaderText_SubHeader": "Define which employees will receive the benefit automatically",
"Benefits_AutoAllocate_TooltipText": "<b>DCL Category: Auto Allocate</b>Specifies if the benefit has to be selected by the employee or whether they automatically recieve it. If the latter is true, the assignees specified in Assignee Auto Allocate will receive the benefit at the specified default level(s), without explicit selection at the timing specified in the benefit's effective dating rules. This rule can be provided conditionally to employees; meaning some employees may have to select the benefit whilst others may receive it automatically",
"Benefits_Back": "< Back To Benefit List",
"Benefits_BackToBenefit": "< Back To Benefit",
"Benefits_BackToConfig": "< Back To Benefit Configuration",
"Benefits_BackToDirectory": "< Back To Template Directory",
"Benefits_Beneficiaries": "Beneficiaries",
"Benefits_BeneficiaryBenefitConfiguration": "Beneficiary Benefit Configuration",
"Benefits_BeneficiaryBenefitConfiguration_ContingentBeneficiaryBenefitInput": "Contingent Input",
"Benefits_BeneficiaryBenefitConfiguration_DuplicateInputError": "Benefit Input for Primary and Contingent Beneficiary cannot be same",
"Benefits_BeneficiaryBenefitConfiguration_EditConfig": "Edit Beneficiary Layout",
"Benefits_BeneficiaryBenefitConfiguration_PrimaryBeneficiaryBenefitInput": "Primary Input",
"Benefits_BeneficiaryBenefitConfiguration_Saved": "Beneficiary Configuration Saved",
"Benefits_Benefit": "Benefit",
"Benefits_BenefitAvailableInSchemePeriod": "Benefit available in the scheme period",
"Benefits_BenefitChanges_HeaderText": "Change Elements: ",
"Benefits_BenefitChanges_HeaderText_SubHeader": "Define the Change Elements which can be used to trigger changes within an employee's benefit",
"Benefits_BenefitChanges_Tooltip_Body": "Benefit Change Elements are used to let us state what non-benefit changes (e.g. Fields and Pay Items) can trigger changes within an employee's benefit and allows DARWIN to track the effective dates of when these changes occur.<br><br>Not only does this allow for accurate start, change and end date tracking for the benefit but also allows DARWIN to produce accurate values for change-impacted benefit features such as prorated cost elements.",
"Benefits_BenefitChanges_Tooltip_Header": "DCL Category: Change Elements",
"Benefits_BenefitContainer_Tooltip_Header": "This is a simplified version of a benefit to host basic benefit from a third party system",
"Benefits_BenefitContainer_Tooltip_SubHeader": "Configure the inputs needed to pass benefit values into DARWIN using starting position upload",
"Benefits_BenefitContainerAddInput": "Add custom input",
"Benefits_BenefitContainerDetails": "Provide details that will help identify the benefit in Control Centre and in Reward Centre",
"Benefits_BenefitDownloadConfig": "Benefit Download Configuration",
"Benefits_BenefitEffective": "Benefit Effective",
"Benefits_BenefitSystemName": "Benefit system name",
"Benefits_BenefitTemplateServiceProvider_Deleted": "Benefit Template Service Provider has been deleted successfully",
"Benefits_BenefitTemplateServiceProvider_EmptyState_Description": "Click below to add a benefit template service provider",
"Benefits_BenefitTemplateServiceProvider_EmptyState_Header": "No benefit template service providers are configured yet",
"Benefits_BenefitTemplateServiceProvider_Saved": "Benefit Template Service Provider has been saved successfully",
"Benefits_BenefitTemplateServiceProvider_View": "View Benefit Template Service Providers",
"Benefits_BenefitTemplateServiceProviders": "Benefit Template Service Providers",
"Benefits_BenefitVersion": "Benefit Version",
"Benefits_BenefitVersionDefaultDescription": "No description has been provided yet. You can include a description by selecting this benefit version > choosing benefit details tab > benefit version identification accordion.",
"Benefits_BenefitVersionDescription": "Benefit Version Description",
"Benefits_BenefitVersionDetails": "Benefit version details",
"Benefits_BenefitVersionDetailsHaveBeenSaved": "Benefit version details updates have been saved.",
"Benefits_BenefitVersionID": "Benefit Version ID:",
"Benefits_BenefitVersionIdentification": "Benefit Version Identification:",
"Benefits_BenefitVersionIdentification_SubHeader": "Provide details that will help identify the benefit in Control Centre and in Reward Centre",
"Benefits_BenefitVersionName": "Benefit Version Name",
"Benefits_BenefitVersionStartDate": "Benefit version start date",
"Benefits_BenefitVersionStartDateTooltip": "The benefit start date sets the start date for the first version of the benefit. This can be altered from within benefit configuration. Benefit versions become effective based on the effective payroll for the employee. It doesn't set when the benefit will become effective for an employee following selection, this is set during configuration of the benefit.",
"Benefits_Broker": "Broker",
"Benefits_BrokerDetails": "Broker Details",
"Benefits_BrokerName": "Broker name",
"Benefits_BrokerProposition": "Broker proposition",
"Benefits_ChangeElement_Add_Date_Title": "Add new date change element",
"Benefits_ChangeElement_Add_Title": "Add {0} change element",
"Benefits_ChangeElement_DisplayName": "Display Name",
"Benefits_ChangeElement_Edit_Title": "Edit {0} change element",
"Benefits_ChangeElement_List_Add": "Add change element",
"Benefits_ChangeElement_View_Title": "View {0} change element",
"Benefits_ChooseFileToUpload": "Choose file:",
"Benefits_CompleteThisSectionBeforeProceeding_Body": "You need to fill in the details below so that a version of the template can be created. Only after that you’ll be enabled to access the next steps and customise sections like creating a specific rate table.",
"Benefits_CompleteThisSectionBeforeProceeding_Header": "Complete this section before proceeding",
"Benefits_ConfigureMutualExclusivityRules_Body": "You will be able to do so once you complete this benefit configuration. In the scheme benefits list you will be presented with a list of the existing benefits and a button where you can set which ones are mutually exclusive.",
"Benefits_ConfigureMutualExclusivityRules_Header": "Need to configure mutual exclusivity rules?",
"Benefits_ContainerBenefit_AutomaticallyIncluded": "Automatically included",
"Benefits_ContainerBenefit_EditInput": "Edit benefit lite input display text",
"Benefits_CostsDeductionsTaxation": "Costs, deductions & Taxation",
"Benefits_Create": "Create",
"Benefits_Create_BenefitExistsOnSchemeForSelectedTemplate": "A Benefit that uses the selected Template already exists on this Scheme.",
"Benefits_Create_BenefitNameDuplicationError": "A Benefit that uses this name already exists on this Scheme.",
"Benefits_CurrentTotalCost": "Active benefits cost (Current)",
"Benefits_Dates": "Dates",
"Benefits_DefaultFileRequired": "The default file is required!",
"Benefits_DefaultSchemePeriod": "Default Scheme Period",
"Benefits_DeleteBenefit": "Delete Benefit",
"Benefits_DeleteRateMatrix": "Delete Rate Matrix",
"Benefits_DeleteVersion": "Delete Version",
"Benefits_Deselectable": "Deselectable",
"Benefits_Deselectable_HeaderText": "Benefit Discontinuation:",
"Benefits_Deselectable_HeaderText_SubHeader": "Define which employees can deselect the benefit",
"Benefits_Deselectable_TooltipText": "<b>DCL Category: Deselectable</b>Specifies if the benefit can be discontinued once selected. This can be used for auto-allocated and manually allocated benefits",
"Benefits_Details": "Details",
"Benefits_DisplayName": "Display Name",
"Benefits_DisplayNameToEmployees": "Display name to employees",
"Benefits_DisplayNameToEmployeesTooltip": "<b>DCL Categories: Display Name</b>This will be the name the employees will see in reward centre and also the name used in the employee advanced record in control centre",
"Benefits_DisplayOptions": "Display options",
"Benefits_DisplayText_BenefitDisplayNameToEmployees": "Benefit display name to employees",
"Benefits_DisplayTextCalc": "Display Text Calc",
"Benefits_DisplayTextCalc_HeaderText": "Define variables used in text which will be shown against the benefit for all assignees",
"Benefits_DisplayTextCalc_TooltipText": "<b>Benefit Display Text</b>Benefit display text is used to define the text shown for the benefit coverage in aggregate; irrespective of each assignee covered on the benefit. Most typically this will be used to summarise the benefit coverage on a wholesale basis; for instance 'Family cover' if the employee has added their spouse and children to cover; irrespective of whether the cover level for each on the benefit differs (e.g. 'bronze' for the employee, 'silver' for the spouse and 'gold' coverage for the children).",
"Benefits_Documentation": "Documentation",
"Benefits_DownloadBenefitForm": "Download Benefit Form",
"Benefits_DownloadLeaveTemplateColumn": "Upload Leave",
"Benefits_DownloadLeaveTemplateLink": "Download Leave Template",
"Benefits_DownloadName": "Download Name",
"Benefits_DownloadRateMatrix": "Download Rates Table",
"Benefits_DownloadStartingPositionTemplateColumn": "Upload Starting Position",
"Benefits_DownloadStartingPositionTemplateLink": "Download Starting Position Template",
"Benefits_EditBenefit": "Edit benefit",
"Benefits_EditBenefitVersionConfig": "Edit Benefit Version Config",
"Benefits_EditLayoutConfig": "Layout Template",
"Benefits_EditLayoutConfig_AddCardConfig": "Add Card Config",
"Benefits_EditLayoutConfig_AddConfig": "Add Layout Config",
"Benefits_EditLayoutConfig_AddDisplayConfig": "Add Display Config",
"Benefits_EditLayoutConfig_AddGroupConfig": "Add Group Config",
"Benefits_EditLayoutConfig_BehaveAsToggle": "Behave As Toggle",
"Benefits_EditLayoutConfig_BenefitDownloadsIDs": "Benefit Download IDs",
"Benefits_EditLayoutConfig_BenefitInputID": "Benefit Input ID",
"Benefits_EditLayoutConfig_BenefitInputID_Error": "BenefitInputID is missing or invalid",
"Benefits_EditLayoutConfig_BenefitServiceProviders": "Benefit Service Providers",
"Benefits_EditLayoutConfig_BenefitUploadIDs": "Benefit Upload IDs",
"Benefits_EditLayoutConfig_CalculateButtonState": "Calculate Button State",
"Benefits_EditLayoutConfig_Card": "Card {0}",
"Benefits_EditLayoutConfig_CardsConfig": "Cards Config",
"Benefits_EditLayoutConfig_DeleteCardConfig": "Delete Card Config",
"Benefits_EditLayoutConfig_DeleteDisplayConfig": "Delete Display Config",
"Benefits_EditLayoutConfig_DeleteGroupConfig": "Delete Group Config",
"Benefits_EditLayoutConfig_Delineated": "Delineated",
"Benefits_EditLayoutConfig_DisplayAsButtons": "Display As Buttons",
"Benefits_EditLayoutConfig_DisplayConfigs": "Display Configs",
"Benefits_EditLayoutConfig_DisplayItem": "Display Item {0}",
"Benefits_EditLayoutConfig_DisplayTextIDs": "Display Text IDs",
"Benefits_EditLayoutConfig_DisplayType": "Display Type",
"Benefits_EditLayoutConfig_EditConfig": "Edit Layout Config",
"Benefits_EditLayoutConfig_EmptyState_Description": "By clicking ‘Add’, any existing <b>template layout</b> will be loaded. Once you click ‘Save’ on the scheme level, it will <b>override the existing template layout</b> for this scheme. To add or edit the benefit layout at the template level instead, go to the benefit template area.",
"Benefits_EditLayoutConfig_EmptyState_Header": "No scheme level inputs are configured",
"Benefits_EditLayoutConfig_Group": "Group {0}",
"Benefits_EditLayoutConfig_Grouping": "Grouping",
"Benefits_EditLayoutConfig_GroupsConfig": "Groups Config",
"Benefits_EditLayoutConfig_GroupContent": "Group {0} Content",
"Benefits_EditLayoutConfig_HideWithoutPostback": "Hide with no post back (cost updates when user clicks 'add to cart')",
"Benefits_EditLayoutConfig_HideWithPostback": "Hide (post back 1 second)",
"Benefits_EditLayoutConfig_IsAPIBenefit": "Is API Benefit",
"Benefits_EditLayoutConfig_IsAPIBenefitHeader": "API Benefit",
"Benefits_EditLayoutConfig_IsAPIBenefitInfo": "Users select their options outside of Darwin at the Benefit Service Provider site. Using APIs, Darwin will send the values of the selection back.",
"Benefits_EditLayoutConfig_LoopBy": "Loop By",
"Benefits_EditLayoutConfig_Required": "Layout config required",
"Benefits_EditLayoutConfig_Saved": "Layout config saved",
"Benefits_EditLayoutConfig_SchemeHeader": "Benefit Selection Layout – Scheme level Inputs",
"Benefits_EditLayoutConfig_ServiceProviders": "Service Providers",
"Benefits_EditLayoutConfig_Show": "Show",
"Benefits_EditLayoutConfig_ShowAddBeneficiaries": "Show Add Beneficiaries button (subject to scheme configuration permitting)",
"Benefits_EditLayoutConfig_ShowAddDependants": "Show Add Dependants button (subject to scheme configuration permitting)",
"Benefits_EditLayoutConfig_ShowAddDependantsOnReview": "Show Add Dependants On Review button (subject to scheme configuration permitting)",
"Benefits_EditLayoutConfig_ShowIneligibleDependants": "Show Ineligible Dependants button (subject to scheme configuration permitting)",
"Benefits_EditLayoutConfig_ShowOptionalTag": "Show Optional Tag",
"Benefits_EditLayoutConfig_SuccessfullyDeleted": "Benefit edit layout config has been successfully deleted.",
"Benefits_EditLayoutConfig_TemplateVersionID_NotSelected": "Version not selected",
"Benefits_EditLayoutConfig_UseOptOutText": "Use Opt Out Text",
"Benefits_EditLayoutConfig_Width": "Width",
"Benefits_EditLayoutContent_AddCardContent": "Add Card Content",
"Benefits_EditLayoutContent_AddContent": "Add Layout Content",
"Benefits_EditLayoutContent_AddDisplayContent": "Add Display Content",
"Benefits_EditLayoutContent_BenefitBasicInfo": "Benefit basic information",
"Benefits_EditLayoutContent_BenefitContentDeleteConfirmation": "Are you sure you want to delete this content?",
"Benefits_EditLayoutContent_BenefitDescription": "Benefit Description",
"Benefits_EditLayoutContent_BenefitIntroTextDescription": "Benefit intro text (This content goes at the top of the benefit selection page)",
"Benefits_EditLayoutContent_BenefitSelectionInfo": "Benefit selection information",
"Benefits_EditLayoutContent_BenefitVersion": "Benefit Version",
"Benefits_EditLayoutContent_CardContent": "Card Content {0}",
"Benefits_EditLayoutContent_CardsContent": "Cards Content",
"Benefits_EditLayoutContent_ContentUpdated": "Content Updated.",
"Benefits_EditLayoutContent_DisplayContent": "Display Content {0}",
"Benefits_EditLayoutContent_DisplayContents": "Display Contents",
"Benefits_EditLayoutContent_DisplayTextLabel": "Display Text Label",
"Benefits_EditLayoutContent_EditContent": "Edit Layout Content",
"Benefits_EditLayoutContent_GroupContent": "Group Content {0}",
"Benefits_EditLayoutContent_Header": "Header",
"Benefits_EditLayoutContent_HideProviderName": "Hide Provider Name",
"Benefits_EditLayoutContent_Info": "Info",
"Benefits_EditLayoutContent_IntroText": "Intro Text",
"Benefits_EditLayoutContent_Language": "Language",
"Benefits_EditLayoutContent_LanguageID": "Language ID: {0}",
"Benefits_EditLayoutContent_LayoutContent": "Layout Content",
"Benefits_EditLayoutContent_MoreInfoLinkDescription": "More info link (Link available on benefit card and benefit selection)",
"Benefits_EditLayoutContent_Name": "Name",
"Benefits_EditLayoutContent_NoBenefitEditLayoutCardsConfigured": "No cards configured in benefit edit layout.",
"Benefits_EditLayoutContent_NoCardsConfigured": "No cards configured.",
"Benefits_EditLayoutContent_NoBenefitEditLayoutGroupsConfigured": "No groups configured in benefit edit layout.",
"Benefits_EditLayoutContent_NoGroupsConfigured": "No groups configured.",
"Benefits_EditLayoutContent_Required": "Layout content required",
"Benefits_EditLayoutContent_ResetToDefault": "Reset to default",
"Benefits_EditLayoutContent_SchemeEditPageMessage": "Any changes made here will be saved at <b>scheme</b> level.",
"Benefits_EditLayoutContent_SchemeLayoutContent": "Scheme Layout Content",
"Benefits_EditLayoutContent_SelectLanguage": "Select Language",
"Benefits_EditLayoutContent_ServiceProvider": "Service Provider",
"Benefits_EditLayoutContent_SsoLinkLabel": "SSO link label",
"Benefits_EditLayoutContent_SSOQuickLink": "SSO Quick Link",
"Benefits_EditLayoutContent_TellMeMore": "Tell Me More",
"Benefits_EditLayoutContent_Tooltips": "Tooltips",
"Benefits_EditLayoutContent_UpdateHeader": "Success",
"Benefits_Effective_HeaderText": "Effectiveness:",
"Benefits_Effective_HeaderText_SubHeader": "Define the effectiveness of benefit membership when an employee and/or dependant joins, changes or terminates benefit coverage.",
"Benefits_Effective_TooltipText": "<b>DCL Category: Effective dating</b>Specifies when benefit membership take effect. For instance, benefit membership starts, changes or terminates from the first of the pay period, first of the following pay period, date of selection etc.",
"Benefits_EligibilityRuleBuilder": "Eligibility Rule Builder",
"Benefits_Employee": "Employee",
"Benefits_EmptyQueryInputs": "Conditions with empty inputs cannot be saved.",
"Benefits_EmptyQueryList": "Conditions that use a list must have at least one item in the list.",
"Benefits_EndDate": "End Date",
"Benefits_EnterDCLHere": "Enter DCL here...",
"Benefits_ErrorCopyingVersion": "Error copying version.",
"Benefits_ErrorUpdatingVersionDate": "Error updating version date.",
"Benefits_FormDownload": "File for Benefit Download",
"Benefits_FormFileUploadSuccess": "File uploaded successfully!",
"Benefits_FormulaName": "Formula Name",
"Benefits_ID": "ID",
"Benefits_Identification": "Identification",
"Benefits_IdentificationDetails": "Identification Details",
"Benefits_InputGroupings_AdjudicationHeader": "Adjudication (hidden)",
"Benefits_InputGroupings_AdjudicationTooltip": "In this section you can configure inputs that aren't displayed to the employee but are required to process the adjudication (approval) of the benefit selection and will be displayed to the adjudicator when reviewing a submission by the employee",
"Benefits_InputGroupings_EmployeeBenefitSelectionHeader": "Employee benefit Selection",
"Benefits_InputGroupings_EmployeeBenefitSelectionTooltip": "In this selection you can configure inputs that are displayed to the employee during the selection flow in Reward Centre",
"Benefits_InputGroupings_EmployeeSpecificRateHeader": "Employee specific rate (hidden)",
"Benefits_InputGroupings_EmployeeSpecificRateTooltip": "In this section you can configure inputs that aren't displayed to the employee but are relevent for the calculation of costs displayed during selection",
"Benefits_InputGroupings_Header": "Define what information is captured on the benefit, including benefit coverage choices and information required to establish membership",
"Benefits_InputGroupings_OtherHeader": "Other inputs",
"Benefits_Inputs_ApprovalDetails": "Approval details",
"Benefits_Inputs_DecimalIncrement_Tooltip": "Increment applied if user edits a numeric input.<br />Eg if default is 1 and decimal increment is 0.5, if employee tries to increase the value in Reward Centre the next value displayed is 1.5",
"Benefits_Inputs_DefaultValue_Tooltip": "Given to the employee without need for selection",
"Benefits_Inputs_Description": "Here you can define the preferences for the inputs displayed to the employees",
"Benefits_Inputs_Description_Tooltip": "{0}</br></br>{1}",
"Benefits_Inputs_Editable_Tooltip": "Can the value of the input be changed in the selection experience.",
"Benefits_Inputs_EditableOnSelection_Tooltip": "Can the value of the input be changed when an assignee is first assigned to the benefit.",
"Benefits_Inputs_Enabled_Tooltip": "Determines if this input is used.",
"Benefits_Inputs_Expiry_Tooltip": "When will the value input expire. If there is a default value it will be reset to this value.",
"Benefits_Inputs_Header": "Configure Input Options",
"Benefits_Inputs_Hidden_Tooltip": "Determines if the input is visible to the employee in the selection experience (Reward Centre).",
"Benefits_Inputs_InteractionPreferences": "Interaction Preferences",
"Benefits_Inputs_List": "List",
"Benefits_Inputs_ListItemRestrictions_Tooltip": "Limit the selectable values in the list to just a subset, or if the list restriction is exclusive, prevent the selection of the values defined in the list restriction.",
"Benefits_Inputs_ListOptions": "List Options",
"Benefits_Inputs_ListOptionsDescription": "You can define below the items to be displayed on the inputs and the order in which they are presented to the user in Reward Centre",
"Benefits_Inputs_LockEffectiveDate_Tooltip": "When the lock applies from. For example, the pay period following a selection, or immediately after selection.",
"Benefits_Inputs_LockEndDate_Tooltip": "The last date that the lock is active.",
"Benefits_Inputs_LockOverride_Tooltip": "Define if there are scenarios where an input can be changed while a lock is in place. For example during a specific life event.",
"Benefits_Inputs_LocksAndExpiry": "Locks and Expiry",
"Benefits_Inputs_Mandatory_Tooltip": "Does a value need to be input to make a selection.",
"Benefits_Inputs_MaximumValue_Tooltip": "Maximum value available for selection by the employee",
"Benefits_Inputs_MinimumValue_Tooltip": "Minimum value available for selection by the employee",
"Benefits_Inputs_Number": "Number",
"Benefits_Inputs_OptionsAvailableForSelection": "Options available for selection",
"Benefits_Inputs_RelatedItemsCard_SubHeader": "Define calculations and properties that impact benefit inputs",
"Benefits_Inputs_SystemName_Header": "System name:",
"Benefits_Inputs_Text": "Text",
"Benefits_Inputs_ValidationMask_Tooltip": "Validation criteria (regex) to ensure that an input is in the right format.",
"Benefits_Inputs_ValuePreferences": "Value Preferences",
"Benefits_Inputs_Values": "Values",
"Benefits_InputsCard_Header": "Benefit Inputs:",
"Benefits_InputsCard_Header_SubHeader": "Define what information is captured on the benefit",