@innovastudio/contentbuilder 1.1.12 → 1.1.13
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/license.txt +79 -79
- package/package.json +1 -1
- package/public/contentbuilder/config.js +6 -6
- package/public/contentbuilder/contentbuilder.esm.js +31 -3
- package/public/contentbuilder/contentbuilder.min.js +1 -1
- package/public/contentbuilder/lang/en.js +337 -337
- package/public/contentbuilder/lang/fr.js +337 -337
- package/public/contentbuilder/plugins/buttoneditor/plugin.js +1600 -1600
- package/public/contentbuilder/plugins/buttoneditor/readme.txt +6 -6
- package/public/contentbuilder/plugins/helloworld/plugin.js +15 -15
- package/public/contentbuilder/plugins/helloworld/readme.txt +23 -23
- package/public/contentbuilder/plugins/preview/plugin.js +339 -339
- package/public/contentbuilder/plugins/preview/readme.txt +23 -23
- package/public/contentbuilder/plugins/searchreplace/plugin.js +459 -459
- package/public/contentbuilder/plugins/searchreplace/readme.txt +23 -23
- package/public/contentbuilder/plugins/searchreplace/searchreplace.html +264 -264
- package/public/contentbuilder/plugins/showgrid/plugin.js +74 -74
- package/public/contentbuilder/plugins/showgrid/readme.txt +23 -23
- package/public/contentbuilder/plugins/symbols/plugin.js +2876 -2876
- package/public/contentbuilder/plugins/symbols/readme.txt +23 -23
- package/public/contentbuilder/plugins/wordcount/plugin.js +76 -76
- package/public/contentbuilder/plugins/wordcount/readme.txt +23 -23
- package/readme.txt +25 -25
|
@@ -1,338 +1,338 @@
|
|
|
1
|
-
var _txt = new Array();
|
|
2
|
-
_txt["Bold"] = "Bold";
|
|
3
|
-
_txt["Italic"] = "Italic";
|
|
4
|
-
_txt["Hyperlink"] = "Hyperlink";
|
|
5
|
-
_txt["Align"] = "Align";
|
|
6
|
-
_txt["Paragraph"] = "Paragraph";
|
|
7
|
-
_txt["Color"] = "Color";
|
|
8
|
-
_txt["Formatting"] = "Formatting";
|
|
9
|
-
_txt["List"] = "List";
|
|
10
|
-
_txt["Text Settings"] = "Text Settings";
|
|
11
|
-
_txt["Icon"] = "Icon";
|
|
12
|
-
_txt["Clean"] = "Clean";
|
|
13
|
-
_txt["Font"] = "Font";
|
|
14
|
-
_txt["Previous"] = "Previous";
|
|
15
|
-
_txt["Next"] = "Next";
|
|
16
|
-
_txt["More"] = "More";
|
|
17
|
-
_txt["Move Up"] = "Move Up";
|
|
18
|
-
_txt["Move Down"] = "Move Down";
|
|
19
|
-
_txt["Move Left"] = "Move Left";
|
|
20
|
-
_txt["Move Right"] = "Move Right";
|
|
21
|
-
_txt["Delete"] = "Delete";
|
|
22
|
-
_txt["Add"] = "Add";
|
|
23
|
-
_txt["Move"] = "Move";
|
|
24
|
-
_txt["Duplicate"] = "Duplicate";
|
|
25
|
-
_txt["Decrease"] = "Decrease";
|
|
26
|
-
_txt["Increase"] = "Increase";
|
|
27
|
-
_txt["HTML"] = "HTML";
|
|
28
|
-
_txt["Headline"] = "Headline";
|
|
29
|
-
_txt["Image"] = "Image";
|
|
30
|
-
_txt["Heading 1"] = "Heading 1";
|
|
31
|
-
_txt["Heading 2"] = "Heading 2";
|
|
32
|
-
_txt["Heading 3"] = "Heading 3";
|
|
33
|
-
_txt["Quote"] = "Quote";
|
|
34
|
-
_txt["Preformatted"] = "Preformatted";
|
|
35
|
-
_txt["Table"] = "Table";
|
|
36
|
-
_txt["Spacer"] = "Spacer";
|
|
37
|
-
_txt["Horizontal Line"] = "Horizontal Line";
|
|
38
|
-
_txt["More..."] = "More...";
|
|
39
|
-
_txt["Enlarge"] = "Enlarge";
|
|
40
|
-
_txt["Ok"] = "Ok";
|
|
41
|
-
_txt["Align Left"] = "Align Left";
|
|
42
|
-
_txt["Align Center"] = "Align Center";
|
|
43
|
-
_txt["Align Right"] = "Align Right";
|
|
44
|
-
_txt["Align Full"] = "Align Full";
|
|
45
|
-
_txt["Bullets"] = "Bullets";
|
|
46
|
-
_txt["Numbering"] = "Numbering";
|
|
47
|
-
_txt["Indent"] = "Indent";
|
|
48
|
-
_txt["Outdent"] = "Outdent";
|
|
49
|
-
_txt["Heading 4"] = "Heading 4";
|
|
50
|
-
_txt["Underline"] = "Underline";
|
|
51
|
-
_txt["Strikethrough"] = "Strikethrough";
|
|
52
|
-
_txt["Superscript"] = "Superscript";
|
|
53
|
-
_txt["Subscript"] = "Subscript";
|
|
54
|
-
_txt["Uppercase"] = "Uppercase";
|
|
55
|
-
_txt["Clear"] = "Clear";
|
|
56
|
-
_txt["Choose.."] = "Choose..";
|
|
57
|
-
_txt["Forecolor"] = "Forecolor";
|
|
58
|
-
_txt["Backcolor"] = "Backcolor";
|
|
59
|
-
_txt["Apply"] = "Apply";
|
|
60
|
-
_txt["Cancel"] = "Cancel";
|
|
61
|
-
_txt["Change Image"] = "Change Image";
|
|
62
|
-
_txt["Link"] = "Link";
|
|
63
|
-
_txt["Edit"] = "Edit";
|
|
64
|
-
_txt["Source"] = "Source";
|
|
65
|
-
_txt["Settings"] = "Settings";
|
|
66
|
-
_txt["Change Icon"] = "Change Icon";
|
|
67
|
-
_txt["Edit Table"] = "Edit Table";
|
|
68
|
-
_txt["Select"] = "Select";
|
|
69
|
-
_txt["Open new window"] = "Open new window";
|
|
70
|
-
_txt["Open New Window"] = "Open New Window"; //not used (backward compatible)
|
|
71
|
-
_txt["Text"] = "Text";
|
|
72
|
-
_txt["Title"] = "Title";
|
|
73
|
-
_txt["Free"] = "Free";
|
|
74
|
-
_txt["Style"] = "Style";
|
|
75
|
-
_txt["Layout"] = "Layout";
|
|
76
|
-
_txt["Background"] = "Background";
|
|
77
|
-
_txt["Select Color"] = "Select Color";
|
|
78
|
-
_txt["Text Color"] = "Text Color";
|
|
79
|
-
_txt["Border Thickness"] = "Border Thickness";
|
|
80
|
-
_txt["Border Color"] = "Border Color";
|
|
81
|
-
_txt["Apply To"] = "Apply To";
|
|
82
|
-
_txt["Current Row"] = "Current Row";
|
|
83
|
-
_txt["Current Column"] = "Current Column";
|
|
84
|
-
_txt["Even Rows"] = "Even Rows";
|
|
85
|
-
_txt["Odd Rows"] = "Odd Rows";
|
|
86
|
-
_txt["Current Cell"] = "Current Cell";
|
|
87
|
-
_txt["Insert Row"] = "Insert Row";
|
|
88
|
-
_txt["Insert Column"] = "Insert Column";
|
|
89
|
-
_txt["Delete Row"] = "Delete Row";
|
|
90
|
-
_txt["Delete Column"] = "Delete Column";
|
|
91
|
-
_txt["Above"] = "Above";
|
|
92
|
-
_txt["Below"] = "Below";
|
|
93
|
-
_txt["Left"] = "Left";
|
|
94
|
-
_txt["Right"] = "Right";
|
|
95
|
-
_txt["Row"] = "Row";
|
|
96
|
-
_txt["Column"] = "Column";
|
|
97
|
-
_txt["Merge"] = "Merge";
|
|
98
|
-
_txt["Merge Cell"] = "Merge Cell";
|
|
99
|
-
_txt["css"] = "css";
|
|
100
|
-
_txt["Class"] = "Class";
|
|
101
|
-
_txt["Box"] = "Box";
|
|
102
|
-
_txt["Spacing"] = "Spacing";
|
|
103
|
-
_txt["Border"] = "Border";
|
|
104
|
-
_txt["Corners"] = "Corners";
|
|
105
|
-
_txt["Shadow"] = "Shadow";
|
|
106
|
-
_txt["Display"] = "Display";
|
|
107
|
-
_txt["Position"] = "Position";
|
|
108
|
-
_txt["Effects"] = "Effects";
|
|
109
|
-
_txt["Attributes"] = "Attributes";
|
|
110
|
-
_txt["Animation"] = "Animation";
|
|
111
|
-
_txt["Background Color"] = "Background Color";
|
|
112
|
-
_txt["Gradient"] = "Gradient";
|
|
113
|
-
_txt["Dimension"] = "Dimension";
|
|
114
|
-
_txt["Responsive Positioning"] = "Responsive Positioning";
|
|
115
|
-
_txt["Reset margin left on small screen"] = "Reset margin left on small screen";
|
|
116
|
-
_txt["Reset margin right on small screen"] = "Reset margin right on small screen";
|
|
117
|
-
_txt["Individual Sides"] = "Individual Sides";
|
|
118
|
-
_txt["Select Font"] = "Select Font";
|
|
119
|
-
_txt["Animate"] = "Animate";
|
|
120
|
-
_txt["Delay"] = "Delay";
|
|
121
|
-
_txt["Duration"] = "Duration";
|
|
122
|
-
_txt["Animate Once"] = "Animate Once";
|
|
123
|
-
_txt["Test"] = "Test";
|
|
124
|
-
_txt["TEST"] = "TEST";
|
|
125
|
-
_txt["Custom"] = "Custom";
|
|
126
|
-
_txt["Module Settings"] = "Module Settings";
|
|
127
|
-
_txt["Drag and drop an image or click to browse."] = "Drag and drop an image or click to browse.";
|
|
128
|
-
_txt["Are you sure you want to delete this block?"] = "Are you sure you want to delete this block?";
|
|
129
|
-
_txt["Back"] = "Back";
|
|
130
|
-
_txt["Or Specify Image Source"] = "Or Specify Image Source";
|
|
131
|
-
_txt["Preferences"] = "Preferences";
|
|
132
|
-
_txt["Hide element tool"] = "Hide element tool";
|
|
133
|
-
_txt["Hide column tool"] = "Hide column tool";
|
|
134
|
-
_txt["Line"] = "Line";
|
|
135
|
-
_txt["Hide column HTML editor"] = "Hide column HTML editor";
|
|
136
|
-
_txt["Hide row HTML editor"] = "Hide row HTML editor";
|
|
137
|
-
_txt["Hide row move (up/down) buttons"] = "Hide row move (up/down) buttons";
|
|
138
|
-
_txt["HTML syntax highlighting"] = "HTML syntax highlighting";
|
|
139
|
-
_txt["Scrollable Editing Toolbar"] = "Scrollable Editing Toolbar";
|
|
140
|
-
_txt["Toolbar position"] = "Toolbar position";
|
|
141
|
-
_txt["Top"] = "Top";
|
|
142
|
-
_txt["Toolbar visibility"] = "Toolbar visibility";
|
|
143
|
-
_txt["Auto"] = "Auto";
|
|
144
|
-
_txt["Always Visible"] = "Always Visible";
|
|
145
|
-
_txt["Paste result"] = "Paste result";
|
|
146
|
-
_txt["HTML (without styles)"] = "HTML (without styles)";
|
|
147
|
-
_txt["HTML (with styles)"] = "HTML (with styles)";
|
|
148
|
-
_txt["Text only"] = "Text only";
|
|
149
|
-
_txt["Add Snippet"] = "Add Snippet";
|
|
150
|
-
_txt["Grid Tool"] = "Grid Tool";
|
|
151
|
-
_txt["Element Tool"] = "Element Tool";
|
|
152
|
-
_txt["Builder Mode"] = "Builder Mode";
|
|
153
|
-
_txt["Default"] = "Default";
|
|
154
|
-
_txt["Minimal"] = "Minimal";
|
|
155
|
-
_txt["Hide outline"] = "Hide outline";
|
|
156
|
-
_txt["Hide element highlight"] = "Hide element highlight";
|
|
157
|
-
_txt["Row tool position"] = "Row tool position";
|
|
158
|
-
_txt["Add (+) button placement"] = "Add (+) button placement";
|
|
159
|
-
_txt["Between Blocks (left)"] = "Between Blocks (left)";
|
|
160
|
-
_txt["Between Blocks (center)"] = "Between Blocks (center)";
|
|
161
|
-
_txt["Outline Mode"] = "Outline Mode";
|
|
162
|
-
_txt["Row & column"] = "Row & column";
|
|
163
|
-
_txt["Row only"] = "Row only";
|
|
164
|
-
_txt["Draggable blocks without handle"] = "Draggable blocks without handle";
|
|
165
|
-
_txt["Animated drag to sort"] = "Animated drag to sort";
|
|
166
|
-
_txt["Open snippets sidebar on start"] = "Open snippets sidebar on start";
|
|
167
|
-
_txt["Scrollable toolbar (top only)"] = "Scrollable toolbar (top only)";
|
|
168
|
-
_txt["Please select a block"] = "Please select a block";
|
|
169
|
-
_txt["Open snippet sidebar on start"] = "Open snippet sidebar on start";
|
|
170
|
-
_txt["Hide snippet handle"] = "Hide snippet handle";
|
|
171
|
-
_txt["Undo"] = "Undo";
|
|
172
|
-
_txt["Redo"] = "Redo";
|
|
173
|
-
_txt["Empty"] = "Empty";
|
|
174
|
-
_txt["+ Click to add content"] = "+ Click to add content";
|
|
175
|
-
_txt["B"] = "B";
|
|
176
|
-
_txt["W"] = "W";
|
|
177
|
-
_txt["Outline Style"] = "Outline Style";
|
|
178
|
-
_txt["Colored"] = "Colored";
|
|
179
|
-
_txt["Gray"] = "Gray";
|
|
180
|
-
_txt["Hide Outline"] = "Hide Outline";
|
|
181
|
-
_txt["Hide Column Tool"] = "Hide Column Tool";
|
|
182
|
-
_txt["Row Tool Position"] = "Row Tool Position";
|
|
183
|
-
_txt["Tool Style"] = "Tool Style";
|
|
184
|
-
_txt["Hide Snippet (+) Tool"] = "Hide Snippet (+) Tool";
|
|
185
|
-
_txt["Tool Outline"] = "Tool Outline";
|
|
186
|
-
_txt["Button"] = "Button";
|
|
187
|
-
_txt["Button Editor"] = "Button Editor";
|
|
188
|
-
_txt["Edit Button"] = "Edit Button";
|
|
189
|
-
_txt["Grid Editor"] = "Grid Editor";
|
|
190
|
-
_txt["Outline"] = "Outline";
|
|
191
|
-
_txt["Font Size"] = "Font Size";
|
|
192
|
-
_txt["Line Spacing"] = "Line Spacing";
|
|
193
|
-
_txt["Letter Spacing"] = "Letter Spacing";
|
|
194
|
-
_txt["Close"] = "Close";
|
|
195
|
-
_txt["Search & Replace"] = "Search & Replace";
|
|
196
|
-
_txt["Word Count"] = "Word Count";
|
|
197
|
-
_txt["words"] = "words";
|
|
198
|
-
_txt["Characters"] = "Characters";
|
|
199
|
-
_txt["Characters (no spaces)"] = "Characters (no spaces)";
|
|
200
|
-
_txt["Add to Left"] = "Add to Left";
|
|
201
|
-
_txt["Add to Right"] = "Add to Right";
|
|
202
|
-
_txt["Border Top Color"] = "Border Top Color";
|
|
203
|
-
_txt["Border Bottom Color"] = "Border Bottom Color";
|
|
204
|
-
_txt["Border Left Color"] = "Border Left Color";
|
|
205
|
-
_txt["Border Right Color"] = "Border Right Color";
|
|
206
|
-
_txt["Snippets sidebar visibility"] = "Snippets sidebar visibility";
|
|
207
|
-
_txt["You have reached the maximum number of columns"] = "You have reached the maximum number of columns";
|
|
208
|
-
_txt["Width"] = "Width";
|
|
209
|
-
_txt["Height"] = "Height";
|
|
210
|
-
_txt["Names"] = "Names";
|
|
211
|
-
_txt["Values"] = "Values";
|
|
212
|
-
_txt["Border Top"] = "Border Top";
|
|
213
|
-
_txt["Border Bottom"] = "Border Bottom";
|
|
214
|
-
_txt["Border Left"] = "Border Left";
|
|
215
|
-
_txt["Border Right"] = "Border Right";
|
|
216
|
-
_txt["Individual Corners"] = "Individual Corners";
|
|
217
|
-
_txt["Top Left"] = "Top Left";
|
|
218
|
-
_txt["Top Right"] = "Top Right";
|
|
219
|
-
_txt["Bottom Left"] = "Bottom Left";
|
|
220
|
-
_txt["Bottom Right"] = "Bottom Right";
|
|
221
|
-
_txt["Flex"] = "Flex";
|
|
222
|
-
_txt["Direction"] = "Direction";
|
|
223
|
-
_txt["Wrap"] = "Wrap";
|
|
224
|
-
_txt["Justify Content"] = "Justify Content";
|
|
225
|
-
_txt["Align Items"] = "Align Items";
|
|
226
|
-
_txt["Align Content"] = "Align Content";
|
|
227
|
-
_txt["Opacity"] = "Opacity";
|
|
228
|
-
_txt["Filters"] = "Filters";
|
|
229
|
-
_txt["Blur"] = "Blur";
|
|
230
|
-
_txt["Brightness"] = "Brightness";
|
|
231
|
-
_txt["Contrast"] = "Contrast";
|
|
232
|
-
_txt["Grayscale"] = "Grayscale";
|
|
233
|
-
_txt["Hue Rotate"] = "Hue Rotate";
|
|
234
|
-
_txt["Invert"] = "Invert";
|
|
235
|
-
_txt["Saturate"] = "Saturate";
|
|
236
|
-
_txt["Sepia"] = "Sepia";
|
|
237
|
-
_txt["Bottom"] = "Bottom";
|
|
238
|
-
_txt["Float"] = "Float";
|
|
239
|
-
_txt["x Offset"] = "x Offset";
|
|
240
|
-
_txt["y Offset"] = "y Offset";
|
|
241
|
-
_txt["Spread"] = "Spread";
|
|
242
|
-
_txt["Shadow Color"] = "Shadow Color";
|
|
243
|
-
_txt["Outer/Inner Shadow"] = "Outer/Inner Shadow";
|
|
244
|
-
_txt["Margin"] = "Margin";
|
|
245
|
-
_txt["Padding"] = "Padding";
|
|
246
|
-
_txt["Text Align"] = "Text Align";
|
|
247
|
-
_txt["Center"] = "Center";
|
|
248
|
-
_txt["Full"] = "Full";
|
|
249
|
-
_txt["Line Height"] = "Line Height";
|
|
250
|
-
_txt["Font Weight"] = "Font Weight";
|
|
251
|
-
_txt["Font Style"] = "Font Style";
|
|
252
|
-
_txt["Text Transform"] = "Text Transform";
|
|
253
|
-
_txt["Text Decoration"] = "Text Decoration";
|
|
254
|
-
_txt["Word Spacing"] = "Word Spacing";
|
|
255
|
-
_txt["Font Family"] = "Font Family";
|
|
256
|
-
_txt["Normal"] = "Normal";
|
|
257
|
-
_txt["Lowercase"] = "Lowercase";
|
|
258
|
-
_txt["Capitalize"] = "Capitalize";
|
|
259
|
-
_txt["None"] = "None";
|
|
260
|
-
_txt["Underline"] = "Underline";
|
|
261
|
-
_txt["Line Through"] = "Line Through";
|
|
262
|
-
_txt["Overline"] = "Overline";
|
|
263
|
-
_txt["Hover"] = "Hover";
|
|
264
|
-
_txt["Saved"] = "Saved";
|
|
265
|
-
_txt["Templates"] = "Templates";
|
|
266
|
-
_txt["No Border"] = "No Border";
|
|
267
|
-
_txt["Border Radius"] = "Border Radius";
|
|
268
|
-
_txt["Button Size"] = "Button Size";
|
|
269
|
-
_txt["Upper/lower"] = "Upper/lower";
|
|
270
|
-
_txt["Weight"] = "Weight";
|
|
271
|
-
_txt["Save Current Button"] = "Save Current Button";
|
|
272
|
-
_txt["Tags"] = "Tags";
|
|
273
|
-
_txt["Snippet"] = "Snippet";
|
|
274
|
-
_txt["Mono"] = "Mono";
|
|
275
|
-
_txt["Zoom"] = "Zoom";
|
|
276
|
-
_txt["Set theme"] = "Set theme";
|
|
277
|
-
_txt["Open in a lightbox (for image, video or Youtube)"] = "Open in a lightbox (for image, video or Youtube)";
|
|
278
|
-
_txt["Column Settings"] = "Column Settings";
|
|
279
|
-
_txt["Lock"] = "Lock";
|
|
280
|
-
_txt["General"] = "General";
|
|
281
|
-
_txt["Content"] = "Content";
|
|
282
|
-
_txt["On Click"] = "On Click";
|
|
283
|
-
_txt["Background Image"] = "Background Image";
|
|
284
|
-
_txt["Adjust"] = "Adjust";
|
|
285
|
-
_txt["Dark"] = "Dark";
|
|
286
|
-
_txt["Light"] = "Light";
|
|
287
|
-
_txt["Enlarge Row"] = "Enlarge Row";
|
|
288
|
-
_txt["Content Alignment"] = "Content Alignment";
|
|
289
|
-
_txt["Top Center"] = "Top Center";
|
|
290
|
-
_txt["Bottom Center"] = "Bottom Center";
|
|
291
|
-
_txt["Center Left"] = "Center Left";
|
|
292
|
-
_txt["Center Right"] = "Center Right";
|
|
293
|
-
_txt["Open"] = "Open";
|
|
294
|
-
_txt["Background Image Adjustments"] = "Background Image Adjustments";
|
|
295
|
-
_txt["Scale"] = "Scale";
|
|
296
|
-
_txt["Horizontal"] = "Horizontal";
|
|
297
|
-
_txt["Vertical"] = "Vertical";
|
|
298
|
-
_txt["Do you really want to leave?"] = "Do you really want to leave?";
|
|
299
|
-
_txt["Two Button"] = "Two Button";
|
|
300
|
-
_txt["Youtube"] = "Youtube";
|
|
301
|
-
_txt["Video"] = "Video";
|
|
302
|
-
_txt["Map"] = "Map";
|
|
303
|
-
_txt["Show Controls"] = "Show Controls";
|
|
304
|
-
_txt["Loop"] = "Loop";
|
|
305
|
-
_txt["Autoplay"] = "Autoplay";
|
|
306
|
-
_txt["Please select an image or video file."] = "Please select an image or video file.";
|
|
307
|
-
_txt["Please select an image file."] = "Please select an image file.";
|
|
308
|
-
_txt["Please select an mp4 file."] = "Please select an mp4 file.";
|
|
309
|
-
_txt["Social Links"] = "Social Links";
|
|
310
|
-
_txt["HTML/JS"] = "HTML/JS";
|
|
311
|
-
_txt["Drag image to change the position. Click image to edit the details."] = "Drag image to change the position. Click image to edit the details.";
|
|
312
|
-
_txt["Add Image"] = "Add Image";
|
|
313
|
-
_txt["Fit"] = "Fit";
|
|
314
|
-
_txt["Type"] = "Type";
|
|
315
|
-
_txt["Animation duration"] = "Animation duration";
|
|
316
|
-
_txt["Per View"] = "Per View";
|
|
317
|
-
_txt["Gap"] = "Gap";
|
|
318
|
-
_txt["Arrow Navigation"] = "Arrow Navigation";
|
|
319
|
-
_txt["Dots Navigation"] = "Dots Navigation";
|
|
320
|
-
_txt["Fade"] = "Fade";
|
|
321
|
-
_txt["Caption (HTML allowed)"] = "Caption (HTML allowed)";
|
|
322
|
-
_txt["Placement"] = "Placement";
|
|
323
|
-
_txt["Max Width"] = "Max Width";
|
|
324
|
-
_txt["You can test the On-Click action on page if you lock the column by clicking the lock button"] = "You can test the On-Click action on page if you lock the column by clicking the lock button";
|
|
325
|
-
_txt["Remove"] = "Remove";
|
|
326
|
-
_txt["All"] = "All";
|
|
327
|
-
_txt["Transparent"] = "Transparent";
|
|
328
|
-
_txt["Current"] = "Current";
|
|
329
|
-
_txt["Padding X"] = "Padding X";
|
|
330
|
-
_txt["Padding Y"] = "Padding Y";
|
|
331
|
-
_txt["SM"] = "SM";
|
|
332
|
-
_txt["MD"] = "MD";
|
|
333
|
-
_txt["LG"] = "LG";
|
|
334
|
-
_txt["XL"] = "XL";
|
|
335
|
-
_txt["2XL"] = "2XL";
|
|
336
|
-
_txt["3XL"] = "3XL";
|
|
337
|
-
_txt["Margin Left"] = "Margin Left";
|
|
1
|
+
var _txt = new Array();
|
|
2
|
+
_txt["Bold"] = "Bold";
|
|
3
|
+
_txt["Italic"] = "Italic";
|
|
4
|
+
_txt["Hyperlink"] = "Hyperlink";
|
|
5
|
+
_txt["Align"] = "Align";
|
|
6
|
+
_txt["Paragraph"] = "Paragraph";
|
|
7
|
+
_txt["Color"] = "Color";
|
|
8
|
+
_txt["Formatting"] = "Formatting";
|
|
9
|
+
_txt["List"] = "List";
|
|
10
|
+
_txt["Text Settings"] = "Text Settings";
|
|
11
|
+
_txt["Icon"] = "Icon";
|
|
12
|
+
_txt["Clean"] = "Clean";
|
|
13
|
+
_txt["Font"] = "Font";
|
|
14
|
+
_txt["Previous"] = "Previous";
|
|
15
|
+
_txt["Next"] = "Next";
|
|
16
|
+
_txt["More"] = "More";
|
|
17
|
+
_txt["Move Up"] = "Move Up";
|
|
18
|
+
_txt["Move Down"] = "Move Down";
|
|
19
|
+
_txt["Move Left"] = "Move Left";
|
|
20
|
+
_txt["Move Right"] = "Move Right";
|
|
21
|
+
_txt["Delete"] = "Delete";
|
|
22
|
+
_txt["Add"] = "Add";
|
|
23
|
+
_txt["Move"] = "Move";
|
|
24
|
+
_txt["Duplicate"] = "Duplicate";
|
|
25
|
+
_txt["Decrease"] = "Decrease";
|
|
26
|
+
_txt["Increase"] = "Increase";
|
|
27
|
+
_txt["HTML"] = "HTML";
|
|
28
|
+
_txt["Headline"] = "Headline";
|
|
29
|
+
_txt["Image"] = "Image";
|
|
30
|
+
_txt["Heading 1"] = "Heading 1";
|
|
31
|
+
_txt["Heading 2"] = "Heading 2";
|
|
32
|
+
_txt["Heading 3"] = "Heading 3";
|
|
33
|
+
_txt["Quote"] = "Quote";
|
|
34
|
+
_txt["Preformatted"] = "Preformatted";
|
|
35
|
+
_txt["Table"] = "Table";
|
|
36
|
+
_txt["Spacer"] = "Spacer";
|
|
37
|
+
_txt["Horizontal Line"] = "Horizontal Line";
|
|
38
|
+
_txt["More..."] = "More...";
|
|
39
|
+
_txt["Enlarge"] = "Enlarge";
|
|
40
|
+
_txt["Ok"] = "Ok";
|
|
41
|
+
_txt["Align Left"] = "Align Left";
|
|
42
|
+
_txt["Align Center"] = "Align Center";
|
|
43
|
+
_txt["Align Right"] = "Align Right";
|
|
44
|
+
_txt["Align Full"] = "Align Full";
|
|
45
|
+
_txt["Bullets"] = "Bullets";
|
|
46
|
+
_txt["Numbering"] = "Numbering";
|
|
47
|
+
_txt["Indent"] = "Indent";
|
|
48
|
+
_txt["Outdent"] = "Outdent";
|
|
49
|
+
_txt["Heading 4"] = "Heading 4";
|
|
50
|
+
_txt["Underline"] = "Underline";
|
|
51
|
+
_txt["Strikethrough"] = "Strikethrough";
|
|
52
|
+
_txt["Superscript"] = "Superscript";
|
|
53
|
+
_txt["Subscript"] = "Subscript";
|
|
54
|
+
_txt["Uppercase"] = "Uppercase";
|
|
55
|
+
_txt["Clear"] = "Clear";
|
|
56
|
+
_txt["Choose.."] = "Choose..";
|
|
57
|
+
_txt["Forecolor"] = "Forecolor";
|
|
58
|
+
_txt["Backcolor"] = "Backcolor";
|
|
59
|
+
_txt["Apply"] = "Apply";
|
|
60
|
+
_txt["Cancel"] = "Cancel";
|
|
61
|
+
_txt["Change Image"] = "Change Image";
|
|
62
|
+
_txt["Link"] = "Link";
|
|
63
|
+
_txt["Edit"] = "Edit";
|
|
64
|
+
_txt["Source"] = "Source";
|
|
65
|
+
_txt["Settings"] = "Settings";
|
|
66
|
+
_txt["Change Icon"] = "Change Icon";
|
|
67
|
+
_txt["Edit Table"] = "Edit Table";
|
|
68
|
+
_txt["Select"] = "Select";
|
|
69
|
+
_txt["Open new window"] = "Open new window";
|
|
70
|
+
_txt["Open New Window"] = "Open New Window"; //not used (backward compatible)
|
|
71
|
+
_txt["Text"] = "Text";
|
|
72
|
+
_txt["Title"] = "Title";
|
|
73
|
+
_txt["Free"] = "Free";
|
|
74
|
+
_txt["Style"] = "Style";
|
|
75
|
+
_txt["Layout"] = "Layout";
|
|
76
|
+
_txt["Background"] = "Background";
|
|
77
|
+
_txt["Select Color"] = "Select Color";
|
|
78
|
+
_txt["Text Color"] = "Text Color";
|
|
79
|
+
_txt["Border Thickness"] = "Border Thickness";
|
|
80
|
+
_txt["Border Color"] = "Border Color";
|
|
81
|
+
_txt["Apply To"] = "Apply To";
|
|
82
|
+
_txt["Current Row"] = "Current Row";
|
|
83
|
+
_txt["Current Column"] = "Current Column";
|
|
84
|
+
_txt["Even Rows"] = "Even Rows";
|
|
85
|
+
_txt["Odd Rows"] = "Odd Rows";
|
|
86
|
+
_txt["Current Cell"] = "Current Cell";
|
|
87
|
+
_txt["Insert Row"] = "Insert Row";
|
|
88
|
+
_txt["Insert Column"] = "Insert Column";
|
|
89
|
+
_txt["Delete Row"] = "Delete Row";
|
|
90
|
+
_txt["Delete Column"] = "Delete Column";
|
|
91
|
+
_txt["Above"] = "Above";
|
|
92
|
+
_txt["Below"] = "Below";
|
|
93
|
+
_txt["Left"] = "Left";
|
|
94
|
+
_txt["Right"] = "Right";
|
|
95
|
+
_txt["Row"] = "Row";
|
|
96
|
+
_txt["Column"] = "Column";
|
|
97
|
+
_txt["Merge"] = "Merge";
|
|
98
|
+
_txt["Merge Cell"] = "Merge Cell";
|
|
99
|
+
_txt["css"] = "css";
|
|
100
|
+
_txt["Class"] = "Class";
|
|
101
|
+
_txt["Box"] = "Box";
|
|
102
|
+
_txt["Spacing"] = "Spacing";
|
|
103
|
+
_txt["Border"] = "Border";
|
|
104
|
+
_txt["Corners"] = "Corners";
|
|
105
|
+
_txt["Shadow"] = "Shadow";
|
|
106
|
+
_txt["Display"] = "Display";
|
|
107
|
+
_txt["Position"] = "Position";
|
|
108
|
+
_txt["Effects"] = "Effects";
|
|
109
|
+
_txt["Attributes"] = "Attributes";
|
|
110
|
+
_txt["Animation"] = "Animation";
|
|
111
|
+
_txt["Background Color"] = "Background Color";
|
|
112
|
+
_txt["Gradient"] = "Gradient";
|
|
113
|
+
_txt["Dimension"] = "Dimension";
|
|
114
|
+
_txt["Responsive Positioning"] = "Responsive Positioning";
|
|
115
|
+
_txt["Reset margin left on small screen"] = "Reset margin left on small screen";
|
|
116
|
+
_txt["Reset margin right on small screen"] = "Reset margin right on small screen";
|
|
117
|
+
_txt["Individual Sides"] = "Individual Sides";
|
|
118
|
+
_txt["Select Font"] = "Select Font";
|
|
119
|
+
_txt["Animate"] = "Animate";
|
|
120
|
+
_txt["Delay"] = "Delay";
|
|
121
|
+
_txt["Duration"] = "Duration";
|
|
122
|
+
_txt["Animate Once"] = "Animate Once";
|
|
123
|
+
_txt["Test"] = "Test";
|
|
124
|
+
_txt["TEST"] = "TEST";
|
|
125
|
+
_txt["Custom"] = "Custom";
|
|
126
|
+
_txt["Module Settings"] = "Module Settings";
|
|
127
|
+
_txt["Drag and drop an image or click to browse."] = "Drag and drop an image or click to browse.";
|
|
128
|
+
_txt["Are you sure you want to delete this block?"] = "Are you sure you want to delete this block?";
|
|
129
|
+
_txt["Back"] = "Back";
|
|
130
|
+
_txt["Or Specify Image Source"] = "Or Specify Image Source";
|
|
131
|
+
_txt["Preferences"] = "Preferences";
|
|
132
|
+
_txt["Hide element tool"] = "Hide element tool";
|
|
133
|
+
_txt["Hide column tool"] = "Hide column tool";
|
|
134
|
+
_txt["Line"] = "Line";
|
|
135
|
+
_txt["Hide column HTML editor"] = "Hide column HTML editor";
|
|
136
|
+
_txt["Hide row HTML editor"] = "Hide row HTML editor";
|
|
137
|
+
_txt["Hide row move (up/down) buttons"] = "Hide row move (up/down) buttons";
|
|
138
|
+
_txt["HTML syntax highlighting"] = "HTML syntax highlighting";
|
|
139
|
+
_txt["Scrollable Editing Toolbar"] = "Scrollable Editing Toolbar";
|
|
140
|
+
_txt["Toolbar position"] = "Toolbar position";
|
|
141
|
+
_txt["Top"] = "Top";
|
|
142
|
+
_txt["Toolbar visibility"] = "Toolbar visibility";
|
|
143
|
+
_txt["Auto"] = "Auto";
|
|
144
|
+
_txt["Always Visible"] = "Always Visible";
|
|
145
|
+
_txt["Paste result"] = "Paste result";
|
|
146
|
+
_txt["HTML (without styles)"] = "HTML (without styles)";
|
|
147
|
+
_txt["HTML (with styles)"] = "HTML (with styles)";
|
|
148
|
+
_txt["Text only"] = "Text only";
|
|
149
|
+
_txt["Add Snippet"] = "Add Snippet";
|
|
150
|
+
_txt["Grid Tool"] = "Grid Tool";
|
|
151
|
+
_txt["Element Tool"] = "Element Tool";
|
|
152
|
+
_txt["Builder Mode"] = "Builder Mode";
|
|
153
|
+
_txt["Default"] = "Default";
|
|
154
|
+
_txt["Minimal"] = "Minimal";
|
|
155
|
+
_txt["Hide outline"] = "Hide outline";
|
|
156
|
+
_txt["Hide element highlight"] = "Hide element highlight";
|
|
157
|
+
_txt["Row tool position"] = "Row tool position";
|
|
158
|
+
_txt["Add (+) button placement"] = "Add (+) button placement";
|
|
159
|
+
_txt["Between Blocks (left)"] = "Between Blocks (left)";
|
|
160
|
+
_txt["Between Blocks (center)"] = "Between Blocks (center)";
|
|
161
|
+
_txt["Outline Mode"] = "Outline Mode";
|
|
162
|
+
_txt["Row & column"] = "Row & column";
|
|
163
|
+
_txt["Row only"] = "Row only";
|
|
164
|
+
_txt["Draggable blocks without handle"] = "Draggable blocks without handle";
|
|
165
|
+
_txt["Animated drag to sort"] = "Animated drag to sort";
|
|
166
|
+
_txt["Open snippets sidebar on start"] = "Open snippets sidebar on start";
|
|
167
|
+
_txt["Scrollable toolbar (top only)"] = "Scrollable toolbar (top only)";
|
|
168
|
+
_txt["Please select a block"] = "Please select a block";
|
|
169
|
+
_txt["Open snippet sidebar on start"] = "Open snippet sidebar on start";
|
|
170
|
+
_txt["Hide snippet handle"] = "Hide snippet handle";
|
|
171
|
+
_txt["Undo"] = "Undo";
|
|
172
|
+
_txt["Redo"] = "Redo";
|
|
173
|
+
_txt["Empty"] = "Empty";
|
|
174
|
+
_txt["+ Click to add content"] = "+ Click to add content";
|
|
175
|
+
_txt["B"] = "B";
|
|
176
|
+
_txt["W"] = "W";
|
|
177
|
+
_txt["Outline Style"] = "Outline Style";
|
|
178
|
+
_txt["Colored"] = "Colored";
|
|
179
|
+
_txt["Gray"] = "Gray";
|
|
180
|
+
_txt["Hide Outline"] = "Hide Outline";
|
|
181
|
+
_txt["Hide Column Tool"] = "Hide Column Tool";
|
|
182
|
+
_txt["Row Tool Position"] = "Row Tool Position";
|
|
183
|
+
_txt["Tool Style"] = "Tool Style";
|
|
184
|
+
_txt["Hide Snippet (+) Tool"] = "Hide Snippet (+) Tool";
|
|
185
|
+
_txt["Tool Outline"] = "Tool Outline";
|
|
186
|
+
_txt["Button"] = "Button";
|
|
187
|
+
_txt["Button Editor"] = "Button Editor";
|
|
188
|
+
_txt["Edit Button"] = "Edit Button";
|
|
189
|
+
_txt["Grid Editor"] = "Grid Editor";
|
|
190
|
+
_txt["Outline"] = "Outline";
|
|
191
|
+
_txt["Font Size"] = "Font Size";
|
|
192
|
+
_txt["Line Spacing"] = "Line Spacing";
|
|
193
|
+
_txt["Letter Spacing"] = "Letter Spacing";
|
|
194
|
+
_txt["Close"] = "Close";
|
|
195
|
+
_txt["Search & Replace"] = "Search & Replace";
|
|
196
|
+
_txt["Word Count"] = "Word Count";
|
|
197
|
+
_txt["words"] = "words";
|
|
198
|
+
_txt["Characters"] = "Characters";
|
|
199
|
+
_txt["Characters (no spaces)"] = "Characters (no spaces)";
|
|
200
|
+
_txt["Add to Left"] = "Add to Left";
|
|
201
|
+
_txt["Add to Right"] = "Add to Right";
|
|
202
|
+
_txt["Border Top Color"] = "Border Top Color";
|
|
203
|
+
_txt["Border Bottom Color"] = "Border Bottom Color";
|
|
204
|
+
_txt["Border Left Color"] = "Border Left Color";
|
|
205
|
+
_txt["Border Right Color"] = "Border Right Color";
|
|
206
|
+
_txt["Snippets sidebar visibility"] = "Snippets sidebar visibility";
|
|
207
|
+
_txt["You have reached the maximum number of columns"] = "You have reached the maximum number of columns";
|
|
208
|
+
_txt["Width"] = "Width";
|
|
209
|
+
_txt["Height"] = "Height";
|
|
210
|
+
_txt["Names"] = "Names";
|
|
211
|
+
_txt["Values"] = "Values";
|
|
212
|
+
_txt["Border Top"] = "Border Top";
|
|
213
|
+
_txt["Border Bottom"] = "Border Bottom";
|
|
214
|
+
_txt["Border Left"] = "Border Left";
|
|
215
|
+
_txt["Border Right"] = "Border Right";
|
|
216
|
+
_txt["Individual Corners"] = "Individual Corners";
|
|
217
|
+
_txt["Top Left"] = "Top Left";
|
|
218
|
+
_txt["Top Right"] = "Top Right";
|
|
219
|
+
_txt["Bottom Left"] = "Bottom Left";
|
|
220
|
+
_txt["Bottom Right"] = "Bottom Right";
|
|
221
|
+
_txt["Flex"] = "Flex";
|
|
222
|
+
_txt["Direction"] = "Direction";
|
|
223
|
+
_txt["Wrap"] = "Wrap";
|
|
224
|
+
_txt["Justify Content"] = "Justify Content";
|
|
225
|
+
_txt["Align Items"] = "Align Items";
|
|
226
|
+
_txt["Align Content"] = "Align Content";
|
|
227
|
+
_txt["Opacity"] = "Opacity";
|
|
228
|
+
_txt["Filters"] = "Filters";
|
|
229
|
+
_txt["Blur"] = "Blur";
|
|
230
|
+
_txt["Brightness"] = "Brightness";
|
|
231
|
+
_txt["Contrast"] = "Contrast";
|
|
232
|
+
_txt["Grayscale"] = "Grayscale";
|
|
233
|
+
_txt["Hue Rotate"] = "Hue Rotate";
|
|
234
|
+
_txt["Invert"] = "Invert";
|
|
235
|
+
_txt["Saturate"] = "Saturate";
|
|
236
|
+
_txt["Sepia"] = "Sepia";
|
|
237
|
+
_txt["Bottom"] = "Bottom";
|
|
238
|
+
_txt["Float"] = "Float";
|
|
239
|
+
_txt["x Offset"] = "x Offset";
|
|
240
|
+
_txt["y Offset"] = "y Offset";
|
|
241
|
+
_txt["Spread"] = "Spread";
|
|
242
|
+
_txt["Shadow Color"] = "Shadow Color";
|
|
243
|
+
_txt["Outer/Inner Shadow"] = "Outer/Inner Shadow";
|
|
244
|
+
_txt["Margin"] = "Margin";
|
|
245
|
+
_txt["Padding"] = "Padding";
|
|
246
|
+
_txt["Text Align"] = "Text Align";
|
|
247
|
+
_txt["Center"] = "Center";
|
|
248
|
+
_txt["Full"] = "Full";
|
|
249
|
+
_txt["Line Height"] = "Line Height";
|
|
250
|
+
_txt["Font Weight"] = "Font Weight";
|
|
251
|
+
_txt["Font Style"] = "Font Style";
|
|
252
|
+
_txt["Text Transform"] = "Text Transform";
|
|
253
|
+
_txt["Text Decoration"] = "Text Decoration";
|
|
254
|
+
_txt["Word Spacing"] = "Word Spacing";
|
|
255
|
+
_txt["Font Family"] = "Font Family";
|
|
256
|
+
_txt["Normal"] = "Normal";
|
|
257
|
+
_txt["Lowercase"] = "Lowercase";
|
|
258
|
+
_txt["Capitalize"] = "Capitalize";
|
|
259
|
+
_txt["None"] = "None";
|
|
260
|
+
_txt["Underline"] = "Underline";
|
|
261
|
+
_txt["Line Through"] = "Line Through";
|
|
262
|
+
_txt["Overline"] = "Overline";
|
|
263
|
+
_txt["Hover"] = "Hover";
|
|
264
|
+
_txt["Saved"] = "Saved";
|
|
265
|
+
_txt["Templates"] = "Templates";
|
|
266
|
+
_txt["No Border"] = "No Border";
|
|
267
|
+
_txt["Border Radius"] = "Border Radius";
|
|
268
|
+
_txt["Button Size"] = "Button Size";
|
|
269
|
+
_txt["Upper/lower"] = "Upper/lower";
|
|
270
|
+
_txt["Weight"] = "Weight";
|
|
271
|
+
_txt["Save Current Button"] = "Save Current Button";
|
|
272
|
+
_txt["Tags"] = "Tags";
|
|
273
|
+
_txt["Snippet"] = "Snippet";
|
|
274
|
+
_txt["Mono"] = "Mono";
|
|
275
|
+
_txt["Zoom"] = "Zoom";
|
|
276
|
+
_txt["Set theme"] = "Set theme";
|
|
277
|
+
_txt["Open in a lightbox (for image, video or Youtube)"] = "Open in a lightbox (for image, video or Youtube)";
|
|
278
|
+
_txt["Column Settings"] = "Column Settings";
|
|
279
|
+
_txt["Lock"] = "Lock";
|
|
280
|
+
_txt["General"] = "General";
|
|
281
|
+
_txt["Content"] = "Content";
|
|
282
|
+
_txt["On Click"] = "On Click";
|
|
283
|
+
_txt["Background Image"] = "Background Image";
|
|
284
|
+
_txt["Adjust"] = "Adjust";
|
|
285
|
+
_txt["Dark"] = "Dark";
|
|
286
|
+
_txt["Light"] = "Light";
|
|
287
|
+
_txt["Enlarge Row"] = "Enlarge Row";
|
|
288
|
+
_txt["Content Alignment"] = "Content Alignment";
|
|
289
|
+
_txt["Top Center"] = "Top Center";
|
|
290
|
+
_txt["Bottom Center"] = "Bottom Center";
|
|
291
|
+
_txt["Center Left"] = "Center Left";
|
|
292
|
+
_txt["Center Right"] = "Center Right";
|
|
293
|
+
_txt["Open"] = "Open";
|
|
294
|
+
_txt["Background Image Adjustments"] = "Background Image Adjustments";
|
|
295
|
+
_txt["Scale"] = "Scale";
|
|
296
|
+
_txt["Horizontal"] = "Horizontal";
|
|
297
|
+
_txt["Vertical"] = "Vertical";
|
|
298
|
+
_txt["Do you really want to leave?"] = "Do you really want to leave?";
|
|
299
|
+
_txt["Two Button"] = "Two Button";
|
|
300
|
+
_txt["Youtube"] = "Youtube";
|
|
301
|
+
_txt["Video"] = "Video";
|
|
302
|
+
_txt["Map"] = "Map";
|
|
303
|
+
_txt["Show Controls"] = "Show Controls";
|
|
304
|
+
_txt["Loop"] = "Loop";
|
|
305
|
+
_txt["Autoplay"] = "Autoplay";
|
|
306
|
+
_txt["Please select an image or video file."] = "Please select an image or video file.";
|
|
307
|
+
_txt["Please select an image file."] = "Please select an image file.";
|
|
308
|
+
_txt["Please select an mp4 file."] = "Please select an mp4 file.";
|
|
309
|
+
_txt["Social Links"] = "Social Links";
|
|
310
|
+
_txt["HTML/JS"] = "HTML/JS";
|
|
311
|
+
_txt["Drag image to change the position. Click image to edit the details."] = "Drag image to change the position. Click image to edit the details.";
|
|
312
|
+
_txt["Add Image"] = "Add Image";
|
|
313
|
+
_txt["Fit"] = "Fit";
|
|
314
|
+
_txt["Type"] = "Type";
|
|
315
|
+
_txt["Animation duration"] = "Animation duration";
|
|
316
|
+
_txt["Per View"] = "Per View";
|
|
317
|
+
_txt["Gap"] = "Gap";
|
|
318
|
+
_txt["Arrow Navigation"] = "Arrow Navigation";
|
|
319
|
+
_txt["Dots Navigation"] = "Dots Navigation";
|
|
320
|
+
_txt["Fade"] = "Fade";
|
|
321
|
+
_txt["Caption (HTML allowed)"] = "Caption (HTML allowed)";
|
|
322
|
+
_txt["Placement"] = "Placement";
|
|
323
|
+
_txt["Max Width"] = "Max Width";
|
|
324
|
+
_txt["You can test the On-Click action on page if you lock the column by clicking the lock button"] = "You can test the On-Click action on page if you lock the column by clicking the lock button";
|
|
325
|
+
_txt["Remove"] = "Remove";
|
|
326
|
+
_txt["All"] = "All";
|
|
327
|
+
_txt["Transparent"] = "Transparent";
|
|
328
|
+
_txt["Current"] = "Current";
|
|
329
|
+
_txt["Padding X"] = "Padding X";
|
|
330
|
+
_txt["Padding Y"] = "Padding Y";
|
|
331
|
+
_txt["SM"] = "SM";
|
|
332
|
+
_txt["MD"] = "MD";
|
|
333
|
+
_txt["LG"] = "LG";
|
|
334
|
+
_txt["XL"] = "XL";
|
|
335
|
+
_txt["2XL"] = "2XL";
|
|
336
|
+
_txt["3XL"] = "3XL";
|
|
337
|
+
_txt["Margin Left"] = "Margin Left";
|
|
338
338
|
_txt["Margin Right"] = "Margin Right";
|