@univerjs-pro/bases-ui 0.25.0-insiders.20260608-e4336f7
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 -0
- package/lib/cjs/facade.js +1 -0
- package/lib/cjs/index.js +1 -0
- package/lib/cjs/locale/ar-SA.js +1 -0
- package/lib/cjs/locale/ca-ES.js +1 -0
- package/lib/cjs/locale/de-DE.js +1 -0
- package/lib/cjs/locale/en-US.js +1 -0
- package/lib/cjs/locale/es-ES.js +1 -0
- package/lib/cjs/locale/fa-IR.js +1 -0
- package/lib/cjs/locale/fr-FR.js +1 -0
- package/lib/cjs/locale/id-ID.js +1 -0
- package/lib/cjs/locale/it-IT.js +1 -0
- package/lib/cjs/locale/ja-JP.js +1 -0
- package/lib/cjs/locale/ko-KR.js +1 -0
- package/lib/cjs/locale/pl-PL.js +1 -0
- package/lib/cjs/locale/pt-BR.js +1 -0
- package/lib/cjs/locale/ru-RU.js +1 -0
- package/lib/cjs/locale/sk-SK.js +1 -0
- package/lib/cjs/locale/vi-VN.js +1 -0
- package/lib/cjs/locale/zh-CN.js +1 -0
- package/lib/cjs/locale/zh-HK.js +1 -0
- package/lib/cjs/locale/zh-TW.js +1 -0
- package/lib/es/facade.js +1 -0
- package/lib/es/index.js +1 -0
- package/lib/es/locale/ar-SA.js +1 -0
- package/lib/es/locale/ca-ES.js +1 -0
- package/lib/es/locale/de-DE.js +1 -0
- package/lib/es/locale/en-US.js +1 -0
- package/lib/es/locale/es-ES.js +1 -0
- package/lib/es/locale/fa-IR.js +1 -0
- package/lib/es/locale/fr-FR.js +1 -0
- package/lib/es/locale/id-ID.js +1 -0
- package/lib/es/locale/it-IT.js +1 -0
- package/lib/es/locale/ja-JP.js +1 -0
- package/lib/es/locale/ko-KR.js +1 -0
- package/lib/es/locale/pl-PL.js +1 -0
- package/lib/es/locale/pt-BR.js +1 -0
- package/lib/es/locale/ru-RU.js +1 -0
- package/lib/es/locale/sk-SK.js +1 -0
- package/lib/es/locale/vi-VN.js +1 -0
- package/lib/es/locale/zh-CN.js +1 -0
- package/lib/es/locale/zh-HK.js +1 -0
- package/lib/es/locale/zh-TW.js +1 -0
- package/lib/facade.js +1 -0
- package/lib/index.css +2533 -0
- package/lib/index.js +1 -0
- package/lib/locale/ar-SA.js +1 -0
- package/lib/locale/ca-ES.js +1 -0
- package/lib/locale/de-DE.js +1 -0
- package/lib/locale/en-US.js +1 -0
- package/lib/locale/es-ES.js +1 -0
- package/lib/locale/fa-IR.js +1 -0
- package/lib/locale/fr-FR.js +1 -0
- package/lib/locale/id-ID.js +1 -0
- package/lib/locale/it-IT.js +1 -0
- package/lib/locale/ja-JP.js +1 -0
- package/lib/locale/ko-KR.js +1 -0
- package/lib/locale/pl-PL.js +1 -0
- package/lib/locale/pt-BR.js +1 -0
- package/lib/locale/ru-RU.js +1 -0
- package/lib/locale/sk-SK.js +1 -0
- package/lib/locale/vi-VN.js +1 -0
- package/lib/locale/zh-CN.js +1 -0
- package/lib/locale/zh-HK.js +1 -0
- package/lib/locale/zh-TW.js +1 -0
- package/lib/types/commands/operations/activate-table.operation.d.ts +6 -0
- package/lib/types/commands/operations/activate-view.operation.d.ts +6 -0
- package/lib/types/commands/operations/editing.operation.d.ts +9 -0
- package/lib/types/commands/operations/keyboard.operation.d.ts +9 -0
- package/lib/types/commands/operations/scroll.operation.d.ts +7 -0
- package/lib/types/commands/operations/set-selection.operation.d.ts +5 -0
- package/lib/types/commands/operations/toolbar-menu.operation.d.ts +37 -0
- package/lib/types/commands/operations/zoom.operation.d.ts +6 -0
- package/lib/types/components/AddRecordButton.d.ts +6 -0
- package/lib/types/components/BaseAttachmentPreview.d.ts +9 -0
- package/lib/types/components/BaseCellEditors.d.ts +78 -0
- package/lib/types/components/BaseCollaborationStatus.d.ts +24 -0
- package/lib/types/components/BaseColorPalette.d.ts +13 -0
- package/lib/types/components/BaseConfirmDialog.d.ts +12 -0
- package/lib/types/components/BaseIcons.d.ts +19 -0
- package/lib/types/components/BaseMenus.d.ts +593 -0
- package/lib/types/components/BaseNumberInput.d.ts +14 -0
- package/lib/types/components/BaseStandaloneShell.d.ts +139 -0
- package/lib/types/components/BaseToolbar.d.ts +49 -0
- package/lib/types/components/CardCustomizePanel.d.ts +1 -0
- package/lib/types/components/FieldConfigPanel.d.ts +1 -0
- package/lib/types/components/FieldMenu.d.ts +44 -0
- package/lib/types/components/RecordDetailPanel.d.ts +88 -0
- package/lib/types/components/ViewTabs.d.ts +36 -0
- package/lib/types/components/base-formula-library.d.ts +25 -0
- package/lib/types/config/config.d.ts +46 -0
- package/lib/types/controllers/base-keyboard.shortcut.d.ts +9 -0
- package/lib/types/controllers/base-render.controller.d.ts +172 -0
- package/lib/types/controllers/base-theme.controller.d.ts +7 -0
- package/lib/types/controllers/base-ui.controller.d.ts +27 -0
- package/lib/types/controllers/menu.d.ts +3 -0
- package/lib/types/facade/f-base-rendered-view.d.ts +13 -0
- package/lib/types/facade/f-base-ui.d.ts +41 -0
- package/lib/types/facade/f-univer.d.ts +12 -0
- package/lib/types/facade/index.d.ts +3 -0
- package/lib/types/fields/editors/attachment.editor.d.ts +2 -0
- package/lib/types/fields/editors/date.editor.d.ts +2 -0
- package/lib/types/fields/editors/number.editor.d.ts +5 -0
- package/lib/types/fields/editors/person.editor.d.ts +2 -0
- package/lib/types/fields/editors/select.editor.d.ts +3 -0
- package/lib/types/fields/editors/text.editor.d.ts +2 -0
- package/lib/types/fields/field-ui-plugin.d.ts +63 -0
- package/lib/types/fields/renderers/attachment.renderer.d.ts +2 -0
- package/lib/types/fields/renderers/checkbox.renderer.d.ts +2 -0
- package/lib/types/fields/renderers/date.renderer.d.ts +2 -0
- package/lib/types/fields/renderers/number.renderer.d.ts +5 -0
- package/lib/types/fields/renderers/select.renderer.d.ts +3 -0
- package/lib/types/fields/renderers/text.renderer.d.ts +2 -0
- package/lib/types/index.d.ts +67 -0
- package/lib/types/internal.d.ts +11 -0
- package/lib/types/locale/ar-SA.d.ts +3 -0
- package/lib/types/locale/ca-ES.d.ts +3 -0
- package/lib/types/locale/de-DE.d.ts +3 -0
- package/lib/types/locale/en-US.d.ts +1163 -0
- package/lib/types/locale/es-ES.d.ts +3 -0
- package/lib/types/locale/fa-IR.d.ts +3 -0
- package/lib/types/locale/formula/ar-SA.d.ts +1 -0
- package/lib/types/locale/formula/ca-ES.d.ts +1 -0
- package/lib/types/locale/formula/de-DE.d.ts +1 -0
- package/lib/types/locale/formula/en-US.d.ts +707 -0
- package/lib/types/locale/formula/es-ES.d.ts +1 -0
- package/lib/types/locale/formula/fa-IR.d.ts +1 -0
- package/lib/types/locale/formula/fr-FR.d.ts +1 -0
- package/lib/types/locale/formula/id-ID.d.ts +1 -0
- package/lib/types/locale/formula/it-IT.d.ts +1 -0
- package/lib/types/locale/formula/ja-JP.d.ts +1 -0
- package/lib/types/locale/formula/ko-KR.d.ts +1 -0
- package/lib/types/locale/formula/pl-PL.d.ts +1 -0
- package/lib/types/locale/formula/pt-BR.d.ts +1 -0
- package/lib/types/locale/formula/ru-RU.d.ts +1 -0
- package/lib/types/locale/formula/sk-SK.d.ts +1 -0
- package/lib/types/locale/formula/vi-VN.d.ts +1 -0
- package/lib/types/locale/formula/zh-CN.d.ts +707 -0
- package/lib/types/locale/formula/zh-HK.d.ts +1 -0
- package/lib/types/locale/formula/zh-TW.d.ts +1 -0
- package/lib/types/locale/fr-FR.d.ts +3 -0
- package/lib/types/locale/id-ID.d.ts +3 -0
- package/lib/types/locale/it-IT.d.ts +3 -0
- package/lib/types/locale/ja-JP.d.ts +3 -0
- package/lib/types/locale/ko-KR.d.ts +3 -0
- package/lib/types/locale/pl-PL.d.ts +3 -0
- package/lib/types/locale/pt-BR.d.ts +3 -0
- package/lib/types/locale/ru-RU.d.ts +3 -0
- package/lib/types/locale/sk-SK.d.ts +3 -0
- package/lib/types/locale/vi-VN.d.ts +3 -0
- package/lib/types/locale/zh-CN.d.ts +3 -0
- package/lib/types/locale/zh-HK.d.ts +3 -0
- package/lib/types/locale/zh-TW.d.ts +3 -0
- package/lib/types/menu/schema.d.ts +16 -0
- package/lib/types/plugin.d.ts +18 -0
- package/lib/types/render/base-canvas-render-component.d.ts +19 -0
- package/lib/types/render/base-render-manager.d.ts +17 -0
- package/lib/types/render/base-scene.d.ts +239 -0
- package/lib/types/render/base-view-render-controller.d.ts +285 -0
- package/lib/types/render/canvas-draw-command.d.ts +178 -0
- package/lib/types/render/layers/body.layer.d.ts +2 -0
- package/lib/types/render/layers/drag.layer.d.ts +2 -0
- package/lib/types/render/layers/editor-overlay.layer.d.ts +2 -0
- package/lib/types/render/layers/header.layer.d.ts +2 -0
- package/lib/types/render/layers/selection.layer.d.ts +2 -0
- package/lib/types/search/base-view-search.d.ts +13 -0
- package/lib/types/services/base-attachment-io.service.d.ts +21 -0
- package/lib/types/services/base-clipboard.service.d.ts +21 -0
- package/lib/types/services/base-drag.service.d.ts +19 -0
- package/lib/types/services/base-editor.service.d.ts +20 -0
- package/lib/types/services/base-field-ui-registry.service.d.ts +15 -0
- package/lib/types/services/base-formula-progress.service.d.ts +20 -0
- package/lib/types/services/base-layout.service.d.ts +30 -0
- package/lib/types/services/base-render.service.d.ts +10 -0
- package/lib/types/services/base-selection.service.d.ts +14 -0
- package/lib/types/services/base-ui-popup.service.d.ts +27 -0
- package/lib/types/services/base-ui-state.service.d.ts +156 -0
- package/lib/types/services/base-view-ui-registry.service.d.ts +15 -0
- package/lib/types/services/base-workbench-render.service.d.ts +15 -0
- package/lib/types/views/base-canvas-render-utils.d.ts +258 -0
- package/lib/types/views/base-container/BaseContainer.d.ts +30 -0
- package/lib/types/views/calendar/calendar-layout.d.ts +88 -0
- package/lib/types/views/calendar/calendar-render-controller.d.ts +7 -0
- package/lib/types/views/calendar/calendar-settings-panel.d.ts +1 -0
- package/lib/types/views/gallery/gallery-render-controller.d.ts +7 -0
- package/lib/types/views/gallery/gallery-settings-panel.d.ts +1 -0
- package/lib/types/views/gantt/gantt-layout.d.ts +91 -0
- package/lib/types/views/gantt/gantt-render-controller.d.ts +7 -0
- package/lib/types/views/gantt/gantt-settings-panel.d.ts +1 -0
- package/lib/types/views/grid/grid-render-controller.d.ts +7 -0
- package/lib/types/views/grid/grid-settings-panel.d.ts +1 -0
- package/lib/types/views/kanban/kanban-render-controller.d.ts +7 -0
- package/lib/types/views/kanban/kanban-settings-panel.d.ts +1 -0
- package/lib/types/views/view-ui-plugin.d.ts +26 -0
- package/lib/umd/facade.js +1 -0
- package/lib/umd/index.js +1 -0
- package/lib/umd/locale/ar-SA.js +1 -0
- package/lib/umd/locale/ca-ES.js +1 -0
- package/lib/umd/locale/de-DE.js +1 -0
- package/lib/umd/locale/en-US.js +1 -0
- package/lib/umd/locale/es-ES.js +1 -0
- package/lib/umd/locale/fa-IR.js +1 -0
- package/lib/umd/locale/fr-FR.js +1 -0
- package/lib/umd/locale/id-ID.js +1 -0
- package/lib/umd/locale/it-IT.js +1 -0
- package/lib/umd/locale/ja-JP.js +1 -0
- package/lib/umd/locale/ko-KR.js +1 -0
- package/lib/umd/locale/pl-PL.js +1 -0
- package/lib/umd/locale/pt-BR.js +1 -0
- package/lib/umd/locale/ru-RU.js +1 -0
- package/lib/umd/locale/sk-SK.js +1 -0
- package/lib/umd/locale/vi-VN.js +1 -0
- package/lib/umd/locale/zh-CN.js +1 -0
- package/lib/umd/locale/zh-HK.js +1 -0
- package/lib/umd/locale/zh-TW.js +1 -0
- package/package.json +98 -0
|
@@ -0,0 +1,1163 @@
|
|
|
1
|
+
declare const locale: {
|
|
2
|
+
'bases-ui': {
|
|
3
|
+
menu: {
|
|
4
|
+
addRecord: string;
|
|
5
|
+
addBlankRecord: string;
|
|
6
|
+
addFiveBlankRecords: string;
|
|
7
|
+
customizeField: string;
|
|
8
|
+
viewSettings: string;
|
|
9
|
+
filter: string;
|
|
10
|
+
sort: string;
|
|
11
|
+
group: string;
|
|
12
|
+
groupByFields: string;
|
|
13
|
+
rowHeight: string;
|
|
14
|
+
rowHeightShort: string;
|
|
15
|
+
rowHeightMedium: string;
|
|
16
|
+
rowHeightTall: string;
|
|
17
|
+
rowHeightExtraTall: string;
|
|
18
|
+
conditionalColoring: string;
|
|
19
|
+
conditionalColoringHelp: string;
|
|
20
|
+
conditionalColoringSmart: string;
|
|
21
|
+
conditionalColor: string;
|
|
22
|
+
conditionalCustomColor: string;
|
|
23
|
+
conditionalTargetCell: string;
|
|
24
|
+
conditionalTargetRow: string;
|
|
25
|
+
conditionalTargetColumn: string;
|
|
26
|
+
conditionalEnterValue: string;
|
|
27
|
+
conditionalExactDate: string;
|
|
28
|
+
conditionalToday: string;
|
|
29
|
+
conditionalTomorrow: string;
|
|
30
|
+
conditionalYesterday: string;
|
|
31
|
+
conditionalThisWeek: string;
|
|
32
|
+
conditionalLastWeek: string;
|
|
33
|
+
conditionalThisMonth: string;
|
|
34
|
+
conditionalLastMonth: string;
|
|
35
|
+
conditionalPast7: string;
|
|
36
|
+
conditionalNext7: string;
|
|
37
|
+
conditionalPast30: string;
|
|
38
|
+
conditionalNext30: string;
|
|
39
|
+
conditionalChecked: string;
|
|
40
|
+
conditionalUnchecked: string;
|
|
41
|
+
addField: string;
|
|
42
|
+
undo: string;
|
|
43
|
+
redo: string;
|
|
44
|
+
};
|
|
45
|
+
recordDetail: {
|
|
46
|
+
title: string;
|
|
47
|
+
close: string;
|
|
48
|
+
open: string;
|
|
49
|
+
delete: string;
|
|
50
|
+
deleteConfirmTitle: string;
|
|
51
|
+
deleteConfirmDescription: string;
|
|
52
|
+
submit: string;
|
|
53
|
+
addMoreAfterSubmission: string;
|
|
54
|
+
};
|
|
55
|
+
gridContext: {
|
|
56
|
+
insert: string;
|
|
57
|
+
above: string;
|
|
58
|
+
below: string;
|
|
59
|
+
openRecord: string;
|
|
60
|
+
clearContent: string;
|
|
61
|
+
deleteRecord: string;
|
|
62
|
+
deleteRecords: string;
|
|
63
|
+
};
|
|
64
|
+
common: {
|
|
65
|
+
apply: string;
|
|
66
|
+
cancel: string;
|
|
67
|
+
clear: string;
|
|
68
|
+
confirm: string;
|
|
69
|
+
delete: string;
|
|
70
|
+
save: string;
|
|
71
|
+
search: string;
|
|
72
|
+
searchPrevious: string;
|
|
73
|
+
searchNext: string;
|
|
74
|
+
searchClose: string;
|
|
75
|
+
value: string;
|
|
76
|
+
newCondition: string;
|
|
77
|
+
newBadge: string;
|
|
78
|
+
};
|
|
79
|
+
footerStat: {
|
|
80
|
+
none: string;
|
|
81
|
+
countOption: string;
|
|
82
|
+
filledOption: string;
|
|
83
|
+
emptyOption: string;
|
|
84
|
+
uniqueOption: string;
|
|
85
|
+
sumOption: string;
|
|
86
|
+
averageOption: string;
|
|
87
|
+
minOption: string;
|
|
88
|
+
maxOption: string;
|
|
89
|
+
count: string;
|
|
90
|
+
filled: string;
|
|
91
|
+
empty: string;
|
|
92
|
+
unique: string;
|
|
93
|
+
sum: string;
|
|
94
|
+
average: string;
|
|
95
|
+
min: string;
|
|
96
|
+
max: string;
|
|
97
|
+
};
|
|
98
|
+
confirmDelete: {
|
|
99
|
+
tableTitle: string;
|
|
100
|
+
tableDescription: string;
|
|
101
|
+
viewTitle: string;
|
|
102
|
+
viewDescription: string;
|
|
103
|
+
fieldTitle: string;
|
|
104
|
+
fieldDescription: string;
|
|
105
|
+
};
|
|
106
|
+
fieldConfig: {
|
|
107
|
+
fieldTitle: string;
|
|
108
|
+
fieldTitlePlaceholder: string;
|
|
109
|
+
fieldType: string;
|
|
110
|
+
fieldTypeSectionBasic: string;
|
|
111
|
+
fieldTypeSectionBusiness: string;
|
|
112
|
+
fieldTypeSectionAdvanced: string;
|
|
113
|
+
defaultValue: string;
|
|
114
|
+
newField: string;
|
|
115
|
+
defaultSettingsReady: string;
|
|
116
|
+
numberFormat: string;
|
|
117
|
+
currencyFormat: string;
|
|
118
|
+
dateFormat: string;
|
|
119
|
+
dateMonthNameExample: string;
|
|
120
|
+
decimalPlaces: string;
|
|
121
|
+
example: string;
|
|
122
|
+
icon: string;
|
|
123
|
+
scale: string;
|
|
124
|
+
options: string;
|
|
125
|
+
referenceOptions: string;
|
|
126
|
+
addOption: string;
|
|
127
|
+
addOptionPlaceholder: string;
|
|
128
|
+
removeOption: string;
|
|
129
|
+
selectOption: string;
|
|
130
|
+
option: string;
|
|
131
|
+
numberingType: string;
|
|
132
|
+
autoIncrement: string;
|
|
133
|
+
custom: string;
|
|
134
|
+
customizeNumbering: string;
|
|
135
|
+
preview: string;
|
|
136
|
+
incremental: string;
|
|
137
|
+
digits: string;
|
|
138
|
+
start: string;
|
|
139
|
+
step: string;
|
|
140
|
+
dateCreated: string;
|
|
141
|
+
customText: string;
|
|
142
|
+
lockedField: string;
|
|
143
|
+
showField: string;
|
|
144
|
+
hideField: string;
|
|
145
|
+
moreFieldActions: string;
|
|
146
|
+
edit: string;
|
|
147
|
+
addFieldToGroup: string;
|
|
148
|
+
editField: string;
|
|
149
|
+
editFieldDescription: string;
|
|
150
|
+
duplicateField: string;
|
|
151
|
+
insertLeft: string;
|
|
152
|
+
insertRight: string;
|
|
153
|
+
freezeToField: string;
|
|
154
|
+
sortAsc: string;
|
|
155
|
+
sortDesc: string;
|
|
156
|
+
groupByField: string;
|
|
157
|
+
filterByField: string;
|
|
158
|
+
createKanbanWithField: string;
|
|
159
|
+
deleteField: string;
|
|
160
|
+
referenceOptionsHelp: string;
|
|
161
|
+
allowMultipleMembers: string;
|
|
162
|
+
allowMultipleGroups: string;
|
|
163
|
+
defaultProviderMock: string;
|
|
164
|
+
defaultProviderExternal: string;
|
|
165
|
+
linkPlaceholder: string;
|
|
166
|
+
phonePlaceholder: string;
|
|
167
|
+
currencySymbol: string;
|
|
168
|
+
thousandsSeparator: string;
|
|
169
|
+
showThousandsSeparator: string;
|
|
170
|
+
largeNumberAbbreviation: string;
|
|
171
|
+
allowNegativeNumbers: string;
|
|
172
|
+
includeTime: string;
|
|
173
|
+
timeFormat: string;
|
|
174
|
+
hour24: string;
|
|
175
|
+
hour12: string;
|
|
176
|
+
none: string;
|
|
177
|
+
recordCreationTime: string;
|
|
178
|
+
selectSpecificDate: string;
|
|
179
|
+
percent: string;
|
|
180
|
+
number: string;
|
|
181
|
+
color: string;
|
|
182
|
+
style: string;
|
|
183
|
+
progressColor: string;
|
|
184
|
+
customProgressBar: string;
|
|
185
|
+
startValue: string;
|
|
186
|
+
targetValue: string;
|
|
187
|
+
searchGroups: string;
|
|
188
|
+
selectGroups: string;
|
|
189
|
+
noProviderGroupData: string;
|
|
190
|
+
noMatchingGroups: string;
|
|
191
|
+
searchMembers: string;
|
|
192
|
+
selectMembers: string;
|
|
193
|
+
noProviderData: string;
|
|
194
|
+
noMatchingMembers: string;
|
|
195
|
+
noFormulaConfigured: string;
|
|
196
|
+
editFormula: string;
|
|
197
|
+
closeFormulaEditor: string;
|
|
198
|
+
formulaHint: string;
|
|
199
|
+
formulaReferenceError: string;
|
|
200
|
+
formulaTables: string;
|
|
201
|
+
formulaFields: string;
|
|
202
|
+
formulaFunctions: string;
|
|
203
|
+
formulaFunction: string;
|
|
204
|
+
formulaParameters: string;
|
|
205
|
+
formulaOptional: string;
|
|
206
|
+
formulaRepeat: string;
|
|
207
|
+
formulaExample: string;
|
|
208
|
+
currentTable: string;
|
|
209
|
+
currentTableField: string;
|
|
210
|
+
fieldFromTable: string;
|
|
211
|
+
referenceCurrentField: string;
|
|
212
|
+
referenceTableField: string;
|
|
213
|
+
fieldNameColumn: string;
|
|
214
|
+
fieldTypeColumn: string;
|
|
215
|
+
insertColumn: string;
|
|
216
|
+
insert: string;
|
|
217
|
+
formulaNumberFormatSheetPattern: string;
|
|
218
|
+
formulaFormatType: string;
|
|
219
|
+
formulaCustomPattern: string;
|
|
220
|
+
formulaFormatGeneral: string;
|
|
221
|
+
formulaFormatNumber: string;
|
|
222
|
+
formulaFormatCurrency: string;
|
|
223
|
+
formulaFormatAccounting: string;
|
|
224
|
+
formulaFormatPercent: string;
|
|
225
|
+
formulaFormatDateTime: string;
|
|
226
|
+
addDescriptionPlaceholder: string;
|
|
227
|
+
numberingDescription: string;
|
|
228
|
+
optionColor: string;
|
|
229
|
+
separatorLocal: string;
|
|
230
|
+
separatorCommaPeriod: string;
|
|
231
|
+
separatorPeriodComma: string;
|
|
232
|
+
separatorSpaceComma: string;
|
|
233
|
+
separatorSpacePeriod: string;
|
|
234
|
+
direction: string;
|
|
235
|
+
groupFirstToLast: string;
|
|
236
|
+
groupLastToFirst: string;
|
|
237
|
+
checkboxIconCheck: string;
|
|
238
|
+
checkboxIconCross: string;
|
|
239
|
+
checkboxIconStar: string;
|
|
240
|
+
checkboxIconHeart: string;
|
|
241
|
+
checkboxIconThumb: string;
|
|
242
|
+
checkboxIconFlag: string;
|
|
243
|
+
checkboxIconDot: string;
|
|
244
|
+
ratingIconStar: string;
|
|
245
|
+
ratingIconHeart: string;
|
|
246
|
+
ratingIconThumb: string;
|
|
247
|
+
ratingIconFire: string;
|
|
248
|
+
ratingIconSmile: string;
|
|
249
|
+
ratingIconLightning: string;
|
|
250
|
+
ratingIconMedal: string;
|
|
251
|
+
increment: string;
|
|
252
|
+
decrement: string;
|
|
253
|
+
};
|
|
254
|
+
cellEditor: {
|
|
255
|
+
done: string;
|
|
256
|
+
text: string;
|
|
257
|
+
displayText: string;
|
|
258
|
+
url: string;
|
|
259
|
+
linkPlaceholder: string;
|
|
260
|
+
attachments: string;
|
|
261
|
+
attachFile: string;
|
|
262
|
+
failedToAttachFile: string;
|
|
263
|
+
file: string;
|
|
264
|
+
invalidEmail: string;
|
|
265
|
+
invalidPhone: string;
|
|
266
|
+
closePreview: string;
|
|
267
|
+
searchOption: string;
|
|
268
|
+
selectOption: string;
|
|
269
|
+
selectOptions: string;
|
|
270
|
+
previousMonth: string;
|
|
271
|
+
nextMonth: string;
|
|
272
|
+
time: string;
|
|
273
|
+
};
|
|
274
|
+
recordDetailField: {
|
|
275
|
+
previousRecord: string;
|
|
276
|
+
nextRecord: string;
|
|
277
|
+
pleaseSelect: string;
|
|
278
|
+
addAttachment: string;
|
|
279
|
+
failedToAttachFile: string;
|
|
280
|
+
closePreview: string;
|
|
281
|
+
typeHere: string;
|
|
282
|
+
empty: string;
|
|
283
|
+
unassigned: string;
|
|
284
|
+
editField: string;
|
|
285
|
+
noVisibleFields: string;
|
|
286
|
+
};
|
|
287
|
+
fieldTypes: {
|
|
288
|
+
text: string;
|
|
289
|
+
singleSelect: string;
|
|
290
|
+
multiSelect: string;
|
|
291
|
+
person: string;
|
|
292
|
+
group: string;
|
|
293
|
+
date: string;
|
|
294
|
+
attachment: string;
|
|
295
|
+
number: string;
|
|
296
|
+
checkbox: string;
|
|
297
|
+
link: string;
|
|
298
|
+
formula: string;
|
|
299
|
+
numbering: string;
|
|
300
|
+
phone: string;
|
|
301
|
+
email: string;
|
|
302
|
+
progress: string;
|
|
303
|
+
currency: string;
|
|
304
|
+
rating: string;
|
|
305
|
+
createdBy: string;
|
|
306
|
+
updatedBy: string;
|
|
307
|
+
createdAt: string;
|
|
308
|
+
updatedAt: string;
|
|
309
|
+
};
|
|
310
|
+
viewMenus: {
|
|
311
|
+
customizeKanban: string;
|
|
312
|
+
customizeCard: string;
|
|
313
|
+
eventSettings: string;
|
|
314
|
+
calendarViewSettings: string;
|
|
315
|
+
calendarViewSettingsTitle: string;
|
|
316
|
+
ganttViewSettings: string;
|
|
317
|
+
fieldsCount: string;
|
|
318
|
+
cover: string;
|
|
319
|
+
cardLayout: string;
|
|
320
|
+
normal: string;
|
|
321
|
+
normalDescription: string;
|
|
322
|
+
compose: string;
|
|
323
|
+
composeDescription: string;
|
|
324
|
+
cardSize: string;
|
|
325
|
+
small: string;
|
|
326
|
+
medium: string;
|
|
327
|
+
large: string;
|
|
328
|
+
showFieldNames: string;
|
|
329
|
+
startDate: string;
|
|
330
|
+
endDate: string;
|
|
331
|
+
title: string;
|
|
332
|
+
timeslotSize: string;
|
|
333
|
+
timeslotShort: string;
|
|
334
|
+
timeslotMedium: string;
|
|
335
|
+
timeslotLong: string;
|
|
336
|
+
displayColor: string;
|
|
337
|
+
customizeColor: string;
|
|
338
|
+
alignWithRecords: string;
|
|
339
|
+
timeZone: string;
|
|
340
|
+
localTimeZone: string;
|
|
341
|
+
conditionalColor: string;
|
|
342
|
+
conditionsApplied: string;
|
|
343
|
+
addCondition: string;
|
|
344
|
+
calculateWorkingDaysOnly: string;
|
|
345
|
+
customWorkingDays: string;
|
|
346
|
+
customWorkingDaysHelp: string;
|
|
347
|
+
notSet: string;
|
|
348
|
+
settings: string;
|
|
349
|
+
setWorkingDays: string;
|
|
350
|
+
setWorkingDaysDescription: string;
|
|
351
|
+
closeWorkingDaysSettings: string;
|
|
352
|
+
addWorkingDays: string;
|
|
353
|
+
holidayName: string;
|
|
354
|
+
dayOff: string;
|
|
355
|
+
working: string;
|
|
356
|
+
add: string;
|
|
357
|
+
removeWorkingDayException: string;
|
|
358
|
+
legalWorkingDays: string;
|
|
359
|
+
legalWorkingDaysHelp: string;
|
|
360
|
+
mon: string;
|
|
361
|
+
tue: string;
|
|
362
|
+
wed: string;
|
|
363
|
+
thu: string;
|
|
364
|
+
fri: string;
|
|
365
|
+
sat: string;
|
|
366
|
+
sun: string;
|
|
367
|
+
monFri: string;
|
|
368
|
+
days: string;
|
|
369
|
+
workingDaysSummary: string;
|
|
370
|
+
exceptionsSummary: string;
|
|
371
|
+
calendarColor: string;
|
|
372
|
+
color: string;
|
|
373
|
+
editGroupTitle: string;
|
|
374
|
+
groupByFieldFallback: string;
|
|
375
|
+
kanbanGroup: string;
|
|
376
|
+
required: string;
|
|
377
|
+
kanbanGroupHelp: string;
|
|
378
|
+
};
|
|
379
|
+
operators: {
|
|
380
|
+
is: string;
|
|
381
|
+
isNot: string;
|
|
382
|
+
contains: string;
|
|
383
|
+
notContains: string;
|
|
384
|
+
isEmpty: string;
|
|
385
|
+
isNotEmpty: string;
|
|
386
|
+
greaterThan: string;
|
|
387
|
+
lessThan: string;
|
|
388
|
+
before: string;
|
|
389
|
+
after: string;
|
|
390
|
+
};
|
|
391
|
+
viewSettings: {
|
|
392
|
+
title: string;
|
|
393
|
+
viewName: string;
|
|
394
|
+
addView: string;
|
|
395
|
+
createViewTitle: string;
|
|
396
|
+
createViewDescription: string;
|
|
397
|
+
setAsFirstTab: string;
|
|
398
|
+
renameView: string;
|
|
399
|
+
duplicateView: string;
|
|
400
|
+
configureView: string;
|
|
401
|
+
deleteView: string;
|
|
402
|
+
newGridView: string;
|
|
403
|
+
newKanbanView: string;
|
|
404
|
+
newCalendarView: string;
|
|
405
|
+
newGanttView: string;
|
|
406
|
+
newGalleryView: string;
|
|
407
|
+
gridView: string;
|
|
408
|
+
gridViewDescription: string;
|
|
409
|
+
kanbanView: string;
|
|
410
|
+
kanbanViewDescription: string;
|
|
411
|
+
calendarView: string;
|
|
412
|
+
calendarViewDescription: string;
|
|
413
|
+
ganttView: string;
|
|
414
|
+
ganttViewDescription: string;
|
|
415
|
+
galleryView: string;
|
|
416
|
+
galleryViewDescription: string;
|
|
417
|
+
copySuffix: string;
|
|
418
|
+
};
|
|
419
|
+
tableSidebar: {
|
|
420
|
+
searchTables: string;
|
|
421
|
+
addTable: string;
|
|
422
|
+
newTable: string;
|
|
423
|
+
collapse: string;
|
|
424
|
+
expand: string;
|
|
425
|
+
resizeTableSidebar: string;
|
|
426
|
+
configureTable: string;
|
|
427
|
+
renameTable: string;
|
|
428
|
+
duplicateTable: string;
|
|
429
|
+
deleteTable: string;
|
|
430
|
+
defaultTableName: string;
|
|
431
|
+
};
|
|
432
|
+
footer: {
|
|
433
|
+
record: string;
|
|
434
|
+
records: string;
|
|
435
|
+
};
|
|
436
|
+
canvas: {
|
|
437
|
+
addRecord: string;
|
|
438
|
+
attachmentDropLabel: string;
|
|
439
|
+
calculate: string;
|
|
440
|
+
day: string;
|
|
441
|
+
fields: string;
|
|
442
|
+
month: string;
|
|
443
|
+
more: string;
|
|
444
|
+
moveRecord: string;
|
|
445
|
+
quarter: string;
|
|
446
|
+
today: string;
|
|
447
|
+
week: string;
|
|
448
|
+
year: string;
|
|
449
|
+
};
|
|
450
|
+
empty: {
|
|
451
|
+
value: string;
|
|
452
|
+
noRecords: string;
|
|
453
|
+
invalidView: string;
|
|
454
|
+
};
|
|
455
|
+
formula: {
|
|
456
|
+
categories: {
|
|
457
|
+
math: string;
|
|
458
|
+
statistical: string;
|
|
459
|
+
text: string;
|
|
460
|
+
logical: string;
|
|
461
|
+
date: string;
|
|
462
|
+
information: string;
|
|
463
|
+
array: string;
|
|
464
|
+
compatibility: string;
|
|
465
|
+
cube: string;
|
|
466
|
+
database: string;
|
|
467
|
+
engineering: string;
|
|
468
|
+
financial: string;
|
|
469
|
+
lookup: string;
|
|
470
|
+
web: string;
|
|
471
|
+
};
|
|
472
|
+
functions: {
|
|
473
|
+
SUM: {
|
|
474
|
+
abstract: string;
|
|
475
|
+
description: string;
|
|
476
|
+
parameters: {
|
|
477
|
+
number1: {
|
|
478
|
+
name: string;
|
|
479
|
+
detail: string;
|
|
480
|
+
};
|
|
481
|
+
number2: {
|
|
482
|
+
name: string;
|
|
483
|
+
detail: string;
|
|
484
|
+
};
|
|
485
|
+
};
|
|
486
|
+
};
|
|
487
|
+
AVERAGE: {
|
|
488
|
+
abstract: string;
|
|
489
|
+
description: string;
|
|
490
|
+
parameters: {
|
|
491
|
+
number1: {
|
|
492
|
+
name: string;
|
|
493
|
+
detail: string;
|
|
494
|
+
};
|
|
495
|
+
number2: {
|
|
496
|
+
name: string;
|
|
497
|
+
detail: string;
|
|
498
|
+
};
|
|
499
|
+
};
|
|
500
|
+
};
|
|
501
|
+
MIN: {
|
|
502
|
+
abstract: string;
|
|
503
|
+
description: string;
|
|
504
|
+
parameters: {
|
|
505
|
+
number1: {
|
|
506
|
+
name: string;
|
|
507
|
+
detail: string;
|
|
508
|
+
};
|
|
509
|
+
number2: {
|
|
510
|
+
name: string;
|
|
511
|
+
detail: string;
|
|
512
|
+
};
|
|
513
|
+
};
|
|
514
|
+
};
|
|
515
|
+
MAX: {
|
|
516
|
+
abstract: string;
|
|
517
|
+
description: string;
|
|
518
|
+
parameters: {
|
|
519
|
+
number1: {
|
|
520
|
+
name: string;
|
|
521
|
+
detail: string;
|
|
522
|
+
};
|
|
523
|
+
number2: {
|
|
524
|
+
name: string;
|
|
525
|
+
detail: string;
|
|
526
|
+
};
|
|
527
|
+
};
|
|
528
|
+
};
|
|
529
|
+
COUNT: {
|
|
530
|
+
abstract: string;
|
|
531
|
+
description: string;
|
|
532
|
+
parameters: {
|
|
533
|
+
value1: {
|
|
534
|
+
name: string;
|
|
535
|
+
detail: string;
|
|
536
|
+
};
|
|
537
|
+
value2: {
|
|
538
|
+
name: string;
|
|
539
|
+
detail: string;
|
|
540
|
+
};
|
|
541
|
+
};
|
|
542
|
+
};
|
|
543
|
+
COUNTA: {
|
|
544
|
+
abstract: string;
|
|
545
|
+
description: string;
|
|
546
|
+
parameters: {
|
|
547
|
+
value1: {
|
|
548
|
+
name: string;
|
|
549
|
+
detail: string;
|
|
550
|
+
};
|
|
551
|
+
value2: {
|
|
552
|
+
name: string;
|
|
553
|
+
detail: string;
|
|
554
|
+
};
|
|
555
|
+
};
|
|
556
|
+
};
|
|
557
|
+
MEDIAN: {
|
|
558
|
+
abstract: string;
|
|
559
|
+
description: string;
|
|
560
|
+
parameters: {
|
|
561
|
+
number1: {
|
|
562
|
+
name: string;
|
|
563
|
+
detail: string;
|
|
564
|
+
};
|
|
565
|
+
number2: {
|
|
566
|
+
name: string;
|
|
567
|
+
detail: string;
|
|
568
|
+
};
|
|
569
|
+
};
|
|
570
|
+
};
|
|
571
|
+
ROUND: {
|
|
572
|
+
abstract: string;
|
|
573
|
+
description: string;
|
|
574
|
+
parameters: {
|
|
575
|
+
number: {
|
|
576
|
+
name: string;
|
|
577
|
+
detail: string;
|
|
578
|
+
};
|
|
579
|
+
num_digits: {
|
|
580
|
+
name: string;
|
|
581
|
+
detail: string;
|
|
582
|
+
};
|
|
583
|
+
};
|
|
584
|
+
};
|
|
585
|
+
ROUNDUP: {
|
|
586
|
+
abstract: string;
|
|
587
|
+
description: string;
|
|
588
|
+
parameters: {
|
|
589
|
+
number: {
|
|
590
|
+
name: string;
|
|
591
|
+
detail: string;
|
|
592
|
+
};
|
|
593
|
+
num_digits: {
|
|
594
|
+
name: string;
|
|
595
|
+
detail: string;
|
|
596
|
+
};
|
|
597
|
+
};
|
|
598
|
+
};
|
|
599
|
+
ROUNDDOWN: {
|
|
600
|
+
abstract: string;
|
|
601
|
+
description: string;
|
|
602
|
+
parameters: {
|
|
603
|
+
number: {
|
|
604
|
+
name: string;
|
|
605
|
+
detail: string;
|
|
606
|
+
};
|
|
607
|
+
num_digits: {
|
|
608
|
+
name: string;
|
|
609
|
+
detail: string;
|
|
610
|
+
};
|
|
611
|
+
};
|
|
612
|
+
};
|
|
613
|
+
ABS: {
|
|
614
|
+
abstract: string;
|
|
615
|
+
description: string;
|
|
616
|
+
parameters: {
|
|
617
|
+
number: {
|
|
618
|
+
name: string;
|
|
619
|
+
detail: string;
|
|
620
|
+
};
|
|
621
|
+
};
|
|
622
|
+
};
|
|
623
|
+
INT: {
|
|
624
|
+
abstract: string;
|
|
625
|
+
description: string;
|
|
626
|
+
parameters: {
|
|
627
|
+
number: {
|
|
628
|
+
name: string;
|
|
629
|
+
detail: string;
|
|
630
|
+
};
|
|
631
|
+
};
|
|
632
|
+
};
|
|
633
|
+
MOD: {
|
|
634
|
+
abstract: string;
|
|
635
|
+
description: string;
|
|
636
|
+
parameters: {
|
|
637
|
+
number: {
|
|
638
|
+
name: string;
|
|
639
|
+
detail: string;
|
|
640
|
+
};
|
|
641
|
+
divisor: {
|
|
642
|
+
name: string;
|
|
643
|
+
detail: string;
|
|
644
|
+
};
|
|
645
|
+
};
|
|
646
|
+
};
|
|
647
|
+
POWER: {
|
|
648
|
+
abstract: string;
|
|
649
|
+
description: string;
|
|
650
|
+
parameters: {
|
|
651
|
+
number: {
|
|
652
|
+
name: string;
|
|
653
|
+
detail: string;
|
|
654
|
+
};
|
|
655
|
+
power: {
|
|
656
|
+
name: string;
|
|
657
|
+
detail: string;
|
|
658
|
+
};
|
|
659
|
+
};
|
|
660
|
+
};
|
|
661
|
+
SQRT: {
|
|
662
|
+
abstract: string;
|
|
663
|
+
description: string;
|
|
664
|
+
parameters: {
|
|
665
|
+
number: {
|
|
666
|
+
name: string;
|
|
667
|
+
detail: string;
|
|
668
|
+
};
|
|
669
|
+
};
|
|
670
|
+
};
|
|
671
|
+
PRODUCT: {
|
|
672
|
+
abstract: string;
|
|
673
|
+
description: string;
|
|
674
|
+
parameters: {
|
|
675
|
+
number1: {
|
|
676
|
+
name: string;
|
|
677
|
+
detail: string;
|
|
678
|
+
};
|
|
679
|
+
number2: {
|
|
680
|
+
name: string;
|
|
681
|
+
detail: string;
|
|
682
|
+
};
|
|
683
|
+
};
|
|
684
|
+
};
|
|
685
|
+
IF: {
|
|
686
|
+
abstract: string;
|
|
687
|
+
description: string;
|
|
688
|
+
parameters: {
|
|
689
|
+
logical_test: {
|
|
690
|
+
name: string;
|
|
691
|
+
detail: string;
|
|
692
|
+
};
|
|
693
|
+
value_if_true: {
|
|
694
|
+
name: string;
|
|
695
|
+
detail: string;
|
|
696
|
+
};
|
|
697
|
+
value_if_false: {
|
|
698
|
+
name: string;
|
|
699
|
+
detail: string;
|
|
700
|
+
};
|
|
701
|
+
};
|
|
702
|
+
};
|
|
703
|
+
IFS: {
|
|
704
|
+
abstract: string;
|
|
705
|
+
description: string;
|
|
706
|
+
parameters: {
|
|
707
|
+
logical_test1: {
|
|
708
|
+
name: string;
|
|
709
|
+
detail: string;
|
|
710
|
+
};
|
|
711
|
+
value_if_true1: {
|
|
712
|
+
name: string;
|
|
713
|
+
detail: string;
|
|
714
|
+
};
|
|
715
|
+
logical_test2: {
|
|
716
|
+
name: string;
|
|
717
|
+
detail: string;
|
|
718
|
+
};
|
|
719
|
+
};
|
|
720
|
+
};
|
|
721
|
+
IFERROR: {
|
|
722
|
+
abstract: string;
|
|
723
|
+
description: string;
|
|
724
|
+
parameters: {
|
|
725
|
+
value: {
|
|
726
|
+
name: string;
|
|
727
|
+
detail: string;
|
|
728
|
+
};
|
|
729
|
+
value_if_error: {
|
|
730
|
+
name: string;
|
|
731
|
+
detail: string;
|
|
732
|
+
};
|
|
733
|
+
};
|
|
734
|
+
};
|
|
735
|
+
AND: {
|
|
736
|
+
abstract: string;
|
|
737
|
+
description: string;
|
|
738
|
+
parameters: {
|
|
739
|
+
logical1: {
|
|
740
|
+
name: string;
|
|
741
|
+
detail: string;
|
|
742
|
+
};
|
|
743
|
+
logical2: {
|
|
744
|
+
name: string;
|
|
745
|
+
detail: string;
|
|
746
|
+
};
|
|
747
|
+
};
|
|
748
|
+
};
|
|
749
|
+
OR: {
|
|
750
|
+
abstract: string;
|
|
751
|
+
description: string;
|
|
752
|
+
parameters: {
|
|
753
|
+
logical1: {
|
|
754
|
+
name: string;
|
|
755
|
+
detail: string;
|
|
756
|
+
};
|
|
757
|
+
logical2: {
|
|
758
|
+
name: string;
|
|
759
|
+
detail: string;
|
|
760
|
+
};
|
|
761
|
+
};
|
|
762
|
+
};
|
|
763
|
+
NOT: {
|
|
764
|
+
abstract: string;
|
|
765
|
+
description: string;
|
|
766
|
+
parameters: {
|
|
767
|
+
logical: {
|
|
768
|
+
name: string;
|
|
769
|
+
detail: string;
|
|
770
|
+
};
|
|
771
|
+
};
|
|
772
|
+
};
|
|
773
|
+
TRUE: {
|
|
774
|
+
abstract: string;
|
|
775
|
+
description: string;
|
|
776
|
+
parameters: {};
|
|
777
|
+
};
|
|
778
|
+
FALSE: {
|
|
779
|
+
abstract: string;
|
|
780
|
+
description: string;
|
|
781
|
+
parameters: {};
|
|
782
|
+
};
|
|
783
|
+
CONCAT: {
|
|
784
|
+
abstract: string;
|
|
785
|
+
description: string;
|
|
786
|
+
parameters: {
|
|
787
|
+
text1: {
|
|
788
|
+
name: string;
|
|
789
|
+
detail: string;
|
|
790
|
+
};
|
|
791
|
+
text2: {
|
|
792
|
+
name: string;
|
|
793
|
+
detail: string;
|
|
794
|
+
};
|
|
795
|
+
};
|
|
796
|
+
};
|
|
797
|
+
TEXTJOIN: {
|
|
798
|
+
abstract: string;
|
|
799
|
+
description: string;
|
|
800
|
+
parameters: {
|
|
801
|
+
delimiter: {
|
|
802
|
+
name: string;
|
|
803
|
+
detail: string;
|
|
804
|
+
};
|
|
805
|
+
ignore_empty: {
|
|
806
|
+
name: string;
|
|
807
|
+
detail: string;
|
|
808
|
+
};
|
|
809
|
+
text1: {
|
|
810
|
+
name: string;
|
|
811
|
+
detail: string;
|
|
812
|
+
};
|
|
813
|
+
text2: {
|
|
814
|
+
name: string;
|
|
815
|
+
detail: string;
|
|
816
|
+
};
|
|
817
|
+
};
|
|
818
|
+
};
|
|
819
|
+
LEN: {
|
|
820
|
+
abstract: string;
|
|
821
|
+
description: string;
|
|
822
|
+
parameters: {
|
|
823
|
+
text: {
|
|
824
|
+
name: string;
|
|
825
|
+
detail: string;
|
|
826
|
+
};
|
|
827
|
+
};
|
|
828
|
+
};
|
|
829
|
+
LEFT: {
|
|
830
|
+
abstract: string;
|
|
831
|
+
description: string;
|
|
832
|
+
parameters: {
|
|
833
|
+
text: {
|
|
834
|
+
name: string;
|
|
835
|
+
detail: string;
|
|
836
|
+
};
|
|
837
|
+
num_chars: {
|
|
838
|
+
name: string;
|
|
839
|
+
detail: string;
|
|
840
|
+
};
|
|
841
|
+
};
|
|
842
|
+
};
|
|
843
|
+
RIGHT: {
|
|
844
|
+
abstract: string;
|
|
845
|
+
description: string;
|
|
846
|
+
parameters: {
|
|
847
|
+
text: {
|
|
848
|
+
name: string;
|
|
849
|
+
detail: string;
|
|
850
|
+
};
|
|
851
|
+
num_chars: {
|
|
852
|
+
name: string;
|
|
853
|
+
detail: string;
|
|
854
|
+
};
|
|
855
|
+
};
|
|
856
|
+
};
|
|
857
|
+
MID: {
|
|
858
|
+
abstract: string;
|
|
859
|
+
description: string;
|
|
860
|
+
parameters: {
|
|
861
|
+
text: {
|
|
862
|
+
name: string;
|
|
863
|
+
detail: string;
|
|
864
|
+
};
|
|
865
|
+
start_num: {
|
|
866
|
+
name: string;
|
|
867
|
+
detail: string;
|
|
868
|
+
};
|
|
869
|
+
num_chars: {
|
|
870
|
+
name: string;
|
|
871
|
+
detail: string;
|
|
872
|
+
};
|
|
873
|
+
};
|
|
874
|
+
};
|
|
875
|
+
UPPER: {
|
|
876
|
+
abstract: string;
|
|
877
|
+
description: string;
|
|
878
|
+
parameters: {
|
|
879
|
+
text: {
|
|
880
|
+
name: string;
|
|
881
|
+
detail: string;
|
|
882
|
+
};
|
|
883
|
+
};
|
|
884
|
+
};
|
|
885
|
+
LOWER: {
|
|
886
|
+
abstract: string;
|
|
887
|
+
description: string;
|
|
888
|
+
parameters: {
|
|
889
|
+
text: {
|
|
890
|
+
name: string;
|
|
891
|
+
detail: string;
|
|
892
|
+
};
|
|
893
|
+
};
|
|
894
|
+
};
|
|
895
|
+
TRIM: {
|
|
896
|
+
abstract: string;
|
|
897
|
+
description: string;
|
|
898
|
+
parameters: {
|
|
899
|
+
text: {
|
|
900
|
+
name: string;
|
|
901
|
+
detail: string;
|
|
902
|
+
};
|
|
903
|
+
};
|
|
904
|
+
};
|
|
905
|
+
FIND: {
|
|
906
|
+
abstract: string;
|
|
907
|
+
description: string;
|
|
908
|
+
parameters: {
|
|
909
|
+
find_text: {
|
|
910
|
+
name: string;
|
|
911
|
+
detail: string;
|
|
912
|
+
};
|
|
913
|
+
within_text: {
|
|
914
|
+
name: string;
|
|
915
|
+
detail: string;
|
|
916
|
+
};
|
|
917
|
+
start_num: {
|
|
918
|
+
name: string;
|
|
919
|
+
detail: string;
|
|
920
|
+
};
|
|
921
|
+
};
|
|
922
|
+
};
|
|
923
|
+
SEARCH: {
|
|
924
|
+
abstract: string;
|
|
925
|
+
description: string;
|
|
926
|
+
parameters: {
|
|
927
|
+
find_text: {
|
|
928
|
+
name: string;
|
|
929
|
+
detail: string;
|
|
930
|
+
};
|
|
931
|
+
within_text: {
|
|
932
|
+
name: string;
|
|
933
|
+
detail: string;
|
|
934
|
+
};
|
|
935
|
+
start_num: {
|
|
936
|
+
name: string;
|
|
937
|
+
detail: string;
|
|
938
|
+
};
|
|
939
|
+
};
|
|
940
|
+
};
|
|
941
|
+
SUBSTITUTE: {
|
|
942
|
+
abstract: string;
|
|
943
|
+
description: string;
|
|
944
|
+
parameters: {
|
|
945
|
+
text: {
|
|
946
|
+
name: string;
|
|
947
|
+
detail: string;
|
|
948
|
+
};
|
|
949
|
+
old_text: {
|
|
950
|
+
name: string;
|
|
951
|
+
detail: string;
|
|
952
|
+
};
|
|
953
|
+
new_text: {
|
|
954
|
+
name: string;
|
|
955
|
+
detail: string;
|
|
956
|
+
};
|
|
957
|
+
instance_num: {
|
|
958
|
+
name: string;
|
|
959
|
+
detail: string;
|
|
960
|
+
};
|
|
961
|
+
};
|
|
962
|
+
};
|
|
963
|
+
REPLACE: {
|
|
964
|
+
abstract: string;
|
|
965
|
+
description: string;
|
|
966
|
+
parameters: {
|
|
967
|
+
old_text: {
|
|
968
|
+
name: string;
|
|
969
|
+
detail: string;
|
|
970
|
+
};
|
|
971
|
+
start_num: {
|
|
972
|
+
name: string;
|
|
973
|
+
detail: string;
|
|
974
|
+
};
|
|
975
|
+
num_chars: {
|
|
976
|
+
name: string;
|
|
977
|
+
detail: string;
|
|
978
|
+
};
|
|
979
|
+
new_text: {
|
|
980
|
+
name: string;
|
|
981
|
+
detail: string;
|
|
982
|
+
};
|
|
983
|
+
};
|
|
984
|
+
};
|
|
985
|
+
TEXT: {
|
|
986
|
+
abstract: string;
|
|
987
|
+
description: string;
|
|
988
|
+
parameters: {
|
|
989
|
+
value: {
|
|
990
|
+
name: string;
|
|
991
|
+
detail: string;
|
|
992
|
+
};
|
|
993
|
+
format_text: {
|
|
994
|
+
name: string;
|
|
995
|
+
detail: string;
|
|
996
|
+
};
|
|
997
|
+
};
|
|
998
|
+
};
|
|
999
|
+
VALUE: {
|
|
1000
|
+
abstract: string;
|
|
1001
|
+
description: string;
|
|
1002
|
+
parameters: {
|
|
1003
|
+
text: {
|
|
1004
|
+
name: string;
|
|
1005
|
+
detail: string;
|
|
1006
|
+
};
|
|
1007
|
+
};
|
|
1008
|
+
};
|
|
1009
|
+
TODAY: {
|
|
1010
|
+
abstract: string;
|
|
1011
|
+
description: string;
|
|
1012
|
+
parameters: {};
|
|
1013
|
+
};
|
|
1014
|
+
NOW: {
|
|
1015
|
+
abstract: string;
|
|
1016
|
+
description: string;
|
|
1017
|
+
parameters: {};
|
|
1018
|
+
};
|
|
1019
|
+
DATE: {
|
|
1020
|
+
abstract: string;
|
|
1021
|
+
description: string;
|
|
1022
|
+
parameters: {
|
|
1023
|
+
year: {
|
|
1024
|
+
name: string;
|
|
1025
|
+
detail: string;
|
|
1026
|
+
};
|
|
1027
|
+
month: {
|
|
1028
|
+
name: string;
|
|
1029
|
+
detail: string;
|
|
1030
|
+
};
|
|
1031
|
+
day: {
|
|
1032
|
+
name: string;
|
|
1033
|
+
detail: string;
|
|
1034
|
+
};
|
|
1035
|
+
};
|
|
1036
|
+
};
|
|
1037
|
+
YEAR: {
|
|
1038
|
+
abstract: string;
|
|
1039
|
+
description: string;
|
|
1040
|
+
parameters: {
|
|
1041
|
+
serialNumber: {
|
|
1042
|
+
name: string;
|
|
1043
|
+
detail: string;
|
|
1044
|
+
};
|
|
1045
|
+
};
|
|
1046
|
+
};
|
|
1047
|
+
MONTH: {
|
|
1048
|
+
abstract: string;
|
|
1049
|
+
description: string;
|
|
1050
|
+
parameters: {
|
|
1051
|
+
serialNumber: {
|
|
1052
|
+
name: string;
|
|
1053
|
+
detail: string;
|
|
1054
|
+
};
|
|
1055
|
+
};
|
|
1056
|
+
};
|
|
1057
|
+
DAY: {
|
|
1058
|
+
abstract: string;
|
|
1059
|
+
description: string;
|
|
1060
|
+
parameters: {
|
|
1061
|
+
serialNumber: {
|
|
1062
|
+
name: string;
|
|
1063
|
+
detail: string;
|
|
1064
|
+
};
|
|
1065
|
+
};
|
|
1066
|
+
};
|
|
1067
|
+
HOUR: {
|
|
1068
|
+
abstract: string;
|
|
1069
|
+
description: string;
|
|
1070
|
+
parameters: {
|
|
1071
|
+
serialNumber: {
|
|
1072
|
+
name: string;
|
|
1073
|
+
detail: string;
|
|
1074
|
+
};
|
|
1075
|
+
};
|
|
1076
|
+
};
|
|
1077
|
+
MINUTE: {
|
|
1078
|
+
abstract: string;
|
|
1079
|
+
description: string;
|
|
1080
|
+
parameters: {
|
|
1081
|
+
serialNumber: {
|
|
1082
|
+
name: string;
|
|
1083
|
+
detail: string;
|
|
1084
|
+
};
|
|
1085
|
+
};
|
|
1086
|
+
};
|
|
1087
|
+
SECOND: {
|
|
1088
|
+
abstract: string;
|
|
1089
|
+
description: string;
|
|
1090
|
+
parameters: {
|
|
1091
|
+
serialNumber: {
|
|
1092
|
+
name: string;
|
|
1093
|
+
detail: string;
|
|
1094
|
+
};
|
|
1095
|
+
};
|
|
1096
|
+
};
|
|
1097
|
+
DAYS: {
|
|
1098
|
+
abstract: string;
|
|
1099
|
+
description: string;
|
|
1100
|
+
parameters: {
|
|
1101
|
+
end_date: {
|
|
1102
|
+
name: string;
|
|
1103
|
+
detail: string;
|
|
1104
|
+
};
|
|
1105
|
+
start_date: {
|
|
1106
|
+
name: string;
|
|
1107
|
+
detail: string;
|
|
1108
|
+
};
|
|
1109
|
+
};
|
|
1110
|
+
};
|
|
1111
|
+
ISBLANK: {
|
|
1112
|
+
abstract: string;
|
|
1113
|
+
description: string;
|
|
1114
|
+
parameters: {
|
|
1115
|
+
value: {
|
|
1116
|
+
name: string;
|
|
1117
|
+
detail: string;
|
|
1118
|
+
};
|
|
1119
|
+
};
|
|
1120
|
+
};
|
|
1121
|
+
ISNUMBER: {
|
|
1122
|
+
abstract: string;
|
|
1123
|
+
description: string;
|
|
1124
|
+
parameters: {
|
|
1125
|
+
value: {
|
|
1126
|
+
name: string;
|
|
1127
|
+
detail: string;
|
|
1128
|
+
};
|
|
1129
|
+
};
|
|
1130
|
+
};
|
|
1131
|
+
ISTEXT: {
|
|
1132
|
+
abstract: string;
|
|
1133
|
+
description: string;
|
|
1134
|
+
parameters: {
|
|
1135
|
+
value: {
|
|
1136
|
+
name: string;
|
|
1137
|
+
detail: string;
|
|
1138
|
+
};
|
|
1139
|
+
};
|
|
1140
|
+
};
|
|
1141
|
+
ISERROR: {
|
|
1142
|
+
abstract: string;
|
|
1143
|
+
description: string;
|
|
1144
|
+
parameters: {
|
|
1145
|
+
value: {
|
|
1146
|
+
name: string;
|
|
1147
|
+
detail: string;
|
|
1148
|
+
};
|
|
1149
|
+
};
|
|
1150
|
+
};
|
|
1151
|
+
};
|
|
1152
|
+
generic: {
|
|
1153
|
+
engineAbstract: string;
|
|
1154
|
+
engineDescription: string;
|
|
1155
|
+
argument: {
|
|
1156
|
+
name: string;
|
|
1157
|
+
detail: string;
|
|
1158
|
+
};
|
|
1159
|
+
};
|
|
1160
|
+
};
|
|
1161
|
+
};
|
|
1162
|
+
};
|
|
1163
|
+
export default locale;
|