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
  | var svgEditorExtensionLocale_markers_en = (function () { 
 |    'use strict'; 
 |    
 |    var en = { 
 |      name: 'Markers', 
 |      langList: [{ 
 |        id: 'nomarker', 
 |        title: 'No Marker' 
 |      }, { 
 |        id: 'leftarrow', 
 |        title: 'Left Arrow' 
 |      }, { 
 |        id: 'rightarrow', 
 |        title: 'Right Arrow' 
 |      }, { 
 |        id: 'textmarker', 
 |        title: 'Text Marker' 
 |      }, { 
 |        id: 'forwardslash', 
 |        title: 'Forward Slash' 
 |      }, { 
 |        id: 'reverseslash', 
 |        title: 'Reverse Slash' 
 |      }, { 
 |        id: 'verticalslash', 
 |        title: 'Vertical Slash' 
 |      }, { 
 |        id: 'box', 
 |        title: 'Box' 
 |      }, { 
 |        id: 'star', 
 |        title: 'Star' 
 |      }, { 
 |        id: 'xmark', 
 |        title: 'X' 
 |      }, { 
 |        id: 'triangle', 
 |        title: 'Triangle' 
 |      }, { 
 |        id: 'mcircle', 
 |        title: 'Circle' 
 |      }, { 
 |        id: 'leftarrow_o', 
 |        title: 'Open Left Arrow' 
 |      }, { 
 |        id: 'rightarrow_o', 
 |        title: 'Open Right Arrow' 
 |      }, { 
 |        id: 'box_o', 
 |        title: 'Open Box' 
 |      }, { 
 |        id: 'star_o', 
 |        title: 'Open Star' 
 |      }, { 
 |        id: 'triangle_o', 
 |        title: 'Open Triangle' 
 |      }, { 
 |        id: 'mcircle_o', 
 |        title: 'Open Circle' 
 |      }], 
 |      contextTools: [{ 
 |        title: 'Start marker', 
 |        label: 's' 
 |      }, { 
 |        title: 'Select start marker type' 
 |      }, { 
 |        title: 'Middle marker', 
 |        label: 'm' 
 |      }, { 
 |        title: 'Select mid marker type' 
 |      }, { 
 |        title: 'End marker', 
 |        label: 'e' 
 |      }, { 
 |        title: 'Select end marker type' 
 |      }] 
 |    }; 
 |    
 |    return en; 
 |    
 |  }()); 
 |  
  |