closure 1.2.701 → 1.3.0

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.
Files changed (1566) hide show
  1. data/README.md +9 -8
  2. data/closure-compiler/README +1 -1
  3. data/closure-compiler/compiler.jar +0 -0
  4. data/docs/SCRIPT.md +142 -0
  5. data/docs/closure/Closure/BeanShell.html +335 -0
  6. data/docs/closure/Closure/Compiler/Compilation.html +636 -0
  7. data/docs/closure/Closure/Compiler/Error.html +116 -0
  8. data/docs/closure/Closure/Compiler.html +387 -0
  9. data/docs/closure/Closure/FileResponse.html +622 -0
  10. data/docs/closure/Closure/Goog.html +1251 -0
  11. data/docs/closure/Closure/Middleware.html +304 -0
  12. data/docs/closure/Closure/Script/NotFound.html +116 -0
  13. data/docs/closure/Closure/Script/RenderStackOverflow.html +116 -0
  14. data/docs/closure/Closure/Script.html +1083 -0
  15. data/docs/closure/Closure/Server.html +439 -0
  16. data/docs/closure/Closure/ShowExceptions.html +266 -0
  17. data/docs/closure/Closure/Sources.html +1272 -0
  18. data/docs/closure/Closure/Templates/Error.html +116 -0
  19. data/docs/closure/Closure/Templates.html +361 -0
  20. data/docs/closure/Closure.html +715 -0
  21. data/docs/closure/_index.html +289 -0
  22. data/docs/closure/class_list.html +47 -0
  23. data/docs/closure/css/common.css +1 -0
  24. data/docs/closure/css/full_list.css +53 -0
  25. data/docs/closure/css/style.css +320 -0
  26. data/{closure-library/LICENSE → docs/closure/file.LICENSE.html} +106 -16
  27. data/docs/closure/file.README.html +79 -0
  28. data/docs/closure/file_list.html +52 -0
  29. data/docs/closure/frames.html +13 -0
  30. data/docs/closure/index.html +79 -0
  31. data/docs/closure/js/app.js +205 -0
  32. data/docs/closure/js/full_list.js +150 -0
  33. data/docs/closure/js/jquery.js +16 -0
  34. data/docs/closure/method_list.html +486 -0
  35. data/docs/closure/top-level-namespace.html +103 -0
  36. data/docs/index.erb +26 -0
  37. data/externs/chrome_extensions.externs +968 -0
  38. data/{scripts/externs/jquery_1_4_2.externs → externs/jquery-1.3.2.externs} +39 -170
  39. data/externs/jquery-1.4.3.externs +1289 -0
  40. data/externs/jquery-1.4.4.externs +1302 -0
  41. data/externs/jquery-1.5.externs +1697 -0
  42. data/externs/jquery.externs +4 -0
  43. data/lib/closure/beanshell.rb +9 -21
  44. data/lib/closure/compiler.rb +247 -102
  45. data/lib/closure/engines.rb +50 -0
  46. data/lib/closure/goog.rb +122 -68
  47. data/lib/closure/script.rb +68 -54
  48. data/lib/closure/server.rb +10 -1
  49. data/lib/closure/show_exceptions.rb +30 -3
  50. data/lib/closure/sources.rb +26 -25
  51. data/lib/closure/templates.rb +79 -124
  52. data/lib/closure/version.rb +1 -1
  53. data/lib/closure.rb +64 -43
  54. data/lib/shim.jar +0 -0
  55. data/scripts/config.ru +25 -0
  56. data/scripts/hello/compiler.js.erb +48 -0
  57. data/scripts/hello/compiler_build.js +5 -0
  58. data/scripts/hello/compiler_build.map +752 -0
  59. data/scripts/hello/compiler_debug.js +125 -0
  60. data/scripts/hello/hello.js +11 -0
  61. data/scripts/hello/index.erb +11 -0
  62. data/scripts/hello/legume.js +20 -0
  63. data/scripts/hello/legume.soy +9 -0
  64. data/scripts/index.erb +45 -5
  65. data/scripts/jquery/compiler.js.erb +7 -0
  66. data/scripts/jquery/compiler_out.js +1 -0
  67. data/scripts/jquery/index.erb +25 -0
  68. data/scripts/jquery/jquery_test.js +8 -0
  69. data/scripts/modules/api.js +11 -0
  70. data/scripts/modules/api_init.js +8 -0
  71. data/scripts/modules/app.js +102 -0
  72. data/scripts/modules/app_init.js +33 -0
  73. data/scripts/modules/compiler.js.erb +34 -0
  74. data/scripts/modules/compiler_build.js +6 -0
  75. data/scripts/modules/compiler_build.map +12077 -0
  76. data/scripts/modules/compiler_build_api.js +1 -0
  77. data/scripts/modules/compiler_build_app.js +74 -0
  78. data/scripts/modules/compiler_build_settings.js +2 -0
  79. data/scripts/modules/compiler_debug.js +6 -0
  80. data/scripts/modules/compiler_debug_api.js +11 -0
  81. data/scripts/modules/compiler_debug_app.js +2870 -0
  82. data/scripts/modules/compiler_debug_settings.js +42 -0
  83. data/scripts/modules/index.erb +18 -0
  84. data/scripts/modules/settings.js +19 -0
  85. data/scripts/modules/settings_init.js +14 -0
  86. data/scripts/{demos/rails_ujs.erb → rails/index.erb} +14 -6
  87. data/scripts/{demos → rails}/rails_ujs.js +0 -40
  88. data/scripts/svn.erb +228 -0
  89. data/scripts/welcome.erb +78 -0
  90. metadata +101 -1507
  91. data/.gitignore +0 -6
  92. data/.yardopts +0 -3
  93. data/closure-library/AUTHORS +0 -12
  94. data/closure-library/README +0 -6
  95. data/closure-library/all_tests.html +0 -113
  96. data/closure-library/alltests.js +0 -16
  97. data/closure-library/closure/bin/build/closurebuilder.py +0 -257
  98. data/closure-library/closure/bin/build/depstree.py +0 -186
  99. data/closure-library/closure/bin/build/depstree_test.py +0 -127
  100. data/closure-library/closure/bin/build/depswriter.py +0 -197
  101. data/closure-library/closure/bin/build/jscompiler.py +0 -69
  102. data/closure-library/closure/bin/build/source.py +0 -86
  103. data/closure-library/closure/bin/build/source_test.py +0 -57
  104. data/closure-library/closure/bin/build/treescan.py +0 -78
  105. data/closure-library/closure/bin/calcdeps.py +0 -570
  106. data/closure-library/closure/bin/scopify.py +0 -211
  107. data/closure-library/closure/css/inlay/g-base.css +0 -82
  108. data/closure-library/closure/css/inlay/g-fixed.css +0 -158
  109. data/closure-library/closure/css/inlay/g-ratio.css +0 -253
  110. data/closure-library/closure/goog/array/array.js +0 -1300
  111. data/closure-library/closure/goog/array/array_test.html +0 -1524
  112. data/closure-library/closure/goog/asserts/asserts.js +0 -277
  113. data/closure-library/closure/goog/asserts/asserts_test.html +0 -163
  114. data/closure-library/closure/goog/async/conditionaldelay.js +0 -238
  115. data/closure-library/closure/goog/async/conditionaldelay_test.html +0 -227
  116. data/closure-library/closure/goog/async/delay.js +0 -174
  117. data/closure-library/closure/goog/async/delay_test.html +0 -148
  118. data/closure-library/closure/goog/async/throttle.js +0 -189
  119. data/closure-library/closure/goog/async/throttle_test.html +0 -102
  120. data/closure-library/closure/goog/base.js +0 -1471
  121. data/closure-library/closure/goog/base_test.html +0 -1166
  122. data/closure-library/closure/goog/bootstrap/webworkers.js +0 -37
  123. data/closure-library/closure/goog/color/alpha.js +0 -436
  124. data/closure-library/closure/goog/color/alpha_test.html +0 -234
  125. data/closure-library/closure/goog/color/color.js +0 -757
  126. data/closure-library/closure/goog/color/color_test.html +0 -645
  127. data/closure-library/closure/goog/color/names.js +0 -176
  128. data/closure-library/closure/goog/crypt/arc4.js +0 -141
  129. data/closure-library/closure/goog/crypt/arc4_test.html +0 -42
  130. data/closure-library/closure/goog/crypt/base64.js +0 -267
  131. data/closure-library/closure/goog/crypt/base64_test.html +0 -106
  132. data/closure-library/closure/goog/crypt/basen.js +0 -242
  133. data/closure-library/closure/goog/crypt/basen_test.html +0 -167
  134. data/closure-library/closure/goog/crypt/crypt.js +0 -103
  135. data/closure-library/closure/goog/crypt/crypt_test.html +0 -68
  136. data/closure-library/closure/goog/crypt/hash32.js +0 -184
  137. data/closure-library/closure/goog/crypt/hash32_test.html +0 -287
  138. data/closure-library/closure/goog/crypt/sha1.js +0 -238
  139. data/closure-library/closure/goog/crypt/sha1_test.html +0 -47
  140. data/closure-library/closure/goog/css/autocomplete.css +0 -43
  141. data/closure-library/closure/goog/css/bubble.css +0 -84
  142. data/closure-library/closure/goog/css/button.css +0 -38
  143. data/closure-library/closure/goog/css/charpicker.css +0 -201
  144. data/closure-library/closure/goog/css/checkbox.css +0 -38
  145. data/closure-library/closure/goog/css/colormenubutton.css +0 -25
  146. data/closure-library/closure/goog/css/colorpalette.css +0 -54
  147. data/closure-library/closure/goog/css/colorpicker-simplegrid.css +0 -50
  148. data/closure-library/closure/goog/css/combobox.css +0 -57
  149. data/closure-library/closure/goog/css/common.css +0 -41
  150. data/closure-library/closure/goog/css/css3button.css +0 -77
  151. data/closure-library/closure/goog/css/css3menubutton.css +0 -23
  152. data/closure-library/closure/goog/css/custombutton.css +0 -164
  153. data/closure-library/closure/goog/css/datepicker.css +0 -148
  154. data/closure-library/closure/goog/css/dialog.css +0 -72
  155. data/closure-library/closure/goog/css/dimensionpicker.css +0 -47
  156. data/closure-library/closure/goog/css/dragdropdetector.css +0 -48
  157. data/closure-library/closure/goog/css/editor/bubble.css +0 -73
  158. data/closure-library/closure/goog/css/editor/dialog.css +0 -66
  159. data/closure-library/closure/goog/css/editor/linkdialog.css +0 -36
  160. data/closure-library/closure/goog/css/editortoolbar.css +0 -225
  161. data/closure-library/closure/goog/css/filteredmenu.css +0 -30
  162. data/closure-library/closure/goog/css/filterobservingmenuitem.css +0 -25
  163. data/closure-library/closure/goog/css/flatbutton.css +0 -65
  164. data/closure-library/closure/goog/css/flatmenubutton.css +0 -63
  165. data/closure-library/closure/goog/css/hovercard.css +0 -51
  166. data/closure-library/closure/goog/css/hsvapalette.css +0 -231
  167. data/closure-library/closure/goog/css/hsvpalette.css +0 -179
  168. data/closure-library/closure/goog/css/imagelessbutton.css +0 -160
  169. data/closure-library/closure/goog/css/imagelessmenubutton.css +0 -23
  170. data/closure-library/closure/goog/css/inputdatepicker.css +0 -12
  171. data/closure-library/closure/goog/css/linkbutton.css +0 -26
  172. data/closure-library/closure/goog/css/menu.css +0 -27
  173. data/closure-library/closure/goog/css/menubutton.css +0 -169
  174. data/closure-library/closure/goog/css/menuitem.css +0 -96
  175. data/closure-library/closure/goog/css/menuseparator.css +0 -19
  176. data/closure-library/closure/goog/css/multitestrunner.css +0 -121
  177. data/closure-library/closure/goog/css/offline.css +0 -147
  178. data/closure-library/closure/goog/css/palette.css +0 -36
  179. data/closure-library/closure/goog/css/popupdatepicker.css +0 -17
  180. data/closure-library/closure/goog/css/roundedpanel.css +0 -29
  181. data/closure-library/closure/goog/css/roundedtab.css +0 -158
  182. data/closure-library/closure/goog/css/submenu.css +0 -28
  183. data/closure-library/closure/goog/css/tab.css +0 -91
  184. data/closure-library/closure/goog/css/tabbar.css +0 -52
  185. data/closure-library/closure/goog/css/tablesorter.css +0 -14
  186. data/closure-library/closure/goog/css/toolbar.css +0 -400
  187. data/closure-library/closure/goog/css/tooltip.css +0 -14
  188. data/closure-library/closure/goog/css/tree.css +0 -147
  189. data/closure-library/closure/goog/css/tristatemenuitem.css +0 -43
  190. data/closure-library/closure/goog/cssom/cssom.js +0 -447
  191. data/closure-library/closure/goog/cssom/cssom_test.html +0 -343
  192. data/closure-library/closure/goog/cssom/cssom_test_import_1.css +0 -11
  193. data/closure-library/closure/goog/cssom/cssom_test_import_2.css +0 -10
  194. data/closure-library/closure/goog/cssom/cssom_test_link_1.css +0 -10
  195. data/closure-library/closure/goog/cssom/iframe/style.js +0 -1020
  196. data/closure-library/closure/goog/cssom/iframe/style_test.html +0 -391
  197. data/closure-library/closure/goog/cssom/iframe/style_test_import.css +0 -10
  198. data/closure-library/closure/goog/datasource/datamanager.js +0 -566
  199. data/closure-library/closure/goog/datasource/datasource.js +0 -646
  200. data/closure-library/closure/goog/datasource/datasource_test.html +0 -265
  201. data/closure-library/closure/goog/datasource/expr.js +0 -544
  202. data/closure-library/closure/goog/datasource/expr_test.html +0 -97
  203. data/closure-library/closure/goog/datasource/fastdatanode.js +0 -792
  204. data/closure-library/closure/goog/datasource/fastdatanode_test.html +0 -254
  205. data/closure-library/closure/goog/datasource/jsdatasource.js +0 -460
  206. data/closure-library/closure/goog/datasource/jsondatasource.js +0 -146
  207. data/closure-library/closure/goog/datasource/jsxmlhttpdatasource.js +0 -191
  208. data/closure-library/closure/goog/datasource/jsxmlhttpdatasource_test.html +0 -94
  209. data/closure-library/closure/goog/datasource/xmldatasource.js +0 -407
  210. data/closure-library/closure/goog/date/date.js +0 -1642
  211. data/closure-library/closure/goog/date/date_test.html +0 -1293
  212. data/closure-library/closure/goog/date/datelike.js +0 -27
  213. data/closure-library/closure/goog/date/daterange.js +0 -398
  214. data/closure-library/closure/goog/date/daterange_test.html +0 -213
  215. data/closure-library/closure/goog/date/relative.js +0 -425
  216. data/closure-library/closure/goog/date/relative_test.html +0 -124
  217. data/closure-library/closure/goog/date/utcdatetime.js +0 -178
  218. data/closure-library/closure/goog/date/utcdatetime_test.html +0 -119
  219. data/closure-library/closure/goog/debug/console.js +0 -138
  220. data/closure-library/closure/goog/debug/debug.js +0 -452
  221. data/closure-library/closure/goog/debug/debug_test.html +0 -32
  222. data/closure-library/closure/goog/debug/debugwindow.js +0 -582
  223. data/closure-library/closure/goog/debug/devcss/devcss.js +0 -435
  224. data/closure-library/closure/goog/debug/devcss/devcss_test.html +0 -365
  225. data/closure-library/closure/goog/debug/devcss/devcssrunner.js +0 -26
  226. data/closure-library/closure/goog/debug/divconsole.js +0 -141
  227. data/closure-library/closure/goog/debug/enhanceerror_test.html +0 -138
  228. data/closure-library/closure/goog/debug/entrypointregistry.js +0 -111
  229. data/closure-library/closure/goog/debug/entrypointregistry_test.html +0 -63
  230. data/closure-library/closure/goog/debug/error.js +0 -47
  231. data/closure-library/closure/goog/debug/error_test.html +0 -85
  232. data/closure-library/closure/goog/debug/errorhandler.js +0 -234
  233. data/closure-library/closure/goog/debug/errorhandler_async_test.html +0 -112
  234. data/closure-library/closure/goog/debug/errorhandler_test.html +0 -186
  235. data/closure-library/closure/goog/debug/errorhandlerweakdep.js +0 -38
  236. data/closure-library/closure/goog/debug/errorreporter.js +0 -324
  237. data/closure-library/closure/goog/debug/errorreporter_test.html +0 -289
  238. data/closure-library/closure/goog/debug/fancywindow.js +0 -265
  239. data/closure-library/closure/goog/debug/formatter.js +0 -314
  240. data/closure-library/closure/goog/debug/gcdiagnostics.js +0 -143
  241. data/closure-library/closure/goog/debug/logbuffer.js +0 -147
  242. data/closure-library/closure/goog/debug/logbuffer_test.html +0 -105
  243. data/closure-library/closure/goog/debug/logger.js +0 -809
  244. data/closure-library/closure/goog/debug/logger_test.html +0 -208
  245. data/closure-library/closure/goog/debug/logrecord.js +0 -271
  246. data/closure-library/closure/goog/debug/reflect.js +0 -163
  247. data/closure-library/closure/goog/debug/reflect_test.html +0 -81
  248. data/closure-library/closure/goog/debug/relativetimeprovider.js +0 -83
  249. data/closure-library/closure/goog/debug/tracer.js +0 -750
  250. data/closure-library/closure/goog/debug/tracer_test.html +0 -57
  251. data/closure-library/closure/goog/demos/advancedtooltip.html +0 -78
  252. data/closure-library/closure/goog/demos/animationqueue.html +0 -149
  253. data/closure-library/closure/goog/demos/autocomplete-basic.html +0 -56
  254. data/closure-library/closure/goog/demos/autocompleteremote.html +0 -40
  255. data/closure-library/closure/goog/demos/autocompleteremotedata.js +0 -18
  256. data/closure-library/closure/goog/demos/autocompleterichremote.html +0 -137
  257. data/closure-library/closure/goog/demos/autocompleterichremotedata.js +0 -33
  258. data/closure-library/closure/goog/demos/bidiinput.html +0 -72
  259. data/closure-library/closure/goog/demos/bubble.html +0 -250
  260. data/closure-library/closure/goog/demos/button.html +0 -395
  261. data/closure-library/closure/goog/demos/charcounter.html +0 -57
  262. data/closure-library/closure/goog/demos/charpicker.html +0 -64
  263. data/closure-library/closure/goog/demos/checkbox.html +0 -122
  264. data/closure-library/closure/goog/demos/color-contrast.html +0 -60
  265. data/closure-library/closure/goog/demos/colormenubutton.html +0 -213
  266. data/closure-library/closure/goog/demos/colorpicker.html +0 -43
  267. data/closure-library/closure/goog/demos/combobox.html +0 -125
  268. data/closure-library/closure/goog/demos/container.html +0 -670
  269. data/closure-library/closure/goog/demos/control.html +0 -477
  270. data/closure-library/closure/goog/demos/css/demo.css +0 -75
  271. data/closure-library/closure/goog/demos/css/emojipicker.css +0 -36
  272. data/closure-library/closure/goog/demos/css/emojisprite.css +0 -92
  273. data/closure-library/closure/goog/demos/css3button.html +0 -166
  274. data/closure-library/closure/goog/demos/css3menubutton.html +0 -285
  275. data/closure-library/closure/goog/demos/cssspriteanimation.html +0 -80
  276. data/closure-library/closure/goog/demos/datepicker.html +0 -183
  277. data/closure-library/closure/goog/demos/debug.html +0 -119
  278. data/closure-library/closure/goog/demos/depsgraph.html +0 -221
  279. data/closure-library/closure/goog/demos/dialog.html +0 -156
  280. data/closure-library/closure/goog/demos/dimensionpicker.html +0 -108
  281. data/closure-library/closure/goog/demos/dimensionpicker_rtl.html +0 -123
  282. data/closure-library/closure/goog/demos/dom_selection.html +0 -88
  283. data/closure-library/closure/goog/demos/drag.html +0 -191
  284. data/closure-library/closure/goog/demos/dragdrop.html +0 -263
  285. data/closure-library/closure/goog/demos/dragdropdetector.html +0 -46
  286. data/closure-library/closure/goog/demos/dragdropdetector_target.html +0 -17
  287. data/closure-library/closure/goog/demos/dragger.html +0 -83
  288. data/closure-library/closure/goog/demos/draglistgroup.html +0 -261
  289. data/closure-library/closure/goog/demos/drilldownrow.html +0 -78
  290. data/closure-library/closure/goog/demos/editor/deps.js +0 -20
  291. data/closure-library/closure/goog/demos/editor/editor.html +0 -139
  292. data/closure-library/closure/goog/demos/editor/field_basic.html +0 -74
  293. data/closure-library/closure/goog/demos/editor/helloworld.html +0 -91
  294. data/closure-library/closure/goog/demos/editor/helloworld.js +0 -81
  295. data/closure-library/closure/goog/demos/editor/helloworld_test.html +0 -75
  296. data/closure-library/closure/goog/demos/editor/helloworlddialog.js +0 -163
  297. data/closure-library/closure/goog/demos/editor/helloworlddialog_test.html +0 -100
  298. data/closure-library/closure/goog/demos/editor/helloworlddialogplugin.js +0 -110
  299. data/closure-library/closure/goog/demos/editor/helloworlddialogplugin_test.html +0 -198
  300. data/closure-library/closure/goog/demos/editor/seamlessfield.html +0 -106
  301. data/closure-library/closure/goog/demos/effects.html +0 -142
  302. data/closure-library/closure/goog/demos/emoji/200.gif +0 -0
  303. data/closure-library/closure/goog/demos/emoji/201.gif +0 -0
  304. data/closure-library/closure/goog/demos/emoji/202.gif +0 -0
  305. data/closure-library/closure/goog/demos/emoji/203.gif +0 -0
  306. data/closure-library/closure/goog/demos/emoji/204.gif +0 -0
  307. data/closure-library/closure/goog/demos/emoji/205.gif +0 -0
  308. data/closure-library/closure/goog/demos/emoji/206.gif +0 -0
  309. data/closure-library/closure/goog/demos/emoji/2BC.gif +0 -0
  310. data/closure-library/closure/goog/demos/emoji/2BD.gif +0 -0
  311. data/closure-library/closure/goog/demos/emoji/2BE.gif +0 -0
  312. data/closure-library/closure/goog/demos/emoji/2BF.gif +0 -0
  313. data/closure-library/closure/goog/demos/emoji/2C0.gif +0 -0
  314. data/closure-library/closure/goog/demos/emoji/2C1.gif +0 -0
  315. data/closure-library/closure/goog/demos/emoji/2C2.gif +0 -0
  316. data/closure-library/closure/goog/demos/emoji/2C3.gif +0 -0
  317. data/closure-library/closure/goog/demos/emoji/2C4.gif +0 -0
  318. data/closure-library/closure/goog/demos/emoji/2C5.gif +0 -0
  319. data/closure-library/closure/goog/demos/emoji/2C6.gif +0 -0
  320. data/closure-library/closure/goog/demos/emoji/2C7.gif +0 -0
  321. data/closure-library/closure/goog/demos/emoji/2C8.gif +0 -0
  322. data/closure-library/closure/goog/demos/emoji/2C9.gif +0 -0
  323. data/closure-library/closure/goog/demos/emoji/2CA.gif +0 -0
  324. data/closure-library/closure/goog/demos/emoji/2CB.gif +0 -0
  325. data/closure-library/closure/goog/demos/emoji/2CC.gif +0 -0
  326. data/closure-library/closure/goog/demos/emoji/2CD.gif +0 -0
  327. data/closure-library/closure/goog/demos/emoji/2CE.gif +0 -0
  328. data/closure-library/closure/goog/demos/emoji/2CF.gif +0 -0
  329. data/closure-library/closure/goog/demos/emoji/2D0.gif +0 -0
  330. data/closure-library/closure/goog/demos/emoji/2D1.gif +0 -0
  331. data/closure-library/closure/goog/demos/emoji/2D2.gif +0 -0
  332. data/closure-library/closure/goog/demos/emoji/2D3.gif +0 -0
  333. data/closure-library/closure/goog/demos/emoji/2D4.gif +0 -0
  334. data/closure-library/closure/goog/demos/emoji/2D5.gif +0 -0
  335. data/closure-library/closure/goog/demos/emoji/2D6.gif +0 -0
  336. data/closure-library/closure/goog/demos/emoji/2D7.gif +0 -0
  337. data/closure-library/closure/goog/demos/emoji/2D8.gif +0 -0
  338. data/closure-library/closure/goog/demos/emoji/2D9.gif +0 -0
  339. data/closure-library/closure/goog/demos/emoji/2DA.gif +0 -0
  340. data/closure-library/closure/goog/demos/emoji/2DB.gif +0 -0
  341. data/closure-library/closure/goog/demos/emoji/2DC.gif +0 -0
  342. data/closure-library/closure/goog/demos/emoji/2DD.gif +0 -0
  343. data/closure-library/closure/goog/demos/emoji/2DE.gif +0 -0
  344. data/closure-library/closure/goog/demos/emoji/2DF.gif +0 -0
  345. data/closure-library/closure/goog/demos/emoji/2E0.gif +0 -0
  346. data/closure-library/closure/goog/demos/emoji/2E1.gif +0 -0
  347. data/closure-library/closure/goog/demos/emoji/2E2.gif +0 -0
  348. data/closure-library/closure/goog/demos/emoji/2E3.gif +0 -0
  349. data/closure-library/closure/goog/demos/emoji/2E4.gif +0 -0
  350. data/closure-library/closure/goog/demos/emoji/2E5.gif +0 -0
  351. data/closure-library/closure/goog/demos/emoji/2E6.gif +0 -0
  352. data/closure-library/closure/goog/demos/emoji/2E7.gif +0 -0
  353. data/closure-library/closure/goog/demos/emoji/2E8.gif +0 -0
  354. data/closure-library/closure/goog/demos/emoji/2E9.gif +0 -0
  355. data/closure-library/closure/goog/demos/emoji/2EA.gif +0 -0
  356. data/closure-library/closure/goog/demos/emoji/2EB.gif +0 -0
  357. data/closure-library/closure/goog/demos/emoji/2EC.gif +0 -0
  358. data/closure-library/closure/goog/demos/emoji/2ED.gif +0 -0
  359. data/closure-library/closure/goog/demos/emoji/2EE.gif +0 -0
  360. data/closure-library/closure/goog/demos/emoji/2EF.gif +0 -0
  361. data/closure-library/closure/goog/demos/emoji/2F0.gif +0 -0
  362. data/closure-library/closure/goog/demos/emoji/2F1.gif +0 -0
  363. data/closure-library/closure/goog/demos/emoji/2F2.gif +0 -0
  364. data/closure-library/closure/goog/demos/emoji/2F3.gif +0 -0
  365. data/closure-library/closure/goog/demos/emoji/2F4.gif +0 -0
  366. data/closure-library/closure/goog/demos/emoji/2F5.gif +0 -0
  367. data/closure-library/closure/goog/demos/emoji/2F6.gif +0 -0
  368. data/closure-library/closure/goog/demos/emoji/2F7.gif +0 -0
  369. data/closure-library/closure/goog/demos/emoji/2F8.gif +0 -0
  370. data/closure-library/closure/goog/demos/emoji/2F9.gif +0 -0
  371. data/closure-library/closure/goog/demos/emoji/2FA.gif +0 -0
  372. data/closure-library/closure/goog/demos/emoji/2FB.gif +0 -0
  373. data/closure-library/closure/goog/demos/emoji/2FC.gif +0 -0
  374. data/closure-library/closure/goog/demos/emoji/2FD.gif +0 -0
  375. data/closure-library/closure/goog/demos/emoji/2FE.gif +0 -0
  376. data/closure-library/closure/goog/demos/emoji/2FF.gif +0 -0
  377. data/closure-library/closure/goog/demos/emoji/none.gif +0 -0
  378. data/closure-library/closure/goog/demos/emoji/sprite.png +0 -0
  379. data/closure-library/closure/goog/demos/emoji/sprite2.png +0 -0
  380. data/closure-library/closure/goog/demos/emoji/unknown.gif +0 -0
  381. data/closure-library/closure/goog/demos/event-propagation.html +0 -192
  382. data/closure-library/closure/goog/demos/events.html +0 -99
  383. data/closure-library/closure/goog/demos/eventtarget.html +0 -70
  384. data/closure-library/closure/goog/demos/filedrophandler.html +0 -63
  385. data/closure-library/closure/goog/demos/filteredmenu.html +0 -118
  386. data/closure-library/closure/goog/demos/focushandler.html +0 -58
  387. data/closure-library/closure/goog/demos/gauge.html +0 -158
  388. data/closure-library/closure/goog/demos/graphics/advancedcoordinates.html +0 -141
  389. data/closure-library/closure/goog/demos/graphics/advancedcoordinates2.html +0 -130
  390. data/closure-library/closure/goog/demos/graphics/basicelements.html +0 -264
  391. data/closure-library/closure/goog/demos/graphics/events.html +0 -113
  392. data/closure-library/closure/goog/demos/graphics/modifyelements.html +0 -195
  393. data/closure-library/closure/goog/demos/graphics/subpixel.html +0 -80
  394. data/closure-library/closure/goog/demos/graphics/tiger.html +0 -105
  395. data/closure-library/closure/goog/demos/graphics/tigerdata.js +0 -2840
  396. data/closure-library/closure/goog/demos/history1.html +0 -132
  397. data/closure-library/closure/goog/demos/history2.html +0 -100
  398. data/closure-library/closure/goog/demos/history3.html +0 -106
  399. data/closure-library/closure/goog/demos/history3js.html +0 -36
  400. data/closure-library/closure/goog/demos/history_blank.html +0 -25
  401. data/closure-library/closure/goog/demos/hovercard.html +0 -177
  402. data/closure-library/closure/goog/demos/hsvapalette.html +0 -55
  403. data/closure-library/closure/goog/demos/hsvpalette.html +0 -56
  404. data/closure-library/closure/goog/demos/html5history.html +0 -87
  405. data/closure-library/closure/goog/demos/imagelessbutton.html +0 -221
  406. data/closure-library/closure/goog/demos/imagelessmenubutton.html +0 -285
  407. data/closure-library/closure/goog/demos/imagelessroundedcorner.html +0 -231
  408. data/closure-library/closure/goog/demos/index.html +0 -19
  409. data/closure-library/closure/goog/demos/index_nav.html +0 -253
  410. data/closure-library/closure/goog/demos/index_splash.html +0 -22
  411. data/closure-library/closure/goog/demos/inline_block_quirks.html +0 -125
  412. data/closure-library/closure/goog/demos/inline_block_standards.html +0 -126
  413. data/closure-library/closure/goog/demos/inputdatepicker.html +0 -60
  414. data/closure-library/closure/goog/demos/inputhandler.html +0 -72
  415. data/closure-library/closure/goog/demos/jsonprettyprinter.html +0 -80
  416. data/closure-library/closure/goog/demos/keyboardshortcuts.html +0 -112
  417. data/closure-library/closure/goog/demos/keyhandler.html +0 -127
  418. data/closure-library/closure/goog/demos/labelinput.html +0 -42
  419. data/closure-library/closure/goog/demos/menu.html +0 -220
  420. data/closure-library/closure/goog/demos/menubutton.html +0 -318
  421. data/closure-library/closure/goog/demos/mousewheelhandler.html +0 -109
  422. data/closure-library/closure/goog/demos/offline.html +0 -268
  423. data/closure-library/closure/goog/demos/onlinehandler.html +0 -77
  424. data/closure-library/closure/goog/demos/palette.html +0 -302
  425. data/closure-library/closure/goog/demos/pastehandler.html +0 -54
  426. data/closure-library/closure/goog/demos/plaintextspellchecker.html +0 -106
  427. data/closure-library/closure/goog/demos/popup.html +0 -200
  428. data/closure-library/closure/goog/demos/popupcolorpicker.html +0 -49
  429. data/closure-library/closure/goog/demos/popupdatepicker.html +0 -53
  430. data/closure-library/closure/goog/demos/popupemojipicker.html +0 -407
  431. data/closure-library/closure/goog/demos/popupmenu.html +0 -89
  432. data/closure-library/closure/goog/demos/progressbar.html +0 -97
  433. data/closure-library/closure/goog/demos/prompt.html +0 -92
  434. data/closure-library/closure/goog/demos/quadtree.html +0 -107
  435. data/closure-library/closure/goog/demos/ratings.html +0 -120
  436. data/closure-library/closure/goog/demos/richtextspellchecker.html +0 -92
  437. data/closure-library/closure/goog/demos/roundedpanel.html +0 -139
  438. data/closure-library/closure/goog/demos/samplecomponent.html +0 -75
  439. data/closure-library/closure/goog/demos/samplecomponent.js +0 -206
  440. data/closure-library/closure/goog/demos/scrollfloater.html +0 -117
  441. data/closure-library/closure/goog/demos/select.html +0 -324
  442. data/closure-library/closure/goog/demos/selectionmenubutton.html +0 -186
  443. data/closure-library/closure/goog/demos/serverchart.html +0 -122
  444. data/closure-library/closure/goog/demos/silverlightclipboardbutton.html +0 -71
  445. data/closure-library/closure/goog/demos/slider.html +0 -110
  446. data/closure-library/closure/goog/demos/splitbehavior.html +0 -164
  447. data/closure-library/closure/goog/demos/splitpane.html +0 -243
  448. data/closure-library/closure/goog/demos/stopevent.html +0 -171
  449. data/closure-library/closure/goog/demos/submenus.html +0 -130
  450. data/closure-library/closure/goog/demos/submenus2.html +0 -150
  451. data/closure-library/closure/goog/demos/tabbar.html +0 -289
  452. data/closure-library/closure/goog/demos/tablesorter.html +0 -116
  453. data/closure-library/closure/goog/demos/tabpane.html +0 -302
  454. data/closure-library/closure/goog/demos/textarea.html +0 -128
  455. data/closure-library/closure/goog/demos/timers.html +0 -291
  456. data/closure-library/closure/goog/demos/toolbar.html +0 -703
  457. data/closure-library/closure/goog/demos/tooltip.html +0 -91
  458. data/closure-library/closure/goog/demos/tracer.html +0 -92
  459. data/closure-library/closure/goog/demos/tree/demo.html +0 -126
  460. data/closure-library/closure/goog/demos/tree/testdata.js +0 -260
  461. data/closure-library/closure/goog/demos/tweakui.html +0 -121
  462. data/closure-library/closure/goog/demos/twothumbslider.html +0 -121
  463. data/closure-library/closure/goog/demos/useragent.html +0 -173
  464. data/closure-library/closure/goog/demos/viewportsizemonitor.html +0 -71
  465. data/closure-library/closure/goog/demos/xpc/blank.html +0 -7
  466. data/closure-library/closure/goog/demos/xpc/index.html +0 -89
  467. data/closure-library/closure/goog/demos/xpc/inner.html +0 -58
  468. data/closure-library/closure/goog/demos/xpc/minimal/blank.html +0 -7
  469. data/closure-library/closure/goog/demos/xpc/minimal/index.html +0 -105
  470. data/closure-library/closure/goog/demos/xpc/minimal/inner.html +0 -75
  471. data/closure-library/closure/goog/demos/xpc/minimal/relay.html +0 -7
  472. data/closure-library/closure/goog/demos/xpc/relay.html +0 -7
  473. data/closure-library/closure/goog/demos/xpc/xpcdemo.js +0 -304
  474. data/closure-library/closure/goog/demos/zippy.html +0 -127
  475. data/closure-library/closure/goog/deps.js +0 -679
  476. data/closure-library/closure/goog/disposable/disposable.js +0 -167
  477. data/closure-library/closure/goog/disposable/disposable_test.html +0 -202
  478. data/closure-library/closure/goog/dom/a11y.js +0 -438
  479. data/closure-library/closure/goog/dom/a11y_test.html +0 -86
  480. data/closure-library/closure/goog/dom/abstractmultirange.js +0 -77
  481. data/closure-library/closure/goog/dom/abstractrange.js +0 -514
  482. data/closure-library/closure/goog/dom/abstractrange_test.html +0 -73
  483. data/closure-library/closure/goog/dom/annotate.js +0 -352
  484. data/closure-library/closure/goog/dom/annotate_test.html +0 -187
  485. data/closure-library/closure/goog/dom/browserfeature.js +0 -50
  486. data/closure-library/closure/goog/dom/browserrange/abstractrange.js +0 -316
  487. data/closure-library/closure/goog/dom/browserrange/browserrange.js +0 -149
  488. data/closure-library/closure/goog/dom/browserrange/browserrange_test.html +0 -562
  489. data/closure-library/closure/goog/dom/browserrange/geckorange.js +0 -82
  490. data/closure-library/closure/goog/dom/browserrange/ierange.js +0 -970
  491. data/closure-library/closure/goog/dom/browserrange/operarange.js +0 -83
  492. data/closure-library/closure/goog/dom/browserrange/w3crange.js +0 -364
  493. data/closure-library/closure/goog/dom/browserrange/webkitrange.js +0 -112
  494. data/closure-library/closure/goog/dom/classes.js +0 -233
  495. data/closure-library/closure/goog/dom/classes_test.html +0 -228
  496. data/closure-library/closure/goog/dom/controlrange.js +0 -511
  497. data/closure-library/closure/goog/dom/controlrange_test.html +0 -246
  498. data/closure-library/closure/goog/dom/dataset.js +0 -90
  499. data/closure-library/closure/goog/dom/dataset_test.html +0 -104
  500. data/closure-library/closure/goog/dom/dom.js +0 -2424
  501. data/closure-library/closure/goog/dom/dom_quirks_test.html +0 -104
  502. data/closure-library/closure/goog/dom/dom_test.html +0 -103
  503. data/closure-library/closure/goog/dom/dom_test.js +0 -1129
  504. data/closure-library/closure/goog/dom/fontsizemonitor.js +0 -159
  505. data/closure-library/closure/goog/dom/fontsizemonitor_test.html +0 -283
  506. data/closure-library/closure/goog/dom/forms.js +0 -403
  507. data/closure-library/closure/goog/dom/forms_test.html +0 -483
  508. data/closure-library/closure/goog/dom/iframe.js +0 -128
  509. data/closure-library/closure/goog/dom/iframe_test.html +0 -87
  510. data/closure-library/closure/goog/dom/iter.js +0 -127
  511. data/closure-library/closure/goog/dom/iter_test.html +0 -97
  512. data/closure-library/closure/goog/dom/multirange.js +0 -519
  513. data/closure-library/closure/goog/dom/multirange_test.html +0 -67
  514. data/closure-library/closure/goog/dom/nodeiterator.js +0 -85
  515. data/closure-library/closure/goog/dom/nodeiterator_test.html +0 -49
  516. data/closure-library/closure/goog/dom/nodeoffset.js +0 -111
  517. data/closure-library/closure/goog/dom/nodeoffset_test.html +0 -88
  518. data/closure-library/closure/goog/dom/pattern/abstractpattern.js +0 -60
  519. data/closure-library/closure/goog/dom/pattern/allchildren.js +0 -73
  520. data/closure-library/closure/goog/dom/pattern/callback/callback.js +0 -82
  521. data/closure-library/closure/goog/dom/pattern/callback/counter.js +0 -72
  522. data/closure-library/closure/goog/dom/pattern/callback/test.js +0 -77
  523. data/closure-library/closure/goog/dom/pattern/childmatches.js +0 -152
  524. data/closure-library/closure/goog/dom/pattern/endtag.js +0 -53
  525. data/closure-library/closure/goog/dom/pattern/fulltag.js +0 -92
  526. data/closure-library/closure/goog/dom/pattern/matcher.js +0 -150
  527. data/closure-library/closure/goog/dom/pattern/matcher_test.html +0 -204
  528. data/closure-library/closure/goog/dom/pattern/nodetype.js +0 -57
  529. data/closure-library/closure/goog/dom/pattern/pattern.js +0 -93
  530. data/closure-library/closure/goog/dom/pattern/pattern_test.html +0 -614
  531. data/closure-library/closure/goog/dom/pattern/repeat.js +0 -188
  532. data/closure-library/closure/goog/dom/pattern/sequence.js +0 -139
  533. data/closure-library/closure/goog/dom/pattern/starttag.js +0 -53
  534. data/closure-library/closure/goog/dom/pattern/tag.js +0 -149
  535. data/closure-library/closure/goog/dom/pattern/text.js +0 -69
  536. data/closure-library/closure/goog/dom/range.js +0 -220
  537. data/closure-library/closure/goog/dom/range_test.html +0 -702
  538. data/closure-library/closure/goog/dom/rangeendpoint.js +0 -32
  539. data/closure-library/closure/goog/dom/savedcaretrange.js +0 -203
  540. data/closure-library/closure/goog/dom/savedcaretrange_test.html +0 -235
  541. data/closure-library/closure/goog/dom/savedrange.js +0 -74
  542. data/closure-library/closure/goog/dom/savedrange_test.html +0 -61
  543. data/closure-library/closure/goog/dom/selection.js +0 -470
  544. data/closure-library/closure/goog/dom/selection_test.html +0 -329
  545. data/closure-library/closure/goog/dom/tagiterator.js +0 -365
  546. data/closure-library/closure/goog/dom/tagiterator_test.html +0 -589
  547. data/closure-library/closure/goog/dom/tagname.js +0 -121
  548. data/closure-library/closure/goog/dom/tagname_test.html +0 -37
  549. data/closure-library/closure/goog/dom/textrange.js +0 -611
  550. data/closure-library/closure/goog/dom/textrange_test.html +0 -127
  551. data/closure-library/closure/goog/dom/textrangeiterator.js +0 -246
  552. data/closure-library/closure/goog/dom/textrangeiterator_test.html +0 -142
  553. data/closure-library/closure/goog/dom/viewportsizemonitor.js +0 -220
  554. data/closure-library/closure/goog/dom/viewportsizemonitor_test.html +0 -166
  555. data/closure-library/closure/goog/dom/xml.js +0 -187
  556. data/closure-library/closure/goog/dom/xml_test.html +0 -77
  557. data/closure-library/closure/goog/editor/browserfeature.js +0 -251
  558. data/closure-library/closure/goog/editor/browserfeature_test.html +0 -124
  559. data/closure-library/closure/goog/editor/clicktoeditwrapper.js +0 -438
  560. data/closure-library/closure/goog/editor/clicktoeditwrapper_test.html +0 -137
  561. data/closure-library/closure/goog/editor/command.js +0 -74
  562. data/closure-library/closure/goog/editor/defines.js +0 -34
  563. data/closure-library/closure/goog/editor/field.js +0 -2594
  564. data/closure-library/closure/goog/editor/field_test.html +0 -1000
  565. data/closure-library/closure/goog/editor/focus.js +0 -32
  566. data/closure-library/closure/goog/editor/focus_test.html +0 -66
  567. data/closure-library/closure/goog/editor/icontent.js +0 -296
  568. data/closure-library/closure/goog/editor/icontent_test.html +0 -209
  569. data/closure-library/closure/goog/editor/link.js +0 -279
  570. data/closure-library/closure/goog/editor/link_test.html +0 -234
  571. data/closure-library/closure/goog/editor/node.js +0 -435
  572. data/closure-library/closure/goog/editor/node_test.html +0 -590
  573. data/closure-library/closure/goog/editor/plugin.js +0 -444
  574. data/closure-library/closure/goog/editor/plugin_test.html +0 -187
  575. data/closure-library/closure/goog/editor/plugins/abstractbubbleplugin.js +0 -535
  576. data/closure-library/closure/goog/editor/plugins/abstractbubbleplugin_test.html +0 -227
  577. data/closure-library/closure/goog/editor/plugins/abstractdialogplugin.js +0 -336
  578. data/closure-library/closure/goog/editor/plugins/abstractdialogplugin_test.html +0 -399
  579. data/closure-library/closure/goog/editor/plugins/abstracttabhandler.js +0 -78
  580. data/closure-library/closure/goog/editor/plugins/abstracttabhandler_test.html +0 -91
  581. data/closure-library/closure/goog/editor/plugins/basictextformatter.js +0 -1740
  582. data/closure-library/closure/goog/editor/plugins/basictextformatter_test.html +0 -1171
  583. data/closure-library/closure/goog/editor/plugins/blockquote.js +0 -422
  584. data/closure-library/closure/goog/editor/plugins/blockquote_test.html +0 -149
  585. data/closure-library/closure/goog/editor/plugins/emoticons.js +0 -83
  586. data/closure-library/closure/goog/editor/plugins/emoticons_test.html +0 -67
  587. data/closure-library/closure/goog/editor/plugins/enterhandler.js +0 -730
  588. data/closure-library/closure/goog/editor/plugins/enterhandler_test.html +0 -739
  589. data/closure-library/closure/goog/editor/plugins/headerformatter.js +0 -95
  590. data/closure-library/closure/goog/editor/plugins/headerformatter_test.html +0 -100
  591. data/closure-library/closure/goog/editor/plugins/linkbubble.js +0 -458
  592. data/closure-library/closure/goog/editor/plugins/linkbubble_test.html +0 -309
  593. data/closure-library/closure/goog/editor/plugins/linkdialogplugin.js +0 -222
  594. data/closure-library/closure/goog/editor/plugins/linkdialogplugin_test.html +0 -370
  595. data/closure-library/closure/goog/editor/plugins/listtabhandler.js +0 -66
  596. data/closure-library/closure/goog/editor/plugins/listtabhandler_test.html +0 -177
  597. data/closure-library/closure/goog/editor/plugins/loremipsum.js +0 -186
  598. data/closure-library/closure/goog/editor/plugins/loremipsum_test.html +0 -169
  599. data/closure-library/closure/goog/editor/plugins/removeformatting.js +0 -772
  600. data/closure-library/closure/goog/editor/plugins/removeformatting_test.html +0 -920
  601. data/closure-library/closure/goog/editor/plugins/spacestabhandler.js +0 -93
  602. data/closure-library/closure/goog/editor/plugins/spacestabhandler_test.html +0 -186
  603. data/closure-library/closure/goog/editor/plugins/tableeditor.js +0 -496
  604. data/closure-library/closure/goog/editor/plugins/tableeditor_test.html +0 -299
  605. data/closure-library/closure/goog/editor/plugins/tagonenterhandler.js +0 -741
  606. data/closure-library/closure/goog/editor/plugins/tagonenterhandler_test.html +0 -481
  607. data/closure-library/closure/goog/editor/plugins/undoredo.js +0 -1014
  608. data/closure-library/closure/goog/editor/plugins/undoredo_test.html +0 -525
  609. data/closure-library/closure/goog/editor/plugins/undoredomanager.js +0 -337
  610. data/closure-library/closure/goog/editor/plugins/undoredomanager_test.html +0 -394
  611. data/closure-library/closure/goog/editor/plugins/undoredostate.js +0 -84
  612. data/closure-library/closure/goog/editor/plugins/undoredostate_test.html +0 -44
  613. data/closure-library/closure/goog/editor/range.js +0 -602
  614. data/closure-library/closure/goog/editor/range_test.html +0 -880
  615. data/closure-library/closure/goog/editor/seamlessfield.js +0 -720
  616. data/closure-library/closure/goog/editor/seamlessfield_quirks_test.html +0 -30
  617. data/closure-library/closure/goog/editor/seamlessfield_test.html +0 -33
  618. data/closure-library/closure/goog/editor/seamlessfield_test.js +0 -392
  619. data/closure-library/closure/goog/editor/style.js +0 -222
  620. data/closure-library/closure/goog/editor/style_test.html +0 -177
  621. data/closure-library/closure/goog/editor/table.js +0 -566
  622. data/closure-library/closure/goog/editor/table_test.html +0 -522
  623. data/closure-library/closure/goog/events/actioneventwrapper.js +0 -131
  624. data/closure-library/closure/goog/events/actioneventwrapper_test.html +0 -176
  625. data/closure-library/closure/goog/events/actionhandler.js +0 -189
  626. data/closure-library/closure/goog/events/actionhandler_test.html +0 -82
  627. data/closure-library/closure/goog/events/browserevent.js +0 -412
  628. data/closure-library/closure/goog/events/browserevent_test.html +0 -145
  629. data/closure-library/closure/goog/events/browserfeature.js +0 -43
  630. data/closure-library/closure/goog/events/event.js +0 -123
  631. data/closure-library/closure/goog/events/event_test.html +0 -70
  632. data/closure-library/closure/goog/events/eventhandler.js +0 -348
  633. data/closure-library/closure/goog/events/eventhandler_test.html +0 -230
  634. data/closure-library/closure/goog/events/events.js +0 -1101
  635. data/closure-library/closure/goog/events/events_test.html +0 -362
  636. data/closure-library/closure/goog/events/eventtarget.js +0 -197
  637. data/closure-library/closure/goog/events/eventtarget_test.html +0 -423
  638. data/closure-library/closure/goog/events/eventtype.js +0 -107
  639. data/closure-library/closure/goog/events/eventwrapper.js +0 -67
  640. data/closure-library/closure/goog/events/filedrophandler.js +0 -224
  641. data/closure-library/closure/goog/events/filedrophandler_test.html +0 -258
  642. data/closure-library/closure/goog/events/focushandler.js +0 -111
  643. data/closure-library/closure/goog/events/imehandler.js +0 -365
  644. data/closure-library/closure/goog/events/imehandler_test.html +0 -271
  645. data/closure-library/closure/goog/events/inputhandler.js +0 -218
  646. data/closure-library/closure/goog/events/keycodes.js +0 -314
  647. data/closure-library/closure/goog/events/keycodes_test.html +0 -72
  648. data/closure-library/closure/goog/events/keyhandler.js +0 -522
  649. data/closure-library/closure/goog/events/keyhandler_test.html +0 -621
  650. data/closure-library/closure/goog/events/keynames.js +0 -124
  651. data/closure-library/closure/goog/events/listener.js +0 -160
  652. data/closure-library/closure/goog/events/mousewheelhandler.js +0 -280
  653. data/closure-library/closure/goog/events/mousewheelhandler_test.html +0 -331
  654. data/closure-library/closure/goog/events/onlinehandler.js +0 -176
  655. data/closure-library/closure/goog/events/onlinelistener_test.html +0 -214
  656. data/closure-library/closure/goog/events/pastehandler.js +0 -444
  657. data/closure-library/closure/goog/events/pastehandler_test.html +0 -354
  658. data/closure-library/closure/goog/events/pools.js +0 -342
  659. data/closure-library/closure/goog/format/emailaddress.js +0 -329
  660. data/closure-library/closure/goog/format/emailaddress_test.html +0 -179
  661. data/closure-library/closure/goog/format/format.js +0 -451
  662. data/closure-library/closure/goog/format/format_test.html +0 -257
  663. data/closure-library/closure/goog/format/htmlprettyprinter.js +0 -406
  664. data/closure-library/closure/goog/format/htmlprettyprinter_test.html +0 -205
  665. data/closure-library/closure/goog/format/jsonprettyprinter.js +0 -405
  666. data/closure-library/closure/goog/format/jsonprettyprinter_test.html +0 -111
  667. data/closure-library/closure/goog/fs/entry.js +0 -406
  668. data/closure-library/closure/goog/fs/error.js +0 -103
  669. data/closure-library/closure/goog/fs/filesaver.js +0 -214
  670. data/closure-library/closure/goog/fs/filesystem.js +0 -59
  671. data/closure-library/closure/goog/fs/filewriter.js +0 -106
  672. data/closure-library/closure/goog/fs/fs.js +0 -183
  673. data/closure-library/closure/goog/fs/fs_test.html +0 -270
  674. data/closure-library/closure/goog/functions/functions.js +0 -219
  675. data/closure-library/closure/goog/functions/functions_test.html +0 -198
  676. data/closure-library/closure/goog/fx/abstractdragdrop.js +0 -1451
  677. data/closure-library/closure/goog/fx/abstractdragdrop_test.html +0 -430
  678. data/closure-library/closure/goog/fx/animation.js +0 -621
  679. data/closure-library/closure/goog/fx/animationqueue.js +0 -348
  680. data/closure-library/closure/goog/fx/cssspriteanimation.js +0 -112
  681. data/closure-library/closure/goog/fx/cssspriteanimation_test.html +0 -125
  682. data/closure-library/closure/goog/fx/dom.js +0 -610
  683. data/closure-library/closure/goog/fx/dragdrop.js +0 -49
  684. data/closure-library/closure/goog/fx/dragdropgroup.js +0 -107
  685. data/closure-library/closure/goog/fx/dragdropgroup_test.html +0 -234
  686. data/closure-library/closure/goog/fx/dragger.js +0 -731
  687. data/closure-library/closure/goog/fx/dragger_test.html +0 -415
  688. data/closure-library/closure/goog/fx/draglistgroup.js +0 -1159
  689. data/closure-library/closure/goog/fx/draglistgroup_test.html +0 -231
  690. data/closure-library/closure/goog/fx/dragscrollsupport.js +0 -274
  691. data/closure-library/closure/goog/fx/dragscrollsupport_test.html +0 -253
  692. data/closure-library/closure/goog/fx/easing.js +0 -50
  693. data/closure-library/closure/goog/fx/fx.js +0 -30
  694. data/closure-library/closure/goog/fx/fx_test.html +0 -157
  695. data/closure-library/closure/goog/gears/basestore.js +0 -523
  696. data/closure-library/closure/goog/gears/basestore_test.html +0 -247
  697. data/closure-library/closure/goog/gears/database.js +0 -935
  698. data/closure-library/closure/goog/gears/database_test.html +0 -699
  699. data/closure-library/closure/goog/gears/fakeworkerpool.js +0 -252
  700. data/closure-library/closure/goog/gears/fakeworkerpool_test.html +0 -188
  701. data/closure-library/closure/goog/gears/gears.js +0 -228
  702. data/closure-library/closure/goog/gears/gears_test.html +0 -78
  703. data/closure-library/closure/goog/gears/httprequest.js +0 -77
  704. data/closure-library/closure/goog/gears/loggerclient.js +0 -131
  705. data/closure-library/closure/goog/gears/loggerclient_test.html +0 -171
  706. data/closure-library/closure/goog/gears/loggerserver.js +0 -158
  707. data/closure-library/closure/goog/gears/loggerserver_test.html +0 -118
  708. data/closure-library/closure/goog/gears/logstore.js +0 -479
  709. data/closure-library/closure/goog/gears/logstore_test.html +0 -600
  710. data/closure-library/closure/goog/gears/managedresourcestore.js +0 -553
  711. data/closure-library/closure/goog/gears/managedresourcestore_test.html +0 -453
  712. data/closure-library/closure/goog/gears/multipartformdata.js +0 -203
  713. data/closure-library/closure/goog/gears/multipartformdata_test.html +0 -220
  714. data/closure-library/closure/goog/gears/statustype.js +0 -37
  715. data/closure-library/closure/goog/gears/urlcapture.js +0 -370
  716. data/closure-library/closure/goog/gears/urlcapture_test.html +0 -392
  717. data/closure-library/closure/goog/gears/worker.js +0 -201
  718. data/closure-library/closure/goog/gears/workerchannel.js +0 -205
  719. data/closure-library/closure/goog/gears/workerchannel_test.html +0 -207
  720. data/closure-library/closure/goog/gears/workerpool.js +0 -241
  721. data/closure-library/closure/goog/gears/workerpool_test.html +0 -203
  722. data/closure-library/closure/goog/graphics/abstractgraphics.js +0 -439
  723. data/closure-library/closure/goog/graphics/affinetransform.js +0 -497
  724. data/closure-library/closure/goog/graphics/affinetransform_test.html +0 -316
  725. data/closure-library/closure/goog/graphics/canvaselement.js +0 -776
  726. data/closure-library/closure/goog/graphics/canvasgraphics.js +0 -632
  727. data/closure-library/closure/goog/graphics/element.js +0 -145
  728. data/closure-library/closure/goog/graphics/ellipseelement.js +0 -59
  729. data/closure-library/closure/goog/graphics/ext/coordinates.js +0 -158
  730. data/closure-library/closure/goog/graphics/ext/coordinates_test.html +0 -74
  731. data/closure-library/closure/goog/graphics/ext/element.js +0 -970
  732. data/closure-library/closure/goog/graphics/ext/element_test.html +0 -144
  733. data/closure-library/closure/goog/graphics/ext/ellipse.js +0 -58
  734. data/closure-library/closure/goog/graphics/ext/ext.js +0 -29
  735. data/closure-library/closure/goog/graphics/ext/graphics.js +0 -209
  736. data/closure-library/closure/goog/graphics/ext/group.js +0 -213
  737. data/closure-library/closure/goog/graphics/ext/image.js +0 -62
  738. data/closure-library/closure/goog/graphics/ext/path.js +0 -140
  739. data/closure-library/closure/goog/graphics/ext/path_test.html +0 -46
  740. data/closure-library/closure/goog/graphics/ext/rectangle.js +0 -53
  741. data/closure-library/closure/goog/graphics/ext/shape.js +0 -144
  742. data/closure-library/closure/goog/graphics/ext/strokeandfillelement.js +0 -69
  743. data/closure-library/closure/goog/graphics/fill.js +0 -29
  744. data/closure-library/closure/goog/graphics/font.js +0 -59
  745. data/closure-library/closure/goog/graphics/graphics.js +0 -124
  746. data/closure-library/closure/goog/graphics/groupelement.js +0 -54
  747. data/closure-library/closure/goog/graphics/imageelement.js +0 -67
  748. data/closure-library/closure/goog/graphics/lineargradient.js +0 -131
  749. data/closure-library/closure/goog/graphics/path.js +0 -508
  750. data/closure-library/closure/goog/graphics/path_test.html +0 -359
  751. data/closure-library/closure/goog/graphics/pathelement.js +0 -50
  752. data/closure-library/closure/goog/graphics/paths.js +0 -86
  753. data/closure-library/closure/goog/graphics/paths_test.html +0 -97
  754. data/closure-library/closure/goog/graphics/rectelement.js +0 -59
  755. data/closure-library/closure/goog/graphics/solidfill.js +0 -70
  756. data/closure-library/closure/goog/graphics/stroke.js +0 -63
  757. data/closure-library/closure/goog/graphics/strokeandfillelement.js +0 -110
  758. data/closure-library/closure/goog/graphics/svgelement.js +0 -262
  759. data/closure-library/closure/goog/graphics/svggraphics.js +0 -813
  760. data/closure-library/closure/goog/graphics/textelement.js +0 -51
  761. data/closure-library/closure/goog/graphics/vmlelement.js +0 -380
  762. data/closure-library/closure/goog/graphics/vmlgraphics.js +0 -863
  763. data/closure-library/closure/goog/history/event.js +0 -54
  764. data/closure-library/closure/goog/history/eventtype.js +0 -30
  765. data/closure-library/closure/goog/history/history.js +0 -979
  766. data/closure-library/closure/goog/history/html5history.js +0 -303
  767. data/closure-library/closure/goog/history/html5history_test.html +0 -163
  768. data/closure-library/closure/goog/i18n/bidi.js +0 -772
  769. data/closure-library/closure/goog/i18n/bidi_test.html +0 -414
  770. data/closure-library/closure/goog/i18n/bidiformatter.js +0 -488
  771. data/closure-library/closure/goog/i18n/bidiformatter_test.html +0 -343
  772. data/closure-library/closure/goog/i18n/charlistdecompressor.js +0 -157
  773. data/closure-library/closure/goog/i18n/charlistdecompressor_test.html +0 -65
  774. data/closure-library/closure/goog/i18n/charpickerdata.js +0 -3185
  775. data/closure-library/closure/goog/i18n/currency.js +0 -385
  776. data/closure-library/closure/goog/i18n/currency_test.html +0 -202
  777. data/closure-library/closure/goog/i18n/currencycodemap.js +0 -210
  778. data/closure-library/closure/goog/i18n/datetimeformat.js +0 -636
  779. data/closure-library/closure/goog/i18n/datetimeformat_test.html +0 -436
  780. data/closure-library/closure/goog/i18n/datetimeparse.js +0 -1111
  781. data/closure-library/closure/goog/i18n/datetimeparse_test.html +0 -796
  782. data/closure-library/closure/goog/i18n/datetimepatterns.js +0 -1586
  783. data/closure-library/closure/goog/i18n/datetimepatternsext.js +0 -7386
  784. data/closure-library/closure/goog/i18n/datetimesymbols.js +0 -3350
  785. data/closure-library/closure/goog/i18n/datetimesymbolsext.js +0 -12938
  786. data/closure-library/closure/goog/i18n/graphemebreak.js +0 -181
  787. data/closure-library/closure/goog/i18n/graphemebreak_test.html +0 -72
  788. data/closure-library/closure/goog/i18n/messageformat.js +0 -556
  789. data/closure-library/closure/goog/i18n/messageformat_test.html +0 -334
  790. data/closure-library/closure/goog/i18n/mime.js +0 -100
  791. data/closure-library/closure/goog/i18n/mime_test.html +0 -51
  792. data/closure-library/closure/goog/i18n/numberformat.js +0 -763
  793. data/closure-library/closure/goog/i18n/numberformat_test.html +0 -605
  794. data/closure-library/closure/goog/i18n/numberformatsymbols.js +0 -10358
  795. data/closure-library/closure/goog/i18n/pluralrules.js +0 -695
  796. data/closure-library/closure/goog/i18n/timezone.js +0 -341
  797. data/closure-library/closure/goog/i18n/timezone_test.html +0 -163
  798. data/closure-library/closure/goog/i18n/uchar.js +0 -1160
  799. data/closure-library/closure/goog/i18n/uchar_test.html +0 -72
  800. data/closure-library/closure/goog/images/blank.gif +0 -0
  801. data/closure-library/closure/goog/images/bubble_close.jpg +0 -0
  802. data/closure-library/closure/goog/images/bubble_left.gif +0 -0
  803. data/closure-library/closure/goog/images/bubble_right.gif +0 -0
  804. data/closure-library/closure/goog/images/button-bg.gif +0 -0
  805. data/closure-library/closure/goog/images/check-outline.gif +0 -0
  806. data/closure-library/closure/goog/images/check-sprite.gif +0 -0
  807. data/closure-library/closure/goog/images/check.gif +0 -0
  808. data/closure-library/closure/goog/images/close_box.gif +0 -0
  809. data/closure-library/closure/goog/images/color-swatch-tick.gif +0 -0
  810. data/closure-library/closure/goog/images/dialog_close_box.gif +0 -0
  811. data/closure-library/closure/goog/images/dimension-highlighted.png +0 -0
  812. data/closure-library/closure/goog/images/dimension-unhighlighted.png +0 -0
  813. data/closure-library/closure/goog/images/dropdn.gif +0 -0
  814. data/closure-library/closure/goog/images/dropdn_disabled.gif +0 -0
  815. data/closure-library/closure/goog/images/dropdown.gif +0 -0
  816. data/closure-library/closure/goog/images/gears_bluedot.gif +0 -0
  817. data/closure-library/closure/goog/images/gears_offline.gif +0 -0
  818. data/closure-library/closure/goog/images/gears_online.gif +0 -0
  819. data/closure-library/closure/goog/images/gears_paused.gif +0 -0
  820. data/closure-library/closure/goog/images/gears_syncing.gif +0 -0
  821. data/closure-library/closure/goog/images/hsv-sprite-sm.gif +0 -0
  822. data/closure-library/closure/goog/images/hsv-sprite-sm.png +0 -0
  823. data/closure-library/closure/goog/images/hsv-sprite.gif +0 -0
  824. data/closure-library/closure/goog/images/hsv-sprite.png +0 -0
  825. data/closure-library/closure/goog/images/hsva-sprite-sm.gif +0 -0
  826. data/closure-library/closure/goog/images/hsva-sprite-sm.png +0 -0
  827. data/closure-library/closure/goog/images/hsva-sprite.gif +0 -0
  828. data/closure-library/closure/goog/images/hsva-sprite.png +0 -0
  829. data/closure-library/closure/goog/images/left_anchor_bubble_bot.gif +0 -0
  830. data/closure-library/closure/goog/images/left_anchor_bubble_top.gif +0 -0
  831. data/closure-library/closure/goog/images/menu-arrows.gif +0 -0
  832. data/closure-library/closure/goog/images/minus.png +0 -0
  833. data/closure-library/closure/goog/images/no_anchor_bubble_bot.gif +0 -0
  834. data/closure-library/closure/goog/images/no_anchor_bubble_top.gif +0 -0
  835. data/closure-library/closure/goog/images/offlineicons.png +0 -0
  836. data/closure-library/closure/goog/images/plus.png +0 -0
  837. data/closure-library/closure/goog/images/ratingstars.gif +0 -0
  838. data/closure-library/closure/goog/images/right_anchor_bubble_bot.gif +0 -0
  839. data/closure-library/closure/goog/images/right_anchor_bubble_top.gif +0 -0
  840. data/closure-library/closure/goog/images/toolbar-bg.png +0 -0
  841. data/closure-library/closure/goog/images/toolbar-separator.gif +0 -0
  842. data/closure-library/closure/goog/images/toolbar_icons.gif +0 -0
  843. data/closure-library/closure/goog/images/tree/I.png +0 -0
  844. data/closure-library/closure/goog/images/tree/cleardot.gif +0 -0
  845. data/closure-library/closure/goog/images/tree/tree.gif +0 -0
  846. data/closure-library/closure/goog/images/tree/tree.png +0 -0
  847. data/closure-library/closure/goog/images/ui_controls.jpg +0 -0
  848. data/closure-library/closure/goog/iter/iter.js +0 -627
  849. data/closure-library/closure/goog/iter/iter_test.html +0 -443
  850. data/closure-library/closure/goog/json/json.js +0 -302
  851. data/closure-library/closure/goog/json/json_test.html +0 -501
  852. data/closure-library/closure/goog/locale/countries.js +0 -288
  853. data/closure-library/closure/goog/locale/countrylanguagenames_test.html +0 -233
  854. data/closure-library/closure/goog/locale/defaultlocalenameconstants.js +0 -847
  855. data/closure-library/closure/goog/locale/genericfontnames.js +0 -73
  856. data/closure-library/closure/goog/locale/genericfontnames_test.html +0 -97
  857. data/closure-library/closure/goog/locale/genericfontnamesdata.js +0 -328
  858. data/closure-library/closure/goog/locale/locale.js +0 -397
  859. data/closure-library/closure/goog/locale/nativenameconstants.js +0 -1354
  860. data/closure-library/closure/goog/locale/scriptToLanguages.js +0 -482
  861. data/closure-library/closure/goog/locale/timezonedetection.js +0 -117
  862. data/closure-library/closure/goog/locale/timezonedetection_test.html +0 -130
  863. data/closure-library/closure/goog/locale/timezonefingerprint.js +0 -250
  864. data/closure-library/closure/goog/locale/timezonelist.js +0 -129
  865. data/closure-library/closure/goog/locale/timezonelist_test.html +0 -165
  866. data/closure-library/closure/goog/math/bezier.js +0 -244
  867. data/closure-library/closure/goog/math/bezier_test.html +0 -70
  868. data/closure-library/closure/goog/math/box.js +0 -236
  869. data/closure-library/closure/goog/math/box_test.html +0 -139
  870. data/closure-library/closure/goog/math/coordinate.js +0 -136
  871. data/closure-library/closure/goog/math/coordinate3.js +0 -168
  872. data/closure-library/closure/goog/math/coordinate3_test.html +0 -208
  873. data/closure-library/closure/goog/math/coordinate_test.html +0 -92
  874. data/closure-library/closure/goog/math/integer.js +0 -736
  875. data/closure-library/closure/goog/math/integer_test.html +0 -1653
  876. data/closure-library/closure/goog/math/line.js +0 -177
  877. data/closure-library/closure/goog/math/line_test.html +0 -62
  878. data/closure-library/closure/goog/math/long.js +0 -801
  879. data/closure-library/closure/goog/math/long_test.html +0 -1571
  880. data/closure-library/closure/goog/math/math.js +0 -355
  881. data/closure-library/closure/goog/math/math_test.html +0 -254
  882. data/closure-library/closure/goog/math/matrix.js +0 -669
  883. data/closure-library/closure/goog/math/matrix_test.html +0 -427
  884. data/closure-library/closure/goog/math/range.js +0 -146
  885. data/closure-library/closure/goog/math/range_test.html +0 -103
  886. data/closure-library/closure/goog/math/rangeset.js +0 -368
  887. data/closure-library/closure/goog/math/rangeset_test.html +0 -619
  888. data/closure-library/closure/goog/math/rect.js +0 -340
  889. data/closure-library/closure/goog/math/rect_test.html +0 -315
  890. data/closure-library/closure/goog/math/size.js +0 -201
  891. data/closure-library/closure/goog/math/size_test.html +0 -174
  892. data/closure-library/closure/goog/math/vec2.js +0 -255
  893. data/closure-library/closure/goog/math/vec2_test.html +0 -203
  894. data/closure-library/closure/goog/math/vec3.js +0 -308
  895. data/closure-library/closure/goog/math/vec3_test.html +0 -231
  896. data/closure-library/closure/goog/memoize/memoize.js +0 -98
  897. data/closure-library/closure/goog/memoize/memoize_test.html +0 -157
  898. data/closure-library/closure/goog/messaging/abstractchannel.js +0 -209
  899. data/closure-library/closure/goog/messaging/abstractchannel_test.html +0 -90
  900. data/closure-library/closure/goog/messaging/bufferedchannel.js +0 -277
  901. data/closure-library/closure/goog/messaging/bufferedchannel_test.html +0 -205
  902. data/closure-library/closure/goog/messaging/deferredchannel.js +0 -79
  903. data/closure-library/closure/goog/messaging/deferredchannel_test.html +0 -107
  904. data/closure-library/closure/goog/messaging/loggerclient.js +0 -131
  905. data/closure-library/closure/goog/messaging/loggerclient_test.html +0 -102
  906. data/closure-library/closure/goog/messaging/loggerserver.js +0 -94
  907. data/closure-library/closure/goog/messaging/loggerserver_test.html +0 -101
  908. data/closure-library/closure/goog/messaging/messagechannel.js +0 -115
  909. data/closure-library/closure/goog/messaging/messaging.js +0 -34
  910. data/closure-library/closure/goog/messaging/messaging_test.html +0 -42
  911. data/closure-library/closure/goog/messaging/multichannel.js +0 -303
  912. data/closure-library/closure/goog/messaging/multichannel_test.html +0 -122
  913. data/closure-library/closure/goog/messaging/portcaller.js +0 -150
  914. data/closure-library/closure/goog/messaging/portcaller_test.html +0 -66
  915. data/closure-library/closure/goog/messaging/portchannel.js +0 -341
  916. data/closure-library/closure/goog/messaging/portchannel_test.html +0 -359
  917. data/closure-library/closure/goog/messaging/portnetwork.js +0 -78
  918. data/closure-library/closure/goog/messaging/portnetwork_test.html +0 -64
  919. data/closure-library/closure/goog/messaging/portoperator.js +0 -196
  920. data/closure-library/closure/goog/messaging/portoperator_test.html +0 -112
  921. data/closure-library/closure/goog/messaging/testdata/portchannel_inner.html +0 -28
  922. data/closure-library/closure/goog/messaging/testdata/portchannel_worker.js +0 -37
  923. data/closure-library/closure/goog/messaging/testdata/portnetwork_inner.html +0 -35
  924. data/closure-library/closure/goog/messaging/testdata/portnetwork_worker1.js +0 -33
  925. data/closure-library/closure/goog/messaging/testdata/portnetwork_worker2.js +0 -33
  926. data/closure-library/closure/goog/module/abstractmoduleloader.js +0 -46
  927. data/closure-library/closure/goog/module/basemodule.js +0 -45
  928. data/closure-library/closure/goog/module/basemoduleloader.js +0 -210
  929. data/closure-library/closure/goog/module/loader.js +0 -269
  930. data/closure-library/closure/goog/module/module.js +0 -166
  931. data/closure-library/closure/goog/module/moduleinfo.js +0 -336
  932. data/closure-library/closure/goog/module/moduleinfo_test.html +0 -109
  933. data/closure-library/closure/goog/module/moduleloadcallback.js +0 -84
  934. data/closure-library/closure/goog/module/moduleloadcallback_test.html +0 -57
  935. data/closure-library/closure/goog/module/moduleloader.js +0 -250
  936. data/closure-library/closure/goog/module/moduleloader_test.html +0 -244
  937. data/closure-library/closure/goog/module/modulemanager.js +0 -1008
  938. data/closure-library/closure/goog/module/modulemanager_test.html +0 -1240
  939. data/closure-library/closure/goog/module/testdata/modA_1.js +0 -22
  940. data/closure-library/closure/goog/module/testdata/modA_2.js +0 -24
  941. data/closure-library/closure/goog/module/testdata/modB_1.js +0 -24
  942. data/closure-library/closure/goog/net/browserchannel.js +0 -2441
  943. data/closure-library/closure/goog/net/browserchannel_test.html +0 -1176
  944. data/closure-library/closure/goog/net/browsertestchannel.js +0 -552
  945. data/closure-library/closure/goog/net/bulkloader.js +0 -174
  946. data/closure-library/closure/goog/net/bulkloader_test.html +0 -232
  947. data/closure-library/closure/goog/net/bulkloaderhelper.js +0 -129
  948. data/closure-library/closure/goog/net/channeldebug.js +0 -288
  949. data/closure-library/closure/goog/net/channelrequest.js +0 -1125
  950. data/closure-library/closure/goog/net/channelrequest_test.html +0 -158
  951. data/closure-library/closure/goog/net/cookies.js +0 -401
  952. data/closure-library/closure/goog/net/cookies_test.html +0 -255
  953. data/closure-library/closure/goog/net/crossdomainrpc.js +0 -848
  954. data/closure-library/closure/goog/net/crossdomainrpc_test.gif +0 -0
  955. data/closure-library/closure/goog/net/crossdomainrpc_test.html +0 -120
  956. data/closure-library/closure/goog/net/crossdomainrpc_test_response.html +0 -59
  957. data/closure-library/closure/goog/net/errorcode.js +0 -130
  958. data/closure-library/closure/goog/net/eventtype.js +0 -37
  959. data/closure-library/closure/goog/net/iframe_xhr_test.html +0 -142
  960. data/closure-library/closure/goog/net/iframe_xhr_test_response.html +0 -17
  961. data/closure-library/closure/goog/net/iframeio.js +0 -1342
  962. data/closure-library/closure/goog/net/iframeio_different_base_test.data +0 -2
  963. data/closure-library/closure/goog/net/iframeio_different_base_test.html +0 -42
  964. data/closure-library/closure/goog/net/iframeio_test.html +0 -368
  965. data/closure-library/closure/goog/net/iframeloadmonitor.js +0 -199
  966. data/closure-library/closure/goog/net/iframeloadmonitor_test.html +0 -113
  967. data/closure-library/closure/goog/net/iframeloadmonitor_test_frame.html +0 -12
  968. data/closure-library/closure/goog/net/iframeloadmonitor_test_frame2.html +0 -12
  969. data/closure-library/closure/goog/net/iframeloadmonitor_test_frame3.html +0 -12
  970. data/closure-library/closure/goog/net/imageloader.js +0 -237
  971. data/closure-library/closure/goog/net/imageloader_test.html +0 -200
  972. data/closure-library/closure/goog/net/imageloader_testimg1.gif +0 -0
  973. data/closure-library/closure/goog/net/imageloader_testimg2.gif +0 -0
  974. data/closure-library/closure/goog/net/imageloader_testimg3.gif +0 -0
  975. data/closure-library/closure/goog/net/jsonp.js +0 -379
  976. data/closure-library/closure/goog/net/jsonp_test.html +0 -328
  977. data/closure-library/closure/goog/net/mockiframeio.js +0 -318
  978. data/closure-library/closure/goog/net/mockxhrlite.js +0 -34
  979. data/closure-library/closure/goog/net/mockxhrlite_test.html +0 -109
  980. data/closure-library/closure/goog/net/multiiframeloadmonitor.js +0 -116
  981. data/closure-library/closure/goog/net/multiiframeloadmonitor_test.html +0 -172
  982. data/closure-library/closure/goog/net/networktester.js +0 -383
  983. data/closure-library/closure/goog/net/networktester_test.html +0 -227
  984. data/closure-library/closure/goog/net/tmpnetwork.js +0 -168
  985. data/closure-library/closure/goog/net/wrapperxmlhttpfactory.js +0 -68
  986. data/closure-library/closure/goog/net/xhrio.js +0 -1093
  987. data/closure-library/closure/goog/net/xhrio_test.html +0 -603
  988. data/closure-library/closure/goog/net/xhriopool.js +0 -87
  989. data/closure-library/closure/goog/net/xhrlite.js +0 -119
  990. data/closure-library/closure/goog/net/xhrlite_test.html +0 -156
  991. data/closure-library/closure/goog/net/xhrlitepool.js +0 -37
  992. data/closure-library/closure/goog/net/xhrmanager.js +0 -763
  993. data/closure-library/closure/goog/net/xhrmonitor.js +0 -254
  994. data/closure-library/closure/goog/net/xhrmonitor_test.html +0 -199
  995. data/closure-library/closure/goog/net/xmlhttp.js +0 -215
  996. data/closure-library/closure/goog/net/xmlhttpfactory.js +0 -64
  997. data/closure-library/closure/goog/net/xpc/crosspagechannel.js +0 -624
  998. data/closure-library/closure/goog/net/xpc/crosspagechannel_test.html +0 -422
  999. data/closure-library/closure/goog/net/xpc/frameelementmethodtransport.js +0 -251
  1000. data/closure-library/closure/goog/net/xpc/iframepollingtransport.js +0 -822
  1001. data/closure-library/closure/goog/net/xpc/iframerelaytransport.js +0 -288
  1002. data/closure-library/closure/goog/net/xpc/nativemessagingtransport.js +0 -280
  1003. data/closure-library/closure/goog/net/xpc/nativemessagingtransport_test.html +0 -164
  1004. data/closure-library/closure/goog/net/xpc/nixtransport.js +0 -454
  1005. data/closure-library/closure/goog/net/xpc/relay.js +0 -72
  1006. data/closure-library/closure/goog/net/xpc/testdata/inner_peer.html +0 -106
  1007. data/closure-library/closure/goog/net/xpc/transport.js +0 -104
  1008. data/closure-library/closure/goog/net/xpc/xpc.js +0 -238
  1009. data/closure-library/closure/goog/object/object.js +0 -553
  1010. data/closure-library/closure/goog/object/object_test.html +0 -376
  1011. data/closure-library/closure/goog/positioning/absoluteposition.js +0 -73
  1012. data/closure-library/closure/goog/positioning/abstractposition.js +0 -47
  1013. data/closure-library/closure/goog/positioning/anchoredposition.js +0 -78
  1014. data/closure-library/closure/goog/positioning/anchoredviewportposition.js +0 -126
  1015. data/closure-library/closure/goog/positioning/anchoredviewportposition_test.html +0 -117
  1016. data/closure-library/closure/goog/positioning/anchoredviewportposition_test_iframe.html +0 -35
  1017. data/closure-library/closure/goog/positioning/clientposition.js +0 -75
  1018. data/closure-library/closure/goog/positioning/menuanchoredposition.js +0 -97
  1019. data/closure-library/closure/goog/positioning/positioning.js +0 -476
  1020. data/closure-library/closure/goog/positioning/positioning_test.html +0 -877
  1021. data/closure-library/closure/goog/positioning/positioning_test_iframe1.html +0 -16
  1022. data/closure-library/closure/goog/positioning/positioning_test_iframe2.html +0 -13
  1023. data/closure-library/closure/goog/positioning/positioning_test_quirk.html +0 -9
  1024. data/closure-library/closure/goog/positioning/positioning_test_standard.html +0 -13
  1025. data/closure-library/closure/goog/positioning/viewportclientposition.js +0 -102
  1026. data/closure-library/closure/goog/positioning/viewportclientposition_test.html +0 -172
  1027. data/closure-library/closure/goog/positioning/viewportposition.js +0 -63
  1028. data/closure-library/closure/goog/proto/proto.js +0 -43
  1029. data/closure-library/closure/goog/proto/serializer.js +0 -68
  1030. data/closure-library/closure/goog/proto/serializer_test.html +0 -43
  1031. data/closure-library/closure/goog/proto2/descriptor.js +0 -198
  1032. data/closure-library/closure/goog/proto2/descriptor_test.html +0 -60
  1033. data/closure-library/closure/goog/proto2/fielddescriptor.js +0 -288
  1034. data/closure-library/closure/goog/proto2/fielddescriptor_test.html +0 -124
  1035. data/closure-library/closure/goog/proto2/lazydeserializer.js +0 -69
  1036. data/closure-library/closure/goog/proto2/message.js +0 -726
  1037. data/closure-library/closure/goog/proto2/message_test.html +0 -356
  1038. data/closure-library/closure/goog/proto2/objectserializer.js +0 -159
  1039. data/closure-library/closure/goog/proto2/objectserializer_test.html +0 -423
  1040. data/closure-library/closure/goog/proto2/package_test.pb.js +0 -164
  1041. data/closure-library/closure/goog/proto2/pbliteserializer.js +0 -150
  1042. data/closure-library/closure/goog/proto2/pbliteserializer_test.html +0 -267
  1043. data/closure-library/closure/goog/proto2/proto_test.html +0 -693
  1044. data/closure-library/closure/goog/proto2/serializer.js +0 -148
  1045. data/closure-library/closure/goog/proto2/test.pb.js +0 -2820
  1046. data/closure-library/closure/goog/proto2/util.js +0 -54
  1047. data/closure-library/closure/goog/pubsub/pubsub.js +0 -326
  1048. data/closure-library/closure/goog/pubsub/pubsub_test.html +0 -635
  1049. data/closure-library/closure/goog/reflect/reflect.js +0 -50
  1050. data/closure-library/closure/goog/spell/spellcheck.js +0 -474
  1051. data/closure-library/closure/goog/spell/spellcheck_test.html +0 -112
  1052. data/closure-library/closure/goog/string/path.js +0 -100
  1053. data/closure-library/closure/goog/string/path_test.html +0 -59
  1054. data/closure-library/closure/goog/string/string.js +0 -1207
  1055. data/closure-library/closure/goog/string/string_test.html +0 -877
  1056. data/closure-library/closure/goog/string/stringbuffer.js +0 -167
  1057. data/closure-library/closure/goog/string/stringbuffer_test.html +0 -101
  1058. data/closure-library/closure/goog/string/stringformat.js +0 -247
  1059. data/closure-library/closure/goog/string/stringformat_test.html +0 -211
  1060. data/closure-library/closure/goog/structs/avltree.js +0 -769
  1061. data/closure-library/closure/goog/structs/avltree_test.html +0 -241
  1062. data/closure-library/closure/goog/structs/circularbuffer.js +0 -219
  1063. data/closure-library/closure/goog/structs/circularbuffer_test.html +0 -105
  1064. data/closure-library/closure/goog/structs/heap.js +0 -332
  1065. data/closure-library/closure/goog/structs/heap_test.html +0 -220
  1066. data/closure-library/closure/goog/structs/inversionmap.js +0 -159
  1067. data/closure-library/closure/goog/structs/inversionmap_test.html +0 -157
  1068. data/closure-library/closure/goog/structs/linkedmap.js +0 -472
  1069. data/closure-library/closure/goog/structs/linkedmap_test.html +0 -300
  1070. data/closure-library/closure/goog/structs/map.js +0 -446
  1071. data/closure-library/closure/goog/structs/map_test.html +0 -430
  1072. data/closure-library/closure/goog/structs/node.js +0 -74
  1073. data/closure-library/closure/goog/structs/pool.js +0 -344
  1074. data/closure-library/closure/goog/structs/pool_test.html +0 -265
  1075. data/closure-library/closure/goog/structs/prioritypool.js +0 -147
  1076. data/closure-library/closure/goog/structs/prioritypool_test.html +0 -478
  1077. data/closure-library/closure/goog/structs/priorityqueue.js +0 -64
  1078. data/closure-library/closure/goog/structs/priorityqueue_test.html +0 -179
  1079. data/closure-library/closure/goog/structs/quadtree.js +0 -571
  1080. data/closure-library/closure/goog/structs/quadtree_test.html +0 -179
  1081. data/closure-library/closure/goog/structs/queue.js +0 -157
  1082. data/closure-library/closure/goog/structs/queue_test.html +0 -140
  1083. data/closure-library/closure/goog/structs/set.js +0 -251
  1084. data/closure-library/closure/goog/structs/set_test.html +0 -551
  1085. data/closure-library/closure/goog/structs/simplepool.js +0 -203
  1086. data/closure-library/closure/goog/structs/stringset.js +0 -404
  1087. data/closure-library/closure/goog/structs/stringset_test.html +0 -251
  1088. data/closure-library/closure/goog/structs/structs.js +0 -341
  1089. data/closure-library/closure/goog/structs/structs_test.html +0 -1050
  1090. data/closure-library/closure/goog/structs/treenode.js +0 -312
  1091. data/closure-library/closure/goog/structs/treenode_test.html +0 -285
  1092. data/closure-library/closure/goog/structs/trie.js +0 -368
  1093. data/closure-library/closure/goog/structs/trie_test.html +0 -378
  1094. data/closure-library/closure/goog/style/cursor.js +0 -125
  1095. data/closure-library/closure/goog/style/cursor_test.html +0 -131
  1096. data/closure-library/closure/goog/style/style.js +0 -1804
  1097. data/closure-library/closure/goog/style/style_quirks_test.html +0 -1928
  1098. data/closure-library/closure/goog/style/style_test.html +0 -2073
  1099. data/closure-library/closure/goog/style/style_test_iframe_quirk.html +0 -29
  1100. data/closure-library/closure/goog/style/style_test_iframe_standard.html +0 -30
  1101. data/closure-library/closure/goog/style/style_test_quirk.html +0 -9
  1102. data/closure-library/closure/goog/style/style_test_standard.html +0 -11
  1103. data/closure-library/closure/goog/testing/asserts.js +0 -970
  1104. data/closure-library/closure/goog/testing/asserts_test.html +0 -966
  1105. data/closure-library/closure/goog/testing/async/mockcontrol.js +0 -174
  1106. data/closure-library/closure/goog/testing/async/mockcontrol_test.html +0 -224
  1107. data/closure-library/closure/goog/testing/asynctestcase.js +0 -812
  1108. data/closure-library/closure/goog/testing/asynctestcase_async_test.html +0 -102
  1109. data/closure-library/closure/goog/testing/asynctestcase_noasync_test.html +0 -98
  1110. data/closure-library/closure/goog/testing/benchmark.js +0 -87
  1111. data/closure-library/closure/goog/testing/benchmarks/jsbinarysizebutton.js +0 -64
  1112. data/closure-library/closure/goog/testing/benchmarks/jsbinarysizebutton_test.html +0 -58
  1113. data/closure-library/closure/goog/testing/benchmarks/jsbinarysizetoolbar.js +0 -66
  1114. data/closure-library/closure/goog/testing/benchmarks/jsbinarysizetoolbar_test.html +0 -49
  1115. data/closure-library/closure/goog/testing/continuationtestcase.js +0 -682
  1116. data/closure-library/closure/goog/testing/continuationtestcase_test.html +0 -349
  1117. data/closure-library/closure/goog/testing/deferredtestcase.js +0 -157
  1118. data/closure-library/closure/goog/testing/deferredtestcase_test.html +0 -152
  1119. data/closure-library/closure/goog/testing/dom.js +0 -596
  1120. data/closure-library/closure/goog/testing/dom_test.html +0 -438
  1121. data/closure-library/closure/goog/testing/editor/dom.js +0 -293
  1122. data/closure-library/closure/goog/testing/editor/dom_test.html +0 -295
  1123. data/closure-library/closure/goog/testing/editor/fieldmock.js +0 -90
  1124. data/closure-library/closure/goog/testing/editor/testhelper.js +0 -168
  1125. data/closure-library/closure/goog/testing/editor/testhelper_test.html +0 -176
  1126. data/closure-library/closure/goog/testing/events/eventobserver.js +0 -85
  1127. data/closure-library/closure/goog/testing/events/eventobserver_test.html +0 -70
  1128. data/closure-library/closure/goog/testing/events/events.js +0 -540
  1129. data/closure-library/closure/goog/testing/events/events_test.html +0 -434
  1130. data/closure-library/closure/goog/testing/events/matchers.js +0 -41
  1131. data/closure-library/closure/goog/testing/events/matchers_test.html +0 -40
  1132. data/closure-library/closure/goog/testing/expectedfailures.js +0 -236
  1133. data/closure-library/closure/goog/testing/expectedfailures_test.html +0 -122
  1134. data/closure-library/closure/goog/testing/fs/blob.js +0 -74
  1135. data/closure-library/closure/goog/testing/fs/blob_test.html +0 -53
  1136. data/closure-library/closure/goog/testing/fs/directoryentry_test.html +0 -185
  1137. data/closure-library/closure/goog/testing/fs/entry.js +0 -511
  1138. data/closure-library/closure/goog/testing/fs/entry_test.html +0 -153
  1139. data/closure-library/closure/goog/testing/fs/file.js +0 -51
  1140. data/closure-library/closure/goog/testing/fs/fileentry_test.html +0 -54
  1141. data/closure-library/closure/goog/testing/fs/filesystem.js +0 -64
  1142. data/closure-library/closure/goog/testing/fs/filewriter.js +0 -314
  1143. data/closure-library/closure/goog/testing/fs/filewriter_test.html +0 -248
  1144. data/closure-library/closure/goog/testing/fs/fs.js +0 -146
  1145. data/closure-library/closure/goog/testing/fs/fs_test.html +0 -54
  1146. data/closure-library/closure/goog/testing/fs/integration_test.html +0 -219
  1147. data/closure-library/closure/goog/testing/functionmock.js +0 -157
  1148. data/closure-library/closure/goog/testing/functionmock_test.html +0 -357
  1149. data/closure-library/closure/goog/testing/graphics.js +0 -64
  1150. data/closure-library/closure/goog/testing/jsunit.js +0 -144
  1151. data/closure-library/closure/goog/testing/loosemock.js +0 -240
  1152. data/closure-library/closure/goog/testing/loosemock_test.html +0 -343
  1153. data/closure-library/closure/goog/testing/messaging/mockmessagechannel.js +0 -77
  1154. data/closure-library/closure/goog/testing/messaging/mockmessageevent.js +0 -100
  1155. data/closure-library/closure/goog/testing/messaging/mockmessageport.js +0 -85
  1156. data/closure-library/closure/goog/testing/messaging/mockportnetwork.js +0 -64
  1157. data/closure-library/closure/goog/testing/mock.js +0 -556
  1158. data/closure-library/closure/goog/testing/mock_test.html +0 -208
  1159. data/closure-library/closure/goog/testing/mockclassfactory.js +0 -580
  1160. data/closure-library/closure/goog/testing/mockclassfactory_test.html +0 -241
  1161. data/closure-library/closure/goog/testing/mockclock.js +0 -395
  1162. data/closure-library/closure/goog/testing/mockclock_test.html +0 -413
  1163. data/closure-library/closure/goog/testing/mockcontrol.js +0 -210
  1164. data/closure-library/closure/goog/testing/mockcontrol_test.html +0 -127
  1165. data/closure-library/closure/goog/testing/mockinterface.js +0 -45
  1166. data/closure-library/closure/goog/testing/mockmatchers.js +0 -395
  1167. data/closure-library/closure/goog/testing/mockmatchers_test.html +0 -388
  1168. data/closure-library/closure/goog/testing/mockrandom.js +0 -128
  1169. data/closure-library/closure/goog/testing/mockrandom_test.html +0 -56
  1170. data/closure-library/closure/goog/testing/mockrange.js +0 -65
  1171. data/closure-library/closure/goog/testing/mockrange_test.html +0 -41
  1172. data/closure-library/closure/goog/testing/mockuseragent.js +0 -143
  1173. data/closure-library/closure/goog/testing/mockuseragent_test.html +0 -59
  1174. data/closure-library/closure/goog/testing/multitestrunner.js +0 -1442
  1175. data/closure-library/closure/goog/testing/net/xhrio.js +0 -595
  1176. data/closure-library/closure/goog/testing/net/xhrio_test.html +0 -321
  1177. data/closure-library/closure/goog/testing/objectpropertystring.js +0 -67
  1178. data/closure-library/closure/goog/testing/performancetable.css +0 -46
  1179. data/closure-library/closure/goog/testing/performancetable.js +0 -162
  1180. data/closure-library/closure/goog/testing/performancetimer.js +0 -166
  1181. data/closure-library/closure/goog/testing/performancetimer_test.html +0 -107
  1182. data/closure-library/closure/goog/testing/propertyreplacer.js +0 -243
  1183. data/closure-library/closure/goog/testing/propertyreplacer_test.html +0 -368
  1184. data/closure-library/closure/goog/testing/pseudorandom.js +0 -162
  1185. data/closure-library/closure/goog/testing/pseudorandom_test.html +0 -98
  1186. data/closure-library/closure/goog/testing/recordfunction.js +0 -194
  1187. data/closure-library/closure/goog/testing/recordfunction_test.html +0 -147
  1188. data/closure-library/closure/goog/testing/singleton.js +0 -82
  1189. data/closure-library/closure/goog/testing/singleton_test.html +0 -39
  1190. data/closure-library/closure/goog/testing/stacktrace.js +0 -470
  1191. data/closure-library/closure/goog/testing/stacktrace_test.html +0 -229
  1192. data/closure-library/closure/goog/testing/strictmock.js +0 -124
  1193. data/closure-library/closure/goog/testing/strictmock_test.html +0 -368
  1194. data/closure-library/closure/goog/testing/style/layoutasserts.js +0 -368
  1195. data/closure-library/closure/goog/testing/style/layoutasserts_test.html +0 -269
  1196. data/closure-library/closure/goog/testing/testcase.js +0 -1053
  1197. data/closure-library/closure/goog/testing/testqueue.js +0 -66
  1198. data/closure-library/closure/goog/testing/testrunner.js +0 -391
  1199. data/closure-library/closure/goog/testing/ui/rendererasserts.js +0 -50
  1200. data/closure-library/closure/goog/testing/ui/rendererasserts_test.html +0 -51
  1201. data/closure-library/closure/goog/testing/ui/rendererharness.js +0 -175
  1202. data/closure-library/closure/goog/testing/ui/style.js +0 -137
  1203. data/closure-library/closure/goog/testing/ui/style_reference.html +0 -27
  1204. data/closure-library/closure/goog/testing/ui/style_test.html +0 -130
  1205. data/closure-library/closure/goog/timer/timer.js +0 -285
  1206. data/closure-library/closure/goog/timer/timer_test.html +0 -118
  1207. data/closure-library/closure/goog/tweak/entries.js +0 -990
  1208. data/closure-library/closure/goog/tweak/entries_test.html +0 -94
  1209. data/closure-library/closure/goog/tweak/registry.js +0 -310
  1210. data/closure-library/closure/goog/tweak/registry_test.html +0 -144
  1211. data/closure-library/closure/goog/tweak/testhelpers.js +0 -111
  1212. data/closure-library/closure/goog/tweak/tweak.js +0 -318
  1213. data/closure-library/closure/goog/tweak/tweakui.js +0 -817
  1214. data/closure-library/closure/goog/tweak/tweakui_test.html +0 -280
  1215. data/closure-library/closure/goog/ui/abstractspellchecker.js +0 -1069
  1216. data/closure-library/closure/goog/ui/activitymonitor.js +0 -286
  1217. data/closure-library/closure/goog/ui/activitymonitor_test.html +0 -44
  1218. data/closure-library/closure/goog/ui/advancedtooltip.js +0 -368
  1219. data/closure-library/closure/goog/ui/advancedtooltip_test.html +0 -274
  1220. data/closure-library/closure/goog/ui/animatedzippy.js +0 -190
  1221. data/closure-library/closure/goog/ui/attachablemenu.js +0 -464
  1222. data/closure-library/closure/goog/ui/autocomplete/arraymatcher.js +0 -156
  1223. data/closure-library/closure/goog/ui/autocomplete/arraymatcher_test.html +0 -130
  1224. data/closure-library/closure/goog/ui/autocomplete/autocomplete.js +0 -627
  1225. data/closure-library/closure/goog/ui/autocomplete/autocomplete_test.html +0 -537
  1226. data/closure-library/closure/goog/ui/autocomplete/basic.js +0 -53
  1227. data/closure-library/closure/goog/ui/autocomplete/basic_test.html +0 -204
  1228. data/closure-library/closure/goog/ui/autocomplete/inputhandler.js +0 -1209
  1229. data/closure-library/closure/goog/ui/autocomplete/inputhandler_test.html +0 -555
  1230. data/closure-library/closure/goog/ui/autocomplete/remote.js +0 -117
  1231. data/closure-library/closure/goog/ui/autocomplete/remotearraymatcher.js +0 -273
  1232. data/closure-library/closure/goog/ui/autocomplete/remotearraymatcher_test.html +0 -73
  1233. data/closure-library/closure/goog/ui/autocomplete/renderer.js +0 -852
  1234. data/closure-library/closure/goog/ui/autocomplete/renderer_test.html +0 -386
  1235. data/closure-library/closure/goog/ui/autocomplete/richinputhandler.js +0 -59
  1236. data/closure-library/closure/goog/ui/autocomplete/richremote.js +0 -108
  1237. data/closure-library/closure/goog/ui/autocomplete/richremotearraymatcher.js +0 -126
  1238. data/closure-library/closure/goog/ui/basicmenu.js +0 -930
  1239. data/closure-library/closure/goog/ui/bidiinput.js +0 -164
  1240. data/closure-library/closure/goog/ui/bubble.js +0 -475
  1241. data/closure-library/closure/goog/ui/button.js +0 -208
  1242. data/closure-library/closure/goog/ui/button_test.html +0 -257
  1243. data/closure-library/closure/goog/ui/buttonrenderer.js +0 -205
  1244. data/closure-library/closure/goog/ui/buttonrenderer_test.html +0 -190
  1245. data/closure-library/closure/goog/ui/buttonside.js +0 -40
  1246. data/closure-library/closure/goog/ui/cccbutton.js +0 -281
  1247. data/closure-library/closure/goog/ui/charcounter.js +0 -200
  1248. data/closure-library/closure/goog/ui/charpicker.js +0 -807
  1249. data/closure-library/closure/goog/ui/checkbox.js +0 -303
  1250. data/closure-library/closure/goog/ui/checkbox_test.html +0 -224
  1251. data/closure-library/closure/goog/ui/checkboxmenuitem.js +0 -53
  1252. data/closure-library/closure/goog/ui/colorbutton.js +0 -58
  1253. data/closure-library/closure/goog/ui/colorbutton_test.html +0 -70
  1254. data/closure-library/closure/goog/ui/colorbuttonrenderer.js +0 -72
  1255. data/closure-library/closure/goog/ui/colormenubutton.js +0 -213
  1256. data/closure-library/closure/goog/ui/colormenubuttonrenderer.js +0 -144
  1257. data/closure-library/closure/goog/ui/colormenubuttonrenderer_test.html +0 -88
  1258. data/closure-library/closure/goog/ui/colorpalette.js +0 -162
  1259. data/closure-library/closure/goog/ui/colorpalette_test.html +0 -169
  1260. data/closure-library/closure/goog/ui/colorpicker.js +0 -344
  1261. data/closure-library/closure/goog/ui/colorsplitbehavior.js +0 -61
  1262. data/closure-library/closure/goog/ui/combobox.js +0 -894
  1263. data/closure-library/closure/goog/ui/combobox_test.html +0 -208
  1264. data/closure-library/closure/goog/ui/component.js +0 -1187
  1265. data/closure-library/closure/goog/ui/component_test.html +0 -723
  1266. data/closure-library/closure/goog/ui/container.js +0 -1296
  1267. data/closure-library/closure/goog/ui/container_test.html +0 -450
  1268. data/closure-library/closure/goog/ui/containerrenderer.js +0 -370
  1269. data/closure-library/closure/goog/ui/containerrenderer_test.html +0 -227
  1270. data/closure-library/closure/goog/ui/containerscroller.js +0 -221
  1271. data/closure-library/closure/goog/ui/containerscroller_test.html +0 -213
  1272. data/closure-library/closure/goog/ui/control.js +0 -1348
  1273. data/closure-library/closure/goog/ui/control_test.html +0 -2128
  1274. data/closure-library/closure/goog/ui/controlcontent.js +0 -28
  1275. data/closure-library/closure/goog/ui/controlrenderer.js +0 -808
  1276. data/closure-library/closure/goog/ui/controlrenderer_test.html +0 -840
  1277. data/closure-library/closure/goog/ui/cookieeditor.js +0 -182
  1278. data/closure-library/closure/goog/ui/cookieeditor_test.html +0 -102
  1279. data/closure-library/closure/goog/ui/css3buttonrenderer.js +0 -147
  1280. data/closure-library/closure/goog/ui/css3menubuttonrenderer.js +0 -144
  1281. data/closure-library/closure/goog/ui/cssnames.js +0 -28
  1282. data/closure-library/closure/goog/ui/custombutton.js +0 -58
  1283. data/closure-library/closure/goog/ui/custombuttonrenderer.js +0 -254
  1284. data/closure-library/closure/goog/ui/customcolorpalette.js +0 -137
  1285. data/closure-library/closure/goog/ui/customcolorpalette_test.html +0 -60
  1286. data/closure-library/closure/goog/ui/datepicker.js +0 -1339
  1287. data/closure-library/closure/goog/ui/datepicker_test.html +0 -190
  1288. data/closure-library/closure/goog/ui/decorate.js +0 -37
  1289. data/closure-library/closure/goog/ui/decorate_test.html +0 -113
  1290. data/closure-library/closure/goog/ui/deprecatedbutton.js +0 -381
  1291. data/closure-library/closure/goog/ui/dialog.js +0 -1776
  1292. data/closure-library/closure/goog/ui/dialog_test.html +0 -493
  1293. data/closure-library/closure/goog/ui/dimensionpicker.js +0 -289
  1294. data/closure-library/closure/goog/ui/dimensionpicker_test.html +0 -128
  1295. data/closure-library/closure/goog/ui/dimensionpickerrenderer.js +0 -387
  1296. data/closure-library/closure/goog/ui/dragdropdetector.js +0 -642
  1297. data/closure-library/closure/goog/ui/drilldownrow.js +0 -494
  1298. data/closure-library/closure/goog/ui/editor/abstractdialog.js +0 -443
  1299. data/closure-library/closure/goog/ui/editor/abstractdialog_test.html +0 -467
  1300. data/closure-library/closure/goog/ui/editor/bubble.js +0 -520
  1301. data/closure-library/closure/goog/ui/editor/bubble_test.html +0 -264
  1302. data/closure-library/closure/goog/ui/editor/defaulttoolbar.js +0 -1062
  1303. data/closure-library/closure/goog/ui/editor/linkdialog.js +0 -833
  1304. data/closure-library/closure/goog/ui/editor/linkdialog_test.html +0 -449
  1305. data/closure-library/closure/goog/ui/editor/messages.js +0 -115
  1306. data/closure-library/closure/goog/ui/editor/tabpane.js +0 -183
  1307. data/closure-library/closure/goog/ui/editor/toolbarcontroller.js +0 -293
  1308. data/closure-library/closure/goog/ui/editor/toolbarfactory.js +0 -437
  1309. data/closure-library/closure/goog/ui/editor/toolbarfactory_test.html +0 -73
  1310. data/closure-library/closure/goog/ui/emoji/emoji.js +0 -72
  1311. data/closure-library/closure/goog/ui/emoji/emojipalette.js +0 -298
  1312. data/closure-library/closure/goog/ui/emoji/emojipaletterenderer.js +0 -206
  1313. data/closure-library/closure/goog/ui/emoji/emojipicker.js +0 -797
  1314. data/closure-library/closure/goog/ui/emoji/emojipicker_test.html +0 -840
  1315. data/closure-library/closure/goog/ui/emoji/fast_nonprogressive_emojipicker_test.html +0 -256
  1316. data/closure-library/closure/goog/ui/emoji/fast_progressive_emojipicker_test.html +0 -256
  1317. data/closure-library/closure/goog/ui/emoji/popupemojipicker.js +0 -410
  1318. data/closure-library/closure/goog/ui/emoji/popupemojipicker_test.html +0 -80
  1319. data/closure-library/closure/goog/ui/emoji/progressiveemojipaletterenderer.js +0 -97
  1320. data/closure-library/closure/goog/ui/emoji/spriteinfo.js +0 -212
  1321. data/closure-library/closure/goog/ui/emoji/spriteinfo_test.html +0 -51
  1322. data/closure-library/closure/goog/ui/filteredmenu.js +0 -562
  1323. data/closure-library/closure/goog/ui/filteredmenu_test.html +0 -299
  1324. data/closure-library/closure/goog/ui/filterobservingmenuitem.js +0 -97
  1325. data/closure-library/closure/goog/ui/filterobservingmenuitemrenderer.js +0 -60
  1326. data/closure-library/closure/goog/ui/flatbuttonrenderer.js +0 -138
  1327. data/closure-library/closure/goog/ui/flatmenubuttonrenderer.js +0 -199
  1328. data/closure-library/closure/goog/ui/formpost.js +0 -109
  1329. data/closure-library/closure/goog/ui/formpost_test.html +0 -109
  1330. data/closure-library/closure/goog/ui/gauge.js +0 -999
  1331. data/closure-library/closure/goog/ui/gaugetheme.js +0 -169
  1332. data/closure-library/closure/goog/ui/hovercard.js +0 -447
  1333. data/closure-library/closure/goog/ui/hovercard_test.html +0 -343
  1334. data/closure-library/closure/goog/ui/hsvapalette.js +0 -311
  1335. data/closure-library/closure/goog/ui/hsvapalette_test.html +0 -152
  1336. data/closure-library/closure/goog/ui/hsvpalette.js +0 -470
  1337. data/closure-library/closure/goog/ui/hsvpalette_test.html +0 -202
  1338. data/closure-library/closure/goog/ui/idgenerator.js +0 -57
  1339. data/closure-library/closure/goog/ui/idletimer.js +0 -299
  1340. data/closure-library/closure/goog/ui/idletimer_test.html +0 -100
  1341. data/closure-library/closure/goog/ui/iframemask.js +0 -256
  1342. data/closure-library/closure/goog/ui/iframemask_test.html +0 -230
  1343. data/closure-library/closure/goog/ui/imagelessbuttonrenderer.js +0 -204
  1344. data/closure-library/closure/goog/ui/imagelessmenubuttonrenderer.js +0 -202
  1345. data/closure-library/closure/goog/ui/imagelessroundedcorner.js +0 -971
  1346. data/closure-library/closure/goog/ui/inputdatepicker.js +0 -306
  1347. data/closure-library/closure/goog/ui/inputdatepicker_test.html +0 -109
  1348. data/closure-library/closure/goog/ui/itemevent.js +0 -50
  1349. data/closure-library/closure/goog/ui/keyboardshortcuthandler.js +0 -981
  1350. data/closure-library/closure/goog/ui/keyboardshortcuthandler_test.html +0 -671
  1351. data/closure-library/closure/goog/ui/labelinput.js +0 -439
  1352. data/closure-library/closure/goog/ui/linkbuttonrenderer.js +0 -67
  1353. data/closure-library/closure/goog/ui/media/flashobject.js +0 -629
  1354. data/closure-library/closure/goog/ui/media/flashobject_test.html +0 -236
  1355. data/closure-library/closure/goog/ui/media/flickr.js +0 -309
  1356. data/closure-library/closure/goog/ui/media/flickr_test.html +0 -90
  1357. data/closure-library/closure/goog/ui/media/media.js +0 -284
  1358. data/closure-library/closure/goog/ui/media/media_test.html +0 -161
  1359. data/closure-library/closure/goog/ui/media/mediamodel.js +0 -840
  1360. data/closure-library/closure/goog/ui/media/mp3.js +0 -225
  1361. data/closure-library/closure/goog/ui/media/mp3_test.html +0 -78
  1362. data/closure-library/closure/goog/ui/media/photo.js +0 -139
  1363. data/closure-library/closure/goog/ui/media/photo_test.html +0 -62
  1364. data/closure-library/closure/goog/ui/media/picasa.js +0 -317
  1365. data/closure-library/closure/goog/ui/media/picasa_test.html +0 -131
  1366. data/closure-library/closure/goog/ui/media/vimeo.js +0 -264
  1367. data/closure-library/closure/goog/ui/media/vimeo_test.html +0 -79
  1368. data/closure-library/closure/goog/ui/media/youtube.js +0 -328
  1369. data/closure-library/closure/goog/ui/media/youtube_test.html +0 -185
  1370. data/closure-library/closure/goog/ui/menu.js +0 -435
  1371. data/closure-library/closure/goog/ui/menu_test.html +0 -129
  1372. data/closure-library/closure/goog/ui/menubase.js +0 -191
  1373. data/closure-library/closure/goog/ui/menubutton.js +0 -815
  1374. data/closure-library/closure/goog/ui/menubutton_test.html +0 -440
  1375. data/closure-library/closure/goog/ui/menubutton_test_frame.html +0 -41
  1376. data/closure-library/closure/goog/ui/menubuttonrenderer.js +0 -226
  1377. data/closure-library/closure/goog/ui/menubuttonrenderer_test.html +0 -161
  1378. data/closure-library/closure/goog/ui/menuheader.js +0 -62
  1379. data/closure-library/closure/goog/ui/menuheaderrenderer.js +0 -55
  1380. data/closure-library/closure/goog/ui/menuitem.js +0 -154
  1381. data/closure-library/closure/goog/ui/menuitem_test.html +0 -506
  1382. data/closure-library/closure/goog/ui/menuitemrenderer.js +0 -353
  1383. data/closure-library/closure/goog/ui/menuitemrenderer_test.html +0 -190
  1384. data/closure-library/closure/goog/ui/menurenderer.js +0 -118
  1385. data/closure-library/closure/goog/ui/menuseparator.js +0 -51
  1386. data/closure-library/closure/goog/ui/menuseparatorrenderer.js +0 -102
  1387. data/closure-library/closure/goog/ui/mockactivitymonitor.js +0 -54
  1388. data/closure-library/closure/goog/ui/nativebuttonrenderer.js +0 -205
  1389. data/closure-library/closure/goog/ui/nativebuttonrenderer_test.html +0 -213
  1390. data/closure-library/closure/goog/ui/offlineinstalldialog.js +0 -1086
  1391. data/closure-library/closure/goog/ui/offlinestatuscard.js +0 -580
  1392. data/closure-library/closure/goog/ui/offlinestatuscomponent.js +0 -545
  1393. data/closure-library/closure/goog/ui/option.js +0 -67
  1394. data/closure-library/closure/goog/ui/palette.js +0 -528
  1395. data/closure-library/closure/goog/ui/paletterenderer.js +0 -318
  1396. data/closure-library/closure/goog/ui/plaintextspellchecker.js +0 -668
  1397. data/closure-library/closure/goog/ui/plaintextspellchecker_test.html +0 -240
  1398. data/closure-library/closure/goog/ui/popup.js +0 -410
  1399. data/closure-library/closure/goog/ui/popup_test.html +0 -137
  1400. data/closure-library/closure/goog/ui/popupbase.js +0 -721
  1401. data/closure-library/closure/goog/ui/popupbase_test.html +0 -186
  1402. data/closure-library/closure/goog/ui/popupcolorpicker.js +0 -441
  1403. data/closure-library/closure/goog/ui/popupcolorpicker_test.html +0 -71
  1404. data/closure-library/closure/goog/ui/popupdatepicker.js +0 -273
  1405. data/closure-library/closure/goog/ui/popupmenu.js +0 -539
  1406. data/closure-library/closure/goog/ui/popupmenu_test.html +0 -197
  1407. data/closure-library/closure/goog/ui/progressbar.js +0 -390
  1408. data/closure-library/closure/goog/ui/prompt.js +0 -307
  1409. data/closure-library/closure/goog/ui/prompt_test.html +0 -65
  1410. data/closure-library/closure/goog/ui/rangemodel.js +0 -301
  1411. data/closure-library/closure/goog/ui/rangemodel_test.html +0 -270
  1412. data/closure-library/closure/goog/ui/ratings.js +0 -441
  1413. data/closure-library/closure/goog/ui/registry.js +0 -166
  1414. data/closure-library/closure/goog/ui/registry_test.html +0 -236
  1415. data/closure-library/closure/goog/ui/richtextspellchecker.js +0 -600
  1416. data/closure-library/closure/goog/ui/richtextspellchecker_test.html +0 -224
  1417. data/closure-library/closure/goog/ui/roundedcorners.js +0 -694
  1418. data/closure-library/closure/goog/ui/roundedpanel.js +0 -609
  1419. data/closure-library/closure/goog/ui/roundedpanel_test.html +0 -57
  1420. data/closure-library/closure/goog/ui/roundedtabrenderer.js +0 -196
  1421. data/closure-library/closure/goog/ui/scrollfloater.js +0 -394
  1422. data/closure-library/closure/goog/ui/scrollfloater_test.html +0 -46
  1423. data/closure-library/closure/goog/ui/select.js +0 -397
  1424. data/closure-library/closure/goog/ui/select_test.html +0 -152
  1425. data/closure-library/closure/goog/ui/selectionmenubutton.js +0 -277
  1426. data/closure-library/closure/goog/ui/selectionmenubutton_test.html +0 -237
  1427. data/closure-library/closure/goog/ui/selectionmodel.js +0 -291
  1428. data/closure-library/closure/goog/ui/separator.js +0 -74
  1429. data/closure-library/closure/goog/ui/serverchart.js +0 -1791
  1430. data/closure-library/closure/goog/ui/serverchart_test.html +0 -598
  1431. data/closure-library/closure/goog/ui/slider.js +0 -125
  1432. data/closure-library/closure/goog/ui/sliderbase.js +0 -1087
  1433. data/closure-library/closure/goog/ui/sliderbase_test.html +0 -198
  1434. data/closure-library/closure/goog/ui/splitbehavior.js +0 -348
  1435. data/closure-library/closure/goog/ui/splitbehavior_test.html +0 -161
  1436. data/closure-library/closure/goog/ui/splitpane.js +0 -844
  1437. data/closure-library/closure/goog/ui/splitpane_test.html +0 -143
  1438. data/closure-library/closure/goog/ui/style/app/buttonrenderer.js +0 -204
  1439. data/closure-library/closure/goog/ui/style/app/buttonrenderer_test.html +0 -155
  1440. data/closure-library/closure/goog/ui/style/app/menubuttonrenderer.js +0 -227
  1441. data/closure-library/closure/goog/ui/style/app/menubuttonrenderer_test.html +0 -167
  1442. data/closure-library/closure/goog/ui/style/app/primaryactionbuttonrenderer.js +0 -88
  1443. data/closure-library/closure/goog/ui/style/app/primaryactionbuttonrenderer_test.html +0 -76
  1444. data/closure-library/closure/goog/ui/submenu.js +0 -660
  1445. data/closure-library/closure/goog/ui/submenu_test.html +0 -446
  1446. data/closure-library/closure/goog/ui/submenurenderer.js +0 -188
  1447. data/closure-library/closure/goog/ui/tab.js +0 -102
  1448. data/closure-library/closure/goog/ui/tab_test.html +0 -61
  1449. data/closure-library/closure/goog/ui/tabbar.js +0 -393
  1450. data/closure-library/closure/goog/ui/tabbar_test.html +0 -611
  1451. data/closure-library/closure/goog/ui/tabbarrenderer.js +0 -173
  1452. data/closure-library/closure/goog/ui/tabbarrenderer_test.html +0 -137
  1453. data/closure-library/closure/goog/ui/tablesorter.js +0 -304
  1454. data/closure-library/closure/goog/ui/tablesorter_test.html +0 -127
  1455. data/closure-library/closure/goog/ui/tabpane.js +0 -674
  1456. data/closure-library/closure/goog/ui/tabpane_test.html +0 -107
  1457. data/closure-library/closure/goog/ui/tabrenderer.js +0 -152
  1458. data/closure-library/closure/goog/ui/tabrenderer_test.html +0 -132
  1459. data/closure-library/closure/goog/ui/textarea.js +0 -573
  1460. data/closure-library/closure/goog/ui/textarea_test.html +0 -305
  1461. data/closure-library/closure/goog/ui/textarearenderer.js +0 -167
  1462. data/closure-library/closure/goog/ui/togglebutton.js +0 -58
  1463. data/closure-library/closure/goog/ui/toolbar.js +0 -45
  1464. data/closure-library/closure/goog/ui/toolbarbutton.js +0 -54
  1465. data/closure-library/closure/goog/ui/toolbarbuttonrenderer.js +0 -55
  1466. data/closure-library/closure/goog/ui/toolbarcolormenubutton.js +0 -57
  1467. data/closure-library/closure/goog/ui/toolbarcolormenubuttonrenderer.js +0 -95
  1468. data/closure-library/closure/goog/ui/toolbarcolormenubuttonrenderer_test.html +0 -66
  1469. data/closure-library/closure/goog/ui/toolbarmenubutton.js +0 -56
  1470. data/closure-library/closure/goog/ui/toolbarmenubuttonrenderer.js +0 -55
  1471. data/closure-library/closure/goog/ui/toolbarrenderer.js +0 -95
  1472. data/closure-library/closure/goog/ui/toolbarselect.js +0 -55
  1473. data/closure-library/closure/goog/ui/toolbarseparator.js +0 -51
  1474. data/closure-library/closure/goog/ui/toolbarseparatorrenderer.js +0 -87
  1475. data/closure-library/closure/goog/ui/toolbartogglebutton.js +0 -53
  1476. data/closure-library/closure/goog/ui/tooltip.js +0 -975
  1477. data/closure-library/closure/goog/ui/tooltip_test.html +0 -351
  1478. data/closure-library/closure/goog/ui/tree/basenode.js +0 -1457
  1479. data/closure-library/closure/goog/ui/tree/basenode_test.html +0 -218
  1480. data/closure-library/closure/goog/ui/tree/treecontrol.js +0 -656
  1481. data/closure-library/closure/goog/ui/tree/treecontrol_test.html +0 -113
  1482. data/closure-library/closure/goog/ui/tree/treenode.js +0 -102
  1483. data/closure-library/closure/goog/ui/tree/typeahead.js +0 -332
  1484. data/closure-library/closure/goog/ui/tree/typeahead_test.html +0 -133
  1485. data/closure-library/closure/goog/ui/tristatemenuitem.js +0 -185
  1486. data/closure-library/closure/goog/ui/tristatemenuitemrenderer.js +0 -86
  1487. data/closure-library/closure/goog/ui/twothumbslider.js +0 -134
  1488. data/closure-library/closure/goog/ui/zippy.js +0 -277
  1489. data/closure-library/closure/goog/ui/zippy_test.html +0 -223
  1490. data/closure-library/closure/goog/uri/uri.js +0 -1595
  1491. data/closure-library/closure/goog/uri/uri_test.html +0 -837
  1492. data/closure-library/closure/goog/uri/utils.js +0 -972
  1493. data/closure-library/closure/goog/uri/utils_test.html +0 -521
  1494. data/closure-library/closure/goog/useragent/adobereader.js +0 -90
  1495. data/closure-library/closure/goog/useragent/adobereader_test.html +0 -34
  1496. data/closure-library/closure/goog/useragent/flash.js +0 -113
  1497. data/closure-library/closure/goog/useragent/flash_test.html +0 -34
  1498. data/closure-library/closure/goog/useragent/iphoto.js +0 -86
  1499. data/closure-library/closure/goog/useragent/jscript.js +0 -94
  1500. data/closure-library/closure/goog/useragent/jscript_test.html +0 -65
  1501. data/closure-library/closure/goog/useragent/picasa.js +0 -111
  1502. data/closure-library/closure/goog/useragent/platform.js +0 -70
  1503. data/closure-library/closure/goog/useragent/platform_test.html +0 -108
  1504. data/closure-library/closure/goog/useragent/product.js +0 -253
  1505. data/closure-library/closure/goog/useragent/product_isversion.js +0 -99
  1506. data/closure-library/closure/goog/useragent/product_test.html +0 -322
  1507. data/closure-library/closure/goog/useragent/useragent.js +0 -464
  1508. data/closure-library/closure/goog/useragent/useragent_test.html +0 -290
  1509. data/closure-library/closure/goog/window/window.js +0 -206
  1510. data/closure-library/closure/goog/window/window_test.html +0 -185
  1511. data/closure-library/third_party/closure/goog/base.js +0 -2
  1512. data/closure-library/third_party/closure/goog/caja/string/html/htmlparser.js +0 -611
  1513. data/closure-library/third_party/closure/goog/caja/string/html/htmlsanitizer.js +0 -605
  1514. data/closure-library/third_party/closure/goog/deps.js +0 -26
  1515. data/closure-library/third_party/closure/goog/dojo/dom/query.js +0 -1537
  1516. data/closure-library/third_party/closure/goog/dojo/dom/query_test.html +0 -63
  1517. data/closure-library/third_party/closure/goog/dojo/dom/query_test.js +0 -160
  1518. data/closure-library/third_party/closure/goog/jpeg_encoder/jpeg_encoder_basic.js +0 -751
  1519. data/closure-library/third_party/closure/goog/loremipsum/text/loremipsum.js +0 -712
  1520. data/closure-library/third_party/closure/goog/loremipsum/text/loremipsum_test.html +0 -61
  1521. data/closure-library/third_party/closure/goog/mochikit/async/deferred.js +0 -530
  1522. data/closure-library/third_party/closure/goog/mochikit/async/deferred_test.html +0 -627
  1523. data/closure-library/third_party/closure/goog/mochikit/async/deferredlist.js +0 -199
  1524. data/closure-library/third_party/closure/goog/mochikit/async/deferredlist_test.html +0 -426
  1525. data/closure-library/third_party/closure/goog/osapi/osapi.js +0 -91
  1526. data/closure-library/third_party/closure/goog/silverlight/AppManifest.xml +0 -6
  1527. data/closure-library/third_party/closure/goog/silverlight/AssemblyInfo.cs +0 -35
  1528. data/closure-library/third_party/closure/goog/silverlight/ClipboardButton.xaml +0 -9
  1529. data/closure-library/third_party/closure/goog/silverlight/ClipboardButton.xaml.cs +0 -74
  1530. data/closure-library/third_party/closure/goog/silverlight/ClipboardButtonApp.xaml +0 -8
  1531. data/closure-library/third_party/closure/goog/silverlight/ClipboardButtonApp.xaml.cs +0 -75
  1532. data/closure-library/third_party/closure/goog/silverlight/ClosureClipboardButton.csproj +0 -108
  1533. data/closure-library/third_party/closure/goog/silverlight/ClosureClipboardButton.csproj.user +0 -29
  1534. data/closure-library/third_party/closure/goog/silverlight/clipboardbutton.js +0 -279
  1535. data/closure-library/third_party/closure/goog/silverlight/silverlight.js +0 -758
  1536. data/closure-library/third_party/closure/goog/silverlight/supporteduseragent.js +0 -138
  1537. data/closure-library/third_party/closure/goog/silverlight/xap_files +0 -0
  1538. data/closure.gemspec +0 -19
  1539. data/config.ru +0 -40
  1540. data/java_src/ClosureScript.java +0 -89
  1541. data/java_src/make.rb +0 -19
  1542. data/lib/closure/sass.rb +0 -56
  1543. data/lib/closure.jar +0 -0
  1544. data/scripts/demos/compiler.build +0 -1
  1545. data/scripts/demos/compiler.debug +0 -24
  1546. data/scripts/demos/compiler.js.erb +0 -22
  1547. data/scripts/demos/compiler.map +0 -114
  1548. data/scripts/demos/deps.js.erb +0 -1
  1549. data/scripts/demos/googly.erb +0 -19
  1550. data/scripts/demos/googly.js +0 -24
  1551. data/scripts/demos/helloworld.erb +0 -24
  1552. data/scripts/demos/helloworld.js +0 -58
  1553. data/scripts/demos/helloworld.soy +0 -45
  1554. data/scripts/demos/index.erb +0 -29
  1555. data/scripts/externs/jquery.externs +0 -4
  1556. data/scripts/fixtures/_partial.haml +0 -2
  1557. data/scripts/fixtures/erb.html.erb +0 -8
  1558. data/scripts/fixtures/haml.haml +0 -6
  1559. data/scripts/fixtures/html.html +0 -9
  1560. data/scripts/fixtures/route_js.js.erb +0 -1
  1561. data/test/beanshell_test.rb +0 -22
  1562. data/test/server_test.rb +0 -67
  1563. data/test/sources_test.rb +0 -41
  1564. data/test/test_helper.rb +0 -12
  1565. /data/{scripts/externs → externs}/jquery-ui.externs +0 -0
  1566. /data/scripts/{demos/jquery.js → jquery/jquery_1.4.4.js} +0 -0
@@ -1,3185 +0,0 @@
1
- // Copyright 2010 The Closure Library Authors. All Rights Reserved.
2
- //
3
- // Licensed under the Apache License, Version 2.0 (the "License");
4
- // you may not use this file except in compliance with the License.
5
- // You may obtain a copy of the License at
6
- //
7
- // http://www.apache.org/licenses/LICENSE-2.0
8
- //
9
- // Unless required by applicable law or agreed to in writing, software
10
- // distributed under the License is distributed on an "AS-IS" BASIS,
11
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- // See the License for the specific language governing permissions and
13
- // limitations under the License.
14
-
15
- /**
16
- * @fileoverview Character lists and their classifications used by character
17
- * picker widget. Autogenerated from Unicode data:
18
- * https://sites/cibu/character-picker.
19
- *
20
- */
21
-
22
- goog.provide('goog.i18n.CharPickerData');
23
-
24
-
25
-
26
- /**
27
- * Object holding two level character organization and character listing.
28
- * @constructor
29
- */
30
- goog.i18n.CharPickerData = function() {};
31
-
32
-
33
- /**
34
- * @desc Name for a symbol or character category. Used in a pull-down list
35
- * shown to a document editing user trying to insert a special character.
36
- * Newlines are not allowed; translation should be a noun and as consise as
37
- * possible. More details:
38
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
39
- * @type {string}
40
- */
41
- goog.i18n.CharPickerData.MSG_CP_SYMBOL = goog.getMsg('Symbol');
42
-
43
-
44
- /**
45
- * @desc Name for a symbol or character category. Used in a pull-down list
46
- * shown to a document editing user trying to insert a special character.
47
- * Newlines are not allowed; translation should be a noun and as consise as
48
- * possible. More details:
49
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
50
- * @type {string}
51
- */
52
- goog.i18n.CharPickerData.MSG_CP_ARROWS = goog.getMsg('Arrows');
53
-
54
-
55
- /**
56
- * @desc Name for a symbol or character category. Used in a pull-down list
57
- * shown to a document editing user trying to insert a special character.
58
- * Newlines are not allowed; translation should be a noun and as consise as
59
- * possible. More details:
60
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
61
- * @type {string}
62
- */
63
- goog.i18n.CharPickerData.MSG_CP_BRAILLE = goog.getMsg('Braille');
64
-
65
-
66
- /**
67
- * @desc Name for a symbol or character category. Used in a pull-down list
68
- * shown to a document editing user trying to insert a special character.
69
- * Newlines are not allowed; translation should be a noun and as consise as
70
- * possible. More details:
71
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
72
- * @type {string}
73
- */
74
- goog.i18n.CharPickerData.MSG_CP_CONTROL_PICTURES =
75
- goog.getMsg('Control Pictures');
76
-
77
-
78
- /**
79
- * @desc Name for a symbol or character category. Used in a pull-down list
80
- * shown to a document editing user trying to insert a special character.
81
- * Newlines are not allowed; translation should be a noun and as consise as
82
- * possible. More details:
83
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
84
- * @type {string}
85
- */
86
- goog.i18n.CharPickerData.MSG_CP_CURRENCY = goog.getMsg('Currency');
87
-
88
-
89
- /**
90
- * @desc Name for a symbol or character category. Used in a pull-down list
91
- * shown to a document editing user trying to insert a special character.
92
- * Newlines are not allowed; translation should be a noun and as consise as
93
- * possible. More details:
94
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
95
- * @type {string}
96
- */
97
- goog.i18n.CharPickerData.MSG_CP_GAME_PIECES = goog.getMsg('Game Pieces');
98
-
99
-
100
- /**
101
- * @desc Name for a symbol or character category. Used in a pull-down list
102
- * shown to a document editing user trying to insert a special character.
103
- * Newlines are not allowed; translation should be a noun and as consise as
104
- * possible. More details:
105
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
106
- * @type {string}
107
- */
108
- goog.i18n.CharPickerData.MSG_CP_GENDER_AND_GENEALOGICAL =
109
- goog.getMsg('Gender and Genealogical');
110
-
111
-
112
- /**
113
- * @desc Name for a symbol or character category. Used in a pull-down list
114
- * shown to a document editing user trying to insert a special character.
115
- * Newlines are not allowed; translation should be a noun and as consise as
116
- * possible. More details:
117
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
118
- * @type {string}
119
- */
120
- goog.i18n.CharPickerData.MSG_CP_GEOMETRIC_SHAPES =
121
- goog.getMsg('Geometric Shapes');
122
-
123
-
124
- /**
125
- * @desc Name for a symbol or character category. Used in a pull-down list
126
- * shown to a document editing user trying to insert a special character.
127
- * Newlines are not allowed; translation should be a noun and as consise as
128
- * possible. More details:
129
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
130
- * @type {string}
131
- */
132
- goog.i18n.CharPickerData.MSG_CP_KEYBOARD_AND_UI =
133
- goog.getMsg('Keyboard and UI');
134
-
135
-
136
- /**
137
- * @desc Name for a symbol or character category. Used in a pull-down list
138
- * shown to a document editing user trying to insert a special character.
139
- * Newlines are not allowed; translation should be a noun and as consise as
140
- * possible. More details:
141
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
142
- * @type {string}
143
- */
144
- goog.i18n.CharPickerData.MSG_CP_MATH = goog.getMsg('Math');
145
-
146
-
147
- /**
148
- * @desc Name for a symbol or character category. Used in a pull-down list
149
- * shown to a document editing user trying to insert a special character.
150
- * Newlines are not allowed; translation should be a noun and as consise as
151
- * possible. More details:
152
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
153
- * @type {string}
154
- */
155
- goog.i18n.CharPickerData.MSG_CP_MISCELLANEOUS = goog.getMsg('Miscellaneous');
156
-
157
-
158
- /**
159
- * @desc Name for a symbol or character category. Used in a pull-down list
160
- * shown to a document editing user trying to insert a special character.
161
- * Newlines are not allowed; translation should be a noun and as consise as
162
- * possible. More details:
163
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
164
- * @type {string}
165
- */
166
- goog.i18n.CharPickerData.MSG_CP_MUSICAL = goog.getMsg('Musical');
167
-
168
-
169
- /**
170
- * @desc Name for a symbol or character category. Used in a pull-down list
171
- * shown to a document editing user trying to insert a special character.
172
- * Newlines are not allowed; translation should be a noun and as consise as
173
- * possible. More details:
174
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
175
- * @type {string}
176
- */
177
- goog.i18n.CharPickerData.MSG_CP_STARS_ASTERISKS =
178
- goog.getMsg('Stars/Asterisks');
179
-
180
-
181
- /**
182
- * @desc Name for a symbol or character category. Used in a pull-down list
183
- * shown to a document editing user trying to insert a special character.
184
- * Newlines are not allowed; translation should be a noun and as consise as
185
- * possible. More details:
186
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
187
- * @type {string}
188
- */
189
- goog.i18n.CharPickerData.MSG_CP_SUBSCRIPT = goog.getMsg('Subscript');
190
-
191
-
192
- /**
193
- * @desc Name for a symbol or character category. Used in a pull-down list
194
- * shown to a document editing user trying to insert a special character.
195
- * Newlines are not allowed; translation should be a noun and as consise as
196
- * possible. More details:
197
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
198
- * @type {string}
199
- */
200
- goog.i18n.CharPickerData.MSG_CP_SUPERSCRIPT = goog.getMsg('Superscript');
201
-
202
-
203
- /**
204
- * @desc Name for a symbol or character category. Used in a pull-down list
205
- * shown to a document editing user trying to insert a special character.
206
- * Newlines are not allowed; translation should be a noun and as consise as
207
- * possible. More details:
208
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
209
- * @type {string}
210
- */
211
- goog.i18n.CharPickerData.MSG_CP_TECHNICAL = goog.getMsg('Technical');
212
-
213
-
214
- /**
215
- * @desc Name for a symbol or character category. Used in a pull-down list
216
- * shown to a document editing user trying to insert a special character.
217
- * Newlines are not allowed; translation should be a noun and as consise as
218
- * possible. More details:
219
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
220
- * @type {string}
221
- */
222
- goog.i18n.CharPickerData.MSG_CP_WEATHER_AND_ASTROLOGICAL =
223
- goog.getMsg('Weather and Astrological');
224
-
225
-
226
- /**
227
- * @desc Name for a symbol or character category. Used in a pull-down list
228
- * shown to a document editing user trying to insert a special character.
229
- * Newlines are not allowed; translation should be a noun and as consise as
230
- * possible. More details:
231
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
232
- * @type {string}
233
- */
234
- goog.i18n.CharPickerData.MSG_CP_YIJING_TAI_XUAN_JING =
235
- goog.getMsg('Yijing / Tai Xuan Jing');
236
-
237
-
238
- /**
239
- * @desc Name for a symbol or character category. Used in a pull-down list
240
- * shown to a document editing user trying to insert a special character.
241
- * Newlines are not allowed; translation should be a noun and as consise as
242
- * possible. More details:
243
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
244
- * @type {string}
245
- */
246
- goog.i18n.CharPickerData.MSG_CP_HISTORIC = goog.getMsg('Historic');
247
-
248
-
249
- /**
250
- * @desc Name for a symbol or character category. Used in a pull-down list
251
- * shown to a document editing user trying to insert a special character.
252
- * Newlines are not allowed; translation should be a noun and as consise as
253
- * possible. More details:
254
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
255
- * @type {string}
256
- */
257
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY = goog.getMsg('Compatibility');
258
-
259
-
260
- /**
261
- * @desc Name for a symbol or character category. Used in a pull-down list
262
- * shown to a document editing user trying to insert a special character.
263
- * Newlines are not allowed; translation should be a noun and as consise as
264
- * possible. More details:
265
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
266
- * @type {string}
267
- */
268
- goog.i18n.CharPickerData.MSG_CP_PUNCTUATION = goog.getMsg('Punctuation');
269
-
270
-
271
- /**
272
- * @desc Name for a symbol or character category. Used in a pull-down list
273
- * shown to a document editing user trying to insert a special character.
274
- * Newlines are not allowed; translation should be a noun and as consise as
275
- * possible. More details:
276
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
277
- * @type {string}
278
- */
279
- goog.i18n.CharPickerData.MSG_CP_ASCII_BASED = goog.getMsg('ASCII Based');
280
-
281
-
282
- /**
283
- * @desc Name for a symbol or character category. Used in a pull-down list
284
- * shown to a document editing user trying to insert a special character.
285
- * Newlines are not allowed; translation should be a noun and as consise as
286
- * possible. More details:
287
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
288
- * @type {string}
289
- */
290
- goog.i18n.CharPickerData.MSG_CP_DASH_CONNECTOR = goog.getMsg('Dash/Connector');
291
-
292
-
293
- /**
294
- * @desc Name for a symbol or character category. Used in a pull-down list
295
- * shown to a document editing user trying to insert a special character.
296
- * Newlines are not allowed; translation should be a noun and as consise as
297
- * possible. More details:
298
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
299
- * @type {string}
300
- */
301
- goog.i18n.CharPickerData.MSG_CP_OTHER = goog.getMsg('Other');
302
-
303
-
304
- /**
305
- * @desc Name for a symbol or character category. Used in a pull-down list
306
- * shown to a document editing user trying to insert a special character.
307
- * Newlines are not allowed; translation should be a noun and as consise as
308
- * possible. More details:
309
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
310
- * @type {string}
311
- */
312
- goog.i18n.CharPickerData.MSG_CP_PAIRED = goog.getMsg('Paired');
313
-
314
-
315
- /**
316
- * @desc Name for a symbol or character category. Used in a pull-down list
317
- * shown to a document editing user trying to insert a special character.
318
- * Newlines are not allowed; translation should be a noun and as consise as
319
- * possible. More details:
320
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
321
- * @type {string}
322
- */
323
- goog.i18n.CharPickerData.MSG_CP_NUMBER = goog.getMsg('Number');
324
-
325
-
326
- /**
327
- * @desc Name for a symbol or character category. Used in a pull-down list
328
- * shown to a document editing user trying to insert a special character.
329
- * Newlines are not allowed; translation should be a noun and as consise as
330
- * possible. More details:
331
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
332
- * @type {string}
333
- */
334
- goog.i18n.CharPickerData.MSG_CP_DECIMAL = goog.getMsg('Decimal');
335
-
336
-
337
- /**
338
- * @desc Name for a symbol or character category. Used in a pull-down list
339
- * shown to a document editing user trying to insert a special character.
340
- * Newlines are not allowed; translation should be a noun and as consise as
341
- * possible. More details:
342
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
343
- * @type {string}
344
- */
345
- goog.i18n.CharPickerData.MSG_CP_ENCLOSED_DOTTED =
346
- goog.getMsg('Enclosed/Dotted');
347
-
348
-
349
- /**
350
- * @desc Name for a symbol or character category. Used in a pull-down list
351
- * shown to a document editing user trying to insert a special character.
352
- * Newlines are not allowed; translation should be a noun and as consise as
353
- * possible. More details:
354
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
355
- * @type {string}
356
- */
357
- goog.i18n.CharPickerData.MSG_CP_FRACTIONS_RELATED =
358
- goog.getMsg('Fractions/Related');
359
-
360
-
361
- /**
362
- * @desc Name for a symbol or character category. Used in a pull-down list
363
- * shown to a document editing user trying to insert a special character.
364
- * Newlines are not allowed; translation should be a noun and as consise as
365
- * possible. More details:
366
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
367
- * @type {string}
368
- */
369
- goog.i18n.CharPickerData.MSG_CP_FORMAT_WHITESPACE =
370
- goog.getMsg('Format & Whitespace');
371
-
372
-
373
- /**
374
- * @desc Name for a symbol or character category. Used in a pull-down list
375
- * shown to a document editing user trying to insert a special character.
376
- * Newlines are not allowed; translation should be a noun and as consise as
377
- * possible. More details:
378
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
379
- * @type {string}
380
- */
381
- goog.i18n.CharPickerData.MSG_CP_FORMAT = goog.getMsg('Format');
382
-
383
-
384
- /**
385
- * @desc Name for a symbol or character category. Used in a pull-down list
386
- * shown to a document editing user trying to insert a special character.
387
- * Newlines are not allowed; translation should be a noun and as consise as
388
- * possible. More details:
389
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
390
- * @type {string}
391
- */
392
- goog.i18n.CharPickerData.MSG_CP_VARIATION_SELECTOR =
393
- goog.getMsg('Variation Selector');
394
-
395
-
396
- /**
397
- * @desc Name for a symbol or character category. Used in a pull-down list
398
- * shown to a document editing user trying to insert a special character.
399
- * Newlines are not allowed; translation should be a noun and as consise as
400
- * possible. More details:
401
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
402
- * @type {string}
403
- */
404
- goog.i18n.CharPickerData.MSG_CP_WHITESPACE = goog.getMsg('Whitespace');
405
-
406
-
407
- /**
408
- * @desc Name for a symbol or character category. Used in a pull-down list
409
- * shown to a document editing user trying to insert a special character.
410
- * Newlines are not allowed; translation should be a noun and as consise as
411
- * possible. More details:
412
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
413
- * @type {string}
414
- */
415
- goog.i18n.CharPickerData.MSG_CP_MODIFIER = goog.getMsg('Modifier');
416
-
417
-
418
- /**
419
- * @desc Name for a symbol or character category. Used in a pull-down list
420
- * shown to a document editing user trying to insert a special character.
421
- * Newlines are not allowed; translation should be a noun and as consise as
422
- * possible. More details:
423
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
424
- * @type {string}
425
- */
426
- goog.i18n.CharPickerData.MSG_CP_ENCLOSING = goog.getMsg('Enclosing');
427
-
428
-
429
- /**
430
- * @desc Name for a symbol or character category. Used in a pull-down list
431
- * shown to a document editing user trying to insert a special character.
432
- * Newlines are not allowed; translation should be a noun and as consise as
433
- * possible. More details:
434
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
435
- * @type {string}
436
- */
437
- goog.i18n.CharPickerData.MSG_CP_NONSPACING = goog.getMsg('Nonspacing');
438
-
439
-
440
- /**
441
- * @desc Name for a symbol or character category. Used in a pull-down list
442
- * shown to a document editing user trying to insert a special character.
443
- * Newlines are not allowed; translation should be a noun and as consise as
444
- * possible. More details:
445
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
446
- * @type {string}
447
- */
448
- goog.i18n.CharPickerData.MSG_CP_SPACING = goog.getMsg('Spacing');
449
-
450
-
451
- /**
452
- * @desc Name for a symbol or character category. Used in a pull-down list
453
- * shown to a document editing user trying to insert a special character.
454
- * Newlines are not allowed; translation should be a noun and as consise as
455
- * possible. More details:
456
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
457
- * @type {string}
458
- */
459
- goog.i18n.CharPickerData.MSG_CP_LATIN = goog.getMsg('Latin');
460
-
461
-
462
- /**
463
- * @desc Name for a symbol or character category. Used in a pull-down list
464
- * shown to a document editing user trying to insert a special character.
465
- * Newlines are not allowed; translation should be a noun and as consise as
466
- * possible. More details:
467
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
468
- * @type {string}
469
- */
470
- goog.i18n.CharPickerData.MSG_CP_COMMON = goog.getMsg('Common');
471
-
472
-
473
- /**
474
- * @desc Name for a symbol or character category. Used in a pull-down list
475
- * shown to a document editing user trying to insert a special character.
476
- * Newlines are not allowed; translation should be a noun and as consise as
477
- * possible. More details:
478
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
479
- * @type {string}
480
- */
481
- goog.i18n.CharPickerData.MSG_CP_ENCLOSED = goog.getMsg('Enclosed');
482
-
483
-
484
- /**
485
- * @desc Name for a symbol or character category. Used in a pull-down list
486
- * shown to a document editing user trying to insert a special character.
487
- * Newlines are not allowed; translation should be a noun and as consise as
488
- * possible. More details:
489
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
490
- * @type {string}
491
- */
492
- goog.i18n.CharPickerData.MSG_CP_FLIPPED_MIRRORED =
493
- goog.getMsg('Flipped/Mirrored');
494
-
495
-
496
- /**
497
- * @desc Name for a symbol or character category. Used in a pull-down list
498
- * shown to a document editing user trying to insert a special character.
499
- * Newlines are not allowed; translation should be a noun and as consise as
500
- * possible. More details:
501
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
502
- * @type {string}
503
- */
504
- goog.i18n.CharPickerData.MSG_CP_PHONETICS_IPA = goog.getMsg('Phonetics (IPA)');
505
-
506
-
507
- /**
508
- * @desc Name for a symbol or character category. Used in a pull-down list
509
- * shown to a document editing user trying to insert a special character.
510
- * Newlines are not allowed; translation should be a noun and as consise as
511
- * possible. More details:
512
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
513
- * @type {string}
514
- */
515
- goog.i18n.CharPickerData.MSG_CP_PHONETICS_X_IPA =
516
- goog.getMsg('Phonetics (X-IPA)');
517
-
518
-
519
- /**
520
- * @desc Name for a symbol or character category. Used in a pull-down list
521
- * shown to a document editing user trying to insert a special character.
522
- * Newlines are not allowed; translation should be a noun and as consise as
523
- * possible. More details:
524
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
525
- * @type {string}
526
- */
527
- goog.i18n.CharPickerData.MSG_CP_OTHER_EUROPEAN_SCRIPTS =
528
- goog.getMsg('Other European Scripts');
529
-
530
-
531
- /**
532
- * @desc Name for a symbol or character category. Used in a pull-down list
533
- * shown to a document editing user trying to insert a special character.
534
- * Newlines are not allowed; translation should be a noun and as consise as
535
- * possible. More details:
536
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
537
- * @type {string}
538
- */
539
- goog.i18n.CharPickerData.MSG_CP_ARMENIAN = goog.getMsg('Armenian');
540
-
541
-
542
- /**
543
- * @desc Name for a symbol or character category. Used in a pull-down list
544
- * shown to a document editing user trying to insert a special character.
545
- * Newlines are not allowed; translation should be a noun and as consise as
546
- * possible. More details:
547
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
548
- * @type {string}
549
- */
550
- goog.i18n.CharPickerData.MSG_CP_CYRILLIC = goog.getMsg('Cyrillic');
551
-
552
-
553
- /**
554
- * @desc Name for a symbol or character category. Used in a pull-down list
555
- * shown to a document editing user trying to insert a special character.
556
- * Newlines are not allowed; translation should be a noun and as consise as
557
- * possible. More details:
558
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
559
- * @type {string}
560
- */
561
- goog.i18n.CharPickerData.MSG_CP_GEORGIAN = goog.getMsg('Georgian');
562
-
563
-
564
- /**
565
- * @desc Name for a symbol or character category. Used in a pull-down list
566
- * shown to a document editing user trying to insert a special character.
567
- * Newlines are not allowed; translation should be a noun and as consise as
568
- * possible. More details:
569
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
570
- * @type {string}
571
- */
572
- goog.i18n.CharPickerData.MSG_CP_GREEK = goog.getMsg('Greek');
573
-
574
-
575
- /**
576
- * @desc Name for a symbol or character category. Used in a pull-down list
577
- * shown to a document editing user trying to insert a special character.
578
- * Newlines are not allowed; translation should be a noun and as consise as
579
- * possible. More details:
580
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
581
- * @type {string}
582
- */
583
- goog.i18n.CharPickerData.MSG_CP_COPTIC = goog.getMsg('Coptic');
584
-
585
-
586
- /**
587
- * @desc Name for a symbol or character category. Used in a pull-down list
588
- * shown to a document editing user trying to insert a special character.
589
- * Newlines are not allowed; translation should be a noun and as consise as
590
- * possible. More details:
591
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
592
- * @type {string}
593
- */
594
- goog.i18n.CharPickerData.MSG_CP_CYPRIOT = goog.getMsg('Cypriot');
595
-
596
-
597
- /**
598
- * @desc Name for a symbol or character category. Used in a pull-down list
599
- * shown to a document editing user trying to insert a special character.
600
- * Newlines are not allowed; translation should be a noun and as consise as
601
- * possible. More details:
602
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
603
- * @type {string}
604
- */
605
- goog.i18n.CharPickerData.MSG_CP_GLAGOLITIC = goog.getMsg('Glagolitic');
606
-
607
-
608
- /**
609
- * @desc Name for a symbol or character category. Used in a pull-down list
610
- * shown to a document editing user trying to insert a special character.
611
- * Newlines are not allowed; translation should be a noun and as consise as
612
- * possible. More details:
613
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
614
- * @type {string}
615
- */
616
- goog.i18n.CharPickerData.MSG_CP_GOTHIC = goog.getMsg('Gothic');
617
-
618
-
619
- /**
620
- * @desc Name for a symbol or character category. Used in a pull-down list
621
- * shown to a document editing user trying to insert a special character.
622
- * Newlines are not allowed; translation should be a noun and as consise as
623
- * possible. More details:
624
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
625
- * @type {string}
626
- */
627
- goog.i18n.CharPickerData.MSG_CP_LINEAR_B = goog.getMsg('Linear B');
628
-
629
-
630
- /**
631
- * @desc Name for a symbol or character category. Used in a pull-down list
632
- * shown to a document editing user trying to insert a special character.
633
- * Newlines are not allowed; translation should be a noun and as consise as
634
- * possible. More details:
635
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
636
- * @type {string}
637
- */
638
- goog.i18n.CharPickerData.MSG_CP_OGHAM = goog.getMsg('Ogham');
639
-
640
-
641
- /**
642
- * @desc Name for a symbol or character category. Used in a pull-down list
643
- * shown to a document editing user trying to insert a special character.
644
- * Newlines are not allowed; translation should be a noun and as consise as
645
- * possible. More details:
646
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
647
- * @type {string}
648
- */
649
- goog.i18n.CharPickerData.MSG_CP_OLD_ITALIC = goog.getMsg('Old Italic');
650
-
651
-
652
- /**
653
- * @desc Name for a symbol or character category. Used in a pull-down list
654
- * shown to a document editing user trying to insert a special character.
655
- * Newlines are not allowed; translation should be a noun and as consise as
656
- * possible. More details:
657
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
658
- * @type {string}
659
- */
660
- goog.i18n.CharPickerData.MSG_CP_RUNIC = goog.getMsg('Runic');
661
-
662
-
663
- /**
664
- * @desc Name for a symbol or character category. Used in a pull-down list
665
- * shown to a document editing user trying to insert a special character.
666
- * Newlines are not allowed; translation should be a noun and as consise as
667
- * possible. More details:
668
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
669
- * @type {string}
670
- */
671
- goog.i18n.CharPickerData.MSG_CP_SHAVIAN = goog.getMsg('Shavian');
672
-
673
-
674
- /**
675
- * @desc Name for a symbol or character category. Used in a pull-down list
676
- * shown to a document editing user trying to insert a special character.
677
- * Newlines are not allowed; translation should be a noun and as consise as
678
- * possible. More details:
679
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
680
- * @type {string}
681
- */
682
- goog.i18n.CharPickerData.MSG_CP_AMERICAN_SCRIPTS =
683
- goog.getMsg('American Scripts');
684
-
685
-
686
- /**
687
- * @desc Name for a symbol or character category. Used in a pull-down list
688
- * shown to a document editing user trying to insert a special character.
689
- * Newlines are not allowed; translation should be a noun and as consise as
690
- * possible. More details:
691
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
692
- * @type {string}
693
- */
694
- goog.i18n.CharPickerData.MSG_CP_CANADIAN_ABORIGINAL =
695
- goog.getMsg('Canadian Aboriginal');
696
-
697
-
698
- /**
699
- * @desc Name for a symbol or character category. Used in a pull-down list
700
- * shown to a document editing user trying to insert a special character.
701
- * Newlines are not allowed; translation should be a noun and as consise as
702
- * possible. More details:
703
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
704
- * @type {string}
705
- */
706
- goog.i18n.CharPickerData.MSG_CP_CHEROKEE = goog.getMsg('Cherokee');
707
-
708
-
709
- /**
710
- * @desc Name for a symbol or character category. Used in a pull-down list
711
- * shown to a document editing user trying to insert a special character.
712
- * Newlines are not allowed; translation should be a noun and as consise as
713
- * possible. More details:
714
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
715
- * @type {string}
716
- */
717
- goog.i18n.CharPickerData.MSG_CP_DESERET = goog.getMsg('Deseret');
718
-
719
-
720
- /**
721
- * @desc Name for a symbol or character category. Used in a pull-down list
722
- * shown to a document editing user trying to insert a special character.
723
- * Newlines are not allowed; translation should be a noun and as consise as
724
- * possible. More details:
725
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
726
- * @type {string}
727
- */
728
- goog.i18n.CharPickerData.MSG_CP_AFRICAN_SCRIPTS =
729
- goog.getMsg('African Scripts');
730
-
731
-
732
- /**
733
- * @desc Name for a symbol or character category. Used in a pull-down list
734
- * shown to a document editing user trying to insert a special character.
735
- * Newlines are not allowed; translation should be a noun and as consise as
736
- * possible. More details:
737
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
738
- * @type {string}
739
- */
740
- goog.i18n.CharPickerData.MSG_CP_ETHIOPIC = goog.getMsg('Ethiopic');
741
-
742
-
743
- /**
744
- * @desc Name for a symbol or character category. Used in a pull-down list
745
- * shown to a document editing user trying to insert a special character.
746
- * Newlines are not allowed; translation should be a noun and as consise as
747
- * possible. More details:
748
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
749
- * @type {string}
750
- */
751
- goog.i18n.CharPickerData.MSG_CP_NKO = goog.getMsg('Nko');
752
-
753
-
754
- /**
755
- * @desc Name for a symbol or character category. Used in a pull-down list
756
- * shown to a document editing user trying to insert a special character.
757
- * Newlines are not allowed; translation should be a noun and as consise as
758
- * possible. More details:
759
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
760
- * @type {string}
761
- */
762
- goog.i18n.CharPickerData.MSG_CP_TIFINAGH = goog.getMsg('Tifinagh');
763
-
764
-
765
- /**
766
- * @desc Name for a symbol or character category. Used in a pull-down list
767
- * shown to a document editing user trying to insert a special character.
768
- * Newlines are not allowed; translation should be a noun and as consise as
769
- * possible. More details:
770
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
771
- * @type {string}
772
- */
773
- goog.i18n.CharPickerData.MSG_CP_VAI = goog.getMsg('Vai');
774
-
775
-
776
- /**
777
- * @desc Name for a symbol or character category. Used in a pull-down list
778
- * shown to a document editing user trying to insert a special character.
779
- * Newlines are not allowed; translation should be a noun and as consise as
780
- * possible. More details:
781
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
782
- * @type {string}
783
- */
784
- goog.i18n.CharPickerData.MSG_CP_OSMANYA = goog.getMsg('Osmanya');
785
-
786
-
787
- /**
788
- * @desc Name for a symbol or character category. Used in a pull-down list
789
- * shown to a document editing user trying to insert a special character.
790
- * Newlines are not allowed; translation should be a noun and as consise as
791
- * possible. More details:
792
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
793
- * @type {string}
794
- */
795
- goog.i18n.CharPickerData.MSG_CP_MIDDLE_EASTERN_SCRIPTS =
796
- goog.getMsg('Middle Eastern Scripts');
797
-
798
-
799
- /**
800
- * @desc Name for a symbol or character category. Used in a pull-down list
801
- * shown to a document editing user trying to insert a special character.
802
- * Newlines are not allowed; translation should be a noun and as consise as
803
- * possible. More details:
804
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
805
- * @type {string}
806
- */
807
- goog.i18n.CharPickerData.MSG_CP_ARABIC = goog.getMsg('Arabic');
808
-
809
-
810
- /**
811
- * @desc Name for a symbol or character category. Used in a pull-down list
812
- * shown to a document editing user trying to insert a special character.
813
- * Newlines are not allowed; translation should be a noun and as consise as
814
- * possible. More details:
815
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
816
- * @type {string}
817
- */
818
- goog.i18n.CharPickerData.MSG_CP_HEBREW = goog.getMsg('Hebrew');
819
-
820
-
821
- /**
822
- * @desc Name for a symbol or character category. Used in a pull-down list
823
- * shown to a document editing user trying to insert a special character.
824
- * Newlines are not allowed; translation should be a noun and as consise as
825
- * possible. More details:
826
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
827
- * @type {string}
828
- */
829
- goog.i18n.CharPickerData.MSG_CP_THAANA = goog.getMsg('Thaana');
830
-
831
-
832
- /**
833
- * @desc Name for a symbol or character category. Used in a pull-down list
834
- * shown to a document editing user trying to insert a special character.
835
- * Newlines are not allowed; translation should be a noun and as consise as
836
- * possible. More details:
837
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
838
- * @type {string}
839
- */
840
- goog.i18n.CharPickerData.MSG_CP_CARIAN = goog.getMsg('Carian');
841
-
842
-
843
- /**
844
- * @desc Name for a symbol or character category. Used in a pull-down list
845
- * shown to a document editing user trying to insert a special character.
846
- * Newlines are not allowed; translation should be a noun and as consise as
847
- * possible. More details:
848
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
849
- * @type {string}
850
- */
851
- goog.i18n.CharPickerData.MSG_CP_CUNEIFORM = goog.getMsg('Cuneiform');
852
-
853
-
854
- /**
855
- * @desc Name for a symbol or character category. Used in a pull-down list
856
- * shown to a document editing user trying to insert a special character.
857
- * Newlines are not allowed; translation should be a noun and as consise as
858
- * possible. More details:
859
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
860
- * @type {string}
861
- */
862
- goog.i18n.CharPickerData.MSG_CP_LYCIAN = goog.getMsg('Lycian');
863
-
864
-
865
- /**
866
- * @desc Name for a symbol or character category. Used in a pull-down list
867
- * shown to a document editing user trying to insert a special character.
868
- * Newlines are not allowed; translation should be a noun and as consise as
869
- * possible. More details:
870
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
871
- * @type {string}
872
- */
873
- goog.i18n.CharPickerData.MSG_CP_LYDIAN = goog.getMsg('Lydian');
874
-
875
-
876
- /**
877
- * @desc Name for a symbol or character category. Used in a pull-down list
878
- * shown to a document editing user trying to insert a special character.
879
- * Newlines are not allowed; translation should be a noun and as consise as
880
- * possible. More details:
881
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
882
- * @type {string}
883
- */
884
- goog.i18n.CharPickerData.MSG_CP_OLD_PERSIAN = goog.getMsg('Old Persian');
885
-
886
-
887
- /**
888
- * @desc Name for a symbol or character category. Used in a pull-down list
889
- * shown to a document editing user trying to insert a special character.
890
- * Newlines are not allowed; translation should be a noun and as consise as
891
- * possible. More details:
892
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
893
- * @type {string}
894
- */
895
- goog.i18n.CharPickerData.MSG_CP_PHOENICIAN = goog.getMsg('Phoenician');
896
-
897
-
898
- /**
899
- * @desc Name for a symbol or character category. Used in a pull-down list
900
- * shown to a document editing user trying to insert a special character.
901
- * Newlines are not allowed; translation should be a noun and as consise as
902
- * possible. More details:
903
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
904
- * @type {string}
905
- */
906
- goog.i18n.CharPickerData.MSG_CP_SYRIAC = goog.getMsg('Syriac');
907
-
908
-
909
- /**
910
- * @desc Name for a symbol or character category. Used in a pull-down list
911
- * shown to a document editing user trying to insert a special character.
912
- * Newlines are not allowed; translation should be a noun and as consise as
913
- * possible. More details:
914
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
915
- * @type {string}
916
- */
917
- goog.i18n.CharPickerData.MSG_CP_UGARITIC = goog.getMsg('Ugaritic');
918
-
919
-
920
- /**
921
- * @desc Name for a symbol or character category. Used in a pull-down list
922
- * shown to a document editing user trying to insert a special character.
923
- * Newlines are not allowed; translation should be a noun and as consise as
924
- * possible. More details:
925
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
926
- * @type {string}
927
- */
928
- goog.i18n.CharPickerData.MSG_CP_SOUTH_ASIAN_SCRIPTS =
929
- goog.getMsg('South Asian Scripts');
930
-
931
-
932
- /**
933
- * @desc Name for a symbol or character category. Used in a pull-down list
934
- * shown to a document editing user trying to insert a special character.
935
- * Newlines are not allowed; translation should be a noun and as consise as
936
- * possible. More details:
937
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
938
- * @type {string}
939
- */
940
- goog.i18n.CharPickerData.MSG_CP_BENGALI = goog.getMsg('Bengali');
941
-
942
-
943
- /**
944
- * @desc Name for a symbol or character category. Used in a pull-down list
945
- * shown to a document editing user trying to insert a special character.
946
- * Newlines are not allowed; translation should be a noun and as consise as
947
- * possible. More details:
948
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
949
- * @type {string}
950
- */
951
- goog.i18n.CharPickerData.MSG_CP_DEVANAGARI = goog.getMsg('Devanagari');
952
-
953
-
954
- /**
955
- * @desc Name for a symbol or character category. Used in a pull-down list
956
- * shown to a document editing user trying to insert a special character.
957
- * Newlines are not allowed; translation should be a noun and as consise as
958
- * possible. More details:
959
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
960
- * @type {string}
961
- */
962
- goog.i18n.CharPickerData.MSG_CP_GUJARATI = goog.getMsg('Gujarati');
963
-
964
-
965
- /**
966
- * @desc Name for a symbol or character category. Used in a pull-down list
967
- * shown to a document editing user trying to insert a special character.
968
- * Newlines are not allowed; translation should be a noun and as consise as
969
- * possible. More details:
970
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
971
- * @type {string}
972
- */
973
- goog.i18n.CharPickerData.MSG_CP_GURMUKHI = goog.getMsg('Gurmukhi');
974
-
975
-
976
- /**
977
- * @desc Name for a symbol or character category. Used in a pull-down list
978
- * shown to a document editing user trying to insert a special character.
979
- * Newlines are not allowed; translation should be a noun and as consise as
980
- * possible. More details:
981
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
982
- * @type {string}
983
- */
984
- goog.i18n.CharPickerData.MSG_CP_KANNADA = goog.getMsg('Kannada');
985
-
986
-
987
- /**
988
- * @desc Name for a symbol or character category. Used in a pull-down list
989
- * shown to a document editing user trying to insert a special character.
990
- * Newlines are not allowed; translation should be a noun and as consise as
991
- * possible. More details:
992
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
993
- * @type {string}
994
- */
995
- goog.i18n.CharPickerData.MSG_CP_LEPCHA = goog.getMsg('Lepcha');
996
-
997
-
998
- /**
999
- * @desc Name for a symbol or character category. Used in a pull-down list
1000
- * shown to a document editing user trying to insert a special character.
1001
- * Newlines are not allowed; translation should be a noun and as consise as
1002
- * possible. More details:
1003
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1004
- * @type {string}
1005
- */
1006
- goog.i18n.CharPickerData.MSG_CP_LIMBU = goog.getMsg('Limbu');
1007
-
1008
-
1009
- /**
1010
- * @desc Name for a symbol or character category. Used in a pull-down list
1011
- * shown to a document editing user trying to insert a special character.
1012
- * Newlines are not allowed; translation should be a noun and as consise as
1013
- * possible. More details:
1014
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1015
- * @type {string}
1016
- */
1017
- goog.i18n.CharPickerData.MSG_CP_MALAYALAM = goog.getMsg('Malayalam');
1018
-
1019
-
1020
- /**
1021
- * @desc Name for a symbol or character category. Used in a pull-down list
1022
- * shown to a document editing user trying to insert a special character.
1023
- * Newlines are not allowed; translation should be a noun and as consise as
1024
- * possible. More details:
1025
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1026
- * @type {string}
1027
- */
1028
- goog.i18n.CharPickerData.MSG_CP_OL_CHIKI = goog.getMsg('Ol Chiki');
1029
-
1030
-
1031
- /**
1032
- * @desc Name for a symbol or character category. Used in a pull-down list
1033
- * shown to a document editing user trying to insert a special character.
1034
- * Newlines are not allowed; translation should be a noun and as consise as
1035
- * possible. More details:
1036
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1037
- * @type {string}
1038
- */
1039
- goog.i18n.CharPickerData.MSG_CP_ORIYA = goog.getMsg('Oriya');
1040
-
1041
-
1042
- /**
1043
- * @desc Name for a symbol or character category. Used in a pull-down list
1044
- * shown to a document editing user trying to insert a special character.
1045
- * Newlines are not allowed; translation should be a noun and as consise as
1046
- * possible. More details:
1047
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1048
- * @type {string}
1049
- */
1050
- goog.i18n.CharPickerData.MSG_CP_SAURASHTRA = goog.getMsg('Saurashtra');
1051
-
1052
-
1053
- /**
1054
- * @desc Name for a symbol or character category. Used in a pull-down list
1055
- * shown to a document editing user trying to insert a special character.
1056
- * Newlines are not allowed; translation should be a noun and as consise as
1057
- * possible. More details:
1058
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1059
- * @type {string}
1060
- */
1061
- goog.i18n.CharPickerData.MSG_CP_SINHALA = goog.getMsg('Sinhala');
1062
-
1063
-
1064
- /**
1065
- * @desc Name for a symbol or character category. Used in a pull-down list
1066
- * shown to a document editing user trying to insert a special character.
1067
- * Newlines are not allowed; translation should be a noun and as consise as
1068
- * possible. More details:
1069
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1070
- * @type {string}
1071
- */
1072
- goog.i18n.CharPickerData.MSG_CP_TAMIL = goog.getMsg('Tamil');
1073
-
1074
-
1075
- /**
1076
- * @desc Name for a symbol or character category. Used in a pull-down list
1077
- * shown to a document editing user trying to insert a special character.
1078
- * Newlines are not allowed; translation should be a noun and as consise as
1079
- * possible. More details:
1080
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1081
- * @type {string}
1082
- */
1083
- goog.i18n.CharPickerData.MSG_CP_TELUGU = goog.getMsg('Telugu');
1084
-
1085
-
1086
- /**
1087
- * @desc Name for a symbol or character category. Used in a pull-down list
1088
- * shown to a document editing user trying to insert a special character.
1089
- * Newlines are not allowed; translation should be a noun and as consise as
1090
- * possible. More details:
1091
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1092
- * @type {string}
1093
- */
1094
- goog.i18n.CharPickerData.MSG_CP_TIBETAN = goog.getMsg('Tibetan');
1095
-
1096
-
1097
- /**
1098
- * @desc Name for a symbol or character category. Used in a pull-down list
1099
- * shown to a document editing user trying to insert a special character.
1100
- * Newlines are not allowed; translation should be a noun and as consise as
1101
- * possible. More details:
1102
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1103
- * @type {string}
1104
- */
1105
- goog.i18n.CharPickerData.MSG_CP_KHAROSHTHI = goog.getMsg('Kharoshthi');
1106
-
1107
-
1108
- /**
1109
- * @desc Name for a symbol or character category. Used in a pull-down list
1110
- * shown to a document editing user trying to insert a special character.
1111
- * Newlines are not allowed; translation should be a noun and as consise as
1112
- * possible. More details:
1113
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1114
- * @type {string}
1115
- */
1116
- goog.i18n.CharPickerData.MSG_CP_PHAGS_PA = goog.getMsg('Phags Pa');
1117
-
1118
-
1119
- /**
1120
- * @desc Name for a symbol or character category. Used in a pull-down list
1121
- * shown to a document editing user trying to insert a special character.
1122
- * Newlines are not allowed; translation should be a noun and as consise as
1123
- * possible. More details:
1124
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1125
- * @type {string}
1126
- */
1127
- goog.i18n.CharPickerData.MSG_CP_SYLOTI_NAGRI = goog.getMsg('Syloti Nagri');
1128
-
1129
-
1130
- /**
1131
- * @desc Name for a symbol or character category. Used in a pull-down list
1132
- * shown to a document editing user trying to insert a special character.
1133
- * Newlines are not allowed; translation should be a noun and as consise as
1134
- * possible. More details:
1135
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1136
- * @type {string}
1137
- */
1138
- goog.i18n.CharPickerData.MSG_CP_SOUTHEAST_ASIAN_SCRIPTS =
1139
- goog.getMsg('Southeast Asian Scripts');
1140
-
1141
-
1142
- /**
1143
- * @desc Name for a symbol or character category. Used in a pull-down list
1144
- * shown to a document editing user trying to insert a special character.
1145
- * Newlines are not allowed; translation should be a noun and as consise as
1146
- * possible. More details:
1147
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1148
- * @type {string}
1149
- */
1150
- goog.i18n.CharPickerData.MSG_CP_BALINESE = goog.getMsg('Balinese');
1151
-
1152
-
1153
- /**
1154
- * @desc Name for a symbol or character category. Used in a pull-down list
1155
- * shown to a document editing user trying to insert a special character.
1156
- * Newlines are not allowed; translation should be a noun and as consise as
1157
- * possible. More details:
1158
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1159
- * @type {string}
1160
- */
1161
- goog.i18n.CharPickerData.MSG_CP_CHAM = goog.getMsg('Cham');
1162
-
1163
-
1164
- /**
1165
- * @desc Name for a symbol or character category. Used in a pull-down list
1166
- * shown to a document editing user trying to insert a special character.
1167
- * Newlines are not allowed; translation should be a noun and as consise as
1168
- * possible. More details:
1169
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1170
- * @type {string}
1171
- */
1172
- goog.i18n.CharPickerData.MSG_CP_KAYAH_LI = goog.getMsg('Kayah Li');
1173
-
1174
-
1175
- /**
1176
- * @desc Name for a symbol or character category. Used in a pull-down list
1177
- * shown to a document editing user trying to insert a special character.
1178
- * Newlines are not allowed; translation should be a noun and as consise as
1179
- * possible. More details:
1180
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1181
- * @type {string}
1182
- */
1183
- goog.i18n.CharPickerData.MSG_CP_KHMER = goog.getMsg('Khmer');
1184
-
1185
-
1186
- /**
1187
- * @desc Name for a symbol or character category. Used in a pull-down list
1188
- * shown to a document editing user trying to insert a special character.
1189
- * Newlines are not allowed; translation should be a noun and as consise as
1190
- * possible. More details:
1191
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1192
- * @type {string}
1193
- */
1194
- goog.i18n.CharPickerData.MSG_CP_LAO = goog.getMsg('Lao');
1195
-
1196
-
1197
- /**
1198
- * @desc Name for a symbol or character category. Used in a pull-down list
1199
- * shown to a document editing user trying to insert a special character.
1200
- * Newlines are not allowed; translation should be a noun and as consise as
1201
- * possible. More details:
1202
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1203
- * @type {string}
1204
- */
1205
- goog.i18n.CharPickerData.MSG_CP_MYANMAR = goog.getMsg('Myanmar');
1206
-
1207
-
1208
- /**
1209
- * @desc Name for a symbol or character category. Used in a pull-down list
1210
- * shown to a document editing user trying to insert a special character.
1211
- * Newlines are not allowed; translation should be a noun and as consise as
1212
- * possible. More details:
1213
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1214
- * @type {string}
1215
- */
1216
- goog.i18n.CharPickerData.MSG_CP_NEW_TAI_LUE = goog.getMsg('New Tai Lue');
1217
-
1218
-
1219
- /**
1220
- * @desc Name for a symbol or character category. Used in a pull-down list
1221
- * shown to a document editing user trying to insert a special character.
1222
- * Newlines are not allowed; translation should be a noun and as consise as
1223
- * possible. More details:
1224
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1225
- * @type {string}
1226
- */
1227
- goog.i18n.CharPickerData.MSG_CP_TAI_LE = goog.getMsg('Tai Le');
1228
-
1229
-
1230
- /**
1231
- * @desc Name for a symbol or character category. Used in a pull-down list
1232
- * shown to a document editing user trying to insert a special character.
1233
- * Newlines are not allowed; translation should be a noun and as consise as
1234
- * possible. More details:
1235
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1236
- * @type {string}
1237
- */
1238
- goog.i18n.CharPickerData.MSG_CP_THAI = goog.getMsg('Thai');
1239
-
1240
-
1241
- /**
1242
- * @desc Name for a symbol or character category. Used in a pull-down list
1243
- * shown to a document editing user trying to insert a special character.
1244
- * Newlines are not allowed; translation should be a noun and as consise as
1245
- * possible. More details:
1246
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1247
- * @type {string}
1248
- */
1249
- goog.i18n.CharPickerData.MSG_CP_BUGINESE = goog.getMsg('Buginese');
1250
-
1251
-
1252
- /**
1253
- * @desc Name for a symbol or character category. Used in a pull-down list
1254
- * shown to a document editing user trying to insert a special character.
1255
- * Newlines are not allowed; translation should be a noun and as consise as
1256
- * possible. More details:
1257
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1258
- * @type {string}
1259
- */
1260
- goog.i18n.CharPickerData.MSG_CP_BUHID = goog.getMsg('Buhid');
1261
-
1262
-
1263
- /**
1264
- * @desc Name for a symbol or character category. Used in a pull-down list
1265
- * shown to a document editing user trying to insert a special character.
1266
- * Newlines are not allowed; translation should be a noun and as consise as
1267
- * possible. More details:
1268
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1269
- * @type {string}
1270
- */
1271
- goog.i18n.CharPickerData.MSG_CP_HANUNOO = goog.getMsg('Hanunoo');
1272
-
1273
-
1274
- /**
1275
- * @desc Name for a symbol or character category. Used in a pull-down list
1276
- * shown to a document editing user trying to insert a special character.
1277
- * Newlines are not allowed; translation should be a noun and as consise as
1278
- * possible. More details:
1279
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1280
- * @type {string}
1281
- */
1282
- goog.i18n.CharPickerData.MSG_CP_REJANG = goog.getMsg('Rejang');
1283
-
1284
-
1285
- /**
1286
- * @desc Name for a symbol or character category. Used in a pull-down list
1287
- * shown to a document editing user trying to insert a special character.
1288
- * Newlines are not allowed; translation should be a noun and as consise as
1289
- * possible. More details:
1290
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1291
- * @type {string}
1292
- */
1293
- goog.i18n.CharPickerData.MSG_CP_SUNDANESE = goog.getMsg('Sundanese');
1294
-
1295
-
1296
- /**
1297
- * @desc Name for a symbol or character category. Used in a pull-down list
1298
- * shown to a document editing user trying to insert a special character.
1299
- * Newlines are not allowed; translation should be a noun and as consise as
1300
- * possible. More details:
1301
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1302
- * @type {string}
1303
- */
1304
- goog.i18n.CharPickerData.MSG_CP_TAGALOG = goog.getMsg('Tagalog');
1305
-
1306
-
1307
- /**
1308
- * @desc Name for a symbol or character category. Used in a pull-down list
1309
- * shown to a document editing user trying to insert a special character.
1310
- * Newlines are not allowed; translation should be a noun and as consise as
1311
- * possible. More details:
1312
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1313
- * @type {string}
1314
- */
1315
- goog.i18n.CharPickerData.MSG_CP_TAGBANWA = goog.getMsg('Tagbanwa');
1316
-
1317
-
1318
- /**
1319
- * @desc Name for a symbol or character category. Used in a pull-down list
1320
- * shown to a document editing user trying to insert a special character.
1321
- * Newlines are not allowed; translation should be a noun and as consise as
1322
- * possible. More details:
1323
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1324
- * @type {string}
1325
- */
1326
- goog.i18n.CharPickerData.MSG_CP_HANGUL = goog.getMsg('Hangul');
1327
-
1328
-
1329
- /**
1330
- * @desc Name for a symbol or character category. Used in a pull-down list
1331
- * shown to a document editing user trying to insert a special character.
1332
- * Newlines are not allowed; translation should be a noun and as consise as
1333
- * possible. More details:
1334
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1335
- * @type {string}
1336
- */
1337
- goog.i18n.CharPickerData.MSG_CP_OTHER_EAST_ASIAN_SCRIPTS =
1338
- goog.getMsg('Other East Asian Scripts');
1339
-
1340
-
1341
- /**
1342
- * @desc Name for a symbol or character category. Used in a pull-down list
1343
- * shown to a document editing user trying to insert a special character.
1344
- * Newlines are not allowed; translation should be a noun and as consise as
1345
- * possible. More details:
1346
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1347
- * @type {string}
1348
- */
1349
- goog.i18n.CharPickerData.MSG_CP_BOPOMOFO = goog.getMsg('Bopomofo');
1350
-
1351
-
1352
- /**
1353
- * @desc Name for a symbol or character category. Used in a pull-down list
1354
- * shown to a document editing user trying to insert a special character.
1355
- * Newlines are not allowed; translation should be a noun and as consise as
1356
- * possible. More details:
1357
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1358
- * @type {string}
1359
- */
1360
- goog.i18n.CharPickerData.MSG_CP_HIRAGANA = goog.getMsg('Hiragana');
1361
-
1362
-
1363
- /**
1364
- * @desc Name for a symbol or character category. Used in a pull-down list
1365
- * shown to a document editing user trying to insert a special character.
1366
- * Newlines are not allowed; translation should be a noun and as consise as
1367
- * possible. More details:
1368
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1369
- * @type {string}
1370
- */
1371
- goog.i18n.CharPickerData.MSG_CP_KATAKANA = goog.getMsg('Katakana');
1372
-
1373
-
1374
- /**
1375
- * @desc Name for a symbol or character category. Used in a pull-down list
1376
- * shown to a document editing user trying to insert a special character.
1377
- * Newlines are not allowed; translation should be a noun and as consise as
1378
- * possible. More details:
1379
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1380
- * @type {string}
1381
- */
1382
- goog.i18n.CharPickerData.MSG_CP_MONGOLIAN = goog.getMsg('Mongolian');
1383
-
1384
-
1385
- /**
1386
- * @desc Name for a symbol or character category. Used in a pull-down list
1387
- * shown to a document editing user trying to insert a special character.
1388
- * Newlines are not allowed; translation should be a noun and as consise as
1389
- * possible. More details:
1390
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1391
- * @type {string}
1392
- */
1393
- goog.i18n.CharPickerData.MSG_CP_YI = goog.getMsg('Yi');
1394
-
1395
-
1396
- /**
1397
- * @desc Name for a symbol or character category. Used in a pull-down list
1398
- * shown to a document editing user trying to insert a special character.
1399
- * Newlines are not allowed; translation should be a noun and as consise as
1400
- * possible. More details:
1401
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1402
- * @type {string}
1403
- */
1404
- goog.i18n.CharPickerData.MSG_CP_HAN_1_STROKE_RADICALS =
1405
- goog.getMsg('Han 1-Stroke Radicals');
1406
-
1407
-
1408
- /**
1409
- * @desc Name for a symbol or character category. Used in a pull-down list
1410
- * shown to a document editing user trying to insert a special character.
1411
- * Newlines are not allowed; translation should be a noun and as consise as
1412
- * possible. More details:
1413
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1414
- * @type {string}
1415
- */
1416
- goog.i18n.CharPickerData.MSG_CP_LESS_COMMON = goog.getMsg('Less Common');
1417
-
1418
-
1419
- /**
1420
- * @desc Name for a symbol or character category. Used in a pull-down list
1421
- * shown to a document editing user trying to insert a special character.
1422
- * Newlines are not allowed; translation should be a noun and as consise as
1423
- * possible. More details:
1424
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1425
- * @type {string}
1426
- */
1427
- goog.i18n.CharPickerData.MSG_CP_HAN_2_STROKE_RADICALS =
1428
- goog.getMsg('Han 2-Stroke Radicals');
1429
-
1430
-
1431
- /**
1432
- * @desc Name for a symbol or character category. Used in a pull-down list
1433
- * shown to a document editing user trying to insert a special character.
1434
- * Newlines are not allowed; translation should be a noun and as consise as
1435
- * possible. More details:
1436
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1437
- * @type {string}
1438
- */
1439
- goog.i18n.CharPickerData.MSG_CP_HAN_3_STROKE_RADICALS =
1440
- goog.getMsg('Han 3-Stroke Radicals');
1441
-
1442
-
1443
- /**
1444
- * @desc Name for a symbol or character category. Used in a pull-down list
1445
- * shown to a document editing user trying to insert a special character.
1446
- * Newlines are not allowed; translation should be a noun and as consise as
1447
- * possible. More details:
1448
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1449
- * @type {string}
1450
- */
1451
- goog.i18n.CharPickerData.MSG_CP_HAN_4_STROKE_RADICALS =
1452
- goog.getMsg('Han 4-Stroke Radicals');
1453
-
1454
-
1455
- /**
1456
- * @desc Name for a symbol or character category. Used in a pull-down list
1457
- * shown to a document editing user trying to insert a special character.
1458
- * Newlines are not allowed; translation should be a noun and as consise as
1459
- * possible. More details:
1460
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1461
- * @type {string}
1462
- */
1463
- goog.i18n.CharPickerData.MSG_CP_HAN_5_STROKE_RADICALS =
1464
- goog.getMsg('Han 5-Stroke Radicals');
1465
-
1466
-
1467
- /**
1468
- * @desc Name for a symbol or character category. Used in a pull-down list
1469
- * shown to a document editing user trying to insert a special character.
1470
- * Newlines are not allowed; translation should be a noun and as consise as
1471
- * possible. More details:
1472
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1473
- * @type {string}
1474
- */
1475
- goog.i18n.CharPickerData.MSG_CP_HAN_6_STROKE_RADICALS =
1476
- goog.getMsg('Han 6-Stroke Radicals');
1477
-
1478
-
1479
- /**
1480
- * @desc Name for a symbol or character category. Used in a pull-down list
1481
- * shown to a document editing user trying to insert a special character.
1482
- * Newlines are not allowed; translation should be a noun and as consise as
1483
- * possible. More details:
1484
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1485
- * @type {string}
1486
- */
1487
- goog.i18n.CharPickerData.MSG_CP_HAN_7_STROKE_RADICALS =
1488
- goog.getMsg('Han 7-Stroke Radicals');
1489
-
1490
-
1491
- /**
1492
- * @desc Name for a symbol or character category. Used in a pull-down list
1493
- * shown to a document editing user trying to insert a special character.
1494
- * Newlines are not allowed; translation should be a noun and as consise as
1495
- * possible. More details:
1496
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1497
- * @type {string}
1498
- */
1499
- goog.i18n.CharPickerData.MSG_CP_HAN_8_STROKE_RADICALS =
1500
- goog.getMsg('Han 8-Stroke Radicals');
1501
-
1502
-
1503
- /**
1504
- * @desc Name for a symbol or character category. Used in a pull-down list
1505
- * shown to a document editing user trying to insert a special character.
1506
- * Newlines are not allowed; translation should be a noun and as consise as
1507
- * possible. More details:
1508
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1509
- * @type {string}
1510
- */
1511
- goog.i18n.CharPickerData.MSG_CP_HAN_9_STROKE_RADICALS =
1512
- goog.getMsg('Han 9-Stroke Radicals');
1513
-
1514
-
1515
- /**
1516
- * @desc Name for a symbol or character category. Used in a pull-down list
1517
- * shown to a document editing user trying to insert a special character.
1518
- * Newlines are not allowed; translation should be a noun and as consise as
1519
- * possible. More details:
1520
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1521
- * @type {string}
1522
- */
1523
- goog.i18n.CharPickerData.MSG_CP_HAN_10_STROKE_RADICALS =
1524
- goog.getMsg('Han 10-Stroke Radicals');
1525
-
1526
-
1527
- /**
1528
- * @desc Name for a symbol or character category. Used in a pull-down list
1529
- * shown to a document editing user trying to insert a special character.
1530
- * Newlines are not allowed; translation should be a noun and as consise as
1531
- * possible. More details:
1532
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1533
- * @type {string}
1534
- */
1535
- goog.i18n.CharPickerData.MSG_CP_HAN_11_17_STROKE_RADICALS =
1536
- goog.getMsg('Han 11~17-Stroke Radicals');
1537
-
1538
-
1539
- /**
1540
- * @desc Name for a symbol or character category. Used in a pull-down list
1541
- * shown to a document editing user trying to insert a special character.
1542
- * Newlines are not allowed; translation should be a noun and as consise as
1543
- * possible. More details:
1544
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1545
- * @type {string}
1546
- */
1547
- goog.i18n.CharPickerData.MSG_CP_HAN_OTHER = goog.getMsg('Han - Other');
1548
-
1549
-
1550
- /**
1551
- * @desc Name for a symbol or character category. Used in a pull-down list
1552
- * shown to a document editing user trying to insert a special character.
1553
- * Newlines are not allowed; translation should be a noun and as consise as
1554
- * possible. More details:
1555
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1556
- * @type {string}
1557
- */
1558
- goog.i18n.CharPickerData.MSG_CP_CJK_STROKES = goog.getMsg('CJK Strokes');
1559
-
1560
-
1561
- /**
1562
- * @desc Name for a symbol or character category. Used in a pull-down list
1563
- * shown to a document editing user trying to insert a special character.
1564
- * Newlines are not allowed; translation should be a noun and as consise as
1565
- * possible. More details:
1566
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1567
- * @type {string}
1568
- */
1569
- goog.i18n.CharPickerData.MSG_CP_IDEOGRAPHIC_DESCRIPTION =
1570
- goog.getMsg('Ideographic Description');
1571
-
1572
-
1573
- /**
1574
- * @desc Name for a symbol or character category. Used in a pull-down list
1575
- * shown to a document editing user trying to insert a special character.
1576
- * Newlines are not allowed; translation should be a noun and as consise as
1577
- * possible. More details:
1578
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1579
- * @type {string}
1580
- */
1581
- goog.i18n.CharPickerData.MSG_CP_NUMERICS = goog.getMsg('Numerics');
1582
-
1583
-
1584
- /**
1585
- * @desc Name for a symbol or character category. Used in a pull-down list
1586
- * shown to a document editing user trying to insert a special character.
1587
- * Newlines are not allowed; translation should be a noun and as consise as
1588
- * possible. More details:
1589
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1590
- * @type {string}
1591
- */
1592
- goog.i18n.CharPickerData.MSG_CP_PINYIN = goog.getMsg('Pinyin');
1593
-
1594
-
1595
- /**
1596
- * @desc Name for a symbol or character category. Used in a pull-down list
1597
- * shown to a document editing user trying to insert a special character.
1598
- * Newlines are not allowed; translation should be a noun and as consise as
1599
- * possible. More details:
1600
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1601
- * @type {string}
1602
- */
1603
- goog.i18n.CharPickerData.MSG_CP_ALL = goog.getMsg('All');
1604
-
1605
-
1606
- /**
1607
- * Top catagory names of character organization.
1608
- * @type {Array.<string>}
1609
- */
1610
- goog.i18n.CharPickerData.prototype.categories = [
1611
- goog.i18n.CharPickerData.MSG_CP_SYMBOL,
1612
- goog.i18n.CharPickerData.MSG_CP_PUNCTUATION,
1613
- goog.i18n.CharPickerData.MSG_CP_NUMBER,
1614
- goog.i18n.CharPickerData.MSG_CP_FORMAT_WHITESPACE,
1615
- goog.i18n.CharPickerData.MSG_CP_MODIFIER,
1616
- goog.i18n.CharPickerData.MSG_CP_LATIN,
1617
- goog.i18n.CharPickerData.MSG_CP_OTHER_EUROPEAN_SCRIPTS,
1618
- goog.i18n.CharPickerData.MSG_CP_AMERICAN_SCRIPTS,
1619
- goog.i18n.CharPickerData.MSG_CP_AFRICAN_SCRIPTS,
1620
- goog.i18n.CharPickerData.MSG_CP_MIDDLE_EASTERN_SCRIPTS,
1621
- goog.i18n.CharPickerData.MSG_CP_SOUTH_ASIAN_SCRIPTS,
1622
- goog.i18n.CharPickerData.MSG_CP_SOUTHEAST_ASIAN_SCRIPTS,
1623
- goog.i18n.CharPickerData.MSG_CP_HANGUL,
1624
- goog.i18n.CharPickerData.MSG_CP_OTHER_EAST_ASIAN_SCRIPTS,
1625
- goog.i18n.CharPickerData.MSG_CP_HAN_1_STROKE_RADICALS,
1626
- goog.i18n.CharPickerData.MSG_CP_HAN_2_STROKE_RADICALS,
1627
- goog.i18n.CharPickerData.MSG_CP_HAN_3_STROKE_RADICALS,
1628
- goog.i18n.CharPickerData.MSG_CP_HAN_4_STROKE_RADICALS,
1629
- goog.i18n.CharPickerData.MSG_CP_HAN_5_STROKE_RADICALS,
1630
- goog.i18n.CharPickerData.MSG_CP_HAN_6_STROKE_RADICALS,
1631
- goog.i18n.CharPickerData.MSG_CP_HAN_7_STROKE_RADICALS,
1632
- goog.i18n.CharPickerData.MSG_CP_HAN_8_STROKE_RADICALS,
1633
- goog.i18n.CharPickerData.MSG_CP_HAN_9_STROKE_RADICALS,
1634
- goog.i18n.CharPickerData.MSG_CP_HAN_10_STROKE_RADICALS,
1635
- goog.i18n.CharPickerData.MSG_CP_HAN_11_17_STROKE_RADICALS,
1636
- goog.i18n.CharPickerData.MSG_CP_HAN_OTHER,
1637
- goog.i18n.CharPickerData.MSG_CP_MISCELLANEOUS
1638
- ];
1639
-
1640
-
1641
- /**
1642
- * Names of subcategories. Each message this array is the
1643
- * name for the corresponding subcategory specified in
1644
- * {@code goog.i18n.CharPickerData.subcategories}.
1645
- * @type {Array.<string>}
1646
- */
1647
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_SYMBOL = [
1648
- goog.i18n.CharPickerData.MSG_CP_ARROWS,
1649
- goog.i18n.CharPickerData.MSG_CP_BRAILLE,
1650
- goog.i18n.CharPickerData.MSG_CP_CONTROL_PICTURES,
1651
- goog.i18n.CharPickerData.MSG_CP_CURRENCY,
1652
- goog.i18n.CharPickerData.MSG_CP_GAME_PIECES,
1653
- goog.i18n.CharPickerData.MSG_CP_GENDER_AND_GENEALOGICAL,
1654
- goog.i18n.CharPickerData.MSG_CP_GEOMETRIC_SHAPES,
1655
- goog.i18n.CharPickerData.MSG_CP_KEYBOARD_AND_UI,
1656
- goog.i18n.CharPickerData.MSG_CP_MATH,
1657
- goog.i18n.CharPickerData.MSG_CP_MISCELLANEOUS,
1658
- goog.i18n.CharPickerData.MSG_CP_MUSICAL,
1659
- goog.i18n.CharPickerData.MSG_CP_STARS_ASTERISKS,
1660
- goog.i18n.CharPickerData.MSG_CP_SUBSCRIPT,
1661
- goog.i18n.CharPickerData.MSG_CP_SUPERSCRIPT,
1662
- goog.i18n.CharPickerData.MSG_CP_TECHNICAL,
1663
- goog.i18n.CharPickerData.MSG_CP_WEATHER_AND_ASTROLOGICAL,
1664
- goog.i18n.CharPickerData.MSG_CP_YIJING_TAI_XUAN_JING,
1665
- goog.i18n.CharPickerData.MSG_CP_HISTORIC,
1666
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY
1667
- ];
1668
-
1669
-
1670
- /**
1671
- * List of characters in base88 encoding scheme. Each base88 encoded
1672
- * charater string represents corresponding subcategory specified in
1673
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
1674
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
1675
- * @type {Array.<string>}
1676
- */
1677
- goog.i18n.CharPickerData.CHARLIST_OF_SYMBOL = [
1678
- '2>807A;f10O728F1f4V1PNF2Wd78?PZl1%2l2',
1679
- ';oA0FN',
1680
- '(j90d3',
1681
- 'H3XBMgq30w<40F2Y:Z0;+M01E]J6O6',
1682
- 'Q6A06f5#1H2,]4M9Psv+V1I.V1@3W}8',
1683
- '2JA0sOc',
1684
- '2+90FN2U10t2H3kg3u0%E6OW6',
1685
- ';O906$UGv771.Uv46',
1686
- 'w010EGX26G6D010f1E:2v2894WX3:2v+]lEQ?60f2E11OH1P1M]1U11U]571WO6WUv1u,8OUmO6G68E8cOF18H6Ue6WGGu:26G8:2NO$M:16H8%2V28H211cvg.]4s9AnU?8ON4PNdkX4-1Gc^RO1t78V686GG6GM8|88k8-58MGs8k8d28M8U8Ok8-UGdQGd4bZw0:;c8%Ef1Ev28v28]BmM',
1687
- '1F68W8e2>90c8GN3]3uV1[72$Ef1E.U8t18W728M8MG-1148MO!GkgOv0',
1688
- ';DA0k2mO1NM[d3Gl5O!f16ut2WN4',
1689
- 'oUA0k873g510E',
1690
- 'I)B0>E30N18U',
1691
- 'XFX1x6e1oUg2701+6G|nE8I030QjW0',
1692
- 'A-80PdsWF1GMG6$l7H1!%2N2G|mk]7?',
1693
- 'Q4A0F1mv3}1v8,uU',
1694
- 'YnK0#5A>E1-7',
1695
- 'I{)0%4!P7|%4}3',
1696
- '(PD0MAbU1}2P1!'
1697
- ];
1698
-
1699
-
1700
- /**
1701
- * Names of subcategories. Each message this array is the
1702
- * name for the corresponding subcategory specified in
1703
- * {@code goog.i18n.CharPickerData.subcategories}.
1704
- * @type {Array.<string>}
1705
- */
1706
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_PUNCTUATION = [
1707
- goog.i18n.CharPickerData.MSG_CP_ASCII_BASED,
1708
- goog.i18n.CharPickerData.MSG_CP_DASH_CONNECTOR,
1709
- goog.i18n.CharPickerData.MSG_CP_OTHER,
1710
- goog.i18n.CharPickerData.MSG_CP_PAIRED,
1711
- goog.i18n.CharPickerData.MSG_CP_HISTORIC,
1712
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY
1713
- ];
1714
-
1715
-
1716
- /**
1717
- * List of characters in base88 encoding scheme. Each base88 encoded
1718
- * charater string represents corresponding subcategory specified in
1719
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
1720
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
1721
- * @type {Array.<string>}
1722
- */
1723
- goog.i18n.CharPickerData.CHARLIST_OF_PUNCTUATION = [
1724
- ']2E8EG886[6O6f2H6]1u',
1725
- '14f4gX808M%36%1gu30',
1726
- '(s70:<.MO$EGGG8OEms88Iu3068G6n1',
1727
- 'n36f48v2894X1;P80sP26[6^>10F1H76:2,va@1%5M]26;7106G,Q)s06',
1728
- 'gm808kIr3072v1U8A(t06',
1729
- 'Ig80e91E91686W8$EH1X36P162pw0,12-1G|8F18W86nDE8c8M[6O6X2E8f2886'
1730
- ];
1731
-
1732
-
1733
- /**
1734
- * Names of subcategories. Each message this array is the
1735
- * name for the corresponding subcategory specified in
1736
- * {@code goog.i18n.CharPickerData.subcategories}.
1737
- * @type {Array.<string>}
1738
- */
1739
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_NUMBER = [
1740
- goog.i18n.CharPickerData.MSG_CP_DECIMAL,
1741
- goog.i18n.CharPickerData.MSG_CP_ENCLOSED_DOTTED,
1742
- goog.i18n.CharPickerData.MSG_CP_FRACTIONS_RELATED,
1743
- goog.i18n.CharPickerData.MSG_CP_OTHER,
1744
- goog.i18n.CharPickerData.MSG_CP_HISTORIC,
1745
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY
1746
- ];
1747
-
1748
-
1749
- /**
1750
- * List of characters in base88 encoding scheme. Each base88 encoded
1751
- * charater string represents corresponding subcategory specified in
1752
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
1753
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
1754
- * @type {Array.<string>}
1755
- */
1756
- goog.i18n.CharPickerData.CHARLIST_OF_NUMBER = [
1757
- 'P4,At10,HC,1I,fb,%A,%A,%A,%A,%A,%A,%A,%A,XK,%A,X6,PP,X6,Q]10,f3,PR,vB?1F,m,nG,]K,m,Yca0,vz,f3,1I,%A,]a,',
1758
- 'gs90V597@1Pvt2g+20,%2s8N1]2,n3N1',
1759
- '9G6eGEoX80Ocm,1IV1%3',
1760
- 'ot20cvjE9Ck]Lcvd,^910#1oF10,(V60P2!QZV0,9Ts8^aP0sHn6%JsH2s](#2^5q0l1',
1761
- 'o560EgM10,Yk10EGMo230w6u0}39175n1:aMv2$HCUXI,^E10cnQso,60@8',
1762
- 'w.80-2o?30EHVM2Us0,w{#0?'
1763
- ];
1764
-
1765
-
1766
- /**
1767
- * Names of subcategories. Each message this array is the
1768
- * name for the corresponding subcategory specified in
1769
- * {@code goog.i18n.CharPickerData.subcategories}.
1770
- * @type {Array.<string>}
1771
- */
1772
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_FORMAT_WHITESPACE = [
1773
- goog.i18n.CharPickerData.MSG_CP_FORMAT,
1774
- goog.i18n.CharPickerData.MSG_CP_VARIATION_SELECTOR,
1775
- goog.i18n.CharPickerData.MSG_CP_WHITESPACE,
1776
- goog.i18n.CharPickerData.MSG_CP_HISTORIC,
1777
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY
1778
- ];
1779
-
1780
-
1781
- /**
1782
- * List of characters in base88 encoding scheme. Each base88 encoded
1783
- * charater string represents corresponding subcategory specified in
1784
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
1785
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
1786
- * @type {Array.<string>}
1787
- */
1788
- goog.i18n.CharPickerData.CHARLIST_OF_FORMAT_WHITESPACE = [
1789
- 'vF;Z10Mwx406^H20UX2Uf4Ugn#0;`o0sbwt0vME',
1790
- ']=gg50E^$zA#LDF1AV1',
1791
- ':2;S60gC206',
1792
- 'w-10f4^#206IV10(970',
1793
- 'fEAQ80?P3P4wB40^@s0'
1794
- ];
1795
-
1796
-
1797
- /**
1798
- * Names of subcategories. Each message this array is the
1799
- * name for the corresponding subcategory specified in
1800
- * {@code goog.i18n.CharPickerData.subcategories}.
1801
- * @type {Array.<string>}
1802
- */
1803
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_MODIFIER = [
1804
- goog.i18n.CharPickerData.MSG_CP_ENCLOSING,
1805
- goog.i18n.CharPickerData.MSG_CP_NONSPACING,
1806
- goog.i18n.CharPickerData.MSG_CP_SPACING,
1807
- goog.i18n.CharPickerData.MSG_CP_HISTORIC,
1808
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY
1809
- ];
1810
-
1811
-
1812
- /**
1813
- * List of characters in base88 encoding scheme. Each base88 encoded
1814
- * charater string represents corresponding subcategory specified in
1815
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
1816
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
1817
- * @type {Array.<string>}
1818
- */
1819
- goog.i18n.CharPickerData.CHARLIST_OF_MODIFIER = [
1820
- '(y80M8E',
1821
- '%+#5GG,8t1(#60E8718kWfJ,P4v%71WO|oWQ1En1sGk%2MT_t0k',
1822
- 'f!!^)30(C30f1H5E8?8l18d2X4N32D40XH',
1823
- '%?71HP62x60M[F2926^Py0',
1824
- 'n<686'
1825
- ];
1826
-
1827
-
1828
- /**
1829
- * Names of subcategories. Each message this array is the
1830
- * name for the corresponding subcategory specified in
1831
- * {@code goog.i18n.CharPickerData.subcategories}.
1832
- * @type {Array.<string>}
1833
- */
1834
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_LATIN = [
1835
- goog.i18n.CharPickerData.MSG_CP_COMMON,
1836
- goog.i18n.CharPickerData.MSG_CP_ENCLOSED,
1837
- goog.i18n.CharPickerData.MSG_CP_FLIPPED_MIRRORED,
1838
- goog.i18n.CharPickerData.MSG_CP_OTHER,
1839
- goog.i18n.CharPickerData.MSG_CP_PHONETICS_IPA,
1840
- goog.i18n.CharPickerData.MSG_CP_PHONETICS_X_IPA,
1841
- goog.i18n.CharPickerData.MSG_CP_HISTORIC,
1842
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY
1843
- ];
1844
-
1845
-
1846
- /**
1847
- * List of characters in base88 encoding scheme. Each base88 encoded
1848
- * charater string represents corresponding subcategory specified in
1849
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
1850
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
1851
- * @type {Array.<string>}
1852
- */
1853
- goog.i18n.CharPickerData.CHARLIST_OF_LATIN = [
1854
- ':5N2mN2P6}18#28V1G,GcGcGcGMW68cGsO6GcGMGMG6GMGd1G$W$6m6H16X9M15O8%c86$N2G8d2G86W86956g<60cH2878Lf706Gf6',
1855
- '^x90}6^yX1#2G118GOOU$uP286G[MG',
1856
- ']r=i1jKjnjQq40L!401GCpwGi0Trh04pM83:liJK1qQMnmaJQE10jm10(;50Lj50wX50{W50A1i0TJd0bB506(T40v]a8zE50I0105010IUi0{Zh0:7=w*Uc:V%Dih:h`h9X%B41n1WSL1Qau9q`jh_Bnm4lPm*mHn6amfmSmH6;+80j630Lj50wX50{W50QW80P1T#806f=^Y40(d30gtZ0bUi06AL10D9102g70+M70(#80+q80P3*jA#80{z80',
1857
- ']N6[6m6m6m6m6Gn1O6m6W6W6G6W6v186GM8688sGcGUGGEGk]1F3OE8-2md4A570@3%5718}2H9lBm#1Xyf2o]20}1u62cW0F1v6N1O6zIi081s868EG68s8E8EGcu8E8UGEw^60-41293N3v!H1f1U9AO11G6e6O88m11X186IWZ072f9E',
1858
- '%8N2%96$uH4H3u:9M%CF28718M868UO?86G68E8868GHOeP1SPE8GW11OO6918Of26868886OV3WU%2Wg|70EO6',
1859
- '1uH1WGeE11G6GO8G868s',
1860
- 'HZ6uP268691s15P361Jd1oQ7068H8cHw!Y?20kAZW0sH26P1l6:BU',
1861
- 'HF8WWO8:A6116v5H6!P3E%KcA170!nR6vtM8E8?86GUGE8O8M8E86W8.U12-2Qd40HBMvE,et8:2Qtq0kg710N2mN2'
1862
- ];
1863
-
1864
-
1865
- /**
1866
- * Names of subcategories. Each message this array is the
1867
- * name for the corresponding subcategory specified in
1868
- * {@code goog.i18n.CharPickerData.subcategories}.
1869
- * @type {Array.<string>}
1870
- */
1871
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_OTHER_EUROPEAN_SCRIPTS = [
1872
- goog.i18n.CharPickerData.MSG_CP_ARMENIAN,
1873
- goog.i18n.CharPickerData.MSG_CP_CYRILLIC,
1874
- goog.i18n.CharPickerData.MSG_CP_GEORGIAN,
1875
- goog.i18n.CharPickerData.MSG_CP_GREEK,
1876
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
1877
- goog.i18n.CharPickerData.MSG_CP_COPTIC,
1878
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
1879
- goog.i18n.CharPickerData.MSG_CP_CYPRIOT,
1880
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
1881
- goog.i18n.CharPickerData.MSG_CP_CYRILLIC,
1882
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
1883
- goog.i18n.CharPickerData.MSG_CP_GEORGIAN,
1884
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
1885
- goog.i18n.CharPickerData.MSG_CP_GLAGOLITIC,
1886
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
1887
- goog.i18n.CharPickerData.MSG_CP_GOTHIC,
1888
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
1889
- goog.i18n.CharPickerData.MSG_CP_GREEK,
1890
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
1891
- goog.i18n.CharPickerData.MSG_CP_LINEAR_B,
1892
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
1893
- goog.i18n.CharPickerData.MSG_CP_OGHAM,
1894
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
1895
- goog.i18n.CharPickerData.MSG_CP_OLD_ITALIC,
1896
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
1897
- goog.i18n.CharPickerData.MSG_CP_RUNIC,
1898
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
1899
- goog.i18n.CharPickerData.MSG_CP_SHAVIAN,
1900
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY + ' - ' +
1901
- goog.i18n.CharPickerData.MSG_CP_ARMENIAN,
1902
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY + ' - ' +
1903
- goog.i18n.CharPickerData.MSG_CP_GREEK
1904
- ];
1905
-
1906
-
1907
- /**
1908
- * List of characters in base88 encoding scheme. Each base88 encoded
1909
- * charater string represents corresponding subcategory specified in
1910
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
1911
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
1912
- * @type {Array.<string>}
1913
- */
1914
- goog.i18n.CharPickerData.CHARLIST_OF_OTHER_EUROPEAN_SCRIPTS = [
1915
- '(W10V3[V32Bg0l3zIg0k%36QEg0s',
1916
- '2510#B$7E4uHfWE',
1917
- 'Id40@2mML230Y230',
1918
- ']]8E88#18@3P3$wC70@1GcGV3GcGs8888l1888888O#48U8eE8E88OEOUeE8k8eE8E88{l706W',
1919
- 'Q210F12$A0NAuk',
1920
- '^-+0cG8@386OG',
1921
- '^G106g^A0-2o,V0-2Gl1$d2',
1922
- ';Y40V3]3cW2a70V3',
1923
- '^tB0F48F4',
1924
- '^l*0V2',
1925
- ']@MG6OEX7EO71f18GU8E;{(0#6YBt0N6',
1926
- '(z)0|8N28t1868N1GF1937B',
1927
- 'o_50l2',
1928
- 'oh*0#28M',
1929
- 'g|50N7',
1930
- 'A;*0N4',
1931
- 'oe10g^$0U',
1932
- 'XG%$e68%6Ef26OoN70888888n58Uu88EOu8EOu8E.886:Q'
1933
- ];
1934
-
1935
-
1936
- /**
1937
- * Names of subcategories. Each message this array is the
1938
- * name for the corresponding subcategory specified in
1939
- * {@code goog.i18n.CharPickerData.subcategories}.
1940
- * @type {Array.<string>}
1941
- */
1942
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_AMERICAN_SCRIPTS = [
1943
- goog.i18n.CharPickerData.MSG_CP_CANADIAN_ABORIGINAL,
1944
- goog.i18n.CharPickerData.MSG_CP_CHEROKEE,
1945
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
1946
- goog.i18n.CharPickerData.MSG_CP_DESERET
1947
- ];
1948
-
1949
-
1950
- /**
1951
- * List of characters in base88 encoding scheme. Each base88 encoded
1952
- * charater string represents corresponding subcategory specified in
1953
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
1954
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
1955
- * @type {Array.<string>}
1956
- */
1957
- goog.i18n.CharPickerData.CHARLIST_OF_AMERICAN_SCRIPTS = [
1958
- 'gP50NuGd1]oN6TR10Xu6',
1959
- 'wG50t7',
1960
- ';(*0F7'
1961
- ];
1962
-
1963
-
1964
- /**
1965
- * Names of subcategories. Each message this array is the
1966
- * name for the corresponding subcategory specified in
1967
- * {@code goog.i18n.CharPickerData.subcategories}.
1968
- * @type {Array.<string>}
1969
- */
1970
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_AFRICAN_SCRIPTS = [
1971
- goog.i18n.CharPickerData.MSG_CP_ETHIOPIC,
1972
- goog.i18n.CharPickerData.MSG_CP_NKO,
1973
- goog.i18n.CharPickerData.MSG_CP_TIFINAGH,
1974
- goog.i18n.CharPickerData.MSG_CP_VAI,
1975
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
1976
- goog.i18n.CharPickerData.MSG_CP_NKO,
1977
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
1978
- goog.i18n.CharPickerData.MSG_CP_OSMANYA
1979
- ];
1980
-
1981
-
1982
- /**
1983
- * List of characters in base88 encoding scheme. Each base88 encoded
1984
- * charater string represents corresponding subcategory specified in
1985
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
1986
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
1987
- * @type {Array.<string>}
1988
- */
1989
- goog.i18n.CharPickerData.CHARLIST_OF_AFRICAN_SCRIPTS = [
1990
- ';(40l68MGk88MGt38MG@28MGk88MGN18758MG}5X3V1w<60}1.k8k8k8k8k8k8k8kr070t2%1,',
1991
- 'I520t2i3,13V1',
1992
- 'o_B0-4.',
1993
- '^th0NOWV1[6*2Mf1,',
1994
- '^720E',
1995
- 'g?*0t2G,'
1996
- ];
1997
-
1998
-
1999
- /**
2000
- * Names of subcategories. Each message this array is the
2001
- * name for the corresponding subcategory specified in
2002
- * {@code goog.i18n.CharPickerData.subcategories}.
2003
- * @type {Array.<string>}
2004
- */
2005
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_MIDDLE_EASTERN_SCRIPTS = [
2006
- goog.i18n.CharPickerData.MSG_CP_ARABIC,
2007
- goog.i18n.CharPickerData.MSG_CP_HEBREW,
2008
- goog.i18n.CharPickerData.MSG_CP_THAANA,
2009
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2010
- goog.i18n.CharPickerData.MSG_CP_ARABIC,
2011
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2012
- goog.i18n.CharPickerData.MSG_CP_CARIAN,
2013
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2014
- goog.i18n.CharPickerData.MSG_CP_CUNEIFORM,
2015
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2016
- goog.i18n.CharPickerData.MSG_CP_HEBREW,
2017
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2018
- goog.i18n.CharPickerData.MSG_CP_LYCIAN,
2019
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2020
- goog.i18n.CharPickerData.MSG_CP_LYDIAN,
2021
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2022
- goog.i18n.CharPickerData.MSG_CP_OLD_PERSIAN,
2023
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2024
- goog.i18n.CharPickerData.MSG_CP_PHOENICIAN,
2025
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2026
- goog.i18n.CharPickerData.MSG_CP_SYRIAC,
2027
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2028
- goog.i18n.CharPickerData.MSG_CP_UGARITIC,
2029
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY + ' - ' +
2030
- goog.i18n.CharPickerData.MSG_CP_ARABIC,
2031
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY + ' - ' +
2032
- goog.i18n.CharPickerData.MSG_CP_HEBREW
2033
- ];
2034
-
2035
-
2036
- /**
2037
- * List of characters in base88 encoding scheme. Each base88 encoded
2038
- * charater string represents corresponding subcategory specified in
2039
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
2040
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
2041
- * @type {Array.<string>}
2042
- */
2043
- goog.i18n.CharPickerData.CHARLIST_OF_MIDDLE_EASTERN_SCRIPTS = [
2044
- 'os10N2m,f3MW-18F68H26[EGP774g7g0N6oDN05!%0MGN1mG6]2[#18F1G19f2,O62t606IwZ0l1oUR0#25W40',
2045
- 'Il10V2eE`5#1P46o:$0',
2046
- 'g|10V311KcP1O:5,%S?',
2047
- 'gr10c]2UH46%2f6k8V19D6',
2048
- ';Y*0V4',
2049
- 'gE=0-@HD@8H1M',
2050
- 'gf10#2:1M;>$0!f3',
2051
- '^V*0l2',
2052
- 'AA,0N2e',
2053
- 'Aw*0F3WF1',
2054
- 'I7,0d2O',
2055
- 'wq10P1O]2[?X21DF18V5GE',
2056
- 'It*0t28',
2057
- 'I!10MA($0-813@Wv1#5G-4v371fAE88FC',
2058
- '2a(08.F18U886868!'
2059
- ];
2060
-
2061
-
2062
- /**
2063
- * Names of subcategories. Each message this array is the
2064
- * name for the corresponding subcategory specified in
2065
- * {@code goog.i18n.CharPickerData.subcategories}.
2066
- * @type {Array.<string>}
2067
- */
2068
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_SOUTH_ASIAN_SCRIPTS = [
2069
- goog.i18n.CharPickerData.MSG_CP_BENGALI,
2070
- goog.i18n.CharPickerData.MSG_CP_DEVANAGARI,
2071
- goog.i18n.CharPickerData.MSG_CP_GUJARATI,
2072
- goog.i18n.CharPickerData.MSG_CP_GURMUKHI,
2073
- goog.i18n.CharPickerData.MSG_CP_KANNADA,
2074
- goog.i18n.CharPickerData.MSG_CP_LEPCHA,
2075
- goog.i18n.CharPickerData.MSG_CP_LIMBU,
2076
- goog.i18n.CharPickerData.MSG_CP_MALAYALAM,
2077
- goog.i18n.CharPickerData.MSG_CP_OL_CHIKI,
2078
- goog.i18n.CharPickerData.MSG_CP_ORIYA,
2079
- goog.i18n.CharPickerData.MSG_CP_SAURASHTRA,
2080
- goog.i18n.CharPickerData.MSG_CP_SINHALA,
2081
- goog.i18n.CharPickerData.MSG_CP_TAMIL,
2082
- goog.i18n.CharPickerData.MSG_CP_TELUGU,
2083
- goog.i18n.CharPickerData.MSG_CP_TIBETAN,
2084
- goog.i18n.CharPickerData.MSG_CP_HISTORIC,
2085
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2086
- goog.i18n.CharPickerData.MSG_CP_KANNADA,
2087
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2088
- goog.i18n.CharPickerData.MSG_CP_KHAROSHTHI,
2089
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2090
- goog.i18n.CharPickerData.MSG_CP_PHAGS_PA,
2091
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2092
- goog.i18n.CharPickerData.MSG_CP_SYLOTI_NAGRI,
2093
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY + ' - ' +
2094
- goog.i18n.CharPickerData.MSG_CP_BENGALI,
2095
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY + ' - ' +
2096
- goog.i18n.CharPickerData.MSG_CP_DEVANAGARI,
2097
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY + ' - ' +
2098
- goog.i18n.CharPickerData.MSG_CP_GURMUKHI,
2099
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY + ' - ' +
2100
- goog.i18n.CharPickerData.MSG_CP_ORIYA,
2101
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY + ' - ' +
2102
- goog.i18n.CharPickerData.MSG_CP_TIBETAN
2103
- ];
2104
-
2105
-
2106
- /**
2107
- * List of characters in base88 encoding scheme. Each base88 encoded
2108
- * charater string represents corresponding subcategory specified in
2109
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
2110
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
2111
- * @type {Array.<string>}
2112
- */
2113
- goog.i18n.CharPickerData.CHARLIST_OF_SOUTH_ASIAN_SCRIPTS = [
2114
- 'gj20sG6G@18k8OMOf1n16P16*C6f2E958kG6GE.[6G,G,:*6g4506',
2115
- '(X20-4Ov1X16f1mk(Eg0cODRg0M958d1GU91V1X]6g4506IGa0l1mE',
2116
- '(*20!8E8@18k868UOv1X16y8E958s8E8E:16G,8fk6g4506',
2117
- 'Av20cW6G@18k8GG693]1EyO69EE958UW6GEO:1|O%v6g4506',
2118
- 'QR30s8E8}18,8UO936q86958k8E8Mu6116G,86g4506',
2119
- 'oZ70F3%3E=3#1ON1',
2120
- '(r60l2O|W|WO|',
2121
- '^c30s8E8}18V1O936H2cSB6P5k8E8M.[6GV1OI[406',
2122
- '(h70t2i3,%2s',
2123
- 'Y[20sG6G@18k868UO13EX1yl6XbE958kG6GE$6[6G?]Y6g4506',
2124
- 'oni0d4q46n4d1.|',
2125
- 'oo30l1O728!8GkC66X6Wc88sv1E2+406',
2126
- ';3308cOE8MO6886O6OEO|1247X5UOE8M.P1-1',
2127
- 'wF30s8E8}18,8UOX26m6y8EP5k8E8Mu6116G,$sPA6g4506',
2128
- '2{30%5E8M8M8M8M8M8|8Ef2MiC?8l4f468ek8c$E8M8M8M8M8M8|8E8N18k(i806e,Gs',
2129
- '(u70M8M5f30M',
2130
- 'YZ30',
2131
- 'gU,0M86es8E8V2WEW!$!',
2132
- 'wU6068AU606e,Gs2*V0}4w|M0M',
2133
- '(bi0@3',
2134
- 'Yr2068',
2135
- 'Yf20s',
2136
- 'Qz20G93EG',
2137
- 'Q0306',
2138
- 'A|30]4.WWW91.868$n1.WWW91YX#0M'
2139
- ];
2140
-
2141
-
2142
- /**
2143
- * Names of subcategories. Each message this array is the
2144
- * name for the corresponding subcategory specified in
2145
- * {@code goog.i18n.CharPickerData.subcategories}.
2146
- * @type {Array.<string>}
2147
- */
2148
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_SOUTHEAST_ASIAN_SCRIPTS = [
2149
- goog.i18n.CharPickerData.MSG_CP_BALINESE,
2150
- goog.i18n.CharPickerData.MSG_CP_CHAM,
2151
- goog.i18n.CharPickerData.MSG_CP_KAYAH_LI,
2152
- goog.i18n.CharPickerData.MSG_CP_KHMER,
2153
- goog.i18n.CharPickerData.MSG_CP_LAO,
2154
- goog.i18n.CharPickerData.MSG_CP_MYANMAR,
2155
- goog.i18n.CharPickerData.MSG_CP_NEW_TAI_LUE,
2156
- goog.i18n.CharPickerData.MSG_CP_TAI_LE,
2157
- goog.i18n.CharPickerData.MSG_CP_THAI,
2158
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2159
- goog.i18n.CharPickerData.MSG_CP_BUGINESE,
2160
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2161
- goog.i18n.CharPickerData.MSG_CP_BUHID,
2162
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2163
- goog.i18n.CharPickerData.MSG_CP_HANUNOO,
2164
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2165
- goog.i18n.CharPickerData.MSG_CP_KHMER,
2166
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2167
- goog.i18n.CharPickerData.MSG_CP_REJANG,
2168
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2169
- goog.i18n.CharPickerData.MSG_CP_SUNDANESE,
2170
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2171
- goog.i18n.CharPickerData.MSG_CP_TAGALOG,
2172
- goog.i18n.CharPickerData.MSG_CP_HISTORIC + ' - ' +
2173
- goog.i18n.CharPickerData.MSG_CP_TAGBANWA
2174
- ];
2175
-
2176
-
2177
- /**
2178
- * List of characters in base88 encoding scheme. Each base88 encoded
2179
- * charater string represents corresponding subcategory specified in
2180
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
2181
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
2182
- * @type {Array.<string>}
2183
- */
2184
- goog.i18n.CharPickerData.CHARLIST_OF_SOUTHEAST_ASIAN_SCRIPTS = [
2185
- '(C70F4n1k*6UP4d111}3',
2186
- 'Q`i0t392E8s43F191$6G,GM',
2187
- '^zi0d2S3,n2,',
2188
- ';I6073GE8?v3q3l28,W,m,Hi-2',
2189
- 'g:3068G68GmM8k8E88G68M86.GU926`3Gc86.8cG,',
2190
- 'QK40-3:1f1cWMOO6uEW7191(xe0V18cOD-e0#18V1mMWE8EGkOMH1|8d1wxe0mE8',
2191
- 'Y%60@3]1k42d1u6m?O6',
2192
- '2z60t2GU',
2193
- ';z30N48691c*1Gk11@1',
2194
- '2>60d2G6',
2195
- '2C606.#1',
2196
- 'AA60}1',
2197
- 'gM60v311',
2198
- 'Y%i0F311',
2199
- '^N70-3O|',
2200
- 'I760718k]26',
2201
- '2C606%3718E86'
2202
- ];
2203
-
2204
-
2205
- /**
2206
- * Names of subcategories. Each message this array is the
2207
- * name for the corresponding subcategory specified in
2208
- * {@code goog.i18n.CharPickerData.subcategories}.
2209
- * @type {Array.<string>}
2210
- */
2211
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HANGUL = [
2212
- goog.i18n.CharPickerData.MSG_CP_OTHER,
2213
- '\u1100',
2214
- '\u1102',
2215
- '\u1103',
2216
- '\u1105',
2217
- '\u1106',
2218
- '\u1107',
2219
- '\u1109',
2220
- '\u110B',
2221
- '\u110C',
2222
- '\u110E',
2223
- '\u110F',
2224
- '\u1110',
2225
- '\u1111',
2226
- '\u1112',
2227
- '\u1159',
2228
- goog.i18n.CharPickerData.MSG_CP_HISTORIC,
2229
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY
2230
- ];
2231
-
2232
-
2233
- /**
2234
- * List of characters in base88 encoding scheme. Each base88 encoded
2235
- * charater string represents corresponding subcategory specified in
2236
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
2237
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
2238
- * @type {Array.<string>}
2239
- */
2240
- goog.i18n.CharPickerData.CHARLIST_OF_HANGUL = [
2241
- 'ozC0:42Pi0}1WV4Lbi0MO,8F1H1EmeEPqQ?r06',
2242
- ';gj0}}-I',
2243
- '(zk0Vr',
2244
- '(+i0MAj20}}-I',
2245
- 'A,i0?2#30Vr',
2246
- 'A-i0EIS40Vr',
2247
- 'Y-i0EY]40}}-I',
2248
- 'w-i0IC60}}-I',
2249
- '(-i06^U70Vr',
2250
- '^-i0Q`70}}-I',
2251
- 'I}r0Vr',
2252
- 'wqs0Vr',
2253
- '2.i02YA0Vr',
2254
- 'A.i0Y}A0Vr',
2255
- 'I.i0(qB0Vr',
2256
- 'Q.i0',
2257
- 'oh40FN^L80d8',
2258
- 'oJD0#2]5#2IGs0MX5#2OcGcGcGE'
2259
- ];
2260
-
2261
-
2262
- /**
2263
- * Names of subcategories. Each message this array is the
2264
- * name for the corresponding subcategory specified in
2265
- * {@code goog.i18n.CharPickerData.subcategories}.
2266
- * @type {Array.<string>}
2267
- */
2268
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_OTHER_EAST_ASIAN_SCRIPTS = [
2269
- goog.i18n.CharPickerData.MSG_CP_BOPOMOFO,
2270
- goog.i18n.CharPickerData.MSG_CP_HIRAGANA,
2271
- goog.i18n.CharPickerData.MSG_CP_KATAKANA,
2272
- goog.i18n.CharPickerData.MSG_CP_MONGOLIAN,
2273
- goog.i18n.CharPickerData.MSG_CP_YI,
2274
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY + ' - ' +
2275
- goog.i18n.CharPickerData.MSG_CP_BOPOMOFO,
2276
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY + ' - ' +
2277
- goog.i18n.CharPickerData.MSG_CP_HIRAGANA,
2278
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY + ' - ' +
2279
- goog.i18n.CharPickerData.MSG_CP_KATAKANA,
2280
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY + ' - ' +
2281
- goog.i18n.CharPickerData.MSG_CP_YI
2282
- ];
2283
-
2284
-
2285
- /**
2286
- * List of characters in base88 encoding scheme. Each base88 encoded
2287
- * charater string represents corresponding subcategory specified in
2288
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
2289
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
2290
- * @type {Array.<string>}
2291
- */
2292
- goog.i18n.CharPickerData.CHARLIST_OF_OTHER_EAST_ASIAN_SCRIPTS = [
2293
- 'ozC0:4HIt3XA72IQv0l2{z+06I]B0MO,8F1.MGmeE2#v0EjK306',
2294
- 'ozC0:4W#7iDMOF2X1c8eE986G68H86XD6^Bs061R946',
2295
- 'ozC0:49978PMV1SkMOF2X1c8eE986eH8MHD6^Bs061R946',
2296
- 'YX60738t4$t38aFN18,%3H9',
2297
- 'oRg0-18}}-FL.U06e,Gs^rT0IG10@4',
2298
- 'Ql)0M',
2299
- '^%C0996G1MF1gas0U2E$0',
2300
- '^%C0996]8PDF1vRF48@7g`r0N18}3',
2301
- 'Ql)0M'
2302
- ];
2303
-
2304
-
2305
- /**
2306
- * Names of subcategories. Each message this array is the
2307
- * name for the corresponding subcategory specified in
2308
- * {@code goog.i18n.CharPickerData.subcategories}.
2309
- * @type {Array.<string>}
2310
- */
2311
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_1_STROKE_RADICALS = [
2312
- '\u4E00',
2313
- '\u4E28',
2314
- '\u4E36',
2315
- '\u4E3F',
2316
- '\u4E59',
2317
- '\u4E85',
2318
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY,
2319
- goog.i18n.CharPickerData.MSG_CP_LESS_COMMON
2320
- ];
2321
-
2322
-
2323
- /**
2324
- * List of characters in base88 encoding scheme. Each base88 encoded
2325
- * charater string represents corresponding subcategory specified in
2326
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
2327
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
2328
- * @type {Array.<string>}
2329
- */
2330
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_1_STROKE_RADICALS = [
2331
- 'ItK071]BYL10TX10kOJE8F192426',
2332
- ';wK0M8!',
2333
- 'AyK0Ef1a1M8',
2334
- '^yK0,8E2y30{x30|',
2335
- 'Q#K0U^iL0>iL0EG}2',
2336
- 'Q)K0k',
2337
- '(bC0c]R]q8O8f2Eoeq0]116$f7fG;(k1E',
2338
- 'A(D0t3(rX1V288k8!8k8868|8l188U8718M8N48E88GE8#48MG@3oA20]G2P60;QB0]9^(20^7L0t2'
2339
- ];
2340
-
2341
-
2342
- /**
2343
- * Names of subcategories. Each message this array is the
2344
- * name for the corresponding subcategory specified in
2345
- * {@code goog.i18n.CharPickerData.subcategories}.
2346
- * @type {Array.<string>}
2347
- */
2348
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_2_STROKE_RADICALS = [
2349
- '\u4E8C',
2350
- '\u4EA0',
2351
- '\u4EBA',
2352
- '\u513F',
2353
- '\u5165',
2354
- '\u516B',
2355
- '\u5182',
2356
- '\u5196',
2357
- '\u51AB',
2358
- '\u51E0',
2359
- '\u51F5',
2360
- '\u5200',
2361
- '\u529B',
2362
- '\u52F9',
2363
- '\u5315',
2364
- '\u531A',
2365
- '\u5338',
2366
- '\u5341',
2367
- '\u535C',
2368
- '\u5369',
2369
- '\u5382',
2370
- '\u53B6',
2371
- '\u53C8',
2372
- '\u8BA0',
2373
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY,
2374
- goog.i18n.CharPickerData.MSG_CP_LESS_COMMON
2375
- ];
2376
-
2377
-
2378
- /**
2379
- * List of characters in base88 encoding scheme. Each base88 encoded
2380
- * charater string represents corresponding subcategory specified in
2381
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
2382
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
2383
- * @type {Array.<string>}
2384
- */
2385
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_2_STROKE_RADICALS = [
2386
- '^)K0M8N1',
2387
- '(+K0N2',
2388
- 'A.K0VA15`4@48l6AGL05GL0VT86GZG68d39141|8t1',
2389
- '(gL0V3',
2390
- 'IkL0MY870T8706',
2391
- '(kL0,gzK0bzK0U838c',
2392
- ';mL0#1Yw50',
2393
- 'woL0-1',
2394
- 'oqL0#4',
2395
- 'YvL0-1',
2396
- 'QxL0?',
2397
- 'QyL0d98sWC1$M8F3',
2398
- 'Y;L0V58@2',
2399
- '^^L0d2',
2400
- 'g{L0U',
2401
- '^{L0l12KK0{JK0|',
2402
- 'w0M0!',
2403
- 'g1M0E8c838,(HK0zHK0U',
2404
- '^3M071',
2405
- 'A5M0F2',
2406
- 'Y7M0t2;ZD0+ZD0MeZU8|',
2407
- 'ACM0l1',
2408
- '(DM0V2IS10',
2409
- 'Y]a0tD',
2410
- 'QcC0}1%P8]qG688P1W6G6mO8;fq0f1E9386H18e11Ee[n16[91e11.G$H1n18611$X2cX5kg(k1F28d292%B6f6%A15P1O',
2411
- ';+D0tN8l49H2i40kQRl0(Q+0uH3v1H788]9@18}2872Gk8E8|8s88E8G-18778@28lF8-6G,8@48#486GF28d28t18t48N3874868-78F58V18}28F48l48lG868d18N18#18!8FN8@98FP8s8}F8N28,8VG8F18tF8}2(s30%U;@101bI-50QE60^{40;X60IhB0}Oo_20d3'
2412
- ];
2413
-
2414
-
2415
- /**
2416
- * Names of subcategories. Each message this array is the
2417
- * name for the corresponding subcategory specified in
2418
- * {@code goog.i18n.CharPickerData.subcategories}.
2419
- * @type {Array.<string>}
2420
- */
2421
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_3_STROKE_RADICALS = [
2422
- '\u53E3',
2423
- '\u56D7',
2424
- '\u571F',
2425
- '\u58EB',
2426
- '\u5902',
2427
- '\u590A',
2428
- '\u5915',
2429
- '\u5927',
2430
- '\u5973',
2431
- '\u5B50',
2432
- '\u5B80',
2433
- '\u5BF8',
2434
- '\u5C0F',
2435
- '\u5C22',
2436
- '\u5C38',
2437
- '\u5C6E',
2438
- '\u5C71',
2439
- '\u5DDB',
2440
- '\u5DE5',
2441
- '\u5DF1',
2442
- '\u5DFE',
2443
- '\u5E72',
2444
- '\u5E7A',
2445
- '\u5E7F',
2446
- '\u5EF4',
2447
- '\u5EFE',
2448
- '\u5F0B',
2449
- '\u5F13',
2450
- '\u5F50',
2451
- '\u5F61',
2452
- '\u5F73',
2453
- '\u7E9F',
2454
- '\u95E8',
2455
- '\u98DE',
2456
- '\u9963',
2457
- '\u9A6C',
2458
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY,
2459
- goog.i18n.CharPickerData.MSG_CP_LESS_COMMON
2460
- ];
2461
-
2462
-
2463
- /**
2464
- * List of characters in base88 encoding scheme. Each base88 encoded
2465
- * charater string represents corresponding subcategory specified in
2466
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
2467
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
2468
- * @type {Array.<string>}
2469
- */
2470
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_3_STROKE_RADICALS = [
2471
- 'IGM0@X8U8?8F1=2n1P1t18V4HCyGf4t8Gk%38y46ul28?888s12`1@18#2f3a3V38,$xkGBGs',
2472
- '^`M0c^MJ0>MJ0F4OJE8N1',
2473
- 'g3N0EAHJ05HJ0VDH2C2728V28-3=3]3d38U8U_eel88F32(I0{%I0?;%I0+%I0!8!',
2474
- 'QjN0!iXnXF1',
2475
- 'YlN0k',
2476
- 'AmN0EJOU838',
2477
- 'AnN0l1',
2478
- '(oN0738|4191d2',
2479
- 'wvN0N28t6y6%6#18}18Mi2n2738s$i1$s8V78#2:2y5:2#28d7n1i1d18M8MRWl1',
2480
- '2DO0@283871',
2481
- 'YHO0t1;260+260#18MRW#3:1*1#1871',
2482
- 'QSO0?OJE8s',
2483
- 'YUO0k2?H0{>H0|',
2484
- 'AWO0@1',
2485
- 'AYO08t4',
2486
- '2dO0E',
2487
- 'QdO0D#30I#30V28}44595@B8t1y1%1V88kpu?86BGU838E',
2488
- 'I.O0c8E',
2489
- 'A:O0|',
2490
- 'I;O071',
2491
- 'Y<O0t68kp$!838@1',
2492
- '^{O0s',
2493
- '2$K0oM40U',
2494
- 'A}O0@1OJE8-3mZU86x$@2I8H0D8H0c',
2495
- '(9P0,',
2496
- 'wAP071',
2497
- ';BP0s',
2498
- 'oCP0d5',
2499
- 'AIP0d1',
2500
- 'wJP0!8s',
2501
- 'QLP0!Y0H06b0H0l1mhc8U8,<[7186BGF1',
2502
- '(gX071[<,8dB',
2503
- 'wud0t4',
2504
- 'obe0',
2505
- 'wne0V386BG,',
2506
- '(:e0V5',
2507
- 'YeC0#2P=11Wm11686W(dq0G86:1mP26m6%1me%1E11X1OmEf1692Ge6H1%1Gm8GX3kX4[F1A,k1}18l58E8EGMP8:5]6]9',
2508
- 'YAE0@G8V(I!20|I!10E:5fX18EA8k08QQ+0%1u8Gn3v11B1693P2uO91$8OH2H713vMXG%1%K:6]SG13%2H@vX93tU8F587w8}V8-68tA8dO8db8V38758V28t58F18k8#C8t!8V78V98tU8lT8de8}}V98lB8}B8#387987H8#38NJ8@78U8N18U8kgE10(L10v_X4ngA6109Nn2v2Ac101O1}HSQ*1094^.50N2:BP6Ay10Q<40]5;s20AE20V1H9^j20l1%g-3YY20YU10}zAv10@2;310F1]E72X3}1'
2509
- ];
2510
-
2511
-
2512
- /**
2513
- * Names of subcategories. Each message this array is the
2514
- * name for the corresponding subcategory specified in
2515
- * {@code goog.i18n.CharPickerData.subcategories}.
2516
- * @type {Array.<string>}
2517
- */
2518
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_4_STROKE_RADICALS = [
2519
- '\u5FC3',
2520
- '\u6208',
2521
- '\u6236',
2522
- '\u624B',
2523
- '\u652F',
2524
- '\u6534',
2525
- '\u6587',
2526
- '\u6597',
2527
- '\u65A4',
2528
- '\u65B9',
2529
- '\u65E0',
2530
- '\u65E5',
2531
- '\u66F0',
2532
- '\u6708',
2533
- '\u6728',
2534
- '\u6B20',
2535
- '\u6B62',
2536
- '\u6B79',
2537
- '\u6BB3',
2538
- '\u6BCB',
2539
- '\u6BD4',
2540
- '\u6BDB',
2541
- '\u6C0F',
2542
- '\u6C14',
2543
- '\u6C34',
2544
- '\u706B',
2545
- '\u722A',
2546
- '\u7236',
2547
- '\u723B',
2548
- '\u723F',
2549
- '\u7247',
2550
- '\u7259',
2551
- '\u725B',
2552
- '\u72AC',
2553
- '\u89C1',
2554
- '\u8D1D',
2555
- '\u8F66',
2556
- '\u97E6',
2557
- '\u98CE',
2558
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY,
2559
- goog.i18n.CharPickerData.MSG_CP_LESS_COMMON
2560
- ];
2561
-
2562
-
2563
- /**
2564
- * List of characters in base88 encoding scheme. Each base88 encoded
2565
- * charater string represents corresponding subcategory specified in
2566
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
2567
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
2568
- * @type {Array.<string>}
2569
- */
2570
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_4_STROKE_RADICALS = [
2571
- 'oSP0NW]5=5-58M8V2a2f2d48F2K2P2l4',
2572
- 'Y]P072mhc8!838838',
2573
- 'o{P0-1',
2574
- 'g}P0E2LG0{KG08kpus871C1H1?8}34494NO8?_11k8#5]6=6-38F24C9Ck8E874G*7P3H468l411_?8t28|4191#2838l186BGk',
2575
- '((Q0U',
2576
- 'I)Q0F2rI40wI40t2GB68@12dA0{cA0E',
2577
- '(;Q0(OF0zOF0N1',
2578
- 'I=Q071',
2579
- 'Y>Q0-1',
2580
- 'Q@Q0F1OJE8-1',
2581
- ';^Q0U',
2582
- 'Q_Q0NA(+60j_B0(D50t1XDSDN2H1C1718V523F0{2F0,GB68-1',
2583
- 'oJR0!8rS50gS5086868k',
2584
- '(LR0V2;070+070U',
2585
- 'wOR0@59242}187LAuE05uE0#H2R10{Q10F886uOK1Gk8E8l6uH6=6k8768Ev4P1`5l48F18NAW8hM88!8F1m=1P1c8t1',
2586
- '2TS0E838d5',
2587
- '2ZS0I:D0D:D0@1',
2588
- 'AbS0F5',
2589
- 'YgS072',
2590
- 'oiS0!',
2591
- 'YjS0k',
2592
- '2kS0t4',
2593
- '(oS0U',
2594
- 'IpS0-2',
2595
- 'AsS06WRM8VE8N28!K3P3F18s8t5i6$%5}58V1a1f1}78#1G98KA:168}7872v5v1S7l5G718E8|v3a6H1f1-28k8t38V1`5f4f1d48728Mn4`4Wd48EG*7n768d28@2`213758-1=1]1k',
2596
- 'I$T0!%1y1t18tC8MRWl39444}38,838#291(350>450|8N1g^B0nI12DFC0t78Em<Oc8#1',
2597
- ';GU0,jW70oW706',
2598
- '^HU0U',
2599
- 'YIU0M',
2600
- 'IxK0gl90s',
2601
- 'gJU0l1',
2602
- 'ALU06',
2603
- 'QLU0N3838#3',
2604
- 'wSU0tA$6)sGF1un1K2k868chuk86<[74',
2605
- ';ba0U8?',
2606
- '2Sb0V6',
2607
- 'I]b0#4',
2608
- '2Fe0k',
2609
- 'Aae0k838M',
2610
- '^SC0HE}2::MGEG.Ogeq0G$mEm6OGOEWE%1eE916Ou6m868W$6m6GU11OE8W91WEWGMmOG6eM$8e6W6mG611Of371136P2}18EH4M(!k1:8e#4G6G-28}2871]7$6',
2611
- '^aE0]uFq8#@^U20U%LEY`k06AW+0f7HLfkX2vCH4vM(a10gv10IO10Yg30Hz}}VE8to8-w8@J8-28tK8td8N48FC8E8l68cGNM8V#8#98lK8-A8-A8|8728E8l287N8}}#E8@N8V%8tC88V88-88lC8N18@48t38l`;Y20(>101dYk201)XQ6nUv^Xao940kAi10cv3QF40UHdXG|fe8o^40}}l3YD10c]Ak]7@19YcX4U'
2612
- ];
2613
-
2614
-
2615
- /**
2616
- * Names of subcategories. Each message this array is the
2617
- * name for the corresponding subcategory specified in
2618
- * {@code goog.i18n.CharPickerData.subcategories}.
2619
- * @type {Array.<string>}
2620
- */
2621
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_5_STROKE_RADICALS = [
2622
- '\u7384',
2623
- '\u7389',
2624
- '\u74DC',
2625
- '\u74E6',
2626
- '\u7518',
2627
- '\u751F',
2628
- '\u7528',
2629
- '\u7530',
2630
- '\u758B',
2631
- '\u7592',
2632
- '\u7676',
2633
- '\u767D',
2634
- '\u76AE',
2635
- '\u76BF',
2636
- '\u76EE',
2637
- '\u77DB',
2638
- '\u77E2',
2639
- '\u77F3',
2640
- '\u793A',
2641
- '\u79B8',
2642
- '\u79BE',
2643
- '\u7A74',
2644
- '\u7ACB',
2645
- '\u9485',
2646
- '\u957F',
2647
- '\u9E1F',
2648
- '\u9F99',
2649
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY,
2650
- goog.i18n.CharPickerData.MSG_CP_LESS_COMMON
2651
- ];
2652
-
2653
-
2654
- /**
2655
- * List of characters in base88 encoding scheme. Each base88 encoded
2656
- * charater string represents corresponding subcategory specified in
2657
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
2658
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
2659
- * @type {Array.<string>}
2660
- */
2661
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_5_STROKE_RADICALS = [
2662
- 'QmU0U',
2663
- '(mU0838N912`1M8d18,i2n2,8t2y2%2F78Wh8M8F186BG@4',
2664
- 'o@U0,',
2665
- 'g[U0d4',
2666
- '2{U0k',
2667
- 'w{U0!',
2668
- 'g|U0s',
2669
- 'I}U0?838738k8mhcG!).V1',
2670
- 'g7V0k',
2671
- 'A8V0t2[<,8d8muK1c8k872[<,8}1838l1',
2672
- ';SV0k',
2673
- 'gTV0|=Q]QN3',
2674
- '^XV0s^;A0>;A0!',
2675
- 'gZV0N2GB68l1',
2676
- '(dV0t5v1q1l1G38V1IzA0DzA0N18|4191V98EJO',
2677
- 'QzV0k',
2678
- '^zV0d1',
2679
- 'g#V0N15]20A]20FB8t2%1i4%2t18!upk872Gu<68k8t7',
2680
- 'I5W0-1IV40^-50DFA0}18!).!11^L40{M40?8-3Q6A0L6A0s',
2681
- 'wGW0c((20',
2682
- 'IHW0-5upk8}312`1-1Gs).t2GB6',
2683
- '(XW0-7',
2684
- 'wfW0#1G?Qj70Lj70686BGs',
2685
- 'YOd0@L',
2686
- 'Ald0',
2687
- ';-f0758MRW72',
2688
- 'IIg0E',
2689
- 'QkC0}1n.O86n1;eq0$f2u6[P1[68$$P1P16926u[[E91$6.u:2UH4|f6O|11X1[Ew`k1V18V3',
2690
- 'AoG0@:;12071n^kXD6I4R1:4WnB9d[15:49lHkX.1pP5Hw]nf]^H20()109d;u101@]2%KY!10:9f.;(307k8dL8}38@88-98?8V?WdA8}S87Q8748l!8-T8#d8d28lI8FK8#12@30nQI,10w^402B20F22,50-1AQ30}b(F10V49f}3]3'
2691
- ];
2692
-
2693
-
2694
- /**
2695
- * Names of subcategories. Each message this array is the
2696
- * name for the corresponding subcategory specified in
2697
- * {@code goog.i18n.CharPickerData.subcategories}.
2698
- * @type {Array.<string>}
2699
- */
2700
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_6_STROKE_RADICALS = [
2701
- '\u7AF9',
2702
- '\u7C73',
2703
- '\u7CF8',
2704
- '\u7F36',
2705
- '\u7F51',
2706
- '\u7F8A',
2707
- '\u7FBD',
2708
- '\u8001',
2709
- '\u800C',
2710
- '\u8012',
2711
- '\u8033',
2712
- '\u807F',
2713
- '\u8089',
2714
- '\u81E3',
2715
- '\u81EA',
2716
- '\u81F3',
2717
- '\u81FC',
2718
- '\u820C',
2719
- '\u821B',
2720
- '\u821F',
2721
- '\u826E',
2722
- '\u8272',
2723
- '\u8278',
2724
- '\u864D',
2725
- '\u866B',
2726
- '\u8840',
2727
- '\u884C',
2728
- '\u8863',
2729
- '\u897E',
2730
- '\u9875',
2731
- '\u9F50',
2732
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY,
2733
- goog.i18n.CharPickerData.MSG_CP_LESS_COMMON
2734
- ];
2735
-
2736
-
2737
- /**
2738
- * List of characters in base88 encoding scheme. Each base88 encoded
2739
- * charater string represents corresponding subcategory specified in
2740
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
2741
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
2742
- * @type {Array.<string>}
2743
- */
2744
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_6_STROKE_RADICALS = [
2745
- ';jW0?8F5K5P5@5%5y5t58s8,<[d213OS3@28E8F5e6hUGl1838s',
2746
- 'I[W0Mr990w990V2r?10w?10|eZU8l1[<,8}2eZU8s838U',
2747
- 'Q4X0@88d2i2n2F3%4y4t48686BGNA8686Ze728.a3X28!8}3',
2748
- 'guX0U838#1',
2749
- '^wX0t2OJE8}1',
2750
- 'A$X0?8MLI20;H20W73',
2751
- '(*X0F5eZU8M',
2752
- '^;X0?',
2753
- '^<X0c',
2754
- 'g=X0@2',
2755
- 'g@X0}211_?8718UZe?',
2756
- 'Y|X0,',
2757
- 'Q}X0}8n2i2d28N7bN90gN90l68V486BG,',
2758
- '(UY0k',
2759
- 'YVY0!',
2760
- 'IWY0!',
2761
- '2XY0,86BGE',
2762
- 'gYY0N1',
2763
- ';ZY0M',
2764
- 'IaY077',
2765
- 'YhY0M',
2766
- '(hY0c',
2767
- 'QiY0EY$70T$70768V11AiBf1@58EJOk8U8N28#18d2a7e]6d58V1(a70bk70v9t9H4(L70Lb70HBE8#38t88@3838lH8E8o=605>60O8N3P7K7N28kpud286H1a1G7188|8cI(60+(60m-1',
2768
- 'gjZ0EDPA0IPA06872',
2769
- 'ImZ0l28}283873a6f6c8t2y2%273%1X2C4t18N28d48k%8a9ut39444t3H4C4M8!8#1H2C2?8|8@1X1S1N18?',
2770
- ';2a0|',
2771
- '^3a0}1',
2772
- '26a06DVE0IVE0t6838#48t2y2%274838d1P1K1F18w^50r^50l2>YD0^YD06$xs',
2773
- '(Va071',
2774
- '2Se0l4',
2775
- 'oBg06',
2776
- 'YmC0l2IPr0MemO68691Em6e6.6GO6n1Oem6P268me$6n19112Eue86WWW:168:4?v6G?%2^,k1Wn56XC-28U86G68M8@4',
2777
- 'o5E0oq10;%10VE8VH91l;P^(ok08wb+0Q0101Io3102E20XZoi10n>2;10XUPN18e]1;n30v6m6(L40vHvCX1:8;g10A{30HM}}N@X2#B8F68@D8VI8@(8NQG#L8#68t18tO8#v8Na8##8VC8#^8tt(j10wB30YE30E(870NF13#hfxd1'
2778
- ];
2779
-
2780
-
2781
- /**
2782
- * Names of subcategories. Each message this array is the
2783
- * name for the corresponding subcategory specified in
2784
- * {@code goog.i18n.CharPickerData.subcategories}.
2785
- * @type {Array.<string>}
2786
- */
2787
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_7_STROKE_RADICALS = [
2788
- '\u5364',
2789
- '\u898B',
2790
- '\u89D2',
2791
- '\u8A00',
2792
- '\u8C37',
2793
- '\u8C46',
2794
- '\u8C55',
2795
- '\u8C78',
2796
- '\u8C9D',
2797
- '\u8D64',
2798
- '\u8D70',
2799
- '\u8DB3',
2800
- '\u8EAB',
2801
- '\u8ECA',
2802
- '\u8F9B',
2803
- '\u8FB0',
2804
- '\u8FB5',
2805
- '\u9091',
2806
- '\u9149',
2807
- '\u91C6',
2808
- '\u91CC',
2809
- '\u9F9F',
2810
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY,
2811
- goog.i18n.CharPickerData.MSG_CP_LESS_COMMON
2812
- ];
2813
-
2814
-
2815
- /**
2816
- * List of characters in base88 encoding scheme. Each base88 encoded
2817
- * charater string represents corresponding subcategory specified in
2818
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
2819
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
2820
- * @type {Array.<string>}
2821
- */
2822
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_7_STROKE_RADICALS = [
2823
- 'w4M0(<J0',
2824
- '^Wa069141!868d3',
2825
- 'Yda0,86BG@1QC50LC50?',
2826
- 'oha0lC]1wp50rr50-18F5P1K1F18@88N12Y50bZ50X1}5',
2827
- 'A7b0N1',
2828
- 'g8b0N1',
2829
- ';9b0@283',
2830
- '2Db0N3',
2831
- 'YGb0}88V2',
2832
- 'gYb0|',
2833
- 'oZb0cw-40r-40d5',
2834
- 'wfb0!8}212C593@18#48M[S1W,8}3mn1C2c8d18d386B',
2835
- 'I$b0#2',
2836
- '2)b0738V1Aa40rb40f1772V40{U40F2',
2837
- '2|b0-1',
2838
- '^}b0U',
2839
- 'Y0c0!TGD0YGD0}29141|8}B8OZ8E8U.)!OB68k',
2840
- 'YKc0-5838-9838c',
2841
- 'Abc0NB',
2842
- 'gmc0c',
2843
- '2nc0U',
2844
- '(Ig0',
2845
- 'oaC0XE#1X*en1Ydq086X1ev1[.mn1Gn18116P1[8m]111%1n1v1[G92G6P5kX7|v1o5l1n5F18E8!',
2846
- 'QAE0gj40lFu-8etLO#D2.k06(T,0PL9,AY30v9]_A^60Yl10;N50Az10oi10(I80F`8M8V58Nh8lCu}}}hml3Glb8N@;820o{80|m-3n3V3u-712#9nwv3'
2847
- ];
2848
-
2849
-
2850
- /**
2851
- * Names of subcategories. Each message this array is the
2852
- * name for the corresponding subcategory specified in
2853
- * {@code goog.i18n.CharPickerData.subcategories}.
2854
- * @type {Array.<string>}
2855
- */
2856
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_8_STROKE_RADICALS = [
2857
- '\u91D1',
2858
- '\u9577',
2859
- '\u9580',
2860
- '\u961C',
2861
- '\u96B6',
2862
- '\u96B9',
2863
- '\u96E8',
2864
- '\u9751',
2865
- '\u975E',
2866
- '\u9C7C',
2867
- '\u9F7F',
2868
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY,
2869
- goog.i18n.CharPickerData.MSG_CP_LESS_COMMON
2870
- ];
2871
-
2872
-
2873
- /**
2874
- * List of characters in base88 encoding scheme. Each base88 encoded
2875
- * charater string represents corresponding subcategory specified in
2876
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
2877
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
2878
- * @type {Array.<string>}
2879
- */
2880
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_8_STROKE_RADICALS = [
2881
- 'gnc0@3zLA0(LA0-AX2Yf30+h30k8l18N94B9BV48t28QO30LR30%28t88@12E305G3012l4mh8M8F4y4%4@3v1q1l18l2',
2882
- 'Ykd0s',
2883
- 'Ild0@48?_11N3',
2884
- 'Yzd0l58N1S1X1-6',
2885
- 'Y<d0E',
2886
- 'w<d0F4',
2887
- '^@d0d9',
2888
- 'g1e071',
2889
- 'w2e0M',
2890
- '(Xf0@5871C1H1F2',
2891
- ';Fg0F1',
2892
- ';qC0!:(Ihq094m.uu14:1]1EWH191$H1m92v1:6X8MYzk1vf7186',
2893
- 'QTJ0l8H1F4OV68-5:ss2?j0E2W+0AQ50Q>U0#88@yP2dcf1798N#8FJQn30@1^;106;y30l8f4@1P1N61OV39B!'
2894
- ];
2895
-
2896
-
2897
- /**
2898
- * Names of subcategories. Each message this array is the
2899
- * name for the corresponding subcategory specified in
2900
- * {@code goog.i18n.CharPickerData.subcategories}.
2901
- * @type {Array.<string>}
2902
- */
2903
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_9_STROKE_RADICALS = [
2904
- '\u9762',
2905
- '\u9769',
2906
- '\u97CB',
2907
- '\u97ED',
2908
- '\u97F3',
2909
- '\u9801',
2910
- '\u98A8',
2911
- '\u98DB',
2912
- '\u98DF',
2913
- '\u9996',
2914
- '\u9999',
2915
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY,
2916
- goog.i18n.CharPickerData.MSG_CP_LESS_COMMON
2917
- ];
2918
-
2919
-
2920
- /**
2921
- * List of characters in base88 encoding scheme. Each base88 encoded
2922
- * charater string represents corresponding subcategory specified in
2923
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
2924
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
2925
- * @type {Array.<string>}
2926
- */
2927
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_9_STROKE_RADICALS = [
2928
- '23e0k',
2929
- 'w3e0-8',
2930
- 'oCe0V18MRWc',
2931
- 'wFe0c',
2932
- 'IGe0zy706wy7071',
2933
- 'gHe0t1eZU8,Gkx6ud18|4191#3',
2934
- 'wWe0V3',
2935
- 'Qbe0E',
2936
- 'wbe0V28UZeN2OJE872838-3',
2937
- 'Qse0E',
2938
- 'ose0t1',
2939
- 'wrC0?f)2vq0f298Ef56n8MIGl1N1',
2940
- 'ooH0g520-Q8!IHS1:_P32-30ARC0YA40](^b70gd807Y8lBelaW728NG91}Zv1t288-4Iz70d1mt1n1|el1H2N1'
2941
- ];
2942
-
2943
-
2944
- /**
2945
- * Names of subcategories. Each message this array is the
2946
- * name for the corresponding subcategory specified in
2947
- * {@code goog.i18n.CharPickerData.subcategories}.
2948
- * @type {Array.<string>}
2949
- */
2950
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_10_STROKE_RADICALS = [
2951
- '\u99AC',
2952
- '\u9AA8',
2953
- '\u9AD8',
2954
- '\u9ADF',
2955
- '\u9B25',
2956
- '\u9B2F',
2957
- '\u9B32',
2958
- '\u9B3C',
2959
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY,
2960
- goog.i18n.CharPickerData.MSG_CP_LESS_COMMON
2961
- ];
2962
-
2963
-
2964
- /**
2965
- * List of characters in base88 encoding scheme. Each base88 encoded
2966
- * charater string represents corresponding subcategory specified in
2967
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
2968
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
2969
- * @type {Array.<string>}
2970
- */
2971
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_10_STROKE_RADICALS = [
2972
- 'Que0V68V1a1f176ob10jb10-2(Y10zY10M',
2973
- 'I@e0N4',
2974
- 'o_e0k',
2975
- 'I`e0l211_?8d1WRM8k',
2976
- 'o2f0,',
2977
- 'g3f0E',
2978
- '(3f0,',
2979
- 'w4f0t2',
2980
- 'wsC0s;Lr0:9nTgHl1U',
2981
- '^_J077O#9wM(1gQ10#Y]3};gl60@192l2'
2982
- ];
2983
-
2984
-
2985
- /**
2986
- * Names of subcategories. Each message this array is the
2987
- * name for the corresponding subcategory specified in
2988
- * {@code goog.i18n.CharPickerData.subcategories}.
2989
- * @type {Array.<string>}
2990
- */
2991
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_11_17_STROKE_RADICALS = [
2992
- '\u9B5A',
2993
- '\u9CE5',
2994
- '\u9E75',
2995
- '\u9E7F',
2996
- '\u9EA5',
2997
- '\u9EA6',
2998
- '\u9EBB',
2999
- '\u9EC3',
3000
- '\u9ECD',
3001
- '\u9ED1',
3002
- '\u9EF9',
3003
- '\u9EFD',
3004
- '\u9EFE',
3005
- '\u9F0E',
3006
- '\u9F13',
3007
- '\u9F20',
3008
- '\u9F3B',
3009
- '\u9F4A',
3010
- '\u9F52',
3011
- '\u9F8D',
3012
- '\u9F9C',
3013
- '\u9FA0',
3014
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY,
3015
- goog.i18n.CharPickerData.MSG_CP_LESS_COMMON
3016
- ];
3017
-
3018
-
3019
- /**
3020
- * List of characters in base88 encoding scheme. Each base88 encoded
3021
- * charater string represents corresponding subcategory specified in
3022
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
3023
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
3024
- * @type {Array.<string>}
3025
- */
3026
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_11_17_STROKE_RADICALS = [
3027
- 'Y7f0-2IB10DB10#2[<,8d1eZU8F2%3y3}2eZU88t2WRM8l31b`a#28EJOV1',
3028
- 'Qhf0N38MRWt78]s=s#3838758MRWV18728EJO}2',
3029
- 'w@f0!',
3030
- 'o[f0V3',
3031
- '2`f08d1',
3032
- 'A`f0n1E',
3033
- '2|f0s',
3034
- '(|f0,',
3035
- 'w}f0M',
3036
- '20g06>mI0^mI0c8#2',
3037
- 'w3g0M',
3038
- '24g08|',
3039
- 'A4g091E',
3040
- 'o5g0U',
3041
- '26g071',
3042
- 'I7g0V2',
3043
- 'w9g0N1',
3044
- '2Bg0c',
3045
- '(Bg0}3',
3046
- 'AHg0E8s',
3047
- 'gIg0E',
3048
- ';Ig0c',
3049
- 'YtC0#1QIr0692H26ef66P5946H5nE.6Q,k1fYt1',
3050
- 'IDK0t9$@9uNDGkoOR1fk^x102.20nDQf301=^N50;g202j30M^>90od80g320to12t!]1-H8F[GN6284075f3@394E8l2.G'
3051
- ];
3052
-
3053
-
3054
- /**
3055
- * Names of subcategories. Each message this array is the
3056
- * name for the corresponding subcategory specified in
3057
- * {@code goog.i18n.CharPickerData.subcategories}.
3058
- * @type {Array.<string>}
3059
- */
3060
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_OTHER = [
3061
- goog.i18n.CharPickerData.MSG_CP_NUMERICS,
3062
- goog.i18n.CharPickerData.MSG_CP_PUNCTUATION,
3063
- goog.i18n.CharPickerData.MSG_CP_COMPATIBILITY,
3064
- goog.i18n.CharPickerData.MSG_CP_LESS_COMMON + ' - ' +
3065
- goog.i18n.CharPickerData.MSG_CP_NUMERICS,
3066
- goog.i18n.CharPickerData.MSG_CP_PINYIN,
3067
- goog.i18n.CharPickerData.MSG_CP_IDEOGRAPHIC_DESCRIPTION,
3068
- goog.i18n.CharPickerData.MSG_CP_CJK_STROKES
3069
- ];
3070
-
3071
-
3072
- /**
3073
- * List of characters in base88 encoding scheme. Each base88 encoded
3074
- * charater string represents corresponding subcategory specified in
3075
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
3076
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
3077
- * @type {Array.<string>}
3078
- */
3079
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_OTHER = [
3080
- 'ItK0GO8n7H4u8v36%2$P3]8va]59388:DnS8Em:6v3MH6n%fmuX4oZ10]B691E8PEn.X417IH10Q710H.AI10n)Yv20%j1d^L20WPB2W20P3e]3XBT(d0112T808YG40', /* numerics */
3081
- 'ozC0:4>nC0]l8w%70886G6%m^u30U8?8V2GmO8Ewgs06', /* punctuation */
3082
- 'HF;S8091:IIk40F3PB|%CF2[U%8#2oyr06868EG8116Of28GX2MGMHB6O', /* compatibility */
3083
- 'o(D0XB]`].o#V1]8XBv5^A2018$X1PUv1f2Qf60Qq10gt402ZA0', /* less common */
3084
- 'PK6mE86W6e68Wn1uX113v2]88888888', /* pinyin */
3085
- 'oxC0|', /* ideo desc */
3086
- 'AQC0N28M8d7H%F3' /* strokes */
3087
- ];
3088
-
3089
-
3090
- /**
3091
- * Names of subcategories. Each message this array is the
3092
- * name for the corresponding subcategory specified in
3093
- * {@code goog.i18n.CharPickerData.subcategories}.
3094
- * @type {Array.<string>}
3095
- */
3096
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_MISCELLANEOUS = [
3097
- goog.i18n.CharPickerData.MSG_CP_ALL
3098
- ];
3099
-
3100
-
3101
- /**
3102
- * List of characters in base88 encoding scheme. Each base88 encoded
3103
- * charater string represents corresponding subcategory specified in
3104
- * {@code goog.i18n.CharPickerData.subcategories}. Encoding
3105
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
3106
- * @type {Array.<string>}
3107
- */
3108
- goog.i18n.CharPickerData.CHARLIST_OF_MISCELLANEOUS = [
3109
- 'o070><40d1*16%12#g0q4M1u^vQ0K5EL[Q08LEc0!+:40N1Q#g0+;b0Mo;b06nnowQ065LR0cOMA0P09)c;d106{^Q06{Cc0ke6Y=b06o%P0Ae106{6%0o<b0fOL6h072G6YOh0V2$sS1s[;qQ073eZU8F1{2R0t588H26TOc0kf46i4-1%26*2?H1C1cm92`1EWEi1cP1[<!O6OJEZC1I<b0d3%1y16v1q1c8uhMOJ6h[g|P0l6*T-4**@1:)@1[t1ww90}}N9AVg0f6G686G6W918u]5W6$un2We8Eu]U6nQ6'
3110
- ];
3111
-
3112
-
3113
- /**
3114
- * Subcategory names. Each subarray in this array is a list of subcategory
3115
- * names for the corresponding category specified in
3116
- * {@code goog.i18n.CharPickerData.categories}.
3117
- * @type {Array.<Array.<string>>}
3118
- */
3119
- goog.i18n.CharPickerData.prototype.subcategories = [
3120
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_SYMBOL,
3121
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_PUNCTUATION,
3122
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_NUMBER,
3123
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_FORMAT_WHITESPACE,
3124
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_MODIFIER,
3125
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_LATIN,
3126
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_OTHER_EUROPEAN_SCRIPTS,
3127
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_AMERICAN_SCRIPTS,
3128
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_AFRICAN_SCRIPTS,
3129
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_MIDDLE_EASTERN_SCRIPTS,
3130
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_SOUTH_ASIAN_SCRIPTS,
3131
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_SOUTHEAST_ASIAN_SCRIPTS,
3132
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HANGUL,
3133
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_OTHER_EAST_ASIAN_SCRIPTS,
3134
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_1_STROKE_RADICALS,
3135
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_2_STROKE_RADICALS,
3136
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_3_STROKE_RADICALS,
3137
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_4_STROKE_RADICALS,
3138
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_5_STROKE_RADICALS,
3139
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_6_STROKE_RADICALS,
3140
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_7_STROKE_RADICALS,
3141
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_8_STROKE_RADICALS,
3142
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_9_STROKE_RADICALS,
3143
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_10_STROKE_RADICALS,
3144
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_11_17_STROKE_RADICALS,
3145
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_HAN_OTHER,
3146
- goog.i18n.CharPickerData.SUBCATEGORY_NAMES_OF_MISCELLANEOUS
3147
- ];
3148
-
3149
-
3150
- /**
3151
- * Character lists in base88 encoding scheme. Each subarray is a list of
3152
- * base88 encoded charater strings representing corresponding subcategory
3153
- * specified in {@code goog.i18n.CharPickerData.categories}. Encoding
3154
- * scheme is described in {@code goog.i18n.CharListDecompressor}.
3155
- * @type {Array.<Array.<string>>}
3156
- */
3157
- goog.i18n.CharPickerData.prototype.charList = [
3158
- goog.i18n.CharPickerData.CHARLIST_OF_SYMBOL,
3159
- goog.i18n.CharPickerData.CHARLIST_OF_PUNCTUATION,
3160
- goog.i18n.CharPickerData.CHARLIST_OF_NUMBER,
3161
- goog.i18n.CharPickerData.CHARLIST_OF_FORMAT_WHITESPACE,
3162
- goog.i18n.CharPickerData.CHARLIST_OF_MODIFIER,
3163
- goog.i18n.CharPickerData.CHARLIST_OF_LATIN,
3164
- goog.i18n.CharPickerData.CHARLIST_OF_OTHER_EUROPEAN_SCRIPTS,
3165
- goog.i18n.CharPickerData.CHARLIST_OF_AMERICAN_SCRIPTS,
3166
- goog.i18n.CharPickerData.CHARLIST_OF_AFRICAN_SCRIPTS,
3167
- goog.i18n.CharPickerData.CHARLIST_OF_MIDDLE_EASTERN_SCRIPTS,
3168
- goog.i18n.CharPickerData.CHARLIST_OF_SOUTH_ASIAN_SCRIPTS,
3169
- goog.i18n.CharPickerData.CHARLIST_OF_SOUTHEAST_ASIAN_SCRIPTS,
3170
- goog.i18n.CharPickerData.CHARLIST_OF_HANGUL,
3171
- goog.i18n.CharPickerData.CHARLIST_OF_OTHER_EAST_ASIAN_SCRIPTS,
3172
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_1_STROKE_RADICALS,
3173
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_2_STROKE_RADICALS,
3174
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_3_STROKE_RADICALS,
3175
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_4_STROKE_RADICALS,
3176
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_5_STROKE_RADICALS,
3177
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_6_STROKE_RADICALS,
3178
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_7_STROKE_RADICALS,
3179
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_8_STROKE_RADICALS,
3180
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_9_STROKE_RADICALS,
3181
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_10_STROKE_RADICALS,
3182
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_11_17_STROKE_RADICALS,
3183
- goog.i18n.CharPickerData.CHARLIST_OF_HAN_OTHER,
3184
- goog.i18n.CharPickerData.CHARLIST_OF_MISCELLANEOUS
3185
- ];