@asaleh37/ui-base 1.2.3 → 1.2.5
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/dist/index.d.ts +20 -13
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +15 -3
- package/src/components/App.tsx +1 -1
- package/src/components/BaseApp.tsx +2 -19
- package/src/components/administration/admin/OrgMemberRoleForm.tsx +83 -0
- package/src/components/administration/admin/OrganizationApplicationModuleGrid.tsx +131 -0
- package/src/components/administration/admin/OrganizationGrid.tsx +165 -0
- package/src/components/administration/admin/OrganizationMemberGrid.tsx +176 -0
- package/src/components/administration/admin/OrganizationMemberRoleGrid.tsx +87 -0
- package/src/components/{admin → administration/admin}/OrganizationRankGrid.tsx +49 -19
- package/src/components/administration/admin/OrganizationUnitGrid.tsx +139 -0
- package/src/components/administration/admin/OrganizationUnitTypeGrid.tsx +121 -0
- package/src/components/administration/admin/PersonGrid.tsx +195 -0
- package/src/components/{admin → administration/admin}/RoleAuthoritiesForm.tsx +30 -11
- package/src/components/administration/admin/SystemApplicationAuthorityGrid.tsx +142 -0
- package/src/components/administration/admin/SystemApplicationGrid.tsx +161 -0
- package/src/components/administration/admin/SystemApplicationModuleGrid.tsx +109 -0
- package/src/components/administration/admin/SystemApplicationRoleAuthorityGrid.tsx +67 -0
- package/src/components/administration/admin/SystemApplicationRoleGrid.tsx +130 -0
- package/src/components/administration/dev/BluePrintGrid.tsx +129 -0
- package/src/components/administration/dev/DashboardGrid.tsx +173 -0
- package/src/components/administration/dev/DashboardWidgetGrid.tsx +164 -0
- package/src/components/administration/dev/DataQueryGrid.tsx +206 -0
- package/src/components/administration/dev/DataQueryParameterGrid.tsx +191 -0
- package/src/components/administration/dev/DataQueryParametersForm.tsx +84 -0
- package/src/components/administration/dev/DatasourceConnectionGrid.tsx +150 -0
- package/src/components/administration/dev/EntityParameterGrid.tsx +279 -0
- package/src/components/administration/dev/LookupGrid.tsx +131 -0
- package/src/components/administration/dev/MailAttachmentGrid.tsx +155 -0
- package/src/components/administration/dev/MailBodyGrid.tsx +215 -0
- package/src/components/{admin → administration/dev}/MailNotificationQueueGrid.tsx +114 -26
- package/src/components/administration/dev/MailRecipientGrid.tsx +169 -0
- package/src/components/administration/dev/MailSenderConfigGrid.tsx +478 -0
- package/src/components/administration/dev/MailTemplateGrid.tsx +388 -0
- package/src/components/administration/dev/ReportGrid.tsx +504 -0
- package/src/components/administration/dev/ReportParameterGrid.tsx +186 -0
- package/src/components/administration/dev/ReportParametersForm.tsx +84 -0
- package/src/components/administration/dev/WidgetGrid.tsx +431 -0
- package/src/components/administration/dev/WorkflowDocumentActionGrid.tsx +264 -0
- package/src/components/administration/dev/WorkflowDocumentActionHistoryGrid.tsx +172 -0
- package/src/components/administration/dev/WorkflowDocumentActionMailGrid.tsx +161 -0
- package/src/components/administration/dev/WorkflowDocumentGrid.tsx +377 -0
- package/src/components/{admin → administration/dev}/WorkflowDocumentMailLogGrid.tsx +87 -10
- package/src/components/administration/dev/WorkflowDocumentStatusGrid.tsx +243 -0
- package/src/components/common/ChangeOrgForm.tsx +81 -0
- package/src/components/common/Home.tsx +28 -22
- package/src/components/common/LoadingMask.tsx +9 -4
- package/src/components/common/Login.tsx +9 -13
- package/src/components/templates/DataEntryTemplates/DataEntryTypes.ts +30 -6
- package/src/components/templates/DataEntryTemplates/DataEntryUtil.ts +46 -5
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementField.tsx +64 -5
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementGroup.tsx +11 -3
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/CheckBox.tsx +2 -2
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/ComboBox.tsx +1 -2
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/HtmlEditor.tsx +144 -0
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/SystemLookupCombobox.tsx +55 -0
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/TemplateTextField.tsx +9 -1
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/TemplateForm.tsx +45 -5
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/DataGridColumnsUtil.tsx +8 -7
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGrid.tsx +38 -10
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGridRecordAction.tsx +4 -1
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGridTopBar.tsx +3 -4
- package/src/components/templates/TransferList.tsx +16 -6
- package/src/components/templates/index.ts +0 -2
- package/src/components/templates/report/ExcelReportViewer.tsx +65 -0
- package/src/components/templates/report/ReportViewer.tsx +382 -0
- package/src/components/templates/visuals/DashboardRouteView.tsx +9 -0
- package/src/components/templates/visuals/DashboardViewer.tsx +148 -0
- package/src/components/templates/visuals/WidgetViewer.tsx +198 -0
- package/src/components/templates/visuals/charts/TemplateBarChart.tsx +9 -2
- package/src/components/templates/visuals/charts/TemplateDataCard.tsx +6 -31
- package/src/components/templates/visuals/charts/TemplateGauge.tsx +8 -3
- package/src/components/templates/visuals/charts/TemplateLineChart.tsx +8 -2
- package/src/components/templates/visuals/charts/TemplateLineProgress.tsx +5 -3
- package/src/components/templates/visuals/charts/TemplatePieChart.tsx +1 -2
- package/src/components/templates/workflow/WorkflowDocumentPanel.tsx +581 -0
- package/src/components/templates/workflow/WorkflowDocumentTimeLine.tsx +134 -0
- package/src/hooks/UseSession.tsx +3 -7
- package/src/hooks/UseWindow.tsx +2 -1
- package/src/hooks/useAxios.tsx +9 -27
- package/src/hooks/useLookupGridColumn.tsx +35 -0
- package/src/layout/Layout.tsx +2 -46
- package/src/layout/MainContent.tsx +60 -7
- package/src/layout/MobileDrawer.tsx +5 -5
- package/src/layout/NavigationTree.tsx +0 -1
- package/src/layout/RouteWrapper.tsx +36 -0
- package/src/layout/SideBar.tsx +15 -10
- package/src/layout/TopBar.tsx +139 -71
- package/src/locales/arabic/adminLocalsAr.json +81 -344
- package/src/locales/arabic/common.json +11 -1
- package/src/locales/arabic/devLocalsAr.json +280 -0
- package/src/locales/arabic/index.ts +2 -0
- package/src/locales/english/adminLocalsEn.json +86 -346
- package/src/locales/english/common.json +11 -1
- package/src/locales/english/devLocalsEn.json +281 -0
- package/src/locales/english/index.ts +3 -0
- package/src/main.tsx +5 -6
- package/src/navigationItems/Administration/adminNavigationItems.tsx +65 -99
- package/src/navigationItems/Administration/index.tsx +10 -65
- package/src/redux/features/administration/AdministrationStoresMetaData.ts +45 -12
- package/src/redux/features/common/AppLayoutSlice.ts +0 -8
- package/src/redux/features/common/CommonStoreSlice.ts +4 -0
- package/src/redux/features/common/SideBarSlice.ts +29 -0
- package/src/redux/features/common/UserSessionSlice.ts +15 -23
- package/src/redux/store.ts +1 -1
- package/src/routes/administration/adminRoutes.tsx +41 -222
- package/src/routes/administration/devRoutes.tsx +90 -0
- package/src/routes/administration/index.ts +5 -1
- package/src/routes/index.ts +1 -0
- package/src/styles/index.css +3 -3
- package/src/util/AppUtils.ts +5 -0
- package/vite.config.ts +14 -0
- package/src/components/admin/AttachmentGrid.tsx +0 -116
- package/src/components/admin/AuthorityGrid.tsx +0 -88
- package/src/components/admin/BluePrintGrid.tsx +0 -55
- package/src/components/admin/BluePrintPageGrid.tsx +0 -85
- package/src/components/admin/BluePrintPointGrid.tsx +0 -85
- package/src/components/admin/DashboardGrid.tsx +0 -95
- package/src/components/admin/DashboardWidgetGrid.tsx +0 -75
- package/src/components/admin/DataQueryGrid.tsx +0 -75
- package/src/components/admin/DataQueryParameterGrid.tsx +0 -98
- package/src/components/admin/DatasourceConnectionGrid.tsx +0 -98
- package/src/components/admin/EmployeeGrid.tsx +0 -105
- package/src/components/admin/EntityParameterGrid.tsx +0 -125
- package/src/components/admin/ExcelUploaderDetailGrid.tsx +0 -78
- package/src/components/admin/ExcelUploaderHeaderGrid.tsx +0 -78
- package/src/components/admin/LookupGrid.tsx +0 -95
- package/src/components/admin/MailAttachmentGrid.tsx +0 -65
- package/src/components/admin/MailBodyGrid.tsx +0 -105
- package/src/components/admin/MailRecipientGrid.tsx +0 -75
- package/src/components/admin/MailTemplateGrid.tsx +0 -145
- package/src/components/admin/NewTableGrid.tsx +0 -65
- package/src/components/admin/NotificationGrid.tsx +0 -115
- package/src/components/admin/NotificationQueueGrid.tsx +0 -125
- package/src/components/admin/OrganizationApplicationGrid.tsx +0 -81
- package/src/components/admin/OrganizationGrid.tsx +0 -65
- package/src/components/admin/OrganizationUnitGrid.tsx +0 -85
- package/src/components/admin/OrganizationUserGrid.tsx +0 -75
- package/src/components/admin/OrganizationUserRoleGrid.tsx +0 -98
- package/src/components/admin/ReportGrid.tsx +0 -155
- package/src/components/admin/ReportParameterGrid.tsx +0 -95
- package/src/components/admin/RoleAuthorityGrid.tsx +0 -65
- package/src/components/admin/RoleGrid.tsx +0 -132
- package/src/components/admin/UserAccountGrid.tsx +0 -65
- package/src/components/admin/UserRequestGrid.tsx +0 -145
- package/src/components/admin/WidgetGrid.tsx +0 -175
- package/src/components/admin/WorkflowDocumentActionGrid.tsx +0 -111
- package/src/components/admin/WorkflowDocumentActionHistoryGrid.tsx +0 -111
- package/src/components/admin/WorkflowDocumentActionMailGrid.tsx +0 -71
- package/src/components/admin/WorkflowDocumentGrid.tsx +0 -185
- package/src/components/admin/WorkflowDocumentStatusGrid.tsx +0 -121
- package/src/components/templates/visuals/TemplateDashboard.tsx +0 -126
- package/src/redux/features/CounterSlice.tsx +0 -13
|
@@ -1,356 +1,96 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"SYSTEM_MANAGEMENT": "System Management",
|
|
4
|
-
"SECURITY_ADMINISTRATION": "Security",
|
|
5
|
-
"DEVELOPMENT_TOOLS": "Development Tools",
|
|
6
|
-
"SYSTEM_MONITORING": "System Follow up",
|
|
7
|
-
"ATTACHMENT_SINGULAR": "attachment",
|
|
8
|
-
"ATTACHMENT_PLURAL": "attachments",
|
|
9
|
-
"ATTACHMENT_ATTACHMENT_NUMBER": "Attachment number",
|
|
10
|
-
"ATTACHMENT_ATTACHMENT_SIZE": "Attachment size",
|
|
11
|
-
"ATTACHMENT_ATTACHMENT_TYPE": "Attachment type",
|
|
12
|
-
"ATTACHMENT_CATEGORY": "Category",
|
|
13
|
-
"ATTACHMENT_DOC_TYPE": "Doc type",
|
|
14
|
-
"ATTACHMENT_FILE_NAME": "File name",
|
|
15
|
-
"ATTACHMENT_REF_KEY": "Ref key",
|
|
16
|
-
"ATTACHMENT_REMARK": "Remark",
|
|
17
|
-
"AUTHORITY_SINGULAR": "Authority",
|
|
18
|
-
"AUTHORITY_PLURAL": "Authorities",
|
|
19
|
-
"AUTHORITY_AUTHORITY_CODE": "Authority code",
|
|
20
|
-
"AUTHORITY_AUTHORITY_DESCRIPTION": "Authority description",
|
|
21
|
-
"AUTHORITY_AUTHORITY_NAME": "Authority name",
|
|
22
|
-
"AUTHORITY_IS_ACTIVE": "Is active",
|
|
23
|
-
"AUTHORITY_ORGANIZATION_APPLICATION_ID": "Organization application id",
|
|
24
|
-
"BLUE_PRINT_SINGULAR": "BluePrint",
|
|
25
|
-
"BLUE_PRINT_PLURAL": "BluePrints",
|
|
26
|
-
"BLUE_PRINT_BLUE_PRINT_CODE": "Blue print code",
|
|
27
|
-
"BLUE_PRINT_QUERY_ID": "Query id",
|
|
28
|
-
"BLUE_PRINT_PAGE_SINGULAR": "blueprintpage",
|
|
29
|
-
"BLUE_PRINT_PAGE_PLURAL": "blueprintpages",
|
|
30
|
-
"BLUE_PRINT_PAGE_BLUE_PRINT_ID": "Blue print id",
|
|
31
|
-
"BLUE_PRINT_PAGE_ENABLED": "Enabled",
|
|
32
|
-
"BLUE_PRINT_PAGE_PAGE_NAME": "Page name",
|
|
33
|
-
"BLUE_PRINT_PAGE_PAGE_ORDER": "Page order",
|
|
34
|
-
"BLUE_PRINT_PAGE_QUERY_ID": "Query id",
|
|
35
|
-
"BLUE_PRINT_POINT_SINGULAR": "blueprintpoint",
|
|
36
|
-
"BLUE_PRINT_POINT_PLURAL": "blueprintpoints",
|
|
37
|
-
"BLUE_PRINT_POINT_BLUE_PRINT_PAGE_ID": "Blue print page id",
|
|
38
|
-
"BLUE_PRINT_POINT_FONT_SIZE": "Font size",
|
|
39
|
-
"BLUE_PRINT_POINT_POINT_CODE": "Point code",
|
|
40
|
-
"BLUE_PRINT_POINT_X": "X",
|
|
41
|
-
"BLUE_PRINT_POINT_Y": "Y",
|
|
42
|
-
"DASHBOARD_SINGULAR": "Dashboard",
|
|
43
|
-
"DASHBOARD_PLURAL": "Dashboards",
|
|
44
|
-
"DASHBOARD_DASHBOARD_CODE": "Dashboard code",
|
|
45
|
-
"DASHBOARD_DASHBOARD_NAME": "Dashboard name",
|
|
46
|
-
"DASHBOARD_DASHBOARD_TITLE": "Dashboard title",
|
|
47
|
-
"DASHBOARD_ENABLED": "Enabled",
|
|
48
|
-
"DASHBOARD_LOAD_WIDGETS_INDIVIDUALLY": "Load widgets individually",
|
|
49
|
-
"DASHBOARD_NUMBER_OF_COLUMNS": "Number of columns",
|
|
50
|
-
"DASHBOARD_WIDGET_SINGULAR": "Widget",
|
|
51
|
-
"DASHBOARD_WIDGET_PLURAL": "Widgets",
|
|
52
|
-
"DASHBOARD_WIDGET_DASHBOARD_ID": "Dashboard id",
|
|
53
|
-
"DASHBOARD_WIDGET_ENABLED": "Enabled",
|
|
54
|
-
"DASHBOARD_WIDGET_WIDGET_ID": "Widget id",
|
|
55
|
-
"DASHBOARD_WIDGET_WIDGET_ORDER": "Widget order",
|
|
56
|
-
"DATA_QUERY_SINGULAR": "Data Query",
|
|
57
|
-
"DATA_QUERY_PLURAL": "Data Queries",
|
|
58
|
-
"DATA_QUERY_DATASOURCE_CON_ID": "Datasource con id",
|
|
59
|
-
"DATA_QUERY_QUERY_NAME": "Query name",
|
|
60
|
-
"DATA_QUERY_QUERY_STR": "Query str",
|
|
61
|
-
"DATA_QUERY_USE_SYS_CON": "Use sys con",
|
|
62
|
-
"DATA_QUERY_PARAMETER_SINGULAR": "dataqueryparameter",
|
|
63
|
-
"DATA_QUERY_PARAMETER_PLURAL": "dataqueryparameters",
|
|
64
|
-
"DATA_QUERY_PARAMETER_DATA_QUERY_ID": "Data query id",
|
|
65
|
-
"DATA_QUERY_PARAMETER_DEFAULT_VALUE": "Default value",
|
|
66
|
-
"DATA_QUERY_PARAMETER_ENABLED": "Enabled",
|
|
67
|
-
"DATA_QUERY_PARAMETER_ENTITY_PARAMETER_ID": "Entity parameter id",
|
|
68
|
-
"DATA_QUERY_PARAMETER_HIDDEN": "Hidden",
|
|
69
|
-
"DATA_QUERY_PARAMETER_MANDATORY": "Mandatory",
|
|
70
|
-
"DATASOURCE_CONNECTION_SINGULAR": "Datasource",
|
|
71
|
-
"DATASOURCE_CONNECTION_PLURAL": "Datasources",
|
|
72
|
-
"DATASOURCE_CONNECTION_CONNECTION_NAME": "Connection name",
|
|
73
|
-
"DATASOURCE_CONNECTION_DATASOURCE_PASSWORD": "Datasource password",
|
|
74
|
-
"DATASOURCE_CONNECTION_DATASOURCE_TYPE": "Datasource type",
|
|
75
|
-
"DATASOURCE_CONNECTION_DATASOURCE_URL": "Datasource url",
|
|
76
|
-
"DATASOURCE_CONNECTION_DATASOURCE_USERNAME": "Datasource username",
|
|
77
|
-
"DATASOURCE_CONNECTION_ENABLED": "Enabled",
|
|
78
|
-
"EMPLOYEE_SINGULAR": "Employee",
|
|
79
|
-
"EMPLOYEE_PLURAL": "Employees",
|
|
80
|
-
"EMPLOYEE_EMAIL": "Email",
|
|
81
|
-
"EMPLOYEE_EMPLOYEE_NAME": "Employee name",
|
|
82
|
-
"EMPLOYEE_EMPLOYEE_NUMBER": "Employee number",
|
|
83
|
-
"EMPLOYEE_MOBILE_NUMBER": "Mobile number",
|
|
84
|
-
"EMPLOYEE_ORGANIZATION_RANK_ID": "Organization rank id",
|
|
85
|
-
"EMPLOYEE_ORGANIZATION_UNIT_ID": "Organization unit id",
|
|
86
|
-
"EMPLOYEE_USER_ACCOUNT_ID": "User account id",
|
|
87
|
-
"ENTITY_PARAMETER_SINGULAR": "Parameter",
|
|
88
|
-
"ENTITY_PARAMETER_PLURAL": "Parameters",
|
|
89
|
-
"ENTITY_PARAMETER_ENABLED": "Enabled",
|
|
90
|
-
"ENTITY_PARAMETER_PARAMETER_CODE": "Parameter code",
|
|
91
|
-
"ENTITY_PARAMETER_PARAMETER_DATA_QUERY_ID": "Parameter data query id",
|
|
92
|
-
"ENTITY_PARAMETER_PARAMETER_DATASET": "Parameter dataset",
|
|
93
|
-
"ENTITY_PARAMETER_PARAMETER_DISPLAY_FIELD": "Parameter display field",
|
|
94
|
-
"ENTITY_PARAMETER_PARAMETER_LABEL": "Parameter label",
|
|
95
|
-
"ENTITY_PARAMETER_PARAMETER_TYPE": "Parameter type",
|
|
96
|
-
"ENTITY_PARAMETER_PARAMETER_VALUE_FIELD": "Parameter value field",
|
|
97
|
-
"ENTITY_PARAMETER_PARAMETER_VALUE_FORMAT": "Parameter value format",
|
|
98
|
-
"EXCEL_UPLOADER_DETAIL_SINGULAR": "exceluploaderdetail",
|
|
99
|
-
"EXCEL_UPLOADER_DETAIL_PLURAL": "exceluploaderdetails",
|
|
100
|
-
"EXCEL_UPLOADER_DETAIL_COLUMN_INDEX": "Column index",
|
|
101
|
-
"EXCEL_UPLOADER_DETAIL_EXCEL_UPLOADER_HEADER_ID": "Excel uploader header id",
|
|
102
|
-
"EXCEL_UPLOADER_DETAIL_LOOKUP_QUERY_ID": "Lookup query id",
|
|
103
|
-
"EXCEL_UPLOADER_DETAIL_TABLE_FIELD": "Table field",
|
|
104
|
-
"EXCEL_UPLOADER_HEADER_SINGULAR": "Excel Uploader",
|
|
105
|
-
"EXCEL_UPLOADER_HEADER_PLURAL": "Excel Uploader",
|
|
106
|
-
"EXCEL_UPLOADER_HEADER_UPLOADER_CONNECTION_ID": "Uploader connection id",
|
|
107
|
-
"EXCEL_UPLOADER_HEADER_UPLOADER_DATABASE_NAME": "Uploader database name",
|
|
108
|
-
"EXCEL_UPLOADER_HEADER_UPLOADER_NAME": "Uploader name",
|
|
109
|
-
"EXCEL_UPLOADER_HEADER_UPLOADER_TABLE_NAME": "Uploader table name",
|
|
110
|
-
"LOOKUP_SINGULAR": "System Lookup",
|
|
111
|
-
"LOOKUP_PLURAL": "System Lookups",
|
|
112
|
-
"LOOKUP_ENABLED": "Enabled",
|
|
113
|
-
"LOOKUP_LOOKUP_AR_DISPLAY": "Lookup ar display",
|
|
114
|
-
"LOOKUP_LOOKUP_EN_DISPLAY": "Lookup en display",
|
|
115
|
-
"LOOKUP_LOOKUP_TYPE": "Lookup type",
|
|
116
|
-
"LOOKUP_LOOKUP_VALUE": "Lookup value",
|
|
117
|
-
"LOOKUP_ORG_CODE": "Org code",
|
|
118
|
-
"MAIL_ATTACHMENT_SINGULAR": "mailattachment",
|
|
119
|
-
"MAIL_ATTACHMENT_PLURAL": "mailattachments",
|
|
120
|
-
"MAIL_ATTACHMENT_ENABLED": "Enabled",
|
|
121
|
-
"MAIL_ATTACHMENT_MAIL_TEMPLATE_ID": "Mail template id",
|
|
122
|
-
"MAIL_ATTACHMENT_REPORT_ID": "Report id",
|
|
123
|
-
"MAIL_BODY_SINGULAR": "mailbody",
|
|
124
|
-
"MAIL_BODY_PLURAL": "mailbodies",
|
|
125
|
-
"MAIL_BODY_BODY_CONTENT": "Body content",
|
|
126
|
-
"MAIL_BODY_BODY_CONTENT_DATA_QUERY_ID": "Body content data query id",
|
|
127
|
-
"MAIL_BODY_BODY_ORDER": "Body order",
|
|
128
|
-
"MAIL_BODY_ENABLED": "Enabled",
|
|
129
|
-
"MAIL_BODY_IS_MAIN": "Is main",
|
|
130
|
-
"MAIL_BODY_MAIL_TEMPLATE_ID": "Mail template id",
|
|
131
|
-
"MAIL_BODY_PRINT_FOR_EACH_RECORD": "Print for each record",
|
|
132
|
-
"MAIL_NOTIFICATION_QUEUE_SINGULAR": "Mail Notification Queue",
|
|
133
|
-
"MAIL_NOTIFICATION_QUEUE_PLURAL": "Mail Notification Queue",
|
|
134
|
-
"MAIL_NOTIFICATION_QUEUE_CUSTOM_MAIL_ATTACHED_REPORT_ID": "Custom mail attached report id",
|
|
135
|
-
"MAIL_NOTIFICATION_QUEUE_CUSTOM_MAIL_BODY": "Custom mail body",
|
|
136
|
-
"MAIL_NOTIFICATION_QUEUE_CUSTOM_MAIL_SUBJECT": "Custom mail subject",
|
|
137
|
-
"MAIL_NOTIFICATION_QUEUE_CUSTOM_RECIPIENTS": "Custom recipients",
|
|
138
|
-
"MAIL_NOTIFICATION_QUEUE_IS_NOTIFIED": "Is notified",
|
|
139
|
-
"MAIL_NOTIFICATION_QUEUE_MAIL_PARAMETERS": "Mail parameters",
|
|
140
|
-
"MAIL_NOTIFICATION_QUEUE_MAIL_TEMPLATE_ID": "Mail template id",
|
|
141
|
-
"MAIL_NOTIFICATION_QUEUE_NOTIFICATION_MESSAGE": "Notification message",
|
|
142
|
-
"MAIL_NOTIFICATION_QUEUE_NOTIFICATION_TIME": "Notification time",
|
|
143
|
-
"MAIL_RECIPIENT_SINGULAR": "mailrecipient",
|
|
144
|
-
"MAIL_RECIPIENT_PLURAL": "mailrecipients",
|
|
145
|
-
"MAIL_RECIPIENT_ENABLED": "Enabled",
|
|
146
|
-
"MAIL_RECIPIENT_MAIL_TEMPLATE_ID": "Mail template id",
|
|
147
|
-
"MAIL_RECIPIENT_RECIPIENT_MAIL": "Recipient mail",
|
|
148
|
-
"MAIL_RECIPIENT_RECIPIENT_TYPE": "Recipient type",
|
|
149
|
-
"MAIL_TEMPLATE_SINGULAR": "Mail Templates",
|
|
150
|
-
"MAIL_TEMPLATE_PLURAL": "Mail Templates",
|
|
151
|
-
"MAIL_TEMPLATE_ENABLED": "Enabled",
|
|
152
|
-
"MAIL_TEMPLATE_MAIL_CC_DATA_QUERY_ID": "Mail cc data query id",
|
|
153
|
-
"MAIL_TEMPLATE_MAIL_SUBJECT": "Mail subject",
|
|
154
|
-
"MAIL_TEMPLATE_MAIL_TEMPLATE_CODE": "Mail template code",
|
|
155
|
-
"MAIL_TEMPLATE_MAIL_TEMPLATE_NAME": "Mail template name",
|
|
156
|
-
"MAIL_TEMPLATE_MAIL_TO_DATA_QUERY_ID": "Mail to data query id",
|
|
157
|
-
"MAIL_TEMPLATE_PERIOD_TYPE": "Period type",
|
|
158
|
-
"MAIL_TEMPLATE_PERIOD_VALUE": "Period value",
|
|
159
|
-
"MAIL_TEMPLATE_PERIODICAL": "Periodical",
|
|
160
|
-
"MAIL_TEMPLATE_START_SENDING_AT": "Start sending at",
|
|
161
|
-
"MAIL_TEMPLATE_SUBJECT_DATA_QUERY_ID": "Subject data query id",
|
|
162
|
-
"NEW_TABLE_SINGULAR": "newtable",
|
|
163
|
-
"NEW_TABLE_PLURAL": "newtables",
|
|
164
|
-
"NEW_TABLE_TEST_DATE": "Test date",
|
|
165
|
-
"NEW_TABLE_TEST_LONG": "Test long",
|
|
166
|
-
"NEW_TABLE_TEST_DECIMAL": "Test decimal",
|
|
167
|
-
"NOTIFICATION_SINGULAR": "Notification",
|
|
168
|
-
"NOTIFICATION_PLURAL": "Notifications",
|
|
169
|
-
"NOTIFICATION_ENABLED": "Enabled",
|
|
170
|
-
"NOTIFICATION_NOTIFICATION_ACTION_KEY": "Notification action key",
|
|
171
|
-
"NOTIFICATION_NOTIFICATION_ACTION_PAYLOAD": "Notification action payload",
|
|
172
|
-
"NOTIFICATION_NOTIFICATION_CODE": "Notification code",
|
|
173
|
-
"NOTIFICATION_NOTIFICATION_ICON": "Notification icon",
|
|
174
|
-
"NOTIFICATION_NOTIFICATION_QUERY_ID": "Notification query id",
|
|
175
|
-
"NOTIFICATION_NOTIFICATION_TEXT": "Notification text",
|
|
176
|
-
"NOTIFICATION_USERS_TO_NOTIFY_QUERY_ID": "Users to notify query id",
|
|
177
|
-
"NOTIFICATION_QUEUE_SINGULAR": "Notification Queue",
|
|
178
|
-
"NOTIFICATION_QUEUE_PLURAL": "Notification Queue",
|
|
179
|
-
"NOTIFICATION_QUEUE_CUSTOM_NOTIFICATION_ACTION_KEY": "Custom notification action key",
|
|
180
|
-
"NOTIFICATION_QUEUE_CUSTOM_NOTIFICATION_ACTION_PAYLOAD": "Custom notification action payload",
|
|
181
|
-
"NOTIFICATION_QUEUE_CUSTOM_NOTIFICATION_ICON": "Custom notification icon",
|
|
182
|
-
"NOTIFICATION_QUEUE_CUSTOM_NOTIFICATION_TEXT": "Custom notification text",
|
|
183
|
-
"NOTIFICATION_QUEUE_IS_NOTIFIED": "Is notified",
|
|
184
|
-
"NOTIFICATION_QUEUE_NOTIFICATION_CODE": "Notification code",
|
|
185
|
-
"NOTIFICATION_QUEUE_NOTIFICATION_PARAMS": "Notification params",
|
|
186
|
-
"NOTIFICATION_QUEUE_NOTIFIED_TIME": "Notified time",
|
|
187
|
-
"NOTIFICATION_QUEUE_USERNAME": "Username",
|
|
2
|
+
"admin": "admin",
|
|
188
3
|
"ORGANIZATION_SINGULAR": "Organization",
|
|
189
4
|
"ORGANIZATION_PLURAL": "Organizations",
|
|
190
|
-
"ORGANIZATION_ORGANIZATION_CODE": "Organization code",
|
|
191
5
|
"ORGANIZATION_IS_ACTIVE": "Is active",
|
|
192
|
-
"
|
|
193
|
-
"
|
|
194
|
-
"
|
|
195
|
-
"
|
|
196
|
-
"
|
|
197
|
-
"
|
|
198
|
-
"
|
|
199
|
-
"
|
|
200
|
-
"
|
|
6
|
+
"ORGANIZATION_ORGANIZATION_AR_NAME": "Organization ar name",
|
|
7
|
+
"ORGANIZATION_ORGANIZATION_CODE": "Organization code",
|
|
8
|
+
"ORGANIZATION_ORGANIZATION_EN_NAME": "Organization en name",
|
|
9
|
+
"ORGANIZATION_MEMBER_SINGULAR": "Member",
|
|
10
|
+
"ORGANIZATION_MEMBER_PLURAL": "Members",
|
|
11
|
+
"ORGANIZATION_MEMBER_IS_ACTIVE": "Is active",
|
|
12
|
+
"ORGANIZATION_MEMBER_IS_DEFAULT": "Is default",
|
|
13
|
+
"ORGANIZATION_MEMBER_ORGANIZATION_ID": "Organization id",
|
|
14
|
+
"ORGANIZATION_MEMBER_ORGANIZATION_RANK_ID": "Organization rank id",
|
|
15
|
+
"ORGANIZATION_MEMBER_ORGANIZATION_UNIT_ID": "Organization unit id",
|
|
16
|
+
"ORGANIZATION_MEMBER_PERSON_ID": "Person id",
|
|
17
|
+
"ORGANIZATION_MEMBER_ROLE_SINGULAR": "organizationmemberrole",
|
|
18
|
+
"ORGANIZATION_MEMBER_ROLE_PLURAL": "organizationmemberroles",
|
|
19
|
+
"ORGANIZATION_MEMBER_ROLE_IS_ACTIVE": "Is active",
|
|
20
|
+
"ORGANIZATION_MEMBER_ROLE_END_DATE": "End date",
|
|
21
|
+
"ORGANIZATION_MEMBER_ROLE_ORGANIZATION_MEMBER_ID": "Organization member id",
|
|
22
|
+
"ORGANIZATION_MEMBER_ROLE_START_DATE": "Start date",
|
|
23
|
+
"ORGANIZATION_MEMBER_ROLE_SYSTEM_APPLICATION_ROLE_ID": "System application role id",
|
|
24
|
+
"ORGANIZATION_RANK_SINGULAR": "Rank",
|
|
25
|
+
"ORGANIZATION_RANK_PLURAL": "Ranks",
|
|
201
26
|
"ORGANIZATION_RANK_ENABLED": "Enabled",
|
|
202
|
-
"
|
|
203
|
-
"ORGANIZATION_RANK_RANK_CODE": "Rank code",
|
|
204
|
-
"ORGANIZATION_RANK_RANK_NAME": "Rank name",
|
|
27
|
+
"ORGANIZATION_RANK_ORGANIZATION_ID": "Organization id",
|
|
205
28
|
"ORGANIZATION_RANK_RANK_ORDER": "Rank order",
|
|
206
|
-
"
|
|
207
|
-
"
|
|
29
|
+
"ORGANIZATION_RANK_RANK_AR_NAME": "Rank ar name",
|
|
30
|
+
"ORGANIZATION_RANK_RANK_CODE": "Rank code",
|
|
31
|
+
"ORGANIZATION_RANK_RANK_EN_NAME": "Rank en name",
|
|
32
|
+
"ORGANIZATION_UNIT_SINGULAR": "Organization Unit",
|
|
33
|
+
"ORGANIZATION_UNIT_PLURAL": "Organization Units",
|
|
208
34
|
"ORGANIZATION_UNIT_ENABLED": "Enabled",
|
|
209
|
-
"
|
|
35
|
+
"ORGANIZATION_UNIT_ORGANIZATION_ID": "Organization id",
|
|
36
|
+
"ORGANIZATION_UNIT_ORGANIZATION_UNIT_PARENT_ID": "Organization unit parent id",
|
|
37
|
+
"ORGANIZATION_UNIT_ORGANIZATION_UNIT_TYPE_ID": "Organization unit type id",
|
|
210
38
|
"ORGANIZATION_UNIT_ORGANIZATION_UNIT_AR_NAME": "Organization unit ar name",
|
|
211
39
|
"ORGANIZATION_UNIT_ORGANIZATION_UNIT_EN_NAME": "Organization unit en name",
|
|
212
|
-
"
|
|
213
|
-
"
|
|
214
|
-
"
|
|
215
|
-
"
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
"
|
|
219
|
-
"
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"
|
|
223
|
-
"
|
|
224
|
-
"
|
|
225
|
-
"
|
|
226
|
-
"
|
|
227
|
-
"
|
|
228
|
-
"
|
|
229
|
-
"
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
-
"
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
244
|
-
"
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
-
"
|
|
248
|
-
"
|
|
249
|
-
"
|
|
250
|
-
"
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
-
"
|
|
254
|
-
"
|
|
255
|
-
"
|
|
256
|
-
"
|
|
257
|
-
"
|
|
258
|
-
"
|
|
259
|
-
"
|
|
260
|
-
"
|
|
261
|
-
"
|
|
262
|
-
"
|
|
263
|
-
"
|
|
264
|
-
"
|
|
265
|
-
"
|
|
266
|
-
"
|
|
267
|
-
"
|
|
268
|
-
"USER_REQUEST_MAILS_TO_NOTIFY": "Mails to notify",
|
|
269
|
-
"USER_REQUEST_NOTIFICATION_MESSAGE": "Notification message",
|
|
270
|
-
"USER_REQUEST_NOTIFICATION_TIME": "Notification time",
|
|
271
|
-
"USER_REQUEST_NOTIFICATION_TYPE": "Notification type",
|
|
272
|
-
"USER_REQUEST_NOTIFY_USER": "Notify user",
|
|
273
|
-
"USER_REQUEST_REPORT_CODE": "Report code",
|
|
274
|
-
"USER_REQUEST_REPORT_PARAMETERS": "Report parameters",
|
|
275
|
-
"USER_REQUEST_REQUEST_TYPE": "Request type",
|
|
276
|
-
"USER_REQUEST_STATUS": "Status",
|
|
277
|
-
"USER_REQUEST_STATUS_MESSAGE": "Status message",
|
|
278
|
-
"WIDGET_SINGULAR": "widget",
|
|
279
|
-
"WIDGET_PLURAL": "widgets",
|
|
280
|
-
"WIDGET_DATA_QUERY_ID": "Data query id",
|
|
281
|
-
"WIDGET_ENABLED": "Enabled",
|
|
282
|
-
"WIDGET_HEIGHT": "Height",
|
|
283
|
-
"WIDGET_HORIZONTAL_AXIS_FIELD": "Horizontal axis field",
|
|
284
|
-
"WIDGET_HORIZONTAL_AXIS_LABEL": "Horizontal axis label",
|
|
285
|
-
"WIDGET_ICON": "Icon",
|
|
286
|
-
"WIDGET_SERIES_KEYS": "Series keys",
|
|
287
|
-
"WIDGET_TITLE": "Title",
|
|
288
|
-
"WIDGET_VERTICAL_AXIS_FIELD": "Vertical axis field",
|
|
289
|
-
"WIDGET_VERTICAL_AXIS_LABEL": "Vertical axis label",
|
|
290
|
-
"WIDGET_WIDGET_DESCRIPTION": "Widget description",
|
|
291
|
-
"WIDGET_WIDGET_NAME": "Widget name",
|
|
292
|
-
"WIDGET_WIDGET_TYPE": "Widget type",
|
|
293
|
-
"WIDGET_WIDTH": "Width",
|
|
294
|
-
"WORKFLOW_DOCUMENT_SINGULAR": "Workflow",
|
|
295
|
-
"WORKFLOW_DOCUMENT_PLURAL": "Workflows",
|
|
296
|
-
"WORKFLOW_DOCUMENT_APP_NOTIFICATION_ICON": "App notification icon",
|
|
297
|
-
"WORKFLOW_DOCUMENT_APP_NOTIFICATION_STYLE": "App notification style",
|
|
298
|
-
"WORKFLOW_DOCUMENT_APP_VIEW_ROUTE": "App view route",
|
|
299
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_CODE": "Document code",
|
|
300
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_CON_ID": "Document con id",
|
|
301
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_DATABASE_NAME": "Document database name",
|
|
302
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_DATABASE_TABLE": "Document database table",
|
|
303
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_ID_FIELD": "Document id field",
|
|
304
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_NAME": "Document name",
|
|
305
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_NUMBER_FIELD": "Document number field",
|
|
306
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_REPORT_ID": "Document report id",
|
|
307
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_STATUS_FIELD": "Document status field",
|
|
308
|
-
"WORKFLOW_DOCUMENT_MAIL_APPROVAL_ALLOWED": "Mail approval allowed",
|
|
309
|
-
"WORKFLOW_DOCUMENT_ORG_CODE": "Org code",
|
|
310
|
-
"WORKFLOW_DOCUMENT_USE_SYSTEM_CON": "Use system con",
|
|
311
|
-
"WORKFLOW_DOCUMENT_ACTION_SINGULAR": "workflowdocumentaction",
|
|
312
|
-
"WORKFLOW_DOCUMENT_ACTION_PLURAL": "workflowdocumentactions",
|
|
313
|
-
"WORKFLOW_DOCUMENT_ACTION_DOCUMENT_ACTION_CODE": "Document action code",
|
|
314
|
-
"WORKFLOW_DOCUMENT_ACTION_DOCUMENT_ACTION_NAME": "Document action name",
|
|
315
|
-
"WORKFLOW_DOCUMENT_ACTION_NEXT_DOCUMENT_STATUS_ID": "Next document status id",
|
|
316
|
-
"WORKFLOW_DOCUMENT_ACTION_POST_ACTION_ENDPOINT": "Post action endpoint",
|
|
317
|
-
"WORKFLOW_DOCUMENT_ACTION_PRE_ACTION_ENDPOINT": "Pre action endpoint",
|
|
318
|
-
"WORKFLOW_DOCUMENT_ACTION_REQUIRE_COMMENT": "Require comment",
|
|
319
|
-
"WORKFLOW_DOCUMENT_ACTION_WORKFLOW_DOCUMENT_ID": "Workflow document id",
|
|
320
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_SINGULAR": "workflowdocumentactionhistory",
|
|
321
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_PLURAL": "workflowdocumentactionhistories",
|
|
322
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_ACTION_BY": "Action by",
|
|
323
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_ACTION_COMMENT": "Action comment",
|
|
324
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_ACTION_METHOD": "Action method",
|
|
325
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_ACTION_TIME": "Action time",
|
|
326
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_DOCUMENT_ACTION_ID": "Document action id",
|
|
327
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_DOCUMENT_REF_ID": "Document ref id",
|
|
328
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_WORKFLOW_DOCUMENT_ID": "Workflow document id",
|
|
329
|
-
"WORKFLOW_DOCUMENT_ACTION_MAIL_SINGULAR": "workflowdocumentactionmail",
|
|
330
|
-
"WORKFLOW_DOCUMENT_ACTION_MAIL_PLURAL": "workflowdocumentactionmails",
|
|
331
|
-
"WORKFLOW_DOCUMENT_ACTION_MAIL_DOCUMENT_ACTION_ID": "Document action id",
|
|
332
|
-
"WORKFLOW_DOCUMENT_ACTION_MAIL_ENABLED": "Enabled",
|
|
333
|
-
"WORKFLOW_DOCUMENT_ACTION_MAIL_MAIL_TEMPLATE_ID": "Mail template id",
|
|
334
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_SINGULAR": "Workflow Mail Log",
|
|
335
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_PLURAL": "Workflow Mail Logs",
|
|
336
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_GRAPH_API_MSG_ID": "Graph api msg id",
|
|
337
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_IS_PROCESSED": "Is processed",
|
|
338
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_ACTION_CODE": "Mail action code",
|
|
339
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_BODY_CONTENT": "Mail body content",
|
|
340
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_FROM": "Mail from",
|
|
341
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_SUBJECT": "Mail subject",
|
|
342
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_PROCESS_MESSAGE": "Process message",
|
|
343
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_PROCESS_TIME": "Process time",
|
|
344
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_REF_DOC_ID": "Ref doc id",
|
|
345
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_WORKFLOW_DOCUMENT_ID": "Workflow document id",
|
|
346
|
-
"WORKFLOW_DOCUMENT_STATUS_SINGULAR": "workflowdocumentstatus",
|
|
347
|
-
"WORKFLOW_DOCUMENT_STATUS_PLURAL": "workflowdocumentstatuses",
|
|
348
|
-
"WORKFLOW_DOCUMENT_STATUS_DOCUMENT_STATUS_CODE": "Document status code",
|
|
349
|
-
"WORKFLOW_DOCUMENT_STATUS_DOCUMENT_STATUS_NAME": "Document status name",
|
|
350
|
-
"WORKFLOW_DOCUMENT_STATUS_DOCUMENT_STATUS_ORDER": "Document status order",
|
|
351
|
-
"WORKFLOW_DOCUMENT_STATUS_ENABLED": "Enabled",
|
|
352
|
-
"WORKFLOW_DOCUMENT_STATUS_IS_ZERO_STATE": "Is zero state",
|
|
353
|
-
"WORKFLOW_DOCUMENT_STATUS_NEXT_ACTION_TAKERS_QUERY_ID": "Next action takers query id",
|
|
354
|
-
"WORKFLOW_DOCUMENT_STATUS_NEXT_ACTIONS_QUERY_ID": "Next actions query id",
|
|
355
|
-
"WORKFLOW_DOCUMENT_STATUS_WORKFLOW_DOCUMENT_ID": "Workflow document id"
|
|
40
|
+
"ORGANIZATION_UNIT_TYPE_SINGULAR": "Organization uUnit Type",
|
|
41
|
+
"ORGANIZATION_UNIT_TYPE_PLURAL": "Organization Unit Types",
|
|
42
|
+
"ORGANIZATION_UNIT_TYPE_IS_ACTIVE": "Is active",
|
|
43
|
+
"ORGANIZATION_UNIT_TYPE_ORGANIZATION_ID": "Organization id",
|
|
44
|
+
"ORGANIZATION_UNIT_TYPE_ORGANIZATION_UNIT_TYPE_ORDER": "Organization unit type order",
|
|
45
|
+
"ORGANIZATION_UNIT_TYPE_UNIT_TYPE_AR_NAME": "Unit type ar name",
|
|
46
|
+
"ORGANIZATION_UNIT_TYPE_UNIT_TYPE_CODE": "Unit type code",
|
|
47
|
+
"ORGANIZATION_UNIT_TYPE_UNIT_TYPE_EN_NAME": "Unit type en name",
|
|
48
|
+
"PERSON_SINGULAR": "person",
|
|
49
|
+
"PERSON_PLURAL": "persons",
|
|
50
|
+
"PERSON_EMAIL": "Email",
|
|
51
|
+
"PERSON_EMPLOYEE_AR_NAME": "Employee ar name",
|
|
52
|
+
"PERSON_EMPLOYEE_EN_NAME": "Employee en name",
|
|
53
|
+
"PERSON_EMPLOYEE_NUMBER": "Employee number",
|
|
54
|
+
"PERSON_MOBILE_NUMBER": "Mobile number",
|
|
55
|
+
"PERSON_PASSWORD": "Password",
|
|
56
|
+
"PERSON_USERNAME": "Username",
|
|
57
|
+
"SYSTEM_APPLICATION_SINGULAR": "Application",
|
|
58
|
+
"SYSTEM_APPLICATION_PLURAL": "Applications",
|
|
59
|
+
"SYSTEM_APPLICATION_IS_ACTIVE": "Is active",
|
|
60
|
+
"SYSTEM_APPLICATION_APPLICATION_CODE": "Application code",
|
|
61
|
+
"SYSTEM_APPLICATION_APPLICATION_DESCRIPTION": "Application description",
|
|
62
|
+
"SYSTEM_APPLICATION_APPLICATION_NAME": "Application name",
|
|
63
|
+
"SYSTEM_APPLICATION_AUTHORITY_SINGULAR": "Authority",
|
|
64
|
+
"SYSTEM_APPLICATION_AUTHORITY_PLURAL": "Authorities",
|
|
65
|
+
"SYSTEM_APPLICATION_AUTHORITY_IS_ACTIVE": "Is active",
|
|
66
|
+
"SYSTEM_APPLICATION_AUTHORITY_SYSTEM_APPLICATION_ID": "System application id",
|
|
67
|
+
"SYSTEM_APPLICATION_AUTHORITY_SYSTEM_MODULE_ID": "System module id",
|
|
68
|
+
"SYSTEM_APPLICATION_AUTHORITY_AUTHORITY_CODE": "Authority code",
|
|
69
|
+
"SYSTEM_APPLICATION_AUTHORITY_AUTHORITY_NAME": "Authority Name",
|
|
70
|
+
"SYSTEM_APPLICATION_AUTHORITY_AUTHORITY_DESCRIPTION": "Authority description",
|
|
71
|
+
"SYSTEM_APPLICATION_MODULE_SINGULAR": "Application Module",
|
|
72
|
+
"SYSTEM_APPLICATION_MODULE_PLURAL": "Application Modules",
|
|
73
|
+
"SYSTEM_APPLICATION_MODULE_MODULE_DESCRIPTION": "Module description",
|
|
74
|
+
"SYSTEM_APPLICATION_MODULE_MODULE_CODE": "Module Code",
|
|
75
|
+
"SYSTEM_APPLICATION_MODULE_MODULE_NAME": "Module name",
|
|
76
|
+
"SYSTEM_APPLICATION_MODULE_SYSTEM_APPLICATION_ID": "System application id",
|
|
77
|
+
"SYSTEM_APPLICATION_ROLE_SINGULAR": "Role",
|
|
78
|
+
"SYSTEM_APPLICATION_ROLE_PLURAL": "Roles",
|
|
79
|
+
"SYSTEM_APPLICATION_ROLE_IS_ACTIVE": "Is active",
|
|
80
|
+
"SYSTEM_APPLICATION_ROLE_SYSTEM_APPLICATION_ID": "System application id",
|
|
81
|
+
"SYSTEM_APPLICATION_ROLE_ROLE_DESCRIPTION": "Role description",
|
|
82
|
+
"SYSTEM_APPLICATION_ROLE_ROLE_NAME": "Role name",
|
|
83
|
+
"SYSTEM_APPLICATION_ROLE_AUTHORITY_SINGULAR": "systemapplicationroleauthority",
|
|
84
|
+
"SYSTEM_APPLICATION_ROLE_AUTHORITY_PLURAL": "systemapplicationroleauthorities",
|
|
85
|
+
"SYSTEM_APPLICATION_ROLE_AUTHORITY_IS_ACTIVE": "Is active",
|
|
86
|
+
"SYSTEM_APPLICATION_ROLE_AUTHORITY_SYSTEM_APPLICATION_AUTHORITY_ID": "System application authority id",
|
|
87
|
+
"SYSTEM_APPLICATION_ROLE_AUTHORITY_SYSTEM_APPLICATION_ROLE_ID": "System application role id",
|
|
88
|
+
"ORGANIZATION_APPLICATION_MODULE_SINGULAR": "organizationapplicationmodule",
|
|
89
|
+
"ORGANIZATION_APPLICATION_MODULE_PLURAL": "organizationapplicationmodules",
|
|
90
|
+
"ORGANIZATION_APPLICATION_MODULE_EXPIRATION_DATE": "Expiration date",
|
|
91
|
+
"ORGANIZATION_APPLICATION_MODULE_IS_ACTIVE": "Is active",
|
|
92
|
+
"ORGANIZATION_APPLICATION_MODULE_ORGANIZATION_ID": "Organization id",
|
|
93
|
+
"ORGANIZATION_APPLICATION_MODULE_SUBSCRIPTION_DATE": "Subscription date",
|
|
94
|
+
"ORGANIZATION_APPLICATION_MODULE_SYSTEM_APPLICATION_MODULE_ID": "System application module id",
|
|
95
|
+
"PERSON_IS_ACTIVE": "Active"
|
|
356
96
|
}
|
|
@@ -29,5 +29,15 @@
|
|
|
29
29
|
"ACTION_CONFIRMATION": "Are you sure you want to process this action ?",
|
|
30
30
|
"YES_LABEL": "Yes",
|
|
31
31
|
"NO_LABEL": "No",
|
|
32
|
-
"AT_LEAST_ONE_RECORD_SELECTED_MESSAGE": "You must at least select on record to process this action on"
|
|
32
|
+
"AT_LEAST_ONE_RECORD_SELECTED_MESSAGE": "You must at least select on record to process this action on",
|
|
33
|
+
"DEFAULT_LOADING_MESSAGE": "Processing you request ... please wait",
|
|
34
|
+
"SHOW_REPORT_BTN_LABEL": "Show Report",
|
|
35
|
+
"WF_COMMENT_LABEL": "Comment",
|
|
36
|
+
"WF_TAKE_ACTION_BTN_LABEL": "Submit",
|
|
37
|
+
"WF_CANCEL_BTN_LABEL": "Cancel",
|
|
38
|
+
"WE_AVAILABLE_ACTIONS_LABEL": "Available Actions",
|
|
39
|
+
"WE_NEXT_APPROVER_LABEL": "Send To",
|
|
40
|
+
"WF_ACTION_HISTORY_LABEL": "Action History",
|
|
41
|
+
"WF_WAITING_FOR_LABEL": "Waiting For",
|
|
42
|
+
"VIEW_LABEL": "VIEW"
|
|
33
43
|
}
|