@acorex/platform-generator 20.3.0-next.9 → 20.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/generators/app-module/files/src/app/app.config.ts.template +63 -13
- package/src/generators/app-module/files/src/app/basic-interceptor.interceptor.ts.template +4 -4
- package/src/generators/app-module/files/src/app/modules/auth/auth-root.module.ts.template +13 -34
- package/src/generators/app-module/files/src/app/{app-version.provider.ts.template → modules/common/app-version.provider.ts.template} +4 -2
- package/src/generators/app-module/files/src/app/modules/common/default-settings.providers.ts.template +38 -0
- package/src/generators/app-module/files/src/app/modules/common/translation-root.module.ts.template +2 -1
- package/src/generators/app-module/files/src/app/modules/layout/entity.loader.ts.template +26 -9
- package/src/generators/app-module/files/src/app/modules/layout/layout-root.module.ts.template +15 -17
- package/src/generators/app-module/files/src/app/modules/layout/menu.provider.ts.template +1 -15
- package/src/generators/app-module/files/src/app/modules/layout/theme-palette.provider.ts.template +57 -0
- package/src/generators/app-module/files/src/app/modules/root/const.ts.template +25 -5
- package/src/generators/app-module/files/src/app/modules/root/menu.keys.ts.template +9 -0
- package/src/generators/app-module/files/src/app/modules/root/menu.provider.ts.template +61 -0
- package/src/generators/app-module/files/src/app/modules/root/mock.data.ts.template +13 -37
- package/src/generators/app-module/files/src/app/modules/root/permission-definition.provider.ts.template +51 -0
- package/src/generators/app-module/files/src/app/modules/root/permission.keys.ts.template +17 -0
- package/src/generators/app-module/files/src/app/modules/root/root.module.ts.template +39 -10
- package/src/generators/app-module/files/src/app/modules/root/sample/index.ts.template +9 -0
- package/src/generators/app-module/files/src/app/modules/root/sample/sample.entity.ts.template +146 -225
- package/src/generators/app-module/files/src/app/modules/root/sample/sample.module.ts.template +13 -5
- package/src/generators/app-module/files/src/app/modules/root/sample/sample.service.ts.template +26 -6
- package/src/generators/app-module/files/src/app/modules/root/sample/sample.types.ts.template +49 -11
- package/src/generators/app-module/files/src/app/modules/root/search-command.provider.ts.template +37 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/acorex.json +285 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/activity-log.json +31 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/application-management.json +112 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/auth.json +38 -3
- package/src/generators/app-module/files/src/assets/i18n/en-US/calendar-management.json +170 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/contact-management.json +182 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/content-management.json +23 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/conversation.json +120 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/customer-management.json +130 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/dashboard.json +231 -5
- package/src/generators/app-module/files/src/assets/i18n/en-US/data-management.json +93 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/document-management.json +321 -22
- package/src/generators/app-module/files/src/assets/i18n/en-US/dynamic-form-designer.json +58 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/extra-properties.json +39 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/form-template-management.json +61 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/general-old.json +800 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/general.json +993 -4
- package/src/generators/app-module/files/src/assets/i18n/en-US/help-desk.json +55 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/human-capital-management.json +144 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/layout-designer.json +19 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/locale-management.json +30 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/location-management.json +46 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/lock-system.json +40 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/log-management.json +29 -21
- package/src/generators/app-module/files/src/assets/i18n/en-US/meeting-management.json +69 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/module.json.template +45 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/notification-management.json +37 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/organization-management.json +59 -138
- package/src/generators/app-module/files/src/assets/i18n/en-US/party-management.json +300 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/platform-management.json +20 -79
- package/src/generators/app-module/files/src/assets/i18n/en-US/project-management.json +157 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/questionnaire.json +118 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/regional.json +41 -8
- package/src/generators/app-module/files/src/assets/i18n/en-US/report-management.json +76 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/security-management.json +42 -3
- package/src/generators/app-module/files/src/assets/i18n/en-US/settings.json +17 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/task-management.json +151 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/text-template-management.json +3 -1
- package/src/generators/app-module/files/src/assets/i18n/en-US/training-management.json +50 -0
- package/src/generators/app-module/files/src/assets/i18n/en-US/workflow-management.json +21 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/acorex.json +285 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/activity-log.json +31 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/application-management.json +112 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/auth.json +74 -38
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/calendar-management.json +170 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/contact-management.json +182 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/content-management.json +23 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/conversation.json +80 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/customer-management.json +130 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/dashboard.json +231 -5
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/data-management.json +93 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/document-management.json +333 -29
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/dynamic-form-designer.json +39 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/extra-properties.json +39 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/form-template-management.json +82 -21
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/general-old.json +800 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/general.json +987 -9
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/global-search.json +5 -5
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/help-desk.json +55 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/human-capital-management.json +144 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/layout-designer.json +19 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/layout.json +14 -14
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/locale-management.json +30 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/location-management.json +46 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/lock-system.json +40 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/log-management.json +99 -47
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/meeting-management.json +69 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/module.json.template +45 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/notification-management.json +59 -22
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/organization-management.json +74 -152
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/party-management.json +300 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/platform-management.json +38 -93
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/project-management.json +157 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/questionnaire.json +118 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/regional.json +71 -38
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/report-management.json +76 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/scheduler-job-management.json +4 -4
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/security-management.json +43 -4
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/settings.json +33 -16
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/task-management.json +151 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/text-template-management.json +8 -5
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/training-management.json +50 -0
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/workflow-management.json +20 -0
- package/src/generators/app-module/files/src/environments/environment.dev.ts.template +1 -0
- package/src/generators/app-module/files/src/environments/environment.ts.template +1 -0
- package/src/generators/app-module/generator.js +3 -0
- package/src/generators/app-module/generator.js.map +1 -1
- package/src/generators/create-module-entity/files/__entityFileName__.entity.ts__tmpl__ +1 -1
- package/src/generators/create-tag-entity/files/tag-__entityFileName__.entity.ts__tmpl__ +1 -1
- package/src/generators/create-widget/files/__fileName__-widget-column.component.ts__tmpl__ +1 -1
- package/src/generators/create-widget/files/__fileName__-widget-edit.component.ts__tmpl__ +1 -1
- package/src/generators/create-widget/files/__fileName__-widget-filter.component.ts__tmpl__ +1 -1
- package/src/generators/create-widget/files/__fileName__-widget-print.component.ts__tmpl__ +1 -1
- package/src/generators/create-widget/files/__fileName__-widget-view.component.ts__tmpl__ +1 -1
- package/src/generators/create-widget/files/__fileName__-widget.config.ts__tmpl__ +2 -2
- package/src/generators/app-module/files/src/app/app.config.api.ts.template +0 -105
- package/src/generators/app-module/files/src/app/app.module.api.ts.template +0 -108
- package/src/generators/app-module/files/src/app/app.module.ts.template +0 -113
- package/src/generators/app-module/files/src/app/modules/auth/application.loader.ts.template +0 -34
- package/src/generators/app-module/files/src/app/modules/auth/auth.strategy.ts.template +0 -93
- package/src/generators/app-module/files/src/app/modules/auth/feature.loader.ts.template +0 -17
- package/src/generators/app-module/files/src/app/modules/auth/permission.loader.ts.template +0 -20
- package/src/generators/app-module/files/src/app/modules/auth/tenant.loader.ts.template +0 -26
- package/src/generators/app-module/files/src/app/modules/root/sample/sample.component.html.template +0 -15
- package/src/generators/app-module/files/src/app/modules/root/sample/sample.component.scss.template +0 -10
- package/src/generators/app-module/files/src/app/modules/root/sample/sample.component.ts.template +0 -20
- package/src/generators/app-module/files/src/assets/i18n/en-US/vehicle-management.json +0 -146
- package/src/generators/app-module/files/src/assets/i18n/fa-IR/vehicle-management.json +0 -144
package/src/generators/app-module/files/src/app/modules/root/sample/sample.module.ts.template
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
|
+
//#region ---- Imports ----
|
|
2
|
+
|
|
1
3
|
import { NgModule } from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
} from './sample.service';
|
|
4
|
+
import { AXMSampleEntityService, AXMSampleEntityServiceImpl } from './sample.service';
|
|
5
|
+
|
|
6
|
+
//#endregion
|
|
6
7
|
|
|
8
|
+
//#region ---- Sample Entity Module ----
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Sample entity module - provides entity service
|
|
12
|
+
*/
|
|
7
13
|
@NgModule({
|
|
8
14
|
imports: [],
|
|
9
15
|
exports: [],
|
|
@@ -15,4 +21,6 @@ import {
|
|
|
15
21
|
},
|
|
16
22
|
],
|
|
17
23
|
})
|
|
18
|
-
export class AXMSampleEntityModule {}
|
|
24
|
+
export class AXMSampleEntityModule {}
|
|
25
|
+
|
|
26
|
+
//#endregion
|
package/src/generators/app-module/files/src/app/modules/root/sample/sample.service.ts.template
CHANGED
|
@@ -1,18 +1,38 @@
|
|
|
1
|
+
//#region ---- Imports ----
|
|
2
|
+
|
|
1
3
|
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
|
2
4
|
import { Injectable } from '@angular/core';
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
|
|
5
|
+
import { RootConfig } from '../const';
|
|
6
|
+
import {
|
|
7
|
+
AXMSampleCreateDto,
|
|
8
|
+
AXMSampleDetailDto,
|
|
9
|
+
AXMSampleListItemDto,
|
|
10
|
+
AXMSampleUpdateDto,
|
|
11
|
+
} from './sample.types';
|
|
12
|
+
|
|
13
|
+
//#endregion
|
|
6
14
|
|
|
15
|
+
//#region ---- Sample Entity Service ----
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Abstract service for Sample entity CRUD operations
|
|
19
|
+
*/
|
|
7
20
|
export abstract class AXMSampleEntityService extends AXMEntityCrudServiceImpl<
|
|
8
21
|
string,
|
|
9
|
-
|
|
10
|
-
|
|
22
|
+
AXMSampleDetailDto,
|
|
23
|
+
AXMSampleListItemDto,
|
|
24
|
+
AXMSampleCreateDto,
|
|
25
|
+
AXMSampleUpdateDto
|
|
11
26
|
> {}
|
|
12
27
|
|
|
28
|
+
/**
|
|
29
|
+
* Implementation of Sample entity service
|
|
30
|
+
*/
|
|
13
31
|
@Injectable()
|
|
14
32
|
export class AXMSampleEntityServiceImpl extends AXMSampleEntityService {
|
|
15
33
|
constructor() {
|
|
16
|
-
super(`${
|
|
34
|
+
super(`${RootConfig.module.name}.${RootConfig.entities.sample.name}`);
|
|
17
35
|
}
|
|
18
36
|
}
|
|
37
|
+
|
|
38
|
+
//#endregion
|
package/src/generators/app-module/files/src/app/modules/root/sample/sample.types.ts.template
CHANGED
|
@@ -1,15 +1,53 @@
|
|
|
1
|
+
//#region ---- Imports ----
|
|
2
|
+
|
|
1
3
|
import { AXPEntityModel } from '@acorex/platform/layout/entity';
|
|
2
4
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
//#endregion
|
|
6
|
+
|
|
7
|
+
//#region ---- Sample Entity Types ----
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Sample entity detail model
|
|
11
|
+
*/
|
|
12
|
+
export interface AXMSampleDetailDto extends AXPEntityModel<string> {
|
|
13
|
+
firstname?: string;
|
|
14
|
+
lastname?: string;
|
|
15
|
+
email?: string;
|
|
16
|
+
phone?: string;
|
|
17
|
+
address?: string;
|
|
9
18
|
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Sample entity list item model
|
|
22
|
+
*/
|
|
23
|
+
export interface AXMSampleListItemDto extends AXPEntityModel<string> {
|
|
24
|
+
firstname?: string;
|
|
25
|
+
lastname?: string;
|
|
26
|
+
email?: string;
|
|
27
|
+
phone?: string;
|
|
15
28
|
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Sample entity create model
|
|
32
|
+
*/
|
|
33
|
+
export interface AXMSampleCreateDto {
|
|
34
|
+
firstname?: string;
|
|
35
|
+
lastname?: string;
|
|
36
|
+
email?: string;
|
|
37
|
+
phone?: string;
|
|
38
|
+
address?: string;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Sample entity update model
|
|
43
|
+
*/
|
|
44
|
+
export interface AXMSampleUpdateDto {
|
|
45
|
+
id: string;
|
|
46
|
+
firstname?: string;
|
|
47
|
+
lastname?: string;
|
|
48
|
+
email?: string;
|
|
49
|
+
phone?: string;
|
|
50
|
+
address?: string;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
//#endregion
|
package/src/generators/app-module/files/src/app/modules/root/search-command.provider.ts.template
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
//#region ---- Imports ----
|
|
2
|
+
|
|
3
|
+
import { AXPSearchCommandProvider, AXPSearchResult } from '@acorex/platform/common';
|
|
4
|
+
import { RootConfig } from './const';
|
|
5
|
+
|
|
6
|
+
//#endregion
|
|
7
|
+
|
|
8
|
+
//#region ---- Search Command Provider ----
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Search command provider for <%= className %> module
|
|
12
|
+
* Provides search commands for global search
|
|
13
|
+
*/
|
|
14
|
+
export class <%= className %>ModuleSearchCommandProvider extends AXPSearchCommandProvider {
|
|
15
|
+
|
|
16
|
+
//#region ---- Commands ----
|
|
17
|
+
|
|
18
|
+
commands: AXPSearchResult[] = [
|
|
19
|
+
{
|
|
20
|
+
group: 'command',
|
|
21
|
+
title: 'New Sample',
|
|
22
|
+
icon: RootConfig.entities.sample.icon,
|
|
23
|
+
description: 'Create a new sample record',
|
|
24
|
+
command: {
|
|
25
|
+
name: 'create-entity',
|
|
26
|
+
options: {
|
|
27
|
+
entity: `${RootConfig.module.name}.${RootConfig.entities.sample.name}`,
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
//#endregion
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
//#endregion
|
|
37
|
+
|
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
{
|
|
2
|
+
"common": {
|
|
3
|
+
"actions": {
|
|
4
|
+
"cancel": "Cancel",
|
|
5
|
+
"canceled": "Canceled",
|
|
6
|
+
"next": "Next",
|
|
7
|
+
"prev": "Previous",
|
|
8
|
+
"retry": "Retry",
|
|
9
|
+
"uploading": "Uploading",
|
|
10
|
+
"search": "Search"
|
|
11
|
+
},
|
|
12
|
+
"form": {
|
|
13
|
+
"title": "Title",
|
|
14
|
+
"name": "Name",
|
|
15
|
+
"size": "Size",
|
|
16
|
+
"color": "Color",
|
|
17
|
+
"display": "Display",
|
|
18
|
+
"value": "Value"
|
|
19
|
+
},
|
|
20
|
+
"status": {
|
|
21
|
+
"loading": "loading",
|
|
22
|
+
"failed": "Failed",
|
|
23
|
+
"completed": "Completed",
|
|
24
|
+
"processing": "Processing"
|
|
25
|
+
},
|
|
26
|
+
"general": {
|
|
27
|
+
"custom": "Custom",
|
|
28
|
+
"and": "and",
|
|
29
|
+
"between": "between",
|
|
30
|
+
"every": "Every",
|
|
31
|
+
"no-result-found": "No results found",
|
|
32
|
+
"more-items": "{{ number }} more",
|
|
33
|
+
"no-record": "No record",
|
|
34
|
+
"no-data-yet": "No Data Loaded Yet."
|
|
35
|
+
},
|
|
36
|
+
"notifications": {
|
|
37
|
+
"more": "And {{ number }} more..."
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"error": {
|
|
41
|
+
"message": "Error: {{ message }}"
|
|
42
|
+
},
|
|
43
|
+
"validation": {
|
|
44
|
+
"messages": {
|
|
45
|
+
"title": "Please fix the following error(s):",
|
|
46
|
+
"required": "{{ title }} is required",
|
|
47
|
+
"email": "Please enter a valid email address {{ title }}!",
|
|
48
|
+
"phone": "Please enter a valid phone number!",
|
|
49
|
+
"invalid-rull-name": "Invalid rule name: <b>\"{{ name }}\"</b>"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"password-strength": {
|
|
53
|
+
"rules": {
|
|
54
|
+
"at-least-8-characters": "At least 8 characters",
|
|
55
|
+
"english-upper-case-letter": "English upper case letter",
|
|
56
|
+
"english-lower-case-letter": "English lower case letter",
|
|
57
|
+
"special-character": "Special character(%,$,...)",
|
|
58
|
+
"digits": "Digits (0-9)"
|
|
59
|
+
},
|
|
60
|
+
"levels": {
|
|
61
|
+
"fragile": "Fragile",
|
|
62
|
+
"weak": "Weak",
|
|
63
|
+
"good": "Good",
|
|
64
|
+
"strong": "Strong",
|
|
65
|
+
"unbreakable": "Unbreakable"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"scheduler": {
|
|
69
|
+
"time-units": {
|
|
70
|
+
"select-second": "select second(s)",
|
|
71
|
+
"select-minute": "select minute(s)",
|
|
72
|
+
"select-hour": "select hour(s)",
|
|
73
|
+
"select-day": "select day(s)",
|
|
74
|
+
"select-month": "select month(s)",
|
|
75
|
+
"select-year": "select year(s)"
|
|
76
|
+
},
|
|
77
|
+
"starting-at": {
|
|
78
|
+
"second": "second(s) starting at second",
|
|
79
|
+
"minute": "minute(s) starting at minute",
|
|
80
|
+
"hour": "hour(s) starting at hour",
|
|
81
|
+
"day": "day(s) starting on",
|
|
82
|
+
"month": "month(s) starting at month",
|
|
83
|
+
"year": "year(s) starting at year"
|
|
84
|
+
},
|
|
85
|
+
"specific": {
|
|
86
|
+
"second": "Specific second(s) (choose one or many)",
|
|
87
|
+
"minute": "Specific minute(s) (choose one or many)",
|
|
88
|
+
"hour": "Specific hour(s) (choose one or many)",
|
|
89
|
+
"day-of-month": "Specific day(s) of month (choose one or many)",
|
|
90
|
+
"day-of-week": "Specific day(s) of week (choose one or many)",
|
|
91
|
+
"month": "Specific month(s) (choose one or many)",
|
|
92
|
+
"year": "Specific year(s) (choose one or many)"
|
|
93
|
+
},
|
|
94
|
+
"base-on-week": "Base on week",
|
|
95
|
+
"base-on-month": "Base on Month",
|
|
96
|
+
"of-the-month": "of the month",
|
|
97
|
+
"on-the": "On the",
|
|
98
|
+
"on-the-last": "On the last",
|
|
99
|
+
"on-the-last-day-of-the-month": "On the Last day of the month",
|
|
100
|
+
"day-before-the-end-of-the-month": "day(s) before the end of the month",
|
|
101
|
+
"ordinal-suffix": "st",
|
|
102
|
+
"ordinal-suffix-of-month": "st of the month"
|
|
103
|
+
},
|
|
104
|
+
"dateTime": {
|
|
105
|
+
"set": "Set",
|
|
106
|
+
"today": "Today",
|
|
107
|
+
"now": "Now",
|
|
108
|
+
"date": "Date",
|
|
109
|
+
"time": "Time",
|
|
110
|
+
"units": {
|
|
111
|
+
"millisecond": "millisecond",
|
|
112
|
+
"second": "Second",
|
|
113
|
+
"seconds": "Seconds",
|
|
114
|
+
"minute": "Minute",
|
|
115
|
+
"minutes": "Minutes",
|
|
116
|
+
"hour": "Hour",
|
|
117
|
+
"hours": "Hours",
|
|
118
|
+
"day": "Day",
|
|
119
|
+
"days": "Days",
|
|
120
|
+
"week": "Week",
|
|
121
|
+
"month": "Month",
|
|
122
|
+
"months": "Months",
|
|
123
|
+
"year": "Year",
|
|
124
|
+
"years": "Years"
|
|
125
|
+
},
|
|
126
|
+
"weekdays": {
|
|
127
|
+
"short": { "0": "Sun", "1": "Mon", "2": "Tue", "3": "Wed", "4": "Thu", "5": "Fri", "6": "Sat" },
|
|
128
|
+
"long": {
|
|
129
|
+
"0": "Sunday",
|
|
130
|
+
"1": "Monday",
|
|
131
|
+
"2": "Tuesday",
|
|
132
|
+
"3": "Wednesday",
|
|
133
|
+
"4": "Thursday",
|
|
134
|
+
"5": "Friday",
|
|
135
|
+
"6": "Saturday"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"months": {
|
|
139
|
+
"gregorian": {
|
|
140
|
+
"short": {
|
|
141
|
+
"0": "Jan",
|
|
142
|
+
"1": "Feb",
|
|
143
|
+
"2": "Mar",
|
|
144
|
+
"3": "Apr",
|
|
145
|
+
"4": "May",
|
|
146
|
+
"5": "Jun",
|
|
147
|
+
"6": "Jul",
|
|
148
|
+
"7": "Aug",
|
|
149
|
+
"8": "Sep",
|
|
150
|
+
"9": "Oct",
|
|
151
|
+
"10": "Nov",
|
|
152
|
+
"11": "Dec"
|
|
153
|
+
},
|
|
154
|
+
"long": {
|
|
155
|
+
"0": "January",
|
|
156
|
+
"1": "February",
|
|
157
|
+
"2": "March",
|
|
158
|
+
"3": "April",
|
|
159
|
+
"4": "May",
|
|
160
|
+
"5": "June",
|
|
161
|
+
"6": "July",
|
|
162
|
+
"7": "August",
|
|
163
|
+
"8": "September",
|
|
164
|
+
"9": "October",
|
|
165
|
+
"10": "November",
|
|
166
|
+
"11": "December"
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
"solar-hijri": {
|
|
170
|
+
"short": {
|
|
171
|
+
"0": "Far",
|
|
172
|
+
"1": "Ordi",
|
|
173
|
+
"2": "Khor",
|
|
174
|
+
"3": "Tir",
|
|
175
|
+
"4": "Mordad",
|
|
176
|
+
"5": "Shah",
|
|
177
|
+
"6": "Mehr",
|
|
178
|
+
"7": "Aban",
|
|
179
|
+
"8": "Azar",
|
|
180
|
+
"9": "Dey",
|
|
181
|
+
"10": "Bah",
|
|
182
|
+
"11": "Esf"
|
|
183
|
+
},
|
|
184
|
+
"long": {
|
|
185
|
+
"0": "Farvardin",
|
|
186
|
+
"1": "Ordibehesht",
|
|
187
|
+
"2": "Khordad",
|
|
188
|
+
"3": "Tir",
|
|
189
|
+
"4": "Mordad",
|
|
190
|
+
"5": "Shahrivar",
|
|
191
|
+
"6": "Mehr",
|
|
192
|
+
"7": "Aban",
|
|
193
|
+
"8": "Azar",
|
|
194
|
+
"9": "Dey",
|
|
195
|
+
"10": "Bahman",
|
|
196
|
+
"11": "Esfand"
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"day-period": {
|
|
201
|
+
"am": "am",
|
|
202
|
+
"pm": "pm",
|
|
203
|
+
"m": "m",
|
|
204
|
+
"a": "a",
|
|
205
|
+
"p": "p"
|
|
206
|
+
},
|
|
207
|
+
"duration": {
|
|
208
|
+
"format-second": "{0} second(s)",
|
|
209
|
+
"format-minute": "{0} minute(s)",
|
|
210
|
+
"daily": "Daily",
|
|
211
|
+
"daily-timeline": "Daily Timeline",
|
|
212
|
+
"multi-day-timeline": "Multi-Day Timeline",
|
|
213
|
+
"weekly": "Weekly",
|
|
214
|
+
"weekly-timeline": "Weekly Timeline",
|
|
215
|
+
"monthly": "Monthly",
|
|
216
|
+
"monthly-timeline": "Monthly Timeline",
|
|
217
|
+
"yearly": "Yearly",
|
|
218
|
+
"yearly-timeline": "Yearly Timeline",
|
|
219
|
+
"all-day": "All Day",
|
|
220
|
+
"agenda": "Agenda"
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
"selectbox": {
|
|
224
|
+
"popover": {
|
|
225
|
+
"title": "Choose an items..."
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
"datapager": {
|
|
229
|
+
"info": {
|
|
230
|
+
"text": "[page] of [totalPages] pages ([totalItems] items)"
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
"uploader": {
|
|
234
|
+
"zone": {
|
|
235
|
+
"text": "Drop files to upload them",
|
|
236
|
+
"drag": "Drag & Drop or ",
|
|
237
|
+
"choose": "Choose File",
|
|
238
|
+
"to-upload": " to Upload",
|
|
239
|
+
"uploadFile": "Upload File",
|
|
240
|
+
"uploadFiles": "Upload Files"
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"comment": {
|
|
244
|
+
"replies": "Replies",
|
|
245
|
+
"reply": "Reply",
|
|
246
|
+
"view": "View"
|
|
247
|
+
},
|
|
248
|
+
"paint": {
|
|
249
|
+
"tools": {
|
|
250
|
+
"pen": "Pen",
|
|
251
|
+
"highlight": "Highlight",
|
|
252
|
+
"eraser": "Eraser"
|
|
253
|
+
},
|
|
254
|
+
"actions": {
|
|
255
|
+
"reset": "Reset"
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
"image-editor": {
|
|
259
|
+
"crop": "Crop",
|
|
260
|
+
"undo": "Undo",
|
|
261
|
+
"redo": "Redo",
|
|
262
|
+
"rotate-left": "Rotate Left",
|
|
263
|
+
"rotate-right": "Rotate Right",
|
|
264
|
+
"rotate": "Rotate"
|
|
265
|
+
},
|
|
266
|
+
"time": {
|
|
267
|
+
"left": "left",
|
|
268
|
+
"ago": "ago",
|
|
269
|
+
"seconds": "seconds",
|
|
270
|
+
"minute": "minute",
|
|
271
|
+
"minutes": "minutes",
|
|
272
|
+
"hour": "hour",
|
|
273
|
+
"hours": "hours",
|
|
274
|
+
"day": "day",
|
|
275
|
+
"days": "days",
|
|
276
|
+
"month": "month",
|
|
277
|
+
"months": "months",
|
|
278
|
+
"year": "year",
|
|
279
|
+
"years": "years",
|
|
280
|
+
"an-hour": "an hour",
|
|
281
|
+
"a-day": "a day",
|
|
282
|
+
"a-month": "a month",
|
|
283
|
+
"a-year": "a year"
|
|
284
|
+
}
|
|
285
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Activity Log",
|
|
3
|
+
"created-at": "Created At",
|
|
4
|
+
"created-by": "Created By",
|
|
5
|
+
"modified-at": "Modified At",
|
|
6
|
+
"modified-by": "Modified By",
|
|
7
|
+
"deleted-at": "Deleted At",
|
|
8
|
+
"deleted-by": "Deleted By",
|
|
9
|
+
"state-message": {
|
|
10
|
+
"no-history": {
|
|
11
|
+
"title": "No Activity",
|
|
12
|
+
"description": "No activity has been recorded."
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"created-by-title": "Created by {{user}} on {{date}}",
|
|
16
|
+
"updated-by-title": "Modified by {{user}} on {{date}}",
|
|
17
|
+
"deleted-by-title": "Deleted by {{user}} on {{date}}",
|
|
18
|
+
"actions": {
|
|
19
|
+
"view-history": "View History",
|
|
20
|
+
"rename": "Rename",
|
|
21
|
+
"restore": "Restore",
|
|
22
|
+
"make-copy": "Make a Copy",
|
|
23
|
+
"compare-changes": "Compare Changes",
|
|
24
|
+
"compare-records": "Compare Records"
|
|
25
|
+
},
|
|
26
|
+
"compare-view": {
|
|
27
|
+
"show-only-differences": "Show Only Differences",
|
|
28
|
+
"differences-found": "Differences Found",
|
|
29
|
+
"values-match": "Values Match"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"module-name": "Application Management",
|
|
3
|
+
"application": {
|
|
4
|
+
"individual-title": "Application",
|
|
5
|
+
"plural-title": "Applications",
|
|
6
|
+
"title": "Title",
|
|
7
|
+
"description": "Description",
|
|
8
|
+
"edition": "Edition",
|
|
9
|
+
"basic-info": "Basic Information",
|
|
10
|
+
"edition-assignment": "Edition Assignment"
|
|
11
|
+
},
|
|
12
|
+
"module": {
|
|
13
|
+
"individual-title": "Module",
|
|
14
|
+
"plural-title": "Modules",
|
|
15
|
+
"title": "Title",
|
|
16
|
+
"description": "Description",
|
|
17
|
+
"feature": "Feature",
|
|
18
|
+
"basic-info": "Basic Information",
|
|
19
|
+
"feature-assignment": "Feature Assignment"
|
|
20
|
+
},
|
|
21
|
+
"edition": {
|
|
22
|
+
"individual-title": "Edition",
|
|
23
|
+
"plural-title": "Editions",
|
|
24
|
+
"title": "Title",
|
|
25
|
+
"description": "Description",
|
|
26
|
+
"module": "Module",
|
|
27
|
+
"basic-info": "Basic Information",
|
|
28
|
+
"module-assignment": "Module Assignment"
|
|
29
|
+
},
|
|
30
|
+
"feature": {
|
|
31
|
+
"individual-title": "Feature",
|
|
32
|
+
"plural-title": "Features",
|
|
33
|
+
"title": "Title",
|
|
34
|
+
"description": "Description",
|
|
35
|
+
"feature": "Feature",
|
|
36
|
+
"basic-info": "Basic Information",
|
|
37
|
+
"feature-assignment": "Feature Assignment"
|
|
38
|
+
},
|
|
39
|
+
"menu-management": {
|
|
40
|
+
"title": "Menu Management",
|
|
41
|
+
"description": "Manage application menus and customize menu structure",
|
|
42
|
+
"user": {
|
|
43
|
+
"title": "My Menus"
|
|
44
|
+
},
|
|
45
|
+
"tenant": {
|
|
46
|
+
"title": "Tenant Menus"
|
|
47
|
+
},
|
|
48
|
+
"info-banner": "Drag and drop menu items to reorder them. You can hide built-in menus or create custom menu items.",
|
|
49
|
+
"badge": {
|
|
50
|
+
"built-in": "Built-in",
|
|
51
|
+
"custom": "Custom",
|
|
52
|
+
"hidden": "Hidden",
|
|
53
|
+
"divider": "Divider"
|
|
54
|
+
},
|
|
55
|
+
"actions": {
|
|
56
|
+
"add-root": "Add Root Menu",
|
|
57
|
+
"add-child": "Add Child",
|
|
58
|
+
"show": "Show",
|
|
59
|
+
"hide": "Hide",
|
|
60
|
+
"reset": "Reset All"
|
|
61
|
+
},
|
|
62
|
+
"fields": {
|
|
63
|
+
"name": "Name",
|
|
64
|
+
"text": "Text",
|
|
65
|
+
"icon": "Icon",
|
|
66
|
+
"path": "Path",
|
|
67
|
+
"priority": "Priority",
|
|
68
|
+
"description": "Description"
|
|
69
|
+
},
|
|
70
|
+
"add-dialog": {
|
|
71
|
+
"title": "Add Menu Item"
|
|
72
|
+
},
|
|
73
|
+
"edit-dialog": {
|
|
74
|
+
"title": "Edit Menu Item"
|
|
75
|
+
},
|
|
76
|
+
"delete": {
|
|
77
|
+
"message": "Are you sure you want to delete this menu item?"
|
|
78
|
+
},
|
|
79
|
+
"reset": {
|
|
80
|
+
"title": "Reset Customizations",
|
|
81
|
+
"message": "Are you sure you want to reset all menu customizations? This action cannot be undone."
|
|
82
|
+
},
|
|
83
|
+
"messages": {
|
|
84
|
+
"load-error": "Failed to load menu items",
|
|
85
|
+
"save-success": "Menu item saved successfully",
|
|
86
|
+
"save-error": "Failed to save menu item",
|
|
87
|
+
"delete-success": "Menu item deleted successfully",
|
|
88
|
+
"delete-error": "Failed to delete menu item",
|
|
89
|
+
"show-success": "Menu item shown successfully",
|
|
90
|
+
"show-error": "Failed to show menu item",
|
|
91
|
+
"hide-success": "Menu item hidden successfully",
|
|
92
|
+
"hide-error": "Failed to hide menu item",
|
|
93
|
+
"reorder-success": "Menu items reordered successfully",
|
|
94
|
+
"reorder-error": "Failed to reorder menu items",
|
|
95
|
+
"reset-success": "Customizations reset successfully",
|
|
96
|
+
"reset-error": "Failed to reset customizations",
|
|
97
|
+
"no-name-info": "This menu item doesn't have a name and cannot be customized"
|
|
98
|
+
},
|
|
99
|
+
"loading": {
|
|
100
|
+
"title": "Loading menu items...",
|
|
101
|
+
"description": "Please wait while we load the menu structure"
|
|
102
|
+
},
|
|
103
|
+
"error": {
|
|
104
|
+
"title": "Failed to load menus",
|
|
105
|
+
"description": "An error occurred while loading menu items"
|
|
106
|
+
},
|
|
107
|
+
"empty-state": {
|
|
108
|
+
"title": "No menu items found",
|
|
109
|
+
"description": "Start by adding a new menu item or wait for providers to load"
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
@@ -4,8 +4,6 @@
|
|
|
4
4
|
"confirm-password": "Confirm Password",
|
|
5
5
|
"username": "Username",
|
|
6
6
|
"username-email": "Username / Email",
|
|
7
|
-
"firstname": "First Name",
|
|
8
|
-
"lastname": "Last Name",
|
|
9
7
|
"register": "Register",
|
|
10
8
|
"mobile": "Mobile",
|
|
11
9
|
"processing": "Processing...",
|
|
@@ -16,7 +14,7 @@
|
|
|
16
14
|
"edit": "Edit Profile",
|
|
17
15
|
"logout": "Logout",
|
|
18
16
|
"settings": "Settings",
|
|
19
|
-
"sessions": "Sessions"
|
|
17
|
+
"sessions": "Active Sessions"
|
|
20
18
|
},
|
|
21
19
|
"signin": {
|
|
22
20
|
"title": "Sign In",
|
|
@@ -34,6 +32,29 @@
|
|
|
34
32
|
"keepLoggedIn": "Remember me",
|
|
35
33
|
"hasAccount": "Already have an account?"
|
|
36
34
|
},
|
|
35
|
+
"authentication": {
|
|
36
|
+
"with-google": "Continue with Google",
|
|
37
|
+
"with-apple": "Continue with Apple",
|
|
38
|
+
"with-microsoft": "Continue with Microsoft"
|
|
39
|
+
},
|
|
40
|
+
"welcome": {
|
|
41
|
+
"message": "Welcome"
|
|
42
|
+
},
|
|
43
|
+
"registration": {
|
|
44
|
+
"title": "User Registration",
|
|
45
|
+
"message": "Please fill in the form below to create your account",
|
|
46
|
+
"first-name-label": "First Name",
|
|
47
|
+
"first-name-placeholder": "Enter your first name",
|
|
48
|
+
"last-name-label": "Last Name",
|
|
49
|
+
"last-name-placeholder": "Enter your last name",
|
|
50
|
+
"email-label": "Email Address",
|
|
51
|
+
"email-placeholder": "Enter your email address",
|
|
52
|
+
"password-label": "Password",
|
|
53
|
+
"password-placeholder": "Enter your password",
|
|
54
|
+
"confirm-password-label": "Confirm Password",
|
|
55
|
+
"confirm-password-placeholder": "Confirm your password",
|
|
56
|
+
"submit-text": "Create Account"
|
|
57
|
+
},
|
|
37
58
|
"tenant-chooser": {
|
|
38
59
|
"description": "Please select your company and continue",
|
|
39
60
|
"footer": "Did you change your mind?"
|
|
@@ -150,5 +171,19 @@
|
|
|
150
171
|
}
|
|
151
172
|
}
|
|
152
173
|
}
|
|
174
|
+
},
|
|
175
|
+
"state-message": {
|
|
176
|
+
"loading": {
|
|
177
|
+
"title": "Authenticating",
|
|
178
|
+
"description": "Please wait while we complete your authentication..."
|
|
179
|
+
},
|
|
180
|
+
"error": {
|
|
181
|
+
"title": "Authentication Failed",
|
|
182
|
+
"description": "We couldn't complete your authentication"
|
|
183
|
+
},
|
|
184
|
+
"success": {
|
|
185
|
+
"title": "Authentication Successful!",
|
|
186
|
+
"description": "Redirecting you to your dashboard..."
|
|
187
|
+
}
|
|
153
188
|
}
|
|
154
189
|
}
|