@acorex/platform-generator 20.3.0-next.8 → 20.4.0
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/bin/interactive-entity-creator.js +84 -90
- 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 +4 -3
- 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/common.json +0 -404
- 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/common.json +0 -386
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/vehicle-management.json +0 -144
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"module-name": "Organization Management",
|
|
3
|
-
"root-menu": "Organization",
|
|
4
|
-
"org-chart-short": "Hierarchy Chart",
|
|
5
|
-
"org-chart-long": "Organization Hierarchy Chart",
|
|
6
|
-
"org-conf-short": "Hierarchy Configuration",
|
|
7
|
-
"org-conf-long": "Organization Hierarchy Configuration",
|
|
3
|
+
"root-menu": "Organization Management",
|
|
8
4
|
|
|
9
5
|
"preparing-document": "Preparing Document",
|
|
10
6
|
"rendering-chart-image": "Rendering chart image",
|
|
@@ -13,159 +9,84 @@
|
|
|
13
9
|
"process-complete": "Process complete",
|
|
14
10
|
"failed-to-generate-chart-image": "Failed to generate chart image",
|
|
15
11
|
|
|
16
|
-
"branch": {
|
|
17
|
-
"individual-title": "Branch",
|
|
18
|
-
"plural-title": "Branches",
|
|
19
|
-
"basic-info": "Basic Info",
|
|
20
|
-
"address-info": "Address Info",
|
|
21
|
-
"title": "Title",
|
|
22
|
-
"code": "Code",
|
|
23
|
-
"manager": "Manager",
|
|
24
|
-
"description": "Description",
|
|
25
|
-
"country": "Country",
|
|
26
|
-
"province": "Province",
|
|
27
|
-
"city": "City",
|
|
28
|
-
"create": "Create",
|
|
29
|
-
"delete-items": "Delete Items",
|
|
30
|
-
"delete": "Delete",
|
|
31
|
-
"detail": "Detail",
|
|
32
|
-
"all-item": "All Item"
|
|
33
|
-
},
|
|
34
|
-
|
|
35
12
|
"chart": {
|
|
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
|
-
"address-info": "Address Info",
|
|
65
|
-
"title": "Title",
|
|
66
|
-
"manager": "Manager",
|
|
67
|
-
"description": "Description",
|
|
68
|
-
"country": "Country",
|
|
69
|
-
"province": "Province",
|
|
70
|
-
"city": "City",
|
|
71
|
-
"create": "Create",
|
|
72
|
-
"delete-items": "Delete Items",
|
|
73
|
-
"delete": "Delete",
|
|
74
|
-
"detail": "Detail",
|
|
75
|
-
"all-item": "All Item"
|
|
13
|
+
"menu-title": "Hierarchy Chart",
|
|
14
|
+
"page-title": "Organization Hierarchy Chart",
|
|
15
|
+
"page-description": "Clear and dynamic view of your organization's structure",
|
|
16
|
+
"actions": {
|
|
17
|
+
"print": "Print",
|
|
18
|
+
"generate": "Generate"
|
|
19
|
+
},
|
|
20
|
+
"generate-dialog": {
|
|
21
|
+
"title": "Generate Organization Chart",
|
|
22
|
+
"message": "Configure the chart generation options",
|
|
23
|
+
"mode": {
|
|
24
|
+
"label": "Chart Mode",
|
|
25
|
+
"description": "Select the type of organizational chart to generate"
|
|
26
|
+
},
|
|
27
|
+
"include-employees": {
|
|
28
|
+
"label": "Include Employees",
|
|
29
|
+
"description": "Show employee information in the chart"
|
|
30
|
+
},
|
|
31
|
+
"prefer-primary": {
|
|
32
|
+
"label": "Prefer Primary Assignments",
|
|
33
|
+
"description": "Use primary assignments when multiple assignments exist"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"mode": {
|
|
37
|
+
"structure": "Organizational Structure",
|
|
38
|
+
"location": "Geographic Location",
|
|
39
|
+
"reporting": "Reporting Hierarchy"
|
|
40
|
+
}
|
|
76
41
|
},
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
"manager": "Manager",
|
|
85
|
-
"description": "Description",
|
|
86
|
-
"country": "Country",
|
|
87
|
-
"province": "Province",
|
|
88
|
-
"city": "City",
|
|
89
|
-
"create": "Create",
|
|
90
|
-
"delete-items": "Delete Items",
|
|
91
|
-
"delete": "Delete",
|
|
92
|
-
"detail": "Detail",
|
|
93
|
-
"all-item": "All Item"
|
|
42
|
+
"chart-configuration": {
|
|
43
|
+
"menu-title": "Hierarchy Chart Configuration",
|
|
44
|
+
"page-title": "Organization Hierarchy Chart Configuration",
|
|
45
|
+
"page-description": "Customize your organization's hierarchical relationships",
|
|
46
|
+
"actions": {
|
|
47
|
+
"reset": "Reset"
|
|
48
|
+
}
|
|
94
49
|
},
|
|
95
50
|
|
|
96
|
-
"
|
|
97
|
-
"individual-title": "
|
|
98
|
-
"plural-title": "
|
|
99
|
-
"
|
|
100
|
-
"organizational-structure": "Organizational Structure",
|
|
101
|
-
"employment-profile": "Employment Profile",
|
|
102
|
-
"firstname": "First Name",
|
|
103
|
-
"lastname": "Last Name",
|
|
104
|
-
"email": "Email",
|
|
105
|
-
"employee-code": "Employee Code",
|
|
106
|
-
"role": "Role",
|
|
107
|
-
"position": "Position",
|
|
108
|
-
"employment-type": "Employment Type",
|
|
109
|
-
"hire-date": "Hire Date",
|
|
110
|
-
"create": "Create",
|
|
111
|
-
"delete-items": "Delete Items",
|
|
112
|
-
"delete": "Delete",
|
|
113
|
-
"detail": "Detail",
|
|
114
|
-
"all-item": "All Item"
|
|
51
|
+
"business-unit-type": {
|
|
52
|
+
"individual-title": "Business Unit Type",
|
|
53
|
+
"plural-title": "Business Unit Types",
|
|
54
|
+
"is-location-based": "Is Location Based"
|
|
115
55
|
},
|
|
116
56
|
|
|
117
|
-
"
|
|
118
|
-
"individual-title": "
|
|
119
|
-
"plural-title": "
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"description": "Description",
|
|
123
|
-
"create": "Create",
|
|
124
|
-
"delete-items": "Delete Items",
|
|
125
|
-
"delete": "Delete",
|
|
126
|
-
"detail": "Detail",
|
|
127
|
-
"all-item": "All Item"
|
|
57
|
+
"business-unit": {
|
|
58
|
+
"individual-title": "Business Unit",
|
|
59
|
+
"plural-title": "Business Units",
|
|
60
|
+
"relation-info": "Relation Info",
|
|
61
|
+
"positions": "Positions"
|
|
128
62
|
},
|
|
129
63
|
|
|
130
64
|
"position": {
|
|
131
65
|
"individual-title": "Position",
|
|
132
66
|
"plural-title": "Positions",
|
|
133
|
-
"
|
|
134
|
-
"description": "Description",
|
|
135
|
-
"create": "Create",
|
|
136
|
-
"delete-items": "Delete Items",
|
|
137
|
-
"delete": "Delete",
|
|
138
|
-
"detail": "Detail",
|
|
139
|
-
"all-item": "All Item"
|
|
67
|
+
"is-manager": "Is Manager"
|
|
140
68
|
},
|
|
141
69
|
|
|
142
70
|
"role": {
|
|
143
71
|
"individual-title": "Role",
|
|
144
72
|
"plural-title": "Roles",
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
"
|
|
151
|
-
|
|
152
|
-
|
|
73
|
+
"skillsId": "Skills",
|
|
74
|
+
"responsibilitiesId": "Responsibilities",
|
|
75
|
+
"categoriesId": "Categories",
|
|
76
|
+
"rolesCategory": "Roles Category",
|
|
77
|
+
"technical-specifications": "Technical Specifications",
|
|
78
|
+
"functional-requirements": "Functional Requirements"
|
|
79
|
+
},
|
|
80
|
+
|
|
81
|
+
"responsibility": {
|
|
82
|
+
"individual-title": "Responsibility",
|
|
83
|
+
"plural-title": "Responsibilities",
|
|
84
|
+
"categoriesId": "Categories"
|
|
153
85
|
},
|
|
154
86
|
|
|
155
87
|
"team": {
|
|
156
88
|
"individual-title": "Team",
|
|
157
|
-
"plural-title": "Teams"
|
|
158
|
-
"basic-info": "Basic Info",
|
|
159
|
-
"organizational-structure": "Organizational Structure",
|
|
160
|
-
"title": "Title",
|
|
161
|
-
"leader": "Leader",
|
|
162
|
-
"member": "Member",
|
|
163
|
-
"description": "Description",
|
|
164
|
-
"create": "Create",
|
|
165
|
-
"delete-items": "Delete Items",
|
|
166
|
-
"delete": "Delete",
|
|
167
|
-
"detail": "Detail",
|
|
168
|
-
"all-item": "All Item"
|
|
89
|
+
"plural-title": "Teams"
|
|
169
90
|
},
|
|
170
91
|
|
|
171
92
|
"settings": {
|
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
{
|
|
2
|
+
"module-name": "Party Management",
|
|
3
|
+
"root-menu": "Party Management",
|
|
4
|
+
"terms": {
|
|
5
|
+
"customer": {
|
|
6
|
+
"title": "Customer",
|
|
7
|
+
"plural": "Customers"
|
|
8
|
+
},
|
|
9
|
+
"vendor": {
|
|
10
|
+
"title": "Vendor",
|
|
11
|
+
"plural": "Vendors"
|
|
12
|
+
},
|
|
13
|
+
"supplier": {
|
|
14
|
+
"title": "Supplier",
|
|
15
|
+
"plural": "Suppliers"
|
|
16
|
+
},
|
|
17
|
+
"partner": {
|
|
18
|
+
"title": "Partner",
|
|
19
|
+
"plural": "Partners"
|
|
20
|
+
},
|
|
21
|
+
"employee": {
|
|
22
|
+
"title": "Employee",
|
|
23
|
+
"plural": "Employees"
|
|
24
|
+
},
|
|
25
|
+
"subcontractor": {
|
|
26
|
+
"title": "Subcontractor",
|
|
27
|
+
"plural": "Subcontractors"
|
|
28
|
+
},
|
|
29
|
+
"client": {
|
|
30
|
+
"title": "Client",
|
|
31
|
+
"plural": "Clients"
|
|
32
|
+
},
|
|
33
|
+
"individual": {
|
|
34
|
+
"title": "Individual",
|
|
35
|
+
"plural": "Individuals"
|
|
36
|
+
},
|
|
37
|
+
"organization": {
|
|
38
|
+
"title": "Organization",
|
|
39
|
+
"plural": "Organizations"
|
|
40
|
+
},
|
|
41
|
+
"phone": {
|
|
42
|
+
"title": "Phone",
|
|
43
|
+
"plural": "Phones"
|
|
44
|
+
},
|
|
45
|
+
"email": {
|
|
46
|
+
"title": "Email",
|
|
47
|
+
"plural": "Emails"
|
|
48
|
+
},
|
|
49
|
+
"mobile": {
|
|
50
|
+
"title": "Mobile",
|
|
51
|
+
"plural": "Mobiles"
|
|
52
|
+
},
|
|
53
|
+
"first-name": {
|
|
54
|
+
"title": "First Name",
|
|
55
|
+
"plural": "First Names"
|
|
56
|
+
},
|
|
57
|
+
"last-name": {
|
|
58
|
+
"title": "Last Name",
|
|
59
|
+
"plural": "Last Names"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
|
|
63
|
+
"party": {
|
|
64
|
+
"individual-title": "Contact",
|
|
65
|
+
"plural-title": "Contacts",
|
|
66
|
+
"search-result-description": "Contact information and details",
|
|
67
|
+
"properties": {
|
|
68
|
+
"type": {
|
|
69
|
+
"title": "Contact Type",
|
|
70
|
+
"options": {
|
|
71
|
+
"individual": "Individual",
|
|
72
|
+
"organization": "Organization"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"display-name": {
|
|
76
|
+
"title": "Display Name"
|
|
77
|
+
},
|
|
78
|
+
"first-name": {
|
|
79
|
+
"title": "First Name"
|
|
80
|
+
},
|
|
81
|
+
"last-name": {
|
|
82
|
+
"title": "Last Name"
|
|
83
|
+
},
|
|
84
|
+
"gender": {
|
|
85
|
+
"title": "Gender",
|
|
86
|
+
"options": {
|
|
87
|
+
"male": "Male",
|
|
88
|
+
"female": "Female",
|
|
89
|
+
"other": "Other"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"legal-name": {
|
|
93
|
+
"title": "Legal Name"
|
|
94
|
+
},
|
|
95
|
+
"status": {
|
|
96
|
+
"title": "Status"
|
|
97
|
+
},
|
|
98
|
+
"primary-location": {
|
|
99
|
+
"title": "Primary Location"
|
|
100
|
+
},
|
|
101
|
+
"notes": {
|
|
102
|
+
"title": "Notes"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"related-entities": {
|
|
106
|
+
"roles": {
|
|
107
|
+
"title": "Roles"
|
|
108
|
+
},
|
|
109
|
+
"identifiers": {
|
|
110
|
+
"title": "Identifiers"
|
|
111
|
+
},
|
|
112
|
+
"locations": {
|
|
113
|
+
"title": "Addresses"
|
|
114
|
+
},
|
|
115
|
+
"contacts": {
|
|
116
|
+
"title": "Contacts"
|
|
117
|
+
},
|
|
118
|
+
"relationships": {
|
|
119
|
+
"title": "Relationships"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"views": {
|
|
123
|
+
"active": "Active Contacts",
|
|
124
|
+
"individuals": "Individuals",
|
|
125
|
+
"organizations": "Organizations"
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
|
|
129
|
+
"party-role": {
|
|
130
|
+
"individual-title": "Contact Role",
|
|
131
|
+
"plural-title": "Contact Roles",
|
|
132
|
+
"search-result-description": "Contact role information",
|
|
133
|
+
"properties": {
|
|
134
|
+
"party": {
|
|
135
|
+
"title": "Contact"
|
|
136
|
+
},
|
|
137
|
+
"role": {
|
|
138
|
+
"title": "Role",
|
|
139
|
+
"options": {
|
|
140
|
+
"customer": "Customer",
|
|
141
|
+
"vendor": "Vendor",
|
|
142
|
+
"subcontractor": "Subcontractor",
|
|
143
|
+
"client": "Client",
|
|
144
|
+
"employee": "Employee",
|
|
145
|
+
"partner": "Partner",
|
|
146
|
+
"supplier": "Supplier",
|
|
147
|
+
"other": "Other"
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
"status": {
|
|
151
|
+
"title": "Status"
|
|
152
|
+
},
|
|
153
|
+
"since": {
|
|
154
|
+
"title": "Since"
|
|
155
|
+
},
|
|
156
|
+
"until": {
|
|
157
|
+
"title": "Until"
|
|
158
|
+
},
|
|
159
|
+
"notes": {
|
|
160
|
+
"title": "Notes"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"related-entities": {
|
|
164
|
+
"party": {
|
|
165
|
+
"title": "Contact"
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
|
|
170
|
+
"party-relationship": {
|
|
171
|
+
"individual-title": "Contact Relationship",
|
|
172
|
+
"plural-title": "Contact Relationships",
|
|
173
|
+
"search-result-description": "Contact relationship information",
|
|
174
|
+
"properties": {
|
|
175
|
+
"from-party": {
|
|
176
|
+
"title": "From Contact"
|
|
177
|
+
},
|
|
178
|
+
"to-party": {
|
|
179
|
+
"title": "To Contact"
|
|
180
|
+
},
|
|
181
|
+
"type": {
|
|
182
|
+
"title": "Relationship Type"
|
|
183
|
+
},
|
|
184
|
+
"valid-from": {
|
|
185
|
+
"title": "Valid From"
|
|
186
|
+
},
|
|
187
|
+
"valid-to": {
|
|
188
|
+
"title": "Valid To"
|
|
189
|
+
},
|
|
190
|
+
"notes": {
|
|
191
|
+
"title": "Notes"
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
"related-entities": {
|
|
195
|
+
"from-party": {
|
|
196
|
+
"title": "From Contact"
|
|
197
|
+
},
|
|
198
|
+
"to-party": {
|
|
199
|
+
"title": "To Contact"
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
|
|
204
|
+
"party-identifier-type": {
|
|
205
|
+
"individual-title": "Contact Identifier Type",
|
|
206
|
+
"plural-title": "Contact Identifier Types",
|
|
207
|
+
"search-result-description": "Contact identifier type information",
|
|
208
|
+
"properties": {
|
|
209
|
+
"title": {
|
|
210
|
+
"title": "Title"
|
|
211
|
+
},
|
|
212
|
+
"description": {
|
|
213
|
+
"title": "Description"
|
|
214
|
+
},
|
|
215
|
+
"scope": {
|
|
216
|
+
"title": "Scope",
|
|
217
|
+
"options": {
|
|
218
|
+
"global": "Global",
|
|
219
|
+
"national": "National",
|
|
220
|
+
"regional": "Regional"
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
"format-regex": {
|
|
224
|
+
"title": "Format Regex"
|
|
225
|
+
},
|
|
226
|
+
"min-length": {
|
|
227
|
+
"title": "Minimum Length"
|
|
228
|
+
},
|
|
229
|
+
"max-length": {
|
|
230
|
+
"title": "Maximum Length"
|
|
231
|
+
},
|
|
232
|
+
"is-unique": {
|
|
233
|
+
"title": "Is Unique"
|
|
234
|
+
},
|
|
235
|
+
"is-active": {
|
|
236
|
+
"title": "Is Active"
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
|
|
241
|
+
"party-identifier": {
|
|
242
|
+
"individual-title": "Contact Identifier",
|
|
243
|
+
"plural-title": "Contact Identifiers",
|
|
244
|
+
"search-result-description": "Contact identifier information",
|
|
245
|
+
"properties": {
|
|
246
|
+
"party": {
|
|
247
|
+
"title": "Contact"
|
|
248
|
+
},
|
|
249
|
+
"type": {
|
|
250
|
+
"title": "Identifier Type"
|
|
251
|
+
},
|
|
252
|
+
"value": {
|
|
253
|
+
"title": "Value"
|
|
254
|
+
},
|
|
255
|
+
"country": {
|
|
256
|
+
"title": "Country"
|
|
257
|
+
},
|
|
258
|
+
"issuer": {
|
|
259
|
+
"title": "Issuer"
|
|
260
|
+
},
|
|
261
|
+
"is-primary": {
|
|
262
|
+
"title": "Is Primary"
|
|
263
|
+
},
|
|
264
|
+
"valid-from": {
|
|
265
|
+
"title": "Valid From"
|
|
266
|
+
},
|
|
267
|
+
"valid-to": {
|
|
268
|
+
"title": "Valid To"
|
|
269
|
+
},
|
|
270
|
+
"notes": {
|
|
271
|
+
"title": "Notes"
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
"related-entities": {
|
|
275
|
+
"party": {
|
|
276
|
+
"title": "Contact"
|
|
277
|
+
},
|
|
278
|
+
"type": {
|
|
279
|
+
"title": "Identifier Type"
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
},
|
|
283
|
+
"party-relationship-type": {
|
|
284
|
+
"individual-title": "Contact Relationship Type",
|
|
285
|
+
"plural-title": "Contact Relationship Types",
|
|
286
|
+
"search-result-description": "Contact relationship type information",
|
|
287
|
+
"properties": {
|
|
288
|
+
"is-directional": {
|
|
289
|
+
"title": "Is Directional"
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
"industry": {
|
|
294
|
+
"individual-title": "Industry",
|
|
295
|
+
"plural-title": "Industries",
|
|
296
|
+
"basic-info": "Basic Information",
|
|
297
|
+
"title": "Title",
|
|
298
|
+
"description": "Description"
|
|
299
|
+
}
|
|
300
|
+
}
|
|
@@ -29,15 +29,8 @@
|
|
|
29
29
|
"version": "Version",
|
|
30
30
|
"effectiveDate": "Effective Date",
|
|
31
31
|
"content": "Content",
|
|
32
|
-
"appTerm": "Term And Condition",
|
|
33
|
-
"appTermPlural": "Terms And Conditions",
|
|
34
32
|
"agreeTerm": "I agree to the terms and conditions",
|
|
35
|
-
"promotion": "Promotion",
|
|
36
|
-
"promotionPlural": "Promotions",
|
|
37
|
-
"contentType": "Content Type",
|
|
38
33
|
"shape": "Shape",
|
|
39
|
-
"placement": "Placement",
|
|
40
|
-
"body": "Body",
|
|
41
34
|
"columns": "Columns",
|
|
42
35
|
"samples": "Samples",
|
|
43
36
|
"dataSource": "Data Source",
|
|
@@ -47,81 +40,29 @@
|
|
|
47
40
|
"sourceEntity": "Source Entity",
|
|
48
41
|
"valueField": "Value Field",
|
|
49
42
|
"textField": "Text Field",
|
|
50
|
-
"media": "Media",
|
|
51
|
-
"text": "Text",
|
|
52
43
|
"static": "Static",
|
|
53
44
|
"entity": "Entity",
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
"
|
|
57
|
-
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
},
|
|
62
|
-
"tenant": {
|
|
63
|
-
"title": "Configuration",
|
|
64
|
-
"description": "Set up and manage settings specific to your organization or tenant."
|
|
65
|
-
},
|
|
66
|
-
"platform": {
|
|
67
|
-
"title": "Platform Configuration",
|
|
68
|
-
"description": "Configure global settings that apply across the entire platform."
|
|
69
|
-
},
|
|
70
|
-
"search": "Find a setting",
|
|
71
|
-
"search-not-found": "No search results found!",
|
|
72
|
-
"restore-defaults": "Restore defaults"
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
"app-term": {
|
|
48
|
+
"individual-title": "Terms & Conditions",
|
|
49
|
+
"plural-title": "Terms & Conditions",
|
|
50
|
+
"page-title": "Terms & Conditions",
|
|
51
|
+
"page-description": "Please review the terms and conditions carefully."
|
|
73
52
|
},
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"description": "Description",
|
|
81
|
-
"attach": "Attach",
|
|
82
|
-
"attach-box-description": "You can upload your screen",
|
|
83
|
-
"start-capture-screen": "Start Capture Screen",
|
|
84
|
-
"capture-screen-error": "Error starting screen recording. Please check your permissions and try again.",
|
|
85
|
-
"get-microphone-error": "Could not get microphone access, recording without microphone audio.",
|
|
86
|
-
"recording-time-limit": "Recording time limit reached (5 minute)"
|
|
87
|
-
},
|
|
88
|
-
"my-reported-issues": {
|
|
89
|
-
"individual-title": "My Reported Issue",
|
|
90
|
-
"plural-title": "My Reported Issues",
|
|
91
|
-
"section-title": "My Reported Issue Details",
|
|
92
|
-
"issue-type": "Issue Type",
|
|
93
|
-
"priority": "Priority",
|
|
94
|
-
"title": "Title",
|
|
95
|
-
"description": "Description",
|
|
96
|
-
"attachments": "Attachments",
|
|
97
|
-
"created-at": "Created At"
|
|
53
|
+
|
|
54
|
+
"updater": {
|
|
55
|
+
"content": "A new version is available. Please update to the latest version.",
|
|
56
|
+
"title": "New Version Available",
|
|
57
|
+
"update": "Update",
|
|
58
|
+
"cancel": "Cancel"
|
|
98
59
|
},
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"individual-title": "Reported Issue",
|
|
104
|
-
"plural-title": "Reported Issues",
|
|
105
|
-
"user": "User",
|
|
106
|
-
"issue-type": "Issue Type",
|
|
107
|
-
"priority": "Priority",
|
|
60
|
+
|
|
61
|
+
"glossary": {
|
|
62
|
+
"individual-title": "Glossary",
|
|
63
|
+
"plural-title": "Glossaries",
|
|
108
64
|
"title": "Title",
|
|
109
|
-
"
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
"system-info": "System Info",
|
|
113
|
-
"error-logs": "Error Logs",
|
|
114
|
-
"created-at": "Created At"
|
|
115
|
-
},
|
|
116
|
-
"issue-type": {
|
|
117
|
-
"individual-title": "Issue Type",
|
|
118
|
-
"plural-title": "Issue Types",
|
|
119
|
-
"section-title": "Issue Type Details",
|
|
120
|
-
"title": "Title",
|
|
121
|
-
"description": "Description"
|
|
122
|
-
},
|
|
123
|
-
"MetaDataDefinitionCategory": "MetaData Definition Category",
|
|
124
|
-
"MetaDataDefinitionCategoryPlural": "MetaData Definition Categories",
|
|
125
|
-
"metaDataDefinitionCategories": "MetaData Definition Categories",
|
|
126
|
-
"parent": "Parent"
|
|
65
|
+
"parentId": "Parent ID"
|
|
66
|
+
}
|
|
67
|
+
|
|
127
68
|
}
|