@skysoftware-co/bayan-core-widgets-ui 0.0.4 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +17 -0
- package/.github/copilot/WidgetDevelopmentGuide.md +632 -0
- package/.github/copilot/WidgetProjectStructure.md +81 -0
- package/.github/copilot/git.md +176 -0
- package/.github/copilot/guideline.md +466 -0
- package/.github/copilot-instructions.md +697 -0
- package/.github/prompts/As world class developer, create unit tests for.prompt.md +7 -0
- package/README.md +1 -337
- package/Web.config +7 -0
- package/angular.json +43 -0
- package/package.json +54 -31
- package/projects/bayan-core-ui/README.md +522 -0
- package/projects/bayan-core-ui/ng-package.json +7 -0
- package/projects/bayan-core-ui/package.json +36 -0
- package/projects/bayan-core-ui/src/assets/i18n/ar.json +725 -0
- package/projects/bayan-core-ui/src/assets/i18n/en.json +683 -0
- package/projects/bayan-core-ui/src/assets/i18n/fr.json +687 -0
- package/projects/bayan-core-ui/src/lib/shared/common-methods/navigation.utils.ts +21 -0
- package/projects/bayan-core-ui/src/lib/shared/menu.dtos.ts +107 -0
- package/projects/bayan-core-ui/src/lib/shared/menu.service.ts +157 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/about-dialog-widget/about-dialog-widget.component.html +37 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/about-dialog-widget/about-dialog-widget.component.ts +68 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/change-password-widget/change-password-widget.component.html +56 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/change-password-widget/change-password-widget.component.ts +158 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.html +39 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.ts +152 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/item-widget/item-widget.component.html +39 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/item-widget/item-widget.component.ts +80 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.html +10 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.ts +89 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/settings-widget/settings-widget.component.html +111 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/settings-widget/settings-widget.component.ts +235 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/user-panel-widget/user-panel-widget.component.html +54 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/user-panel-widget/user-panel-widget.component.ts +140 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/top-menu-widget.component.html +107 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/top-menu-widget.component.ts +164 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/top-menu-widget.models.ts +29 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/top-menu-widget.styles.css +1378 -0
- package/projects/bayan-core-ui/src/public-api.ts +14 -0
- package/projects/bayan-core-ui/tsconfig.lib.json +16 -0
- package/projects/bayan-core-ui/tsconfig.lib.prod.json +9 -0
- package/projects/bayan-core-ui/tsconfig.spec.json +13 -0
- package/tsconfig.json +40 -0
- package/fesm2022/skysoftware-co-bayan-core-widgets-ui.mjs +0 -1092
- package/fesm2022/skysoftware-co-bayan-core-widgets-ui.mjs.map +0 -1
- package/index.d.ts +0 -6
- package/lib/shared/common-methods/navigation.utils.d.ts +0 -4
- package/lib/shared/common-methods/navigation.utils.d.ts.map +0 -1
- package/lib/shared/menu.dtos.d.ts +0 -91
- package/lib/shared/menu.dtos.d.ts.map +0 -1
- package/lib/shared/menu.service.d.ts +0 -24
- package/lib/shared/menu.service.d.ts.map +0 -1
- package/lib/top-menu-widget/components/about-dialog-widget/about-dialog-widget.component.d.ts +0 -18
- package/lib/top-menu-widget/components/about-dialog-widget/about-dialog-widget.component.d.ts.map +0 -1
- package/lib/top-menu-widget/components/change-password-widget/change-password-widget.component.d.ts +0 -30
- package/lib/top-menu-widget/components/change-password-widget/change-password-widget.component.d.ts.map +0 -1
- package/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.d.ts +0 -59
- package/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.d.ts.map +0 -1
- package/lib/top-menu-widget/components/item-widget/item-widget.component.d.ts +0 -29
- package/lib/top-menu-widget/components/item-widget/item-widget.component.d.ts.map +0 -1
- package/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.d.ts +0 -23
- package/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.d.ts.map +0 -1
- package/lib/top-menu-widget/components/settings-widget/settings-widget.component.d.ts +0 -37
- package/lib/top-menu-widget/components/settings-widget/settings-widget.component.d.ts.map +0 -1
- package/lib/top-menu-widget/components/user-panel-widget/user-panel-widget.component.d.ts +0 -43
- package/lib/top-menu-widget/components/user-panel-widget/user-panel-widget.component.d.ts.map +0 -1
- package/lib/top-menu-widget/top-menu-widget.component.d.ts +0 -76
- package/lib/top-menu-widget/top-menu-widget.component.d.ts.map +0 -1
- package/lib/top-menu-widget/top-menu-widget.models.d.ts +0 -36
- package/lib/top-menu-widget/top-menu-widget.models.d.ts.map +0 -1
- package/public-api.d.ts +0 -4
- package/public-api.d.ts.map +0 -1
- package/skysoftware-co-bayan-core-widgets-ui.d.ts.map +0 -1
|
@@ -0,0 +1,683 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Notifications": "Notifications",
|
|
3
|
+
"Properties": "Properties",
|
|
4
|
+
"SignOut": "Sign out",
|
|
5
|
+
"Help": "Help",
|
|
6
|
+
"ChangePassword": "Change password",
|
|
7
|
+
"DisplayAlternateNames": "Display Alternate Names",
|
|
8
|
+
"ReleaseHR": "Release HR",
|
|
9
|
+
"BlockHR": "Block HR",
|
|
10
|
+
"ReleaseTK": "Release TK",
|
|
11
|
+
"BlockTK": "Block TK",
|
|
12
|
+
"EmployeeNamesMode": "Employee Names Mode",
|
|
13
|
+
"ShortNames": "Short Names",
|
|
14
|
+
"StandardNames": "Standard Names",
|
|
15
|
+
"FullNames": "Full Names",
|
|
16
|
+
"About": "About",
|
|
17
|
+
"CurrentPassword": "Current password",
|
|
18
|
+
"NewPassword": "New password",
|
|
19
|
+
"ConfirmPassword": "Confirm password",
|
|
20
|
+
"Change": "Change",
|
|
21
|
+
"AboutSkyBayan": "About Sky Bayan",
|
|
22
|
+
"Version": "Version",
|
|
23
|
+
"SkyBayanUpToDate": "Sky Bayan is up to date",
|
|
24
|
+
"LicenseInformation": "License information",
|
|
25
|
+
"ReleaseNotes": "Release notes",
|
|
26
|
+
"TechnicalSupport": "Technical support",
|
|
27
|
+
"Close": "Close",
|
|
28
|
+
"TypeToSearch": "Type to search",
|
|
29
|
+
"BlockHRSuccess": "HR module blocked successfully.",
|
|
30
|
+
"ReleaseHRSuccess": "HR module released successfully.",
|
|
31
|
+
"BlockTKSuccess": "Timekeeping module blocked successfully.",
|
|
32
|
+
"ReleaseTKSuccess": "Timekeeping module released successfully.",
|
|
33
|
+
"AbsenteesInaPeriodReport": "Absentees in a Period",
|
|
34
|
+
"Accommodation": "Accommodation",
|
|
35
|
+
"AccommodationAllocations": "Accommodation Allocation",
|
|
36
|
+
"AccommodationByUnitReport": "Accommodation by Unit",
|
|
37
|
+
"AccommodationReports": "Accommodation",
|
|
38
|
+
"AccommodationSetup": "Accommodation Setup",
|
|
39
|
+
"AccommodationUnits": "Accommodation Units",
|
|
40
|
+
"AccommodationUnitTypes": "Accommodation Unit Types",
|
|
41
|
+
"AccommodationUtilities": "Accommodation Utilities",
|
|
42
|
+
"AccommodationUtilitiesMonthlyCost": "Utilities Monthly Cost",
|
|
43
|
+
"AccountSettings": "Account Settings",
|
|
44
|
+
"AccrualBalanceStatementReport": "Accrual Balance Statement",
|
|
45
|
+
"Actions": "Actions",
|
|
46
|
+
"ActorsSetup": "Actors",
|
|
47
|
+
"AdminUnitLevels": "Admin Unit Levels",
|
|
48
|
+
"AdminUnits": "Admin Units",
|
|
49
|
+
"AllowanceParameters": "Significant Allowances",
|
|
50
|
+
"Allowances": "Allowances",
|
|
51
|
+
"AllowancesAndDeductionsByMonthReport": "Allowances and Deductions by Month",
|
|
52
|
+
"AllowancesSetup": "Allowances",
|
|
53
|
+
"AllowancesSheet": "Allowances Sheet",
|
|
54
|
+
"AllowancesSheets": "Allowances",
|
|
55
|
+
"AllowancesVarianceReport": "Allowances Variance",
|
|
56
|
+
"AnnualBudget": "Annual Budget",
|
|
57
|
+
"AnnualBudgetDiscrepanciesReport": "Annual Budget Discrepancies",
|
|
58
|
+
"Appraisal": "Appraisal",
|
|
59
|
+
"AppraisalDashboard": "Appraisal Dashboard",
|
|
60
|
+
"AppraisalEvaluation": "Evaluation",
|
|
61
|
+
"AppraisalHistory": "Appraisal History",
|
|
62
|
+
"AppraisalIndicators": "Indicators",
|
|
63
|
+
"AppraisalScale": "Scale",
|
|
64
|
+
"AppraisalSetup": "Appraisal Setup",
|
|
65
|
+
"ApprovalHistory": "Approval History",
|
|
66
|
+
"AttendanceCardsReport": "Attendance Cards",
|
|
67
|
+
"AttendanceErrorLogReport": "Attendance Error Log",
|
|
68
|
+
"AttendanceParameters": "Attendance Parameters",
|
|
69
|
+
"AttendanceReconciliation": "Attendance Reconciliation",
|
|
70
|
+
"AttendanceRecords": "Attendance Records",
|
|
71
|
+
"AttendanceReports": "Attendance Reports",
|
|
72
|
+
"AttendanceSetup": "Attendance Setup",
|
|
73
|
+
"AttendanceSheetLogReport": "Attendance Sheet Log",
|
|
74
|
+
"AttendanceSheetRules": "Attendance Sheet Rules",
|
|
75
|
+
"AttendeesReport": "Attendees",
|
|
76
|
+
"AttendenceSheet": "Attendance Sheet",
|
|
77
|
+
"AuditLog": "Audit Log",
|
|
78
|
+
"AuditLogTables": "Audit Log Tables",
|
|
79
|
+
"AuthorizedEmployeesReport": "Authorized Employees",
|
|
80
|
+
"BackOffice": "Back Office",
|
|
81
|
+
"BackOfficeAccounts": "Back Office Accounts",
|
|
82
|
+
"BackOfficeMain": "Back Office Main",
|
|
83
|
+
"BackOfficeMapping": "Back Office Mapping",
|
|
84
|
+
"BanksExport": "Banks Export",
|
|
85
|
+
"BanksPayrollListReport": "Banks Payroll List",
|
|
86
|
+
"BanksSetup": "Banks",
|
|
87
|
+
"BasicSalaryVarianceReport": "Basic Salary Variance",
|
|
88
|
+
"BenefitsSetup": "Benefits Setup",
|
|
89
|
+
"BlockingMonthClosureErrors": "Month Closure Errors",
|
|
90
|
+
"BOAccommodationMapping": "BO Accommodation Mapping",
|
|
91
|
+
"BOAllowanceMapping": "BO Allowance Mapping",
|
|
92
|
+
"BoardMembers": "Board Members",
|
|
93
|
+
"BODeductionMapping": "BO Deduction Mapping",
|
|
94
|
+
"BODueSalaryMapping": "BO Due Salary Mapping",
|
|
95
|
+
"BOIndemnityMapping": "BO Indemnity Mapping",
|
|
96
|
+
"BonusMonthCalculation": "Bonus Month Calculation",
|
|
97
|
+
"BonusMonthClosure": "Bonus Month Closure",
|
|
98
|
+
"BonusMonths": "Bonus Months",
|
|
99
|
+
"BonusMonthVoucher": "Bonus Month Voucher",
|
|
100
|
+
"BonusSalaryAllowancesUC": "Allowances",
|
|
101
|
+
"BonusSalaryReports": "Bonus Salary Reports",
|
|
102
|
+
"BonusSalaryRulesUC": "Bonus Salary Rules",
|
|
103
|
+
"BonusSalarySetup": "Bonus Salary Setup",
|
|
104
|
+
"BonusSalarySheetReport": "Bonus Salary Sheet",
|
|
105
|
+
"BOSocialSecurityIndemnityMapping": "BO Social Security Indemnity Mapping",
|
|
106
|
+
"BOSocialSecurityShareTypesMapping": "BO Social Security Share Types Mapping",
|
|
107
|
+
"BOStatisticMapping": "BO Statistic Mapping",
|
|
108
|
+
"BOTicketMapping": "BO Ticket Mapping",
|
|
109
|
+
"BOVacationTypeMapping": "BO Vacation Type Mapping",
|
|
110
|
+
"Budget": "Budget",
|
|
111
|
+
"BudgetReports": "Budget Reports",
|
|
112
|
+
"CacheEmployeePhotos": "Cache Employee Photos",
|
|
113
|
+
"CancelWFRequests": "Cancel Posted Workflow Requests",
|
|
114
|
+
"CashBankListReport": "Cash Bank List",
|
|
115
|
+
"CashPayrollListReport": "Cash Payroll List",
|
|
116
|
+
"ChangeBankTransferInformation": "Change Bank Transfer Information",
|
|
117
|
+
"ChangeBOAccountNumber": "Change Account Number",
|
|
118
|
+
"ChangeCompanyCluster": "Change Company/Cluster",
|
|
119
|
+
"ChangeEmployeeNumber": "Change Employee Number",
|
|
120
|
+
"ChangeEmployeeProperty": "Change Employee Property",
|
|
121
|
+
"ChangeGradeCode": "Change Grade Code",
|
|
122
|
+
"ChangeOfStatusHistory": "Change of Status History",
|
|
123
|
+
"ChangeOfStatusRequest": "Change of Status Request",
|
|
124
|
+
"ChangePersonalInformationsRequest": "Change Personal Info Request",
|
|
125
|
+
"CityLedgerSheet": "City Ledger Sheet",
|
|
126
|
+
"Classes": "Classes",
|
|
127
|
+
"Cluster": "Cluster",
|
|
128
|
+
"ClusterDashboard": "Cluster Dashboard",
|
|
129
|
+
"ClusterPreferences": "Preferences",
|
|
130
|
+
"ClusterPreferencesMain": "Cluster Preferences Main",
|
|
131
|
+
"Clusters": "Clusters",
|
|
132
|
+
"CompensationRules": "Compensation Rules",
|
|
133
|
+
"ConsolidationReports": "Consolidation Reports",
|
|
134
|
+
"ContractRenewalRequestReport": "Contract Renewal Request",
|
|
135
|
+
"ContractTypes": "Contract Types",
|
|
136
|
+
"CoreCompetency": "Core Competencies",
|
|
137
|
+
"Corporate": "Corporate",
|
|
138
|
+
"CorporateDashboard": "Corporate Dashboard",
|
|
139
|
+
"CostItems": "Cost Items",
|
|
140
|
+
"CourseBudgets": "Course Budgets",
|
|
141
|
+
"CourseCalendar": "Course Calendar",
|
|
142
|
+
"CourseEvaluation": "Course Evaluation",
|
|
143
|
+
"CourseNomination": "Course Nomination",
|
|
144
|
+
"Courses": "Courses",
|
|
145
|
+
"CoursesAttendedByAnEmployeeReport": "Courses Attended by an Employee",
|
|
146
|
+
"CoursesStates": "Course States",
|
|
147
|
+
"CourseTopics": "Course Topics",
|
|
148
|
+
"CreditVacationsSheet": "Credit Vacations Sheet",
|
|
149
|
+
"Custody": "Custody",
|
|
150
|
+
"CustodyItemsSetup": "Custody Items",
|
|
151
|
+
"CustomFields": "Custom Fields",
|
|
152
|
+
"CustomReportComputedFields": "Custom Report Computed Fields",
|
|
153
|
+
"CustomReports": "Custom Reports",
|
|
154
|
+
"CustomReportsSetup": "Custom Reports",
|
|
155
|
+
"CustomRequestReport": "Custom Request",
|
|
156
|
+
"Dashboard": "Dashboard",
|
|
157
|
+
"DailySubtractiveHoursReport": "Daily Subtractive Hours",
|
|
158
|
+
"DailySubtractiveHoursRules": "Daily Subtractive Hours Rules",
|
|
159
|
+
"DatabaseBackup": "Database Backup",
|
|
160
|
+
"DataPushingSummary": "Data Pushing Summary",
|
|
161
|
+
"DeductionEmployerSharesReport": "Deduction Employer Shares",
|
|
162
|
+
"DeductionParameters": "Significant Deductions",
|
|
163
|
+
"Deductions": "Deductions",
|
|
164
|
+
"DeductionsSetup": "Deductions Setup",
|
|
165
|
+
"DeductionsSheet": "Deductions Sheet",
|
|
166
|
+
"DeductionsSheets": "Deductions",
|
|
167
|
+
"DeductOverEntitlementVacationBalances": "Deduct Over Entitlement Vacation Balances",
|
|
168
|
+
"Degrees": "Degrees",
|
|
169
|
+
"DeleteEmployee": "Delete Employee",
|
|
170
|
+
"Dependants": "Dependants",
|
|
171
|
+
"DependantsByAgeReport": "Dependants by Age",
|
|
172
|
+
"DependantsOfficialDocuments": "Dependant Official Documents",
|
|
173
|
+
"DependantOfficialDocumentsReport": "Dependant Official Documents",
|
|
174
|
+
"DescipliarySetup": "Disciplinary Setup",
|
|
175
|
+
"Discrepancies": "Discrepancies",
|
|
176
|
+
"DiscrepanciesReports": "Discrepancies",
|
|
177
|
+
"DiscrepancyByMonthReport": "Discrepancy by Month",
|
|
178
|
+
"DiscrepancyRules": "Discrepancy Rules",
|
|
179
|
+
"EmailsVerification": "Email Verification",
|
|
180
|
+
"EmployeeAllowancesReport": "Employee Allowances",
|
|
181
|
+
"EmployeeAppraisalReport": "Employee Appraisal",
|
|
182
|
+
"EmployeeBadgesReport": "Employee Badges",
|
|
183
|
+
"EmployeeChangeOfStatus": "Employee Change of Status",
|
|
184
|
+
"EmployeeChangeOfStatusReport": "Employee Change of Status",
|
|
185
|
+
"EmployeeCredentials": "Employee Credentials",
|
|
186
|
+
"EmployeeCredentialsReport": "Employee Credentials",
|
|
187
|
+
"EmployeeCustodyReport": "Employee Custody",
|
|
188
|
+
"EmployeeCustomFields": "Employee Custom Fields",
|
|
189
|
+
"EmployeeDependantOfficialDocumentExpiryReport": "Dependant Official Document Expiry",
|
|
190
|
+
"EmployeeEducationReport": "Employee Education",
|
|
191
|
+
"EmployeeFreeSelectionReport": "Employee Free Selection",
|
|
192
|
+
"EmployeeLogReport": "Employee Log",
|
|
193
|
+
"EmployeeOfficialDocumentExpiryReport": "Employee Official Document Expiry",
|
|
194
|
+
"EmployeeOfficialDocumentsReport": "Employee Official Documents",
|
|
195
|
+
"EmployeePrepayments": "Employee Prepayments",
|
|
196
|
+
"EmployeePreviousJobsReport": "Employee Previous Jobs",
|
|
197
|
+
"EmployeeProfileDetails": "Employee Profile Details",
|
|
198
|
+
"EmployeeProfileReport": "Employee Profile",
|
|
199
|
+
"EmployeeProfiles": "Employee Profiles",
|
|
200
|
+
"EmployeeRecognitionReport": "Employee Recognition",
|
|
201
|
+
"EmployeeRecognitions": "Employee Recognitions",
|
|
202
|
+
"EmployeeReports": "Employee Reports",
|
|
203
|
+
"EmployeesBornInAMonthReport": "Employees Born in a Month",
|
|
204
|
+
"EmployeesByAgeReport": "Employees by Age",
|
|
205
|
+
"EmployeesEligibleForAllowanceReport": "Employees Eligible for Allowance",
|
|
206
|
+
"EmployeeServiceYearsReport": "Service Years",
|
|
207
|
+
"EmployeeSetup": "Employee Setup",
|
|
208
|
+
"EmployeesLastIncreaseReport": "Employees Last Increase",
|
|
209
|
+
"EmployeesOnVacationReport": "Employees on Vacation",
|
|
210
|
+
"EmployeesReports": "Employees Reports",
|
|
211
|
+
"EmployeesSubjectToDeductionReport": "Employees Subject to Deduction",
|
|
212
|
+
"EmployeesTicketStartingBalance": "Ticket Starting Balances",
|
|
213
|
+
"EmployeeSuspensions": "Employee Suspensions",
|
|
214
|
+
"EmployeeSuspensionsReport": "Employee Suspensions",
|
|
215
|
+
"EmployeesVacationsStartingBalance": "Vacations Starting Balances",
|
|
216
|
+
"EmployeesWhoHaveNotAttendedCoursesReport": "Employees Who Have not Attended a Course",
|
|
217
|
+
"EmployeesWithNoSocialSecurityDeductionReport": "Employees With no Deduction",
|
|
218
|
+
"EmployeesWithoutAttendanceReport": "Employees Without Attendance",
|
|
219
|
+
"EmployeeTickets": "Employee Tickets",
|
|
220
|
+
"EmployeeTrainingByCourseReport": "Employee Training by Course",
|
|
221
|
+
"EmployeeTransactionsReport": "Employee Transactions",
|
|
222
|
+
"EmployeeTypes": "Employee Types",
|
|
223
|
+
"EmployeeVacationDetailsReport": "Employee Vacation Details",
|
|
224
|
+
"EmployeeVacationEntitlementsReport": "Employee Vacation Entitlements",
|
|
225
|
+
"EmployeeVacations": "Employee Vacations",
|
|
226
|
+
"EmployeeWarningReport": "Employee Warning",
|
|
227
|
+
"EmployeeWarnings": "Employee Warnings",
|
|
228
|
+
"EmployeeWeeklyOvertime": "Weekly Overtime",
|
|
229
|
+
"EmploymentInformation": "Employment Information",
|
|
230
|
+
"EOMAccruedVacationBalancesReport": "EOM Accrued Vacation Balances",
|
|
231
|
+
"EOMIndemnityCostReport": "EOM Indemnity Cost",
|
|
232
|
+
"EOMSocialSecurityIndemnityCostReport": "EOM Social Security Indemnity Cost",
|
|
233
|
+
"EOMTicketsCostReport": "EOM Tickets Cost",
|
|
234
|
+
"EOMVacationsCostReport": "EOM Vacations Cost",
|
|
235
|
+
"EventEmailTemplates": "Event Email Templates",
|
|
236
|
+
"EventRules": "Event Rules",
|
|
237
|
+
"EventSMSTemplates": "Event SMS Templates",
|
|
238
|
+
"EventTypes": "Event Types",
|
|
239
|
+
"ExemptedAllowances": "Exempted Allowances",
|
|
240
|
+
"Exemptions": "Exemptions",
|
|
241
|
+
"ExternalInterfaceDetails": "External Interface Details",
|
|
242
|
+
"Externalinterfaces": "External Interfaces",
|
|
243
|
+
"ExtraRules": "Extra Hours Rules",
|
|
244
|
+
"FixedServiceChargeSheet": "Fixed Service Charge Sheet",
|
|
245
|
+
"ForApprovalRequests": "For Approval Requests",
|
|
246
|
+
"FTEByMonthReport": "FTE Report by Month",
|
|
247
|
+
"FTEReportbyEmployeeTypeReport": "FTE Report by Employee Type",
|
|
248
|
+
"FTEReportByGradeReport": "FTE Report by Grade",
|
|
249
|
+
"FTEReportbyHourReport": "FTE Report by Hour",
|
|
250
|
+
"FundRules": "Fund Rules",
|
|
251
|
+
"FundsSetup": "Funds",
|
|
252
|
+
"General": "General",
|
|
253
|
+
"GradeLevels": "Grade Levels",
|
|
254
|
+
"Grades": "Grades",
|
|
255
|
+
"HeadCountByAverageIncomeReport": "Headcount by Average Income",
|
|
256
|
+
"HeadCountByMonthReport": "Headcount by Month",
|
|
257
|
+
"HeadCountByNationalityReport": "Headcount by Nationality",
|
|
258
|
+
"HealthStates": "Health States",
|
|
259
|
+
"HirePoints": "Hire Points",
|
|
260
|
+
"HiringSource": "Hiring Source",
|
|
261
|
+
"History": "History",
|
|
262
|
+
"HourlyMealsCountReport": "Hourly Meals Count",
|
|
263
|
+
"HREmployeeProfiles": "Employee Profiles",
|
|
264
|
+
"HRSetup": "HR Setup",
|
|
265
|
+
"HumanResources": "Human Resources",
|
|
266
|
+
"HumanResourcesDashboard": "HR Dashboard",
|
|
267
|
+
"ImportAttendanceData": "Import Attendance Data",
|
|
268
|
+
"ImportHRData": "Import HR Data",
|
|
269
|
+
"ImportScheduleData": "Import Schedule Data",
|
|
270
|
+
"ImportVacations": "Import Vacations",
|
|
271
|
+
"IncomeTax": "Income Tax",
|
|
272
|
+
"IncomeTaxExemptions": "Income Tax Exemptions",
|
|
273
|
+
"IncomeTaxExemptionTypes": "Exemption Types",
|
|
274
|
+
"IncomeTaxFamilyExemptions": "Family Exemptions",
|
|
275
|
+
"IncomeTaxPersonalExemptions": "Personal Exemptions",
|
|
276
|
+
"IncomeTaxReports": "Income Tax Reports",
|
|
277
|
+
"IncomeTaxSalaryExemptions": "Salary Exemptions",
|
|
278
|
+
"IncomeTaxSetup": "Income Tax",
|
|
279
|
+
"IncomeTaxslices": "Tax slices",
|
|
280
|
+
"IncomeTaxSpecialExemptions": "Special Exemptions",
|
|
281
|
+
"IndemnityPreviousUnpaidDays": "Indemnity Previous Unpaid Days",
|
|
282
|
+
"IndemnityReport": "Indemnity",
|
|
283
|
+
"IndemnitySetup": "Indemnity",
|
|
284
|
+
"IndirectActorsSetup": "Indirect Actors",
|
|
285
|
+
"InputMasks": "Input Masks",
|
|
286
|
+
"Institutes": "Institutes",
|
|
287
|
+
"IntelligenceReport": "Intelligence",
|
|
288
|
+
"InterfaceMapping": "Interface Mapping",
|
|
289
|
+
"Interfaces": "Interfaces",
|
|
290
|
+
"InterfacesMapping": "Interfaces Mapping",
|
|
291
|
+
"JobDetails": "Job Details",
|
|
292
|
+
"JobRequisitionRequest": "Job Requisition Request",
|
|
293
|
+
"JobRequisitionRequestReport": "Job Requisition",
|
|
294
|
+
"JournalVoucherbyAccountReport": "Journal Voucher by Account",
|
|
295
|
+
"KeyHumanResourcesStatisticsReport": "Human Resources Statistics",
|
|
296
|
+
"LandScapeMasterPageReport": "Landscape Master Page",
|
|
297
|
+
"Languages": "Languages",
|
|
298
|
+
"LeastAttendedCoursesReport": "Least Attended Courses",
|
|
299
|
+
"LeaveDeductions": "Leave Deductions",
|
|
300
|
+
"LeaveRequest": "Leave Request",
|
|
301
|
+
"LeaveRequestReport": "Leave Request",
|
|
302
|
+
"LoanRequest": "Loan Request",
|
|
303
|
+
"LoanRequestReport": "Loan Request",
|
|
304
|
+
"LoanRules": "Loan Rules",
|
|
305
|
+
"Loans": "Loans",
|
|
306
|
+
"LoanStatusReport": "Loan Status",
|
|
307
|
+
"LoanTypes": "Loan Types",
|
|
308
|
+
"Locations": "Locations",
|
|
309
|
+
"Main": "Main",
|
|
310
|
+
"MainBonusSalary": "Main Bonus Salary",
|
|
311
|
+
"MainDetails": "Main Details",
|
|
312
|
+
"MainIncomTax": "Main",
|
|
313
|
+
"MainService": "Main Service",
|
|
314
|
+
"MainSetup": "Main Setup",
|
|
315
|
+
"MainsSetup": "Main Setup",
|
|
316
|
+
"ManningBreakdownReport": "Manning Breakdown",
|
|
317
|
+
"ManningReport": "Manning",
|
|
318
|
+
"MealsCountReport": "Meals Count",
|
|
319
|
+
"MealSlipReport": "Meal Slip",
|
|
320
|
+
"MealsLogReport": "Meals Log",
|
|
321
|
+
"MealsReports": "Meals",
|
|
322
|
+
"MealsSetup": "Meal Setup",
|
|
323
|
+
"Medical": "Medical Insurance",
|
|
324
|
+
"MedicalInsuranceExemptions": "Medical Insurance Exemptions",
|
|
325
|
+
"MedicalInsuranceMemberShipListReport": "Medical Insurance Membership List",
|
|
326
|
+
"MedicalInsuranceSetup": "Medical Insurance",
|
|
327
|
+
"MenuRightsByEmployeeReport": "Menu Rights by Employee",
|
|
328
|
+
"MenuRightsByGroupReport": "Menu Rights by Group",
|
|
329
|
+
"MenuRightsByRoleReport": "Menu Rights by Role",
|
|
330
|
+
"MIMemberShipCertificationReport": "Medical Insurance Membership Certification",
|
|
331
|
+
"MIMemberShipListByMonthReport": "Medical Insurance Membership List by Month",
|
|
332
|
+
"Miscellaneous": "Miscellaneous",
|
|
333
|
+
"MiscellaneousSetup": "Miscellaneous Setup",
|
|
334
|
+
"MOLReport": "MOL",
|
|
335
|
+
"MonthlyAccrualPaymentsSheet": "Vacation Accrual Payments Sheet",
|
|
336
|
+
"MonthlyAccruedVacationsReport": "Monthly Accrued Vacations",
|
|
337
|
+
"MonthlyAllowancesBySectionReport": "Monthly Allowances by Section",
|
|
338
|
+
"MonthlyAllowancesReport": "Monthly Allowances",
|
|
339
|
+
"MonthlyAttendanceSummaryReport": "Monthly Attendance Summary",
|
|
340
|
+
"MonthlyCasualSheet": "Casual Sheet",
|
|
341
|
+
"MonthlyCityLedgerReport": "Monthly City Ledger",
|
|
342
|
+
"MonthlyClosure": "Monthly Closure",
|
|
343
|
+
"MonthlyDeductionsBySectionReport": "Monthly Deductions by Section",
|
|
344
|
+
"MonthlyDeductionsReport": "Monthly Deductions",
|
|
345
|
+
"MonthlyEmployeeLogReport": "Monthly Employee Log",
|
|
346
|
+
"MonthlyEmployerSharesReport": "Monthly Employer Shares",
|
|
347
|
+
"MonthlyExceptionReport": "Monthly Exception",
|
|
348
|
+
"MonthlyIncomeTaxCalculationReport": "Monthly Income Tax Calculation",
|
|
349
|
+
"MonthlyIncomeTaxReport": "Monthly Income Tax",
|
|
350
|
+
"MonthlyLaborSheet": "Labor Sheet",
|
|
351
|
+
"MonthlyLeavesReport": "Monthly Leaves",
|
|
352
|
+
"MonthlyOvertimeHoursReport": "Monthly Overtime Hours",
|
|
353
|
+
"MonthlyOvertimeReport": "Monthly Overtime",
|
|
354
|
+
"MonthlyPaidVacationsReport": "Monthly Paid Vacations",
|
|
355
|
+
"MonthlyPayrollListReport": "Monthly Payroll List",
|
|
356
|
+
"MonthlyPayrollManagementReport": "Monthly Payroll Management",
|
|
357
|
+
"MonthlyPayrollReconciliationReport": "Monthly Payroll Reconciliation",
|
|
358
|
+
"MonthlyPayrollSheetReport": "Monthly Payroll Sheet",
|
|
359
|
+
"MonthlyPendingHoursReport": "Monthly Pending Hours",
|
|
360
|
+
"MonthlyReports": "Monthly Reports",
|
|
361
|
+
"MonthlySalaryIncreasesSheet": "Salary Increases Sheet",
|
|
362
|
+
"MonthlySheets": "Monthly Sheets",
|
|
363
|
+
"MonthlySolidarityTaxCalculationReport": "Monthly Solidarity Tax Calculation",
|
|
364
|
+
"MonthlyStaffAttendanceDetailsReport": "Attendance Sheet Details",
|
|
365
|
+
"MonthlyStaffAttendanceSingleCellReport": "Attendance Sheet",
|
|
366
|
+
"MonthlySubtractiveHours": "Subtractive Hours",
|
|
367
|
+
"MonthlySubtractiveHoursReport": "Monthly Subtractive Hours",
|
|
368
|
+
"MonthlyWorkingDaysReport": "Monthly Working Days",
|
|
369
|
+
"MostAttendedCoursesReport": "Most Attended Courses",
|
|
370
|
+
"MovementReasons": "Movement Reasons",
|
|
371
|
+
"MovementsSetup": "Movements",
|
|
372
|
+
"MovementTypes": "Movement Types",
|
|
373
|
+
"MyRequestsHistory": "My Requests History",
|
|
374
|
+
"MyServices": "My Services",
|
|
375
|
+
"NationalityMapping": "Nationality Mapping",
|
|
376
|
+
"Navigation": "Main Menu",
|
|
377
|
+
"NewAppraisal": "New Appraisal",
|
|
378
|
+
"NewChangeOfStatus": "New Change of Status",
|
|
379
|
+
"NewEmployeesReport": "New Employees",
|
|
380
|
+
"NewHireRequest": "New Hire Request",
|
|
381
|
+
"NewHireRequestReport": "New Hire Request",
|
|
382
|
+
"NewRequest": "New Request",
|
|
383
|
+
"NotificationMethods": "Notification Methods",
|
|
384
|
+
"NotificationRules": "Notification Rules",
|
|
385
|
+
"Occupations": "Occupations",
|
|
386
|
+
"OfficialDocuments": "Official Documents",
|
|
387
|
+
"OfficialDocumentTypes": "Official Document Types",
|
|
388
|
+
"OrganizationalChart": "Organizational Chart",
|
|
389
|
+
"OrganizationStructure": "Organization Structure",
|
|
390
|
+
"OverallEvaluations": "Overall Evaluations",
|
|
391
|
+
"OverEntitlementVacationBalancesReport": "Over Entitlement Vacation Balances",
|
|
392
|
+
"Overtime": "Overtime",
|
|
393
|
+
"OvertimePreApprovalRequestReport": "Overtime Pre-Approval Request",
|
|
394
|
+
"OvertimeRequest": "Overtime Request",
|
|
395
|
+
"OvertimeSetup": "Overtime",
|
|
396
|
+
"OvertimeSheet": "Overtime Sheet",
|
|
397
|
+
"OvertimeSheetPayroll": "Overtime Sheet",
|
|
398
|
+
"OvertimeSheetWithAssignedRate": "Overtime With Assigned Rate Sheet",
|
|
399
|
+
"OvertimeTypes": "Overtime Types",
|
|
400
|
+
"PasswordPolicySetup": "Password Policy Setup",
|
|
401
|
+
"Payroll": "Payroll",
|
|
402
|
+
"PayrollCalculation": "Payroll Calculation",
|
|
403
|
+
"PayrollEmployeeDetails": "Payroll Employee Details",
|
|
404
|
+
"PayrollExport": "Payroll Export",
|
|
405
|
+
"PayrollGroupMenu": "Payroll",
|
|
406
|
+
"PayrollMonths": "Payroll Months",
|
|
407
|
+
"PayrollPostCalculation": "Payroll Post Calculation",
|
|
408
|
+
"PayrollPreCalculation": "Payroll Pre-Calculation",
|
|
409
|
+
"PayrollSalaryAdvanceRequest": "Payroll Salary Advance Request",
|
|
410
|
+
"PayrollSetup": "Payroll Setup",
|
|
411
|
+
"PayrollVoucher": "Payroll Voucher",
|
|
412
|
+
"Payslip": "Pay-slip",
|
|
413
|
+
"PayslipsReport": "Pay-slips",
|
|
414
|
+
"PendingRequests": "Pending Requests",
|
|
415
|
+
"PeriodicIncomeTaxReport": "Periodic Income Tax",
|
|
416
|
+
"PeriodicReports": "Periodic Reports",
|
|
417
|
+
"PermissionGroups": "Permission Groups",
|
|
418
|
+
"PermissionGroupsReport": "Permission Groups",
|
|
419
|
+
"PermissionQueries": "Permission Queries",
|
|
420
|
+
"PersonalActionFormReport": "Personnel Action Form",
|
|
421
|
+
"PersonalInfoDetails": "Personal Info",
|
|
422
|
+
"PersonalInformation": "Personal Information",
|
|
423
|
+
"PersonnelActionFormReport": "Personnel Action Form",
|
|
424
|
+
"PoliceReport": "Police",
|
|
425
|
+
"Populate": "Populate Attendance Sheet",
|
|
426
|
+
"PortraitMasterPageReport": "Portrait Master Page",
|
|
427
|
+
"PostPayrollCalculationReport": "Post-Payroll Calculation",
|
|
428
|
+
"PostWFRequests": "Post Workflow Requests",
|
|
429
|
+
"PreEmploymentCheckList": "Pre Employment CheckList",
|
|
430
|
+
"PreEmploymentCheckListReport": "Pre Employment CheckList",
|
|
431
|
+
"PREmployeeCalculations": "Payroll Calculation",
|
|
432
|
+
"PREmployeeProfiles": "Employee Profiles",
|
|
433
|
+
"PrePaymentDetails": "PrePayment Details",
|
|
434
|
+
"PrepaymentReport": "Prepayment",
|
|
435
|
+
"PrevJobs": "Previous Jobs",
|
|
436
|
+
"PrintPayslipsReport": "Print Pay-slips",
|
|
437
|
+
"PropertyAllowances": "Property Allowances",
|
|
438
|
+
"PropertyCurrencies": "Property Currencies",
|
|
439
|
+
"PropertyCustomFields": "Property Custom Fields",
|
|
440
|
+
"PropertyDeductions": "Property Deductions",
|
|
441
|
+
"PublicHolidays": "Public Holidays",
|
|
442
|
+
"PublicHolidaysRequest": "Public Holiday Work Request",
|
|
443
|
+
"PublicHolidayWorkedRequestReport": "Public Holiday Work Request",
|
|
444
|
+
"RebuildSystemTables": "Rebuild System Tables",
|
|
445
|
+
"RebuildVacationBalances": "Rebuild Vacation Balances",
|
|
446
|
+
"RecognitionRequest": "Recognition Request",
|
|
447
|
+
"RecognitionRequestReport": "Recognition Request",
|
|
448
|
+
"Recognitions": "Recognitions",
|
|
449
|
+
"RecognitionsSetup": "Recognitions",
|
|
450
|
+
"RehireEmployee": "Rehire Employee",
|
|
451
|
+
"Religions": "Religions",
|
|
452
|
+
"Reports": "Reports",
|
|
453
|
+
"ReportSignatureRules": "Report Signature Rules",
|
|
454
|
+
"ReportsSetup": "Reports Setup",
|
|
455
|
+
"RequesterRules": "Requester Rules",
|
|
456
|
+
"RequestHistory": "Request History",
|
|
457
|
+
"RequestsPipeline": "Requests Pipeline",
|
|
458
|
+
"RequestTypeRules": "Request Type Rules",
|
|
459
|
+
"RequestTypes": "Request Types",
|
|
460
|
+
"ReservedVacationsByMonthReport": "Reserved Vacations by Month",
|
|
461
|
+
"ReturnFromVacation": "Return From Vacation",
|
|
462
|
+
"ReturnFromVacationRequest": "Return from Vacation Request",
|
|
463
|
+
"ReturnFromVacationRequestReport": "Return from Vacation Request",
|
|
464
|
+
"Roles": "Roles",
|
|
465
|
+
"RolesReport": "Roles",
|
|
466
|
+
"Rules": "Rules",
|
|
467
|
+
"SalariesByMonthReport": "Salaries by Month",
|
|
468
|
+
"SalariesSheets": "Salaries",
|
|
469
|
+
"SalaryAdvanceRequest": "Salary Advance Request",
|
|
470
|
+
"SalaryAdvanceRequestReport": "Salary Advance Request",
|
|
471
|
+
"SalaryAdvanceRequestsReport": "Salary Advance Requests",
|
|
472
|
+
"SalaryAdvanceRules": "Salary Advance Rules",
|
|
473
|
+
"SalaryAdvanceSheet": "Salary Advance Sheet",
|
|
474
|
+
"SalaryReviewReport": "Salary Review",
|
|
475
|
+
"SalaryTransferRequest": "Salary Transfer Request",
|
|
476
|
+
"SalaryTransferRequestReport": "Salary Transfer Request",
|
|
477
|
+
"SalaryTransfers": "Salary Transfers",
|
|
478
|
+
"Salutations": "Salutations",
|
|
479
|
+
"SchedularSheet": "Schedular Sheet",
|
|
480
|
+
"SchoolTypesSetup": "School Types",
|
|
481
|
+
"Scouter": "Scouter",
|
|
482
|
+
"ScouterAbsenteesReport": "Absentees",
|
|
483
|
+
"ScouterAllEmployeesReport": "All",
|
|
484
|
+
"ScouterAttendeesReport": "Attendees",
|
|
485
|
+
"ScouterEarlyDepartureReport": "Early Departure",
|
|
486
|
+
"ScouterExemptedEmployeesReport": "Exempted",
|
|
487
|
+
"ScouterLateArrivalReport": "Late Arrival",
|
|
488
|
+
"ScouterLeaveTypes": "Scouter Leave Types",
|
|
489
|
+
"ScouterMonitor": "Scouter Monitor",
|
|
490
|
+
"ScouterOffDutyAttendeesReport": "Off Duty Attendees",
|
|
491
|
+
"ScouterOffDutyEmployeesReport": "Off Duty",
|
|
492
|
+
"ScouterOnLeaveReport": "On Leave",
|
|
493
|
+
"ScouterOnVacationReport": "On Vacation",
|
|
494
|
+
"ScouterService": "Scouter Service",
|
|
495
|
+
"ScouterSetup": "Scouter Setup",
|
|
496
|
+
"Security": "Security",
|
|
497
|
+
"SecurityReport": "Security",
|
|
498
|
+
"SecurityReports": "Security Reports",
|
|
499
|
+
"ServiceChanrgeSetup": "Service Chanrge Setup",
|
|
500
|
+
"ServiceCharge": "Service Charge",
|
|
501
|
+
"ServiceChargeMain": "Service Charge Main",
|
|
502
|
+
"ServiceChargePointRules": "Service Charge Point Rules",
|
|
503
|
+
"ServiceChargeSetup": "Service Charge Setup",
|
|
504
|
+
"ServiceLog": "Service Log",
|
|
505
|
+
"Services": "Services",
|
|
506
|
+
"ServingPeriods": "Serving Periods",
|
|
507
|
+
"Setup": "Setup",
|
|
508
|
+
"SetupDashboard": "Setup Dashboard",
|
|
509
|
+
"SetupReports": "Setup Reports",
|
|
510
|
+
"Shifts": "Shifts",
|
|
511
|
+
"ShiftsSetup": "Shifts",
|
|
512
|
+
"SignaledRequests": "Signaled Requests",
|
|
513
|
+
"SignatureBlockReport": "Signature Block",
|
|
514
|
+
"SocialSecurity": "Social Security",
|
|
515
|
+
"SocialSecurityIndemnityReport": "Social Security Indemnity",
|
|
516
|
+
"SocialSecurityMemberListReport": "Social Security Members List",
|
|
517
|
+
"SocialSecurityMonthlyEmployerContributionReport": "Monthly Employer Contribution",
|
|
518
|
+
"SocialSecurityMonthlySignatureReport": "Monthly Signature",
|
|
519
|
+
"SocialSecurityMonthlySubscriptionReport": "Monthly Subscription",
|
|
520
|
+
"SocialSecurityReports": "Social Security Reports",
|
|
521
|
+
"SocialSecuritySetup": "Social Security",
|
|
522
|
+
"ShareRules": "Share Rules",
|
|
523
|
+
"ShareTypes": "Share Types",
|
|
524
|
+
"SocialSecuritySharesHistory": "Social Security Shares History",
|
|
525
|
+
"SpecialDetails": "Special Details",
|
|
526
|
+
"SpecialReports": "Special Reports",
|
|
527
|
+
"Sponsors": "Sponsors",
|
|
528
|
+
"SSOSetup": "SSO Setup",
|
|
529
|
+
"StartingBalances": "Employee Starting Balances",
|
|
530
|
+
"StatusChangeRequest": "Change of Status Request",
|
|
531
|
+
"StatusChangeRequestReport": "Change of Status Request",
|
|
532
|
+
"Subjects": "Subjects",
|
|
533
|
+
"SummaryEOMVacationCostReport": "Summary EOM Vacation Cost",
|
|
534
|
+
"SystemInputMasks": "System Input Masks",
|
|
535
|
+
"SystemInterfaceMapping": "System Interface Mapping",
|
|
536
|
+
"SystemInterfaces": "System Interfaces",
|
|
537
|
+
"SystemLexicon": "System Lexicon",
|
|
538
|
+
"SystemLicenses": "System Licenses",
|
|
539
|
+
"SystemPreferencesSetup": "System Preferences",
|
|
540
|
+
"SystemTools": "System Tools",
|
|
541
|
+
"TCodes": "T Codes",
|
|
542
|
+
"Terminate": "Terminate Employee",
|
|
543
|
+
"TerminatedEmployeesReport": "Terminated Employees",
|
|
544
|
+
"TerminationCalculation": "Termination Calculation",
|
|
545
|
+
"TerminationDetails": "Termination Details",
|
|
546
|
+
"TerminationReasons": "Termination Reasons",
|
|
547
|
+
"TerminationRequest": "Termination Request",
|
|
548
|
+
"TerminationRequestReport": "Termination Request",
|
|
549
|
+
"TicketClass": "Ticket Class",
|
|
550
|
+
"TicketCosts": "Ticket Costs",
|
|
551
|
+
"TicketRequestReport": "Ticket Request",
|
|
552
|
+
"TicketSector": "Ticket Sector",
|
|
553
|
+
"TicketsRequest": "Tickets Request",
|
|
554
|
+
"TicketsSetup": "Tickets",
|
|
555
|
+
"TicketStatementReport": "Ticket Statement",
|
|
556
|
+
"Timekeeping": "Timekeeping",
|
|
557
|
+
"TimekeepingDashboard": "Timekeeping Dashboard",
|
|
558
|
+
"TimekeepingGroupMenu": "Timekeeping",
|
|
559
|
+
"TimeKeepingInterfaces": "Timekeeping Interfaces",
|
|
560
|
+
"TKDevices": "Devices",
|
|
561
|
+
"TKInterfaces": "Timekeeping Interfaces",
|
|
562
|
+
"ToggleNavigation": "Main Menu",
|
|
563
|
+
"Tools": "Tools",
|
|
564
|
+
"TotalTakenVacationsReport": "Total Taken Vacations",
|
|
565
|
+
"Training": "Training",
|
|
566
|
+
"TrainingCourseAttendanceReport": "Training Course Attendance",
|
|
567
|
+
"TrainingCourseCostDetailsReport": "Training Course Cost Details",
|
|
568
|
+
"TrainingCoursesReport": "Training Courses",
|
|
569
|
+
"TrainingDashboard": "Training Dashboard",
|
|
570
|
+
"TrainingGroupMenu": "Training",
|
|
571
|
+
"TrainingNeeds": "Training Needs",
|
|
572
|
+
"TrainingSetup": "Training Setup",
|
|
573
|
+
"TrainingTargetDiscrepanciesReport": "Training Target Discrepancies",
|
|
574
|
+
"TrainingTargets": "Training Targets",
|
|
575
|
+
"TurnOverForBudgetReport": "Turnover",
|
|
576
|
+
"UnifiedBankExport": "Unified Bank Export",
|
|
577
|
+
"UnTerminate": "Cancel Employee Termination",
|
|
578
|
+
"Users": "Users",
|
|
579
|
+
"Vacation": "Vacation",
|
|
580
|
+
"VacationChangeRequest": "Vacation Change Request",
|
|
581
|
+
"VacationChangeRequestReport": "Vacation Change Request",
|
|
582
|
+
"VacationConsumptionSummaryReport": "Vacation Consumption Summary",
|
|
583
|
+
"VacationCurrentBalances": "Vacation Current Balances",
|
|
584
|
+
"VacationCurrentBalancesReport": "Vacation Current Balances",
|
|
585
|
+
"VacationEntitlements": "Vacation Entitlements",
|
|
586
|
+
"VacationEOMBalancesReport": "Vacation EOM Balances",
|
|
587
|
+
"VacationReports": "Vacation Reports",
|
|
588
|
+
"VacationRequest": "Vacation Request",
|
|
589
|
+
"VacationRequestReport": "Vacation Request",
|
|
590
|
+
"VacationSheetReport": "Vacation Sheet",
|
|
591
|
+
"VacationsSetup": "Vacations Setup",
|
|
592
|
+
"VacationsSheet": "Vacations Sheet",
|
|
593
|
+
"VacationStatementReport": "Vacation Statement",
|
|
594
|
+
"VoucherTypes": "Voucher Types",
|
|
595
|
+
"WarningDeductionRules": "Warning Deduction Rules",
|
|
596
|
+
"WarningReasons": "Warning Reasons",
|
|
597
|
+
"WarningRequest": "Warning Request",
|
|
598
|
+
"WarningRequestReport": "Employee Warning Request",
|
|
599
|
+
"Warnings": "Warnings",
|
|
600
|
+
"WarningsSetup": "Warnings",
|
|
601
|
+
"WarningTypes": "Warning Types",
|
|
602
|
+
"WeeklyOvertimeRules": "Weekly Overtime Rules",
|
|
603
|
+
"WFEmailRules": "Email Rules",
|
|
604
|
+
"WFEmailTemplates": "Email Templates",
|
|
605
|
+
"WFMailingLists": "Mailing Lists",
|
|
606
|
+
"WFPostingRoles": "Request Type Roles",
|
|
607
|
+
"Workflow": "Workflow",
|
|
608
|
+
"WorkflowDashboard": "Workflow Dashboard",
|
|
609
|
+
"WorkflowParameters": "Workflow Parameters",
|
|
610
|
+
"WorkFlowReports": "WorkFlow Reports",
|
|
611
|
+
"WorkflowSetup": "Workflow Setup",
|
|
612
|
+
"WorkPermit": "Work Permit",
|
|
613
|
+
"YearlyPlanVacationsReport": "Yearly Plan Vacations",
|
|
614
|
+
"YearlyReports": "Yearly Reports",
|
|
615
|
+
"YTDDeductionReport": "YTD Deduction",
|
|
616
|
+
"MonthlyCrossChargeDistribution": "Cross Charge Distribution",
|
|
617
|
+
"CrossChargeSetup": "Cross Charge Setup",
|
|
618
|
+
"CrossCharge": "Cross Charge",
|
|
619
|
+
"EventLog": "Event Log",
|
|
620
|
+
"ImportEmployeeProfiles": "Import Employee Profiles",
|
|
621
|
+
"ImportPreInstallationSheet": "Import Pre-Installation Sheet",
|
|
622
|
+
"AccessCardsReport": "Access Cards",
|
|
623
|
+
"VacationBalanceExpiryReport": "Vacation Balance Expiry",
|
|
624
|
+
"UploadBankFileLog": "Upload Bank File Log",
|
|
625
|
+
"ScouterInPremiseReport": "In-Premise",
|
|
626
|
+
"PropertyPush": "Property Push",
|
|
627
|
+
"BusinessIntelligence": "Business Intelligence",
|
|
628
|
+
"OnlineSalaryTransfersRequestSummary": "Online Salary Transfers Request Summary",
|
|
629
|
+
"SSOSetupMain": "SSO Setup Main",
|
|
630
|
+
"ImportSalaryIncreases": "Import Salary Increases",
|
|
631
|
+
"EmployeeLoansReport": "Employee Loans",
|
|
632
|
+
"AgeGroups": "Age Groups",
|
|
633
|
+
"ServiceYearGroups": "Service Year Groups",
|
|
634
|
+
"DataPushingSetup": "Data Pushing Setup",
|
|
635
|
+
"PostCorporateDataLog": "Post Corporate Data Log",
|
|
636
|
+
"SystemSetupReport": "System Setup",
|
|
637
|
+
"SystemReports": "System Reports",
|
|
638
|
+
"ArchiveData": "Archive Data",
|
|
639
|
+
"Mapping": "Mapping",
|
|
640
|
+
"Offices": "Offices",
|
|
641
|
+
"WorkflowRequestApprovalCycleReport": "Workflow Requests Approval Cycle",
|
|
642
|
+
"TicketAccrualPaymentsSheet": "Ticket Accrual Payments Sheet",
|
|
643
|
+
"ImportCorporateData": "Import Corporate Data",
|
|
644
|
+
"TicketAvailReport": "Ticket Avail",
|
|
645
|
+
"OvertimeTypeRules": "Overtime Type Rules",
|
|
646
|
+
"NightWork": "Night Work",
|
|
647
|
+
"BlockingBonusMonthClosureErrors": "Bonus Month Closure Errors",
|
|
648
|
+
"AllowancesSheetRequest": "Allowances Sheet Request",
|
|
649
|
+
"EventRequest": "Event Request",
|
|
650
|
+
"VacationBalanceAdjustmentRequest": "Vacation Balance Adjustment Request",
|
|
651
|
+
"DeductionsSheetRequest": "Deductions Sheet Request",
|
|
652
|
+
"WeeklyOvertimeForecast": "Weekly Overtime Forecast",
|
|
653
|
+
"TicketBalanceAdjustmentRequest": "Ticket Balance Adjustment Request",
|
|
654
|
+
"BrandsSetup": "Brands Setup",
|
|
655
|
+
"Brands": "Brands",
|
|
656
|
+
"WeeklyOvertimeForecastReport": "Weekly Overtime Forecast",
|
|
657
|
+
"MonthlyOvertimeForecastReport": "Monthly Overtime Forecast",
|
|
658
|
+
"Regions": "Regions",
|
|
659
|
+
"RebuildIndemnityBalances": "Rebuild Indemnity Balances",
|
|
660
|
+
"SalaryIncreasesSheetRequest": "Salary Increases Sheet Request",
|
|
661
|
+
"ExportAttendanceData": "Export Attendance Data",
|
|
662
|
+
"SalaryIncreasesSheetRequests": "Salary Increases Sheet",
|
|
663
|
+
"ImportSocialSecuritySalaries": "Import Social Security Salaries",
|
|
664
|
+
"BasicSalary": "Basic Salary",
|
|
665
|
+
"BOSponsorsMapping": "BO Sponsor Mapping",
|
|
666
|
+
"UpdateMonthlyVacationsHistory": "Update Monthly Vacations History",
|
|
667
|
+
"CityLedgerSheetRequest": "City Ledger Sheet Request",
|
|
668
|
+
"ServiceChargeSalary": "Service Charge Salary",
|
|
669
|
+
"IncomeTaxStartingBalances": "Income Tax Starting Balances",
|
|
670
|
+
"OffDutyWorkReport": "Off Duty Work",
|
|
671
|
+
"AnonymizeEmployeesData": "Anonymize Employees Data",
|
|
672
|
+
"SyncHRData": "Sync HR data",
|
|
673
|
+
"VacationsCalendar": "Vacations Calendar",
|
|
674
|
+
"Funds": "Funds",
|
|
675
|
+
"ServiceChargeAccrualPaymentsSheet": "Service Charge Accrual Payments Sheet",
|
|
676
|
+
"EOMServiceChargeAccrualReport": "EOM Service Charge Accrual",
|
|
677
|
+
"ServiceChargeStartingBalance": "Service Charge Starting Balances",
|
|
678
|
+
"MonthlyServiceChargeAccrualReport": "Monthly Service Charge Accrual",
|
|
679
|
+
"ServiceChargeReports": "Service Charge Reports",
|
|
680
|
+
"OrganizationalChartReport": "Organizational Chart",
|
|
681
|
+
"BankExport": "Bank Export",
|
|
682
|
+
"IndemnityAccrualPaymentSheet": "Indemnity Accrual Payment Sheet"
|
|
683
|
+
}
|