@acorex/platform-generator 20.3.0-next.9 → 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/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
|
@@ -1,22 +1,1011 @@
|
|
|
1
1
|
{
|
|
2
|
+
"widgets": {
|
|
3
|
+
"file-uploader": {
|
|
4
|
+
"edit-dialog": {
|
|
5
|
+
"title": "Edit File"
|
|
6
|
+
},
|
|
7
|
+
"empty-state": {
|
|
8
|
+
"title": "No Files Found",
|
|
9
|
+
"description": "No files have been added to this list yet. Add a file to get started!"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"lookup": {
|
|
13
|
+
"search": "Search in "
|
|
14
|
+
},
|
|
15
|
+
"toggle": {
|
|
16
|
+
"yes": "Yes",
|
|
17
|
+
"no": "No",
|
|
18
|
+
"unknown": "Unknown"
|
|
19
|
+
},
|
|
20
|
+
"multi-language": "Multi-Language",
|
|
21
|
+
"selectbox": {
|
|
22
|
+
"popover": {
|
|
23
|
+
"title": "Select Option"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
},
|
|
2
27
|
"settings": {
|
|
3
28
|
"general": {
|
|
4
29
|
"title": "General Settings",
|
|
5
30
|
"description": "General preferences and behaviors.",
|
|
6
|
-
|
|
7
31
|
"startup": {
|
|
8
32
|
"title": "Startup",
|
|
9
33
|
"description": "Control what happens when the app starts.",
|
|
10
|
-
|
|
11
34
|
"home-page": {
|
|
12
35
|
"title": "Home Page",
|
|
13
36
|
"description": "Choose which page should be shown after login."
|
|
14
37
|
},
|
|
15
|
-
|
|
16
38
|
"release-notes": {
|
|
17
|
-
"title": "What
|
|
39
|
+
"title": "What\u0027s New",
|
|
18
40
|
"description": "Show the latest changes and features after each update."
|
|
19
41
|
}
|
|
42
|
+
},
|
|
43
|
+
"notifications": {
|
|
44
|
+
"title": "Notifications",
|
|
45
|
+
"description": "Configure notification and toast message preferences.",
|
|
46
|
+
"enable-operation-toasts": {
|
|
47
|
+
"title": "Show Operation Results",
|
|
48
|
+
"description": "Display toast notifications for API operations (create, update, delete, etc.)."
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"messages": {
|
|
54
|
+
"generic": {
|
|
55
|
+
"success": {
|
|
56
|
+
"title": "Success",
|
|
57
|
+
"description": "Operation completed successfully."
|
|
58
|
+
},
|
|
59
|
+
"error": {
|
|
60
|
+
"title": "Error",
|
|
61
|
+
"description": "Something went wrong. Please try again."
|
|
62
|
+
},
|
|
63
|
+
"warning": {
|
|
64
|
+
"title": "Warning",
|
|
65
|
+
"description": "Please review and try again."
|
|
66
|
+
},
|
|
67
|
+
"info": {
|
|
68
|
+
"title": "Information",
|
|
69
|
+
"description": "Here is some helpful information."
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"crud": {
|
|
73
|
+
"create": {
|
|
74
|
+
"success": {
|
|
75
|
+
"title": "Created",
|
|
76
|
+
"description": "{{entity}} was created successfully."
|
|
77
|
+
},
|
|
78
|
+
"error": {
|
|
79
|
+
"title": "Create Failed",
|
|
80
|
+
"description": "Could not create {{entity}}."
|
|
81
|
+
},
|
|
82
|
+
"warning": {
|
|
83
|
+
"title": "Create Warning",
|
|
84
|
+
"description": "{{reason}}"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"update": {
|
|
88
|
+
"success": {
|
|
89
|
+
"title": "Updated",
|
|
90
|
+
"description": "{{entity}} was updated successfully."
|
|
91
|
+
},
|
|
92
|
+
"error": {
|
|
93
|
+
"title": "Update Failed",
|
|
94
|
+
"description": "Could not update {{entity}}."
|
|
95
|
+
},
|
|
96
|
+
"warning": {
|
|
97
|
+
"title": "Update Warning",
|
|
98
|
+
"description": "{{reason}}"
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"delete": {
|
|
102
|
+
"success": {
|
|
103
|
+
"title": "Deleted",
|
|
104
|
+
"description": "{{entity}} was deleted successfully."
|
|
105
|
+
},
|
|
106
|
+
"error": {
|
|
107
|
+
"title": "Delete Failed",
|
|
108
|
+
"description": "Could not delete {{entity}}."
|
|
109
|
+
},
|
|
110
|
+
"warning": {
|
|
111
|
+
"title": "Delete Warning",
|
|
112
|
+
"description": "{{reason}}"
|
|
113
|
+
},
|
|
114
|
+
"bulk": {
|
|
115
|
+
"success": {
|
|
116
|
+
"title": "Deleted Items",
|
|
117
|
+
"description": "Deleted {{count}} items."
|
|
118
|
+
},
|
|
119
|
+
"error": {
|
|
120
|
+
"title": "Bulk Delete Failed",
|
|
121
|
+
"description": "Failed to delete {{count}} items."
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"archive": {
|
|
126
|
+
"success": {
|
|
127
|
+
"title": "Archived",
|
|
128
|
+
"description": "{{entity}} was archived successfully."
|
|
129
|
+
},
|
|
130
|
+
"error": {
|
|
131
|
+
"title": "Archive Failed",
|
|
132
|
+
"description": "Could not archive {{entity}}."
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"restore-archive": {
|
|
136
|
+
"success": {
|
|
137
|
+
"title": "Unarchived",
|
|
138
|
+
"description": "{{entity}} was restored from archive."
|
|
139
|
+
},
|
|
140
|
+
"error": {
|
|
141
|
+
"title": "Unarchive Failed",
|
|
142
|
+
"description": "Could not unarchive {{entity}}."
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"set-primary": {
|
|
146
|
+
"success": {
|
|
147
|
+
"title": "Set as Primary",
|
|
148
|
+
"description": "{{entity}} was set as primary successfully."
|
|
149
|
+
},
|
|
150
|
+
"error": {
|
|
151
|
+
"title": "Set Primary Failed",
|
|
152
|
+
"description": "Could not set {{entity}} as primary."
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"network": {
|
|
157
|
+
"offline": {
|
|
158
|
+
"title": "Offline",
|
|
159
|
+
"description": "You appear to be offline."
|
|
160
|
+
},
|
|
161
|
+
"timeout": {
|
|
162
|
+
"title": "Timeout",
|
|
163
|
+
"description": "The request timed out. Please try again."
|
|
164
|
+
},
|
|
165
|
+
"server-error": {
|
|
166
|
+
"title": "Server Error",
|
|
167
|
+
"description": "An unexpected error ({{code}}) occurred."
|
|
168
|
+
},
|
|
169
|
+
"forbidden": {
|
|
170
|
+
"title": "Access Denied",
|
|
171
|
+
"description": "You do not have permission to perform this action."
|
|
172
|
+
},
|
|
173
|
+
"not-found": {
|
|
174
|
+
"title": "Not Found",
|
|
175
|
+
"description": "The requested resource was not found."
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
"form": {
|
|
179
|
+
"saved": {
|
|
180
|
+
"success": {
|
|
181
|
+
"title": "Saved",
|
|
182
|
+
"description": "Your changes were saved."
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
"invalid": {
|
|
186
|
+
"error": {
|
|
187
|
+
"title": "Form Invalid",
|
|
188
|
+
"description": "Please fix the highlighted fields."
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"no-changes": {
|
|
192
|
+
"warning": {
|
|
193
|
+
"title": "No Changes",
|
|
194
|
+
"description": "There are no changes to save."
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
"actions": {
|
|
200
|
+
"manage": {
|
|
201
|
+
"title": "Manage",
|
|
202
|
+
"description": "Manage items"
|
|
203
|
+
},
|
|
204
|
+
"view": {
|
|
205
|
+
"title": "View",
|
|
206
|
+
"description": "Displays item details"
|
|
207
|
+
},
|
|
208
|
+
"detail": {
|
|
209
|
+
"title": "Detail",
|
|
210
|
+
"description": "Show detailed information"
|
|
211
|
+
},
|
|
212
|
+
"create": {
|
|
213
|
+
"title": "Create",
|
|
214
|
+
"description": "Add a new item"
|
|
215
|
+
},
|
|
216
|
+
"edit": {
|
|
217
|
+
"title": "Edit",
|
|
218
|
+
"description": "Modify this item"
|
|
219
|
+
},
|
|
220
|
+
"modify": {
|
|
221
|
+
"title": "Modify",
|
|
222
|
+
"description": "Modify this item"
|
|
223
|
+
},
|
|
224
|
+
"delete": {
|
|
225
|
+
"title": "Delete",
|
|
226
|
+
"description": "Remove this item permanently",
|
|
227
|
+
"confirm": {
|
|
228
|
+
"title": "Confirm Deletion",
|
|
229
|
+
"message": "Are you sure you want to delete this item? This action cannot be undone.",
|
|
230
|
+
"processing": "Deleting...",
|
|
231
|
+
"buttons": {
|
|
232
|
+
"confirm": "Delete",
|
|
233
|
+
"cancel": "Cancel"
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
},
|
|
237
|
+
"lock": {
|
|
238
|
+
"title": "Lock",
|
|
239
|
+
"description": "Lock this item"
|
|
240
|
+
},
|
|
241
|
+
"unlock": {
|
|
242
|
+
"title": "Unlock",
|
|
243
|
+
"description": "Unlock this item"
|
|
244
|
+
},
|
|
245
|
+
"ok": {
|
|
246
|
+
"title": "OK",
|
|
247
|
+
"description": "Confirm action"
|
|
248
|
+
},
|
|
249
|
+
"close": {
|
|
250
|
+
"title": "Close",
|
|
251
|
+
"description": "Close dialog"
|
|
252
|
+
},
|
|
253
|
+
"select": {
|
|
254
|
+
"title": "Select",
|
|
255
|
+
"description": "Select item"
|
|
256
|
+
},
|
|
257
|
+
"delete-items": {
|
|
258
|
+
"title": "Delete Items",
|
|
259
|
+
"description": "Remove selected items permanently",
|
|
260
|
+
"confirm": {
|
|
261
|
+
"title": "Confirm Bulk Deletion",
|
|
262
|
+
"message": "Are you sure you want to delete the selected items? This action cannot be undone.",
|
|
263
|
+
"processing": "Deleting items...",
|
|
264
|
+
"buttons": {
|
|
265
|
+
"confirm": "Delete Items",
|
|
266
|
+
"cancel": "Cancel"
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
"update": {
|
|
271
|
+
"title": "Update",
|
|
272
|
+
"description": "Update an item"
|
|
273
|
+
},
|
|
274
|
+
"save": {
|
|
275
|
+
"title": "Save",
|
|
276
|
+
"description": "Save changes"
|
|
277
|
+
},
|
|
278
|
+
"save-and-new": {
|
|
279
|
+
"title": "Save and Create New",
|
|
280
|
+
"description": "Save changes and create a new item"
|
|
281
|
+
},
|
|
282
|
+
"add": {
|
|
283
|
+
"title": "Add",
|
|
284
|
+
"description": "Add a new item"
|
|
285
|
+
},
|
|
286
|
+
"add-item": {
|
|
287
|
+
"title": "Add Item",
|
|
288
|
+
"description": "Add a new item"
|
|
289
|
+
},
|
|
290
|
+
"save-as": {
|
|
291
|
+
"title": "Save As",
|
|
292
|
+
"description": "Save as new item"
|
|
293
|
+
},
|
|
294
|
+
"next": {
|
|
295
|
+
"title": "Next",
|
|
296
|
+
"description": "Go to the next step"
|
|
297
|
+
},
|
|
298
|
+
"previous": {
|
|
299
|
+
"title": "Previous",
|
|
300
|
+
"description": "Go to the previous step"
|
|
301
|
+
},
|
|
302
|
+
"back": {
|
|
303
|
+
"title": "Back",
|
|
304
|
+
"description": "Go back to previous page"
|
|
305
|
+
},
|
|
306
|
+
"approve": {
|
|
307
|
+
"title": "Approve",
|
|
308
|
+
"description": "Accept and approve the item"
|
|
309
|
+
},
|
|
310
|
+
"reject": {
|
|
311
|
+
"title": "Reject",
|
|
312
|
+
"description": "Reject and return the item",
|
|
313
|
+
"confirm": {
|
|
314
|
+
"title": "Confirm Rejection",
|
|
315
|
+
"message": "Are you sure you want to reject this item?",
|
|
316
|
+
"processing": "Rejecting...",
|
|
317
|
+
"buttons": {
|
|
318
|
+
"confirm": "Reject",
|
|
319
|
+
"cancel": "Cancel"
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
},
|
|
323
|
+
"submit": {
|
|
324
|
+
"title": "Submit",
|
|
325
|
+
"description": "Send this for processing"
|
|
326
|
+
},
|
|
327
|
+
"complete": {
|
|
328
|
+
"title": "Complete",
|
|
329
|
+
"description": "Mark as complete"
|
|
330
|
+
},
|
|
331
|
+
"archive": {
|
|
332
|
+
"title": "Archive",
|
|
333
|
+
"description": "Archive this item",
|
|
334
|
+
"confirm": {
|
|
335
|
+
"title": "Confirm Archiving",
|
|
336
|
+
"message": "Are you sure you want to archive this item?",
|
|
337
|
+
"processing": "Archiving...",
|
|
338
|
+
"buttons": {
|
|
339
|
+
"confirm": "Archive",
|
|
340
|
+
"cancel": "Cancel"
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
},
|
|
344
|
+
"disable": {
|
|
345
|
+
"title": "Disable",
|
|
346
|
+
"description": "Disable this item",
|
|
347
|
+
"confirm": {
|
|
348
|
+
"title": "Confirm Disabling",
|
|
349
|
+
"message": "Are you sure you want to disable this item?",
|
|
350
|
+
"processing": "Disabling...",
|
|
351
|
+
"buttons": {
|
|
352
|
+
"confirm": "Disable",
|
|
353
|
+
"cancel": "Cancel"
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
},
|
|
357
|
+
"enable": {
|
|
358
|
+
"title": "Enable",
|
|
359
|
+
"description": "Enable this item",
|
|
360
|
+
"confirm": {
|
|
361
|
+
"title": "Confirm Enabling",
|
|
362
|
+
"message": "Are you sure you want to enable this item?",
|
|
363
|
+
"processing": "Enabling...",
|
|
364
|
+
"buttons": {
|
|
365
|
+
"confirm": "Enable",
|
|
366
|
+
"cancel": "Cancel"
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
"bulk-disable": {
|
|
371
|
+
"title": "Disable Selected",
|
|
372
|
+
"description": "Disable selected items",
|
|
373
|
+
"confirm": {
|
|
374
|
+
"title": "Confirm Bulk Disabling",
|
|
375
|
+
"message": "Are you sure you want to disable {{count}} selected items?",
|
|
376
|
+
"processing": "Disabling items...",
|
|
377
|
+
"buttons": {
|
|
378
|
+
"confirm": "Disable Items",
|
|
379
|
+
"cancel": "Cancel"
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
},
|
|
383
|
+
"bulk-enable": {
|
|
384
|
+
"title": "Enable Selected",
|
|
385
|
+
"description": "Enable selected items",
|
|
386
|
+
"confirm": {
|
|
387
|
+
"title": "Confirm Bulk Enabling",
|
|
388
|
+
"message": "Are you sure you want to enable {{count}} selected items?",
|
|
389
|
+
"processing": "Enabling items...",
|
|
390
|
+
"buttons": {
|
|
391
|
+
"confirm": "Enable Items",
|
|
392
|
+
"cancel": "Cancel"
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"set-primary": {
|
|
397
|
+
"title": "Set Primary",
|
|
398
|
+
"description": "Set this item as primary",
|
|
399
|
+
"confirm": {
|
|
400
|
+
"title": "Confirm Set Primary",
|
|
401
|
+
"message": "Are you sure you want to set this item as primary? This will unset any other primary items.",
|
|
402
|
+
"processing": "Setting as primary...",
|
|
403
|
+
"buttons": {
|
|
404
|
+
"confirm": "Set Primary",
|
|
405
|
+
"cancel": "Cancel"
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
"export": {
|
|
410
|
+
"title": "Export",
|
|
411
|
+
"description": "Download item data"
|
|
412
|
+
},
|
|
413
|
+
"import": {
|
|
414
|
+
"title": "Import",
|
|
415
|
+
"description": "Upload items in bulk"
|
|
416
|
+
},
|
|
417
|
+
"print": {
|
|
418
|
+
"title": "Print",
|
|
419
|
+
"description": "Print this record"
|
|
420
|
+
},
|
|
421
|
+
"clone": {
|
|
422
|
+
"title": "Clone",
|
|
423
|
+
"description": "Create an exact copy of this item",
|
|
424
|
+
"confirm": {
|
|
425
|
+
"title": "Confirm Clone",
|
|
426
|
+
"message": "Are you sure you want to clone this item? A new copy will be created.",
|
|
427
|
+
"processing": "Cloning...",
|
|
428
|
+
"buttons": {
|
|
429
|
+
"confirm": "Clone",
|
|
430
|
+
"cancel": "Cancel"
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
},
|
|
434
|
+
"open": {
|
|
435
|
+
"title": "Open",
|
|
436
|
+
"description": "Open item or file"
|
|
437
|
+
},
|
|
438
|
+
"cancel": {
|
|
439
|
+
"title": "Cancel",
|
|
440
|
+
"description": "Cancel the current action"
|
|
441
|
+
},
|
|
442
|
+
"refresh": {
|
|
443
|
+
"title": "Refresh",
|
|
444
|
+
"description": "Refresh data"
|
|
445
|
+
},
|
|
446
|
+
"reload": {
|
|
447
|
+
"title": "Reload",
|
|
448
|
+
"description": "Reload page or component"
|
|
449
|
+
},
|
|
450
|
+
"search": {
|
|
451
|
+
"title": "Search",
|
|
452
|
+
"description": "Search for items"
|
|
453
|
+
},
|
|
454
|
+
"filter": {
|
|
455
|
+
"title": "Filter",
|
|
456
|
+
"description": "Apply filters"
|
|
457
|
+
},
|
|
458
|
+
"sort": {
|
|
459
|
+
"title": "Sort",
|
|
460
|
+
"description": "Sort items"
|
|
461
|
+
},
|
|
462
|
+
"clear": {
|
|
463
|
+
"title": "Clear",
|
|
464
|
+
"description": "Clear data or form"
|
|
465
|
+
},
|
|
466
|
+
"unselect": {
|
|
467
|
+
"title": "Unselect",
|
|
468
|
+
"description": "Clear selection"
|
|
469
|
+
},
|
|
470
|
+
"reset": {
|
|
471
|
+
"title": "Reset",
|
|
472
|
+
"description": "Reset to defaults"
|
|
473
|
+
},
|
|
474
|
+
"sync": {
|
|
475
|
+
"title": "Sync",
|
|
476
|
+
"description": "Synchronize data"
|
|
477
|
+
},
|
|
478
|
+
"assign": {
|
|
479
|
+
"title": "Assign",
|
|
480
|
+
"description": "Assign responsibility"
|
|
481
|
+
},
|
|
482
|
+
"terminate": {
|
|
483
|
+
"title": "Terminate",
|
|
484
|
+
"description": "Terminate this session"
|
|
485
|
+
},
|
|
486
|
+
"terminate-selected": {
|
|
487
|
+
"title": "Terminate Selected",
|
|
488
|
+
"description": "Terminate selected sessions"
|
|
489
|
+
},
|
|
490
|
+
"restore": {
|
|
491
|
+
"title": "Restore",
|
|
492
|
+
"description": "Restore this archived item",
|
|
493
|
+
"confirm": {
|
|
494
|
+
"title": "Confirm Restoration",
|
|
495
|
+
"message": "Are you sure you want to restore this item?",
|
|
496
|
+
"processing": "Restoring...",
|
|
497
|
+
"buttons": {
|
|
498
|
+
"confirm": "Restore",
|
|
499
|
+
"cancel": "Cancel"
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
},
|
|
503
|
+
"bulk-archive": {
|
|
504
|
+
"title": "Bulk Archive",
|
|
505
|
+
"description": "Archive selected items",
|
|
506
|
+
"confirm": {
|
|
507
|
+
"title": "Confirm Bulk Archiving",
|
|
508
|
+
"message": "Are you sure you want to archive the selected items?",
|
|
509
|
+
"processing": "Archiving items...",
|
|
510
|
+
"buttons": {
|
|
511
|
+
"confirm": "Archive",
|
|
512
|
+
"cancel": "Cancel"
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
},
|
|
516
|
+
"bulk-restore": {
|
|
517
|
+
"title": "Bulk Restore",
|
|
518
|
+
"description": "Restore selected archived items",
|
|
519
|
+
"confirm": {
|
|
520
|
+
"title": "Confirm Bulk Restoration",
|
|
521
|
+
"message": "Are you sure you want to restore the selected items?",
|
|
522
|
+
"processing": "Restoring items...",
|
|
523
|
+
"buttons": {
|
|
524
|
+
"confirm": "Restore",
|
|
525
|
+
"cancel": "Cancel"
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
},
|
|
529
|
+
"share": {
|
|
530
|
+
"title": "Share",
|
|
531
|
+
"description": "Send or share with others"
|
|
532
|
+
},
|
|
533
|
+
"upload": {
|
|
534
|
+
"title": "Upload",
|
|
535
|
+
"description": "Upload an item"
|
|
536
|
+
},
|
|
537
|
+
"remove": {
|
|
538
|
+
"title": "Remove",
|
|
539
|
+
"description": "Remove an item",
|
|
540
|
+
"confirm": {
|
|
541
|
+
"title": "Confirm Removal",
|
|
542
|
+
"message": "Are you sure you want to remove this item?",
|
|
543
|
+
"processing": "Removing...",
|
|
544
|
+
"buttons": {
|
|
545
|
+
"confirm": "Remove",
|
|
546
|
+
"cancel": "Cancel"
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
},
|
|
550
|
+
"configure": {
|
|
551
|
+
"title": "Configure",
|
|
552
|
+
"description": "Adjust settings and options"
|
|
553
|
+
},
|
|
554
|
+
"setup": {
|
|
555
|
+
"title": "Setup",
|
|
556
|
+
"description": "Configure settings"
|
|
557
|
+
},
|
|
558
|
+
"design": {
|
|
559
|
+
"title": "Design",
|
|
560
|
+
"description": "Open design mode"
|
|
561
|
+
},
|
|
562
|
+
"start": {
|
|
563
|
+
"title": "Start",
|
|
564
|
+
"description": "Start process or workflow"
|
|
565
|
+
},
|
|
566
|
+
"stop": {
|
|
567
|
+
"title": "Stop",
|
|
568
|
+
"description": "Stop process or workflow"
|
|
569
|
+
},
|
|
570
|
+
"pause": {
|
|
571
|
+
"title": "Pause",
|
|
572
|
+
"description": "Pause process or workflow"
|
|
573
|
+
},
|
|
574
|
+
"publish": {
|
|
575
|
+
"title": "Publish",
|
|
576
|
+
"description": "Make publicly available",
|
|
577
|
+
"confirm": {
|
|
578
|
+
"title": "Confirm Publish",
|
|
579
|
+
"message": "Are you sure you want to publish this item? It will become publicly visible.",
|
|
580
|
+
"processing": "Publishing...",
|
|
581
|
+
"buttons": {
|
|
582
|
+
"confirm": "Publish",
|
|
583
|
+
"cancel": "Cancel"
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
"unpublish": {
|
|
588
|
+
"title": "Unpublish",
|
|
589
|
+
"description": "Remove from public view",
|
|
590
|
+
"confirm": {
|
|
591
|
+
"title": "Confirm Unpublish",
|
|
592
|
+
"message": "Are you sure you want to unpublish this item? It will no longer be publicly visible.",
|
|
593
|
+
"processing": "Unpublishing...",
|
|
594
|
+
"buttons": {
|
|
595
|
+
"confirm": "Unpublish",
|
|
596
|
+
"cancel": "Cancel"
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
"info": {
|
|
601
|
+
"title": "Information",
|
|
602
|
+
"description": "Display detailed information"
|
|
603
|
+
},
|
|
604
|
+
"confirm": {
|
|
605
|
+
"title": "Confirm",
|
|
606
|
+
"description": "Confirm the current action"
|
|
607
|
+
},
|
|
608
|
+
"preview": {
|
|
609
|
+
"title": "Preview",
|
|
610
|
+
"description": "See how it will appear"
|
|
611
|
+
},
|
|
612
|
+
"version-history": {
|
|
613
|
+
"title": "Version History",
|
|
614
|
+
"description": "Show version history"
|
|
615
|
+
},
|
|
616
|
+
"compare": {
|
|
617
|
+
"title": "Compare",
|
|
618
|
+
"description": "Compare selected items"
|
|
619
|
+
},
|
|
620
|
+
"comments": {
|
|
621
|
+
"title": "Comments",
|
|
622
|
+
"description": "Show comments and discussions"
|
|
623
|
+
},
|
|
624
|
+
"sign": {
|
|
625
|
+
"title": "Sign",
|
|
626
|
+
"description": "Sign the document",
|
|
627
|
+
"checkBox": {
|
|
628
|
+
"label": "Agreement And Signature"
|
|
629
|
+
},
|
|
630
|
+
"signature": {
|
|
631
|
+
"label": "when accept agreement and sign"
|
|
632
|
+
}
|
|
633
|
+
},
|
|
634
|
+
"send": {
|
|
635
|
+
"title": "Send",
|
|
636
|
+
"description": "Send the item"
|
|
637
|
+
},
|
|
638
|
+
"report": {
|
|
639
|
+
"title": "Report",
|
|
640
|
+
"description": "Generate a report"
|
|
641
|
+
},
|
|
642
|
+
"sent": {
|
|
643
|
+
"title": "Sent",
|
|
644
|
+
"description": "Mark item as sent"
|
|
645
|
+
},
|
|
646
|
+
"review": {
|
|
647
|
+
"title": "Review",
|
|
648
|
+
"description": "Review this item"
|
|
649
|
+
},
|
|
650
|
+
"generate": {
|
|
651
|
+
"title": "Generate",
|
|
652
|
+
"description": "Generate new content or data"
|
|
653
|
+
},
|
|
654
|
+
"reorder": {
|
|
655
|
+
"title": "Reorder",
|
|
656
|
+
"description": "Change the order of items"
|
|
657
|
+
},
|
|
658
|
+
"rename": {
|
|
659
|
+
"title": "Rename",
|
|
660
|
+
"description": "Change the name of this item"
|
|
661
|
+
},
|
|
662
|
+
"apply": {
|
|
663
|
+
"title": "Apply",
|
|
664
|
+
"description": "Apply changes",
|
|
665
|
+
"messages": {
|
|
666
|
+
"invalid": {
|
|
667
|
+
"title": "Invalid Settings",
|
|
668
|
+
"message": "Some settings are invalid and cannot be applied."
|
|
669
|
+
},
|
|
670
|
+
"success": {
|
|
671
|
+
"title": "Settings Applied",
|
|
672
|
+
"message": "Settings have been successfully applied."
|
|
673
|
+
},
|
|
674
|
+
"error": {
|
|
675
|
+
"title": "Application Failed",
|
|
676
|
+
"message": "Failed to apply settings. Please try again."
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
},
|
|
680
|
+
"discard": {
|
|
681
|
+
"title": "Discard",
|
|
682
|
+
"description": "Discard changes"
|
|
683
|
+
},
|
|
684
|
+
"view-all": {
|
|
685
|
+
"title": "View All",
|
|
686
|
+
"button": "View All Items"
|
|
687
|
+
},
|
|
688
|
+
"view-less": {
|
|
689
|
+
"title": "View Less",
|
|
690
|
+
"button": "View Less Items"
|
|
691
|
+
},
|
|
692
|
+
"distribution": {
|
|
693
|
+
"title": "Distribution",
|
|
694
|
+
"description": "Distribute the item",
|
|
695
|
+
"permission": "Distribution",
|
|
696
|
+
"audit": "Distribution",
|
|
697
|
+
"success": {
|
|
698
|
+
"title": "Distributed",
|
|
699
|
+
"message": "Distributed to {{count}} recipients."
|
|
700
|
+
},
|
|
701
|
+
"error": {
|
|
702
|
+
"title": "Distribution Failed",
|
|
703
|
+
"message": "Could not distribute. Please try again."
|
|
704
|
+
}
|
|
705
|
+
}
|
|
706
|
+
},
|
|
707
|
+
"empty-states": {
|
|
708
|
+
"no-records-found": {
|
|
709
|
+
"title": "No Records Found",
|
|
710
|
+
"description": "No records are available in this section. Create a new record to get started."
|
|
711
|
+
}
|
|
712
|
+
},
|
|
713
|
+
|
|
714
|
+
"state-message": {
|
|
715
|
+
"error": {
|
|
716
|
+
"title": "Error",
|
|
717
|
+
"description": "Something went wrong"
|
|
718
|
+
},
|
|
719
|
+
"loading": {
|
|
720
|
+
"title": "Loading",
|
|
721
|
+
"description": "Please wait..."
|
|
722
|
+
},
|
|
723
|
+
"success": {
|
|
724
|
+
"title": "Success",
|
|
725
|
+
"description": "Operation completed successfully"
|
|
726
|
+
},
|
|
727
|
+
"empty": {
|
|
728
|
+
"title": "No Data",
|
|
729
|
+
"description": "No items found"
|
|
730
|
+
}
|
|
731
|
+
},
|
|
732
|
+
"workflow": {
|
|
733
|
+
"warning": "Warning",
|
|
734
|
+
"confirm-delete": "Are you sure you want to delete this item? This action cannot be undone.",
|
|
735
|
+
"deleting": "Deleting...",
|
|
736
|
+
"success-delete-title": "Successfully Deleted",
|
|
737
|
+
"success-delete-body": "The selected items have been successfully deleted.",
|
|
738
|
+
"success-partial-delete-title": "Partially Deleted",
|
|
739
|
+
"partial-delete-body": "Some items were successfully deleted, but others could not be removed.",
|
|
740
|
+
"fail-delete-title": "Deletion Failed",
|
|
741
|
+
"fail-delete-body": "Failed to delete the selected items. Please try again.",
|
|
742
|
+
"entity-disabled": "Item Disabled",
|
|
743
|
+
"entity-disabled-body": "The item has been successfully disabled.",
|
|
744
|
+
"entity-enabled": "Item Enabled",
|
|
745
|
+
"entity-enabled-body": "The item has been successfully enabled.",
|
|
746
|
+
"entity-bulk-disabled": "Items Disabled",
|
|
747
|
+
"entity-bulk-disabled-body": "Selected items have been successfully disabled.",
|
|
748
|
+
"entity-bulk-enabled": "Items Enabled",
|
|
749
|
+
"entity-bulk-enabled-body": "Selected items have been successfully enabled.",
|
|
750
|
+
"no-need": "No Action Required",
|
|
751
|
+
"no-item": "No items selected for deletion."
|
|
752
|
+
},
|
|
753
|
+
"terms": {
|
|
754
|
+
"common": {
|
|
755
|
+
"title": "Title",
|
|
756
|
+
"titles": "Titles",
|
|
757
|
+
"name": "Name",
|
|
758
|
+
"names": "Names",
|
|
759
|
+
"short-name": "Short Name",
|
|
760
|
+
"display-name": "Display Name",
|
|
761
|
+
"description": "Description",
|
|
762
|
+
"code": "Code",
|
|
763
|
+
"value": "Value",
|
|
764
|
+
"values": "Values",
|
|
765
|
+
"type": "Type",
|
|
766
|
+
"types": "Types",
|
|
767
|
+
"icon": "Icon",
|
|
768
|
+
"color": "Color",
|
|
769
|
+
"avatar": "Avatar",
|
|
770
|
+
"size": "Size",
|
|
771
|
+
"notes": "Notes",
|
|
772
|
+
"body": "Body",
|
|
773
|
+
"content": "Content",
|
|
774
|
+
"placeholder": "Placeholder",
|
|
775
|
+
"version": "Version",
|
|
776
|
+
"versions": "Versions",
|
|
777
|
+
"tag": "Tag",
|
|
778
|
+
"tags": "Tags",
|
|
779
|
+
"id": "ID",
|
|
780
|
+
"from": "From",
|
|
781
|
+
"to": "To",
|
|
782
|
+
"language": "Language",
|
|
783
|
+
"columns": "Columns",
|
|
784
|
+
"sorts": "Sorts",
|
|
785
|
+
"date": {
|
|
786
|
+
"today": "Today"
|
|
787
|
+
}
|
|
788
|
+
},
|
|
789
|
+
"people": {
|
|
790
|
+
"user": "User",
|
|
791
|
+
"users": "Users",
|
|
792
|
+
"employee": "Employee",
|
|
793
|
+
"employees": "Employees",
|
|
794
|
+
"contact": "Contact",
|
|
795
|
+
"contacts": "Contacts",
|
|
796
|
+
"member": "Member",
|
|
797
|
+
"members": "Members",
|
|
798
|
+
"manager": "Manager",
|
|
799
|
+
"managers": "Managers",
|
|
800
|
+
"leader": "Leader",
|
|
801
|
+
"leaders": "Leaders",
|
|
802
|
+
"individual": "Individual",
|
|
803
|
+
"individuals": "Individuals"
|
|
804
|
+
},
|
|
805
|
+
"organizations": {
|
|
806
|
+
"organization": "Organization",
|
|
807
|
+
"organizations": "Organizations",
|
|
808
|
+
"company": "Company",
|
|
809
|
+
"companies": "Companies",
|
|
810
|
+
"department": "Department",
|
|
811
|
+
"departments": "Departments",
|
|
812
|
+
"team": "Team",
|
|
813
|
+
"teams": "Teams",
|
|
814
|
+
"group": "Group",
|
|
815
|
+
"groups": "Groups",
|
|
816
|
+
"calendar": "Calendar",
|
|
817
|
+
"calendars": "Calendars",
|
|
818
|
+
"progress": "Progress",
|
|
819
|
+
"availability": "Availability"
|
|
820
|
+
},
|
|
821
|
+
"business": {
|
|
822
|
+
"client": "Client",
|
|
823
|
+
"clients": "Clients",
|
|
824
|
+
"customer": "Customer",
|
|
825
|
+
"customers": "Customers",
|
|
826
|
+
"vendor": "Vendor",
|
|
827
|
+
"vendors": "Vendors",
|
|
828
|
+
"supplier": "Supplier",
|
|
829
|
+
"suppliers": "Suppliers",
|
|
830
|
+
"partner": "Partner",
|
|
831
|
+
"partners": "Partners",
|
|
832
|
+
"project": "Project",
|
|
833
|
+
"projects": "Projects",
|
|
834
|
+
"task": "Task",
|
|
835
|
+
"tasks": "Tasks"
|
|
836
|
+
},
|
|
837
|
+
"security": {
|
|
838
|
+
"role": "Role",
|
|
839
|
+
"roles": "Roles",
|
|
840
|
+
"permission": "Permission",
|
|
841
|
+
"permissions": "Permissions",
|
|
842
|
+
"session": "Session",
|
|
843
|
+
"sessions": "Sessions"
|
|
844
|
+
},
|
|
845
|
+
"communication": {
|
|
846
|
+
"message": "Message",
|
|
847
|
+
"messages": "Messages",
|
|
848
|
+
"notification": "Notification",
|
|
849
|
+
"notifications": "Notifications",
|
|
850
|
+
"email": "Email",
|
|
851
|
+
"emails": "Emails",
|
|
852
|
+
"website": "Website",
|
|
853
|
+
"websites": "Websites",
|
|
854
|
+
"phone": "Phone",
|
|
855
|
+
"phones": "Phones",
|
|
856
|
+
"mobile": "Mobile"
|
|
857
|
+
},
|
|
858
|
+
|
|
859
|
+
"reports": {
|
|
860
|
+
"report": "Report",
|
|
861
|
+
"reports": "Reports",
|
|
862
|
+
"dashboard": "Dashboard",
|
|
863
|
+
"dashboards": "Dashboards"
|
|
864
|
+
},
|
|
865
|
+
"geography": {
|
|
866
|
+
"location": "Location",
|
|
867
|
+
"locations": "Locations",
|
|
868
|
+
"country": "Country",
|
|
869
|
+
"countries": "Countries",
|
|
870
|
+
"region": "Region",
|
|
871
|
+
"regions": "Regions",
|
|
872
|
+
"city": "City",
|
|
873
|
+
"cities": "Cities",
|
|
874
|
+
"address": "Address",
|
|
875
|
+
"addresses": "Addresses"
|
|
876
|
+
},
|
|
877
|
+
"classification": {
|
|
878
|
+
"priority": "Priority",
|
|
879
|
+
"priorities": "Priorities",
|
|
880
|
+
"order": "Order",
|
|
881
|
+
"hierarchy": "Hierarchy",
|
|
882
|
+
"parent": "Parent",
|
|
883
|
+
"category": "Category",
|
|
884
|
+
"categories": "Categories"
|
|
885
|
+
},
|
|
886
|
+
"contact": {
|
|
887
|
+
"first-name": "First Name",
|
|
888
|
+
"last-name": "Last Name",
|
|
889
|
+
"username": "Username",
|
|
890
|
+
"company": "Company",
|
|
891
|
+
"companies": "Companies",
|
|
892
|
+
"people": "People"
|
|
893
|
+
},
|
|
894
|
+
"status": {
|
|
895
|
+
"title": "Status",
|
|
896
|
+
"description": "Status of the item",
|
|
897
|
+
"options": {
|
|
898
|
+
"active": "Active",
|
|
899
|
+
"inactive": "Inactive",
|
|
900
|
+
"blocked": "Blocked",
|
|
901
|
+
"archived": "Archived",
|
|
902
|
+
"verified": "Verified",
|
|
903
|
+
"pending": "Pending",
|
|
904
|
+
"approved": "Approved",
|
|
905
|
+
"rejected": "Rejected",
|
|
906
|
+
"completed": "Completed",
|
|
907
|
+
"cancelled": "Cancelled"
|
|
908
|
+
},
|
|
909
|
+
"states": {
|
|
910
|
+
"is-active": "Active",
|
|
911
|
+
"is-archived": "Archived",
|
|
912
|
+
"is-disabled": "Disabled",
|
|
913
|
+
"is-enabled": "Enabled",
|
|
914
|
+
"is-verified": "Verified",
|
|
915
|
+
"is-default": "Default",
|
|
916
|
+
"is-primary": "Primary",
|
|
917
|
+
"is-unique": "Is Unique"
|
|
918
|
+
}
|
|
919
|
+
},
|
|
920
|
+
"datetime": {
|
|
921
|
+
"date": "Date",
|
|
922
|
+
"dates": "Dates",
|
|
923
|
+
"start-date": "Start Date",
|
|
924
|
+
"end-date": "End Date",
|
|
925
|
+
"period": "Period",
|
|
926
|
+
"periods": "Periods",
|
|
927
|
+
"created-at": "Created At",
|
|
928
|
+
"modified-at": "Modified At",
|
|
929
|
+
"last-verified": "Last Verified",
|
|
930
|
+
"read-at": "Read At"
|
|
931
|
+
},
|
|
932
|
+
"validation": {
|
|
933
|
+
"validation": "Validation",
|
|
934
|
+
"validations": "Validations",
|
|
935
|
+
"regex": "Validation Regex",
|
|
936
|
+
"min-length": "Minimum Length",
|
|
937
|
+
"max-length": "Maximum Length",
|
|
938
|
+
"validity": "Validity",
|
|
939
|
+
"valid-from": "Valid From",
|
|
940
|
+
"valid-to": "Valid To",
|
|
941
|
+
"messages": {
|
|
942
|
+
"required": "This field is required"
|
|
943
|
+
}
|
|
944
|
+
},
|
|
945
|
+
"interface": {
|
|
946
|
+
"settings": "Settings",
|
|
947
|
+
"action": "Action",
|
|
948
|
+
"actions": "Actions",
|
|
949
|
+
"event": "Event",
|
|
950
|
+
"events": "Events",
|
|
951
|
+
"appearance": "Appearance",
|
|
952
|
+
"icon": "Icon",
|
|
953
|
+
"user-interface": "User Interface",
|
|
954
|
+
"basic-info": "Basic Information",
|
|
955
|
+
"additional-info": "Additional Info",
|
|
956
|
+
"filter": {
|
|
957
|
+
"title": "Filters",
|
|
958
|
+
"placeholder": "Add filter here",
|
|
959
|
+
"no-filter-definitions": "No Filter Definitions Found",
|
|
960
|
+
"no-records": {
|
|
961
|
+
"title": "No records found",
|
|
962
|
+
"description": "No records match your search criteria. Try adjusting your search terms."
|
|
963
|
+
}
|
|
964
|
+
},
|
|
965
|
+
"category": {
|
|
966
|
+
"title": "Category",
|
|
967
|
+
"placeholder": "Add category here",
|
|
968
|
+
"no-records": {
|
|
969
|
+
"title": "No Category Definitions Found",
|
|
970
|
+
"description": "No category definitions are available in this category. Create a new category definition to get started."
|
|
971
|
+
},
|
|
972
|
+
"search": {
|
|
973
|
+
"placeholder": "Search categories…",
|
|
974
|
+
"no-records": {
|
|
975
|
+
"title": "No Category Definitions Found",
|
|
976
|
+
"description": "No category definitions match your search criteria. Try adjusting your search terms."
|
|
977
|
+
}
|
|
978
|
+
}
|
|
979
|
+
},
|
|
980
|
+
"selection": {
|
|
981
|
+
"items-selected": "Items Selected",
|
|
982
|
+
"all-items": "All Items",
|
|
983
|
+
"availability": "Availability"
|
|
984
|
+
},
|
|
985
|
+
"navigation": {
|
|
986
|
+
"home": "Home"
|
|
987
|
+
},
|
|
988
|
+
"save-status": {
|
|
989
|
+
"draft": {
|
|
990
|
+
"title": "Draft",
|
|
991
|
+
"description": "Changes have not been saved"
|
|
992
|
+
},
|
|
993
|
+
"saved": {
|
|
994
|
+
"title": "Saved",
|
|
995
|
+
"description": "Changes have been saved"
|
|
996
|
+
},
|
|
997
|
+
"not-saved": {
|
|
998
|
+
"title": "Not Saved",
|
|
999
|
+
"description": "Changes have not been saved"
|
|
1000
|
+
},
|
|
1001
|
+
"error": {
|
|
1002
|
+
"title": "Error",
|
|
1003
|
+
"description": "An error occurred while saving"
|
|
1004
|
+
},
|
|
1005
|
+
"confirmed": {
|
|
1006
|
+
"title": "Confirmed",
|
|
1007
|
+
"description": "Changes have been confirmed"
|
|
1008
|
+
}
|
|
20
1009
|
}
|
|
21
1010
|
}
|
|
22
1011
|
}
|