-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtemplate.json
2116 lines (2116 loc) · 75.7 KB
/
template.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Annotation": "Annotation",
"Warning": "Warning",
"Symbol Name": "Symbol Name",
"Create Symbol": "Create Symbol",
"Pinned": "Pinned",
"Cut": "Cut",
"Copy": "Copy",
"Paste": "Paste",
"Duplicate": "Duplicate",
"Delete": "Delete",
"Group": "Group",
"Ungroup": "Ungroup",
"Add Annotation": "Add Annotation",
"Convert to Symbol": "Convert to Symbol",
"Symbol Properties": "Symbol Properties",
"Dataflow": "Dataflow",
"Help": "Help",
"Stage": "Stage",
"Variables": "Variables",
"String": "String",
"Number": "Number",
"Boolean": "Boolean",
"Color": "Color",
"Binary": "Binary",
"Table": "Table",
"Data Services": "Data Services",
"DSA": "DSA",
"List Node": "List Node",
"Get Default Parameters": "Get Default Parameters",
"Dsa Connection": "Dsa Connection",
"String Loader": "String Loader",
"String Uploader": "String Uploader",
"List Files": "List Files",
"Get Children": "Get Children",
"Get Node": "Get Node",
"Project-Info": "Project-Info",
"Relativize": "Relativize",
"Multi-Histories": "Multi-Histories",
"Zip Upload": "Zip Upload",
"Zip Download": "Zip Download",
"Zip Parser": "Zip Parser",
"Load Value": "Load Value",
"Load History": "Load History",
"Download File": "Download File",
"Browser API": "Browser API",
"Jsonp Loader": "Jsonp Loader",
"Geo-Location": "Geo-Location",
"Device Orientation": "Device Orientation",
"Device Motion": "Device Motion",
"Web-Document": "Web-Document",
"Local Storage": "Local Storage",
"Blob URL": "Blob URL",
"IFrame Message": "IFrame Message",
"Export HTML": "Export HTML",
"Export Paginated PDF": "Export Paginated PDF",
"Get View Property": "Get View Property",
"Javascript": "Javascript",
"Close Warning Dialog": "Close Warning Dialog",
"Editors": "Editors",
"Text Editor": "Text Editor",
"Enum Editor": "Enum Editor",
"Boolean Editor": "Boolean Editor",
"Number Editor": "Number Editor",
"Percentage Editor": "Percentage Editor",
"Color Editor": "Color Editor",
"Fill Editor": "Fill Editor",
"Gradient Editor": "Gradient Editor",
"Logic": "Logic",
"Operations": "Operations",
"And": "And",
"Or": "Or",
"Not": "Not",
"If": "If",
"Case": "Case",
"Router": "Router",
"Hub": "Hub",
"Event Gate": "Event Gate",
"Script": "Script",
"Trace": "Trace",
"Stop Watch": "Stop Watch",
"Delay": "Delay",
"State": "State",
"Mouse Event": "Mouse Event",
"Keyboard Event": "Keyboard Event",
"Scroll Event": "Scroll Event",
"Resize Event": "Resize Event",
"Drag Position": "Drag Position",
"Drag Size": "Drag Size",
"Repeater": "Repeater",
"Catch Error": "Catch Error",
"Make Object": "Make Object",
"Map Series Data": "Map Series Data",
"Property Hub": "Property Hub",
"Property Hub Modifier": "Property Hub Modifier",
"Symbol Profiler": "Symbol Profiler",
"String Operations": "String Operations",
"Concatenate": "Concatenate",
"Left": "Left",
"Length": "Length",
"Right": "Right",
"Substring": "Substring",
"Replace": "Replace",
"Trim": "Trim",
"Split": "Split",
"Localize": "Localize",
"Label": "Label",
"Math Operations": "Math Operations",
"Add": "Add",
"Divide": "Divide",
"Factorial": "Factorial",
"Logarithm": "Logarithm",
"Modulo": "Modulo",
"Multiply": "Multiply",
"Power": "Power",
"Root": "Root",
"Scale": "Scale",
"Subtract": "Subtract",
"Number Formatting": "Number Formatting",
"Absolute": "Absolute",
"Bound": "Bound",
"Round": "Round",
"Round Up": "Round Up",
"Round Down": "Round Down",
"Gradient Mapping": "Gradient Mapping",
"Format Number": "Format Number",
"Parse Number": "Parse Number",
"Statistical Functions": "Statistical Functions",
"Average": "Average",
"Maximum": "Maximum",
"Median": "Median",
"Minimum": "Minimum",
"Mode": "Mode",
"Standard Deviation": "Standard Deviation",
"Variance": "Variance",
"Trigonometric Functions": "Trigonometric Functions",
"Arc Cosine": "Arc Cosine",
"Arc Sine": "Arc Sine",
"Arc Tangent": "Arc Tangent",
"Cosine": "Cosine",
"Cotangent": "Cotangent",
"Degree": "Degree",
"Radian": "Radian",
"Sine": "Sine",
"Tangent": "Tangent",
"Table Operations": "Table Operations",
"CSV Parser": "CSV Parser",
"CSV Writer": "CSV Writer",
"JSON Parser": "JSON Parser",
"Table To JSON String": "Table To JSON String",
"Column Mapping": "Column Mapping",
"Sort": "Sort",
"Filter": "Filter",
"Group By": "Group By",
"Join": "Join",
"Multi-Join": "Multi-Join",
"Page": "Page",
"Rollup": "Rollup",
"Advanced Rollup": "Advanced Rollup",
"Aggregation": "Aggregation",
"Select Rows": "Select Rows",
"Select Columns": "Select Columns",
"Get Columns": "Get Columns",
"Table Row Cells": "Table Row Cells",
"Add Row": "Add Row",
"Remove Rows": "Remove Rows",
"Edit Rows": "Edit Rows",
"Transpose": "Transpose",
"Realtime Recorder": "Realtime Recorder",
"Series Realtime Recorder": "Series Realtime Recorder",
"Map to Table": "Map to Table",
"Date Time Operations": "Date Time Operations",
"Date Time": "Date Time",
"Date Format": "Date Format",
"Parse Date Time": "Parse Date Time",
"Date Math": "Date Math",
"Date Range": "Date Range",
"Constants": "Constants",
"PI": "PI",
"E": "E",
"SQRT2": "SQRT2",
"LN2": "LN2",
"LN10": "LN10",
"LOG2E": "LOG2E",
"LOG10E": "LOG10E",
"NAN": "NAN",
"Long Data": "Long Data",
"Add Parameter": "Add Parameter",
"Remote server failed to save the dataflow": "Remote server failed to save the dataflow",
"Error": "Error",
"Search": "Search",
"100 Topics": "100 Topics",
"500 Topics": "500 Topics",
"1000 Topics": "1000 Topics",
"5000 Topics": "5000 Topics",
"10000 Topics": "10000 Topics",
"25000 Topics": "25000 Topics",
"50000 Topics": "50000 Topics",
"Custom License": "Custom License",
"Full Name": "Full Name",
"Email": "Email",
"Company Name": "Company Name",
"Project Name": "Project Name",
"License Key": "License Key",
"Type": "Type",
"Number of Topics": "Number of Topics",
"Device request": "Device request",
"AdvancedDevices": "AdvancedDevices",
"BasicDevices": "BasicDevices",
"invalid email": "invalid email",
"licensee can't be blank": "licensee can't be blank",
"invalid advancedDevices number": "invalid advancedDevices number",
"invalid number of topics": "invalid number of topics",
"Host": "Host",
"use comma to separate multiple hosts": "use comma to separate multiple hosts",
"Cancel": "Cancel",
"Download Offline Request": "Download Offline Request",
"Submit Request": "Submit Request",
"not supported": "not supported",
"Request successfully sent. We will check your request and send you a new license.": "Request successfully sent. We will check your request and send you a new license.",
"License Request": "License Request",
"Failed to send the license request, license key is not valid": "Failed to send the license request, license key is not valid",
"Failed to send the license request, please download the license request and send it to dgluxlicensing@dglogik.com": "Failed to send the license request, please download the license request and send it to dgluxlicensing@dglogik.com",
"//update.dglux.com": "//update.dglux.com",
"Current user is not allowed to change license": "Current user is not allowed to change license",
"Input license data here:": "Input license data here:",
"Licensee": "Licensee",
"ProductId": "ProductId",
"Host/Path": "Host/Path",
"Request License": "Request License",
"Submit License": "Submit License",
"DGLux5": "DGLux5",
"License": "License",
"invalid license data": "invalid license data",
"license data refused by server": "license data refused by server",
"Kiosk / Engineering \\u00A0\\u00A0 | \\u00A0\\u00A0 100 Topics": "Kiosk / Engineering \\u00A0\\u00A0 | \\u00A0\\u00A0 100 Topics",
"Small License \\u00A0\\u00A0 | \\u00A0\\u00A0 1000 Topics": "Small License \\u00A0\\u00A0 | \\u00A0\\u00A0 1000 Topics",
"Medium License \\u00A0\\u00A0 | \\u00A0\\u00A0 10000 Topics": "Medium License \\u00A0\\u00A0 | \\u00A0\\u00A0 10000 Topics",
"Large License \\u00A0\\u00A0 | \\u00A0\\u00A0 50000 Topics": "Large License \\u00A0\\u00A0 | \\u00A0\\u00A0 50000 Topics",
"Gradient": "Gradient",
"Opacity": "Opacity",
"Stroke": "Stroke",
"None": "None",
"Hidden": "Hidden",
"Dotted": "Dotted",
"Dashed": "Dashed",
"Solid": "Solid",
"Double": "Double",
"Groove": "Groove",
"Ridge": "Ridge",
"Inset": "Inset",
"Outset": "Outset",
"Dotted Solid Double Dashed": "Dotted Solid Double Dashed",
"Dotted Solid": "Dotted Solid",
"Position": "Position",
"Favorites": "Favorites",
"Red": "Red",
"Green": "Green",
"Blue": "Blue",
"Hue": "Hue",
"Saturation": "Saturation",
"Brightness": "Brightness",
"Web Palette": "Web Palette",
"RGB": "RGB",
"HSV": "HSV",
"No Repeat": "No Repeat",
"Repeat": "Repeat",
"Center": "Center",
"Top": "Top",
"Middle": "Middle",
"Bottom": "Bottom",
"Cover": "Cover",
"Scale 9": "Scale 9",
"Contain": "Contain",
"Stretch": "Stretch",
"Repeat Horizontally": "Repeat Horizontally",
"Repeat Vertically": "Repeat Vertically",
"Tiling": "Tiling",
"Scaling": "Scaling",
"No Tiling": "No Tiling",
"No Tiling or Scaling": "No Tiling or Scaling",
"Horiz Alignment": "Horiz Alignment",
"Vert Alignment": "Vert Alignment",
"Scale9": "Scale9",
"Linear Gradient": "Linear Gradient",
"Radial Gradient": "Radial Gradient",
"No Fill": "No Fill",
"Solid Color": "Solid Color",
"Image": "Image",
"Angle": "Angle",
"Edit shape": "Edit shape",
"URL": "URL",
"Fill": "Fill",
"Border": "Border",
"Shape": "Shape",
"Size:": "Size:",
"Center X": "Center X",
"Center Y:": "Center Y:",
"Size X:": "Size X:",
"Size Y:": "Size Y:",
"Failed to load the script, please use a valid script path": "Failed to load the script, please use a valid script path",
"Italic": "Italic",
"Bold": "Bold",
"Underline": "Underline",
"Password": "Password",
"Set State": "Set State",
"Record State": "Record State",
"Remove State": "Remove State",
"Duration": "Duration",
"Duration Back": "Duration Back",
"Command": "Command",
"Name": "Name",
"Select target": "Select target",
"Advanced Properties": "Advanced Properties",
"Remove Item": "Remove Item",
"Open Web": "Open Web",
"Target": "Target",
"Show Menubar": "Show Menubar",
"Show Statusbar": "Show Statusbar",
"X": "X",
"Y": "Y",
"Width": "Width",
"Height": "Height",
"Input": "Input",
"File Name": "File Name",
"Play Sound": "Play Sound",
"onComplete": "onComplete",
"Open Page": "Open Page",
"Destination": "Destination",
"Dashboard": "Dashboard",
"Self": "Self",
"Logout": "Logout",
"Close Page": "Close Page",
"Data Action": "Data Action",
"Action: drag data action here": "Action: drag data action here",
"Select single target to edit actions": "Select single target to edit actions",
"Add Action": "Add Action",
"Remove item": "Remove item",
"Edit item": "Edit item",
"Move up": "Move up",
"Move down": "Move down",
"Path": "Path",
"Drag symbol here": "Drag symbol here",
"Symbol": "Symbol",
"Event": "Event",
"Box Shadow": "Box Shadow",
"Grayscale": "Grayscale",
"Contrast": "Contrast",
"Blur": "Blur",
"Invert": "Invert",
"Sepia": "Sepia",
"Hue Rotate": "Hue Rotate",
"Drop Shadow": "Drop Shadow",
"Blend": "Blend",
"Gaussian Blur": "Gaussian Blur",
"Color Matrix": "Color Matrix",
"Component Transfer": "Component Transfer",
"Composite": "Composite",
"Convolve Matrix": "Convolve Matrix",
"Diffuse Lighting": "Diffuse Lighting",
"Displacement Map": "Displacement Map",
"Flood": "Flood",
"Merge": "Merge",
"Morphology": "Morphology",
"Offset": "Offset",
"Specular Lighting": "Specular Lighting",
"Tile": "Tile",
"Turbulence": "Turbulence",
"Text Shadow": "Text Shadow",
"Add Shadow": "Add Shadow",
"Add Effect": "Add Effect",
"Cursor": "Cursor",
"Anchor": "Anchor",
"Single Select": "Single Select",
"Toggle Select": "Toggle Select",
"Multi-Select": "Multi-Select",
"Link Type": "Link Type",
"Ok": "Ok",
"Add Link": "Add Link",
"Links for selected component": "Links for selected component",
"Selected": "Selected",
"Point From": "Point From",
"Point To": "Point To",
"Remove": "Remove",
"OK": "OK",
"Edit Links": "Edit Links",
"Drag to Select Target": "Drag to Select Target",
"Close": "Close",
"Create Links": "Create Links",
"Only selected component": "Only selected component",
"Corner Radius": "Corner Radius",
"Reset To Default": "Reset To Default",
"Edit Source Table": "Edit Source Table",
"Add Column": "Add Column",
"Add Row Below": "Add Row Below",
"Add Row Above": "Add Row Above",
"Delete Row": "Delete Row",
"Add Rows Below": "Add Rows Below",
"Add Rows Above": "Add Rows Above",
"Delete Rows": "Delete Rows",
"Add Column to the Right": "Add Column to the Right",
"Add Column to the Left": "Add Column to the Left",
"Delete Column": "Delete Column",
"Add Columns to the Right": "Add Columns to the Right",
"Add Columns to the Left": "Add Columns to the Left",
"Delete Columns": "Delete Columns",
"Draw new polygon symbol": "Draw new polygon symbol",
"Remove from favorites": "Remove from favorites",
"Add to favorites": "Add to favorites",
"List": "List",
"Small": "Small",
"Medium": "Medium",
"Large": "Large",
"Recently Used": "Recently Used",
"widgets": "widgets",
"Show Root": "Show Root",
"Maximum Depth": "Maximum Depth",
"Load All Nodes": "Load All Nodes",
"Expand All Nodes": "Expand All Nodes",
"Show Loading Indicator": "Show Loading Indicator",
"Off": "Off",
"On": "On",
"Auto": "Auto",
"Scroll Feedback:": "Scroll Feedback:",
"Scroll Fast Responce:": "Scroll Fast Responce:",
"Blacklist": "Blacklist",
"Whitelist": "Whitelist",
"Multi-select": "Multi-select",
"Select Child On Click": "Select Child On Click",
"Deselect Child On Click": "Deselect Child On Click",
"Ascending": "Ascending",
"Descending": "Descending",
"Row Focusable": "Row Focusable",
"Row Select On Enter": "Row Select On Enter",
"Show Ellipsis": "Show Ellipsis",
"Header Ellipsis": "Header Ellipsis",
"Border Width": "Border Width",
"Alternative Border Width": "Alternative Border Width",
"Header Border Width": "Header Border Width",
"Padding Top": "Padding Top",
"Padding Bottom": "Padding Bottom",
"Padding Left": "Padding Left",
"Padding Right": "Padding Right",
"Keep equal paddings": "Keep equal paddings",
"Clip Content": "Clip Content",
"Horizontal": "Horizontal",
"Vertical": "Vertical",
"Both": "Both",
"Header Padding Top": "Header Padding Top",
"Header Padding Bottom": "Header Padding Bottom",
"Header Padding Left": "Header Padding Left",
"Header Padding Right": "Header Padding Right",
"Cell Paddings Compatibility": "Cell Paddings Compatibility",
"One Level Selection": "One Level Selection",
"Full Row Selection": "Full Row Selection",
"Item Focusable": "Item Focusable",
"Open Node On Click": "Open Node On Click",
"Items": "Items",
"Text and Font": "Text and Font",
"Font": "Font",
"Size": "Size",
"Gridlines": "Gridlines",
"Horiz Line": "Horiz Line",
"Vert Line": "Vert Line",
"Fill and Stroke": "Fill and Stroke",
"Position and Size": "Position and Size",
"Lines": "Lines",
"Main": "Main",
"Alt": "Alt",
"Sel": "Sel",
"Hov": "Hov",
"Foc": "Foc",
"Data Grid": "Data Grid",
"Column Filter": "Column Filter",
"Filter Type": "Filter Type",
"Sort Order": "Sort Order",
"Sort Column": "Sort Column",
"Tree Lines": "Tree Lines",
"Column": "Column",
"Selector": "Selector",
"Configuration Table": "Configuration Table",
"Tree": "Tree",
"Item ID Column": "Item ID Column",
"Name Column": "Name Column",
"Has Children Column": "Has Children Column",
"Category": "Category",
"Sort Asc": "Sort Asc",
"Sort Desc": "Sort Desc",
"Header Symbol": "Header Symbol",
"Autosize Mode": "Autosize Mode",
"Flexsize": "Flexsize",
"Tree Grid": "Tree Grid",
"Data Symbol": "Data Symbol",
"Add Tree Column": "Add Tree Column",
"Data Loading Timeout": "Data Loading Timeout",
"Max Depth": "Max Depth",
"Select Node": "Select Node",
"Disclosure Icon Color": "Disclosure Icon Color",
"Disclosure Icon Selected Color": "Disclosure Icon Selected Color",
"Open Icon": "Open Icon",
"Open Icon Selected": "Open Icon Selected",
"Close Icon": "Close Icon",
"Close Icon Selected": "Close Icon Selected",
"Header": "Header",
"Rows": "Rows",
"Columns": "Columns",
"Select On Enter": "Select On Enter",
"Topology": "Topology",
"Data": "Data",
"Id Field": "Id Field",
"Parent Field": "Parent Field",
"Name Field": "Name Field",
"Color Field": "Color Field",
"Text Color": "Text Color",
"Link Color": "Link Color",
"Horizontal Spacing": "Horizontal Spacing",
"Vertical Spacing": "Vertical Spacing",
"Navigation Manager": "Navigation Manager",
"Node Created": "Node Created",
"Node Deleted": "Node Deleted",
"Node Duplicated": "Node Duplicated",
"Layer Manager": "Layer Manager",
"Layer Created": "Layer Created",
"Online": "Online",
"Offline": "Offline",
"Authentication lost or server is down.<br>Please backup your files with File->Import(Ctrl+7) before leaving this page.": "Authentication lost or server is down.<br>Please backup your files with File->Import(Ctrl+7) before leaving this page.",
"Connection Error": "Connection Error",
"Go to Login Page": "Go to Login Page",
"Work Offline": "Work Offline",
"Always": "Always",
"On Demand": "On Demand",
"On Display": "On Display",
"filterX": "filterX",
"filterY": "filterY",
"filterWidth": "filterWidth",
"filterHeight": "filterHeight",
"filterUnits": "filterUnits",
"User space on use": "User space on use",
"Object bounding box": "Object bounding box",
"width": "width",
"height": "height",
"x": "x",
"y": "y",
"numFrames": "numFrames",
"Interval in seconds": "Interval in seconds",
"Frame Animator": "Frame Animator",
"Active": "Active",
"Loop": "Loop",
"Reverse": "Reverse",
"Reload": "Reload",
"On Image Loaded": "On Image Loaded",
"ExtendEdge": "ExtendEdge",
"Send Raw": "Send Raw",
"Text": "Text",
"Left to Right": "Left to Right",
"Right to Left": "Right to Left",
"Tracking": "Tracking",
"Justify": "Justify",
"Wrap": "Wrap",
"Break-word": "Break-word",
"Is HTML": "Is HTML",
"HTML content": "HTML content",
"Is Advanced HTML": "Is Advanced HTML",
"HTML content with tag <a>": "HTML content with tag <a>",
"Editable": "Editable",
"Multiline": "Multiline",
"Leading": "Leading",
"Measure Text": "Measure Text",
"Select Content": "Select Content",
"Visible": "Visible",
"Display": "Display",
"Mouse Enabled": "Mouse Enabled",
"Index": "Index",
"Level": "Level",
"Default": "Default",
"Isolate": "Isolate",
"All": "All",
"Global": "Global",
"use ": "use ",
" to accept text dragging\\nuse ": " to accept text dragging\\nuse ",
" to accept file dragging": " to accept file dragging",
"Callout": "Callout",
"Callout Type": "Callout Type",
"Static": "Static",
"Mouse-Over": "Mouse-Over",
"Events": "Events",
"Callout position": "Callout position",
"Callout anchor": "Callout anchor",
"Callout Relative To": "Callout Relative To",
"Callout Width": "Callout Width",
"Callout Height": "Callout Height",
"Callout Autosize": "Callout Autosize",
"Line": "Line",
"Curve": "Curve",
"Callout Bond Color": "Callout Bond Color",
"Callout Stroke": "Callout Stroke",
"Callout Stroke Width": "Callout Stroke Width",
"Callout Speed": "Callout Speed",
"Callout Animation": "Callout Animation",
"Show Callout": "Show Callout",
"Hide Callout": "Hide Callout",
"Hide If Over": "Hide If Over",
"Ignore Bounds": "Ignore Bounds",
"Callout Timeout": "Callout Timeout",
"Modal Callout": "Modal Callout",
"Modal Callout Fill": "Modal Callout Fill",
"Gray Out Component": "Gray Out Component",
"Is Callout Visible": "Is Callout Visible",
"Callout Clip Mode": "Callout Clip Mode",
"No Clipping": "No Clipping",
"Clip By Page": "Clip By Page",
"Clip By Parent": "Clip By Parent",
"Flex Grow": "Flex Grow",
"Flex Shrink": "Flex Shrink",
"Keep aspect ratio": "Keep aspect ratio",
"Flex-start": "Flex-start",
"Flex-end": "Flex-end",
"Baseline": "Baseline",
"Follow Path Rotation": "Follow Path Rotation",
"Rotation": "Rotation",
"editorComplexCornerRadius": "editorComplexCornerRadius",
"roundedCornersEditable": "roundedCornersEditable",
"complexCornerRadius": "complexCornerRadius",
"cornerRadius": "cornerRadius",
"topLeftRadius": "topLeftRadius",
"topRightRadius": "topRightRadius",
"bottomLeftRadius": "bottomLeftRadius",
"bottomRightRadius": "bottomRightRadius",
"Load": "Load",
"Save": "Save",
"Add language to URL": "Add language to URL",
"DGLux": "DGLux",
"Bind": "Bind",
"Reset": "Reset",
"Unbind": "Unbind",
"Copy Value": "Copy Value",
"Binding Dialog": "Binding Dialog",
"Binding Path": "Binding Path",
"Binding Source": "Binding Source",
"Binding Targets": "Binding Targets",
"Copy Binding": "Copy Binding",
"Show binding target": "Show binding target",
"Select binding target": "Select binding target",
"Flex-Start": "Flex-Start",
"Flex-End": "Flex-End",
"Space-Between": "Space-Between",
"Space-Around": "Space-Around",
"Nowrap": "Nowrap",
"Wrap-Reverse": "Wrap-Reverse",
"Autosize Content": "Autosize Content",
"Fit Ratio": "Fit Ratio",
"Fit": "Fit",
"Widget Group": "Widget Group",
"Zoom Tool Enabled": "Zoom Tool Enabled",
"Left Top Corner": "Left Top Corner",
"Right Top Corner": "Right Top Corner",
"Right Bottom Corner": "Right Bottom Corner",
"Left Bottom Corner": "Left Bottom Corner",
"Center Point": "Center Point",
"Rectangle": "Rectangle",
"Mouse Wheel Zoom Enabled": "Mouse Wheel Zoom Enabled",
"Zoom Preview Visibility": "Zoom Preview Visibility",
"Virtual Layout": "Virtual Layout",
"Press \"Escape\" to hide this window": "Press \"Escape\" to hide this window",
"Number formatting": "Number formatting",
"thousands separator, 2 decimal digits": "thousands separator, 2 decimal digits",
"3 digits mandatory integer part, 1 decimal digit": "3 digits mandatory integer part, 1 decimal digit",
"See full help here": "See full help here",
"Date formatting": "Date formatting",
"2 digit year, 2 digit month, 2 digit day": "2 digit year, 2 digit month, 2 digit day",
"full year, month as short string, 2 digit day": "full year, month as short string, 2 digit day",
"date and time": "date and time",
"short localized date pattern": "short localized date pattern",
"symbol to join patterns": "symbol to join patterns",
"localized date and time": "localized date and time",
"Specifies the types of files that will be accepted": "Specifies the types of files that will be accepted",
"a file extension starting with the STOP character, e.g: .gif, .jpg, .png, .txt": "a file extension starting with the STOP character, e.g: .gif, .jpg, .png, .txt",
"all sound files are accepted": "all sound files are accepted",
"all video files are accepted": "all video files are accepted",
"all image files are accepted": "all image files are accepted",
"a valid media type, with no parameters. Look at ": "a valid media type, with no parameters. Look at ",
"IANA Media Types": "IANA Media Types",
"for a complete list of standard media types": "for a complete list of standard media types",
"Tip": "Tip",
"To specify more than one value, separate the values with a comma (e.g. \"audio/*,video/*,image/*": "To specify more than one value, separate the values with a comma (e.g. \"audio/*,video/*,image/*",
"Stroke Width": "Stroke Width",
"Stroke Pattern": "Stroke Pattern",
"Stroke offset": "Stroke offset",
"Connection error": "Connection error",
"Show Clear Button": "Show Clear Button",
"Show Stepper Buttons": "Show Stepper Buttons",
"Select End of Interval": "Select End of Interval",
"Select Start of Interval": "Select Start of Interval",
"Open": "Open",
"Multiple Files": "Multiple Files",
"Single File": "Single File",
"Url": "Url",
"Tel": "Tel",
"Date": "Date",
"Month": "Month",
"Week": "Week",
"Time Input": "Time Input",
"Value": "Value",
"Min": "Min",
"Max": "Max",
"Step": "Step",
"Format": "Format",
"Focus Color": "Focus Color",
"Focus Background Color": "Focus Background Color",
"Arrow Color": "Arrow Color",
"Arrow Opacity": "Arrow Opacity",
"Arrow Image": "Arrow Image",
"Always Show Spinner": "Always Show Spinner",
"Step Snapping": "Step Snapping",
"Is Valid": "Is Valid",
"Live Update": "Live Update",
"Input Type": "Input Type",
"Placeholder": "Placeholder",
"Vertical Alignment": "Vertical Alignment",
"Text Direction": "Text Direction",
"Datalist": "Datalist",
"Ticks": "Ticks",
"List Element": "List Element",
"Selected Index": "Selected Index",
"Options": "Options",
"Option Font Styles": "Option Font Styles",
"Option Background": "Option Background",
"Show Arrow": "Show Arrow",
"File Input": "File Input",
"Filename": "Filename",
"File Content": "File Content",
"Files": "Files",
"Selection Type": "Selection Type",
"Accept": "Accept",
"Standard": "Standard",
"Custom": "Custom",
"Show Datatips": "Show Datatips",
"Area": "Area",
"Enable Highlight": "Enable Highlight",
"Highlight On Click": "Highlight On Click",
"Formatting tags": "Formatting tags",
"series": "series",
"Display Name": "Display Name",
"value": "value",
"value from column": "value from column",
"tags": "tags",
"new line": "new line",
"bold text": "bold text",
"italic text": "italic text",
"Segment": "Segment",
"Reverse Step": "Reverse Step",
"Line Series": "Line Series",
"Area Series": "Area Series",
"Column Series": "Column Series",
"Bar Series": "Bar Series",
"Interpolate Values": "Interpolate Values",
"Interpolate": "Interpolate",
"Enable Hovered Index": "Enable Hovered Index",
"Series Animation": "Series Animation",
"Slide": "Slide",
"Zoom": "Zoom",
"Element Offset": "Element Offset",
"Minimum Element Duration": "Minimum Element Duration",
"Direction": "Direction",
"Up": "Up",
"Down": "Down",
"Horizontal Focus": "Horizontal Focus",
"Null": "Null",
"Vertical Focus": "Vertical Focus",
"Relative To": "Relative To",
"Series": "Series",
"Chart": "Chart",
"Linear": "Linear",
"Logarithmic": "Logarithmic",
"R Field": "R Field",
"value from a color column": "value from a color column",
"Outside": "Outside",
"Inside": "Inside",
"Inside with callout": "Inside with callout",
"Clockwise": "Clockwise",
"Counter clockwise": "Counter clockwise",
"Specify a table field to parse colors for wedges from. Supported formats: ": "Specify a table field to parse colors for wedges from. Supported formats: ",
"value as percentage": "value as percentage",
"Overlaid": "Overlaid",
"Stacked": "Stacked",
"100%": "100%",
"Repeater mode": "Repeater mode",
"Ignore": "Ignore",
"One Column": "One Column",
"Other Columns": "Other Columns",
"Columns List": "Columns List",
"Exclude Columns": "Exclude Columns",
"Clustered": "Clustered",
"Five minutes": "Five minutes",
"Ten minutes": "Ten minutes",
"Fifteen minutes": "Fifteen minutes",
"Twenty minutes": "Twenty minutes",
"Thirty minutes": "Thirty minutes",
"Hour": "Hour",
"Day": "Day",
"Year": "Year",
"First": "First",
"Last": "Last",
"Sum": "Sum",
"Count": "Count",
"Round Time": "Round Time",
"total value in case of stacking": "total value in case of stacking",
"Horizontal Axis": "Horizontal Axis",
"Linear Axis": "Linear Axis",
"Log Axis": "Log Axis",
"Category Axis": "Category Axis",
"DateTime Axis": "DateTime Axis",
"Vertical Axis": "Vertical Axis",
"Bubble Series": "Bubble Series",
"Radius Axis": "Radius Axis",
"Pie Series": "Pie Series",
"Angular Axis": "Angular Axis",
"Spread Spectrum": "Spread Spectrum",
"Radar Series": "Radar Series",
"Line Set": "Line Set",
"Area Set": "Area Set",
"Bar Set": "Bar Set",
"Column Set": "Column Set",
"Radar Set": "Radar Set",
"Tick Aligned": "Tick Aligned",
"List of indices separated by": "List of indices separated by",
"Arc": "Arc",
"Circular": "Circular",
"Cross": "Cross",
"Only Min/Max Labels": "Only Min/Max Labels",
"Use div Labels": "Use div Labels",
"Use div-based labels": "Use div-based labels",
"Flipped vertical": "Flipped vertical",
"Min max": "Min max",
"Show All": "Show All",
"Auto Adjust": "Auto Adjust",
"Base At Zero": "Base At Zero",
"Datetime Axis": "Datetime Axis",
"Inverted": "Inverted",
"Align Labels To Interval": "Align Labels To Interval",
"Comma separated ordered categories list, for example: Low,Medium,High": "Comma separated ordered categories list, for example: Low,Medium,High",
"Milliseconds": "Milliseconds",
"Seconds": "Seconds",
"Minutes": "Minutes",
"Hours": "Hours",
"Days": "Days",
"Weeks": "Weeks",
"Months": "Months",
"Years": "Years",
"Align To Units": "Align To Units",
"Server": "Server",
"Local": "Local",
"Show Zero Label": "Show Zero Label",
"Single": "Single",
"Multiple": "Multiple",
"Show Crosshair": "Show Crosshair",
"Reduce Outer Radius": "Reduce Outer Radius",
"Insert Axis": "Insert Axis",
"Stackers": "Stackers",
"Insert Series": "Insert Series",
"Stacker": "Stacker",
"Label Renderer": "Label Renderer",
"Datatip Renderer": "Datatip Renderer",
"Master Series": "Master Series",
"X Original Column": "X Original Column",
"Y Original Column": "Y Original Column",
"A Original Column": "A Original Column",
"R Original Column": "R Original Column",
"Series Index": "Series Index",
"Update Repeater": "Update Repeater",
"Ticks Renderer": "Ticks Renderer",
"Scale Type": "Scale Type",
"Ticks Placement": "Ticks Placement",
"Start Angle": "Start Angle",
"End Angle": "End Angle",
"Radius": "Radius",
"Left Padding": "Left Padding",
"Right Padding": "Right Padding",
"Datatips": "Datatips",
"Datatip Mode": "Datatip Mode",
"Datatip position": "Datatip position",
"Crosshair Number Format": "Crosshair Number Format",
"Axis": "Axis",
"Labels": "Labels",
"Label Gap": "Label Gap",
"Label to Edge Gap": "Label to Edge Gap",
"Label Type": "Label Type",
"Custom Label Symbol": "Custom Label Symbol",
"Left/Right Label Threshold": "Left/Right Label Threshold",
"Axis Type": "Axis Type",
"Format String": "Format String",
"Data Units": "Data Units",
"Data Interval": "Data Interval",
"Major Interval": "Major Interval",
"Major Ticks": "Major Ticks",
"Style": "Style",
"Minor Interval": "Minor Interval",
"Minor Ticks": "Minor Ticks",
"Axis Minimum": "Axis Minimum",
"Axis Maximum": "Axis Maximum",
"Data Provider": "Data Provider",
"Category Field": "Category Field",
"Category Order": "Category Order",
"Series Type": "Series Type",
"Line Form": "Line Form",
"Datatip": "Datatip",
"Wedge Label": "Wedge Label",
"Markers": "Markers",
"Marker Radius": "Marker Radius",
"Renderer": "Renderer",
"Explode Radius": "Explode Radius",
"Wedge Fills": "Wedge Fills",
"Interval": "Interval",
"Pick Color": "Pick Color",
"High Separator Color": "High Separator Color",
"Medium Color": "Medium Color",
"Minimum Color": "Minimum Color",
"Low Separator Color": "Low Separator Color",
"Time format": "Time format",
"Data Source": "Data Source",
"X Field": "X Field",
"Y Field": "Y Field",
"Min Field": "Min Field",
"Date Field": "Date Field",
"Value Field": "Value Field",
"Render Type": "Render Type",
"Angle Field": "Angle Field",
"Radius Field": "Radius Field",
"Field": "Field",
"R Axis Type": "R Axis Type",
"Min R": "Min R",
"Max R": "Max R",
"Highlight Stroke": "Highlight Stroke",
"Highlighted Value": "Highlighted Value",
"Series Set": "Series Set",
"X Column Rule": "X Column Rule",
"X Column": "X Column",
"X Exclude": "X Exclude",
"Y Column Rule": "Y Column Rule",
"Y Column": "Y Column",
"Y Exclude": "Y Exclude",
"Additional Columns": "Additional Columns",
"Horiz Axis": "Horiz Axis",
"Vert Axis": "Vert Axis",
"Not Set": "Not Set",
"Plot Area": "Plot Area",
"Alt Fill": "Alt Fill",
"Radar Line Form": "Radar Line Form",
"Radar Line": "Radar Line",
"Fills Table": "Fills Table",
"Table Column": "Table Column",
"Plot Area X": "Plot Area X",
"Plot Area Y": "Plot Area Y",
"Plot Area Width": "Plot Area Width",
"Plot Area Height": "Plot Area Height",
"Vertical Axes": "Vertical Axes",
"Horizontal Axes": "Horizontal Axes",
"Track Renderer": "Track Renderer",
"Start Thickness": "Start Thickness",
"End Thickness": "End Thickness",
"Track Fill": "Track Fill",
"Track Placement": "Track Placement",
"Title": "Title",
"Title Align": "Title Align",
"Axis Placement": "Axis Placement",
"Horiz Align": "Horiz Align",
"Label To Title Gap": "Label To Title Gap",
"Label Rotation": "Label Rotation",
"Compare Mode": "Compare Mode",
"Computed Minimum": "Computed Minimum",
"Computed Maximum": "Computed Maximum",
"Computed Interval": "Computed Interval",
"Computed Units": "Computed Units",
"Align top": "Align top",
"Align middle": "Align middle",
"Align bottom": "Align bottom",
"Align left": "Align left",
"Align center": "Align center",
"Align right": "Align right",
"Horizontal Alignment": "Horizontal Alignment",
"Label Position": "Label Position",
"Callout Gap": "Callout Gap",
"Zooming": "Zooming",
"Zoomer Mode": "Zoomer Mode",
"Zoomer Line": "Zoomer Line",
"Zoomer Area Fill": "Zoomer Area Fill",
"Zoom All Axes": "Zoom All Axes",
"Horiz Zoom Minimum": "Horiz Zoom Minimum",
"Horiz Zoom Maximum": "Horiz Zoom Maximum",
"Horiz Zoom Trigger": "Horiz Zoom Trigger",
"Vert Zoom Minimum": "Vert Zoom Minimum",
"Vert Zoom Maximum": "Vert Zoom Maximum",
"Vert Zoom Trigger": "Vert Zoom Trigger",
"Column Width Ratio": "Column Width Ratio",
"Bar Width Ratio": "Bar Width Ratio",
"Inner Radius": "Inner Radius",
"Outer Radius": "Outer Radius",
"Scale Labels Renderer": "Scale Labels Renderer",
"OriginX": "OriginX",
"OriginY": "OriginY",