| 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
 | | var svgEditorExtensionLocale_shapes_en = (function () { |  |   'use strict'; |  |   |  |   var en = { |  |     loading: 'Loading...', |  |     categories: { |  |       basic: 'Basic', |  |       object: 'Objects', |  |       symbol: 'Symbols', |  |       arrow: 'Arrows', |  |       flowchart: 'Flowchart', |  |       animal: 'Animals', |  |       game: 'Cards & Chess', |  |       dialog_balloon: 'Dialog balloons', |  |       electronics: 'Electronics', |  |       math: 'Mathematical', |  |       music: 'Music', |  |       misc: 'Miscellaneous', |  |       raphael_1: 'raphaeljs.com set 1', |  |       raphael_2: 'raphaeljs.com set 2' |  |     }, |  |     buttons: [{ |  |       title: 'Shape library' |  |     }] |  |   }; |  |   |  |   return en; |  |   |  | }()); | 
 |