@hed-hog/operations 0.0.295 → 0.0.296
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/dist/operations.controller.d.ts +415 -0
- package/dist/operations.controller.d.ts.map +1 -0
- package/dist/operations.controller.js +333 -0
- package/dist/operations.controller.js.map +1 -0
- package/dist/operations.module.d.ts.map +1 -1
- package/dist/operations.module.js +4 -3
- package/dist/operations.module.js.map +1 -1
- package/dist/operations.service.d.ts +589 -153
- package/dist/operations.service.d.ts.map +1 -1
- package/dist/operations.service.js +2229 -100
- package/dist/operations.service.js.map +1 -1
- package/hedhog/data/menu.yaml +198 -251
- package/hedhog/data/role.yaml +23 -14
- package/hedhog/data/route.yaml +317 -143
- package/hedhog/frontend/app/_components/collaborator-details-screen.tsx.ejs +310 -0
- package/hedhog/frontend/app/_components/collaborator-form-screen.tsx.ejs +631 -0
- package/hedhog/frontend/app/_components/contract-details-screen.tsx.ejs +132 -0
- package/hedhog/frontend/app/_components/contract-form-screen.tsx.ejs +558 -0
- package/hedhog/frontend/app/_components/project-details-screen.tsx.ejs +291 -0
- package/hedhog/frontend/app/_components/project-form-screen.tsx.ejs +689 -0
- package/hedhog/frontend/app/_lib/api.ts.ejs +32 -0
- package/hedhog/frontend/app/_lib/hooks/use-operations-access.ts.ejs +44 -0
- package/hedhog/frontend/app/_lib/types.ts.ejs +360 -0
- package/hedhog/frontend/app/_lib/utils/format.ts.ejs +129 -25
- package/hedhog/frontend/app/_lib/utils/forms.ts.ejs +14 -0
- package/hedhog/frontend/app/approvals/page.tsx.ejs +386 -147
- package/hedhog/frontend/app/collaborators/[id]/edit/page.tsx.ejs +11 -0
- package/hedhog/frontend/app/collaborators/[id]/page.tsx.ejs +11 -0
- package/hedhog/frontend/app/collaborators/new/page.tsx.ejs +5 -0
- package/hedhog/frontend/app/collaborators/page.tsx.ejs +261 -0
- package/hedhog/frontend/app/contracts/[id]/edit/page.tsx.ejs +11 -0
- package/hedhog/frontend/app/contracts/[id]/page.tsx.ejs +11 -108
- package/hedhog/frontend/app/contracts/new/page.tsx.ejs +17 -0
- package/hedhog/frontend/app/contracts/page.tsx.ejs +262 -181
- package/hedhog/frontend/app/page.tsx.ejs +319 -177
- package/hedhog/frontend/app/projects/[id]/edit/page.tsx.ejs +11 -0
- package/hedhog/frontend/app/projects/[id]/page.tsx.ejs +11 -936
- package/hedhog/frontend/app/projects/new/page.tsx.ejs +5 -0
- package/hedhog/frontend/app/projects/page.tsx.ejs +236 -1074
- package/hedhog/frontend/app/schedule-adjustments/page.tsx.ejs +418 -0
- package/hedhog/frontend/app/team/page.tsx.ejs +339 -0
- package/hedhog/frontend/app/time-off/page.tsx.ejs +328 -0
- package/hedhog/frontend/app/timesheets/page.tsx.ejs +636 -126
- package/hedhog/frontend/messages/en.json +648 -454
- package/hedhog/frontend/messages/pt.json +647 -454
- package/hedhog/table/operations_approval.yaml +49 -0
- package/hedhog/table/operations_approval_history.yaml +29 -0
- package/hedhog/table/{operations_employee.yaml → operations_collaborator.yaml} +67 -64
- package/hedhog/table/operations_collaborator_schedule_day.yaml +34 -0
- package/hedhog/table/operations_contract.yaml +100 -48
- package/hedhog/table/operations_contract_document.yaml +39 -0
- package/hedhog/table/operations_contract_financial_term.yaml +40 -0
- package/hedhog/table/operations_contract_history.yaml +27 -0
- package/hedhog/table/operations_contract_party.yaml +46 -0
- package/hedhog/table/operations_contract_revision.yaml +38 -0
- package/hedhog/table/operations_contract_signature.yaml +38 -0
- package/hedhog/table/operations_project.yaml +54 -50
- package/hedhog/table/{operations_allocation.yaml → operations_project_assignment.yaml} +55 -52
- package/hedhog/table/operations_schedule_adjustment_day.yaml +34 -0
- package/hedhog/table/operations_schedule_adjustment_request.yaml +53 -0
- package/hedhog/table/operations_time_off_request.yaml +57 -0
- package/hedhog/table/operations_timesheet.yaml +41 -36
- package/hedhog/table/operations_timesheet_entry.yaml +40 -50
- package/package.json +8 -7
- package/src/operations.controller.ts +182 -0
- package/src/operations.module.ts +22 -21
- package/src/operations.service.ts +3595 -137
- package/hedhog/data/operations_career_level.yaml +0 -102
- package/hedhog/data/operations_career_track.yaml +0 -8
- package/hedhog/data/operations_certification.yaml +0 -38
- package/hedhog/data/operations_evaluation_cycle.yaml +0 -18
- package/hedhog/data/operations_performance_criterion.yaml +0 -48
- package/hedhog/frontend/app/_components/allocation-calendar.tsx.ejs +0 -56
- package/hedhog/frontend/app/_components/kanban-board.tsx.ejs +0 -626
- package/hedhog/frontend/app/_components/timesheet-entry-dialog.tsx.ejs +0 -142
- package/hedhog/frontend/app/_lib/hooks/use-operations-data.ts.ejs +0 -41
- package/hedhog/frontend/app/_lib/hooks/use-operations-growth-data.ts.ejs +0 -63
- package/hedhog/frontend/app/_lib/mocks/allocations.mock.ts.ejs +0 -74
- package/hedhog/frontend/app/_lib/mocks/contracts.mock.ts.ejs +0 -74
- package/hedhog/frontend/app/_lib/mocks/operations-growth.mock.ts.ejs +0 -824
- package/hedhog/frontend/app/_lib/mocks/projects.mock.ts.ejs +0 -455
- package/hedhog/frontend/app/_lib/mocks/tasks.mock.ts.ejs +0 -117
- package/hedhog/frontend/app/_lib/mocks/timesheets.mock.ts.ejs +0 -84
- package/hedhog/frontend/app/_lib/mocks/users.mock.ts.ejs +0 -67
- package/hedhog/frontend/app/_lib/services/contracts.service.ts.ejs +0 -10
- package/hedhog/frontend/app/_lib/services/operations-growth.service.ts.ejs +0 -31
- package/hedhog/frontend/app/_lib/services/projects.service.ts.ejs +0 -10
- package/hedhog/frontend/app/_lib/services/tasks.service.ts.ejs +0 -10
- package/hedhog/frontend/app/_lib/services/timesheets.service.ts.ejs +0 -10
- package/hedhog/frontend/app/_lib/types/operations-growth.ts.ejs +0 -209
- package/hedhog/frontend/app/_lib/types/operations.ts.ejs +0 -156
- package/hedhog/frontend/app/_lib/utils/growth.ts.ejs +0 -62
- package/hedhog/frontend/app/_lib/utils/metrics.ts.ejs +0 -103
- package/hedhog/frontend/app/_lib/utils/status.ts.ejs +0 -80
- package/hedhog/frontend/app/allocations/page.tsx.ejs +0 -155
- package/hedhog/frontend/app/career/page.tsx.ejs +0 -143
- package/hedhog/frontend/app/certifications/page.tsx.ejs +0 -202
- package/hedhog/frontend/app/evaluations/page.tsx.ejs +0 -278
- package/hedhog/frontend/app/goals/page.tsx.ejs +0 -171
- package/hedhog/frontend/app/growth/page.tsx.ejs +0 -288
- package/hedhog/frontend/app/manager/page.tsx.ejs +0 -175
- package/hedhog/frontend/app/rewards/page.tsx.ejs +0 -196
- package/hedhog/frontend/app/tasks/page.tsx.ejs +0 -999
- package/hedhog/table/operations_calibration_item.yaml +0 -61
- package/hedhog/table/operations_calibration_session.yaml +0 -25
- package/hedhog/table/operations_career_level.yaml +0 -75
- package/hedhog/table/operations_career_track.yaml +0 -21
- package/hedhog/table/operations_certification.yaml +0 -48
- package/hedhog/table/operations_employee_certification.yaml +0 -43
- package/hedhog/table/operations_employee_connect.yaml +0 -61
- package/hedhog/table/operations_employee_evaluation.yaml +0 -113
- package/hedhog/table/operations_employee_evaluation_item.yaml +0 -39
- package/hedhog/table/operations_employee_profile.yaml +0 -80
- package/hedhog/table/operations_employee_skill_matrix.yaml +0 -30
- package/hedhog/table/operations_evaluation_cycle.yaml +0 -31
- package/hedhog/table/operations_goal.yaml +0 -67
- package/hedhog/table/operations_goal_progress.yaml +0 -31
- package/hedhog/table/operations_performance_criterion.yaml +0 -29
- package/hedhog/table/operations_promotion_readiness.yaml +0 -49
- package/hedhog/table/operations_promotion_recommendation.yaml +0 -63
- package/hedhog/table/operations_public_recognition.yaml +0 -46
- package/hedhog/table/operations_reward.yaml +0 -100
- package/hedhog/table/operations_score_event.yaml +0 -81
- package/hedhog/table/operations_task.yaml +0 -60
- package/src/operations-data.controller.ts +0 -54
- package/src/operations-growth.controller.ts +0 -44
|
@@ -1,454 +1,648 @@
|
|
|
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
|
-
|
|
1
|
+
{
|
|
2
|
+
"Common": {
|
|
3
|
+
"actions": {
|
|
4
|
+
"refresh": "Refresh",
|
|
5
|
+
"create": "Create",
|
|
6
|
+
"back": "Back",
|
|
7
|
+
"edit": "Edit",
|
|
8
|
+
"openContract": "Open contract",
|
|
9
|
+
"activate": "Activate",
|
|
10
|
+
"deactivate": "Deactivate",
|
|
11
|
+
"save": "Save",
|
|
12
|
+
"addLine": "Add line",
|
|
13
|
+
"approve": "Approve",
|
|
14
|
+
"reject": "Reject",
|
|
15
|
+
"cancel": "Cancel"
|
|
16
|
+
},
|
|
17
|
+
"filters": {
|
|
18
|
+
"allStatuses": "All statuses",
|
|
19
|
+
"allTypes": "All types"
|
|
20
|
+
},
|
|
21
|
+
"labels": {
|
|
22
|
+
"notAvailable": "Not available",
|
|
23
|
+
"notAssigned": "Not assigned",
|
|
24
|
+
"collaborator": "Collaborator",
|
|
25
|
+
"collaboratorType": "Type",
|
|
26
|
+
"department": "Department",
|
|
27
|
+
"supervisor": "Supervisor",
|
|
28
|
+
"weeklyCapacity": "Weekly capacity",
|
|
29
|
+
"joinedAt": "Joined at",
|
|
30
|
+
"leftAt": "Left at",
|
|
31
|
+
"actions": "Actions",
|
|
32
|
+
"status": "Status",
|
|
33
|
+
"project": "Project",
|
|
34
|
+
"contract": "Contract",
|
|
35
|
+
"contractStatus": "Contract status",
|
|
36
|
+
"contractCategory": "Contract category",
|
|
37
|
+
"manager": "Manager",
|
|
38
|
+
"progress": "Progress",
|
|
39
|
+
"timeline": "Timeline",
|
|
40
|
+
"budget": "Budget",
|
|
41
|
+
"teamSize": "Team size",
|
|
42
|
+
"client": "Client",
|
|
43
|
+
"billingModel": "Billing model",
|
|
44
|
+
"accountManager": "Account manager",
|
|
45
|
+
"projectCount": "Project count",
|
|
46
|
+
"entries": "Entries",
|
|
47
|
+
"totalHours": "Total hours",
|
|
48
|
+
"approver": "Approver",
|
|
49
|
+
"noNotes": "No notes",
|
|
50
|
+
"lines": "lines",
|
|
51
|
+
"unassigned": "Unassigned",
|
|
52
|
+
"viewOnly": "View only",
|
|
53
|
+
"week": "Week",
|
|
54
|
+
"weekStart": "Week start",
|
|
55
|
+
"weekEnd": "Week end",
|
|
56
|
+
"notes": "Notes",
|
|
57
|
+
"projectAssignment": "Project assignment",
|
|
58
|
+
"activity": "Task / activity",
|
|
59
|
+
"description": "Description",
|
|
60
|
+
"workDate": "Work date",
|
|
61
|
+
"hours": "Hours",
|
|
62
|
+
"days": "Days",
|
|
63
|
+
"reason": "Reason",
|
|
64
|
+
"requestType": "Request type",
|
|
65
|
+
"requestScope": "Request scope",
|
|
66
|
+
"schedule": "Schedule",
|
|
67
|
+
"weeklySchedule": "Weekly schedule",
|
|
68
|
+
"workingDay": "Working day",
|
|
69
|
+
"dayOff": "Day off",
|
|
70
|
+
"requester": "Requester",
|
|
71
|
+
"submittedAt": "Submitted at",
|
|
72
|
+
"noteOptional": "Optional note",
|
|
73
|
+
"activeAssignments": "Active assignments",
|
|
74
|
+
"pendingApprovals": "Pending approvals",
|
|
75
|
+
"startDate": "Start date",
|
|
76
|
+
"endDate": "End date",
|
|
77
|
+
"monthlyHourCap": "Monthly hour cap"
|
|
78
|
+
,
|
|
79
|
+
"title": "Title",
|
|
80
|
+
"role": "Role",
|
|
81
|
+
"total": "Total",
|
|
82
|
+
"pending": "Pending",
|
|
83
|
+
"approved": "Approved"
|
|
84
|
+
},
|
|
85
|
+
"states": {
|
|
86
|
+
"emptyTitle": "No records found",
|
|
87
|
+
"emptyDescription": "Adjust the current filters or create a new record.",
|
|
88
|
+
"noAccessTitle": "Access required"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"DashboardPage": {
|
|
92
|
+
"title": "Operations Dashboard",
|
|
93
|
+
"description": "Monitor delivery, requests, and team approvals from one place.",
|
|
94
|
+
"breadcrumb": "Dashboard",
|
|
95
|
+
"cards": {
|
|
96
|
+
"projects": "Visible projects",
|
|
97
|
+
"projectsDescription": "{active} active right now",
|
|
98
|
+
"timesheets": "Visible timesheets",
|
|
99
|
+
"timesheetsDescription": "{pending} waiting for approval",
|
|
100
|
+
"timeOff": "Time-off requests",
|
|
101
|
+
"timeOffDescription": "Approved, pending, and rejected requests",
|
|
102
|
+
"approvals": "Pending approvals",
|
|
103
|
+
"approvalsDescription": "Items that still need a supervisor decision"
|
|
104
|
+
},
|
|
105
|
+
"actions": {
|
|
106
|
+
"openTimesheets": "Open timesheets"
|
|
107
|
+
},
|
|
108
|
+
"scope": {
|
|
109
|
+
"title": "Access scope",
|
|
110
|
+
"description": "The dashboard automatically follows your collaborator, supervisor, or director view.",
|
|
111
|
+
"roleScope": "Role scope",
|
|
112
|
+
"collaborator": "Linked collaborator",
|
|
113
|
+
"teamSize": "Direct reports"
|
|
114
|
+
},
|
|
115
|
+
"recentTimesheets": {
|
|
116
|
+
"title": "Recent timesheets",
|
|
117
|
+
"description": "Latest weekly records visible to your role.",
|
|
118
|
+
"empty": "No timesheets are available yet."
|
|
119
|
+
},
|
|
120
|
+
"nextSteps": {
|
|
121
|
+
"title": "What you can do next",
|
|
122
|
+
"description": "Common workforce operations actions available in this module.",
|
|
123
|
+
"submitTimesheet": "Create or submit your weekly timesheet for review.",
|
|
124
|
+
"requestTimeOff": "Open a new vacation or time-off request.",
|
|
125
|
+
"adjustSchedule": "Send a weekly schedule adjustment for approval."
|
|
126
|
+
},
|
|
127
|
+
"team": {
|
|
128
|
+
"title": "Team snapshot",
|
|
129
|
+
"description": "Direct-report visibility for supervisors and directors.",
|
|
130
|
+
"members": "Team members",
|
|
131
|
+
"projects": "Visible projects",
|
|
132
|
+
"pendingApprovals": "Pending approvals",
|
|
133
|
+
"assignments": "assignments",
|
|
134
|
+
"awaitingReview": "awaiting review",
|
|
135
|
+
"empty": "No direct reports are linked to this supervisor yet.",
|
|
136
|
+
"collaboratorMessage": "Supervisor and director roles unlock the team operational overview."
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
"CollaboratorsPage": {
|
|
140
|
+
"title": "Collaborators",
|
|
141
|
+
"description": "Maintain operational collaborator profiles, reporting lines, and capacity.",
|
|
142
|
+
"breadcrumb": "Collaborators",
|
|
143
|
+
"searchPlaceholder": "Search collaborator, code, department, or title...",
|
|
144
|
+
"profileTitle": "My collaborator profile",
|
|
145
|
+
"profileDescription": "Self-service view of the operational profile linked to your user.",
|
|
146
|
+
"emptyDescription": "No collaborator records match the current filters.",
|
|
147
|
+
"sheet": {
|
|
148
|
+
"createTitle": "Create collaborator",
|
|
149
|
+
"editTitle": "Edit collaborator",
|
|
150
|
+
"description": "Create or update the workforce profile used across projects, contracts, and approvals."
|
|
151
|
+
},
|
|
152
|
+
"form": {
|
|
153
|
+
"userId": "User ID",
|
|
154
|
+
"code": "Code",
|
|
155
|
+
"displayName": "Display name",
|
|
156
|
+
"department": "Department",
|
|
157
|
+
"title": "Title",
|
|
158
|
+
"levelLabel": "Level label",
|
|
159
|
+
"weeklyCapacityHours": "Weekly capacity hours",
|
|
160
|
+
"notes": "Notes"
|
|
161
|
+
},
|
|
162
|
+
"messages": {
|
|
163
|
+
"userRequired": "A user ID is required for new collaborators.",
|
|
164
|
+
"requiredFields": "Code and display name are required.",
|
|
165
|
+
"saveSuccess": "Collaborator saved successfully.",
|
|
166
|
+
"saveError": "Unable to save the collaborator.",
|
|
167
|
+
"statusSuccess": "Collaborator status updated successfully.",
|
|
168
|
+
"statusError": "Unable to update collaborator status."
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
"CollaboratorFormPage": {
|
|
172
|
+
"newTitle": "New Collaborator",
|
|
173
|
+
"editTitle": "Edit Collaborator",
|
|
174
|
+
"breadcrumb": "Collaborator Form",
|
|
175
|
+
"description": "Register collaborators with the right employment profile and optionally generate a draft contract from the hiring flow.",
|
|
176
|
+
"noAccessDescription": "Director permissions are required to manage collaborator registration.",
|
|
177
|
+
"loading": "Loading collaborator data...",
|
|
178
|
+
"sections": {
|
|
179
|
+
"basicInfo": "Basic info",
|
|
180
|
+
"basicInfoDescription": "Core identity and profile data used across operations.",
|
|
181
|
+
"employmentInfo": "Employment info",
|
|
182
|
+
"employmentInfoDescription": "Choose the collaborator type, lifecycle status, and start dates.",
|
|
183
|
+
"supervisor": "Supervisor assignment",
|
|
184
|
+
"supervisorDescription": "Link the direct supervisor used for team visibility and approvals.",
|
|
185
|
+
"contract": "Compensation and contract draft",
|
|
186
|
+
"contractDescription": "Capture baseline contract data and choose whether a hiring-origin draft should be created automatically.",
|
|
187
|
+
"schedule": "Default weekly schedule",
|
|
188
|
+
"scheduleDescription": "Define the expected recurring work schedule used by operations and approvals."
|
|
189
|
+
},
|
|
190
|
+
"fields": {
|
|
191
|
+
"userId": "User ID",
|
|
192
|
+
"code": "Code",
|
|
193
|
+
"displayName": "Display name",
|
|
194
|
+
"department": "Department",
|
|
195
|
+
"title": "Role / position",
|
|
196
|
+
"levelLabel": "Level",
|
|
197
|
+
"notes": "Notes",
|
|
198
|
+
"collaboratorType": "Collaborator type",
|
|
199
|
+
"weeklyCapacityHours": "Weekly workload",
|
|
200
|
+
"compensationAmount": "Compensation amount",
|
|
201
|
+
"contractDescription": "Contract draft notes",
|
|
202
|
+
"autoGenerateContractDraft": "Generate contract draft automatically",
|
|
203
|
+
"autoGenerateContractDraftDescription": "Creates a related draft contract classified from the collaborator type and linked to the hiring origin."
|
|
204
|
+
},
|
|
205
|
+
"messages": {
|
|
206
|
+
"userRequired": "A user ID is required for new collaborators.",
|
|
207
|
+
"requiredFields": "Code and display name are required.",
|
|
208
|
+
"createSuccess": "Collaborator created successfully.",
|
|
209
|
+
"createError": "Unable to create the collaborator.",
|
|
210
|
+
"updateSuccess": "Collaborator updated successfully.",
|
|
211
|
+
"updateError": "Unable to update the collaborator."
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
"CollaboratorDetailsPage": {
|
|
215
|
+
"title": "Collaborator Details",
|
|
216
|
+
"breadcrumb": "Collaborator Details",
|
|
217
|
+
"description": "Review operational collaborator information, related contracts, assignments, schedule, and request summaries.",
|
|
218
|
+
"notFound": "The requested collaborator could not be found or is not visible in your access scope.",
|
|
219
|
+
"cards": {
|
|
220
|
+
"timesheets": "Timesheets",
|
|
221
|
+
"timesheetsDescription": "{pending} pending review",
|
|
222
|
+
"loggedHours": "Logged hours",
|
|
223
|
+
"loggedHoursDescription": "Total approved and draft hours recorded so far.",
|
|
224
|
+
"timeOff": "Time-off requests",
|
|
225
|
+
"timeOffDescription": "{pending} pending request(s)",
|
|
226
|
+
"assignments": "Project assignments",
|
|
227
|
+
"assignmentsDescription": "Active and historical project links."
|
|
228
|
+
},
|
|
229
|
+
"sections": {
|
|
230
|
+
"profile": "Profile",
|
|
231
|
+
"primaryContract": "Related contracts",
|
|
232
|
+
"projects": "Assigned projects",
|
|
233
|
+
"projectsDescription": "Projects currently or previously linked to this collaborator.",
|
|
234
|
+
"schedule": "Weekly schedule",
|
|
235
|
+
"scheduleDescription": "Default schedule currently stored for this collaborator.",
|
|
236
|
+
"timeOff": "Time off summary",
|
|
237
|
+
"timeOffDescription": "Request counts visible from the collaborator history.",
|
|
238
|
+
"scheduleAdjustments": "Schedule adjustments",
|
|
239
|
+
"scheduleAdjustmentsDescription": "Recent schedule adjustment requests created by this collaborator."
|
|
240
|
+
},
|
|
241
|
+
"noContracts": "No related contracts are linked to this collaborator yet.",
|
|
242
|
+
"noProjects": "No projects are assigned to this collaborator yet.",
|
|
243
|
+
"noScheduleAdjustments": "No schedule adjustment requests were found."
|
|
244
|
+
},
|
|
245
|
+
"ProjectsPage": {
|
|
246
|
+
"title": "Projects",
|
|
247
|
+
"description": "Track client projects and service engagements connected to staffing, delivery, and contracts.",
|
|
248
|
+
"breadcrumb": "Projects",
|
|
249
|
+
"searchPlaceholder": "Search project, client, manager, or contract...",
|
|
250
|
+
"emptyDescription": "No projects match the current filters.",
|
|
251
|
+
"actions": {
|
|
252
|
+
"archive": "Archive"
|
|
253
|
+
},
|
|
254
|
+
"sheet": {
|
|
255
|
+
"createTitle": "Create project",
|
|
256
|
+
"editTitle": "Edit project",
|
|
257
|
+
"description": "Create or update a delivery project used by timesheets and team visibility."
|
|
258
|
+
},
|
|
259
|
+
"form": {
|
|
260
|
+
"code": "Code",
|
|
261
|
+
"name": "Project name",
|
|
262
|
+
"clientName": "Client name",
|
|
263
|
+
"deliveryModel": "Delivery model",
|
|
264
|
+
"summary": "Summary"
|
|
265
|
+
},
|
|
266
|
+
"messages": {
|
|
267
|
+
"requiredFields": "Project code and name are required.",
|
|
268
|
+
"saveSuccess": "Project saved successfully.",
|
|
269
|
+
"saveError": "Unable to save the project.",
|
|
270
|
+
"statusSuccess": "Project status updated successfully.",
|
|
271
|
+
"statusError": "Unable to update project status."
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
"ProjectFormPage": {
|
|
275
|
+
"newTitle": "New Project",
|
|
276
|
+
"editTitle": "Edit Project",
|
|
277
|
+
"breadcrumb": "Project Form",
|
|
278
|
+
"description": "Register client projects or service engagements and optionally generate a related draft contract from the project flow.",
|
|
279
|
+
"noAccessDescription": "Director permissions are required to manage projects.",
|
|
280
|
+
"loading": "Loading project data...",
|
|
281
|
+
"sections": {
|
|
282
|
+
"basicInfo": "Basic project info",
|
|
283
|
+
"basicInfoDescription": "Define the client-facing engagement and operational summary.",
|
|
284
|
+
"governance": "Responsible and dates",
|
|
285
|
+
"governanceDescription": "Set the project owner, lifecycle status, and date range.",
|
|
286
|
+
"team": "Team assignment",
|
|
287
|
+
"teamDescription": "Select the collaborators that should start linked to this project.",
|
|
288
|
+
"financials": "Financial and contract basis",
|
|
289
|
+
"financialsDescription": "Baseline data used for project controls and draft contract creation.",
|
|
290
|
+
"contract": "Contract generation settings",
|
|
291
|
+
"contractDescription": "Choose whether to reuse an existing contract or generate a project-origin draft."
|
|
292
|
+
},
|
|
293
|
+
"fields": {
|
|
294
|
+
"code": "Project code",
|
|
295
|
+
"name": "Project name",
|
|
296
|
+
"clientName": "Client name",
|
|
297
|
+
"deliveryModel": "Delivery model",
|
|
298
|
+
"summary": "Operational summary",
|
|
299
|
+
"roleLabel": "Role / responsibility",
|
|
300
|
+
"weeklyHours": "Weekly hours",
|
|
301
|
+
"allocationPercent": "Allocation %",
|
|
302
|
+
"contractCode": "Draft contract code",
|
|
303
|
+
"contractName": "Draft contract name",
|
|
304
|
+
"contractDescription": "Draft contract notes",
|
|
305
|
+
"autoGenerateContractDraft": "Generate contract draft automatically",
|
|
306
|
+
"autoGenerateContractDraftDescription": "Creates a draft project/service contract with originType client_project linked to this project.",
|
|
307
|
+
"existingContractSelected": "An existing contract is already selected for this project."
|
|
308
|
+
},
|
|
309
|
+
"messages": {
|
|
310
|
+
"requiredFields": "Project code, project name, and client name are required.",
|
|
311
|
+
"createSuccess": "Project created successfully.",
|
|
312
|
+
"createError": "Unable to create the project.",
|
|
313
|
+
"updateSuccess": "Project updated successfully.",
|
|
314
|
+
"updateError": "Unable to update the project.",
|
|
315
|
+
"currentContractStatus": "Current related contract status: {status}"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
"ProjectDetailsPage": {
|
|
319
|
+
"title": "Project Details",
|
|
320
|
+
"breadcrumb": "Project Details",
|
|
321
|
+
"description": "Review project delivery data, staffing, related contract, timesheet activity, and operational indicators.",
|
|
322
|
+
"notFound": "The requested project could not be found or is not visible in your access scope.",
|
|
323
|
+
"cards": {
|
|
324
|
+
"teamSize": "Team size",
|
|
325
|
+
"teamSizeDescription": "Collaborators currently linked to this project.",
|
|
326
|
+
"timesheets": "Timesheets",
|
|
327
|
+
"timesheetsDescription": "{pending} pending review",
|
|
328
|
+
"loggedHours": "Logged hours",
|
|
329
|
+
"loggedHoursDescription": "Total hours linked to this project.",
|
|
330
|
+
"allocation": "Average allocation",
|
|
331
|
+
"allocationDescription": "Average assignment allocation across linked collaborators."
|
|
332
|
+
},
|
|
333
|
+
"sections": {
|
|
334
|
+
"overview": "Overview",
|
|
335
|
+
"contract": "Related contract",
|
|
336
|
+
"team": "Assigned collaborators",
|
|
337
|
+
"teamDescription": "Initial and ongoing staffing linked to this project.",
|
|
338
|
+
"indicators": "Operational indicators",
|
|
339
|
+
"indicatorsDescription": "Current project staffing and delivery metrics."
|
|
340
|
+
},
|
|
341
|
+
"indicators": {
|
|
342
|
+
"activeAssignments": "Active assignments",
|
|
343
|
+
"billableAssignments": "Billable assignments",
|
|
344
|
+
"averageAllocation": "Average allocation",
|
|
345
|
+
"totalWeeklyHours": "Total weekly hours"
|
|
346
|
+
},
|
|
347
|
+
"noContract": "No related contract is linked to this project yet.",
|
|
348
|
+
"noAssignments": "No collaborators are assigned to this project yet."
|
|
349
|
+
},
|
|
350
|
+
"ContractsPage": {
|
|
351
|
+
"title": "Contracts",
|
|
352
|
+
"description": "Central registry for manual and business-origin contracts, lifecycle status, documents, and financial oversight.",
|
|
353
|
+
"breadcrumb": "Contracts",
|
|
354
|
+
"searchPlaceholder": "Search contract, party, client, type, or code...",
|
|
355
|
+
"emptyDescription": "No contracts match the current filters.",
|
|
356
|
+
"columns": {
|
|
357
|
+
"title": "Title",
|
|
358
|
+
"code": "Code",
|
|
359
|
+
"type": "Type",
|
|
360
|
+
"origin": "Origin",
|
|
361
|
+
"party": "Main related party",
|
|
362
|
+
"signatureStatus": "Signature status",
|
|
363
|
+
"active": "Active",
|
|
364
|
+
"financials": "Financial summary"
|
|
365
|
+
},
|
|
366
|
+
"actions": {
|
|
367
|
+
"duplicate": "Duplicate",
|
|
368
|
+
"archive": "Archive"
|
|
369
|
+
},
|
|
370
|
+
"filters": {
|
|
371
|
+
"originType": "Origin type"
|
|
372
|
+
},
|
|
373
|
+
"messages": {
|
|
374
|
+
"statusSuccess": "Contract status updated successfully.",
|
|
375
|
+
"statusError": "Unable to update contract status.",
|
|
376
|
+
"uploadSuccess": "Contract PDF uploaded successfully.",
|
|
377
|
+
"uploadError": "Unable to upload the contract PDF.",
|
|
378
|
+
"noPdf": "No PDF is currently available for this contract."
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
"ContractFormPage": {
|
|
382
|
+
"newTitle": "New Contract",
|
|
383
|
+
"editTitle": "Edit Contract",
|
|
384
|
+
"duplicateTitle": "Duplicate Contract",
|
|
385
|
+
"breadcrumb": "Contract Form",
|
|
386
|
+
"description": "Create or update contracts manually while managing parties, signatures, financials, revisions, documents, and editor content.",
|
|
387
|
+
"noAccessDescription": "Director permissions are required to manage contracts.",
|
|
388
|
+
"loading": "Loading contract data...",
|
|
389
|
+
"tabs": {
|
|
390
|
+
"overview": "Overview",
|
|
391
|
+
"parties": "Parties",
|
|
392
|
+
"signatures": "Signatures",
|
|
393
|
+
"financials": "Financials",
|
|
394
|
+
"documents": "Documents",
|
|
395
|
+
"revisions": "Revisions",
|
|
396
|
+
"editor": "Editor"
|
|
397
|
+
},
|
|
398
|
+
"sections": {
|
|
399
|
+
"overview": "Overview",
|
|
400
|
+
"overviewDescription": "Core registry, lifecycle, origin, and ownership fields.",
|
|
401
|
+
"parties": "Parties",
|
|
402
|
+
"partiesDescription": "Main people and companies related to this contract.",
|
|
403
|
+
"signatures": "Signatures",
|
|
404
|
+
"signaturesDescription": "Signer roster and signature progress.",
|
|
405
|
+
"financials": "Financial terms",
|
|
406
|
+
"financialsDescription": "Track values, revenues, payments, and fines.",
|
|
407
|
+
"documents": "Documents",
|
|
408
|
+
"documentsDescription": "Upload or replace the current contract PDF.",
|
|
409
|
+
"revisions": "Amendments / renewals",
|
|
410
|
+
"revisionsDescription": "Track addendums, amendments, and renewals.",
|
|
411
|
+
"editor": "Contract editor",
|
|
412
|
+
"editorDescription": "Edit the contract content in rich text.",
|
|
413
|
+
"preview": "Preview",
|
|
414
|
+
"previewDescription": "Live preview of the rich text contract content."
|
|
415
|
+
},
|
|
416
|
+
"fields": {
|
|
417
|
+
"code": "Code",
|
|
418
|
+
"name": "Contract title",
|
|
419
|
+
"clientName": "Client name",
|
|
420
|
+
"contractCategory": "Category",
|
|
421
|
+
"contractType": "Type",
|
|
422
|
+
"originType": "Origin type",
|
|
423
|
+
"originId": "Origin ID",
|
|
424
|
+
"signatureStatus": "Signature status",
|
|
425
|
+
"isActive": "Active contract",
|
|
426
|
+
"isActiveDescription": "Use this to deactivate or reactivate the contract without deleting its registry entry.",
|
|
427
|
+
"budgetAmount": "Budget amount",
|
|
428
|
+
"monthlyHourCap": "Monthly hour cap",
|
|
429
|
+
"partyDisplayName": "Party name",
|
|
430
|
+
"partyRole": "Party role",
|
|
431
|
+
"partyType": "Party type",
|
|
432
|
+
"documentNumber": "Document number",
|
|
433
|
+
"email": "Email",
|
|
434
|
+
"phone": "Phone",
|
|
435
|
+
"isPrimaryParty": "Primary related party",
|
|
436
|
+
"signerName": "Signer name",
|
|
437
|
+
"signerRole": "Signer role",
|
|
438
|
+
"signerEmail": "Signer email",
|
|
439
|
+
"signatureItemStatus": "Signature status",
|
|
440
|
+
"financialLabel": "Financial label",
|
|
441
|
+
"termType": "Financial type",
|
|
442
|
+
"amount": "Amount",
|
|
443
|
+
"recurrence": "Recurrence",
|
|
444
|
+
"dueDay": "Due day",
|
|
445
|
+
"notes": "Notes",
|
|
446
|
+
"revisionTitle": "Revision title",
|
|
447
|
+
"revisionType": "Revision type",
|
|
448
|
+
"revisionStatus": "Revision status",
|
|
449
|
+
"summary": "Summary"
|
|
450
|
+
},
|
|
451
|
+
"messages": {
|
|
452
|
+
"requiredFields": "Code, contract title, and client name are required.",
|
|
453
|
+
"createSuccess": "Contract created successfully.",
|
|
454
|
+
"createError": "Unable to create the contract.",
|
|
455
|
+
"updateSuccess": "Contract updated successfully.",
|
|
456
|
+
"updateError": "Unable to update the contract.",
|
|
457
|
+
"pdfHint": "Upload a PDF to attach it as the current contract document.",
|
|
458
|
+
"pdfReady": "PDF ready to save: {name}"
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
"ContractDetailsPage": {
|
|
462
|
+
"title": "Contract Details",
|
|
463
|
+
"breadcrumb": "Contract Details",
|
|
464
|
+
"description": "Review the contract registry entry, related parties, signatures, financials, documents, revisions, and audit history.",
|
|
465
|
+
"notFound": "The requested contract could not be found or is not visible in your access scope.",
|
|
466
|
+
"tabs": {
|
|
467
|
+
"overview": "Overview",
|
|
468
|
+
"parties": "Parties",
|
|
469
|
+
"signatures": "Signatures",
|
|
470
|
+
"financials": "Financials",
|
|
471
|
+
"documents": "Documents",
|
|
472
|
+
"revisions": "Revisions",
|
|
473
|
+
"history": "History"
|
|
474
|
+
},
|
|
475
|
+
"sections": {
|
|
476
|
+
"overview": "Overview",
|
|
477
|
+
"parties": "Parties",
|
|
478
|
+
"signatures": "Signatures",
|
|
479
|
+
"financials": "Financials",
|
|
480
|
+
"documents": "Documents",
|
|
481
|
+
"revisions": "Amendments / renewals",
|
|
482
|
+
"history": "History / Audit"
|
|
483
|
+
},
|
|
484
|
+
"actions": {
|
|
485
|
+
"downloadPdf": "Download PDF",
|
|
486
|
+
"download": "Download"
|
|
487
|
+
},
|
|
488
|
+
"labels": {
|
|
489
|
+
"origin": "Origin",
|
|
490
|
+
"mainParty": "Main related party",
|
|
491
|
+
"contractType": "Contract type",
|
|
492
|
+
"signatureStatus": "Signature status",
|
|
493
|
+
"activeState": "Active state",
|
|
494
|
+
"active": "Active",
|
|
495
|
+
"inactive": "Inactive",
|
|
496
|
+
"partyRole": "Party role",
|
|
497
|
+
"partyType": "Party type",
|
|
498
|
+
"documentNumber": "Document number",
|
|
499
|
+
"signer": "Signer",
|
|
500
|
+
"signedAt": "Signed at",
|
|
501
|
+
"value": "Value",
|
|
502
|
+
"payment": "Payments",
|
|
503
|
+
"revenue": "Revenue",
|
|
504
|
+
"fine": "Fines",
|
|
505
|
+
"revision": "Revision"
|
|
506
|
+
},
|
|
507
|
+
"states": {
|
|
508
|
+
"noParties": "No parties are linked to this contract yet.",
|
|
509
|
+
"noSignatures": "No signatures are registered yet.",
|
|
510
|
+
"noDocuments": "No contract documents are available yet.",
|
|
511
|
+
"noRevisions": "No amendments, renewals, or revisions are linked yet.",
|
|
512
|
+
"noHistory": "No audit history is available yet."
|
|
513
|
+
}
|
|
514
|
+
},
|
|
515
|
+
"TimesheetsPage": {
|
|
516
|
+
"title": "Timesheets",
|
|
517
|
+
"description": "Create weekly timesheets, keep entries organized, and submit them for approval.",
|
|
518
|
+
"breadcrumb": "Timesheets",
|
|
519
|
+
"searchPlaceholder": "Search collaborator, project, approver, or notes...",
|
|
520
|
+
"emptyDescription": "No timesheets are available yet.",
|
|
521
|
+
"sheet": {
|
|
522
|
+
"createTitle": "Create timesheet",
|
|
523
|
+
"editTitle": "Edit timesheet",
|
|
524
|
+
"description": "Draft timesheets stay editable until they are submitted for approval."
|
|
525
|
+
},
|
|
526
|
+
"entries": {
|
|
527
|
+
"title": "Entries",
|
|
528
|
+
"description": "Attach work lines to your active project assignments whenever possible.",
|
|
529
|
+
"projectHint": "Projects with active assignments appear here automatically.",
|
|
530
|
+
"activityPlaceholder": "Example: Standup, implementation, QA, client sync"
|
|
531
|
+
},
|
|
532
|
+
"cards": {
|
|
533
|
+
"visible": "Visible timesheets",
|
|
534
|
+
"pending": "Pending review",
|
|
535
|
+
"hours": "Logged hours"
|
|
536
|
+
},
|
|
537
|
+
"messages": {
|
|
538
|
+
"requiredFields": "Week start and end dates are required.",
|
|
539
|
+
"entryValidation": "Each populated entry needs a work date and hours value.",
|
|
540
|
+
"saveSuccess": "Timesheet saved successfully.",
|
|
541
|
+
"saveError": "Unable to save the timesheet.",
|
|
542
|
+
"submitSuccess": "Timesheet submitted successfully.",
|
|
543
|
+
"submitError": "Unable to submit the timesheet."
|
|
544
|
+
}
|
|
545
|
+
},
|
|
546
|
+
"ApprovalsPage": {
|
|
547
|
+
"title": "Approvals",
|
|
548
|
+
"description": "Review submitted workforce requests and make supervisor decisions.",
|
|
549
|
+
"breadcrumb": "Approvals",
|
|
550
|
+
"searchPlaceholder": "Search requester, target, approver, or note...",
|
|
551
|
+
"noAccessDescription": "Supervisor or director permissions are required to review approvals.",
|
|
552
|
+
"emptyDescription": "No approvals match the current filters.",
|
|
553
|
+
"cards": {
|
|
554
|
+
"pending": "Pending",
|
|
555
|
+
"approved": "Approved",
|
|
556
|
+
"rejected": "Rejected"
|
|
557
|
+
},
|
|
558
|
+
"dialog": {
|
|
559
|
+
"approveTitle": "Approve request",
|
|
560
|
+
"rejectTitle": "Reject request",
|
|
561
|
+
"description": "Add an optional note for {requester}'s request: {target}."
|
|
562
|
+
},
|
|
563
|
+
"messages": {
|
|
564
|
+
"approveSuccess": "Approval completed successfully.",
|
|
565
|
+
"approveError": "Unable to approve the request.",
|
|
566
|
+
"rejectSuccess": "Request rejected successfully.",
|
|
567
|
+
"rejectError": "Unable to reject the request."
|
|
568
|
+
}
|
|
569
|
+
},
|
|
570
|
+
"TimeOffPage": {
|
|
571
|
+
"title": "Time Off",
|
|
572
|
+
"description": "Create and review vacation or other leave requests.",
|
|
573
|
+
"breadcrumb": "Time Off",
|
|
574
|
+
"searchPlaceholder": "Search collaborator, approver, reason, or request type...",
|
|
575
|
+
"emptyDescription": "No time-off requests match the current filters.",
|
|
576
|
+
"sheet": {
|
|
577
|
+
"title": "Create time-off request",
|
|
578
|
+
"description": "New requests are submitted directly into the approval workflow."
|
|
579
|
+
},
|
|
580
|
+
"cards": {
|
|
581
|
+
"submitted": "Submitted requests",
|
|
582
|
+
"approved": "Approved requests",
|
|
583
|
+
"days": "Requested days"
|
|
584
|
+
},
|
|
585
|
+
"messages": {
|
|
586
|
+
"requiredFields": "Start date and end date are required.",
|
|
587
|
+
"saveSuccess": "Time-off request submitted successfully.",
|
|
588
|
+
"saveError": "Unable to submit the time-off request."
|
|
589
|
+
}
|
|
590
|
+
},
|
|
591
|
+
"ScheduleAdjustmentsPage": {
|
|
592
|
+
"title": "Schedule Adjustments",
|
|
593
|
+
"description": "Request temporary or permanent weekly schedule changes.",
|
|
594
|
+
"breadcrumb": "Schedule Adjustments",
|
|
595
|
+
"searchPlaceholder": "Search collaborator, approver, scope, or reason...",
|
|
596
|
+
"emptyDescription": "No schedule adjustment requests match the current filters.",
|
|
597
|
+
"sheet": {
|
|
598
|
+
"title": "Create schedule adjustment",
|
|
599
|
+
"description": "Weekly schedule requests are routed to the collaborator's supervisor for review."
|
|
600
|
+
},
|
|
601
|
+
"cards": {
|
|
602
|
+
"submitted": "Submitted requests",
|
|
603
|
+
"approved": "Approved requests",
|
|
604
|
+
"permanent": "Permanent requests"
|
|
605
|
+
},
|
|
606
|
+
"table": {
|
|
607
|
+
"currentSchedule": "Current schedule"
|
|
608
|
+
},
|
|
609
|
+
"messages": {
|
|
610
|
+
"requiredFields": "An effective start date is required.",
|
|
611
|
+
"saveSuccess": "Schedule adjustment submitted successfully.",
|
|
612
|
+
"saveError": "Unable to submit the schedule adjustment."
|
|
613
|
+
}
|
|
614
|
+
},
|
|
615
|
+
"TeamPage": {
|
|
616
|
+
"title": "Team",
|
|
617
|
+
"description": "Supervisor view of direct reports, assignments, and pending approvals.",
|
|
618
|
+
"breadcrumb": "Team",
|
|
619
|
+
"noAccessDescription": "Supervisor or director permissions are required to view the team panel.",
|
|
620
|
+
"emptyDescription": "No direct reports are linked to this supervisor yet.",
|
|
621
|
+
"cards": {
|
|
622
|
+
"members": "Team members",
|
|
623
|
+
"projects": "Visible projects",
|
|
624
|
+
"pendingApprovals": "Pending approvals",
|
|
625
|
+
"timeOff": "Time-off queue",
|
|
626
|
+
"scheduleAdjustments": "Schedule queue",
|
|
627
|
+
"timesheets": "Timesheets queue"
|
|
628
|
+
},
|
|
629
|
+
"sections": {
|
|
630
|
+
"requests": "Open requests",
|
|
631
|
+
"pendingApprovals": "Pending approvals queue",
|
|
632
|
+
"projects": "Team project coverage",
|
|
633
|
+
"timeOff": "Pending time-off requests",
|
|
634
|
+
"scheduleAdjustments": "Pending schedule changes"
|
|
635
|
+
},
|
|
636
|
+
"labels": {
|
|
637
|
+
"timeOffRequestsCount": "{count} time-off request(s)",
|
|
638
|
+
"scheduleRequestsCount": "{count} schedule change request(s)",
|
|
639
|
+
"projectSummary": "{teamSize} collaborator(s) linked • {pendingTimesheets} pending timesheet(s)"
|
|
640
|
+
},
|
|
641
|
+
"states": {
|
|
642
|
+
"noPendingApprovals": "No pending approvals are assigned to this supervisor right now.",
|
|
643
|
+
"noProjects": "No active team-linked projects are visible yet.",
|
|
644
|
+
"noTimeOff": "No pending time-off requests were found.",
|
|
645
|
+
"noScheduleAdjustments": "No pending schedule adjustments were found."
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
}
|