-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtemplate.json
More file actions
2134 lines (2134 loc) · 76.5 KB
/
template.json
File metadata and controls
2134 lines (2134 loc) · 76.5 KB
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
{
"Add Parameter": "Add Parameter",
"Warning": "Warning",
"Remote server failed to save the dataflow": "Remote server failed to save the dataflow",
"Error": "Error",
"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",
"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",
"Other": "Other",
"Open Wizard": "Open Wizard",
"Annotation": "Annotation",
"Long Data": "Long Data",
"Stage": "Stage",
"Italic": "Italic",
"Bold": "Bold",
"cornerRadius": "cornerRadius",
"Sunday": "Sunday",
"Monday": "Monday",
"Tuesday": "Tuesday",
"Wednesday": "Wednesday",
"Thursday": "Thursday",
"Friday": "Friday",
"Saturday": "Saturday",
"January": "January",
"February": "February",
"March": "March",
"April": "April",
"May": "May",
"June": "June",
"July": "July",
"August": "August",
"September": "September",
"October": "October",
"November": "November",
"December": "December",
"s_Jan": "s_Jan",
"s_Feb": "s_Feb",
"s_Mar": "s_Mar",
"s_Apr": "s_Apr",
"s_May": "s_May",
"s_Jun": "s_Jun",
"s_Jul": "s_Jul",
"s_Aug": "s_Aug",
"s_Sep": "s_Sep",
"s_Oct": "s_Oct",
"s_Nov": "s_Nov",
"s_Dec": "s_Dec",
"Day": "Day",
"Week": "Week",
"Month": "Month",
"Title Height": "Title Height",
"Padding Top": "Padding Top",
"Padding Bottom": "Padding Bottom",
"Padding Left": "Padding Left",
"Padding Right": "Padding Right",
"Vertical Spacing": "Vertical Spacing",
"Horizontal Spacing": "Horizontal Spacing",
"List of dates separated by \",\"": "List of dates separated by \",\"",
"Use First Day Of Week From Calendar Component": "Use First Day Of Week From Calendar Component",
"Date Range Picker": "Date Range Picker",
"Value": "Value",
"Formatted Value": "Formatted Value",
"Next Value": "Next Value",
"This Value": "This Value",
"Prev Value": "Prev Value",
"Input Mode": "Input Mode",
"Date Format String": "Date Format String",
"Range Delimiter": "Range Delimiter",
"Keep Special Value": "Keep Special Value",
"Duration": "Duration",
"Next": "Next",
"Prev": "Prev",
"Button Styles": "Button Styles",
"Button Font": "Button Font",
"Button Font Size": "Button Font Size",
"Button Background": "Button Background",
"Active": "Active",
"Hover": "Hover",
"Button Border": "Button Border",
"Input Styles": "Input Styles",
"Input Font": "Input Font",
"Input Font Size": "Input Font Size",
"Input Background": "Input Background",
"Input Border": "Input Border",
"Dropdown Styles": "Dropdown Styles",
"Dropdown Font": "Dropdown Font",
"Dropdown Font Size": "Dropdown Font Size",
"Dropdown Background": "Dropdown Background",
"Dropdown Border": "Dropdown Border",
"Calendar": "Calendar",
"Selected Date": "Selected Date",
"Selected Range": "Selected Range",
"Highlighted Days": "Highlighted Days",
"Selected Days": "Selected Days",
"Current Month": "Current Month",
"Current Year": "Current Year",
"Selection Mode": "Selection Mode",
"Disable Selection of Future Dates": "Disable Selection of Future Dates",
"Disable Selection of Past Dates": "Disable Selection of Past Dates",
"Disable Selection out of Month": "Disable Selection out of Month",
"Month Names": "Month Names",
"DOW Names": "DOW Names",
"Start week on": "Start week on",
"Select Only From Range": "Select Only From Range",
"Weekday Cells": "Weekday Cells",
"Font": "Font",
"Size": "Size",
"Corner Radius": "Corner Radius",
"Font Smoothing": "Font Smoothing",
"Selected Cells": "Selected Cells",
"Highlighted Cells": "Highlighted Cells",
"Header": "Header",
"Height": "Height",
"Arrow Font": "Arrow Font",
"Previous": "Previous",
"Days of Week": "Days of Week",
"Weekend Cells": "Weekend Cells",
"Out of Month Cells": "Out of Month Cells",
"Today Cell": "Today Cell",
"Relative": "Relative",
"Year": "Year",
"Range": "Range",
"Ok": "Ok",
"Yesterday": "Yesterday",
"Today": "Today",
"This Week": "This Week",
"Last Week": "Last Week",
"This Year": "This Year",
"Last Year": "Last Year",
"current": "current",
"previous": "previous",
"seconds": "seconds",
"minutes": "minutes",
"hours": "hours",
"days": "days",
"weeks": "weeks",
"months": "months",
"years": "years",
"Line Spacing": "Line Spacing",
"Underline": "Underline",
"Center": "Center",
"Top": "Top",
"Middle": "Middle",
"Bottom": "Bottom",
"Ellipsis": "Ellipsis",
"None": "None",
"Wrap": "Wrap",
"Break-word": "Break-word",
"Tracking": "Tracking",
"Keep equal paddings": "Keep equal paddings",
"Show Day": "Show Day",
"Show Week": "Show Week",
"Show Relative": "Show Relative",
"Show Month": "Show Month",
"Show Year": "Show Year",
"Show Range": "Show Range",
"Show Time In Range Mode": "Show Time In Range Mode",
"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",
"This Month": "This Month",
"Last Month": "Last Month",
"Open": "Open",
"Cancel": "Cancel",
"Save": "Save",
"Incorrect file name": "Incorrect file name",
"Warning!": "Warning!",
"Commits": "Commits",
"No History found for ": "No History found for ",
"Rollback": "Rollback",
"Rollback selected changes?": "Rollback selected changes?",
"Confirm rollback": "Confirm rollback",
"Rollback ": "Rollback ",
"Rollback complete": "Rollback complete",
"Reload changed files?": "Reload changed files?",
"Some files were changed": "Some files were changed",
"Download": "Download",
"Download ": "Download ",
"Download file": "Download file",
"Move completed.": "Move completed.",
"Move File": "Move File",
"Overwrite": "Overwrite",
"Overwrite File": "Overwrite File",
"Moving...": "Moving...",
"Upload completed.": "Upload completed.",
"Upload File": "Upload File",
"Rename Error": "Rename Error",
"will be renamed to": "will be renamed to",
"Renaming was canceled for ": "Renaming was canceled for ",
"Rename File": "Rename File",
"Uploading...": "Uploading...",
"Load File": "Load File",
"Project Imported": "Project Imported",
"Import Project": "Import Project",
"Import Project Failed": "Import Project Failed",
"error impporting project": "error impporting project",
"Importing Project...": "Importing Project...",
"You are about to rewrite projects": "You are about to rewrite projects",
"You are about to rewrite project": "You are about to rewrite project",
"and all theirs files": "and all theirs files",
"and all its files": "and all its files",
"This operation cannot be undone. Proceed?": "This operation cannot be undone. Proceed?",
"Delete project": "Delete project",
"Delete Project": "Delete Project",
"You can't delete project": "You can't delete project",
"Deleting": "Deleting",
"Failed": "Failed",
"Error deleting project": "Error deleting project",
"File Manager": "File Manager",
"New Folder": "New Folder",
"Rename": "Rename",
"Copy Path": "Copy Path",
"Refresh": "Refresh",
"Password Protection": "Password Protection",
"Import Library": "Import Library",
"Upload": "Upload",
"History": "History",
"Add Tag": "Add Tag",
"file": "file",
"to": "to",
"the root": "the root",
"these": "these",
"files": "files",
"root": "root",
"Do you want to upload": "Do you want to upload",
"Do you want to move": "Do you want to move",
"Move Files": "Move Files",
"Overwrite this file": "Overwrite this file",
"Error uploading file": "Error uploading file",
"Uploading": "Uploading",
"Upload file": "Upload file",
"Upload Completed": "Upload Completed",
"Delete this file?": "Delete this file?",
"Delete File": "Delete File",
"Delete these files?": "Delete these files?",
"Delete Files": "Delete Files",
"Delete these files and folders?": "Delete these files and folders?",
"All files in folders will also be deleted": "All files in folders will also be deleted",
"Delete the folder": "Delete the folder",
"All files in this folder will also be deleted": "All files in this folder will also be deleted",
"Delete Folder": "Delete Folder",
"Delete Completed": "Delete Completed",
"Rename Completed.": "Rename Completed.",
"Can\\'t rename to itself": "Can\\'t rename to itself",
"Input the name of new folder": "Input the name of new folder",
"Created": "Created",
"Error creating new folder": "Error creating new folder",
"Create Folder": "Create Folder",
"Moving": "Moving",
"Copy File": "Copy File",
"Copying": "Copying",
"Error pasting file": "Error pasting file",
"All files are skipped": "All files are skipped",
"Completed": "Completed",
"Unrelativize": "Unrelativize",
"Export to CSV": "Export to CSV",
"Data Binding List": "Data Binding List",
"Not a symbol": "Not a symbol",
"Symbol": "Symbol",
"Not a binding": "Not a binding",
"Never": "Never",
"Relativized": "Relativized",
"Unrelativized": "Unrelativized",
"Find": "Find",
"Replace All": "Replace All",
"Select": "Select",
"Object": "Object",
"Component Type": "Component Type",
"Path": "Path",
"Action": "Action",
"Base": "Base",
"Is Symbol": "Is Symbol",
"Last Updated": "Last Updated",
"Relative To": "Relative To",
"Edit Symbol": "Edit Symbol",
"False": "False",
"Just now": "Just now",
"More than 24 hours": "More than 24 hours",
"second": "second",
"minute": "minute",
"hour": "hour",
"Symbol Node Path": "Symbol Node Path",
"Data Link": "Data Link",
"No Invoke Event": "No Invoke Event",
"You have read-only access to Symbol ": "You have read-only access to Symbol ",
"This Symbol is from another dg5,\\ncontinue anyway?": "This Symbol is from another dg5,\\ncontinue anyway?",
"Use as Base Path": "Use as Base Path",
"Do you want to invoke this action": "Do you want to invoke this action",
"Confirm": "Confirm",
"Load Completed": "Load Completed",
"Decoding failed: check console for error": "Decoding failed: check console for error",
"Loading...": "Loading...",
"Loading project dataflow": "Loading project dataflow",
"Project Dataflow": "Project Dataflow",
"Project has been changed. Save project dataflow anyway?": "Project has been changed. Save project dataflow anyway?",
"Confirm save": "Confirm save",
"Save File": "Save File",
"Saving project dataflow": "Saving project dataflow",
"Saving complete": "Saving complete",
"Show Values": "Show Values",
"Show Attributes": "Show Attributes",
"Show Nodes": "Show Nodes",
"Name": "Name",
"Modified": "Modified",
"Close": "Close",
"Apply": "Apply",
"File Saved": "File Saved",
"Info": "Info",
"project dataflow saved": "project dataflow saved",
"project dataflow not saved": "project dataflow not saved",
"Query": "Query",
"Sort by Name": "Sort by Name",
"Properties": "Properties",
"Autosave on close": "Autosave on close",
"Autosave": "Autosave",
"Blocks": "Blocks",
"Palette": "Palette",
"Symbols": "Symbols",
"Library": "Library",
"Invalid directory path": "Invalid directory path",
"Error renaming folder": "Error renaming folder",
"Error renaming file": "Error renaming file",
"Enter new group name": "Enter new group name",
"Move Group": "Move Group",
"Copy Group": "Copy Group",
"All groups are skipped": "All groups are skipped",
"Symbol has been added to Palette": "Symbol has been added to Palette",
"Add to Palette Symbol": "Add to Palette Symbol",
"Adding": "Adding",
"can't find source widget": "can't find source widget",
"can't check palette folder": "can't check palette folder",
"can't check default file": "can't check default file",
"can't find source file": "can't find source file",
"invalid symbol": "invalid symbol",
"can't load default palette file": "can't load default palette file",
"Widget has been added": "Widget has been added",
"Add widget to symbol list": "Add widget to symbol list",
"can't find source file path": "can't find source file path",
"can't create intermediate page": "can't create intermediate page",
"can't load source file": "can't load source file",
"all widgets are skipped": "all widgets are skipped",
"Symbol has been added to Library": "Symbol has been added to Library",
"Add to Library Symbol": "Add to Library Symbol",
"can't find target group": "can't find target group",
"can't load target file": "can't load target file",
"Enter new symbol name": "Enter new symbol name",
"symbol already exists": "symbol already exists",
"Widget has been added to Palette": "Widget has been added to Palette",
"Add to Palette Widget": "Add to Palette Widget",
"can't find widget path": "can't find widget path",
"can't find widget in file": "can't find widget in file",
"Move Widget": "Move Widget",
"Copy Widget": "Copy Widget",
"Move to the same folder, command skipped": "Move to the same folder, command skipped",
"All widgets are skipped": "All widgets are skipped",
"Destination page already contains symbol(s) with identical names. How would you like to proceed?": "Destination page already contains symbol(s) with identical names. How would you like to proceed?",
"Keep original symbols": "Keep original symbols",
"Overwrite original symbols": "Overwrite original symbols",
"Enter new widget name": "Enter new widget name",
"New File": "New File",
"New Group": "New Group",
"Paste Group": "Paste Group",
"Paste Widget": "Paste Widget",
"Paste Symbol": "Paste Symbol",
"Cut Group": "Cut Group",
"New Symbol": "New Symbol",
"Add to Palette": "Add to Palette",
"Edit": "Edit",
"Import": "Import",
"You can\\'t place component inside symbol\\'s root container": "You can\\'t place component inside symbol\\'s root container",
"You can\\'t do such action with symbol\\'s root container": "You can\\'t do such action with symbol\\'s root container",
"You can\\'t convert root element to symbol.": "You can\\'t convert root element to symbol.",
"Incorrect symbol path or name \"": "Incorrect symbol path or name \"",
"Dashboard _ contains unsaved changed. Close anyway?": "Dashboard _ contains unsaved changed. Close anyway?",
"Confirm close": "Confirm close",
"Dashboard _ was updated. Reload?": "Dashboard _ was updated. Reload?",
"Confirm reload": "Confirm reload",
"Decoding failed:": "Decoding failed:",
"Password Required": "Password Required",
"Marketplace": "Marketplace",
"Dashboard _ contains unsaved changed. Reload anyway?": "Dashboard _ contains unsaved changed. Reload anyway?",
"Scrolling Enabled": "Scrolling Enabled",
"Scrolling Disabled": "Scrolling Disabled",
"Uploading project": "Uploading project",
"Upload project error": "Upload project error",
"Project has been uploaded successfully": "Project has been uploaded successfully",
"Downloading project file error": "Downloading project file error",
"Downloading project from marketplace": "Downloading project from marketplace",
"Importing project": "Importing project",
"Project imported successfully": "Project imported successfully",
"Adding project": "Adding project",
"Projects have been added successfully": "Projects have been added successfully",
"Some errors occured during project addition": "Some errors occured during project addition",
"Couldn't add any projects": "Couldn't add any projects",
"Couldn't create folder": "Couldn't create folder",
"Error importing project": "Error importing project",
"Favorites": "Favorites",
"Remove": "Remove",
"Upload favorites": "Upload favorites",
"uploaded successfully!": "uploaded successfully!",
"Please, check network and try again!": "Please, check network and try again!",
"Components": "Components",
"Text": "Text",
"Image": "Image",
"Layer": "Layer",
"View Deck": "View Deck",
"Google Map": "Google Map",
"Map Group": "Map Group",
"Heat Map Overlay": "Heat Map Overlay",
"Mapbox GL Map": "Mapbox GL Map",
"Mapbox Heatmap Layer": "Mapbox Heatmap Layer",
"Mapbox Marker Layer": "Mapbox Marker Layer",
"Mapbox Cluster Layer": "Mapbox Cluster Layer",
"Mapbox GeoJSON Layer": "Mapbox GeoJSON Layer",
"Mapbox Draw Layer": "Mapbox Draw Layer",
"Mapbox Tile Layer": "Mapbox Tile Layer",
"Mapbox Group": "Mapbox Group",
"ESRI Map": "ESRI Map",
"ESRI Map Group": "ESRI Map Group",
"ESRI Map GeoJSON Layer": "ESRI Map GeoJSON Layer",
"ESRI Map Heatmap Layer": "ESRI Map Heatmap Layer",
"Mapbox Hexbin Layer": "Mapbox Hexbin Layer",
"Topology": "Topology",
"IFrame": "IFrame",
"Page Include": "Page Include",
"Data Grid": "Data Grid",
"Video": "Video",
"Heat Map": "Heat Map",
"Tree": "Tree",
"Tree Grid": "Tree Grid",
"Charts": "Charts",
"Chart": "Chart",
"Raw SVG Repeater": "Raw SVG Repeater",
"Gauge": "Gauge",
"Scale Ticks": "Scale Ticks",
"Scale Labels": "Scale Labels",
"Scale Track": "Scale Track",
"Form": "Form",
"Text Input": "Text Input",
"Text Area": "Text Area",
"Password Input": "Password Input",
"Date Input": "Date Input",
"Time Input": "Time Input",
"DG Time Input": "DG Time Input",
"Color Input": "Color Input",
"Number Input": "Number Input",
"Range Input": "Range Input",
"File Input": "File Input",
"List": "List",
"Submit Feedback": "Submit Feedback",
"Help Contents": "Help Contents",
"License": "License",
"About": "About",
"https://www.acuitybrands.com/solutions/internet-of-things/atrius": "https://www.acuitybrands.com/solutions/internet-of-things/atrius",
"http://www.dglogik.com": "http://www.dglogik.com",
"Save With Log": "Save With Log",
"Enabled": "Enabled",
"Disabled": "Disabled",
"Clear": "Clear",
"Replace String": "Replace String",
"https://docs.distech-controls.com/bundle/ENVYSION-ResponsiveHTML5/page/ENVYSION/ENVYSION_Basics/ENVYSION_Basics.htm": "https://docs.distech-controls.com/bundle/ENVYSION-ResponsiveHTML5/page/ENVYSION/ENVYSION_Basics/ENVYSION_Basics.htm",
"https://wiki.dglogik.com/dglux5_wiki:home": "https://wiki.dglogik.com/dglux5_wiki:home",
"DGLux5": "DGLux5",
"Update": "Update",
"DGLogik, Inc": "DGLogik, Inc",
"New Floor Plan": "New Floor Plan",
"New Equipment View": "New Equipment View",
"Insert": "Insert",
"Bind": "Bind",
"Bring Forward": "Bring Forward",
"Bring to Front": "Bring to Front",
"Send Backward": "Send Backward",
"Send to Back": "Send to Back",
"Edit Page Include": "Edit Page Include",
"Edit Properties": "Edit Properties",
"Edit Binding List": "Edit Binding List",
"getUsers error": "getUsers error",
"Incorrect output table": "Incorrect output table",
"Logout": "Logout",
"My Account": "My Account",
"User Management": "User Management",
"Users": "Users",
"Requests": "Requests",
"User has been successfully approved": "User has been successfully approved",
"Yes": "Yes",
"No": "No",
"Are you sure you want to remove ": "Are you sure you want to remove ",
"Confirm Removal": "Confirm Removal",
"User ": "User ",
"has been successfully removed": "has been successfully removed",
"Error during user removing": "Error during user removing",
"Are you sure you want to approve ": "Are you sure you want to approve ",
"Change": "Change",
"Username": "Username",
"First Name": "First Name",
"Last Name": "Last Name",
"Email": "Email",
"Time Zone": "Time Zone",
"Password": "Password",
"Current Password": "Current Password",
"New Password": "New Password",
"Verify Password": "Verify Password",
"Passwords Match": "Passwords Match",
"Passwords do not match": "Passwords do not match",
"Force Password Reset": "Force Password Reset",
"Account Settings": "Account Settings",
"Superuser": "Superuser",
"Root Url": "Root Url",
"Allow Designer": "Allow Designer",
"Groups": "Groups",
"Skip 2FA": "Skip 2FA",
"New Account": "New Account",
"Edit Account": "Edit Account",
"Incorrect username": "Incorrect username",
" already exists ": " already exists ",
"Incorrect email address": "Incorrect email address",
"New password doesn't match": "New password doesn't match",
"New password too short": "New password too short",
"New user has been created": "New user has been created",
"User Profile": "User Profile",
"Create user error": "Create user error",
"User profile has been successfully changed": "User profile has been successfully changed",
"Error in current password": "Error in current password",
"Current password error": "Current password error",
"Password has been successfully changed": "Password has been successfully changed",
"New password error": "New password error",
"Force Password Change completed": "Force Password Change completed",
"Force Password Change Error' + ': ${forcePasswordChangeBlock.getValue('error": "Force Password Change Error' + ': ${forcePasswordChangeBlock.getValue('error",
"User settings has been successfully saved": "User settings has been successfully saved",
"Profile": "Profile",
"Done": "Done",
"Collaborators": "Collaborators",
"Remove item": "Remove item",
"Theme": "Theme",
"English (United States)": "English (United States)",
"English (United Kingdom)": "English (United Kingdom)",
"German": "German",
"Arabic": "Arabic",
"Bulgarian": "Bulgarian",
"Catalan": "Catalan",
"Chinese (Simplified)": "Chinese (Simplified)",
"Chinese (Traditional)": "Chinese (Traditional)",
"Russian": "Russian",
"Czech": "Czech",
"Danish": "Danish",
"Greek": "Greek",
"Spanish": "Spanish",
"Estonian": "Estonian",
"Persian": "Persian",
"Finnish": "Finnish",
"French": "French",
"Hebrew": "Hebrew",
"Hindi": "Hindi",
"Haitian": "Haitian",
"Hungarian": "Hungarian",
"Indonesian": "Indonesian",
"Italian": "Italian",
"Japanese": "Japanese",
"Korean": "Korean",
"Lithuanian": "Lithuanian",
"Latvian": "Latvian",
"Malay": "Malay",
"Dutch": "Dutch",
"Norwegian": "Norwegian",
"Polish": "Polish",
"Portuguese": "Portuguese",
"Romanian": "Romanian",
"Slovak": "Slovak",
"Slovene": "Slovene",
"Swedish": "Swedish",
"Thai": "Thai",
"Turkish": "Turkish",
"Ukrainian": "Ukrainian",
"Urdu": "Urdu",
"Vietnamese": "Vietnamese",
"Language": "Language",
"Tag": "Tag",
"Message": "Message",
"\"Tag\" field should not be empty.": "\"Tag\" field should not be empty.",
"Documentation": "Documentation",
"Password protection is only available for .dg5 files.": "Password protection is only available for .dg5 files.",
"Failed to load file": "Failed to load file",
"Invalid dg5 file.": "Invalid dg5 file.",
"Loaded": "Loaded",
"Remove Password": "Remove Password",
"Update Password": "Update Password",
"Optional": "Optional",
"Current password is incorrect.": "Current password is incorrect.",
"New password should not be empty.": "New password should not be empty.",
"Password updated.": "Password updated.",
"This file is not password protected.": "This file is not password protected.",
"Password removed.": "Password removed.",
"Failed to save file": "Failed to save file",
"Saving": "Saving",
"Bind as metric": "Bind as metric",
"Bind as metric with dialog": "Bind as metric with dialog",
"Formatted": "Formatted",
"Expression": "Expression",
"Offset": "Offset",
"Input": "Input",
"Output": "Output",
"Gradient": "Gradient",
"Input Min": "Input Min",
"Input Max": "Input Max",
"Data Mapping": "Data Mapping",
"Mapping": "Mapping",
"Binding": "Binding",
"Path Metrics": "Path Metrics",
"Symbol Property Map": "Symbol Property Map",
"Apply To All": "Apply To All",
"Property Map Binding": "Property Map Binding",
"New Mapping": "New Mapping",
"Overlay": "Overlay",
"Origin X": "Origin X",
"Origin Y": "Origin Y",
"Step X": "Step X",
"Step Y": "Step Y",
"Default": "Default",
"Grid Properties": "Grid Properties",
"type": "type",
"Show All": "Show All",
"Project Import": "Project Import",
"Import was finished": "Import was finished",
"Min zoom": "Min zoom",
"Max zoom": "Max zoom",
"Zoom Tool Properties": "Zoom Tool Properties",
"Don't ask again": "Don't ask again",
"Open File": "Open File",
"Choose File": "Choose File",
"Project": "Project",
"is a template. Any change to a template will affect all the projects using this template.": "is a template. Any change to a template will affect all the projects using this template.",
"Do not show again for this project": "Do not show again for this project",
"Project is protected": "Project is protected",
"Welcome": "Welcome",
"Choose": "Choose",
"CREATE NEW": "CREATE NEW",
"Create a blank project or choose a template": "Create a blank project or choose a template",
"OPEN / IMPORT": "OPEN / IMPORT",
"Open or Import a ": "Open or Import a ",
" project file": " project file",
"Open or Import a DGLux5 project file": "Open or Import a DGLux5 project file",
"RECENT": "RECENT",
"Open a recent ": "Open a recent ",
"Open a recent DGLux5 project file": "Open a recent DGLux5 project file",
"TUTORIALS": "TUTORIALS",
"View ": "View ",
" tutorial videos": " tutorial videos",
"View DGLux5 tutorial videos": "View DGLux5 tutorial videos",
"Export": "Export",
"http://www.dglogik.com/videos": "http://www.dglogik.com/videos",
"Project Name": "Project Name",
"Create Project": "Create Project",
"Project wasn't created: ": "Project wasn't created: ",
"Server error": "Server error",
"Projects": "Projects",
"Profiles": "Profiles",
"NAME": "NAME",
"ID": "ID",
"OWNER": "OWNER",
"DATE CREATED": "DATE CREATED",
"DATE MODIFIED": "DATE MODIFIED",
"DESCRIPTION": "DESCRIPTION",
"Project Properties": "Project Properties",
"Template": "Template",
"Category": "Category",
"UI Widgets": "UI Widgets",
"All Files": "All Files",
"Comma separated list of files from palette": "Comma separated list of files from palette",
"Description": "Description",
"Version": "Version",
"Default Widget Theme": "Default Widget Theme",
"Use localization in Viewer": "Use localization in Viewer",
"Load External Configuration File": "Load External Configuration File",
"Who has access": "Who has access",
"Enter username": "Enter username",
"Specific people": "Specific people",
"Anyone with the link": "Anyone with the link",
"Auto": "Auto",
"Dark": "Dark",
"Light": "Light",
"was saved": "was saved",
"Is owner": "Is owner",
"Submit feedback to the ": "Submit feedback to the ",
" Team": " Team",
"Submit feedback to the DGLux 5.0 Team": "Submit feedback to the DGLux 5.0 Team",
"Subject": "Subject",
"Type": "Type",
"Send": "Send",
"Feedback was sent successfully": "Feedback was sent successfully",
"Submit feedback": "Submit feedback",
"Feedback was not sent. Check your internet connection": "Feedback was not sent. Check your internet connection",
"Information": "Information",
"I Agree": "I Agree",
"Data": "Data",
"Advanced": "Advanced",
"Actions": "Actions",
"File": "File",
"New File from Template": "New File from Template",
"Floor Plan": "Floor Plan",
"Equipment View": "Equipment View",
"Recent": "Recent",
"Save As": "Save As",
"Import DG5": "Import DG5",
"Recover": "Recover",
"New Project": "New Project",
"Open Project": "Open Project",
"Clear History": "Clear History",
"Export / Import": "Export / Import",
"Export Current Project": "Export Current Project",
"Undo": "Undo",
"Redo": "Redo",
"Replace Color": "Replace Color",
"Binding list": "Binding list",
"View": "View",
"Snapping": "Snapping",
"Snap To Components": "Snap To Components",
"Snap To Vertexes": "Snap To Vertexes",
"Snap To Grid": "Snap To Grid",
"Snap In Dataflow": "Snap In Dataflow",
"Snap To Custom Points": "Snap To Custom Points",
"Zoom Tool": "Zoom Tool",
"Show Zoom Tool": "Show Zoom Tool",
"Position": "Position",
"Left Top Corner": "Left Top Corner",
"Right Top Corner": "Right Top Corner",
"Right Bottom Corner": "Right Bottom Corner",
"Left Bottom Corner": "Left Bottom Corner",
"Settings": "Settings",
"Grid": "Grid",
"Show Grid": "Show Grid",
"Data Tree": "Data Tree",
"Show Raw Node Name": "Show Raw Node Name",
"Show Blue Dots": "Show Blue Dots",
"Disable Animation": "Disable Animation",
"Show Toolbar": "Show Toolbar",
"Change Theme": "Change Theme",
"Restore Default Designer Layout": "Restore Default Designer Layout",
"Modify": "Modify",
"Align": "Align",
"Align Left": "Align Left",
"Align Center": "Align Center",
"Align Right": "Align Right",
"Align Top": "Align Top",
"Align Middle": "Align Middle",
"Align Bottom": "Align Bottom",
"Arrange": "Arrange",
"Arrange Horizontally": "Arrange Horizontally",
"Arrange Vertically": "Arrange Vertically",
"Distribute": "Distribute",
"Distribute Left": "Distribute Left",
"Distribute Center": "Distribute Center",
"Distribute Right": "Distribute Right",
"Distribute Top": "Distribute Top",
"Distribute Middle": "Distribute Middle",
"Distribute Bottom": "Distribute Bottom",
"Convert To Symbol": "Convert To Symbol",
"Export Symbol Help": "Export Symbol Help",
"Show dataflow for": "Show dataflow for",
"Property with the same name already exists.": "Property with the same name already exists.",
"Make invisible all": "Make invisible all",
"Lock all components": "Lock all components",
"Lock all groups": "Lock all groups",
"Make visible all": "Make visible all",
"Unlock all components": "Unlock all components",
"Unlock all groups": "Unlock all groups",
"Rectangle": "Rectangle",
"Rectangle SVG": "Rectangle SVG",
"Oval": "Oval",
"Oval SVG": "Oval SVG",
"Triangle": "Triangle",
"Polygon": "Polygon",
"Line": "Line",
"Polyline": "Polyline",
"Edit Path": "Edit Path",
"Rotate": "Rotate",
"Full Size": "Full Size",
"Auto Size": "Auto Size",
"Zoom": "Zoom",
"Forward": "Forward",
"Backward": "Backward",
"Send Front": "Send Front",
"Send Back": "Send Back",
"More": "More",
"Zoom Out": "Zoom Out",
"Zoom In": "Zoom In",
"Scale Down": "Scale Down",
"Scale Up": "Scale Up",
"Show Zoom": "Show Zoom",
"Fit Canvas": "Fit Canvas",
"Basic Shapes": "Basic Shapes",
"SVG Shapes": "SVG Shapes",
"Hide Toolbar": "Hide Toolbar",
"Icon + Text": "Icon + Text",
"Icon Only": "Icon Only",
"Fill Color": "Fill Color",
"Stroke Color": "Stroke Color",
"There are no selected objects": "There are no selected objects",
"Preview": "Preview",
"Viewer Link": "Viewer Link",
"Record": "Record",
"There are _ selected objects": "There are _ selected objects",
"Page is not saved, save the page and open viewer link": "Page is not saved, save the page and open viewer link",
"Open Viewer Link": "Open Viewer Link",
"Copy Viewer Link": "Copy Viewer Link",
"Use Ctrl+C or right click to copy the link": "Use Ctrl+C or right click to copy the link",
"Group 1": "Group 1",
"New": "New",
"Symbol Parameters": "Symbol Parameters",
"Page Parameters": "Page Parameters",
"Reuse symbol instances": "Reuse symbol instances",
"relativize block already exists but not configured correctly": "relativize block already exists but not configured correctly",
"Can not find a common data path": "Can not find a common data path",
"Confirm Relativize Path": "Confirm Relativize Path",