@acorex/core 6.5.28 → 6.5.30
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/README.md +3 -3
- package/acorex-core.d.ts +5 -0
- package/esm2020/acorex-core.mjs +5 -0
- package/esm2020/lib/classes/base-page.class.mjs +28 -0
- package/esm2020/lib/classes/color.class.mjs +49 -0
- package/esm2020/lib/classes/datetime.class.mjs +314 -0
- package/esm2020/lib/classes/menu.class.mjs +27 -0
- package/esm2020/lib/classes/navigator.class.mjs +2 -0
- package/esm2020/lib/classes/popup.class.mjs +2 -0
- package/esm2020/lib/classes/promise.class.mjs +19 -0
- package/esm2020/lib/classes/sectionlist.class.mjs +2 -0
- package/esm2020/lib/classes/select.class.mjs +3 -0
- package/esm2020/lib/core.module.mjs +27 -0
- package/esm2020/lib/error/error.class.mjs +2 -0
- package/esm2020/lib/error/error.module.mjs +19 -0
- package/esm2020/lib/error/error.service.mjs +21 -0
- package/esm2020/lib/events/keyboard.mjs +2 -0
- package/esm2020/lib/http/http-error.class.mjs +2 -0
- package/esm2020/lib/http/http-events.interceptor.mjs +3 -0
- package/esm2020/lib/http/http-request.class.mjs +2 -0
- package/esm2020/lib/http/http-result.class.mjs +21 -0
- package/esm2020/lib/http/http.module.mjs +37 -0
- package/esm2020/lib/http/http.service.mjs +145 -0
- package/{src → esm2020}/lib/locale/en.json +255 -255
- package/{src → esm2020}/lib/locale/fa.json +245 -245
- package/esm2020/lib/pipe/datetime.pipe.mjs +25 -0
- package/esm2020/lib/pipe/htmlToText.pipe.mjs +25 -0
- package/esm2020/lib/platform/index.mjs +2 -0
- package/esm2020/lib/platform/platform.service.mjs +150 -0
- package/esm2020/lib/services/config.mjs +29 -0
- package/esm2020/lib/services/event.service.mjs +36 -0
- package/esm2020/lib/services/navigator.service.mjs +10 -0
- package/esm2020/lib/services/storage.service.mjs +16 -0
- package/esm2020/lib/translator/translator.mjs +26 -0
- package/esm2020/lib/translator/translator.module.mjs +25 -0
- package/esm2020/lib/translator/translator.pipe.mjs +24 -0
- package/esm2020/lib/translator/translator.service.mjs +21 -0
- package/esm2020/lib/utils/array/array-util.mjs +133 -0
- package/esm2020/lib/utils/html/html-util.mjs +192 -0
- package/esm2020/lib/utils/html/html.module.mjs +19 -0
- package/esm2020/lib/utils/math/math-util.mjs +6 -0
- package/esm2020/lib/utils/object/object-util.mjs +83 -0
- package/esm2020/lib/utils/render/on-demand-preload-strategy.service.mjs +20 -0
- package/esm2020/lib/utils/render/render.service.mjs +103 -0
- package/esm2020/lib/utils/render/rendering.module.mjs +35 -0
- package/esm2020/lib/utils/scroll/scroll.directive.mjs +54 -0
- package/esm2020/lib/utils/scroll/scroll.module.mjs +19 -0
- package/esm2020/lib/utils/separator/separator.module.mjs +19 -0
- package/esm2020/lib/utils/separator/separator.pipe.mjs +33 -0
- package/esm2020/public-api.mjs +44 -0
- package/fesm2015/acorex-core.mjs +2274 -0
- package/fesm2015/acorex-core.mjs.map +1 -0
- package/fesm2020/acorex-core.mjs +2270 -0
- package/fesm2020/acorex-core.mjs.map +1 -0
- package/lib/classes/base-page.class.d.ts +13 -0
- package/lib/classes/color.class.d.ts +17 -0
- package/lib/classes/datetime.class.d.ts +63 -0
- package/lib/classes/menu.class.d.ts +34 -0
- package/{src/lib/classes/navigator.class.ts → lib/classes/navigator.class.d.ts} +5 -5
- package/{src/lib/classes/popup.class.ts → lib/classes/popup.class.d.ts} +12 -14
- package/lib/classes/promise.class.d.ts +7 -0
- package/{src/lib/classes/sectionlist.class.ts → lib/classes/sectionlist.class.d.ts} +8 -8
- package/lib/classes/select.class.d.ts +7 -0
- package/lib/core.module.d.ts +9 -0
- package/{src/lib/error/error.class.ts → lib/error/error.class.d.ts} +4 -4
- package/lib/error/error.module.d.ts +7 -0
- package/lib/error/error.service.d.ts +13 -0
- package/{src/lib/events/keyboard.ts → lib/events/keyboard.d.ts} +2 -5
- package/{src/lib/http/http-error.class.ts → lib/http/http-error.class.d.ts} +7 -7
- package/{src/lib/http/http-events.interceptor.ts → lib/http/http-events.interceptor.d.ts} +10 -14
- package/{src/lib/http/http-request.class.ts → lib/http/http-request.class.d.ts} +14 -14
- package/lib/http/http-result.class.d.ts +11 -0
- package/lib/http/http.module.d.ts +10 -0
- package/lib/http/http.service.d.ts +23 -0
- package/lib/pipe/datetime.pipe.d.ts +8 -0
- package/lib/pipe/htmlToText.pipe.d.ts +7 -0
- package/lib/platform/index.d.ts +1 -0
- package/lib/platform/platform.service.d.ts +26 -0
- package/lib/services/config.d.ts +9 -0
- package/lib/services/event.service.d.ts +9 -0
- package/lib/services/navigator.service.d.ts +8 -0
- package/lib/services/storage.service.d.ts +7 -0
- package/lib/translator/translator.d.ts +9 -0
- package/lib/translator/translator.module.d.ts +8 -0
- package/lib/translator/translator.pipe.d.ts +8 -0
- package/lib/translator/translator.service.d.ts +8 -0
- package/lib/utils/array/array-util.d.ts +6 -0
- package/lib/utils/html/html-util.d.ts +62 -0
- package/lib/utils/html/html.module.d.ts +8 -0
- package/lib/utils/math/math-util.d.ts +3 -0
- package/lib/utils/object/object-util.d.ts +7 -0
- package/lib/utils/render/on-demand-preload-strategy.service.d.ts +10 -0
- package/lib/utils/render/render.service.d.ts +18 -0
- package/lib/utils/render/rendering.module.d.ts +8 -0
- package/lib/utils/scroll/scroll.directive.d.ts +18 -0
- package/lib/utils/scroll/scroll.module.d.ts +8 -0
- package/lib/utils/separator/separator.module.d.ts +8 -0
- package/lib/utils/separator/separator.pipe.d.ts +8 -0
- package/package.json +33 -13
- package/{src/public-api.ts → public-api.d.ts} +43 -53
- package/karma.conf.js +0 -32
- package/ng-package.json +0 -10
- package/src/lib/classes/base-page.class.ts +0 -29
- package/src/lib/classes/color.class.ts +0 -61
- package/src/lib/classes/datetime.class.ts +0 -373
- package/src/lib/classes/menu.class.ts +0 -37
- package/src/lib/classes/promise.class.ts +0 -25
- package/src/lib/classes/select.class.ts +0 -7
- package/src/lib/core.module.ts +0 -21
- package/src/lib/error/error.module.ts +0 -13
- package/src/lib/error/error.service.ts +0 -23
- package/src/lib/error/index.ts +0 -3
- package/src/lib/http/http-result.class.ts +0 -34
- package/src/lib/http/http.module.ts +0 -25
- package/src/lib/http/http.service.ts +0 -159
- package/src/lib/pipe/datetime.pipe.ts +0 -20
- package/src/lib/pipe/htmlToText.pipe.ts +0 -18
- package/src/lib/platform/index.ts +0 -1
- package/src/lib/platform/platform.service.ts +0 -223
- package/src/lib/services/config.ts +0 -36
- package/src/lib/services/event.service.ts +0 -31
- package/src/lib/services/navigator.service.ts +0 -8
- package/src/lib/services/storage.service.ts +0 -11
- package/src/lib/translator/translator.module.ts +0 -19
- package/src/lib/translator/translator.pipe.ts +0 -22
- package/src/lib/translator/translator.service.ts +0 -19
- package/src/lib/translator/translator.ts +0 -31
- package/src/lib/utils/array/array-util.ts +0 -140
- package/src/lib/utils/html/html-util.ts +0 -264
- package/src/lib/utils/html/html.module.ts +0 -11
- package/src/lib/utils/math/math-util.ts +0 -5
- package/src/lib/utils/object/object-util.ts +0 -87
- package/src/lib/utils/render/on-demand-preload-strategy.service.ts +0 -25
- package/src/lib/utils/render/render.service.ts +0 -110
- package/src/lib/utils/render/rendering.module.ts +0 -25
- package/src/lib/utils/scroll/scroll.directive.ts +0 -35
- package/src/lib/utils/scroll/scroll.module.ts +0 -11
- package/src/lib/utils/separator/separator.module.ts +0 -11
- package/src/lib/utils/separator/separator.pipe.ts +0 -27
- package/src/test.ts +0 -28
- package/tsconfig.lib.json +0 -25
- package/tsconfig.lib.prod.json +0 -6
- package/tsconfig.spec.json +0 -18
- package/tslint.json +0 -17
|
@@ -1,255 +1,255 @@
|
|
|
1
|
-
{
|
|
2
|
-
"common": {
|
|
3
|
-
"search": "Search",
|
|
4
|
-
"yes": "yes",
|
|
5
|
-
"no": "No",
|
|
6
|
-
"confirm": "Confirm",
|
|
7
|
-
"okay": "Okay",
|
|
8
|
-
"cancel": "Cancel",
|
|
9
|
-
"remove": "Remove",
|
|
10
|
-
"edit": "Edit",
|
|
11
|
-
"configs": "Configs",
|
|
12
|
-
"noDataFound": "No data found!",
|
|
13
|
-
"searching": "searching ...",
|
|
14
|
-
"save": "Save",
|
|
15
|
-
"save-as": "Save As...",
|
|
16
|
-
"title": "Title",
|
|
17
|
-
"description": "Description",
|
|
18
|
-
"name": "Name",
|
|
19
|
-
"uniquename": "Unique Name",
|
|
20
|
-
"size": "Size",
|
|
21
|
-
"add-item": "Add Item",
|
|
22
|
-
"color": "Color",
|
|
23
|
-
"display": "Display",
|
|
24
|
-
"min-value": "Min Value",
|
|
25
|
-
"value": "Value",
|
|
26
|
-
"max-value": "Max Value",
|
|
27
|
-
"refresh-rate": "Refresh Rate",
|
|
28
|
-
"refresh": "Refresh",
|
|
29
|
-
"reload": "Reload",
|
|
30
|
-
"condition":"Condition",
|
|
31
|
-
"next":"Next",
|
|
32
|
-
"prev":"Prev"
|
|
33
|
-
},
|
|
34
|
-
"dateTime": {
|
|
35
|
-
"weekdaysShort": {
|
|
36
|
-
"sun": "Sun",
|
|
37
|
-
"mon": "Mon",
|
|
38
|
-
"tue": "Tue",
|
|
39
|
-
"wed": "Wed",
|
|
40
|
-
"thu": "Thu",
|
|
41
|
-
"fri": "Fri",
|
|
42
|
-
"sat": "Sat"
|
|
43
|
-
},
|
|
44
|
-
"dayTime": {
|
|
45
|
-
"am": "am",
|
|
46
|
-
"pm": "pm",
|
|
47
|
-
"m": "m",
|
|
48
|
-
"a": "a",
|
|
49
|
-
"p": "p"
|
|
50
|
-
},
|
|
51
|
-
"today": "today",
|
|
52
|
-
"duration": {
|
|
53
|
-
"format_second": "{0} second(s)",
|
|
54
|
-
"format_minute": "{0} minute(s)"
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
"queryBuilder": {
|
|
58
|
-
"contains": "contains",
|
|
59
|
-
"not-contains":"not-contains",
|
|
60
|
-
"contains-all":"contains-all",
|
|
61
|
-
"start-with": "start-with",
|
|
62
|
-
"end-with": "end-with",
|
|
63
|
-
"equal": "equal",
|
|
64
|
-
"not-equal": "not-equal",
|
|
65
|
-
"null": "null",
|
|
66
|
-
"not-null": "not-null",
|
|
67
|
-
"greater-than": "greater-than",
|
|
68
|
-
"gt": "greater-than",
|
|
69
|
-
"greater-than-equal": "greater-than-equal",
|
|
70
|
-
"gte": "greater-than-equal",
|
|
71
|
-
"less-than": "less-than",
|
|
72
|
-
"lt": "less-than",
|
|
73
|
-
"less-than-equal": "less-than-equal",
|
|
74
|
-
"lte": "less-than-equal",
|
|
75
|
-
"true": "true",
|
|
76
|
-
"false": "false",
|
|
77
|
-
"empty": "empty"
|
|
78
|
-
},
|
|
79
|
-
"validation": {
|
|
80
|
-
"messages": {
|
|
81
|
-
"required": "This field is required!",
|
|
82
|
-
"email": "Please enter a valid email address!",
|
|
83
|
-
"phone": "Please enter a valid phone number!"
|
|
84
|
-
}
|
|
85
|
-
},
|
|
86
|
-
"dataGrid": {
|
|
87
|
-
"page": "page",
|
|
88
|
-
"more": "more",
|
|
89
|
-
"to": "To",
|
|
90
|
-
"of": "Of",
|
|
91
|
-
"next": "next",
|
|
92
|
-
"last": "last",
|
|
93
|
-
"first": "first",
|
|
94
|
-
"previous": "previous",
|
|
95
|
-
"loadingOoo": "Loading...",
|
|
96
|
-
"selectAll": "selectAll",
|
|
97
|
-
"searchOoo": "Search...",
|
|
98
|
-
"blanks": "blanks",
|
|
99
|
-
"filterOoo": "Filter...",
|
|
100
|
-
"equals": "Equals",
|
|
101
|
-
"notEqual": "NotEqual",
|
|
102
|
-
"lessThan": "LessThan",
|
|
103
|
-
"greaterThan": "GreaterThan",
|
|
104
|
-
"lessThanOrEqual": "LessThanOrEqual",
|
|
105
|
-
"greaterThanOrEqual": "GreaterThanOrEqual",
|
|
106
|
-
"inRange": "InRange",
|
|
107
|
-
"inRangeStart": "To",
|
|
108
|
-
"inRangeEnd": "From",
|
|
109
|
-
"contains": "Contains",
|
|
110
|
-
"notContains": "NotContains",
|
|
111
|
-
"startsWith": "Starts with",
|
|
112
|
-
"endsWith": "Ends with",
|
|
113
|
-
"andCondition": "AND",
|
|
114
|
-
"orCondition": "OR",
|
|
115
|
-
"applyFilter": "Apply",
|
|
116
|
-
"resetFilter": "Reset",
|
|
117
|
-
"clearFilter": "Clear",
|
|
118
|
-
"group": "Group",
|
|
119
|
-
"columns": "Columns",
|
|
120
|
-
"filters": "Filters",
|
|
121
|
-
"groups": "Groups",
|
|
122
|
-
"values": "Values",
|
|
123
|
-
"enabled": "Enabled",
|
|
124
|
-
"pinColumn": "Pin Column",
|
|
125
|
-
"groupBy": "Group by",
|
|
126
|
-
"ungroupBy": "UnGroup by",
|
|
127
|
-
"resetColumns": "ResetColumns",
|
|
128
|
-
"expandAll": "ExpandAll",
|
|
129
|
-
"collapseAll": "CollapseAll",
|
|
130
|
-
"toolPanel": "ToolPanel",
|
|
131
|
-
"export": "Exporto",
|
|
132
|
-
"csvExport": "csv Export",
|
|
133
|
-
"excelExport": "Excel Export (.xlsx)",
|
|
134
|
-
"excelXmlExport": "Excel Exporto (.xml)",
|
|
135
|
-
"chartRange": "Chart Range",
|
|
136
|
-
"columnChart": "Column",
|
|
137
|
-
"groupedColumn": "Grouped",
|
|
138
|
-
"stackedColumn": "Stacked",
|
|
139
|
-
"normalizedColumn": "normalized Column",
|
|
140
|
-
"barChart": "bar Chart",
|
|
141
|
-
"groupedBar": "Grouped",
|
|
142
|
-
"stackedBar": "Stacked",
|
|
143
|
-
"normalizedBar": "normalized Bar",
|
|
144
|
-
"pie": "Pie",
|
|
145
|
-
"doughnut": "Doughnut",
|
|
146
|
-
"line": "Line",
|
|
147
|
-
"xyChart": "X Y (Scatter)",
|
|
148
|
-
"scatter": "Scatter",
|
|
149
|
-
"bubble": "Bubble",
|
|
150
|
-
"areaChart": "Area",
|
|
151
|
-
"area": "Area",
|
|
152
|
-
"stackedArea": "Stacked",
|
|
153
|
-
"normalizedArea": "100% Stacked",
|
|
154
|
-
"histogramChart": "Histogram",
|
|
155
|
-
"pinLeft": "Pin Left",
|
|
156
|
-
"pinRight": "Pin Right",
|
|
157
|
-
"noPin": "Dont Pin",
|
|
158
|
-
"sum": "Sum",
|
|
159
|
-
"min": "Min",
|
|
160
|
-
"max": "Max",
|
|
161
|
-
"none": "None",
|
|
162
|
-
"count": "Count",
|
|
163
|
-
"avg": "Average",
|
|
164
|
-
"filteredRows": "Filtered",
|
|
165
|
-
"selectedRows": "Selected",
|
|
166
|
-
"totalRows": "Total Rows",
|
|
167
|
-
"totalAndFilteredRows": "Rows",
|
|
168
|
-
"copy": "Copy",
|
|
169
|
-
"copyWithHeaders": "Copy With Headers",
|
|
170
|
-
"ctrlC": "Ctrl C",
|
|
171
|
-
"paste": "Paste",
|
|
172
|
-
"ctrlV": "Ctrl V",
|
|
173
|
-
"pivotChartTitle": "Pivot Chart",
|
|
174
|
-
"rangeChartTitle": "Range Chart",
|
|
175
|
-
"settings": "Settings",
|
|
176
|
-
"data": "Data",
|
|
177
|
-
"format": "Format",
|
|
178
|
-
"categories": "Categories",
|
|
179
|
-
"series": "Series",
|
|
180
|
-
"xyValues": "X Y Values",
|
|
181
|
-
"paired": "Paired Mode",
|
|
182
|
-
"axis": "Axis",
|
|
183
|
-
"color": "Color",
|
|
184
|
-
"thickness": "Thickness",
|
|
185
|
-
"xType": "X Type",
|
|
186
|
-
"automatic": "Automatic",
|
|
187
|
-
"category": "Category",
|
|
188
|
-
"number": "Number",
|
|
189
|
-
"time": "Time",
|
|
190
|
-
"xRotation": "X Rotation",
|
|
191
|
-
"yRotation": "Y Rotation",
|
|
192
|
-
"ticks": "Ticks",
|
|
193
|
-
"width": "Width",
|
|
194
|
-
"length": "Length",
|
|
195
|
-
"padding": "Padding",
|
|
196
|
-
"chart": "Chart",
|
|
197
|
-
"title": "Title",
|
|
198
|
-
"background": "Background",
|
|
199
|
-
"font": "Font",
|
|
200
|
-
"top": "Top",
|
|
201
|
-
"right": "Right",
|
|
202
|
-
"bottom": "Bottom",
|
|
203
|
-
"left": "Left",
|
|
204
|
-
"labels": "Labels",
|
|
205
|
-
"size": "Size",
|
|
206
|
-
"minSize": "Minimum Size",
|
|
207
|
-
"maxSize": "Maximum Size",
|
|
208
|
-
"legend": "Legend",
|
|
209
|
-
"position": "Position",
|
|
210
|
-
"markerSize": "Marker Size",
|
|
211
|
-
"markerStroke": "Marker Stroke",
|
|
212
|
-
"markerPadding": "Marker Padding",
|
|
213
|
-
"itemPaddingX": "Item Padding X",
|
|
214
|
-
"itemPaddingY": "Item Padding Y",
|
|
215
|
-
"strokeWidth": "Stroke Width",
|
|
216
|
-
"offset": "Offset",
|
|
217
|
-
"offsets": "Offsets",
|
|
218
|
-
"tooltips": "Tooltips",
|
|
219
|
-
"callout": "Callout",
|
|
220
|
-
"markers": "Markers",
|
|
221
|
-
"shadow": "Shadow",
|
|
222
|
-
"blur": "Blur",
|
|
223
|
-
"xOffset": "X Offset",
|
|
224
|
-
"yOffset": "Y Offset",
|
|
225
|
-
"lineWidth": "Line Width",
|
|
226
|
-
"normal": "Normal",
|
|
227
|
-
"bold": "Bold",
|
|
228
|
-
"italic": "Italic",
|
|
229
|
-
"boldItalic": "Bold Italic",
|
|
230
|
-
"predefined": "Predefined",
|
|
231
|
-
"fillOpacity": "Fill Opacity",
|
|
232
|
-
"strokeOpacity": "Line Opacity",
|
|
233
|
-
"histogramBinCount": "Bin Count",
|
|
234
|
-
"columnGroup": "Column",
|
|
235
|
-
"barGroup": "Bar",
|
|
236
|
-
"pieGroup": "Pie",
|
|
237
|
-
"lineGroup": "Line",
|
|
238
|
-
"scatterGroup": "Scatter",
|
|
239
|
-
"areaGroup": "Area",
|
|
240
|
-
"histogramGroup": "Histogram",
|
|
241
|
-
"groupedColumnTooltip": "Grouped",
|
|
242
|
-
"stackedColumnTooltip": "Stacked",
|
|
243
|
-
"normalizedColumnTooltip": "100% Stacked",
|
|
244
|
-
"groupedBarTooltip": "Grouped",
|
|
245
|
-
"stackedBarTooltip": "Stacked",
|
|
246
|
-
"pieTooltip": "Pie",
|
|
247
|
-
"doughnutTooltip": "Doughnut",
|
|
248
|
-
"lineTooltip": "Line",
|
|
249
|
-
"groupedAreaTooltip": "Grouped",
|
|
250
|
-
"stackedAreaTooltip": "Stacked",
|
|
251
|
-
"scatterTooltip": "Scatter",
|
|
252
|
-
"bubbleTooltip": "Bubble",
|
|
253
|
-
"histogramTooltip": "Histogram"
|
|
254
|
-
}
|
|
255
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"common": {
|
|
3
|
+
"search": "Search",
|
|
4
|
+
"yes": "yes",
|
|
5
|
+
"no": "No",
|
|
6
|
+
"confirm": "Confirm",
|
|
7
|
+
"okay": "Okay",
|
|
8
|
+
"cancel": "Cancel",
|
|
9
|
+
"remove": "Remove",
|
|
10
|
+
"edit": "Edit",
|
|
11
|
+
"configs": "Configs",
|
|
12
|
+
"noDataFound": "No data found!",
|
|
13
|
+
"searching": "searching ...",
|
|
14
|
+
"save": "Save",
|
|
15
|
+
"save-as": "Save As...",
|
|
16
|
+
"title": "Title",
|
|
17
|
+
"description": "Description",
|
|
18
|
+
"name": "Name",
|
|
19
|
+
"uniquename": "Unique Name",
|
|
20
|
+
"size": "Size",
|
|
21
|
+
"add-item": "Add Item",
|
|
22
|
+
"color": "Color",
|
|
23
|
+
"display": "Display",
|
|
24
|
+
"min-value": "Min Value",
|
|
25
|
+
"value": "Value",
|
|
26
|
+
"max-value": "Max Value",
|
|
27
|
+
"refresh-rate": "Refresh Rate",
|
|
28
|
+
"refresh": "Refresh",
|
|
29
|
+
"reload": "Reload",
|
|
30
|
+
"condition": "Condition",
|
|
31
|
+
"next": "Next",
|
|
32
|
+
"prev": "Prev"
|
|
33
|
+
},
|
|
34
|
+
"dateTime": {
|
|
35
|
+
"weekdaysShort": {
|
|
36
|
+
"sun": "Sun",
|
|
37
|
+
"mon": "Mon",
|
|
38
|
+
"tue": "Tue",
|
|
39
|
+
"wed": "Wed",
|
|
40
|
+
"thu": "Thu",
|
|
41
|
+
"fri": "Fri",
|
|
42
|
+
"sat": "Sat"
|
|
43
|
+
},
|
|
44
|
+
"dayTime": {
|
|
45
|
+
"am": "am",
|
|
46
|
+
"pm": "pm",
|
|
47
|
+
"m": "m",
|
|
48
|
+
"a": "a",
|
|
49
|
+
"p": "p"
|
|
50
|
+
},
|
|
51
|
+
"today": "today",
|
|
52
|
+
"duration": {
|
|
53
|
+
"format_second": "{0} second(s)",
|
|
54
|
+
"format_minute": "{0} minute(s)"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"queryBuilder": {
|
|
58
|
+
"contains": "contains",
|
|
59
|
+
"not-contains": "not-contains",
|
|
60
|
+
"contains-all": "contains-all",
|
|
61
|
+
"start-with": "start-with",
|
|
62
|
+
"end-with": "end-with",
|
|
63
|
+
"equal": "equal",
|
|
64
|
+
"not-equal": "not-equal",
|
|
65
|
+
"null": "null",
|
|
66
|
+
"not-null": "not-null",
|
|
67
|
+
"greater-than": "greater-than",
|
|
68
|
+
"gt": "greater-than",
|
|
69
|
+
"greater-than-equal": "greater-than-equal",
|
|
70
|
+
"gte": "greater-than-equal",
|
|
71
|
+
"less-than": "less-than",
|
|
72
|
+
"lt": "less-than",
|
|
73
|
+
"less-than-equal": "less-than-equal",
|
|
74
|
+
"lte": "less-than-equal",
|
|
75
|
+
"true": "true",
|
|
76
|
+
"false": "false",
|
|
77
|
+
"empty": "empty"
|
|
78
|
+
},
|
|
79
|
+
"validation": {
|
|
80
|
+
"messages": {
|
|
81
|
+
"required": "This field is required!",
|
|
82
|
+
"email": "Please enter a valid email address!",
|
|
83
|
+
"phone": "Please enter a valid phone number!"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"dataGrid": {
|
|
87
|
+
"page": "page",
|
|
88
|
+
"more": "more",
|
|
89
|
+
"to": "To",
|
|
90
|
+
"of": "Of",
|
|
91
|
+
"next": "next",
|
|
92
|
+
"last": "last",
|
|
93
|
+
"first": "first",
|
|
94
|
+
"previous": "previous",
|
|
95
|
+
"loadingOoo": "Loading...",
|
|
96
|
+
"selectAll": "selectAll",
|
|
97
|
+
"searchOoo": "Search...",
|
|
98
|
+
"blanks": "blanks",
|
|
99
|
+
"filterOoo": "Filter...",
|
|
100
|
+
"equals": "Equals",
|
|
101
|
+
"notEqual": "NotEqual",
|
|
102
|
+
"lessThan": "LessThan",
|
|
103
|
+
"greaterThan": "GreaterThan",
|
|
104
|
+
"lessThanOrEqual": "LessThanOrEqual",
|
|
105
|
+
"greaterThanOrEqual": "GreaterThanOrEqual",
|
|
106
|
+
"inRange": "InRange",
|
|
107
|
+
"inRangeStart": "To",
|
|
108
|
+
"inRangeEnd": "From",
|
|
109
|
+
"contains": "Contains",
|
|
110
|
+
"notContains": "NotContains",
|
|
111
|
+
"startsWith": "Starts with",
|
|
112
|
+
"endsWith": "Ends with",
|
|
113
|
+
"andCondition": "AND",
|
|
114
|
+
"orCondition": "OR",
|
|
115
|
+
"applyFilter": "Apply",
|
|
116
|
+
"resetFilter": "Reset",
|
|
117
|
+
"clearFilter": "Clear",
|
|
118
|
+
"group": "Group",
|
|
119
|
+
"columns": "Columns",
|
|
120
|
+
"filters": "Filters",
|
|
121
|
+
"groups": "Groups",
|
|
122
|
+
"values": "Values",
|
|
123
|
+
"enabled": "Enabled",
|
|
124
|
+
"pinColumn": "Pin Column",
|
|
125
|
+
"groupBy": "Group by",
|
|
126
|
+
"ungroupBy": "UnGroup by",
|
|
127
|
+
"resetColumns": "ResetColumns",
|
|
128
|
+
"expandAll": "ExpandAll",
|
|
129
|
+
"collapseAll": "CollapseAll",
|
|
130
|
+
"toolPanel": "ToolPanel",
|
|
131
|
+
"export": "Exporto",
|
|
132
|
+
"csvExport": "csv Export",
|
|
133
|
+
"excelExport": "Excel Export (.xlsx)",
|
|
134
|
+
"excelXmlExport": "Excel Exporto (.xml)",
|
|
135
|
+
"chartRange": "Chart Range",
|
|
136
|
+
"columnChart": "Column",
|
|
137
|
+
"groupedColumn": "Grouped",
|
|
138
|
+
"stackedColumn": "Stacked",
|
|
139
|
+
"normalizedColumn": "normalized Column",
|
|
140
|
+
"barChart": "bar Chart",
|
|
141
|
+
"groupedBar": "Grouped",
|
|
142
|
+
"stackedBar": "Stacked",
|
|
143
|
+
"normalizedBar": "normalized Bar",
|
|
144
|
+
"pie": "Pie",
|
|
145
|
+
"doughnut": "Doughnut",
|
|
146
|
+
"line": "Line",
|
|
147
|
+
"xyChart": "X Y (Scatter)",
|
|
148
|
+
"scatter": "Scatter",
|
|
149
|
+
"bubble": "Bubble",
|
|
150
|
+
"areaChart": "Area",
|
|
151
|
+
"area": "Area",
|
|
152
|
+
"stackedArea": "Stacked",
|
|
153
|
+
"normalizedArea": "100% Stacked",
|
|
154
|
+
"histogramChart": "Histogram",
|
|
155
|
+
"pinLeft": "Pin Left",
|
|
156
|
+
"pinRight": "Pin Right",
|
|
157
|
+
"noPin": "Dont Pin",
|
|
158
|
+
"sum": "Sum",
|
|
159
|
+
"min": "Min",
|
|
160
|
+
"max": "Max",
|
|
161
|
+
"none": "None",
|
|
162
|
+
"count": "Count",
|
|
163
|
+
"avg": "Average",
|
|
164
|
+
"filteredRows": "Filtered",
|
|
165
|
+
"selectedRows": "Selected",
|
|
166
|
+
"totalRows": "Total Rows",
|
|
167
|
+
"totalAndFilteredRows": "Rows",
|
|
168
|
+
"copy": "Copy",
|
|
169
|
+
"copyWithHeaders": "Copy With Headers",
|
|
170
|
+
"ctrlC": "Ctrl C",
|
|
171
|
+
"paste": "Paste",
|
|
172
|
+
"ctrlV": "Ctrl V",
|
|
173
|
+
"pivotChartTitle": "Pivot Chart",
|
|
174
|
+
"rangeChartTitle": "Range Chart",
|
|
175
|
+
"settings": "Settings",
|
|
176
|
+
"data": "Data",
|
|
177
|
+
"format": "Format",
|
|
178
|
+
"categories": "Categories",
|
|
179
|
+
"series": "Series",
|
|
180
|
+
"xyValues": "X Y Values",
|
|
181
|
+
"paired": "Paired Mode",
|
|
182
|
+
"axis": "Axis",
|
|
183
|
+
"color": "Color",
|
|
184
|
+
"thickness": "Thickness",
|
|
185
|
+
"xType": "X Type",
|
|
186
|
+
"automatic": "Automatic",
|
|
187
|
+
"category": "Category",
|
|
188
|
+
"number": "Number",
|
|
189
|
+
"time": "Time",
|
|
190
|
+
"xRotation": "X Rotation",
|
|
191
|
+
"yRotation": "Y Rotation",
|
|
192
|
+
"ticks": "Ticks",
|
|
193
|
+
"width": "Width",
|
|
194
|
+
"length": "Length",
|
|
195
|
+
"padding": "Padding",
|
|
196
|
+
"chart": "Chart",
|
|
197
|
+
"title": "Title",
|
|
198
|
+
"background": "Background",
|
|
199
|
+
"font": "Font",
|
|
200
|
+
"top": "Top",
|
|
201
|
+
"right": "Right",
|
|
202
|
+
"bottom": "Bottom",
|
|
203
|
+
"left": "Left",
|
|
204
|
+
"labels": "Labels",
|
|
205
|
+
"size": "Size",
|
|
206
|
+
"minSize": "Minimum Size",
|
|
207
|
+
"maxSize": "Maximum Size",
|
|
208
|
+
"legend": "Legend",
|
|
209
|
+
"position": "Position",
|
|
210
|
+
"markerSize": "Marker Size",
|
|
211
|
+
"markerStroke": "Marker Stroke",
|
|
212
|
+
"markerPadding": "Marker Padding",
|
|
213
|
+
"itemPaddingX": "Item Padding X",
|
|
214
|
+
"itemPaddingY": "Item Padding Y",
|
|
215
|
+
"strokeWidth": "Stroke Width",
|
|
216
|
+
"offset": "Offset",
|
|
217
|
+
"offsets": "Offsets",
|
|
218
|
+
"tooltips": "Tooltips",
|
|
219
|
+
"callout": "Callout",
|
|
220
|
+
"markers": "Markers",
|
|
221
|
+
"shadow": "Shadow",
|
|
222
|
+
"blur": "Blur",
|
|
223
|
+
"xOffset": "X Offset",
|
|
224
|
+
"yOffset": "Y Offset",
|
|
225
|
+
"lineWidth": "Line Width",
|
|
226
|
+
"normal": "Normal",
|
|
227
|
+
"bold": "Bold",
|
|
228
|
+
"italic": "Italic",
|
|
229
|
+
"boldItalic": "Bold Italic",
|
|
230
|
+
"predefined": "Predefined",
|
|
231
|
+
"fillOpacity": "Fill Opacity",
|
|
232
|
+
"strokeOpacity": "Line Opacity",
|
|
233
|
+
"histogramBinCount": "Bin Count",
|
|
234
|
+
"columnGroup": "Column",
|
|
235
|
+
"barGroup": "Bar",
|
|
236
|
+
"pieGroup": "Pie",
|
|
237
|
+
"lineGroup": "Line",
|
|
238
|
+
"scatterGroup": "Scatter",
|
|
239
|
+
"areaGroup": "Area",
|
|
240
|
+
"histogramGroup": "Histogram",
|
|
241
|
+
"groupedColumnTooltip": "Grouped",
|
|
242
|
+
"stackedColumnTooltip": "Stacked",
|
|
243
|
+
"normalizedColumnTooltip": "100% Stacked",
|
|
244
|
+
"groupedBarTooltip": "Grouped",
|
|
245
|
+
"stackedBarTooltip": "Stacked",
|
|
246
|
+
"pieTooltip": "Pie",
|
|
247
|
+
"doughnutTooltip": "Doughnut",
|
|
248
|
+
"lineTooltip": "Line",
|
|
249
|
+
"groupedAreaTooltip": "Grouped",
|
|
250
|
+
"stackedAreaTooltip": "Stacked",
|
|
251
|
+
"scatterTooltip": "Scatter",
|
|
252
|
+
"bubbleTooltip": "Bubble",
|
|
253
|
+
"histogramTooltip": "Histogram"
|
|
254
|
+
}
|
|
255
|
+
}
|