@asaleh37/ui-base 25.8.1-4 → 25.8.1-6
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/.github/workflows/publish-npm.yml +49 -49
- package/README.md +51 -51
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/eslint.config.js +29 -29
- package/index.html +13 -13
- package/package.json +120 -120
- package/rollup.config-1748377725725.cjs +34 -34
- package/rollup.config.js +45 -45
- package/src/components/App.tsx +123 -123
- package/src/components/BaseApp.tsx +53 -53
- package/src/components/administration/admin/ChangePasswordPanel.tsx +128 -128
- package/src/components/administration/admin/OrgMemberRoleForm.tsx +83 -83
- package/src/components/administration/admin/OrganizationApplicationModuleGrid.tsx +107 -107
- package/src/components/administration/admin/OrganizationGrid.tsx +118 -118
- package/src/components/administration/admin/OrganizationMemberGrid.tsx +176 -176
- package/src/components/administration/admin/OrganizationMemberRoleGrid.tsx +87 -87
- package/src/components/administration/admin/OrganizationRankGrid.tsx +133 -133
- package/src/components/administration/admin/OrganizationUnitGrid.tsx +143 -143
- package/src/components/administration/admin/OrganizationUnitTypeGrid.tsx +108 -108
- package/src/components/administration/admin/PersonGrid.tsx +361 -361
- package/src/components/administration/admin/RoleAuthoritiesForm.tsx +82 -82
- package/src/components/administration/admin/SystemApplicationAuthorityGrid.tsx +117 -117
- package/src/components/administration/admin/SystemApplicationGrid.tsx +83 -83
- package/src/components/administration/admin/SystemApplicationModuleGrid.tsx +96 -96
- package/src/components/administration/admin/SystemApplicationRoleAuthorityGrid.tsx +75 -75
- package/src/components/administration/admin/SystemApplicationRoleGrid.tsx +116 -116
- package/src/components/administration/dev/AttachmentConfigGrid.tsx +223 -223
- package/src/components/administration/dev/AttachmentGrid.tsx +172 -172
- package/src/components/administration/dev/BluePrintGrid.tsx +129 -129
- package/src/components/administration/dev/DashboardGrid.tsx +173 -173
- package/src/components/administration/dev/DashboardWidgetGrid.tsx +164 -164
- package/src/components/administration/dev/DataQueryGrid.tsx +206 -206
- package/src/components/administration/dev/DataQueryParameterGrid.tsx +191 -191
- package/src/components/administration/dev/DataQueryParametersForm.tsx +84 -84
- package/src/components/administration/dev/DatasourceConnectionGrid.tsx +150 -150
- package/src/components/administration/dev/EntityParameterGrid.tsx +279 -279
- package/src/components/administration/dev/LookupGrid.tsx +120 -120
- package/src/components/administration/dev/MailAttachmentGrid.tsx +155 -155
- package/src/components/administration/dev/MailBodyGrid.tsx +216 -216
- package/src/components/administration/dev/MailNotificationQueueGrid.tsx +245 -245
- package/src/components/administration/dev/MailRecipientGrid.tsx +169 -169
- package/src/components/administration/dev/MailSenderConfigGrid.tsx +478 -478
- package/src/components/administration/dev/MailTemplateGrid.tsx +384 -384
- package/src/components/administration/dev/NotificationGrid.tsx +432 -432
- package/src/components/administration/dev/NotificationQueueGrid.tsx +222 -222
- package/src/components/administration/dev/ReportGrid.tsx +506 -506
- package/src/components/administration/dev/ReportParameterGrid.tsx +186 -186
- package/src/components/administration/dev/ReportParametersForm.tsx +84 -84
- package/src/components/administration/dev/WidgetGrid.tsx +431 -431
- package/src/components/administration/dev/WorkflowDocumentActionGrid.tsx +264 -264
- package/src/components/administration/dev/WorkflowDocumentActionHistoryGrid.tsx +172 -172
- package/src/components/administration/dev/WorkflowDocumentActionMailGrid.tsx +161 -161
- package/src/components/administration/dev/WorkflowDocumentGrid.tsx +377 -377
- package/src/components/administration/dev/WorkflowDocumentMailLogGrid.tsx +218 -218
- package/src/components/administration/dev/WorkflowDocumentStatusGrid.tsx +243 -243
- package/src/components/common/ChangeOrgForm.tsx +81 -81
- package/src/components/common/Home.tsx +43 -43
- package/src/components/common/LanguageSwitcher.tsx +25 -25
- package/src/components/common/LayoutHandlers.tsx +11 -11
- package/src/components/common/LoadingMask.tsx +24 -24
- package/src/components/common/Login.tsx +214 -214
- package/src/components/common/MyNotificationsPanel.tsx +109 -109
- package/src/components/common/NotificationItem.tsx +138 -138
- package/src/components/index.ts +11 -11
- package/src/components/templates/DataEntryTemplates/DataEntryTypes.ts +324 -324
- package/src/components/templates/DataEntryTemplates/DataEntryUtil.ts +248 -248
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormAction.tsx +60 -60
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementField.tsx +231 -231
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementGroup.tsx +106 -106
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/CheckBox.tsx +64 -64
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/ComboBox.tsx +93 -93
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/Datefield.tsx +65 -65
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/DatetimeField.tsx +64 -64
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/FiltersPanel.tsx +237 -237
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/SystemLookupCombobox.tsx +55 -55
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/TemplateTextField.tsx +17 -17
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/TemplateForm.tsx +387 -387
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/DataGridColumnsUtil.tsx +189 -189
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGrid.tsx +998 -998
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGridMultiRecordAction.tsx +89 -89
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGridRecordAction.tsx +95 -95
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGridTopBar.tsx +227 -227
- package/src/components/templates/TransferList.tsx +256 -256
- package/src/components/templates/Window/ConfirmationWindow.tsx +55 -55
- package/src/components/templates/attachment/AttachmentCard.tsx +141 -141
- package/src/components/templates/attachment/AttachmentImageViewer.tsx +83 -83
- package/src/components/templates/attachment/AttachmentPanel.tsx +285 -285
- package/src/components/templates/index.ts +33 -33
- package/src/components/templates/report/ExcelReportViewer.tsx +71 -71
- package/src/components/templates/report/ReportViewer.tsx +382 -382
- package/src/components/templates/visuals/DashboardRouteView.tsx +9 -9
- package/src/components/templates/visuals/DashboardViewer.tsx +148 -148
- package/src/components/templates/visuals/WidgetViewer.tsx +198 -198
- package/src/components/templates/visuals/charts/TemplateBarChart.tsx +23 -23
- package/src/components/templates/visuals/charts/TemplateDataCard.tsx +35 -35
- package/src/components/templates/visuals/charts/TemplateGauge.tsx +21 -21
- package/src/components/templates/visuals/charts/TemplateLineChart.tsx +22 -22
- package/src/components/templates/visuals/charts/TemplateLineProgress.tsx +42 -42
- package/src/components/templates/visuals/charts/TemplatePieChart.tsx +24 -24
- package/src/components/templates/workflow/WorkflowDocumentPanel.tsx +606 -606
- package/src/components/templates/workflow/WorkflowDocumentTimeLine.tsx +140 -140
- package/src/components/templates/workflow/WorkflowRouteComponent.tsx +14 -14
- package/src/hooks/UseConfirmationWindow.tsx +54 -54
- package/src/hooks/UseMobile.tsx +13 -13
- package/src/hooks/UseSession.tsx +59 -59
- package/src/hooks/UseWindow.tsx +107 -107
- package/src/hooks/index.ts +7 -7
- package/src/hooks/useApiActions.ts +124 -124
- package/src/hooks/useAxios.tsx +316 -316
- package/src/hooks/useInterval.tsx +23 -23
- package/src/hooks/useLoadingMask.tsx +16 -16
- package/src/hooks/useLookupGridColumn.tsx +35 -35
- package/src/index.ts +4 -4
- package/src/layout/DrawerHeader.tsx +10 -10
- package/src/layout/Layout.tsx +90 -90
- package/src/layout/MainContent.tsx +117 -117
- package/src/layout/MobileDrawer.tsx +103 -103
- package/src/layout/NavigationTree.tsx +298 -298
- package/src/layout/NotificationButton.tsx +207 -207
- package/src/layout/RouteWrapper.tsx +63 -63
- package/src/layout/SideBar.tsx +85 -85
- package/src/layout/TopBar.tsx +289 -289
- package/src/locales/arabic/adminLocalsAr.json +93 -93
- package/src/locales/arabic/common.json +44 -44
- package/src/locales/arabic/devLocalsAr.json +317 -317
- package/src/locales/arabic/index.ts +9 -9
- package/src/locales/english/adminLocalsEn.json +96 -96
- package/src/locales/english/common.json +43 -43
- package/src/locales/english/devLocalsEn.json +318 -318
- package/src/locales/english/index.ts +9 -9
- package/src/locales/i18n.ts +8 -8
- package/src/locales/index.ts +9 -9
- package/src/main.tsx +23 -23
- package/src/navigationItems/Administration/adminNavigationItems.tsx +223 -223
- package/src/navigationItems/Administration/index.tsx +16 -16
- package/src/navigationItems/common/CommonNavigationItems.tsx +12 -12
- package/src/navigationItems/common/index.tsx +7 -7
- package/src/navigationItems/index.tsx +35 -35
- package/src/redux/features/administration/AdministrationStoresMetaData.ts +148 -148
- package/src/redux/features/common/AppInfoSlice.ts +65 -65
- package/src/redux/features/common/AppLayoutSlice.ts +29 -29
- package/src/redux/features/common/CommonStoreSlice.ts +44 -44
- package/src/redux/features/common/LoadingMaskSlice.ts +30 -30
- package/src/redux/features/common/SideBarSlice.ts +27 -27
- package/src/redux/features/common/UserSessionSlice.ts +54 -54
- package/src/redux/store.ts +29 -29
- package/src/routes/administration/adminRoutes.tsx +99 -99
- package/src/routes/administration/devRoutes.tsx +129 -129
- package/src/routes/administration/index.ts +8 -8
- package/src/routes/index.ts +11 -11
- package/src/routes/types/index.ts +6 -6
- package/src/styles/index.css +19 -19
- package/src/types/index.ts +8 -8
- package/src/util/AppUtils.ts +53 -53
- package/src/util/constants.ts +6 -6
- package/src/util/index.ts +2 -2
- package/tsconfig.json +135 -135
- package/vite.config.ts +24 -24
|
@@ -1,318 +1,318 @@
|
|
|
1
|
-
{
|
|
2
|
-
"DEVELOPMENT_TOOLS": "Development Tools",
|
|
3
|
-
"SYSTEM_MONITORING": "System Monitoring",
|
|
4
|
-
"dev": "dev",
|
|
5
|
-
"ATTACHMENT_SINGULAR": "attachment",
|
|
6
|
-
"ATTACHMENT_PLURAL": "attachments",
|
|
7
|
-
"ATTACHMENT_ATTACHMENT_NUMBER": "Attachment number",
|
|
8
|
-
"ATTACHMENT_ATTACHMENT_SIZE": "Attachment size",
|
|
9
|
-
"ATTACHMENT_ATTACHMENT_TYPE": "Attachment type",
|
|
10
|
-
"ATTACHMENT_CATEGORY": "Category",
|
|
11
|
-
"ATTACHMENT_DOC_TYPE": "Doc type",
|
|
12
|
-
"ATTACHMENT_FILE_NAME": "File name",
|
|
13
|
-
"ATTACHMENT_REF_KEY": "Ref key",
|
|
14
|
-
"ATTACHMENT_REMARK": "Remark",
|
|
15
|
-
"BLUE_PRINT_SINGULAR": "Blueprint",
|
|
16
|
-
"BLUE_PRINT_PLURAL": "Blueprints",
|
|
17
|
-
"BLUE_PRINT_BLUE_PRINT_CODE": "Blue print code",
|
|
18
|
-
"BLUE_PRINT_QUERY_ID": "Query id",
|
|
19
|
-
"BLUE_PRINT_PAGE_SINGULAR": "blueprintpage",
|
|
20
|
-
"BLUE_PRINT_PAGE_PLURAL": "blueprintpages",
|
|
21
|
-
"BLUE_PRINT_PAGE_BLUE_PRINT_ID": "Blue print id",
|
|
22
|
-
"BLUE_PRINT_PAGE_ENABLED": "Enabled",
|
|
23
|
-
"BLUE_PRINT_PAGE_PAGE_NAME": "Page name",
|
|
24
|
-
"BLUE_PRINT_PAGE_PAGE_ORDER": "Page order",
|
|
25
|
-
"BLUE_PRINT_PAGE_QUERY_ID": "Query id",
|
|
26
|
-
"BLUE_PRINT_POINT_SINGULAR": "blueprintpoint",
|
|
27
|
-
"BLUE_PRINT_POINT_PLURAL": "blueprintpoints",
|
|
28
|
-
"BLUE_PRINT_POINT_BLUE_PRINT_PAGE_ID": "Blue print page id",
|
|
29
|
-
"BLUE_PRINT_POINT_FONT_SIZE": "Font size",
|
|
30
|
-
"BLUE_PRINT_POINT_POINT_CODE": "Point code",
|
|
31
|
-
"BLUE_PRINT_POINT_X": "X",
|
|
32
|
-
"BLUE_PRINT_POINT_Y": "Y",
|
|
33
|
-
"DASHBOARD_SINGULAR": "dashboard",
|
|
34
|
-
"DASHBOARD_PLURAL": "dashboards",
|
|
35
|
-
"DASHBOARD_DASHBOARD_CODE": "Dashboard code",
|
|
36
|
-
"DASHBOARD_DASHBOARD_NAME": "Dashboard name",
|
|
37
|
-
"DASHBOARD_DASHBOARD_TITLE": "Dashboard title",
|
|
38
|
-
"DASHBOARD_ENABLED": "Enabled",
|
|
39
|
-
"DASHBOARD_LOAD_WIDGETS_INDIVIDUALLY": "Load widgets individually",
|
|
40
|
-
"DASHBOARD_NUMBER_OF_COLUMNS": "Number of columns",
|
|
41
|
-
"DASHBOARD_WIDGET_SINGULAR": "dashboardwidget",
|
|
42
|
-
"DASHBOARD_WIDGET_PLURAL": "dashboardwidgets",
|
|
43
|
-
"DASHBOARD_WIDGET_DASHBOARD_ID": "Dashboard id",
|
|
44
|
-
"DASHBOARD_WIDGET_ENABLED": "Enabled",
|
|
45
|
-
"DASHBOARD_WIDGET_WIDGET_ID": "Widget id",
|
|
46
|
-
"DASHBOARD_WIDGET_WIDGET_ORDER": "Widget order",
|
|
47
|
-
"DATA_QUERY_SINGULAR": "Data Query",
|
|
48
|
-
"DATA_QUERY_PLURAL": "Data Queries",
|
|
49
|
-
"DATA_QUERY_DATASOURCE_CON_ID": "Datasource con id",
|
|
50
|
-
"DATA_QUERY_QUERY_NAME": "Query name",
|
|
51
|
-
"DATA_QUERY_QUERY_STR": "Query str",
|
|
52
|
-
"DATA_QUERY_USE_SYS_CON": "Use sys con",
|
|
53
|
-
"DATA_QUERY_PARAMETER_SINGULAR": "dataqueryparameter",
|
|
54
|
-
"DATA_QUERY_PARAMETER_PLURAL": "dataqueryparameters",
|
|
55
|
-
"DATA_QUERY_PARAMETER_DATA_QUERY_ID": "Data query id",
|
|
56
|
-
"DATA_QUERY_PARAMETER_DEFAULT_VALUE": "Default value",
|
|
57
|
-
"DATA_QUERY_PARAMETER_ENABLED": "Enabled",
|
|
58
|
-
"DATA_QUERY_PARAMETER_ENTITY_PARAMETER_ID": "Entity parameter id",
|
|
59
|
-
"DATA_QUERY_PARAMETER_HIDDEN": "Hidden",
|
|
60
|
-
"DATA_QUERY_PARAMETER_MANDATORY": "Mandatory",
|
|
61
|
-
"DATASOURCE_CONNECTION_SINGULAR": "Datasource Connection",
|
|
62
|
-
"DATASOURCE_CONNECTION_PLURAL": "Datasource Connections",
|
|
63
|
-
"DATASOURCE_CONNECTION_CONNECTION_NAME": "Connection name",
|
|
64
|
-
"DATASOURCE_CONNECTION_DATASOURCE_PASSWORD": "Datasource password",
|
|
65
|
-
"DATASOURCE_CONNECTION_DATASOURCE_TYPE": "Datasource type",
|
|
66
|
-
"DATASOURCE_CONNECTION_DATASOURCE_URL": "Datasource url",
|
|
67
|
-
"DATASOURCE_CONNECTION_DATASOURCE_USERNAME": "Datasource username",
|
|
68
|
-
"DATASOURCE_CONNECTION_ENABLED": "Enabled",
|
|
69
|
-
"ENTITY_PARAMETER_SINGULAR": "Entity Parameter",
|
|
70
|
-
"ENTITY_PARAMETER_PLURAL": "Entity Parameters",
|
|
71
|
-
"ENTITY_PARAMETER_ENABLED": "Enabled",
|
|
72
|
-
"ENTITY_PARAMETER_PARAMETER_CODE": "Parameter code",
|
|
73
|
-
"ENTITY_PARAMETER_PARAMETER_DATA_QUERY_ID": "Parameter data query id",
|
|
74
|
-
"ENTITY_PARAMETER_PARAMETER_DATASET": "Parameter dataset",
|
|
75
|
-
"ENTITY_PARAMETER_PARAMETER_DISPLAY_FIELD": "Parameter display field",
|
|
76
|
-
"ENTITY_PARAMETER_PARAMETER_LABEL": "Parameter label",
|
|
77
|
-
"ENTITY_PARAMETER_PARAMETER_TYPE": "Parameter type",
|
|
78
|
-
"ENTITY_PARAMETER_PARAMETER_VALUE_FIELD": "Parameter value field",
|
|
79
|
-
"ENTITY_PARAMETER_PARAMETER_VALUE_FORMAT": "Parameter value format",
|
|
80
|
-
"EXCEL_UPLOADER_DETAIL_SINGULAR": "exceluploaderdetail",
|
|
81
|
-
"EXCEL_UPLOADER_DETAIL_PLURAL": "exceluploaderdetails",
|
|
82
|
-
"EXCEL_UPLOADER_DETAIL_COLUMN_INDEX": "Column index",
|
|
83
|
-
"EXCEL_UPLOADER_DETAIL_EXCEL_UPLOADER_HEADER_ID": "Excel uploader header id",
|
|
84
|
-
"EXCEL_UPLOADER_DETAIL_LOOKUP_QUERY_ID": "Lookup query id",
|
|
85
|
-
"EXCEL_UPLOADER_DETAIL_TABLE_FIELD": "Table field",
|
|
86
|
-
"EXCEL_UPLOADER_HEADER_SINGULAR": "exceluploaderheader",
|
|
87
|
-
"EXCEL_UPLOADER_HEADER_PLURAL": "exceluploaderheaders",
|
|
88
|
-
"EXCEL_UPLOADER_HEADER_UPLOADER_CONNECTION_ID": "Uploader connection id",
|
|
89
|
-
"EXCEL_UPLOADER_HEADER_UPLOADER_DATABASE_NAME": "Uploader database name",
|
|
90
|
-
"EXCEL_UPLOADER_HEADER_UPLOADER_NAME": "Uploader name",
|
|
91
|
-
"EXCEL_UPLOADER_HEADER_UPLOADER_TABLE_NAME": "Uploader table name",
|
|
92
|
-
"LOOKUP_SINGULAR": "lookup",
|
|
93
|
-
"LOOKUP_PLURAL": "lookups",
|
|
94
|
-
"LOOKUP_ENABLED": "Enabled",
|
|
95
|
-
"LOOKUP_LOOKUP_AR_DISPLAY": "Lookup ar display",
|
|
96
|
-
"LOOKUP_LOOKUP_EN_DISPLAY": "Lookup en display",
|
|
97
|
-
"LOOKUP_LOOKUP_TYPE": "Lookup type",
|
|
98
|
-
"LOOKUP_LOOKUP_VALUE": "Lookup value",
|
|
99
|
-
"LOOKUP_ORG_CODE": "Org code",
|
|
100
|
-
"MAIL_ATTACHMENT_SINGULAR": "mailattachment",
|
|
101
|
-
"MAIL_ATTACHMENT_PLURAL": "mailattachments",
|
|
102
|
-
"MAIL_ATTACHMENT_ENABLED": "Enabled",
|
|
103
|
-
"MAIL_ATTACHMENT_MAIL_TEMPLATE_ID": "Mail template id",
|
|
104
|
-
"MAIL_ATTACHMENT_REPORT_ID": "Report id",
|
|
105
|
-
"MAIL_BODY_SINGULAR": "mailbody",
|
|
106
|
-
"MAIL_BODY_PLURAL": "mailbodies",
|
|
107
|
-
"MAIL_BODY_BODY_NAME": "Body Name",
|
|
108
|
-
"MAIL_BODY_BODY_CONTENT": "Body content",
|
|
109
|
-
"MAIL_BODY_BODY_CONTENT_DATA_QUERY_ID": "Body content data query id",
|
|
110
|
-
"MAIL_BODY_BODY_ORDER": "Body order",
|
|
111
|
-
"MAIL_BODY_ENABLED": "Enabled",
|
|
112
|
-
"MAIL_BODY_IS_MAIN": "Is main",
|
|
113
|
-
"MAIL_BODY_MAIL_TEMPLATE_ID": "Mail template id",
|
|
114
|
-
"MAIL_BODY_PRINT_FOR_EACH_RECORD": "Print for each record",
|
|
115
|
-
"MAIL_NOTIFICATION_QUEUE_SINGULAR": "mailnotificationqueue",
|
|
116
|
-
"MAIL_NOTIFICATION_QUEUE_PLURAL": "mailnotificationqueues",
|
|
117
|
-
"MAIL_NOTIFICATION_QUEUE_CUSTOM_MAIL_ATTACHED_REPORT_ID": "Custom mail attached report id",
|
|
118
|
-
"MAIL_NOTIFICATION_QUEUE_CUSTOM_MAIL_BODY": "Custom mail body",
|
|
119
|
-
"MAIL_NOTIFICATION_QUEUE_CUSTOM_MAIL_SUBJECT": "Custom mail subject",
|
|
120
|
-
"MAIL_NOTIFICATION_QUEUE_CUSTOM_RECIPIENTS": "Custom recipients",
|
|
121
|
-
"MAIL_NOTIFICATION_QUEUE_IS_NOTIFIED": "Is notified",
|
|
122
|
-
"MAIL_NOTIFICATION_QUEUE_MAIL_PARAMETERS": "Mail parameters",
|
|
123
|
-
"MAIL_NOTIFICATION_QUEUE_MAIL_TEMPLATE_ID": "Mail template id",
|
|
124
|
-
"MAIL_NOTIFICATION_QUEUE_NOTIFICATION_MESSAGE": "Notification message",
|
|
125
|
-
"MAIL_NOTIFICATION_QUEUE_NOTIFICATION_TIME": "Notification time",
|
|
126
|
-
"MAIL_RECIPIENT_SINGULAR": "mailrecipient",
|
|
127
|
-
"MAIL_RECIPIENT_PLURAL": "mailrecipients",
|
|
128
|
-
"MAIL_RECIPIENT_ENABLED": "Enabled",
|
|
129
|
-
"MAIL_RECIPIENT_MAIL_TEMPLATE_ID": "Mail template id",
|
|
130
|
-
"MAIL_RECIPIENT_RECIPIENT_MAIL": "Recipient mail",
|
|
131
|
-
"MAIL_RECIPIENT_RECIPIENT_TYPE": "Recipient type",
|
|
132
|
-
"MAIL_TEMPLATE_SINGULAR": "Mail Template",
|
|
133
|
-
"MAIL_TEMPLATE_PLURAL": "Mail Templates",
|
|
134
|
-
"MAIL_TEMPLATE_ENABLED": "Enabled",
|
|
135
|
-
"MAIL_TEMPLATE_MAIL_CC_DATA_QUERY_ID": "Mail cc data query id",
|
|
136
|
-
"MAIL_TEMPLATE_MAIL_SUBJECT": "Mail subject",
|
|
137
|
-
"MAIL_TEMPLATE_MAIL_TEMPLATE_CODE": "Mail template code",
|
|
138
|
-
"MAIL_TEMPLATE_MAIL_TEMPLATE_NAME": "Mail template name",
|
|
139
|
-
"MAIL_TEMPLATE_MAIL_TO_DATA_QUERY_ID": "Mail to data query id",
|
|
140
|
-
"MAIL_TEMPLATE_PERIOD_TYPE": "Period type",
|
|
141
|
-
"MAIL_TEMPLATE_PERIOD_VALUE": "Period value",
|
|
142
|
-
"MAIL_TEMPLATE_PERIODICAL": "Periodical",
|
|
143
|
-
"MAIL_TEMPLATE_START_SENDING_AT": "Start sending at",
|
|
144
|
-
"MAIL_TEMPLATE_SUBJECT_DATA_QUERY_ID": "Subject data query id",
|
|
145
|
-
"NOTIFICATION_SINGULAR": "notification",
|
|
146
|
-
"NOTIFICATION_PLURAL": "notifications",
|
|
147
|
-
"NOTIFICATION_ENABLED": "Enabled",
|
|
148
|
-
"NOTIFICATION_NOTIFICATION_ACTION_KEY": "Notification action key",
|
|
149
|
-
"NOTIFICATION_NOTIFICATION_ACTION_PAYLOAD": "Notification action payload",
|
|
150
|
-
"NOTIFICATION_NOTIFICATION_CODE": "Notification code",
|
|
151
|
-
"NOTIFICATION_NOTIFICATION_ICON": "Notification icon",
|
|
152
|
-
"NOTIFICATION_NOTIFICATION_QUERY_ID": "Notification query id",
|
|
153
|
-
"NOTIFICATION_NOTIFICATION_TEXT": "Notification text",
|
|
154
|
-
"NOTIFICATION_USERS_TO_NOTIFY_QUERY_ID": "Users to notify query id",
|
|
155
|
-
"NOTIFICATION_QUEUE_SINGULAR": "notificationqueue",
|
|
156
|
-
"NOTIFICATION_QUEUE_PLURAL": "notificationqueues",
|
|
157
|
-
"NOTIFICATION_QUEUE_CUSTOM_NOTIFICATION_ACTION_KEY": "Custom notification action key",
|
|
158
|
-
"NOTIFICATION_QUEUE_CUSTOM_NOTIFICATION_ACTION_PAYLOAD": "Custom notification action payload",
|
|
159
|
-
"NOTIFICATION_QUEUE_CUSTOM_NOTIFICATION_ICON": "Custom notification icon",
|
|
160
|
-
"NOTIFICATION_QUEUE_CUSTOM_NOTIFICATION_TEXT": "Custom notification text",
|
|
161
|
-
"NOTIFICATION_QUEUE_IS_NOTIFIED": "Is notified",
|
|
162
|
-
"NOTIFICATION_QUEUE_NOTIFICATION_CODE": "Notification code",
|
|
163
|
-
"NOTIFICATION_QUEUE_NOTIFICATION_PARAMS": "Notification params",
|
|
164
|
-
"NOTIFICATION_QUEUE_NOTIFIED_TIME": "Notified time",
|
|
165
|
-
"NOTIFICATION_QUEUE_USERNAME": "Username",
|
|
166
|
-
|
|
167
|
-
"REPORT_SINGULAR": "Report",
|
|
168
|
-
"REPORT_PLURAL": "Reports",
|
|
169
|
-
"REPORT_DATASOURCE_CON_ID": "Datasource con id",
|
|
170
|
-
"REPORT_REPORT_BLUE_PRINT_ID": "Report blue print id",
|
|
171
|
-
"REPORT_REPORT_CATEGORY": "Report category",
|
|
172
|
-
"REPORT_REPORT_CODE": "Report code",
|
|
173
|
-
"REPORT_REPORT_EXCEL_DATA_QUERY_ID": "Report excel data query id",
|
|
174
|
-
"REPORT_REPORT_EXPORT_NAME": "Report export name",
|
|
175
|
-
"REPORT_REPORT_JASPER_NAME": "Report jasper name",
|
|
176
|
-
"REPORT_REPORT_JASPER_PATH": "Report jasper path",
|
|
177
|
-
"REPORT_REPORT_MENU_CODE": "Report menu code",
|
|
178
|
-
"REPORT_REPORT_NAME": "Report name",
|
|
179
|
-
"REPORT_REPORT_TYPE": "Report type",
|
|
180
|
-
"REPORT_USE_SYS_DATASOURCE": "Use sys datasource",
|
|
181
|
-
"REPORT_PARAMETER_SINGULAR": "reportparameter",
|
|
182
|
-
"REPORT_PARAMETER_PLURAL": "reportparameters",
|
|
183
|
-
"REPORT_PARAMETER_DEFAULT_VALUE": "Default value",
|
|
184
|
-
"REPORT_PARAMETER_ENABLED": "Enabled",
|
|
185
|
-
"REPORT_PARAMETER_ENTITY_PARAMETER_ID": "Entity parameter id",
|
|
186
|
-
"REPORT_PARAMETER_HIDDEN": "Hidden",
|
|
187
|
-
"REPORT_PARAMETER_MANDATORY": "Mandatory",
|
|
188
|
-
"REPORT_PARAMETER_REPORT_ID": "Report id",
|
|
189
|
-
|
|
190
|
-
"USER_REQUEST_SINGULAR": "userrequest",
|
|
191
|
-
"USER_REQUEST_PLURAL": "userrequests",
|
|
192
|
-
"USER_REQUEST_IS_NOTIFIED": "Is notified",
|
|
193
|
-
"USER_REQUEST_MAILS_TO_NOTIFY": "Mails to notify",
|
|
194
|
-
"USER_REQUEST_NOTIFICATION_MESSAGE": "Notification message",
|
|
195
|
-
"USER_REQUEST_NOTIFICATION_TIME": "Notification time",
|
|
196
|
-
"USER_REQUEST_NOTIFICATION_TYPE": "Notification type",
|
|
197
|
-
"USER_REQUEST_NOTIFY_USER": "Notify user",
|
|
198
|
-
"USER_REQUEST_REPORT_CODE": "Report code",
|
|
199
|
-
"USER_REQUEST_REPORT_PARAMETERS": "Report parameters",
|
|
200
|
-
"USER_REQUEST_REQUEST_TYPE": "Request type",
|
|
201
|
-
"USER_REQUEST_STATUS": "Status",
|
|
202
|
-
"USER_REQUEST_STATUS_MESSAGE": "Status message",
|
|
203
|
-
"WIDGET_SINGULAR": "widget",
|
|
204
|
-
"WIDGET_PLURAL": "widgets",
|
|
205
|
-
"WIDGET_DATA_QUERY_ID": "Data query id",
|
|
206
|
-
"WIDGET_ENABLED": "Enabled",
|
|
207
|
-
"WIDGET_HEIGHT": "Height",
|
|
208
|
-
"WIDGET_HORIZONTAL_AXIS_FIELD": "Horizontal axis field",
|
|
209
|
-
"WIDGET_HORIZONTAL_AXIS_LABEL": "Horizontal axis label",
|
|
210
|
-
"WIDGET_ICON": "Icon",
|
|
211
|
-
"WIDGET_SERIES_KEYS": "Series keys",
|
|
212
|
-
"WIDGET_TITLE": "Title",
|
|
213
|
-
"WIDGET_VERTICAL_AXIS_FIELD": "Vertical axis field",
|
|
214
|
-
"WIDGET_VERTICAL_AXIS_LABEL": "Vertical axis label",
|
|
215
|
-
"WIDGET_WIDGET_DESCRIPTION": "Widget description",
|
|
216
|
-
"WIDGET_WIDGET_NAME": "Widget name",
|
|
217
|
-
"WIDGET_WIDGET_TYPE": "Widget type",
|
|
218
|
-
"WIDGET_WIDTH": "Width",
|
|
219
|
-
"WORKFLOW_DOCUMENT_SINGULAR": "Workflow Document",
|
|
220
|
-
"WORKFLOW_DOCUMENT_PLURAL": "Workflow Documents",
|
|
221
|
-
"WORKFLOW_DOCUMENT_APP_NOTIFICATION_ICON": "App notification icon",
|
|
222
|
-
"WORKFLOW_DOCUMENT_APP_NOTIFICATION_STYLE": "App notification style",
|
|
223
|
-
"WORKFLOW_DOCUMENT_APP_VIEW_ROUTE": "App view route",
|
|
224
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_CODE": "Document code",
|
|
225
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_CON_ID": "Document con id",
|
|
226
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_DATABASE_NAME": "Document database name",
|
|
227
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_DATABASE_TABLE": "Document database table",
|
|
228
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_ID_FIELD": "Document id field",
|
|
229
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_NAME": "Document name",
|
|
230
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_NUMBER_FIELD": "Document number field",
|
|
231
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_REPORT_ID": "Document report id",
|
|
232
|
-
"WORKFLOW_DOCUMENT_DOCUMENT_STATUS_FIELD": "Document status field",
|
|
233
|
-
"WORKFLOW_DOCUMENT_MAIL_APPROVAL_ALLOWED": "Mail approval allowed",
|
|
234
|
-
"WORKFLOW_DOCUMENT_ORG_CODE": "Org code",
|
|
235
|
-
"WORKFLOW_DOCUMENT_USE_SYSTEM_CON": "Use system con",
|
|
236
|
-
"WORKFLOW_DOCUMENT_ACTION_SINGULAR": "workflowdocumentaction",
|
|
237
|
-
"WORKFLOW_DOCUMENT_ACTION_PLURAL": "workflowdocumentactions",
|
|
238
|
-
"WORKFLOW_DOCUMENT_ACTION_DOCUMENT_ACTION_CODE": "Document action code",
|
|
239
|
-
"WORKFLOW_DOCUMENT_ACTION_DOCUMENT_ACTION_NAME": "Document action name",
|
|
240
|
-
"WORKFLOW_DOCUMENT_ACTION_NEXT_DOCUMENT_STATUS_ID": "Next document status id",
|
|
241
|
-
"WORKFLOW_DOCUMENT_ACTION_POST_ACTION_ENDPOINT": "Post action endpoint",
|
|
242
|
-
"WORKFLOW_DOCUMENT_ACTION_PRE_ACTION_ENDPOINT": "Pre action endpoint",
|
|
243
|
-
"WORKFLOW_DOCUMENT_ACTION_REQUIRE_COMMENT": "Require comment",
|
|
244
|
-
"WORKFLOW_DOCUMENT_ACTION_WORKFLOW_DOCUMENT_ID": "Workflow document id",
|
|
245
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_SINGULAR": "workflowdocumentactionhistory",
|
|
246
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_PLURAL": "workflowdocumentactionhistories",
|
|
247
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_ACTION_BY": "Action by",
|
|
248
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_ACTION_COMMENT": "Action comment",
|
|
249
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_ACTION_METHOD": "Action method",
|
|
250
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_ACTION_TIME": "Action time",
|
|
251
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_DOCUMENT_ACTION_ID": "Document action id",
|
|
252
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_DOCUMENT_REF_ID": "Document ref id",
|
|
253
|
-
"WORKFLOW_DOCUMENT_ACTION_HISTORY_WORKFLOW_DOCUMENT_ID": "Workflow document id",
|
|
254
|
-
"WORKFLOW_DOCUMENT_ACTION_MAIL_SINGULAR": "workflowdocumentactionmail",
|
|
255
|
-
"WORKFLOW_DOCUMENT_ACTION_MAIL_PLURAL": "workflowdocumentactionmails",
|
|
256
|
-
"WORKFLOW_DOCUMENT_ACTION_MAIL_DOCUMENT_ACTION_ID": "Document action id",
|
|
257
|
-
"WORKFLOW_DOCUMENT_ACTION_MAIL_ENABLED": "Enabled",
|
|
258
|
-
"WORKFLOW_DOCUMENT_ACTION_MAIL_MAIL_TEMPLATE_ID": "Mail template id",
|
|
259
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_SINGULAR": "workflowdocumentmaillog",
|
|
260
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_PLURAL": "workflowdocumentmaillogs",
|
|
261
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_GRAPH_API_MSG_ID": "Graph api msg id",
|
|
262
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_IS_PROCESSED": "Is processed",
|
|
263
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_ACTION_CODE": "Mail action code",
|
|
264
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_BODY_CONTENT": "Mail body content",
|
|
265
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_FROM": "Mail from",
|
|
266
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_SUBJECT": "Mail subject",
|
|
267
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_PROCESS_MESSAGE": "Process message",
|
|
268
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_PROCESS_TIME": "Process time",
|
|
269
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_REF_DOC_ID": "Ref doc id",
|
|
270
|
-
"WORKFLOW_DOCUMENT_MAIL_LOG_WORKFLOW_DOCUMENT_ID": "Workflow document id",
|
|
271
|
-
"WORKFLOW_DOCUMENT_STATUS_SINGULAR": "workflowdocumentstatus",
|
|
272
|
-
"WORKFLOW_DOCUMENT_STATUS_PLURAL": "workflowdocumentstatuses",
|
|
273
|
-
"WORKFLOW_DOCUMENT_STATUS_DOCUMENT_STATUS_CODE": "Document status code",
|
|
274
|
-
"WORKFLOW_DOCUMENT_STATUS_DOCUMENT_STATUS_NAME": "Document status name",
|
|
275
|
-
"WORKFLOW_DOCUMENT_STATUS_DOCUMENT_STATUS_ORDER": "Document status order",
|
|
276
|
-
"WORKFLOW_DOCUMENT_STATUS_ENABLED": "Enabled",
|
|
277
|
-
"WORKFLOW_DOCUMENT_STATUS_IS_ZERO_STATE": "Is zero state",
|
|
278
|
-
"WORKFLOW_DOCUMENT_STATUS_NEXT_ACTION_TAKERS_QUERY_ID": "Next action takers query id",
|
|
279
|
-
"WORKFLOW_DOCUMENT_STATUS_NEXT_ACTIONS_QUERY_ID": "Next actions query id",
|
|
280
|
-
"WORKFLOW_DOCUMENT_STATUS_WORKFLOW_DOCUMENT_ID": "Workflow document id",
|
|
281
|
-
"ATTACHMENT_ATTACHMENT_CONFIG_ID": "Attachment config id",
|
|
282
|
-
"ATTACHMENT_CONFIG_SINGULAR": "Attachment Configuration",
|
|
283
|
-
"ATTACHMENT_CONFIG_PLURAL": "Attachment Configuration",
|
|
284
|
-
"ATTACHMENT_CONFIG_ALLOWED_FILE_TYPES": "Allowed file types",
|
|
285
|
-
"ATTACHMENT_CONFIG_ATTACHMENT_CATEGORIES": "Attachment categories",
|
|
286
|
-
"ATTACHMENT_CONFIG_ATTACHMENT_CODE": "Attachment code",
|
|
287
|
-
"ATTACHMENT_CONFIG_DOWNLOAD_AUTHORITY_KEY": "Download authority key",
|
|
288
|
-
"ATTACHMENT_CONFIG_MAX_ALLOWED_NUMBER_OF_FILES": "Max allowed number of files",
|
|
289
|
-
"ATTACHMENT_CONFIG_RELATED_DATABASE_TABLE": "Related database table",
|
|
290
|
-
"ATTACHMENT_CONFIG_STORAGE_TYPE": "Storage type",
|
|
291
|
-
"ATTACHMENT_CONFIG_UPLOAD_AUTHORITY_KEY": "Upload authority key",
|
|
292
|
-
"ATTACHMENT_CONFIG_UPLOAD_DIRECTORY": "Upload directory",
|
|
293
|
-
"NOTIFICATION_SINGULAR": "notification",
|
|
294
|
-
"NOTIFICATION_PLURAL": "notifications",
|
|
295
|
-
"NOTIFICATION_IS_ACTIVE": "Is active",
|
|
296
|
-
"NOTIFICATION_NOTIFICATION_ACTION_PAYLOAD": "Notification action payload",
|
|
297
|
-
"NOTIFICATION_NOTIFICATION_CODE": "Notification code",
|
|
298
|
-
"NOTIFICATION_NOTIFICATION_ICON": "Notification icon",
|
|
299
|
-
"NOTIFICATION_NOTIFICATION_QUERY_ID": "Notification query id",
|
|
300
|
-
"NOTIFICATION_SYSTEM_APPLICATION_ID": "System application id",
|
|
301
|
-
"NOTIFICATION_USERS_TO_NOTIFY_QUERY_ID": "Users to notify query id",
|
|
302
|
-
"NOTIFICATION_AUTHORITY_TO_NOTIFY": "Authority to notify",
|
|
303
|
-
"NOTIFICATION_NOTIFICATION_ACTION": "Notification action",
|
|
304
|
-
"NOTIFICATION_NOTIFICATION_AR_TEXT": "Notification ar text",
|
|
305
|
-
"NOTIFICATION_NOTIFICATION_EN_TEXT": "Notification en text",
|
|
306
|
-
"NOTIFICATION_NOTIFICATION_ICON_COLOR": "Notification icon color",
|
|
307
|
-
"NOTIFICATION_NOTIFICATION_TEXT_COLOR": "Notification text color",
|
|
308
|
-
"NOTIFICATION_ORGANIZATION_ID_FIELD": "Organization id field",
|
|
309
|
-
"NOTIFICATION_QUEUE_SYSTEM_APPLICATION_ID": "System application id",
|
|
310
|
-
"NOTIFICATION_QUEUE_NOTIFICATION_ACTION": "Notification action",
|
|
311
|
-
"NOTIFICATION_QUEUE_NOTIFICATION_ACTION_PAYLOAD": "Notification action payload",
|
|
312
|
-
"NOTIFICATION_QUEUE_NOTIFICATION_AR_TEXT": "Notification ar text",
|
|
313
|
-
"NOTIFICATION_QUEUE_NOTIFICATION_EN_TEXT": "Notification en text",
|
|
314
|
-
"NOTIFICATION_QUEUE_NOTIFICATION_ICON": "Notification icon",
|
|
315
|
-
"NOTIFICATION_QUEUE_NOTIFICATION_ICON_COLOR": "Notification icon color",
|
|
316
|
-
"NOTIFICATION_QUEUE_NOTIFICATION_ID": "Notification id",
|
|
317
|
-
"NOTIFICATION_QUEUE_NOTIFICATION_TEXT_COLOR": "Notification text color"
|
|
318
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"DEVELOPMENT_TOOLS": "Development Tools",
|
|
3
|
+
"SYSTEM_MONITORING": "System Monitoring",
|
|
4
|
+
"dev": "dev",
|
|
5
|
+
"ATTACHMENT_SINGULAR": "attachment",
|
|
6
|
+
"ATTACHMENT_PLURAL": "attachments",
|
|
7
|
+
"ATTACHMENT_ATTACHMENT_NUMBER": "Attachment number",
|
|
8
|
+
"ATTACHMENT_ATTACHMENT_SIZE": "Attachment size",
|
|
9
|
+
"ATTACHMENT_ATTACHMENT_TYPE": "Attachment type",
|
|
10
|
+
"ATTACHMENT_CATEGORY": "Category",
|
|
11
|
+
"ATTACHMENT_DOC_TYPE": "Doc type",
|
|
12
|
+
"ATTACHMENT_FILE_NAME": "File name",
|
|
13
|
+
"ATTACHMENT_REF_KEY": "Ref key",
|
|
14
|
+
"ATTACHMENT_REMARK": "Remark",
|
|
15
|
+
"BLUE_PRINT_SINGULAR": "Blueprint",
|
|
16
|
+
"BLUE_PRINT_PLURAL": "Blueprints",
|
|
17
|
+
"BLUE_PRINT_BLUE_PRINT_CODE": "Blue print code",
|
|
18
|
+
"BLUE_PRINT_QUERY_ID": "Query id",
|
|
19
|
+
"BLUE_PRINT_PAGE_SINGULAR": "blueprintpage",
|
|
20
|
+
"BLUE_PRINT_PAGE_PLURAL": "blueprintpages",
|
|
21
|
+
"BLUE_PRINT_PAGE_BLUE_PRINT_ID": "Blue print id",
|
|
22
|
+
"BLUE_PRINT_PAGE_ENABLED": "Enabled",
|
|
23
|
+
"BLUE_PRINT_PAGE_PAGE_NAME": "Page name",
|
|
24
|
+
"BLUE_PRINT_PAGE_PAGE_ORDER": "Page order",
|
|
25
|
+
"BLUE_PRINT_PAGE_QUERY_ID": "Query id",
|
|
26
|
+
"BLUE_PRINT_POINT_SINGULAR": "blueprintpoint",
|
|
27
|
+
"BLUE_PRINT_POINT_PLURAL": "blueprintpoints",
|
|
28
|
+
"BLUE_PRINT_POINT_BLUE_PRINT_PAGE_ID": "Blue print page id",
|
|
29
|
+
"BLUE_PRINT_POINT_FONT_SIZE": "Font size",
|
|
30
|
+
"BLUE_PRINT_POINT_POINT_CODE": "Point code",
|
|
31
|
+
"BLUE_PRINT_POINT_X": "X",
|
|
32
|
+
"BLUE_PRINT_POINT_Y": "Y",
|
|
33
|
+
"DASHBOARD_SINGULAR": "dashboard",
|
|
34
|
+
"DASHBOARD_PLURAL": "dashboards",
|
|
35
|
+
"DASHBOARD_DASHBOARD_CODE": "Dashboard code",
|
|
36
|
+
"DASHBOARD_DASHBOARD_NAME": "Dashboard name",
|
|
37
|
+
"DASHBOARD_DASHBOARD_TITLE": "Dashboard title",
|
|
38
|
+
"DASHBOARD_ENABLED": "Enabled",
|
|
39
|
+
"DASHBOARD_LOAD_WIDGETS_INDIVIDUALLY": "Load widgets individually",
|
|
40
|
+
"DASHBOARD_NUMBER_OF_COLUMNS": "Number of columns",
|
|
41
|
+
"DASHBOARD_WIDGET_SINGULAR": "dashboardwidget",
|
|
42
|
+
"DASHBOARD_WIDGET_PLURAL": "dashboardwidgets",
|
|
43
|
+
"DASHBOARD_WIDGET_DASHBOARD_ID": "Dashboard id",
|
|
44
|
+
"DASHBOARD_WIDGET_ENABLED": "Enabled",
|
|
45
|
+
"DASHBOARD_WIDGET_WIDGET_ID": "Widget id",
|
|
46
|
+
"DASHBOARD_WIDGET_WIDGET_ORDER": "Widget order",
|
|
47
|
+
"DATA_QUERY_SINGULAR": "Data Query",
|
|
48
|
+
"DATA_QUERY_PLURAL": "Data Queries",
|
|
49
|
+
"DATA_QUERY_DATASOURCE_CON_ID": "Datasource con id",
|
|
50
|
+
"DATA_QUERY_QUERY_NAME": "Query name",
|
|
51
|
+
"DATA_QUERY_QUERY_STR": "Query str",
|
|
52
|
+
"DATA_QUERY_USE_SYS_CON": "Use sys con",
|
|
53
|
+
"DATA_QUERY_PARAMETER_SINGULAR": "dataqueryparameter",
|
|
54
|
+
"DATA_QUERY_PARAMETER_PLURAL": "dataqueryparameters",
|
|
55
|
+
"DATA_QUERY_PARAMETER_DATA_QUERY_ID": "Data query id",
|
|
56
|
+
"DATA_QUERY_PARAMETER_DEFAULT_VALUE": "Default value",
|
|
57
|
+
"DATA_QUERY_PARAMETER_ENABLED": "Enabled",
|
|
58
|
+
"DATA_QUERY_PARAMETER_ENTITY_PARAMETER_ID": "Entity parameter id",
|
|
59
|
+
"DATA_QUERY_PARAMETER_HIDDEN": "Hidden",
|
|
60
|
+
"DATA_QUERY_PARAMETER_MANDATORY": "Mandatory",
|
|
61
|
+
"DATASOURCE_CONNECTION_SINGULAR": "Datasource Connection",
|
|
62
|
+
"DATASOURCE_CONNECTION_PLURAL": "Datasource Connections",
|
|
63
|
+
"DATASOURCE_CONNECTION_CONNECTION_NAME": "Connection name",
|
|
64
|
+
"DATASOURCE_CONNECTION_DATASOURCE_PASSWORD": "Datasource password",
|
|
65
|
+
"DATASOURCE_CONNECTION_DATASOURCE_TYPE": "Datasource type",
|
|
66
|
+
"DATASOURCE_CONNECTION_DATASOURCE_URL": "Datasource url",
|
|
67
|
+
"DATASOURCE_CONNECTION_DATASOURCE_USERNAME": "Datasource username",
|
|
68
|
+
"DATASOURCE_CONNECTION_ENABLED": "Enabled",
|
|
69
|
+
"ENTITY_PARAMETER_SINGULAR": "Entity Parameter",
|
|
70
|
+
"ENTITY_PARAMETER_PLURAL": "Entity Parameters",
|
|
71
|
+
"ENTITY_PARAMETER_ENABLED": "Enabled",
|
|
72
|
+
"ENTITY_PARAMETER_PARAMETER_CODE": "Parameter code",
|
|
73
|
+
"ENTITY_PARAMETER_PARAMETER_DATA_QUERY_ID": "Parameter data query id",
|
|
74
|
+
"ENTITY_PARAMETER_PARAMETER_DATASET": "Parameter dataset",
|
|
75
|
+
"ENTITY_PARAMETER_PARAMETER_DISPLAY_FIELD": "Parameter display field",
|
|
76
|
+
"ENTITY_PARAMETER_PARAMETER_LABEL": "Parameter label",
|
|
77
|
+
"ENTITY_PARAMETER_PARAMETER_TYPE": "Parameter type",
|
|
78
|
+
"ENTITY_PARAMETER_PARAMETER_VALUE_FIELD": "Parameter value field",
|
|
79
|
+
"ENTITY_PARAMETER_PARAMETER_VALUE_FORMAT": "Parameter value format",
|
|
80
|
+
"EXCEL_UPLOADER_DETAIL_SINGULAR": "exceluploaderdetail",
|
|
81
|
+
"EXCEL_UPLOADER_DETAIL_PLURAL": "exceluploaderdetails",
|
|
82
|
+
"EXCEL_UPLOADER_DETAIL_COLUMN_INDEX": "Column index",
|
|
83
|
+
"EXCEL_UPLOADER_DETAIL_EXCEL_UPLOADER_HEADER_ID": "Excel uploader header id",
|
|
84
|
+
"EXCEL_UPLOADER_DETAIL_LOOKUP_QUERY_ID": "Lookup query id",
|
|
85
|
+
"EXCEL_UPLOADER_DETAIL_TABLE_FIELD": "Table field",
|
|
86
|
+
"EXCEL_UPLOADER_HEADER_SINGULAR": "exceluploaderheader",
|
|
87
|
+
"EXCEL_UPLOADER_HEADER_PLURAL": "exceluploaderheaders",
|
|
88
|
+
"EXCEL_UPLOADER_HEADER_UPLOADER_CONNECTION_ID": "Uploader connection id",
|
|
89
|
+
"EXCEL_UPLOADER_HEADER_UPLOADER_DATABASE_NAME": "Uploader database name",
|
|
90
|
+
"EXCEL_UPLOADER_HEADER_UPLOADER_NAME": "Uploader name",
|
|
91
|
+
"EXCEL_UPLOADER_HEADER_UPLOADER_TABLE_NAME": "Uploader table name",
|
|
92
|
+
"LOOKUP_SINGULAR": "lookup",
|
|
93
|
+
"LOOKUP_PLURAL": "lookups",
|
|
94
|
+
"LOOKUP_ENABLED": "Enabled",
|
|
95
|
+
"LOOKUP_LOOKUP_AR_DISPLAY": "Lookup ar display",
|
|
96
|
+
"LOOKUP_LOOKUP_EN_DISPLAY": "Lookup en display",
|
|
97
|
+
"LOOKUP_LOOKUP_TYPE": "Lookup type",
|
|
98
|
+
"LOOKUP_LOOKUP_VALUE": "Lookup value",
|
|
99
|
+
"LOOKUP_ORG_CODE": "Org code",
|
|
100
|
+
"MAIL_ATTACHMENT_SINGULAR": "mailattachment",
|
|
101
|
+
"MAIL_ATTACHMENT_PLURAL": "mailattachments",
|
|
102
|
+
"MAIL_ATTACHMENT_ENABLED": "Enabled",
|
|
103
|
+
"MAIL_ATTACHMENT_MAIL_TEMPLATE_ID": "Mail template id",
|
|
104
|
+
"MAIL_ATTACHMENT_REPORT_ID": "Report id",
|
|
105
|
+
"MAIL_BODY_SINGULAR": "mailbody",
|
|
106
|
+
"MAIL_BODY_PLURAL": "mailbodies",
|
|
107
|
+
"MAIL_BODY_BODY_NAME": "Body Name",
|
|
108
|
+
"MAIL_BODY_BODY_CONTENT": "Body content",
|
|
109
|
+
"MAIL_BODY_BODY_CONTENT_DATA_QUERY_ID": "Body content data query id",
|
|
110
|
+
"MAIL_BODY_BODY_ORDER": "Body order",
|
|
111
|
+
"MAIL_BODY_ENABLED": "Enabled",
|
|
112
|
+
"MAIL_BODY_IS_MAIN": "Is main",
|
|
113
|
+
"MAIL_BODY_MAIL_TEMPLATE_ID": "Mail template id",
|
|
114
|
+
"MAIL_BODY_PRINT_FOR_EACH_RECORD": "Print for each record",
|
|
115
|
+
"MAIL_NOTIFICATION_QUEUE_SINGULAR": "mailnotificationqueue",
|
|
116
|
+
"MAIL_NOTIFICATION_QUEUE_PLURAL": "mailnotificationqueues",
|
|
117
|
+
"MAIL_NOTIFICATION_QUEUE_CUSTOM_MAIL_ATTACHED_REPORT_ID": "Custom mail attached report id",
|
|
118
|
+
"MAIL_NOTIFICATION_QUEUE_CUSTOM_MAIL_BODY": "Custom mail body",
|
|
119
|
+
"MAIL_NOTIFICATION_QUEUE_CUSTOM_MAIL_SUBJECT": "Custom mail subject",
|
|
120
|
+
"MAIL_NOTIFICATION_QUEUE_CUSTOM_RECIPIENTS": "Custom recipients",
|
|
121
|
+
"MAIL_NOTIFICATION_QUEUE_IS_NOTIFIED": "Is notified",
|
|
122
|
+
"MAIL_NOTIFICATION_QUEUE_MAIL_PARAMETERS": "Mail parameters",
|
|
123
|
+
"MAIL_NOTIFICATION_QUEUE_MAIL_TEMPLATE_ID": "Mail template id",
|
|
124
|
+
"MAIL_NOTIFICATION_QUEUE_NOTIFICATION_MESSAGE": "Notification message",
|
|
125
|
+
"MAIL_NOTIFICATION_QUEUE_NOTIFICATION_TIME": "Notification time",
|
|
126
|
+
"MAIL_RECIPIENT_SINGULAR": "mailrecipient",
|
|
127
|
+
"MAIL_RECIPIENT_PLURAL": "mailrecipients",
|
|
128
|
+
"MAIL_RECIPIENT_ENABLED": "Enabled",
|
|
129
|
+
"MAIL_RECIPIENT_MAIL_TEMPLATE_ID": "Mail template id",
|
|
130
|
+
"MAIL_RECIPIENT_RECIPIENT_MAIL": "Recipient mail",
|
|
131
|
+
"MAIL_RECIPIENT_RECIPIENT_TYPE": "Recipient type",
|
|
132
|
+
"MAIL_TEMPLATE_SINGULAR": "Mail Template",
|
|
133
|
+
"MAIL_TEMPLATE_PLURAL": "Mail Templates",
|
|
134
|
+
"MAIL_TEMPLATE_ENABLED": "Enabled",
|
|
135
|
+
"MAIL_TEMPLATE_MAIL_CC_DATA_QUERY_ID": "Mail cc data query id",
|
|
136
|
+
"MAIL_TEMPLATE_MAIL_SUBJECT": "Mail subject",
|
|
137
|
+
"MAIL_TEMPLATE_MAIL_TEMPLATE_CODE": "Mail template code",
|
|
138
|
+
"MAIL_TEMPLATE_MAIL_TEMPLATE_NAME": "Mail template name",
|
|
139
|
+
"MAIL_TEMPLATE_MAIL_TO_DATA_QUERY_ID": "Mail to data query id",
|
|
140
|
+
"MAIL_TEMPLATE_PERIOD_TYPE": "Period type",
|
|
141
|
+
"MAIL_TEMPLATE_PERIOD_VALUE": "Period value",
|
|
142
|
+
"MAIL_TEMPLATE_PERIODICAL": "Periodical",
|
|
143
|
+
"MAIL_TEMPLATE_START_SENDING_AT": "Start sending at",
|
|
144
|
+
"MAIL_TEMPLATE_SUBJECT_DATA_QUERY_ID": "Subject data query id",
|
|
145
|
+
"NOTIFICATION_SINGULAR": "notification",
|
|
146
|
+
"NOTIFICATION_PLURAL": "notifications",
|
|
147
|
+
"NOTIFICATION_ENABLED": "Enabled",
|
|
148
|
+
"NOTIFICATION_NOTIFICATION_ACTION_KEY": "Notification action key",
|
|
149
|
+
"NOTIFICATION_NOTIFICATION_ACTION_PAYLOAD": "Notification action payload",
|
|
150
|
+
"NOTIFICATION_NOTIFICATION_CODE": "Notification code",
|
|
151
|
+
"NOTIFICATION_NOTIFICATION_ICON": "Notification icon",
|
|
152
|
+
"NOTIFICATION_NOTIFICATION_QUERY_ID": "Notification query id",
|
|
153
|
+
"NOTIFICATION_NOTIFICATION_TEXT": "Notification text",
|
|
154
|
+
"NOTIFICATION_USERS_TO_NOTIFY_QUERY_ID": "Users to notify query id",
|
|
155
|
+
"NOTIFICATION_QUEUE_SINGULAR": "notificationqueue",
|
|
156
|
+
"NOTIFICATION_QUEUE_PLURAL": "notificationqueues",
|
|
157
|
+
"NOTIFICATION_QUEUE_CUSTOM_NOTIFICATION_ACTION_KEY": "Custom notification action key",
|
|
158
|
+
"NOTIFICATION_QUEUE_CUSTOM_NOTIFICATION_ACTION_PAYLOAD": "Custom notification action payload",
|
|
159
|
+
"NOTIFICATION_QUEUE_CUSTOM_NOTIFICATION_ICON": "Custom notification icon",
|
|
160
|
+
"NOTIFICATION_QUEUE_CUSTOM_NOTIFICATION_TEXT": "Custom notification text",
|
|
161
|
+
"NOTIFICATION_QUEUE_IS_NOTIFIED": "Is notified",
|
|
162
|
+
"NOTIFICATION_QUEUE_NOTIFICATION_CODE": "Notification code",
|
|
163
|
+
"NOTIFICATION_QUEUE_NOTIFICATION_PARAMS": "Notification params",
|
|
164
|
+
"NOTIFICATION_QUEUE_NOTIFIED_TIME": "Notified time",
|
|
165
|
+
"NOTIFICATION_QUEUE_USERNAME": "Username",
|
|
166
|
+
|
|
167
|
+
"REPORT_SINGULAR": "Report",
|
|
168
|
+
"REPORT_PLURAL": "Reports",
|
|
169
|
+
"REPORT_DATASOURCE_CON_ID": "Datasource con id",
|
|
170
|
+
"REPORT_REPORT_BLUE_PRINT_ID": "Report blue print id",
|
|
171
|
+
"REPORT_REPORT_CATEGORY": "Report category",
|
|
172
|
+
"REPORT_REPORT_CODE": "Report code",
|
|
173
|
+
"REPORT_REPORT_EXCEL_DATA_QUERY_ID": "Report excel data query id",
|
|
174
|
+
"REPORT_REPORT_EXPORT_NAME": "Report export name",
|
|
175
|
+
"REPORT_REPORT_JASPER_NAME": "Report jasper name",
|
|
176
|
+
"REPORT_REPORT_JASPER_PATH": "Report jasper path",
|
|
177
|
+
"REPORT_REPORT_MENU_CODE": "Report menu code",
|
|
178
|
+
"REPORT_REPORT_NAME": "Report name",
|
|
179
|
+
"REPORT_REPORT_TYPE": "Report type",
|
|
180
|
+
"REPORT_USE_SYS_DATASOURCE": "Use sys datasource",
|
|
181
|
+
"REPORT_PARAMETER_SINGULAR": "reportparameter",
|
|
182
|
+
"REPORT_PARAMETER_PLURAL": "reportparameters",
|
|
183
|
+
"REPORT_PARAMETER_DEFAULT_VALUE": "Default value",
|
|
184
|
+
"REPORT_PARAMETER_ENABLED": "Enabled",
|
|
185
|
+
"REPORT_PARAMETER_ENTITY_PARAMETER_ID": "Entity parameter id",
|
|
186
|
+
"REPORT_PARAMETER_HIDDEN": "Hidden",
|
|
187
|
+
"REPORT_PARAMETER_MANDATORY": "Mandatory",
|
|
188
|
+
"REPORT_PARAMETER_REPORT_ID": "Report id",
|
|
189
|
+
|
|
190
|
+
"USER_REQUEST_SINGULAR": "userrequest",
|
|
191
|
+
"USER_REQUEST_PLURAL": "userrequests",
|
|
192
|
+
"USER_REQUEST_IS_NOTIFIED": "Is notified",
|
|
193
|
+
"USER_REQUEST_MAILS_TO_NOTIFY": "Mails to notify",
|
|
194
|
+
"USER_REQUEST_NOTIFICATION_MESSAGE": "Notification message",
|
|
195
|
+
"USER_REQUEST_NOTIFICATION_TIME": "Notification time",
|
|
196
|
+
"USER_REQUEST_NOTIFICATION_TYPE": "Notification type",
|
|
197
|
+
"USER_REQUEST_NOTIFY_USER": "Notify user",
|
|
198
|
+
"USER_REQUEST_REPORT_CODE": "Report code",
|
|
199
|
+
"USER_REQUEST_REPORT_PARAMETERS": "Report parameters",
|
|
200
|
+
"USER_REQUEST_REQUEST_TYPE": "Request type",
|
|
201
|
+
"USER_REQUEST_STATUS": "Status",
|
|
202
|
+
"USER_REQUEST_STATUS_MESSAGE": "Status message",
|
|
203
|
+
"WIDGET_SINGULAR": "widget",
|
|
204
|
+
"WIDGET_PLURAL": "widgets",
|
|
205
|
+
"WIDGET_DATA_QUERY_ID": "Data query id",
|
|
206
|
+
"WIDGET_ENABLED": "Enabled",
|
|
207
|
+
"WIDGET_HEIGHT": "Height",
|
|
208
|
+
"WIDGET_HORIZONTAL_AXIS_FIELD": "Horizontal axis field",
|
|
209
|
+
"WIDGET_HORIZONTAL_AXIS_LABEL": "Horizontal axis label",
|
|
210
|
+
"WIDGET_ICON": "Icon",
|
|
211
|
+
"WIDGET_SERIES_KEYS": "Series keys",
|
|
212
|
+
"WIDGET_TITLE": "Title",
|
|
213
|
+
"WIDGET_VERTICAL_AXIS_FIELD": "Vertical axis field",
|
|
214
|
+
"WIDGET_VERTICAL_AXIS_LABEL": "Vertical axis label",
|
|
215
|
+
"WIDGET_WIDGET_DESCRIPTION": "Widget description",
|
|
216
|
+
"WIDGET_WIDGET_NAME": "Widget name",
|
|
217
|
+
"WIDGET_WIDGET_TYPE": "Widget type",
|
|
218
|
+
"WIDGET_WIDTH": "Width",
|
|
219
|
+
"WORKFLOW_DOCUMENT_SINGULAR": "Workflow Document",
|
|
220
|
+
"WORKFLOW_DOCUMENT_PLURAL": "Workflow Documents",
|
|
221
|
+
"WORKFLOW_DOCUMENT_APP_NOTIFICATION_ICON": "App notification icon",
|
|
222
|
+
"WORKFLOW_DOCUMENT_APP_NOTIFICATION_STYLE": "App notification style",
|
|
223
|
+
"WORKFLOW_DOCUMENT_APP_VIEW_ROUTE": "App view route",
|
|
224
|
+
"WORKFLOW_DOCUMENT_DOCUMENT_CODE": "Document code",
|
|
225
|
+
"WORKFLOW_DOCUMENT_DOCUMENT_CON_ID": "Document con id",
|
|
226
|
+
"WORKFLOW_DOCUMENT_DOCUMENT_DATABASE_NAME": "Document database name",
|
|
227
|
+
"WORKFLOW_DOCUMENT_DOCUMENT_DATABASE_TABLE": "Document database table",
|
|
228
|
+
"WORKFLOW_DOCUMENT_DOCUMENT_ID_FIELD": "Document id field",
|
|
229
|
+
"WORKFLOW_DOCUMENT_DOCUMENT_NAME": "Document name",
|
|
230
|
+
"WORKFLOW_DOCUMENT_DOCUMENT_NUMBER_FIELD": "Document number field",
|
|
231
|
+
"WORKFLOW_DOCUMENT_DOCUMENT_REPORT_ID": "Document report id",
|
|
232
|
+
"WORKFLOW_DOCUMENT_DOCUMENT_STATUS_FIELD": "Document status field",
|
|
233
|
+
"WORKFLOW_DOCUMENT_MAIL_APPROVAL_ALLOWED": "Mail approval allowed",
|
|
234
|
+
"WORKFLOW_DOCUMENT_ORG_CODE": "Org code",
|
|
235
|
+
"WORKFLOW_DOCUMENT_USE_SYSTEM_CON": "Use system con",
|
|
236
|
+
"WORKFLOW_DOCUMENT_ACTION_SINGULAR": "workflowdocumentaction",
|
|
237
|
+
"WORKFLOW_DOCUMENT_ACTION_PLURAL": "workflowdocumentactions",
|
|
238
|
+
"WORKFLOW_DOCUMENT_ACTION_DOCUMENT_ACTION_CODE": "Document action code",
|
|
239
|
+
"WORKFLOW_DOCUMENT_ACTION_DOCUMENT_ACTION_NAME": "Document action name",
|
|
240
|
+
"WORKFLOW_DOCUMENT_ACTION_NEXT_DOCUMENT_STATUS_ID": "Next document status id",
|
|
241
|
+
"WORKFLOW_DOCUMENT_ACTION_POST_ACTION_ENDPOINT": "Post action endpoint",
|
|
242
|
+
"WORKFLOW_DOCUMENT_ACTION_PRE_ACTION_ENDPOINT": "Pre action endpoint",
|
|
243
|
+
"WORKFLOW_DOCUMENT_ACTION_REQUIRE_COMMENT": "Require comment",
|
|
244
|
+
"WORKFLOW_DOCUMENT_ACTION_WORKFLOW_DOCUMENT_ID": "Workflow document id",
|
|
245
|
+
"WORKFLOW_DOCUMENT_ACTION_HISTORY_SINGULAR": "workflowdocumentactionhistory",
|
|
246
|
+
"WORKFLOW_DOCUMENT_ACTION_HISTORY_PLURAL": "workflowdocumentactionhistories",
|
|
247
|
+
"WORKFLOW_DOCUMENT_ACTION_HISTORY_ACTION_BY": "Action by",
|
|
248
|
+
"WORKFLOW_DOCUMENT_ACTION_HISTORY_ACTION_COMMENT": "Action comment",
|
|
249
|
+
"WORKFLOW_DOCUMENT_ACTION_HISTORY_ACTION_METHOD": "Action method",
|
|
250
|
+
"WORKFLOW_DOCUMENT_ACTION_HISTORY_ACTION_TIME": "Action time",
|
|
251
|
+
"WORKFLOW_DOCUMENT_ACTION_HISTORY_DOCUMENT_ACTION_ID": "Document action id",
|
|
252
|
+
"WORKFLOW_DOCUMENT_ACTION_HISTORY_DOCUMENT_REF_ID": "Document ref id",
|
|
253
|
+
"WORKFLOW_DOCUMENT_ACTION_HISTORY_WORKFLOW_DOCUMENT_ID": "Workflow document id",
|
|
254
|
+
"WORKFLOW_DOCUMENT_ACTION_MAIL_SINGULAR": "workflowdocumentactionmail",
|
|
255
|
+
"WORKFLOW_DOCUMENT_ACTION_MAIL_PLURAL": "workflowdocumentactionmails",
|
|
256
|
+
"WORKFLOW_DOCUMENT_ACTION_MAIL_DOCUMENT_ACTION_ID": "Document action id",
|
|
257
|
+
"WORKFLOW_DOCUMENT_ACTION_MAIL_ENABLED": "Enabled",
|
|
258
|
+
"WORKFLOW_DOCUMENT_ACTION_MAIL_MAIL_TEMPLATE_ID": "Mail template id",
|
|
259
|
+
"WORKFLOW_DOCUMENT_MAIL_LOG_SINGULAR": "workflowdocumentmaillog",
|
|
260
|
+
"WORKFLOW_DOCUMENT_MAIL_LOG_PLURAL": "workflowdocumentmaillogs",
|
|
261
|
+
"WORKFLOW_DOCUMENT_MAIL_LOG_GRAPH_API_MSG_ID": "Graph api msg id",
|
|
262
|
+
"WORKFLOW_DOCUMENT_MAIL_LOG_IS_PROCESSED": "Is processed",
|
|
263
|
+
"WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_ACTION_CODE": "Mail action code",
|
|
264
|
+
"WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_BODY_CONTENT": "Mail body content",
|
|
265
|
+
"WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_FROM": "Mail from",
|
|
266
|
+
"WORKFLOW_DOCUMENT_MAIL_LOG_MAIL_SUBJECT": "Mail subject",
|
|
267
|
+
"WORKFLOW_DOCUMENT_MAIL_LOG_PROCESS_MESSAGE": "Process message",
|
|
268
|
+
"WORKFLOW_DOCUMENT_MAIL_LOG_PROCESS_TIME": "Process time",
|
|
269
|
+
"WORKFLOW_DOCUMENT_MAIL_LOG_REF_DOC_ID": "Ref doc id",
|
|
270
|
+
"WORKFLOW_DOCUMENT_MAIL_LOG_WORKFLOW_DOCUMENT_ID": "Workflow document id",
|
|
271
|
+
"WORKFLOW_DOCUMENT_STATUS_SINGULAR": "workflowdocumentstatus",
|
|
272
|
+
"WORKFLOW_DOCUMENT_STATUS_PLURAL": "workflowdocumentstatuses",
|
|
273
|
+
"WORKFLOW_DOCUMENT_STATUS_DOCUMENT_STATUS_CODE": "Document status code",
|
|
274
|
+
"WORKFLOW_DOCUMENT_STATUS_DOCUMENT_STATUS_NAME": "Document status name",
|
|
275
|
+
"WORKFLOW_DOCUMENT_STATUS_DOCUMENT_STATUS_ORDER": "Document status order",
|
|
276
|
+
"WORKFLOW_DOCUMENT_STATUS_ENABLED": "Enabled",
|
|
277
|
+
"WORKFLOW_DOCUMENT_STATUS_IS_ZERO_STATE": "Is zero state",
|
|
278
|
+
"WORKFLOW_DOCUMENT_STATUS_NEXT_ACTION_TAKERS_QUERY_ID": "Next action takers query id",
|
|
279
|
+
"WORKFLOW_DOCUMENT_STATUS_NEXT_ACTIONS_QUERY_ID": "Next actions query id",
|
|
280
|
+
"WORKFLOW_DOCUMENT_STATUS_WORKFLOW_DOCUMENT_ID": "Workflow document id",
|
|
281
|
+
"ATTACHMENT_ATTACHMENT_CONFIG_ID": "Attachment config id",
|
|
282
|
+
"ATTACHMENT_CONFIG_SINGULAR": "Attachment Configuration",
|
|
283
|
+
"ATTACHMENT_CONFIG_PLURAL": "Attachment Configuration",
|
|
284
|
+
"ATTACHMENT_CONFIG_ALLOWED_FILE_TYPES": "Allowed file types",
|
|
285
|
+
"ATTACHMENT_CONFIG_ATTACHMENT_CATEGORIES": "Attachment categories",
|
|
286
|
+
"ATTACHMENT_CONFIG_ATTACHMENT_CODE": "Attachment code",
|
|
287
|
+
"ATTACHMENT_CONFIG_DOWNLOAD_AUTHORITY_KEY": "Download authority key",
|
|
288
|
+
"ATTACHMENT_CONFIG_MAX_ALLOWED_NUMBER_OF_FILES": "Max allowed number of files",
|
|
289
|
+
"ATTACHMENT_CONFIG_RELATED_DATABASE_TABLE": "Related database table",
|
|
290
|
+
"ATTACHMENT_CONFIG_STORAGE_TYPE": "Storage type",
|
|
291
|
+
"ATTACHMENT_CONFIG_UPLOAD_AUTHORITY_KEY": "Upload authority key",
|
|
292
|
+
"ATTACHMENT_CONFIG_UPLOAD_DIRECTORY": "Upload directory",
|
|
293
|
+
"NOTIFICATION_SINGULAR": "notification",
|
|
294
|
+
"NOTIFICATION_PLURAL": "notifications",
|
|
295
|
+
"NOTIFICATION_IS_ACTIVE": "Is active",
|
|
296
|
+
"NOTIFICATION_NOTIFICATION_ACTION_PAYLOAD": "Notification action payload",
|
|
297
|
+
"NOTIFICATION_NOTIFICATION_CODE": "Notification code",
|
|
298
|
+
"NOTIFICATION_NOTIFICATION_ICON": "Notification icon",
|
|
299
|
+
"NOTIFICATION_NOTIFICATION_QUERY_ID": "Notification query id",
|
|
300
|
+
"NOTIFICATION_SYSTEM_APPLICATION_ID": "System application id",
|
|
301
|
+
"NOTIFICATION_USERS_TO_NOTIFY_QUERY_ID": "Users to notify query id",
|
|
302
|
+
"NOTIFICATION_AUTHORITY_TO_NOTIFY": "Authority to notify",
|
|
303
|
+
"NOTIFICATION_NOTIFICATION_ACTION": "Notification action",
|
|
304
|
+
"NOTIFICATION_NOTIFICATION_AR_TEXT": "Notification ar text",
|
|
305
|
+
"NOTIFICATION_NOTIFICATION_EN_TEXT": "Notification en text",
|
|
306
|
+
"NOTIFICATION_NOTIFICATION_ICON_COLOR": "Notification icon color",
|
|
307
|
+
"NOTIFICATION_NOTIFICATION_TEXT_COLOR": "Notification text color",
|
|
308
|
+
"NOTIFICATION_ORGANIZATION_ID_FIELD": "Organization id field",
|
|
309
|
+
"NOTIFICATION_QUEUE_SYSTEM_APPLICATION_ID": "System application id",
|
|
310
|
+
"NOTIFICATION_QUEUE_NOTIFICATION_ACTION": "Notification action",
|
|
311
|
+
"NOTIFICATION_QUEUE_NOTIFICATION_ACTION_PAYLOAD": "Notification action payload",
|
|
312
|
+
"NOTIFICATION_QUEUE_NOTIFICATION_AR_TEXT": "Notification ar text",
|
|
313
|
+
"NOTIFICATION_QUEUE_NOTIFICATION_EN_TEXT": "Notification en text",
|
|
314
|
+
"NOTIFICATION_QUEUE_NOTIFICATION_ICON": "Notification icon",
|
|
315
|
+
"NOTIFICATION_QUEUE_NOTIFICATION_ICON_COLOR": "Notification icon color",
|
|
316
|
+
"NOTIFICATION_QUEUE_NOTIFICATION_ID": "Notification id",
|
|
317
|
+
"NOTIFICATION_QUEUE_NOTIFICATION_TEXT_COLOR": "Notification text color"
|
|
318
|
+
}
|