@skysoftware-co/bayan-hr-widgets-ui 2.0.18 → 2.0.20

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.
Files changed (104) hide show
  1. package/ng-package.json +9 -0
  2. package/package.json +3 -15
  3. package/src/assets/i18n/ar.json +166 -0
  4. package/src/assets/i18n/en.json +166 -0
  5. package/src/assets/i18n/fr.json +166 -0
  6. package/src/lib/my-calendar-widget/my-calendar-widget.component.html +25 -0
  7. package/src/lib/my-calendar-widget/my-calendar-widget.component.ts +220 -0
  8. package/src/lib/my-main-details-widget/my-main-details-widget.component.html +157 -0
  9. package/src/lib/my-main-details-widget/my-main-details-widget.component.ts +179 -0
  10. package/src/lib/my-next-week-vacation-insights-widget/components/next-week-vacation-insights-popup/next-week-vacation-insights-popup.component.html +131 -0
  11. package/src/lib/my-next-week-vacation-insights-widget/components/next-week-vacation-insights-popup/next-week-vacation-insights-popup.component.ts +119 -0
  12. package/src/lib/my-next-week-vacation-insights-widget/my-next-week-vacation-insights-widget.component.html +35 -0
  13. package/src/lib/my-next-week-vacation-insights-widget/my-next-week-vacation-insights-widget.component.ts +110 -0
  14. package/src/lib/my-profile/address-widget/my-profile-address-widget.component.html +57 -0
  15. package/src/lib/my-profile/address-widget/my-profile-address-widget.component.ts +70 -0
  16. package/src/lib/my-profile/bank-info-widget/my-profile-bank-info-widget.component.html +101 -0
  17. package/src/lib/my-profile/bank-info-widget/my-profile-bank-info-widget.component.ts +89 -0
  18. package/src/lib/my-profile/contact-widget/my-profile-contact-widget.component.html +89 -0
  19. package/src/lib/my-profile/contact-widget/my-profile-contact-widget.component.ts +78 -0
  20. package/src/lib/my-profile/contract-widget/my-profile-contract-widget.component.html +63 -0
  21. package/src/lib/my-profile/contract-widget/my-profile-contract-widget.component.ts +73 -0
  22. package/src/lib/my-profile/degrees-widget/my-profile-degrees-widget-component.html +86 -0
  23. package/src/lib/my-profile/degrees-widget/my-profile-degrees-widget-component.ts +98 -0
  24. package/src/lib/my-profile/dependents-documents-widget/my-profile-dependents-documents-widget.html +83 -0
  25. package/src/lib/my-profile/dependents-documents-widget/my-profile-dependents-documents-widget.ts +126 -0
  26. package/src/lib/my-profile/documents-widgets/components/document-card/document-card.component.html +53 -0
  27. package/src/lib/my-profile/documents-widgets/components/document-card/document-card.component.ts +50 -0
  28. package/src/lib/my-profile/documents-widgets/components/document-row/document-row.component.html +48 -0
  29. package/src/lib/my-profile/documents-widgets/components/document-row/document-row.component.ts +44 -0
  30. package/src/lib/my-profile/documents-widgets/components/document-tablet-card/document-tablet-card.component.html +46 -0
  31. package/src/lib/my-profile/documents-widgets/components/document-tablet-card/document-tablet-card.component.ts +47 -0
  32. package/src/lib/my-profile/employee-dependents-widget/my-profile-employee-dependents-component.html +50 -0
  33. package/src/lib/my-profile/employee-dependents-widget/my-profile-employee-dependents-component.ts +63 -0
  34. package/src/lib/my-profile/entitlements-others-widget/my-profile-entitlements-others-widget.component.html +26 -0
  35. package/src/lib/my-profile/entitlements-others-widget/my-profile-entitlements-others-widget.component.ts +66 -0
  36. package/src/lib/my-profile/experiences-widget/my-profile-experiences-widget-component.html +93 -0
  37. package/src/lib/my-profile/experiences-widget/my-profile-experiences-widget-component.ts +102 -0
  38. package/src/lib/my-profile/indemnity-widget/my-profile-indemnity-widget.component.html +49 -0
  39. package/src/lib/my-profile/indemnity-widget/my-profile-indemnity-widget.component.ts +79 -0
  40. package/src/lib/my-profile/job-info-widget/my-profile-job-info-widget.component.html +71 -0
  41. package/src/lib/my-profile/job-info-widget/my-profile-job-info-widget.component.ts +73 -0
  42. package/src/lib/my-profile/languages-widget/my-profile-languages-widget.component.html +23 -0
  43. package/src/lib/my-profile/languages-widget/my-profile-languages-widget.component.ts +70 -0
  44. package/src/lib/my-profile/medical-insurance-widget/components/medical-insurance-card/medical-insurance-card.component.html +18 -0
  45. package/src/lib/my-profile/medical-insurance-widget/components/medical-insurance-card/medical-insurance-card.component.ts +29 -0
  46. package/src/lib/my-profile/medical-insurance-widget/my-profile-medical-insurance-widget.component.html +52 -0
  47. package/src/lib/my-profile/medical-insurance-widget/my-profile-medical-insurance-widget.component.ts +103 -0
  48. package/src/lib/my-profile/official-documents-widget/my-profile-official-documents-widget.html +82 -0
  49. package/src/lib/my-profile/official-documents-widget/my-profile-official-documents-widget.ts +119 -0
  50. package/src/lib/my-profile/other-nationalities-widget/my-profile-other-nationalities-widget.component.html +23 -0
  51. package/src/lib/my-profile/other-nationalities-widget/my-profile-other-nationalities-widget.component.ts +70 -0
  52. package/src/lib/my-profile/personal-info-main-widget/my-profile-personal-info-main-widget.component.html +115 -0
  53. package/src/lib/my-profile/personal-info-main-widget/my-profile-personal-info-main-widget.component.ts +75 -0
  54. package/src/lib/my-profile/salary-widget/my-profile-salary-widget.component.html +37 -0
  55. package/src/lib/my-profile/salary-widget/my-profile-salary-widget.component.ts +85 -0
  56. package/src/lib/my-profile/service-charge-widget/my-profile-service-charge-widget.component.html +16 -0
  57. package/src/lib/my-profile/service-charge-widget/my-profile-service-charge-widget.component.ts +101 -0
  58. package/src/lib/my-profile/ticket-widget/components/ticket-card/ticket-card.component.html +23 -0
  59. package/src/lib/my-profile/ticket-widget/components/ticket-card/ticket-card.component.ts +26 -0
  60. package/src/lib/my-profile/ticket-widget/my-profile-ticket-widget.component.html +68 -0
  61. package/src/lib/my-profile/ticket-widget/my-profile-ticket-widget.component.ts +93 -0
  62. package/src/lib/my-profile/vacations-widget/my-profile-vacations-widget.component.html +34 -0
  63. package/src/lib/my-profile/vacations-widget/my-profile-vacations-widget.component.ts +66 -0
  64. package/src/lib/my-team-subordinates-popup-widget/components/employee-main-info-card/employee-information-card.component.ts +65 -0
  65. package/src/lib/my-team-subordinates-popup-widget/components/employee-main-info-card/employee-main-info-card.component.html +57 -0
  66. package/src/lib/my-team-subordinates-popup-widget/components/my-team-subordinates-popup/my-team-popup.component.html +109 -0
  67. package/src/lib/my-team-subordinates-popup-widget/components/my-team-subordinates-popup/my-team-popup.component.ts +297 -0
  68. package/src/lib/my-upcoming-events-widget/components/event-item/event-item.component.html +53 -0
  69. package/src/lib/my-upcoming-events-widget/components/event-item/event-item.component.ts +42 -0
  70. package/src/lib/my-upcoming-events-widget/components/event-tab-bar/event-tab-bar.component.html +21 -0
  71. package/src/lib/my-upcoming-events-widget/components/event-tab-bar/event-tab-bar.component.ts +44 -0
  72. package/src/lib/my-upcoming-events-widget/components/events-popup/events-popup.component.html +67 -0
  73. package/src/lib/my-upcoming-events-widget/components/events-popup/events-popup.component.ts +74 -0
  74. package/src/lib/my-upcoming-events-widget/my-upcoming-events-widget.component.html +74 -0
  75. package/src/lib/my-upcoming-events-widget/my-upcoming-events-widget.component.ts +199 -0
  76. package/src/lib/services/hr-self-widgets.service.ts +624 -0
  77. package/src/lib/shared/components/card-header/card-header.component.html +4 -0
  78. package/src/lib/shared/components/card-header/card-header.component.ts +18 -0
  79. package/src/lib/shared/components/hr-employee-calendar/hr-employee-calendar.component.html +47 -0
  80. package/src/lib/shared/components/hr-employee-calendar/hr-employee-calendar.component.ts +193 -0
  81. package/src/lib/shared/components/info-field/info-field.component.html +2 -0
  82. package/src/lib/shared/components/info-field/info-field.component.ts +20 -0
  83. package/src/lib/shared/components/widget-card/widget-card-component.html +3 -0
  84. package/src/lib/shared/components/widget-card/widget-card-component.ts +17 -0
  85. package/src/lib/shared/pipes/translate.pipe.ts +34 -0
  86. package/src/lib/shared/services/bank-information-cache.service.ts +29 -0
  87. package/src/lib/shared/services/common-methods.service.ts +33 -0
  88. package/src/lib/shared/services/constants.service.ts +12 -0
  89. package/src/lib/shared/services/entitlements-cache.service.ts +94 -0
  90. package/src/lib/shared/services/job-information-cache.service.ts +72 -0
  91. package/src/lib/shared/services/my-team-popup.service.ts +34 -0
  92. package/src/lib/shared/services/personal-information-cache.service.ts +77 -0
  93. package/src/lib/shared/services/profile-documents-cache-service.ts +44 -0
  94. package/src/lib/shared/services/profile-employee-dependents-cach.ts +37 -0
  95. package/src/lib/shared/services/qualifications-cache.service.ts +45 -0
  96. package/src/lib/shared/services/translate.service.ts +35 -0
  97. package/src/lib/shared/types/common.ts +359 -0
  98. package/src/public-api.ts +35 -0
  99. package/tsconfig.lib.json +11 -0
  100. package/tsconfig.lib.prod.json +9 -0
  101. package/tsconfig.spec.json +8 -0
  102. package/fesm2022/skysoftware-co-bayan-hr-widgets-ui.mjs +0 -4785
  103. package/fesm2022/skysoftware-co-bayan-hr-widgets-ui.mjs.map +0 -1
  104. package/types/skysoftware-co-bayan-hr-widgets-ui.d.ts +0 -1305
@@ -0,0 +1,9 @@
1
+ {
2
+ "$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
3
+ "dest": "../../dist/shared-ui",
4
+ "assets": ["README.md"],
5
+ "allowedNonPeerDependencies": ["tslib"],
6
+ "lib": {
7
+ "entryFile": "src/public-api.ts"
8
+ }
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skysoftware-co/bayan-hr-widgets-ui",
3
- "version": "2.0.18",
3
+ "version": "2.0.20",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0",
@@ -16,17 +16,5 @@
16
16
  "dependencies": {
17
17
  "tslib": "^2.3.0"
18
18
  },
19
- "sideEffects": false,
20
- "module": "fesm2022/skysoftware-co-bayan-hr-widgets-ui.mjs",
21
- "typings": "types/skysoftware-co-bayan-hr-widgets-ui.d.ts",
22
- "exports": {
23
- "./package.json": {
24
- "default": "./package.json"
25
- },
26
- ".": {
27
- "types": "./types/skysoftware-co-bayan-hr-widgets-ui.d.ts",
28
- "default": "./fesm2022/skysoftware-co-bayan-hr-widgets-ui.mjs"
29
- }
30
- },
31
- "type": "module"
32
- }
19
+ "sideEffects": false
20
+ }
@@ -0,0 +1,166 @@
1
+ {
2
+ "ReportingTo": "مفوض الى",
3
+ "NotAnknown": "غير معرف",
4
+ "ServiceYears": "سنوات الخدمة",
5
+ "More": "المزيد",
6
+ "day": "يوم",
7
+ "days": "أيام",
8
+ "Years": "سنوات",
9
+ "Months": "اشهر",
10
+ "UpcomingEvents": "الأحداث القادمة",
11
+ "Birthday": "عيد ميلاد",
12
+ "PublicHoliday": "اجازة عامة",
13
+ "During": "خلال",
14
+ "isIn": "هو في",
15
+ "is": "يكون",
16
+ "In": "في",
17
+ "NoEvents": "لا توجد أحداث",
18
+ "All": "الكل",
19
+ "ViewAll": "عرض الكل",
20
+ "WeekendDayNotDefined": "يوم عطلة نهاية الأسبوع غير محدد",
21
+ "Today": "اليوم",
22
+ "Tomorrow": "غداً",
23
+ "TwoDays": "يومين",
24
+ "ThisWeek": "هذا الأسبوع",
25
+ "NextWeek": "الأسبوع القادم",
26
+ "Profile": "الملف الشخصي",
27
+ "PaySlip": "كشف الراتب",
28
+ "Attendance": "الحضور",
29
+ "VacationStatement": "كشف الإجازة",
30
+ "Calendar": "التقويم",
31
+ "DayOff": "يوم اجازة",
32
+ "Events": "حدث",
33
+ "ScheduledVacations": "الإجازات المجدولة",
34
+ "BankInformation": "معلومات البنك",
35
+ "MainBank": "البنك الرئيسي",
36
+ "Bank": "البنك",
37
+ "Branch": "الفرع",
38
+ "IBAN": "IBAN",
39
+ "AccountNumber": "رقم الحساب",
40
+ "Beneficiary": "المستفيد",
41
+ "TransferAmount": "مبلغ التحويل",
42
+ "ThereIsNoBankYet": "لا يوجد بنك بعد",
43
+ "IsLoading": "قيد التحميل...",
44
+ "ThereIsNoMainYet": "لا توجد بيانات رئيسية بعد",
45
+ "ThereIsNoContactYet": "لا توجد بيانات اتصال بعد",
46
+ "ThereIsNoAddressYet": "لا يوجد عنوان بعد",
47
+ "ThereIsNoLanguagesYet": "لا توجد لغات بعد",
48
+ "UserInfoIsLoading": "جاري تحميل معلومات المستخدم...",
49
+ "ThereIsNoOtherNationalitiesYet": "لا توجد جنسيات أخرى بعد",
50
+ "main": "البيانات الرئيسية",
51
+ "contact": "بيانات الاتصال",
52
+ "address": "العنوان",
53
+ "languages": "اللغات",
54
+ "otherNationalities": "جنسيات أخرى",
55
+ "Name": "الاسم",
56
+ "Nationality": "الجنسية",
57
+ "NationalNumber": "الرقم الوطني",
58
+ "SocialSecurityNumber": "رقم الضمان الاجتماعي",
59
+ "MaritalStatus": "الحالة الاجتماعية",
60
+ "BirthDate": "تاريخ الميلاد",
61
+ "BirthPlace": "مكان الميلاد",
62
+ "BloodType": "فصيلة الدم",
63
+ "Religion": "الديانة",
64
+ "MinistryOfLaborNumber": "رقم وزارة العمل",
65
+ "MobileNumber": "رقم الجوال",
66
+ "HomePhone": "هاتف المنزل",
67
+ "EmergencyContact": "جهة اتصال للطوارئ",
68
+ "BusinessEmail": "البريد الإلكتروني للعمل",
69
+ "Email": "البريد الإلكتروني",
70
+ "Address": "العنوان",
71
+ "City": "المدينة",
72
+ "P.OBox": "صندوق البريد",
73
+ "PostalCode": "الرمز البريدي",
74
+ "Phone": "الهاتف",
75
+ "Relation": "العلاقة",
76
+ "Main": "المعلومات الوظيفية",
77
+ "Contract": "العقد",
78
+ "Salary": "الراتب",
79
+ "AdminUnit": "الوحدة الإدارية",
80
+ "Position": "المنصب",
81
+ "Grade": "الدرجة",
82
+ "JoiningDate": "تاريخ الالتحاق",
83
+ "CorporateJoiningDate": "تاريخ الالتحاق بالشركة",
84
+ "Sponsor": "الكفيل",
85
+ "ContractType": "نوع العقد",
86
+ "ContractStartDate": "تاريخ بداية العقد",
87
+ "ContractEndDate": "تاريخ نهاية العقد",
88
+ "ContractMaritalStatus": "الحالة الاجتماعية في العقد",
89
+ "ContractDependentsCount": "عدد المعالون في العقد",
90
+ "BasicSalary": "الراتب الأساسي",
91
+ "GrossSalary": "إجمالي الراتب",
92
+ "Points": "نقاط",
93
+ "SalaryRatio": "نسبة من الراتب",
94
+ "FixedAmount": "مبلغ ثابت",
95
+ "FixedRate": "نسبة ثابتة",
96
+ "ServiceCharge": "مستحقات نهاية الخدمة",
97
+ "ThereIsNoJobMainYet": "لا توجد معلومات وظيفية بعد",
98
+ "ThereIsNoJobContractYet": "لا توجد معلومات عقد بعد",
99
+ "ThereIsNoJobSalaryYet": "لا توجد معلومات راتب بعد",
100
+ "ThereIsNoJobServiceChargeYet": "لا توجد معلومات مستحقات نهاية الخدمة بعد",
101
+ "NextWeekVacationInsights": "ملخص إجازات الأسبوع القادم",
102
+ "UpcomingVacations": "الإجازات القادمة",
103
+ "ExpectedToReturn": "المتوقع عودتهم",
104
+ "Employee": "الموظف",
105
+ "StartDate": "تاريخ البداية",
106
+ "EndDate": "تاريخ النهاية",
107
+ "ReturnDate": "تاريخ العودة",
108
+ "MyTeam": "فريقي",
109
+ "ContactInfo": "معلومات التواصل",
110
+ "ShowAllSubordinates": "إظهار جميع المرؤوسون",
111
+ "NoDataToDisplay": "لا توجد بيانات للعرض",
112
+ "Search...": "بحث...",
113
+ "JobInformation": "معلومات الوظيفة",
114
+ "Degrees": "المؤهلات العلمية",
115
+ "degrees": "المؤهلات العلمية",
116
+ "experiences": "الخبرات",
117
+ "Degree/Year": "الدرجة / السنة",
118
+ "Country": "الدولة",
119
+ "Specialty": "التخصص",
120
+ "Institute": "المعهد",
121
+ "Period": "الفترة",
122
+ "Employer": "جهة العمل",
123
+ "TerminationReason": "سبب إنهاء الخدمة",
124
+ "ThereIsNoDegreesYet": "لا توجد مؤهلات علمية بعد",
125
+ "ThereIsNoExperiencesYet": "لا توجد خبرات بعد",
126
+ "ThereIsNoDependentsYet": "لا يوجد معالون حتى الآن",
127
+ "DependentTypeName": "نوع المعال",
128
+ "Vacations": "الاجازات",
129
+ "Indemnity": "التعويض",
130
+ "MedicalInsurance": "التأمين الطبي",
131
+ "Tickets": "تذاكر",
132
+ "Others": "آخرين",
133
+ "Type": "النوع",
134
+ "Entitlement": "الاستحقاق",
135
+ "IndemnityEligibility": "أهلية التعويض",
136
+ "OvertimeEligibility": "أهلية العمل الإضافي",
137
+ "SocialSecurityEligibility": "أهلية الضمان الاجتماعي",
138
+ "Class": "الفئة",
139
+ "Sector": "القطاع",
140
+ "Me": "أنا",
141
+ "Eligible": "مؤهل",
142
+ "NotEligible": "غير مؤهل",
143
+ "Member": "عضو",
144
+ "NotMember": "ليس عضوًا",
145
+ "There'sNoInformationInThisSectionYet": "لا توجد معلومات في هذا القسم حتى الآن",
146
+ "NotCoveredByMedicalInsurance": "غير مشمول بالتأمين الطبي",
147
+ "NoTicketEntitlement": "لا يوجد استحقاق تذكرة",
148
+ "Number": "العدد",
149
+ "CoverageDate": "تاريخ التغطية",
150
+ "TotalEmployeeShare": "إجمالي حصة الموظف",
151
+ "TotalEmployerShare": "إجمالي حصة صاحب العمل",
152
+ "Dependents": "المعالون",
153
+ "NotEntitled": "غير مستحق",
154
+ "TicketEvery{{value}}Months": "تذكرة كل {{value}} شهر",
155
+ "TicketEvery{{value}}Month": "تذكرة كل {{value}} شهر",
156
+ "ThereAreNoDependentsYet": "لا يوجد معالون حتى الآن",
157
+ "ThereIsNoPersonalDocumentsYet": "لا توجد وثائق شخصية بعد",
158
+ "ThereIsNoDependentsDocumentsYet": "لا توجد وثائق للمعالون بعد",
159
+ "DependentsDocuments": "وثائق المعالون",
160
+ "ThereAreNoDependentsDocumentsYet": "لا توجد وثائق للمعالون بعد",
161
+ "IssueDate": "تاريخ الإصدار",
162
+ "ExpiryDate": "تاريخ انتهاء الصلاحية",
163
+ "DocumentNumber": "رقم الوثيقة",
164
+ "EmployeeDocuments": "وثائق الموظف",
165
+ "ThereAreNoEmployeeDocumentsYet": "لا توجد وثائق للموظف بعد"
166
+ }
@@ -0,0 +1,166 @@
1
+ {
2
+ "ReportingTo": "Reporting to",
3
+ "NotAnknown": "N\\A",
4
+ "ServiceYears": "Service years",
5
+ "More": "More",
6
+ "day": "day",
7
+ "days": "days",
8
+ "Years": "Years",
9
+ "Months": "Months",
10
+ "UpcomingEvents": "Upcoming events",
11
+ "Birthday": "Birthday",
12
+ "PublicHoliday": "Public holiday",
13
+ "During": "during",
14
+ "isIn": "is in",
15
+ "is": "is",
16
+ "In": "in",
17
+ "NoEvents": "There are no events",
18
+ "All": "All",
19
+ "ViewAll": "View all",
20
+ "WeekendDayNotDefined": "Weekend day is not defined.",
21
+ "Today": "Today",
22
+ "Tomorrow": "Tomorrow",
23
+ "TwoDays": "2 days",
24
+ "ThisWeek": "This week",
25
+ "NextWeek": "Next week",
26
+ "Profile": "Profile",
27
+ "PaySlip": "Payslip",
28
+ "Attendance": "Attendance",
29
+ "VacationStatement": "Vacation statement",
30
+ "Calendar": "Calendar",
31
+ "DayOff": "Day off",
32
+ "Events": "Events",
33
+ "ScheduledVacations": "Scheduled vacations",
34
+ "BankInformation": "Bank information",
35
+ "MainBank": "Main bank",
36
+ "Bank": "Bank",
37
+ "Branch": "Branch",
38
+ "IBAN": "IBAN",
39
+ "AccountNumber": "Account number",
40
+ "Beneficiary": "Beneficiary",
41
+ "TransferAmount": "Transfer amount",
42
+ "ThereIsNoBankYet": "There is no bank yet",
43
+ "IsLoading": "is loading...",
44
+ "ThereIsNoMainYet": "There are no main details yet",
45
+ "ThereIsNoContactYet": "There are no contact details yet",
46
+ "ThereIsNoAddressYet": "There is no address yet",
47
+ "ThereIsNoLanguagesYet": "There are no languages yet",
48
+ "UserInfoIsLoading": "User information is loading...",
49
+ "ThereIsNoOtherNationalitiesYet": "There are no other nationalities yet",
50
+ "main": "Main",
51
+ "contact": "Contact",
52
+ "address": "Address",
53
+ "languages": "Languages",
54
+ "otherNationalities": "Other Nationalities",
55
+ "Name": "Name",
56
+ "Nationality": "Nationality",
57
+ "NationalNumber": "National number",
58
+ "SocialSecurityNumber": "Social security number",
59
+ "MaritalStatus": "Marital status",
60
+ "BirthDate": "Birth date",
61
+ "BirthPlace": "Birth place",
62
+ "BloodType": "Blood type",
63
+ "Religion": "Religion",
64
+ "MinistryOfLaborNumber": "Ministry of labor number",
65
+ "MobileNumber": "Mobile number",
66
+ "HomePhone": "Home phone",
67
+ "EmergencyContact": "Emergency contact",
68
+ "BusinessEmail": "Business email",
69
+ "Email": "Email",
70
+ "Address": "Address",
71
+ "City": "City",
72
+ "P.OBox": "P.O. box",
73
+ "PostalCode": "Postal code",
74
+ "Phone": "Phone",
75
+ "Relation": "Relation",
76
+ "jobMain": "Job information",
77
+ "jobContract": "Contract",
78
+ "jobSalary": "Salary",
79
+ "jobServiceCharge": "Service charge",
80
+ "AdminUnit": "Admin unit",
81
+ "Position": "Position",
82
+ "Grade": "Grade",
83
+ "JoiningDate": "Joining date",
84
+ "CorporateJoiningDate": "Corporate joining date",
85
+ "Sponsor": "Sponsor",
86
+ "ContractType": "Contract type",
87
+ "ContractStartDate": "Contract start date",
88
+ "ContractEndDate": "Contract end date",
89
+ "ContractMaritalStatus": "Contract marital status",
90
+ "ContractDependentsCount": "Contract dependents count",
91
+ "BasicSalary": "Basic salary",
92
+ "GrossSalary": "Gross salary",
93
+ "Points": "Points",
94
+ "SalaryRatio": "Salary ratio",
95
+ "FixedAmount": "Fixed amount",
96
+ "FixedRate": "Fixed rate",
97
+ "ServiceCharge": "Service charge",
98
+ "ThereIsNoJobMainYet": "There is no job information yet",
99
+ "ThereIsNoJobContractYet": "There is no contract information yet",
100
+ "ThereIsNoJobSalaryYet": "There is no salary information yet",
101
+ "ThereIsNoJobServiceChargeYet": "There is no service charge information yet",
102
+ "NextWeekVacationInsights": "Next week vacation insights",
103
+ "UpcomingVacations": "Upcoming vacations",
104
+ "ExpectedToReturn": "Expected to return",
105
+ "Employee": "Employee",
106
+ "StartDate": "Start date",
107
+ "EndDate": "End date",
108
+ "ReturnDate": "Return date",
109
+ "MyTeam": "My team",
110
+ "ContactInfo": "Contact info",
111
+ "ShowAllSubordinates": "Show all sub-ordinates",
112
+ "NoDataToDisplay": "No data to display",
113
+ "Search...": "Search...",
114
+ "JobInformation": "Job information",
115
+ "Degrees": "Degrees",
116
+ "degrees": "Degrees",
117
+ "experiences": "Experiences",
118
+ "Degree/Year": "Degree / Year",
119
+ "Country": "Country",
120
+ "Specialty": "Specialty",
121
+ "Institute": "Institute",
122
+ "Period": "Period",
123
+ "Employer": "Employer",
124
+ "TerminationReason": "Termination reason",
125
+ "ThereIsNoDegreesYet": "There are no degrees yet",
126
+ "ThereIsNoExperiencesYet": "There are no experiences yet",
127
+ "ThereIsNoDependentsYet": "There are no dependents yet",
128
+ "DependentTypeName": "Dependent type",
129
+ "Vacations": "Vacations",
130
+ "Indemnity": "Indemnity",
131
+ "MedicalInsurance": "Medical insurance",
132
+ "Tickets": "Tickets",
133
+ "Others": "Others",
134
+ "Type": "Type",
135
+ "Entitlement": "Entitlement",
136
+ "IndemnityEligibility": "Indemnity eligibility",
137
+ "OvertimeEligibility": "Overtime eligibility",
138
+ "SocialSecurityEligibility": "Social security eligibility",
139
+ "Class": "Class",
140
+ "Sector": "Sector",
141
+ "Me": "Me",
142
+ "Eligible": "Eligible",
143
+ "NotEligible": "Not eligible",
144
+ "Member": "Member",
145
+ "NotMember": "Not member",
146
+ "There'sNoInformationInThisSectionYet": "There's no information in this section yet",
147
+ "NotCoveredByMedicalInsurance": "Not covered by medical insurance",
148
+ "NoTicketEntitlement": "No ticket entitlement",
149
+ "Number": "Number",
150
+ "CoverageDate": "Coverage date",
151
+ "TotalEmployeeShare": "Total employee share",
152
+ "TotalEmployerShare": "Total employer share",
153
+ "Dependents": "Dependents",
154
+ "NotEntitled": "Not entitled",
155
+ "TicketEvery{{value}}Months": "Ticket every {{value}} months",
156
+ "TicketEvery{{value}}Month": "Ticket every {{value}} month",
157
+ "ThereAreNoDependentsYet": "There are no dependents yet",
158
+ "ThereAreNoPersonalDocumentsYet": "There are no personal documents yet",
159
+ "ThereAreNoDependentsDocumentsYet": "There are no dependents documents yet",
160
+ "DependentsDocuments": "Dependents Documents",
161
+ "IssueDate": "Issue Date",
162
+ "ExpiryDate": "Expiry Date",
163
+ "DocumentNumber": "Document Number",
164
+ "EmployeeDocuments": "Employee Documents",
165
+ "ThereAreNoEmployeeDocumentsYet": "There are no employee documents yet"
166
+ }
@@ -0,0 +1,166 @@
1
+ {
2
+ "ReportingTo": "Rapport à",
3
+ "NotAnknown": "N/A",
4
+ "ServiceYears": "Années de service",
5
+ "More": "Plus",
6
+ "day": "jour",
7
+ "days": "Jours",
8
+ "Years": "Années",
9
+ "Months": "Mois",
10
+ "UpcomingEvents": "Événements à venir",
11
+ "Birthday": "Anniversaire",
12
+ "PublicHoliday": "Jour férié",
13
+ "During": "Pendant",
14
+ "isIn": "Est dans",
15
+ "is": "est",
16
+ "In": "Dans",
17
+ "NoEvents": "Il n'y a pas d'événements",
18
+ "All": "Toute",
19
+ "ViewAll": "Tout voir",
20
+ "WeekendDayNotDefined": "Le jour de week-end n'est pas défini.",
21
+ "Today": "Aujourd'hui",
22
+ "Tomorrow": "Demain",
23
+ "TwoDays": "Dans 2 jours",
24
+ "ThisWeek": "Cette semaine",
25
+ "NextWeek": "La semaine prochaine",
26
+ "Profile": "Profil",
27
+ "PaySlip": "Fiche de paie",
28
+ "Attendance": "Présence",
29
+ "VacationStatement": "Déclaration de vacances",
30
+ "Calendar": "Calendrier",
31
+ "DayOff": "Jour de congé",
32
+ "Events": "Événements",
33
+ "ScheduledVacations": "Vacances programmées",
34
+ "BankInformation": "Informations bancaires",
35
+ "MainBank": "Banque principale",
36
+ "Bank": "Banque",
37
+ "Branch": "Succursale",
38
+ "IBAN": "IBAN",
39
+ "AccountNumber": "Numéro de compte",
40
+ "Beneficiary": "Bénéficiaire",
41
+ "TransferAmount": "Montant du transfert",
42
+ "ThereIsNoBankYet": "Il n'y a pas encore de banque",
43
+ "IsLoading": "est en cours de chargement...",
44
+ "ThereIsNoMainYet": "Il n'y a pas encore d'informations principales",
45
+ "ThereIsNoContactYet": "Il n'y a pas encore de coordonnées",
46
+ "ThereIsNoAddressYet": "Il n'y a pas encore d'adresse",
47
+ "ThereIsNoLanguagesYet": "Il n'y a pas encore de langues",
48
+ "UserInfoIsLoading": "Les informations de l'utilisateur sont en cours de chargement...",
49
+ "ThereIsNoOtherNationalitiesYet": "Il n'y a pas encore d'autres nationalités",
50
+ "main": "Principal",
51
+ "contact": "Contact",
52
+ "address": "Adresse",
53
+ "languages": "Langues",
54
+ "otherNationalities": "Autres nationalités",
55
+ "Name": "Nom",
56
+ "Nationality": "Nationalité",
57
+ "NationalNumber": "Numéro national",
58
+ "SocialSecurityNumber": "Numéro de sécurité sociale",
59
+ "MaritalStatus": "État civil",
60
+ "BirthDate": "Date de naissance",
61
+ "BirthPlace": "Lieu de naissance",
62
+ "BloodType": "Groupe sanguin",
63
+ "Religion": "Religion",
64
+ "MinistryOfLaborNumber": "Numéro du ministère du travail",
65
+ "MobileNumber": "Numéro de mobile",
66
+ "HomePhone": "Téléphone domicile",
67
+ "EmergencyContact": "Contact d'urgence",
68
+ "BusinessEmail": "E-mail professionnel",
69
+ "Email": "E-mail",
70
+ "Address": "Adresse",
71
+ "City": "Ville",
72
+ "P.OBox": "Boîte postale",
73
+ "PostalCode": "Code postal",
74
+ "Phone": "Téléphone",
75
+ "Relation": "Relation",
76
+ "jobMain": "Informations professionnelles",
77
+ "jobContract": "Contrat",
78
+ "jobSalary": "Salaire",
79
+ "jobServiceCharge": "Indemnité de fin de service",
80
+ "AdminUnit": "Unité administrative",
81
+ "Position": "Poste",
82
+ "Grade": "Grade",
83
+ "JoiningDate": "Date d'embauche",
84
+ "CorporateJoiningDate": "Date d'embauche dans l'entreprise",
85
+ "Sponsor": "Parrainer",
86
+ "ContractType": "Type de contrat",
87
+ "ContractStartDate": "Date de début du contrat",
88
+ "ContractEndDate": "Date de fin du contrat",
89
+ "ContractMaritalStatus": "État civil du contrat",
90
+ "ContractDependentsCount": "Nombre de personnes à charge du contrat",
91
+ "BasicSalary": "Salaire de base",
92
+ "GrossSalary": "Salaire brut",
93
+ "Points": "Points",
94
+ "SalaryRatio": "Ratio du salaire",
95
+ "FixedAmount": "Montant fixe",
96
+ "FixedRate": "Taux fixe",
97
+ "ServiceCharge": "Indemnité de fin de service",
98
+ "ThereIsNoJobMainYet": "Il n'y a pas encore d'informations professionnelles",
99
+ "ThereIsNoJobContractYet": "Il n'y a pas encore d'informations de contrat",
100
+ "ThereIsNoJobSalaryYet": "Il n'y a pas encore d'informations salariales",
101
+ "ThereIsNoJobServiceChargeYet": "Il n'y a pas encore d'informations d'indemnité de fin de service",
102
+ "NextWeekVacationInsights": "Aperçu des vacances de la semaine prochaine",
103
+ "UpcomingVacations": "Vacances à venir",
104
+ "ExpectedToReturn": "Retour prévu",
105
+ "Employee": "Employé",
106
+ "StartDate": "Date de début",
107
+ "EndDate": "Date de fin",
108
+ "ReturnDate": "Date de retour",
109
+ "MyTeam": "Mon équipe",
110
+ "ContactInfo": "Coordonnées",
111
+ "ShowAllSubordinates": "Afficher tous les subordonnés",
112
+ "NoDataToDisplay": "Aucune donnée à afficher",
113
+ "Search...": "Rechercher...",
114
+ "JobInformation": "Informations sur l'emploi",
115
+ "Degrees": "Diplomes",
116
+ "degrees": "Diplomes",
117
+ "experiences": "Experiences",
118
+ "Degree/Year": "Diplome / Annee",
119
+ "Country": "Pays",
120
+ "Specialty": "Specialite",
121
+ "Institute": "Institut",
122
+ "Period": "Periode",
123
+ "Employer": "Employeur",
124
+ "TerminationReason": "Motif de fin de service",
125
+ "ThereIsNoDegreesYet": "Il n'y a pas encore de diplomes",
126
+ "ThereIsNoExperiencesYet": "Il n'y a pas encore d'experiences",
127
+ "ThereIsNoDependentsYet": "Il n'y a pas encore de personnes à charge",
128
+ "DependentTypeName": "Type de personne à charge",
129
+ "Vacations": "Vacances",
130
+ "Indemnity": "Indemnité",
131
+ "MedicalInsurance": "Assurance médicale",
132
+ "Tickets": "Billets",
133
+ "Others": "Autres",
134
+ "Type": "Type",
135
+ "Entitlement": "Droit",
136
+ "IndemnityEligibility": "Admissibilité à l'indemnisation",
137
+ "OvertimeEligibility": "Admissibilité aux heures supplémentaires",
138
+ "SocialSecurityEligibility": "Admissibilité à la sécurité sociale",
139
+ "Class": "Classe",
140
+ "Sector": "Secteur",
141
+ "Me": "Moi",
142
+ "Eligible": "Admissible",
143
+ "NotEligible": "Non éligible",
144
+ "Member": "Membre",
145
+ "NotMember": "Non membre",
146
+ "There'sNoInformationInThisSectionYet": "Il n'y a pas encore d'informations dans cette section",
147
+ "NotCoveredByMedicalInsurance": "Non couvert par l'assurance médicale",
148
+ "NoTicketEntitlement": "Aucun droit au billet",
149
+ "Number": "Nombre",
150
+ "CoverageDate": "Date de couverture",
151
+ "TotalEmployeeShare": "Part totale des employés",
152
+ "TotalEmployerShare": "Part totale de l'employeur",
153
+ "Dependents": "Personnes à charge",
154
+ "NotEntitled": "Non éligible au droit",
155
+ "TicketEvery{{value}}Months": "Billet tous les {{value}} mois",
156
+ "TicketEvery{{value}}Month": "Billet tous les {{value}} mois",
157
+ "ThereAreNoDependentsYet": "Il n'y a pas encore de personnes à charge",
158
+ "ThereAreNoPersonalDocumentsYet": "Il n'y a pas encore de documents personnels",
159
+ "ThereAreNoDependentsDocumentsYet": "Il n'y a pas encore de documents pour les personnes à charge",
160
+ "DependentsDocuments": "Documents des personnes à charge",
161
+ "IssueDate": "Date d'émission",
162
+ "ExpiryDate": "Date d'expiration",
163
+ "DocumentNumber": "Numéro de document",
164
+ "EmployeeDocuments": "Documents de l'employé",
165
+ "ThereAreNoEmployeeDocumentsYet": "Il n'y a pas encore de documents de l'employé"
166
+ }
@@ -0,0 +1,25 @@
1
+ <hr-card-header
2
+ [icon]="calendarIcon"
3
+ [title]="'Calendar' | translate"
4
+ [containerClass]="'d-flex align-items-center mb-3 ' + headerContainerClass()"
5
+ ></hr-card-header>
6
+ <hr-employee-calendar
7
+ [showEvents]="true"
8
+ [showUpComingVacations]="true"
9
+ [scheduleCalenderVacation]="scheduleCalenderVacation()"
10
+ [minDate]="minDate"
11
+ [maxDate]="maxDate"
12
+ [legendContainerClass]="legendContainerClass()"
13
+ [legendRowClass]="legendRowClass()"
14
+ [legendItemClass]="legendItemClass()"
15
+ [legendDotClass]="legendDotClass()"
16
+ [legendLabelClass]="legendLabelClass()"
17
+ [publicHolidayDotClass]="publicHolidayDotClass()"
18
+ [dayOffDotClass]="dayOffDotClass()"
19
+ [eventsDotClass]="eventsDotClass()"
20
+ [vacationsContainerClass]="vacationsContainerClass()"
21
+ [vacationsItemClass]="vacationsItemClass()"
22
+ [vacationsIconClass]="vacationsIconClass()"
23
+ [calendarContainerClass]="calendarContainerClass()"
24
+ [calendarClass]="calendarClass()"
25
+ ></hr-employee-calendar>