@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
|
@@ -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
|
+
}
|
|
@@ -1,121 +1,66 @@
|
|
|
1
1
|
{
|
|
2
2
|
"root-menu": "پلتفرم",
|
|
3
|
-
"home": "
|
|
3
|
+
"home": "خانه",
|
|
4
4
|
"help": "راهنما",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
5
|
+
"terms-conditions": "شرایط و ضوابط",
|
|
6
|
+
"help-center": "مرکز راهنما",
|
|
7
|
+
"tutorials": "آموزشها",
|
|
8
|
+
"release-notes": "یادداشتهای انتشار",
|
|
9
|
+
"about": "درباره",
|
|
10
|
+
"sampleEntities": "نهادهای نمونه",
|
|
11
|
+
"sampleDynamicEntity": "نهاد پویا نمونه",
|
|
7
12
|
"administration": "مدیریت",
|
|
8
|
-
"applicationManagement": "مدیریت
|
|
13
|
+
"applicationManagement": "مدیریت برنامه",
|
|
9
14
|
"moduleDesigner": "طراح ماژول",
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"template": "الگو",
|
|
14
|
-
"category": "دستهبندی",
|
|
15
|
+
"textTemplateManagement": "مدیریت قالب متن",
|
|
16
|
+
"template": "قالب",
|
|
17
|
+
"category": "دسته",
|
|
15
18
|
"platformManagement": "مدیریت پلتفرم",
|
|
16
19
|
"globalVariables": "متغیرهای سراسری",
|
|
17
20
|
"variables": "متغیر سراسری",
|
|
18
21
|
"dataType": "نوع داده",
|
|
19
22
|
"value": "مقدار",
|
|
20
|
-
"report-issue": "گزارش مشکل",
|
|
21
23
|
"appVersion": "نسخه برنامه",
|
|
22
24
|
"appVersionPlural": "نسخههای برنامه",
|
|
23
|
-
"
|
|
24
|
-
"changeLogs": "تغییرات",
|
|
25
|
+
"changeLogs": "گزارش تغییرات",
|
|
25
26
|
"publishDate": "تاریخ انتشار",
|
|
26
|
-
"notifyUser": "
|
|
27
|
+
"notifyUser": "اطلاع به کاربر",
|
|
28
|
+
"versionNumber": "شماره نسخه",
|
|
27
29
|
"version": "نسخه",
|
|
28
|
-
"effectiveDate": "تاریخ
|
|
30
|
+
"effectiveDate": "تاریخ اثر",
|
|
29
31
|
"content": "محتوا",
|
|
30
|
-
"
|
|
31
|
-
"appTermPlural": "اصطلاحات برنامه",
|
|
32
|
-
"agreeTerm": "من با شرایط و ضوابط موافقم",
|
|
33
|
-
"promotion": "تبلیغ",
|
|
34
|
-
"promotionPlural": "تبلیغات",
|
|
35
|
-
"contentType": "نوع محتوا",
|
|
32
|
+
"agreeTerm": "با شرایط و ضوابط موافقم",
|
|
36
33
|
"shape": "شکل",
|
|
37
|
-
"placement": "مکان",
|
|
38
|
-
"body": "بادی",
|
|
39
34
|
"columns": "ستونها",
|
|
40
35
|
"samples": "نمونهها",
|
|
41
36
|
"dataSource": "منبع داده",
|
|
42
37
|
"dataSourcePlural": "منابع داده",
|
|
43
38
|
"sourceType": "نوع منبع",
|
|
44
|
-
"sourceStatic": "منبع
|
|
45
|
-
"sourceEntity": "
|
|
39
|
+
"sourceStatic": "منبع ایستا",
|
|
40
|
+
"sourceEntity": "منبع نهاد",
|
|
46
41
|
"valueField": "فیلد مقدار",
|
|
47
42
|
"textField": "فیلد متن",
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
"user": {
|
|
57
|
-
"title": "تنظیمات کاربر",
|
|
58
|
-
"description": "تنظیمات و ترجیحات شخصی خود را سفارشی کنید."
|
|
59
|
-
},
|
|
60
|
-
"tenant": {
|
|
61
|
-
"title": "پیکربندی",
|
|
62
|
-
"description": "تنظیمات مربوط به سازمان یا مستاجر خود را مدیریت و پیکربندی کنید."
|
|
63
|
-
},
|
|
64
|
-
"platform": {
|
|
65
|
-
"title": "پیکربندی پلتفرم",
|
|
66
|
-
"description": "تنظیمات کلی که در کل پلتفرم اعمال میشوند را پیکربندی کنید."
|
|
67
|
-
},
|
|
68
|
-
"search": "جستجوی تنظیمات",
|
|
69
|
-
"search-not-found": "نتیجهای برای جستجو یافت نشد!",
|
|
70
|
-
"restore-defaults": "بازگرداندن به پیشفرضها"
|
|
71
|
-
},
|
|
72
|
-
"report-new-issue": {
|
|
73
|
-
"individual-title": "گزارش مشکل جدید",
|
|
74
|
-
"plural-title": "گزارشات مشکل جدید",
|
|
75
|
-
"issue-type": "نوع مشکل",
|
|
76
|
-
"priority": "اولویت",
|
|
77
|
-
"title": "عنوان",
|
|
78
|
-
"description": "توضیحات",
|
|
79
|
-
"attach": "پیوست",
|
|
80
|
-
"attach-box-description": "می توانید صفحه نمایش خود را بارگذاری کنید",
|
|
81
|
-
"start-capture-screen": "شروع ضبط صفحه",
|
|
82
|
-
"capture-screen-error": "خطا در شروع ضبط صفحه. لطفاً مجوزهای خود را بررسی کنید و دوباره امتحان کنید.",
|
|
83
|
-
"get-microphone-error": "دسترسی به میکروفون امکانپذیر نیست، ضبط بدون صدای میکروفون انجام شد.",
|
|
84
|
-
"recording-time-limit": "محدودیت زمانی ضبط به پایان رسید (5 دقیقه)"
|
|
43
|
+
"static": "ایستا",
|
|
44
|
+
"entity": "نهاد",
|
|
45
|
+
|
|
46
|
+
"app-term": {
|
|
47
|
+
"individual-title": "شرایط و ضوابط",
|
|
48
|
+
"plural-title": "شرایط و ضوابط",
|
|
49
|
+
"page-title": "شرایط و ضوابط",
|
|
50
|
+
"page-description": "لطفاً شرایط و ضوابط را با دقت مطالعه کنید."
|
|
85
51
|
},
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"title": "عنوان",
|
|
93
|
-
"description": "توضیحات",
|
|
94
|
-
"attachments": "پیوستها",
|
|
95
|
-
"created-at": "تاریخ ایجاد"
|
|
96
|
-
},
|
|
97
|
-
"reported-issues": {
|
|
98
|
-
"main-section": "اصلی",
|
|
99
|
-
"details-section": "جزئیات مشکل",
|
|
100
|
-
"system-section": "سیستم",
|
|
101
|
-
"individual-title": "گزارش مشکل",
|
|
102
|
-
"plural-title": "گزارشات مشکل",
|
|
103
|
-
"user": "کاربر",
|
|
104
|
-
"issue-type": "نوع مشکل",
|
|
105
|
-
"priority": "اولویت",
|
|
106
|
-
"title": "عنوان",
|
|
107
|
-
"description": "توضیحات",
|
|
108
|
-
"attachments": "پیوستها",
|
|
109
|
-
"status": "وضعیت",
|
|
110
|
-
"system-info": "اطلاعات سیستم",
|
|
111
|
-
"error-logs": "لاگهای خطا",
|
|
112
|
-
"created-at": "تاریخ ایجاد"
|
|
52
|
+
|
|
53
|
+
"updater": {
|
|
54
|
+
"content": "نسخه جدیدی در دسترس است. لطفاً به آخرین نسخه بهروزرسانی کنید.",
|
|
55
|
+
"title": "نسخه جدید در دسترس است",
|
|
56
|
+
"update": "بهروزرسانی",
|
|
57
|
+
"cancel": "انصراف"
|
|
113
58
|
},
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
"
|
|
117
|
-
"
|
|
59
|
+
|
|
60
|
+
"glossary": {
|
|
61
|
+
"individual-title": "واژهنامه",
|
|
62
|
+
"plural-title": "واژهنامهها",
|
|
118
63
|
"title": "عنوان",
|
|
119
|
-
"
|
|
64
|
+
"parentId": "شناسه والد"
|
|
120
65
|
}
|
|
121
66
|
}
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
{
|
|
2
|
+
"root-menu": "مدیریت پروژه",
|
|
3
|
+
"basicInfo": "اطلاعات پایه",
|
|
4
|
+
"projectName": "نام",
|
|
5
|
+
"project": "پروژهها",
|
|
6
|
+
"projectPlural": "پروژهها",
|
|
7
|
+
"projectNo": "شماره سند",
|
|
8
|
+
"description": "توضیحات",
|
|
9
|
+
"projectType": "انواع پروژه",
|
|
10
|
+
"projectStatus": "وضعیت",
|
|
11
|
+
"estimatetime": "زمان تخمینی",
|
|
12
|
+
"projectWeight": "وزن",
|
|
13
|
+
"client": "مشتری",
|
|
14
|
+
"projectTypePlural": "انواع پروژه",
|
|
15
|
+
"clientPlural": "مشتریان",
|
|
16
|
+
"location": "مکان",
|
|
17
|
+
"clientId": "مشتری",
|
|
18
|
+
"workSitePlural": "محلهای کار",
|
|
19
|
+
"projectRoleMemberPlural": "اعضای نقش پروژه",
|
|
20
|
+
"projectMemeberPlural": "اعضای پروژه",
|
|
21
|
+
"projectId": "پروژه",
|
|
22
|
+
"projectRoleMemberId": "عضو نقش پروژه",
|
|
23
|
+
"personId": "شخص",
|
|
24
|
+
"projectTypeId": "نوع پروژه",
|
|
25
|
+
"taskTypePlural": "انواع وظیفه",
|
|
26
|
+
"taskPlural": "وظایف",
|
|
27
|
+
"priorityIndex": "اولویت",
|
|
28
|
+
"priorityCritical": "بحرانی",
|
|
29
|
+
"date": "تاریخ",
|
|
30
|
+
"starttime": "زمان شروع",
|
|
31
|
+
"endTime": "زمان پایان",
|
|
32
|
+
"duration": "مدت",
|
|
33
|
+
"assignedTo": "واگذار شده به",
|
|
34
|
+
"preparedBy": "تهیه شده توسط",
|
|
35
|
+
"parentTaskId": "وظیفه والد",
|
|
36
|
+
"typeId": "نوع",
|
|
37
|
+
"status": "وضعیت",
|
|
38
|
+
"workSiteId": "محلهای کار",
|
|
39
|
+
"sprintPlural": "اسپرینتها",
|
|
40
|
+
"startDate": "تاریخ شروع",
|
|
41
|
+
"endDate": "تاریخ پایان",
|
|
42
|
+
"taskId": "وظیفه",
|
|
43
|
+
"timeSheetPlural": "برگه زمان",
|
|
44
|
+
"taskHistoryPlural": "تاریخچه وظیفه",
|
|
45
|
+
"sprintId": "اسپرینت",
|
|
46
|
+
"sprintTaskPlural": "وظایف اسپرینت",
|
|
47
|
+
"task": "وظیفه",
|
|
48
|
+
"projectMemeber": "اعضای پروژه",
|
|
49
|
+
"projectRoleMember": "اعضای نقش پروژه",
|
|
50
|
+
"taskType": "انواع وظیفه",
|
|
51
|
+
"workSite": "محل کار",
|
|
52
|
+
"taskHistory": "تاریخچههای وظیفه",
|
|
53
|
+
"sprintTask": "وظایف اسپرینت",
|
|
54
|
+
"jsaAssignment": "واگذاری JSA",
|
|
55
|
+
"jsaAssignmentPlural": "واگذاریهای JSA",
|
|
56
|
+
"jsa": {
|
|
57
|
+
"individual-title": "تجزیه و تحلیل ایمنی شغل",
|
|
58
|
+
"plural-title": "تجزیه و تحلیلهای ایمنی شغل",
|
|
59
|
+
"docNo": "شماره سند",
|
|
60
|
+
"customer": "مشتری",
|
|
61
|
+
"workSite": "محل کار",
|
|
62
|
+
"jobNo": "شماره شغل",
|
|
63
|
+
"creationDate": "تاریخ ایجاد",
|
|
64
|
+
"template": "قالب",
|
|
65
|
+
"multiSignOff": "امضای چندگانه",
|
|
66
|
+
"siteSupervisorSignedOff": "امضا شده توسط سرپرست سایت",
|
|
67
|
+
"status": "وضعیت",
|
|
68
|
+
"pending": "در انتظار",
|
|
69
|
+
"setup": "راهاندازی",
|
|
70
|
+
"signed": "امضا شده",
|
|
71
|
+
"completed": "تکمیل شده",
|
|
72
|
+
"status-descriptions": {
|
|
73
|
+
"pending": "JSA ایجاد شده و در انتظار پیکربندی است",
|
|
74
|
+
"setup": "قالب JSA در حال پیکربندی با دادههای خاص شغل است",
|
|
75
|
+
"signed": "تمام پرسنل مورد نیاز JSA را بررسی و امضا کردهاند",
|
|
76
|
+
"completed": "فرآیند JSA کاملاً تکمیل شده و کار میتواند ادامه یابد"
|
|
77
|
+
},
|
|
78
|
+
"actions": {
|
|
79
|
+
"sign": "امضا",
|
|
80
|
+
"setup": "راهاندازی",
|
|
81
|
+
"reassign": "واگذاری مجدد",
|
|
82
|
+
"email": "ارسال ایمیل به",
|
|
83
|
+
"view": "مشاهده جزئیات",
|
|
84
|
+
"edit": "ویرایش JSA",
|
|
85
|
+
"delete": "حذف JSA",
|
|
86
|
+
"export": "صادرات JSA"
|
|
87
|
+
},
|
|
88
|
+
"sign-dialog": {
|
|
89
|
+
"title": "امضای JSA",
|
|
90
|
+
"message": "لطفاً امضای خود و هر یادداشتی برای این JSA ارائه دهید.",
|
|
91
|
+
"note-label": "یادداشتها",
|
|
92
|
+
"note-placeholder": "هر یادداشت یا نظری اضافه کنید...",
|
|
93
|
+
"signature-label": "امضا",
|
|
94
|
+
"submit-text": "امضای JSA"
|
|
95
|
+
},
|
|
96
|
+
"setup-dialog": {
|
|
97
|
+
"title": "راهاندازی JSA",
|
|
98
|
+
"message": "قالب JSA را با دادههای مورد نیاز پیکربندی کنید.",
|
|
99
|
+
"submit-text": "راهاندازی JSA"
|
|
100
|
+
},
|
|
101
|
+
"reassign-dialog": {
|
|
102
|
+
"title": "واگذاری مجدد JSA",
|
|
103
|
+
"message": "کاربر جدیدی را برای واگذاری این JSA انتخاب کنید.",
|
|
104
|
+
"current-assignee-label": "واگذار شده فعلی",
|
|
105
|
+
"assignee-label": "واگذار به",
|
|
106
|
+
"submit-text": "واگذاری مجدد JSA"
|
|
107
|
+
},
|
|
108
|
+
"email-dialog": {
|
|
109
|
+
"title": "ارسال ایمیل JSA",
|
|
110
|
+
"message": "کاربرانی را برای ارسال ایمیل این JSA انتخاب کنید.",
|
|
111
|
+
"recipients-label": "گیرندگان ایمیل",
|
|
112
|
+
"submit-text": "ارسال ایمیل"
|
|
113
|
+
},
|
|
114
|
+
"email-toast": {
|
|
115
|
+
"title": "ایمیل ارسال شد",
|
|
116
|
+
"no-recipients": {
|
|
117
|
+
"title": "هیچ گیرندهای انتخاب نشده",
|
|
118
|
+
"description": "هیچ گیرندهای برای اطلاعرسانی ایمیل انتخاب نشده است. لطفاً حداقل یک گیرنده انتخاب کنید."
|
|
119
|
+
},
|
|
120
|
+
"single-recipient": "ایمیل JSA با موفقیت به 1 گیرنده ارسال شد.",
|
|
121
|
+
"multiple-recipients": "ایمیل JSA با موفقیت به {{count}} گیرنده ارسال شد."
|
|
122
|
+
},
|
|
123
|
+
"project-details": "جزئیات پروژه",
|
|
124
|
+
"workflow": {
|
|
125
|
+
"status-transition": {
|
|
126
|
+
"pending-to-setup": "پیکربندی قالب JSA",
|
|
127
|
+
"setup-to-signed": "تکمیل بررسی و امضای JSA",
|
|
128
|
+
"signed-to-completed": "علامتگذاری JSA به عنوان تکمیل شده"
|
|
129
|
+
},
|
|
130
|
+
"validation": {
|
|
131
|
+
"cannot-sign-pending": "JSA باید قبل از امضا پیکربندی شود",
|
|
132
|
+
"cannot-complete-unsigned": "JSA باید قبل از تکمیل امضا شود",
|
|
133
|
+
"setup-required": "راهاندازی JSA قبل از ادامه ضروری است"
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
"jsa-assignment": {
|
|
138
|
+
"assignment-info": "اطلاعات واگذاری",
|
|
139
|
+
"tracking-info": "اطلاعات ردیابی",
|
|
140
|
+
"staff": "عضو کارکنان",
|
|
141
|
+
"viewed-on-app": "مشاهده شده در اپ",
|
|
142
|
+
"signed-off": "امضا شده",
|
|
143
|
+
"signed-off-at": "امضا شده در",
|
|
144
|
+
"status": {
|
|
145
|
+
"assigned": "واگذار شده",
|
|
146
|
+
"in-progress": "در حال انجام",
|
|
147
|
+
"completed": "تکمیل شده",
|
|
148
|
+
"overdue": "منقضی شده"
|
|
149
|
+
},
|
|
150
|
+
"actions": {
|
|
151
|
+
"view": "مشاهده واگذاری",
|
|
152
|
+
"sign-off": "امضا",
|
|
153
|
+
"mark-complete": "علامتگذاری تکمیل",
|
|
154
|
+
"reassign": "واگذاری مجدد"
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|