@acorex/platform-generator 20.3.0-next.9 → 20.4.1
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/package.json +2 -2
- package/src/generators/app-module/files/src/app/app.config.ts.template +63 -13
- package/src/generators/app-module/files/src/app/basic-interceptor.interceptor.ts.template +4 -4
- package/src/generators/app-module/files/src/app/modules/auth/auth-root.module.ts.template +13 -34
- package/src/generators/app-module/files/src/app/{app-version.provider.ts.template → modules/common/app-version.provider.ts.template} +4 -2
- package/src/generators/app-module/files/src/app/modules/common/default-settings.providers.ts.template +38 -0
- package/src/generators/app-module/files/src/app/modules/common/translation-root.module.ts.template +2 -1
- package/src/generators/app-module/files/src/app/modules/layout/entity.loader.ts.template +26 -9
- package/src/generators/app-module/files/src/app/modules/layout/layout-root.module.ts.template +15 -17
- package/src/generators/app-module/files/src/app/modules/layout/menu.provider.ts.template +1 -15
- package/src/generators/app-module/files/src/app/modules/layout/theme-palette.provider.ts.template +57 -0
- package/src/generators/app-module/files/src/app/modules/root/const.ts.template +25 -5
- package/src/generators/app-module/files/src/app/modules/root/menu.keys.ts.template +9 -0
- package/src/generators/app-module/files/src/app/modules/root/menu.provider.ts.template +61 -0
- package/src/generators/app-module/files/src/app/modules/root/mock.data.ts.template +13 -37
- package/src/generators/app-module/files/src/app/modules/root/permission-definition.provider.ts.template +51 -0
- package/src/generators/app-module/files/src/app/modules/root/permission.keys.ts.template +17 -0
- package/src/generators/app-module/files/src/app/modules/root/root.module.ts.template +39 -10
- package/src/generators/app-module/files/src/app/modules/root/sample/index.ts.template +9 -0
- package/src/generators/app-module/files/src/app/modules/root/sample/sample.entity.ts.template +146 -225
- package/src/generators/app-module/files/src/app/modules/root/sample/sample.module.ts.template +13 -5
- package/src/generators/app-module/files/src/app/modules/root/sample/sample.service.ts.template +26 -6
- package/src/generators/app-module/files/src/app/modules/root/sample/sample.types.ts.template +49 -11
- package/src/generators/app-module/files/src/app/modules/root/search-command.provider.ts.template +37 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/acorex.json +285 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/activity-log.json +31 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/application-management.json +112 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/auth.json +38 -3
- package/src/generators/app-module/files/src/assets/i18n/en-US/calendar-management.json +170 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/contact-management.json +182 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/content-management.json +23 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/conversation.json +120 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/customer-management.json +130 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/dashboard.json +231 -5
- package/src/generators/app-module/files/src/assets/i18n/en-US/data-management.json +93 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/document-management.json +321 -22
- package/src/generators/app-module/files/src/assets/i18n/en-US/dynamic-form-designer.json +58 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/extra-properties.json +39 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/form-template-management.json +61 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/general-old.json +800 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/general.json +993 -4
- package/src/generators/app-module/files/src/assets/i18n/en-US/help-desk.json +55 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/human-capital-management.json +144 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/layout-designer.json +19 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/locale-management.json +30 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/location-management.json +46 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/lock-system.json +40 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/log-management.json +29 -21
- package/src/generators/app-module/files/src/assets/i18n/en-US/meeting-management.json +69 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/module.json.template +45 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/notification-management.json +37 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/organization-management.json +59 -138
- package/src/generators/app-module/files/src/assets/i18n/en-US/party-management.json +300 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/platform-management.json +20 -79
- package/src/generators/app-module/files/src/assets/i18n/en-US/project-management.json +157 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/questionnaire.json +118 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/regional.json +41 -8
- package/src/generators/app-module/files/src/assets/i18n/en-US/report-management.json +76 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/security-management.json +42 -3
- package/src/generators/app-module/files/src/assets/i18n/en-US/settings.json +17 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/task-management.json +151 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/text-template-management.json +3 -1
- package/src/generators/app-module/files/src/assets/i18n/en-US/training-management.json +50 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/workflow-management.json +21 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/acorex.json +285 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/activity-log.json +31 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/application-management.json +112 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/auth.json +74 -38
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/calendar-management.json +170 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/contact-management.json +182 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/content-management.json +23 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/conversation.json +80 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/customer-management.json +130 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/dashboard.json +231 -5
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/data-management.json +93 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/document-management.json +333 -29
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/dynamic-form-designer.json +39 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/extra-properties.json +39 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/form-template-management.json +82 -21
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/general-old.json +800 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/general.json +987 -9
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/global-search.json +5 -5
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/help-desk.json +55 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/human-capital-management.json +144 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/layout-designer.json +19 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/layout.json +14 -14
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/locale-management.json +30 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/location-management.json +46 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/lock-system.json +40 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/log-management.json +99 -47
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/meeting-management.json +69 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/module.json.template +45 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/notification-management.json +59 -22
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/organization-management.json +74 -152
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/party-management.json +300 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/platform-management.json +38 -93
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/project-management.json +157 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/questionnaire.json +118 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/regional.json +71 -38
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/report-management.json +76 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/scheduler-job-management.json +4 -4
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/security-management.json +43 -4
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/settings.json +33 -16
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/task-management.json +151 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/text-template-management.json +8 -5
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/training-management.json +50 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/workflow-management.json +20 -0
- package/src/generators/app-module/files/src/environments/environment.dev.ts.template +1 -0
- package/src/generators/app-module/files/src/environments/environment.ts.template +1 -0
- package/src/generators/app-module/generator.js +3 -0
- package/src/generators/app-module/generator.js.map +1 -1
- package/src/generators/create-module-entity/files/__entityFileName__.entity.ts__tmpl__ +1 -1
- package/src/generators/create-tag-entity/files/tag-__entityFileName__.entity.ts__tmpl__ +1 -1
- package/src/generators/create-widget/files/__fileName__-widget-column.component.ts__tmpl__ +1 -1
- package/src/generators/create-widget/files/__fileName__-widget-edit.component.ts__tmpl__ +1 -1
- package/src/generators/create-widget/files/__fileName__-widget-filter.component.ts__tmpl__ +1 -1
- package/src/generators/create-widget/files/__fileName__-widget-print.component.ts__tmpl__ +1 -1
- package/src/generators/create-widget/files/__fileName__-widget-view.component.ts__tmpl__ +1 -1
- package/src/generators/create-widget/files/__fileName__-widget.config.ts__tmpl__ +2 -2
- package/src/generators/app-module/files/src/app/app.config.api.ts.template +0 -105
- package/src/generators/app-module/files/src/app/app.module.api.ts.template +0 -108
- package/src/generators/app-module/files/src/app/app.module.ts.template +0 -113
- package/src/generators/app-module/files/src/app/modules/auth/application.loader.ts.template +0 -34
- package/src/generators/app-module/files/src/app/modules/auth/auth.strategy.ts.template +0 -93
- package/src/generators/app-module/files/src/app/modules/auth/feature.loader.ts.template +0 -17
- package/src/generators/app-module/files/src/app/modules/auth/permission.loader.ts.template +0 -20
- package/src/generators/app-module/files/src/app/modules/auth/tenant.loader.ts.template +0 -26
- package/src/generators/app-module/files/src/app/modules/root/sample/sample.component.html.template +0 -15
- package/src/generators/app-module/files/src/app/modules/root/sample/sample.component.scss.template +0 -10
- package/src/generators/app-module/files/src/app/modules/root/sample/sample.component.ts.template +0 -20
- package/src/generators/app-module/files/src/assets/i18n/en-US/vehicle-management.json +0 -146
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/vehicle-management.json +0 -144
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
{
|
|
2
|
+
"root-menu": "Project Management",
|
|
3
|
+
"basicInfo": "Basic Info",
|
|
4
|
+
"projectName": "Name",
|
|
5
|
+
"project": "Projects",
|
|
6
|
+
"projectPlural": "Projects",
|
|
7
|
+
"projectNo": "Doc No",
|
|
8
|
+
"description": "Descrption",
|
|
9
|
+
"projectType": "Project Types",
|
|
10
|
+
"projectStatus": "Status",
|
|
11
|
+
"estimatetime": "Estimate Time",
|
|
12
|
+
"projectWeight": "Weight",
|
|
13
|
+
"client": "Client",
|
|
14
|
+
"projectTypePlural": "Project Types",
|
|
15
|
+
"clientPlural": "Clients",
|
|
16
|
+
"location": "Location",
|
|
17
|
+
"clientId": "Client",
|
|
18
|
+
"workSitePlural": "WorkSites",
|
|
19
|
+
"projectRoleMemberPlural": "ProjectRoleMembers",
|
|
20
|
+
"projectMemeberPlural": "ProjectMemebers",
|
|
21
|
+
"projectId": "Project",
|
|
22
|
+
"projectRoleMemberId": "ProjectRoleMember",
|
|
23
|
+
"personId": "Person",
|
|
24
|
+
"projectTypeId": "Project Type",
|
|
25
|
+
"taskTypePlural": "Task Types",
|
|
26
|
+
"taskPlural": "Tasks",
|
|
27
|
+
"priorityIndex": "Priority",
|
|
28
|
+
"priorityCritical": "Critical",
|
|
29
|
+
"date": "Date",
|
|
30
|
+
"starttime": "Start Time",
|
|
31
|
+
"endTime": "End Time",
|
|
32
|
+
"duration": "Duration",
|
|
33
|
+
"assignedTo": "Assigned To",
|
|
34
|
+
"preparedBy": "Prepared By",
|
|
35
|
+
"parentTaskId": "Parent Task",
|
|
36
|
+
"typeId": "Type",
|
|
37
|
+
"status": "Status",
|
|
38
|
+
"workSiteId": "WorkSites",
|
|
39
|
+
"sprintPlural": "Sprints",
|
|
40
|
+
"startDate": "StartDate",
|
|
41
|
+
"endDate": "EndDate",
|
|
42
|
+
"taskId": "Task",
|
|
43
|
+
"timeSheetPlural": "TimeSheet",
|
|
44
|
+
"taskHistoryPlural": "Task History",
|
|
45
|
+
"sprintId": "Sprint",
|
|
46
|
+
"sprintTaskPlural": "Sprint Tasks",
|
|
47
|
+
"task": "Task",
|
|
48
|
+
"projectMemeber": "Project Members",
|
|
49
|
+
"projectRoleMember": "Project Role Members",
|
|
50
|
+
"taskType": "Task Types",
|
|
51
|
+
"workSite": "Work Site",
|
|
52
|
+
"taskHistory": "Task Histories",
|
|
53
|
+
"sprintTask": "Sprint Tasks",
|
|
54
|
+
"jsaAssignment": "JSA Assignment",
|
|
55
|
+
"jsaAssignmentPlural": "JSA Assignments",
|
|
56
|
+
"jsa": {
|
|
57
|
+
"individual-title": "Job Safety Analysis",
|
|
58
|
+
"plural-title": "Job Safety Analyses",
|
|
59
|
+
"docNo": "Doc No",
|
|
60
|
+
"customer": "Customer",
|
|
61
|
+
"workSite": "Work site",
|
|
62
|
+
"jobNo": "Job No",
|
|
63
|
+
"creationDate": "Creation Date",
|
|
64
|
+
"template": "Template",
|
|
65
|
+
"multiSignOff": "Multi sign-off",
|
|
66
|
+
"siteSupervisorSignedOff": "Signed off by Site Supervisor",
|
|
67
|
+
"status": "Status",
|
|
68
|
+
"pending": "Pending",
|
|
69
|
+
"setup": "Setup",
|
|
70
|
+
"signed": "Signed",
|
|
71
|
+
"completed": "Completed",
|
|
72
|
+
"status-descriptions": {
|
|
73
|
+
"pending": "JSA is created and waiting for configuration",
|
|
74
|
+
"setup": "JSA template is being configured with job-specific data",
|
|
75
|
+
"signed": "All required personnel have reviewed and signed the JSA",
|
|
76
|
+
"completed": "JSA process is fully complete and work can proceed"
|
|
77
|
+
},
|
|
78
|
+
"actions": {
|
|
79
|
+
"sign": "Sign",
|
|
80
|
+
"setup": "Setup",
|
|
81
|
+
"reassign": "Reassign",
|
|
82
|
+
"email": "Email To",
|
|
83
|
+
"view": "View Details",
|
|
84
|
+
"edit": "Edit JSA",
|
|
85
|
+
"delete": "Delete JSA",
|
|
86
|
+
"export": "Export JSA"
|
|
87
|
+
},
|
|
88
|
+
"sign-dialog": {
|
|
89
|
+
"title": "Sign JSA",
|
|
90
|
+
"message": "Please provide your signature and any notes for this JSA.",
|
|
91
|
+
"note-label": "Notes",
|
|
92
|
+
"note-placeholder": "Add any notes or comments...",
|
|
93
|
+
"signature-label": "Signature",
|
|
94
|
+
"submit-text": "Sign JSA"
|
|
95
|
+
},
|
|
96
|
+
"setup-dialog": {
|
|
97
|
+
"title": "Setup JSA",
|
|
98
|
+
"message": "Configure the JSA template with required data.",
|
|
99
|
+
"submit-text": "Setup JSA"
|
|
100
|
+
},
|
|
101
|
+
"reassign-dialog": {
|
|
102
|
+
"title": "Reassign JSA",
|
|
103
|
+
"message": "Select a new user to assign this JSA to.",
|
|
104
|
+
"current-assignee-label": "Current Assignee",
|
|
105
|
+
"assignee-label": "Assign To",
|
|
106
|
+
"submit-text": "Reassign JSA"
|
|
107
|
+
},
|
|
108
|
+
"email-dialog": {
|
|
109
|
+
"title": "Email JSA",
|
|
110
|
+
"message": "Select users to email this JSA to.",
|
|
111
|
+
"recipients-label": "Email Recipients",
|
|
112
|
+
"submit-text": "Send Email"
|
|
113
|
+
},
|
|
114
|
+
"email-toast": {
|
|
115
|
+
"title": "Email Sent",
|
|
116
|
+
"no-recipients": {
|
|
117
|
+
"title": "No Recipients Selected",
|
|
118
|
+
"description": "No recipients have been selected for email notification. Please select at least one recipient."
|
|
119
|
+
},
|
|
120
|
+
"single-recipient": "JSA email sent to 1 recipient successfully.",
|
|
121
|
+
"multiple-recipients": "JSA email sent to {{count}} recipients successfully."
|
|
122
|
+
},
|
|
123
|
+
"project-details": "Project Details",
|
|
124
|
+
"workflow": {
|
|
125
|
+
"status-transition": {
|
|
126
|
+
"pending-to-setup": "Configure JSA template",
|
|
127
|
+
"setup-to-signed": "Complete JSA review and signing",
|
|
128
|
+
"signed-to-completed": "Mark JSA as complete"
|
|
129
|
+
},
|
|
130
|
+
"validation": {
|
|
131
|
+
"cannot-sign-pending": "JSA must be configured before signing",
|
|
132
|
+
"cannot-complete-unsigned": "JSA must be signed before completion",
|
|
133
|
+
"setup-required": "JSA setup is required before proceeding"
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
"jsa-assignment": {
|
|
138
|
+
"assignment-info": "Assignment Information",
|
|
139
|
+
"tracking-info": "Tracking Information",
|
|
140
|
+
"staff": "Staff Member",
|
|
141
|
+
"viewed-on-app": "Viewed on App",
|
|
142
|
+
"signed-off": "Signed Off",
|
|
143
|
+
"signed-off-at": "Signed Off At",
|
|
144
|
+
"status": {
|
|
145
|
+
"assigned": "Assigned",
|
|
146
|
+
"in-progress": "In Progress",
|
|
147
|
+
"completed": "Completed",
|
|
148
|
+
"overdue": "Overdue"
|
|
149
|
+
},
|
|
150
|
+
"actions": {
|
|
151
|
+
"view": "View Assignment",
|
|
152
|
+
"sign-off": "Sign Off",
|
|
153
|
+
"mark-complete": "Mark Complete",
|
|
154
|
+
"reassign": "Reassign"
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
{
|
|
2
|
+
"datasources": {
|
|
3
|
+
"yes-no-options": {
|
|
4
|
+
"title": "Yes/No Options",
|
|
5
|
+
"columns": {
|
|
6
|
+
"value": {
|
|
7
|
+
"title": "Value"
|
|
8
|
+
},
|
|
9
|
+
"title": {
|
|
10
|
+
"title": "Title"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"samples": {
|
|
14
|
+
"yes": "Yes",
|
|
15
|
+
"no": "No"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"rating-scale-options": {
|
|
19
|
+
"title": "Rating Scale Options",
|
|
20
|
+
"columns": {
|
|
21
|
+
"value": {
|
|
22
|
+
"title": "Value"
|
|
23
|
+
},
|
|
24
|
+
"title": {
|
|
25
|
+
"title": "Title"
|
|
26
|
+
},
|
|
27
|
+
"description": {
|
|
28
|
+
"title": "Description"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"samples": {
|
|
32
|
+
"1": "1",
|
|
33
|
+
"2": "2",
|
|
34
|
+
"3": "3",
|
|
35
|
+
"4": "4",
|
|
36
|
+
"5": "5",
|
|
37
|
+
"descriptions": {
|
|
38
|
+
"1": "Poor",
|
|
39
|
+
"2": "Fair",
|
|
40
|
+
"3": "Good",
|
|
41
|
+
"4": "Very Good",
|
|
42
|
+
"5": "Excellent"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"agreement-scale-options": {
|
|
47
|
+
"title": "Agreement Scale Options",
|
|
48
|
+
"columns": {
|
|
49
|
+
"value": {
|
|
50
|
+
"title": "Value"
|
|
51
|
+
},
|
|
52
|
+
"title": {
|
|
53
|
+
"title": "Title"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"samples": {
|
|
57
|
+
"strongly-disagree": "Strongly Disagree",
|
|
58
|
+
"disagree": "Disagree",
|
|
59
|
+
"neutral": "Neutral",
|
|
60
|
+
"agree": "Agree",
|
|
61
|
+
"strongly-agree": "Strongly Agree"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"frequency-options": {
|
|
65
|
+
"title": "Frequency Options",
|
|
66
|
+
"columns": {
|
|
67
|
+
"value": {
|
|
68
|
+
"title": "Value"
|
|
69
|
+
},
|
|
70
|
+
"title": {
|
|
71
|
+
"title": "Title"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"samples": {
|
|
75
|
+
"never": "Never",
|
|
76
|
+
"rarely": "Rarely",
|
|
77
|
+
"sometimes": "Sometimes",
|
|
78
|
+
"often": "Often",
|
|
79
|
+
"always": "Always"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"satisfaction-options": {
|
|
83
|
+
"title": "Satisfaction Options",
|
|
84
|
+
"columns": {
|
|
85
|
+
"value": {
|
|
86
|
+
"title": "Value"
|
|
87
|
+
},
|
|
88
|
+
"title": {
|
|
89
|
+
"title": "Title"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"samples": {
|
|
93
|
+
"very-dissatisfied": "Very Dissatisfied",
|
|
94
|
+
"dissatisfied": "Dissatisfied",
|
|
95
|
+
"neutral": "Neutral",
|
|
96
|
+
"satisfied": "Satisfied",
|
|
97
|
+
"very-satisfied": "Very Satisfied"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"priority-options": {
|
|
101
|
+
"title": "Priority Options",
|
|
102
|
+
"columns": {
|
|
103
|
+
"value": {
|
|
104
|
+
"title": "Value"
|
|
105
|
+
},
|
|
106
|
+
"title": {
|
|
107
|
+
"title": "Title"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"samples": {
|
|
111
|
+
"low": "Low",
|
|
112
|
+
"medium": "Medium",
|
|
113
|
+
"high": "High",
|
|
114
|
+
"critical": "Critical"
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
@@ -90,14 +90,6 @@
|
|
|
90
90
|
"units": {
|
|
91
91
|
"title": "Units",
|
|
92
92
|
"description": "Configure measurement and display units.",
|
|
93
|
-
"measurement": {
|
|
94
|
-
"title": "Measurement Units",
|
|
95
|
-
"description": "Select your preferred system for distance, weight and volume measurements.",
|
|
96
|
-
"options": {
|
|
97
|
-
"metric": "Metric (cm, m, kg, L)",
|
|
98
|
-
"imperial": "Imperial (in, ft, lb, gal)"
|
|
99
|
-
}
|
|
100
|
-
},
|
|
101
93
|
"temperature": {
|
|
102
94
|
"title": "Temperature Units",
|
|
103
95
|
"description": "Select your preferred temperature scale.",
|
|
@@ -106,6 +98,47 @@
|
|
|
106
98
|
"fahrenheit": "Fahrenheit (°F)",
|
|
107
99
|
"kelvin": "Kelvin (K)"
|
|
108
100
|
}
|
|
101
|
+
},
|
|
102
|
+
"distance": {
|
|
103
|
+
"title": "Distance Units",
|
|
104
|
+
"description": "Select your preferred distance unit.",
|
|
105
|
+
"options": {
|
|
106
|
+
"kilometers": "Kilometers (km)",
|
|
107
|
+
"miles": "Miles (mi)"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"weight": {
|
|
111
|
+
"title": "Weight Units",
|
|
112
|
+
"description": "Select your preferred weight unit.",
|
|
113
|
+
"options": {
|
|
114
|
+
"kilograms": "Kilograms (kg)",
|
|
115
|
+
"pounds": "Pounds (lb)"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"volume": {
|
|
119
|
+
"title": "Volume Units",
|
|
120
|
+
"description": "Select your preferred volume unit.",
|
|
121
|
+
"options": {
|
|
122
|
+
"liters": "Liters (L)",
|
|
123
|
+
"gallons": "Gallons (gal)"
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
"speed": {
|
|
127
|
+
"title": "Speed Units",
|
|
128
|
+
"description": "Select your preferred speed unit.",
|
|
129
|
+
"options": {
|
|
130
|
+
"kmh": "Kilometers per hour (km/h)",
|
|
131
|
+
"km/h": "Kilometers per hour (km/h)",
|
|
132
|
+
"mph": "Miles per hour (mph)"
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"area": {
|
|
136
|
+
"title": "Area Units",
|
|
137
|
+
"description": "Select your preferred area unit.",
|
|
138
|
+
"options": {
|
|
139
|
+
"square-meters": "Square Meters (m²)",
|
|
140
|
+
"square-feet": "Square Feet (ft²)"
|
|
141
|
+
}
|
|
109
142
|
}
|
|
110
143
|
}
|
|
111
144
|
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"module-name": "Report Management",
|
|
3
|
+
"root-menu": "Reports",
|
|
4
|
+
"entities": {
|
|
5
|
+
"report": {
|
|
6
|
+
"title": "Report",
|
|
7
|
+
"title-plural": "Reports"
|
|
8
|
+
},
|
|
9
|
+
"category": {
|
|
10
|
+
"title": "Category",
|
|
11
|
+
"title-plural": "Categories"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"features": {
|
|
15
|
+
"report-runner": {
|
|
16
|
+
"page-title": "Reports",
|
|
17
|
+
"page-description": "Browse and run available reports",
|
|
18
|
+
"menu-title": "Report Categories"
|
|
19
|
+
},
|
|
20
|
+
"report-viewer": {
|
|
21
|
+
"title": "Report Viewer",
|
|
22
|
+
"loading": {
|
|
23
|
+
"chart": "Loading chart data..."
|
|
24
|
+
},
|
|
25
|
+
"error": {
|
|
26
|
+
"title": "Error Loading Report",
|
|
27
|
+
"generic": "An error occurred while loading the report data"
|
|
28
|
+
},
|
|
29
|
+
"filters": {
|
|
30
|
+
"title": "Report Filters",
|
|
31
|
+
"clear": "Clear",
|
|
32
|
+
"unapplied-warning": "Filters have been changed but not applied. Click 'Execute Report' to apply changes.",
|
|
33
|
+
"unapplied-title": "Filters Not Applied",
|
|
34
|
+
"unapplied-description": "Your filter changes have not been applied yet. Click 'Execute Report' to see the updated results.",
|
|
35
|
+
"outdated-title": "Results Outdated",
|
|
36
|
+
"outdated-description": "Your filter changes have not been applied yet. The current results may not reflect your latest selections."
|
|
37
|
+
},
|
|
38
|
+
"chart": {
|
|
39
|
+
"title": "Chart Visualization",
|
|
40
|
+
"description": "Chart component will be rendered here when integrated",
|
|
41
|
+
"no-config": {
|
|
42
|
+
"title": "Chart Not Configured",
|
|
43
|
+
"description": "This report does not have chart visualization configured"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"no-data": {
|
|
47
|
+
"title": "No Data Available",
|
|
48
|
+
"description": "Execute the report to view data"
|
|
49
|
+
},
|
|
50
|
+
"no-report": {
|
|
51
|
+
"title": "No Report Selected",
|
|
52
|
+
"description": "Select a report to view its data and apply filters",
|
|
53
|
+
"browse-reports": "Browse Reports"
|
|
54
|
+
},
|
|
55
|
+
"actions": {
|
|
56
|
+
"execute": "Execute Report",
|
|
57
|
+
"refresh": "Refresh",
|
|
58
|
+
"clear-filters": "Clear Filters"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"no-parameters": {
|
|
63
|
+
"title": "No Parameters Defined",
|
|
64
|
+
"description": "No parameters have been defined for this report yet. Add parameters to make your report more flexible and interactive."
|
|
65
|
+
},
|
|
66
|
+
"data-list-filter": {
|
|
67
|
+
"no-filter-selected": {
|
|
68
|
+
"title": "No Filter Selected",
|
|
69
|
+
"description": "No filter has been selected for this data list. Select a filter to customize the data display."
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"no-items-found": {
|
|
73
|
+
"title": "No Reports Found",
|
|
74
|
+
"description": "No reports or categories are available in this section. Contact your administrator to add reports."
|
|
75
|
+
}
|
|
76
|
+
}
|
|
@@ -22,11 +22,50 @@
|
|
|
22
22
|
"suburb": "Suburb",
|
|
23
23
|
"active": "Active",
|
|
24
24
|
"disabled": "Disabled",
|
|
25
|
-
"firstname": "First Name",
|
|
26
|
-
"lastname": "Last Name",
|
|
27
25
|
"nationalCode": "National Code",
|
|
28
26
|
"mobile": "Mobile",
|
|
29
27
|
"password": "Password",
|
|
30
28
|
"title": "Title",
|
|
31
|
-
"description": "Description"
|
|
29
|
+
"description": "Description",
|
|
30
|
+
"deviceName": "Device Name",
|
|
31
|
+
"deviceSessions": "Device Sessions",
|
|
32
|
+
"lastLoginDate": "Last Login Date",
|
|
33
|
+
"session": "Session",
|
|
34
|
+
"sessions": "Sessions",
|
|
35
|
+
"tenant": "Tenant",
|
|
36
|
+
"application": "Application Name",
|
|
37
|
+
"clientName": "Client Name",
|
|
38
|
+
"device": "Device",
|
|
39
|
+
"location": "Location",
|
|
40
|
+
"ipAddress": "IP Address",
|
|
41
|
+
"operatingSystem": "Operating System",
|
|
42
|
+
"general": "General",
|
|
43
|
+
"auth": "Authentication",
|
|
44
|
+
"action": "Action",
|
|
45
|
+
"identity": "Identity",
|
|
46
|
+
"technical": "Technical",
|
|
47
|
+
"policy": "Policy",
|
|
48
|
+
"policyPlural": "Policies",
|
|
49
|
+
"usersPlural": "Users",
|
|
50
|
+
"rolesPlural": "Roles",
|
|
51
|
+
"profilePlural": "Profiles",
|
|
52
|
+
|
|
53
|
+
"features": {
|
|
54
|
+
"permissions": {
|
|
55
|
+
"terms": {
|
|
56
|
+
"permissions": "Permissions",
|
|
57
|
+
"permissions-editor": "Permissions Editor"
|
|
58
|
+
},
|
|
59
|
+
"no-permissions": {
|
|
60
|
+
"title": "No Permissions Assigned",
|
|
61
|
+
"description": "No permissions have been assigned to this role yet. Add permissions to define access rights."
|
|
62
|
+
},
|
|
63
|
+
"actions": {
|
|
64
|
+
"assign": {
|
|
65
|
+
"title": "Assign Permissions",
|
|
66
|
+
"description": "Assign Permissions"
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
32
71
|
}
|
|
@@ -29,6 +29,23 @@
|
|
|
29
29
|
"message": "Failed to restore settings to their default values. Please try again."
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
|
+
"client-reset": {
|
|
33
|
+
"title": "Reset Local Data",
|
|
34
|
+
"confirm": {
|
|
35
|
+
"title": "Reset Local Data",
|
|
36
|
+
"message": "This will clear localStorage, sessionStorage, cookies, and IndexedDB, then reload the app. Continue?"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"client-export": {
|
|
40
|
+
"title": "Export Local Data"
|
|
41
|
+
},
|
|
42
|
+
"client-import": {
|
|
43
|
+
"title": "Import Local Data",
|
|
44
|
+
"confirm": {
|
|
45
|
+
"title": "Import Local Data",
|
|
46
|
+
"message": "This will overwrite local data (localStorage and IndexedDB) with the imported file. Continue?"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
32
49
|
"apply": {
|
|
33
50
|
"title": "Apply",
|
|
34
51
|
"success": {
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
{
|
|
2
|
+
"module-name": "Task Management",
|
|
3
|
+
"root-menu": "Task Management",
|
|
4
|
+
|
|
5
|
+
"task": {
|
|
6
|
+
"individual-title": "Task",
|
|
7
|
+
"plural-title": "Tasks",
|
|
8
|
+
"scheduling": "Scheduling",
|
|
9
|
+
"classification": "Classification",
|
|
10
|
+
"tracking": "Tracking",
|
|
11
|
+
"context": "Context",
|
|
12
|
+
"due-date": "Due Date",
|
|
13
|
+
"start-date": "Start Date",
|
|
14
|
+
"completed-date": "Completed Date",
|
|
15
|
+
"estimated-hours": "Estimated Hours",
|
|
16
|
+
"actual-hours": "Actual Hours",
|
|
17
|
+
"parent-task": "Parent Task",
|
|
18
|
+
"context-type": "Context Type",
|
|
19
|
+
"context-id": "Context ID",
|
|
20
|
+
"form-template": "Form Template"
|
|
21
|
+
},
|
|
22
|
+
|
|
23
|
+
"task-type": {
|
|
24
|
+
"individual-title": "Task Type",
|
|
25
|
+
"plural-title": "Task Types",
|
|
26
|
+
"configuration": "Configuration",
|
|
27
|
+
"allowed-context-types": "Allowed Context Types",
|
|
28
|
+
"form-template": "Form Template",
|
|
29
|
+
"features": {
|
|
30
|
+
"title": "Features",
|
|
31
|
+
"has-checklist": "Has Checklist",
|
|
32
|
+
"has-time-tracking": "Has Time Tracking",
|
|
33
|
+
"has-attachments": "Has Attachments",
|
|
34
|
+
"has-dependencies": "Has Dependencies",
|
|
35
|
+
"has-subtasks": "Has Subtasks"
|
|
36
|
+
},
|
|
37
|
+
"default-status": "Default Status"
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
"task-status": {
|
|
41
|
+
"individual-title": "Task Status",
|
|
42
|
+
"plural-title": "Task Statuses",
|
|
43
|
+
"configuration": "Configuration",
|
|
44
|
+
"workflow": "Workflow",
|
|
45
|
+
"is-default": "Is Default",
|
|
46
|
+
"is-final": "Is Final",
|
|
47
|
+
"allowed-transitions": "Allowed Transitions"
|
|
48
|
+
},
|
|
49
|
+
|
|
50
|
+
"task-checklist-item": {
|
|
51
|
+
"individual-title": "Checklist Item",
|
|
52
|
+
"plural-title": "Checklist Items"
|
|
53
|
+
},
|
|
54
|
+
|
|
55
|
+
"checklist-item": {
|
|
56
|
+
"assignment": "Assignment",
|
|
57
|
+
"status": "Status",
|
|
58
|
+
"assigned-to": "Assigned To",
|
|
59
|
+
"due-date": "Due Date",
|
|
60
|
+
"is-completed": "Is Completed",
|
|
61
|
+
"completed-by": "Completed By",
|
|
62
|
+
"completed-at": "Completed At"
|
|
63
|
+
},
|
|
64
|
+
|
|
65
|
+
"task-assignment": {
|
|
66
|
+
"individual-title": "Task Assignment",
|
|
67
|
+
"plural-title": "Task Assignments",
|
|
68
|
+
"assigned-by": "Assigned By",
|
|
69
|
+
"assigned-at": "Assigned At"
|
|
70
|
+
},
|
|
71
|
+
|
|
72
|
+
"time-log": {
|
|
73
|
+
"individual-title": "Time Log",
|
|
74
|
+
"plural-title": "Time Logs",
|
|
75
|
+
"time-details": "Time Details",
|
|
76
|
+
"approval": "Approval",
|
|
77
|
+
"start-time": "Start Time",
|
|
78
|
+
"end-time": "End Time",
|
|
79
|
+
"duration": "Duration",
|
|
80
|
+
"is-approved": "Is Approved"
|
|
81
|
+
},
|
|
82
|
+
"task-dependency": {
|
|
83
|
+
"individual-title": "Task Dependency",
|
|
84
|
+
"plural-title": "Task Dependencies",
|
|
85
|
+
"depends-on-task": "Depends On Task",
|
|
86
|
+
"dependency-type": "Dependency Type",
|
|
87
|
+
"lag-days": "Lag Days"
|
|
88
|
+
},
|
|
89
|
+
"task-context": {
|
|
90
|
+
"individual-title": "Task Context",
|
|
91
|
+
"plural-title": "Task Contexts",
|
|
92
|
+
"context-type": "Context Type",
|
|
93
|
+
"context-id": "Context ID",
|
|
94
|
+
"context-title": "Context Title",
|
|
95
|
+
"is-primary": "Is Primary Context"
|
|
96
|
+
},
|
|
97
|
+
"task-template": {
|
|
98
|
+
"individual-title": "Task Template",
|
|
99
|
+
"plural-title": "Task Templates",
|
|
100
|
+
"task-data": "Task Data",
|
|
101
|
+
"template-data": "Template Data",
|
|
102
|
+
"is-public": "Is Public"
|
|
103
|
+
},
|
|
104
|
+
"task-board": {
|
|
105
|
+
"page-title": "Task Board",
|
|
106
|
+
"all": "All Tasks",
|
|
107
|
+
"calendar": "Calendar",
|
|
108
|
+
"table": "Table",
|
|
109
|
+
"kanban": "Kanban",
|
|
110
|
+
"widget-title": "Widget Title",
|
|
111
|
+
"timeline": "Timeline",
|
|
112
|
+
"view": {
|
|
113
|
+
"daily": "Daily",
|
|
114
|
+
"daily-timeline": "Daily Timeline",
|
|
115
|
+
"multi-day-timeline": "Multi-Day Timeline",
|
|
116
|
+
"weekly": "Weekly",
|
|
117
|
+
"weekly-timeline": "Weekly Timeline",
|
|
118
|
+
"monthly": "Monthly",
|
|
119
|
+
"monthly-timeline": "Monthly Timeline",
|
|
120
|
+
"all-day": "All Day",
|
|
121
|
+
"agenda": "Agenda",
|
|
122
|
+
"kanban": "Kanban",
|
|
123
|
+
"grid": "Simple",
|
|
124
|
+
"status-grouped-grid": "Grouped By Status",
|
|
125
|
+
"time-grouped-grid": "Grouped By Time",
|
|
126
|
+
"yearly-timeline": "Yearly Timeline"
|
|
127
|
+
},
|
|
128
|
+
"detail-panel": {
|
|
129
|
+
"title": "Task Details",
|
|
130
|
+
"description": "Description",
|
|
131
|
+
"start-date": "Start Date",
|
|
132
|
+
"end-date": "End Date",
|
|
133
|
+
"status": "Status",
|
|
134
|
+
"priority": "Priority",
|
|
135
|
+
"no-task-selected": {
|
|
136
|
+
"title": "No Task Selected",
|
|
137
|
+
"description": "Please select a task to view its details."
|
|
138
|
+
},
|
|
139
|
+
"reporter": "Reporter",
|
|
140
|
+
"assignee": "Assignee"
|
|
141
|
+
},
|
|
142
|
+
"filter": {
|
|
143
|
+
"title": "Filter",
|
|
144
|
+
"task-type": "Task Type",
|
|
145
|
+
"assignee": "Assignee",
|
|
146
|
+
"reporter": "Reporter",
|
|
147
|
+
"priority": "Priority",
|
|
148
|
+
"date-range": "Date Range"
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|