xmt_froala 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (203) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +28 -0
  4. data/Rakefile +2 -0
  5. data/app/assets/javascripts/xmt_froala.js +31 -0
  6. data/app/assets/stylesheets/xmt_froala.css +17 -0
  7. data/app/controllers/xmt_froala/application_controller.rb +5 -0
  8. data/app/controllers/xmt_froala/assets_controller.rb +94 -0
  9. data/app/models/xmt_froala/asset_uploader.rb +107 -0
  10. data/app/models/xmt_froala/file_uploader.rb +10 -0
  11. data/app/models/xmt_froala/flash_uploader.rb +10 -0
  12. data/app/models/xmt_froala/image_uploader.rb +10 -0
  13. data/app/models/xmt_froala/media_uploader.rb +10 -0
  14. data/config/routes.rb +6 -0
  15. data/lib/generators/xmt_froala/install/USAGE +10 -0
  16. data/lib/generators/xmt_froala/install/install_generator.rb +23 -0
  17. data/lib/generators/xmt_froala/install/templates/application.js +17 -0
  18. data/lib/generators/xmt_froala/install/templates/xmt_froala.rb +29 -0
  19. data/lib/generators/xmt_froala/migration/USAGE +14 -0
  20. data/lib/generators/xmt_froala/migration/migration_generator.rb +36 -0
  21. data/lib/generators/xmt_froala/migration/templates/migration/migration.rb +18 -0
  22. data/lib/generators/xmt_froala/migration/templates/models/active_record/xmt_froala/asset.rb +14 -0
  23. data/lib/generators/xmt_froala/migration/templates/models/active_record/xmt_froala/file.rb +3 -0
  24. data/lib/generators/xmt_froala/migration/templates/models/active_record/xmt_froala/flash.rb +3 -0
  25. data/lib/generators/xmt_froala/migration/templates/models/active_record/xmt_froala/image.rb +3 -0
  26. data/lib/generators/xmt_froala/migration/templates/models/active_record/xmt_froala/media.rb +3 -0
  27. data/lib/generators/xmt_froala/migration/templates/models/mongoid/xmt_froala/asset.rb +27 -0
  28. data/lib/generators/xmt_froala/migration/templates/models/mongoid/xmt_froala/file.rb +3 -0
  29. data/lib/generators/xmt_froala/migration/templates/models/mongoid/xmt_froala/flash.rb +3 -0
  30. data/lib/generators/xmt_froala/migration/templates/models/mongoid/xmt_froala/image.rb +3 -0
  31. data/lib/generators/xmt_froala/migration/templates/models/mongoid/xmt_froala/media.rb +3 -0
  32. data/lib/tasks/xmt_froala_tasks.rake +9 -0
  33. data/lib/xmt_froala.rb +65 -0
  34. data/lib/xmt_froala/active_record.rb +14 -0
  35. data/lib/xmt_froala/engine.rb +32 -0
  36. data/lib/xmt_froala/formtastic.rb +12 -0
  37. data/lib/xmt_froala/helper.rb +105 -0
  38. data/lib/xmt_froala/simple_form.rb +11 -0
  39. data/lib/xmt_froala/version.rb +3 -0
  40. data/vendor/assets/javascripts/xmt_froala/froala_editor.js +0 -0
  41. data/vendor/assets/javascripts/xmt_froala/languages/ar.js +318 -0
  42. data/vendor/assets/javascripts/xmt_froala/languages/bs.js +318 -0
  43. data/vendor/assets/javascripts/xmt_froala/languages/cs.js +318 -0
  44. data/vendor/assets/javascripts/xmt_froala/languages/da.js +318 -0
  45. data/vendor/assets/javascripts/xmt_froala/languages/de.js +318 -0
  46. data/vendor/assets/javascripts/xmt_froala/languages/en_ca.js +262 -0
  47. data/vendor/assets/javascripts/xmt_froala/languages/en_gb.js +262 -0
  48. data/vendor/assets/javascripts/xmt_froala/languages/es.js +318 -0
  49. data/vendor/assets/javascripts/xmt_froala/languages/et.js +318 -0
  50. data/vendor/assets/javascripts/xmt_froala/languages/fa.js +318 -0
  51. data/vendor/assets/javascripts/xmt_froala/languages/fi.js +318 -0
  52. data/vendor/assets/javascripts/xmt_froala/languages/fr.js +318 -0
  53. data/vendor/assets/javascripts/xmt_froala/languages/he.js +318 -0
  54. data/vendor/assets/javascripts/xmt_froala/languages/hr.js +318 -0
  55. data/vendor/assets/javascripts/xmt_froala/languages/hu.js +318 -0
  56. data/vendor/assets/javascripts/xmt_froala/languages/id.js +319 -0
  57. data/vendor/assets/javascripts/xmt_froala/languages/it.js +318 -0
  58. data/vendor/assets/javascripts/xmt_froala/languages/ja.js +318 -0
  59. data/vendor/assets/javascripts/xmt_froala/languages/ko.js +318 -0
  60. data/vendor/assets/javascripts/xmt_froala/languages/me.js +318 -0
  61. data/vendor/assets/javascripts/xmt_froala/languages/nb.js +318 -0
  62. data/vendor/assets/javascripts/xmt_froala/languages/nl.js +318 -0
  63. data/vendor/assets/javascripts/xmt_froala/languages/pl.js +318 -0
  64. data/vendor/assets/javascripts/xmt_froala/languages/pt_br.js +318 -0
  65. data/vendor/assets/javascripts/xmt_froala/languages/pt_pt.js +318 -0
  66. data/vendor/assets/javascripts/xmt_froala/languages/ro.js +319 -0
  67. data/vendor/assets/javascripts/xmt_froala/languages/ru.js +318 -0
  68. data/vendor/assets/javascripts/xmt_froala/languages/sk.js +318 -0
  69. data/vendor/assets/javascripts/xmt_froala/languages/sr.js +318 -0
  70. data/vendor/assets/javascripts/xmt_froala/languages/sv.js +318 -0
  71. data/vendor/assets/javascripts/xmt_froala/languages/th.js +318 -0
  72. data/vendor/assets/javascripts/xmt_froala/languages/tr.js +318 -0
  73. data/vendor/assets/javascripts/xmt_froala/languages/uk.js +318 -0
  74. data/vendor/assets/javascripts/xmt_froala/languages/vi.js +258 -0
  75. data/vendor/assets/javascripts/xmt_froala/languages/zh_cn.js +320 -0
  76. data/vendor/assets/javascripts/xmt_froala/languages/zh_tw.js +318 -0
  77. data/vendor/assets/javascripts/xmt_froala/plugins/align.js +139 -0
  78. data/vendor/assets/javascripts/xmt_froala/plugins/align.min.js +7 -0
  79. data/vendor/assets/javascripts/xmt_froala/plugins/char_counter.js +154 -0
  80. data/vendor/assets/javascripts/xmt_froala/plugins/char_counter.min.js +7 -0
  81. data/vendor/assets/javascripts/xmt_froala/plugins/code_beautifier.js +3270 -0
  82. data/vendor/assets/javascripts/xmt_froala/plugins/code_beautifier.min.js +7 -0
  83. data/vendor/assets/javascripts/xmt_froala/plugins/code_view.js +393 -0
  84. data/vendor/assets/javascripts/xmt_froala/plugins/code_view.min.js +7 -0
  85. data/vendor/assets/javascripts/xmt_froala/plugins/colors.js +492 -0
  86. data/vendor/assets/javascripts/xmt_froala/plugins/colors.min.js +7 -0
  87. data/vendor/assets/javascripts/xmt_froala/plugins/draggable.js +459 -0
  88. data/vendor/assets/javascripts/xmt_froala/plugins/draggable.min.js +7 -0
  89. data/vendor/assets/javascripts/xmt_froala/plugins/emoticons.js +509 -0
  90. data/vendor/assets/javascripts/xmt_froala/plugins/emoticons.min.js +7 -0
  91. data/vendor/assets/javascripts/xmt_froala/plugins/entities.js +121 -0
  92. data/vendor/assets/javascripts/xmt_froala/plugins/entities.min.js +7 -0
  93. data/vendor/assets/javascripts/xmt_froala/plugins/file.js +736 -0
  94. data/vendor/assets/javascripts/xmt_froala/plugins/file.min.js +239 -0
  95. data/vendor/assets/javascripts/xmt_froala/plugins/font_family.js +182 -0
  96. data/vendor/assets/javascripts/xmt_froala/plugins/font_family.min.js +7 -0
  97. data/vendor/assets/javascripts/xmt_froala/plugins/font_size.js +118 -0
  98. data/vendor/assets/javascripts/xmt_froala/plugins/font_size.min.js +7 -0
  99. data/vendor/assets/javascripts/xmt_froala/plugins/forms.js +430 -0
  100. data/vendor/assets/javascripts/xmt_froala/plugins/forms.min.js +7 -0
  101. data/vendor/assets/javascripts/xmt_froala/plugins/fullscreen.js +274 -0
  102. data/vendor/assets/javascripts/xmt_froala/plugins/fullscreen.min.js +7 -0
  103. data/vendor/assets/javascripts/xmt_froala/plugins/help.js +216 -0
  104. data/vendor/assets/javascripts/xmt_froala/plugins/help.min.js +7 -0
  105. data/vendor/assets/javascripts/xmt_froala/plugins/image.js +3323 -0
  106. data/vendor/assets/javascripts/xmt_froala/plugins/image.min.js +7 -0
  107. data/vendor/assets/javascripts/xmt_froala/plugins/image_manager.js +1056 -0
  108. data/vendor/assets/javascripts/xmt_froala/plugins/image_manager.min.js +7 -0
  109. data/vendor/assets/javascripts/xmt_froala/plugins/inline_style.js +94 -0
  110. data/vendor/assets/javascripts/xmt_froala/plugins/inline_style.min.js +7 -0
  111. data/vendor/assets/javascripts/xmt_froala/plugins/line_breaker.js +537 -0
  112. data/vendor/assets/javascripts/xmt_froala/plugins/line_breaker.min.js +7 -0
  113. data/vendor/assets/javascripts/xmt_froala/plugins/link.js +1157 -0
  114. data/vendor/assets/javascripts/xmt_froala/plugins/link.min.js +7 -0
  115. data/vendor/assets/javascripts/xmt_froala/plugins/lists.js +462 -0
  116. data/vendor/assets/javascripts/xmt_froala/plugins/lists.min.js +7 -0
  117. data/vendor/assets/javascripts/xmt_froala/plugins/paragraph_format.js +290 -0
  118. data/vendor/assets/javascripts/xmt_froala/plugins/paragraph_format.min.js +7 -0
  119. data/vendor/assets/javascripts/xmt_froala/plugins/paragraph_style.js +144 -0
  120. data/vendor/assets/javascripts/xmt_froala/plugins/paragraph_style.min.js +7 -0
  121. data/vendor/assets/javascripts/xmt_froala/plugins/plain_paste.js +96 -0
  122. data/vendor/assets/javascripts/xmt_froala/plugins/print.js +137 -0
  123. data/vendor/assets/javascripts/xmt_froala/plugins/print.min.js +7 -0
  124. data/vendor/assets/javascripts/xmt_froala/plugins/quick_format.js +89 -0
  125. data/vendor/assets/javascripts/xmt_froala/plugins/quick_insert.js +478 -0
  126. data/vendor/assets/javascripts/xmt_froala/plugins/quick_insert.min.js +7 -0
  127. data/vendor/assets/javascripts/xmt_froala/plugins/quote.js +141 -0
  128. data/vendor/assets/javascripts/xmt_froala/plugins/quote.min.js +7 -0
  129. data/vendor/assets/javascripts/xmt_froala/plugins/save.js +189 -0
  130. data/vendor/assets/javascripts/xmt_froala/plugins/save.min.js +7 -0
  131. data/vendor/assets/javascripts/xmt_froala/plugins/special_characters.js +781 -0
  132. data/vendor/assets/javascripts/xmt_froala/plugins/special_characters.min.js +7 -0
  133. data/vendor/assets/javascripts/xmt_froala/plugins/table.js +4194 -0
  134. data/vendor/assets/javascripts/xmt_froala/plugins/table.min.js +7 -0
  135. data/vendor/assets/javascripts/xmt_froala/plugins/url.js +194 -0
  136. data/vendor/assets/javascripts/xmt_froala/plugins/url.min.js +7 -0
  137. data/vendor/assets/javascripts/xmt_froala/plugins/video.js +2342 -0
  138. data/vendor/assets/javascripts/xmt_froala/plugins/video.min.js +7 -0
  139. data/vendor/assets/javascripts/xmt_froala/plugins/word_paste.js +1403 -0
  140. data/vendor/assets/javascripts/xmt_froala/plugins/word_paste.min.js +7 -0
  141. data/vendor/assets/javascripts/xmt_froala/third_party/embedly.js +543 -0
  142. data/vendor/assets/javascripts/xmt_froala/third_party/embedly.min.js +7 -0
  143. data/vendor/assets/javascripts/xmt_froala/third_party/image_aviary.js +163 -0
  144. data/vendor/assets/javascripts/xmt_froala/third_party/image_aviary.min.js +7 -0
  145. data/vendor/assets/javascripts/xmt_froala/third_party/spell_checker.js +222 -0
  146. data/vendor/assets/javascripts/xmt_froala/third_party/spell_checker.min.js +7 -0
  147. data/vendor/assets/javascripts/xmt_froala/xmt_froala.js +15172 -0
  148. data/vendor/assets/stylesheets/xmt_froala/css/font-awesome.css +2546 -0
  149. data/vendor/assets/stylesheets/xmt_froala/css/froala_editor.min.css +7 -0
  150. data/vendor/assets/stylesheets/xmt_froala/css/froala_editor.pkgd.css +2902 -0
  151. data/vendor/assets/stylesheets/xmt_froala/css/froala_editor.pkgd.min.css +7 -0
  152. data/vendor/assets/stylesheets/xmt_froala/css/froala_style.css +413 -0
  153. data/vendor/assets/stylesheets/xmt_froala/css/froala_style.min.css +7 -0
  154. data/vendor/assets/stylesheets/xmt_froala/css/plugins/char_counter.css +57 -0
  155. data/vendor/assets/stylesheets/xmt_froala/css/plugins/char_counter.min.css +7 -0
  156. data/vendor/assets/stylesheets/xmt_froala/css/plugins/code_view.css +112 -0
  157. data/vendor/assets/stylesheets/xmt_froala/css/plugins/code_view.min.css +7 -0
  158. data/vendor/assets/stylesheets/xmt_froala/css/plugins/colors.css +155 -0
  159. data/vendor/assets/stylesheets/xmt_froala/css/plugins/colors.min.css +7 -0
  160. data/vendor/assets/stylesheets/xmt_froala/css/plugins/draggable.css +43 -0
  161. data/vendor/assets/stylesheets/xmt_froala/css/plugins/draggable.min.css +7 -0
  162. data/vendor/assets/stylesheets/xmt_froala/css/plugins/emoticons.css +42 -0
  163. data/vendor/assets/stylesheets/xmt_froala/css/plugins/emoticons.min.css +7 -0
  164. data/vendor/assets/stylesheets/xmt_froala/css/plugins/file.css +146 -0
  165. data/vendor/assets/stylesheets/xmt_froala/css/plugins/file.min.css +7 -0
  166. data/vendor/assets/stylesheets/xmt_froala/css/plugins/fullscreen.css +28 -0
  167. data/vendor/assets/stylesheets/xmt_froala/css/plugins/fullscreen.min.css +7 -0
  168. data/vendor/assets/stylesheets/xmt_froala/css/plugins/help.css +52 -0
  169. data/vendor/assets/stylesheets/xmt_froala/css/plugins/help.min.css +7 -0
  170. data/vendor/assets/stylesheets/xmt_froala/css/plugins/image.css +244 -0
  171. data/vendor/assets/stylesheets/xmt_froala/css/plugins/image.min.css +7 -0
  172. data/vendor/assets/stylesheets/xmt_froala/css/plugins/image_manager.css +266 -0
  173. data/vendor/assets/stylesheets/xmt_froala/css/plugins/image_manager.min.css +7 -0
  174. data/vendor/assets/stylesheets/xmt_froala/css/plugins/line_breaker.css +37 -0
  175. data/vendor/assets/stylesheets/xmt_froala/css/plugins/line_breaker.min.css +7 -0
  176. data/vendor/assets/stylesheets/xmt_froala/css/plugins/quick_insert.css +70 -0
  177. data/vendor/assets/stylesheets/xmt_froala/css/plugins/quick_insert.min.css +7 -0
  178. data/vendor/assets/stylesheets/xmt_froala/css/plugins/special_characters.css +51 -0
  179. data/vendor/assets/stylesheets/xmt_froala/css/plugins/special_characters.min.css +7 -0
  180. data/vendor/assets/stylesheets/xmt_froala/css/plugins/table.css +181 -0
  181. data/vendor/assets/stylesheets/xmt_froala/css/plugins/table.min.css +7 -0
  182. data/vendor/assets/stylesheets/xmt_froala/css/plugins/video.css +231 -0
  183. data/vendor/assets/stylesheets/xmt_froala/css/plugins/video.min.css +7 -0
  184. data/vendor/assets/stylesheets/xmt_froala/css/themes/dark.css +1281 -0
  185. data/vendor/assets/stylesheets/xmt_froala/css/themes/dark.min.css +7 -0
  186. data/vendor/assets/stylesheets/xmt_froala/css/themes/gray.css +1281 -0
  187. data/vendor/assets/stylesheets/xmt_froala/css/themes/gray.min.css +7 -0
  188. data/vendor/assets/stylesheets/xmt_froala/css/themes/red.css +1281 -0
  189. data/vendor/assets/stylesheets/xmt_froala/css/themes/red.min.css +7 -0
  190. data/vendor/assets/stylesheets/xmt_froala/css/themes/royal.css +1281 -0
  191. data/vendor/assets/stylesheets/xmt_froala/css/themes/royal.min.css +7 -0
  192. data/vendor/assets/stylesheets/xmt_froala/css/third_party/embedly.css +64 -0
  193. data/vendor/assets/stylesheets/xmt_froala/css/third_party/embedly.min.css +7 -0
  194. data/vendor/assets/stylesheets/xmt_froala/css/third_party/spell_checker.css +72 -0
  195. data/vendor/assets/stylesheets/xmt_froala/css/third_party/spell_checker.min.css +7 -0
  196. data/vendor/assets/stylesheets/xmt_froala/css/xmt_froala.css +1423 -0
  197. data/vendor/assets/stylesheets/xmt_froala/fonts/FontAwesome.otf +0 -0
  198. data/vendor/assets/stylesheets/xmt_froala/fonts/fontawesome-webfont.eot +0 -0
  199. data/vendor/assets/stylesheets/xmt_froala/fonts/fontawesome-webfont.svg +2671 -0
  200. data/vendor/assets/stylesheets/xmt_froala/fonts/fontawesome-webfont.ttf +0 -0
  201. data/vendor/assets/stylesheets/xmt_froala/fonts/fontawesome-webfont.woff +0 -0
  202. data/vendor/assets/stylesheets/xmt_froala/fonts/fontawesome-webfont.woff2 +0 -0
  203. metadata +273 -0
@@ -0,0 +1,258 @@
1
+ /*!
2
+ * froala_editor v2.8.1 (https://www.froala.com/wysiwyg-editor)
3
+ * License https://froala.com/wysiwyg-editor/terms/
4
+ * Copyright 2014-2018 Froala Labs
5
+ */
6
+
7
+ (function (factory) {
8
+ if (typeof define === 'function' && define.amd) {
9
+ // AMD. Register as an anonymous module.
10
+ define(['jquery'], factory);
11
+ } else if (typeof module === 'object' && module.exports) {
12
+ // Node/CommonJS
13
+ module.exports = function( root, jQuery ) {
14
+ if ( jQuery === undefined ) {
15
+ // require('jQuery') returns a factory that requires window to
16
+ // build a jQuery instance, we normalize how we use modules
17
+ // that require this pattern but the window provided is a noop
18
+ // if it's defined (how jquery works)
19
+ if ( typeof window !== 'undefined' ) {
20
+ jQuery = require('jquery');
21
+ }
22
+ else {
23
+ jQuery = require('jquery')(root);
24
+ }
25
+ }
26
+ return factory(jQuery);
27
+ };
28
+ } else {
29
+ // Browser globals
30
+ factory(window.jQuery);
31
+ }
32
+ }(function ($) {
33
+ $.FE.LANGUAGE['vi'] = {
34
+ translation: {
35
+ // Place holder
36
+ "Type something": "Vi\u1EBFt \u0111i\u1EC1u g\u00EC \u0111\u00F3...",
37
+
38
+ // Basic formatting
39
+ "Bold": "\u0110\u1EADm",
40
+ "Italic": "Nghi\u00EAng",
41
+ "Underline": "G\u1EA1ch ch\u00E2n",
42
+ "Strikethrough": "G\u1EA1ch ngang ch\u1EEF",
43
+
44
+ // Main buttons
45
+ "Insert": "Ch\u00E8n",
46
+ "Delete": "X\u00F3a",
47
+ "Cancel": "H\u1EE7y",
48
+ "OK": "OK",
49
+ "Back": "Tr\u1EDF v\u1EC1",
50
+ "Remove": "X\u00F3a",
51
+ "More": "Th\u00EAm",
52
+ "Update": "C\u1EADp nh\u1EADt",
53
+ "Style": "Ki\u1EC3u",
54
+
55
+ // Font
56
+ "Font Family": "Ph\u00F4ng ch\u1EEF",
57
+ "Font Size": "C\u1EE1 ch\u1EEF",
58
+
59
+ // Colors
60
+ "Colors": "M\u00E0u s\u1EAFc",
61
+ "Background": "N\u1EC1n",
62
+ "Text": "Ch\u1EEF",
63
+ "HEX Color": "Màu hex",
64
+
65
+ // Paragraphs
66
+ "Paragraph Format": "\u0110\u1ECBnh d\u1EA1ng \u0111o\u1EA1n v\u0103n b\u1EA3n",
67
+ "Normal": "Normal",
68
+ "Code": "Code",
69
+ "Heading 1": "Heading 1",
70
+ "Heading 2": "Heading 2",
71
+ "Heading 3": "Heading 3",
72
+ "Heading 4": "Heading 4",
73
+
74
+ // Style
75
+ "Paragraph Style": "Ki\u1EC3u \u0111o\u1EA1n v\u0103n b\u1EA3n",
76
+ "Inline Style": "Ki\u1EC3u d\u00F2ng",
77
+
78
+ // Alignment
79
+ "Align": "C\u0103n ch\u1EC9nh",
80
+ "Align Left": "C\u0103n tr\u00E1i",
81
+ "Align Center": "C\u0103n gi\u1EEFa",
82
+ "Align Right": "C\u0103n ph\u1EA3i",
83
+ "Align Justify": "C\u0103n \u0111\u1EC1u",
84
+ "None": "Kh\u00F4ng",
85
+
86
+ // Lists
87
+ "Ordered List": "Danh s\u00E1ch theo th\u1EE9 t\u1EF1",
88
+ "Unordered List": "Danh s\u00E1ch li\u1EC7t k\u00EA",
89
+
90
+ // Indent
91
+ "Decrease Indent": "Gi\u1EA3m c\u0103n l\u1EC1",
92
+ "Increase Indent": "T\u0103ng c\u0103n l\u1EC1",
93
+
94
+ // Links
95
+ "Insert Link": "Ch\u00E8n link",
96
+ "Open in new tab": "M\u1EDF trong tab m\u1EDBi",
97
+ "Open Link": "M\u1EDF link",
98
+ "Edit Link": "S\u1EEDa link",
99
+ "Unlink": "B\u1ECF link",
100
+ "Choose Link": "Ch\u1ECDn link",
101
+
102
+ // Images
103
+ "Insert Image": "Ch\u00E8n h\u00ECnh",
104
+ "Upload Image": "T\u1EA3i h\u00ECnh l\u00EAn",
105
+ "By URL": "B\u1EB1ng URL",
106
+ "Browse": "Duy\u1EC7t file",
107
+ "Drop image": "K\u00E9o th\u1EA3 h\u00ECnh",
108
+ "or click": "ho\u1EB7c ch\u1ECDn",
109
+ "Manage Images": "Qu\u1EA3n l\u00FD h\u00ECnh \u1EA3nh",
110
+ "Loading": "\u0110ang t\u1EA3i",
111
+ "Deleting": "\u0110ang x\u00F3a",
112
+ "Tags": "Tags",
113
+ "Are you sure? Image will be deleted.": "B\u1EA1n c\u00F3 ch\u1EAFc ch\u1EAFn? H\u00ECnh \u1EA3nh s\u1EBD b\u1ECB x\u00F3a.",
114
+ "Replace": "Thay th\u1EBF",
115
+ "Uploading": "\u0110ang t\u1EA3i l\u00EAn",
116
+ "Loading image": "\u0110ang t\u1EA3i h\u00ECnh \u1EA3nh",
117
+ "Display": "Hi\u1EC3n th\u1ECB",
118
+ "Inline": "C\u00F9ng d\u00F2ng v\u1EDBi ch\u1EEF",
119
+ "Break Text": "Kh\u00F4ng c\u00F9ng d\u00F2ng v\u1EDBi ch\u1EEF",
120
+ "Alternate Text": "Thay th\u1EBF ch\u1EEF",
121
+ "Change Size": "Thay \u0111\u1ED5i k\u00EDch c\u1EE1",
122
+ "Width": "Chi\u1EC1u r\u1ED9ng",
123
+ "Height": "Chi\u1EC1u cao",
124
+ "Something went wrong. Please try again.": "C\u00F3 l\u1ED7i x\u1EA3y ra. Vui l\u00F2ng th\u1EED l\u1EA1i sau.",
125
+ "Image Caption": "Chú thích hình ảnh",
126
+ "Advanced Edit": "Chỉnh sửa tiên tiến",
127
+
128
+ // Video
129
+ "Insert Video": "Ch\u00E8n video",
130
+ "Embedded Code": "M\u00E3 nh\u00FAng",
131
+ "Paste in a video URL": "Dán vào một url video",
132
+ "Drop video": "Thả video",
133
+ "Your browser does not support HTML5 video.": "Trình duyệt của bạn không hỗ trợ video html5.",
134
+ "Upload Video": "Tải video lên",
135
+
136
+ // Tables
137
+ "Insert Table": "Ch\u00E8n b\u1EA3ng",
138
+ "Table Header": "D\u00F2ng \u0111\u1EA7u b\u1EA3ng",
139
+ "Remove Table": "X\u00F3a b\u1EA3ng",
140
+ "Table Style": "Ki\u1EC3u b\u1EA3ng",
141
+ "Horizontal Align": "C\u0103n ch\u1EC9nh chi\u1EC1u ngang",
142
+ "Row": "D\u00F2ng",
143
+ "Insert row above": "Ch\u00E8n d\u00F2ng ph\u00EDa tr\u00EAn",
144
+ "Insert row below": "Ch\u00E8n d\u00F2ng ph\u00EDa d\u01B0\u1EDBi",
145
+ "Delete row": "X\u00F3a d\u00F2ng",
146
+ "Column": "C\u1ED9t",
147
+ "Insert column before": "Ch\u00E8n c\u1ED9t b\u00EAn tr\u00E1i",
148
+ "Insert column after": "Ch\u00E8n c\u1ED9t b\u00EAn ph\u1EA3i",
149
+ "Delete column": "X\u00F3a c\u1ED9t",
150
+ "Cell": "\u00D4 b\u1EA3ng",
151
+ "Merge cells": "G\u1ED9p \u00F4",
152
+ "Horizontal split": "Chia d\u00F2ng",
153
+ "Vertical split": "Chia c\u1ED9t",
154
+ "Cell Background": "M\u00E0u n\u1EC1n",
155
+ "Vertical Align": "C\u0103n ch\u1EC9nh chi\u1EC1u d\u1ECDc",
156
+ "Top": "Tr\u00EAn c\u00F9ng",
157
+ "Middle": "Gi\u1EEFa",
158
+ "Bottom": "D\u01B0\u1EDBi \u0111\u00E1y",
159
+ "Align Top": "C\u0103n tr\u00EAn",
160
+ "Align Middle": "C\u0103n gi\u1EEFa",
161
+ "Align Bottom": "C\u0103n d\u01B0\u1EDBi",
162
+ "Cell Style": "Ki\u1EC3u \u00F4",
163
+
164
+ // Files
165
+ "Upload File": "T\u1EA3i file l\u00EAn",
166
+ "Drop file": "K\u00E9o th\u1EA3 file",
167
+
168
+ // Emoticons
169
+ "Emoticons": "Bi\u1EC3u t\u01B0\u1EE3ng c\u1EA3m x\u00FAc",
170
+
171
+ // Line breaker
172
+ "Break": "Ng\u1EAFt d\u00F2ng",
173
+
174
+ // Math
175
+ "Subscript": "Subscript",
176
+ "Superscript": "Superscript",
177
+
178
+ // Full screen
179
+ "Fullscreen": "To\u00E0n m\u00E0n h\u00ECnh",
180
+
181
+ // Horizontal line
182
+ "Insert Horizontal Line": "Ch\u00E8n \u0111\u01B0\u1EDDng k\u1EBB ngang v\u0103n b\u1EA3n",
183
+
184
+ // Clear formatting
185
+ "Clear Formatting": "X\u00F3a \u0111\u1ECBnh d\u1EA1ng",
186
+
187
+ // Undo, redo
188
+ "Undo": "Undo",
189
+ "Redo": "Redo",
190
+
191
+ // Select all
192
+ "Select All": "Ch\u1ECDn t\u1EA5t c\u1EA3",
193
+
194
+ // Code view
195
+ "Code View": "Xem d\u1EA1ng code",
196
+
197
+ // Quote
198
+ "Quote": "Tr\u00EDch d\u1EABn",
199
+ "Increase": "T\u0103ng",
200
+ "Decrease": "Gi\u1EA3m",
201
+
202
+ // Quick Insert
203
+ "Quick Insert": "Ch\u00E8n nhanh",
204
+
205
+ // Spcial Characters
206
+ "Special Characters": "Nhân vật đặc biệt",
207
+ "Latin": "Latin",
208
+ "Greek": "Người Hy Lạp",
209
+ "Cyrillic": "Chữ viết tay",
210
+ "Punctuation": "Chấm câu",
211
+ "Currency": "Tiền tệ",
212
+ "Arrows": "Mũi tên",
213
+ "Math": "Môn Toán",
214
+ "Misc": "Misc",
215
+
216
+ // Print.
217
+ "Print": "In",
218
+
219
+ // Spell Checker.
220
+ "Spell Checker": "Công cụ kiểm tra chính tả",
221
+
222
+ // Help
223
+ "Help": "Cứu giúp",
224
+ "Shortcuts": "Phím tắt",
225
+ "Inline Editor": "Trình biên tập nội tuyến",
226
+ "Show the editor": "Hiển thị trình soạn thảo",
227
+ "Common actions": "Hành động thông thường",
228
+ "Copy": "Sao chép",
229
+ "Cut": "Cắt tỉa",
230
+ "Paste": "Dán",
231
+ "Basic Formatting": "Định dạng cơ bản",
232
+ "Increase quote level": "Tăng mức báo giá",
233
+ "Decrease quote level": "Giảm mức giá",
234
+ "Image / Video": "Hình ảnh / video",
235
+ "Resize larger": "Thay đổi kích thước lớn hơn",
236
+ "Resize smaller": "Thay đổi kích thước nhỏ hơn",
237
+ "Table": "Bàn",
238
+ "Select table cell": "Chọn ô trong bảng",
239
+ "Extend selection one cell": "Mở rộng lựa chọn một ô",
240
+ "Extend selection one row": "Mở rộng lựa chọn một hàng",
241
+ "Navigation": "Dẫn đường",
242
+ "Focus popup / toolbar": "Tập trung popup / thanh công cụ",
243
+ "Return focus to previous position": "Quay trở lại vị trí trước",
244
+
245
+ // Embed.ly
246
+ "Embed URL": "Url nhúng",
247
+ "Paste in a URL to embed": "Dán vào một url để nhúng",
248
+
249
+ // Word Paste.
250
+ "The pasted content is coming from a Microsoft Word document. Do you want to keep the format or clean it up?": "Nội dung dán là đến từ một tài liệu từ microsoft. bạn có muốn giữ định dạng hoặc làm sạch nó?",
251
+ "Keep": "Giữ",
252
+ "Clean": "Dọn dẹp",
253
+ "Word Paste Detected": "Dán từ được phát hiện"
254
+ },
255
+ direction: "ltr"
256
+ };
257
+
258
+ }));
@@ -0,0 +1,320 @@
1
+ /*!
2
+ * froala_editor v2.8.1 (https://www.froala.com/wysiwyg-editor)
3
+ * License https://froala.com/wysiwyg-editor/terms/
4
+ * Copyright 2014-2018 Froala Labs
5
+ */
6
+
7
+ (function (factory) {
8
+ if (typeof define === 'function' && define.amd) {
9
+ // AMD. Register as an anonymous module.
10
+ define(['jquery'], factory);
11
+ } else if (typeof module === 'object' && module.exports) {
12
+ // Node/CommonJS
13
+ module.exports = function( root, jQuery ) {
14
+ if ( jQuery === undefined ) {
15
+ // require('jQuery') returns a factory that requires window to
16
+ // build a jQuery instance, we normalize how we use modules
17
+ // that require this pattern but the window provided is a noop
18
+ // if it's defined (how jquery works)
19
+ if ( typeof window !== 'undefined' ) {
20
+ jQuery = require('jquery');
21
+ }
22
+ else {
23
+ jQuery = require('jquery')(root);
24
+ }
25
+ }
26
+ return factory(jQuery);
27
+ };
28
+ } else {
29
+ // Browser globals
30
+ factory(window.jQuery);
31
+ }
32
+ }(function ($) {
33
+ /**
34
+ * Simplified Chinese spoken in China.
35
+ */
36
+
37
+ $.FE.LANGUAGE['zh_cn'] = {
38
+ translation: {
39
+ // Place holder
40
+ "Type something": "\u8f93\u5165\u4e00\u4e9b\u5185\u5bb9",
41
+
42
+ // Basic formatting
43
+ "Bold": "\u7c97\u4f53",
44
+ "Italic": "\u659c\u4f53",
45
+ "Underline": "\u4e0b\u5212\u7ebf",
46
+ "Strikethrough": "\u5220\u9664\u7ebf",
47
+
48
+ // Main buttons
49
+ "Insert": "\u63d2\u5165",
50
+ "Delete": "\u5220\u9664",
51
+ "Cancel": "\u53d6\u6d88",
52
+ "OK": "\u786e\u5b9a",
53
+ "Back": "\u80cc\u90e8",
54
+ "Remove": "\u53bb\u6389",
55
+ "More": "\u66f4\u591a",
56
+ "Update": "\u66f4\u65b0",
57
+ "Style": "\u98ce\u683c",
58
+
59
+ // Font
60
+ "Font Family": "\u5b57\u4f53",
61
+ "Font Size": "\u5b57\u53f7",
62
+
63
+ // Colors
64
+ "Colors": "\u989c\u8272",
65
+ "Background": "\u80cc\u666f",
66
+ "Text": "\u6587\u5b57",
67
+ "HEX Color": "十六进制颜色",
68
+
69
+ // Paragraphs
70
+ "Paragraph Format": "\u683c\u5f0f",
71
+ "Normal": "\u6b63\u5e38",
72
+ "Code": "\u4ee3\u7801",
73
+ "Heading 1": "\u6807\u98981",
74
+ "Heading 2": "\u6807\u98982",
75
+ "Heading 3": "\u6807\u98983",
76
+ "Heading 4": "\u6807\u98984",
77
+
78
+ // Style
79
+ "Paragraph Style": "\u6bb5\u843d\u6837\u5f0f",
80
+ "Inline Style": "\u5185\u8054\u6837\u5f0f",
81
+
82
+ // Alignment
83
+ "Align": "\u5bf9\u9f50\u65b9\u5f0f",
84
+ "Align Left": "\u5de6\u5bf9\u9f50",
85
+ "Align Center": "\u5c45\u4e2d",
86
+ "Align Right": "\u53f3\u5bf9\u9f50",
87
+ "Align Justify": "\u4e24\u7aef\u5bf9\u9f50",
88
+ "None": "\u65e0",
89
+
90
+ // Lists
91
+ "Ordered List": "\u7f16\u53f7\u5217\u8868",
92
+ "Unordered List": "\u9879\u76ee\u7b26\u53f7",
93
+
94
+ // Indent
95
+ "Decrease Indent": "\u51cf\u5c11\u7f29\u8fdb",
96
+ "Increase Indent": "\u589e\u52a0\u7f29\u8fdb",
97
+
98
+ // Links
99
+ "Insert Link": "\u63d2\u5165\u94fe\u63a5",
100
+ "Open in new tab": "\u5f00\u542f\u5728\u65b0\u6807\u7b7e\u9875",
101
+ "Open Link": "\u6253\u5f00\u94fe\u63a5",
102
+ "Edit Link": "\u7f16\u8f91\u94fe\u63a5",
103
+ "Unlink": "\u5220\u9664\u94fe\u63a5",
104
+ "Choose Link": "\u9009\u62e9\u94fe\u63a5",
105
+
106
+ // Images
107
+ "Insert Image": "\u63d2\u5165\u56fe\u7247",
108
+ "Upload Image": "\u4e0a\u4f20\u56fe\u7247",
109
+ "By URL": "\u901a\u8fc7\u7f51\u5740",
110
+ "Browse": "\u6d4f\u89c8",
111
+ "Clipboard": "\u7c98\u8d34",
112
+ "quickFormat": "\u4e00\u952e\u6392\u7248",
113
+ "Drop image": "\u56fe\u50cf\u62d6\u653e",
114
+ "or click": "\u6216\u70b9\u51fb",
115
+ "Manage Images": "\u7ba1\u7406\u56fe\u50cf",
116
+ "Loading": "\u8f7d\u5165\u4e2d",
117
+ "Deleting": "\u5220\u9664",
118
+ "Tags": "\u6807\u7b7e",
119
+ "Are you sure? Image will be deleted.": "\u4f60\u786e\u5b9a\u5417\uff1f\u56fe\u50cf\u5c06\u88ab\u5220\u9664\u3002",
120
+ "Replace": "\u66f4\u6362",
121
+ "Uploading": "\u4e0a\u4f20",
122
+ "Loading image": "\u5bfc\u5165\u56fe\u50cf",
123
+ "Display": "\u663e\u793a",
124
+ "Inline": "\u6392\u961f",
125
+ "Break Text": "\u65ad\u5f00\u6587\u672c",
126
+ "Alternate Text": "\u5907\u7528\u6587\u672c",
127
+ "Change Size": "\u5c3a\u5bf8\u53d8\u5316",
128
+ "Width": "\u5bbd\u5ea6",
129
+ "Height": "\u9ad8\u5ea6",
130
+ "Something went wrong. Please try again.": "\u51fa\u4e86\u4e9b\u95ee\u9898\u3002 \u8bf7\u518d\u8bd5\u4e00\u6b21\u3002",
131
+ "Image Caption": "图片说明",
132
+ "Advanced Edit": "高级编辑",
133
+
134
+ // Video
135
+ "Insert Video": "\u63d2\u5165\u89c6\u9891",
136
+ "Embedded Code": "\u5d4c\u5165\u5f0f\u4ee3\u7801",
137
+ "Paste in a video URL": "粘贴在视频网址",
138
+ "Drop video": "放下视频",
139
+ "Your browser does not support HTML5 video.": "您的浏览器不支持html5视频。",
140
+ "Upload Video": "上传视频",
141
+
142
+ // Tables
143
+ "Insert Table": "\u63d2\u5165\u8868\u683c",
144
+ "Table Header": "\u8868\u5934",
145
+ "Remove Table": "\u5220\u9664\u8868",
146
+ "Table Style": "\u8868\u683c\u6837\u5f0f",
147
+ "Horizontal Align": "\u6c34\u5e73\u5bf9\u9f50\u65b9\u5f0f",
148
+ "Row": "\u884c",
149
+ "Insert row above": "\u5728\u4e0a\u65b9\u63d2\u5165",
150
+ "Insert row below": "\u5728\u4e0b\u65b9\u63d2\u5165",
151
+ "Delete row": "\u5220\u9664\u884c",
152
+ "Column": "\u5217",
153
+ "Insert column before": "\u5728\u5de6\u4fa7\u63d2\u5165",
154
+ "Insert column after": "\u5728\u53f3\u4fa7\u63d2\u5165",
155
+ "Delete column": "\u5220\u9664\u5217",
156
+ "Cell": "\u5355\u5143\u683c",
157
+ "Merge cells": "\u5408\u5e76\u5355\u5143\u683c",
158
+ "Horizontal split": "\u6c34\u5e73\u5206\u5272",
159
+ "Vertical split": "\u5782\u76f4\u5206\u5272",
160
+ "Cell Background": "\u5355\u5143\u683c\u80cc\u666f",
161
+ "Vertical Align": "\u5782\u76f4\u5bf9\u9f50\u65b9\u5f0f",
162
+ "Top": "\u6700\u4f73",
163
+ "Middle": "\u4e2d\u95f4",
164
+ "Bottom": "\u5e95\u90e8",
165
+ "Align Top": "\u9876\u90e8\u5bf9\u9f50",
166
+ "Align Middle": "\u4e2d\u95f4\u5bf9\u9f50",
167
+ "Align Bottom": "\u5e95\u90e8\u5bf9\u9f50",
168
+ "Cell Style": "\u5355\u5143\u683c\u6837\u5f0f",
169
+
170
+ // Files
171
+ "Upload File": "\u4e0a\u4f20\u6587\u4ef6",
172
+ "Drop file": "\u6587\u4ef6\u62d6\u653e",
173
+
174
+ // Emoticons
175
+ "Emoticons": "\u8868\u60c5",
176
+ "Grinning face": "\u8138\u4e0a\u7b11\u563b\u563b",
177
+ "Grinning face with smiling eyes": "咧着嘴笑的脸微笑的眼睛",
178
+ "Face with tears of joy": "\u7b11\u563b\u563b\u7684\u8138\uff0c\u542b\u7b11\u7684\u773c\u775b",
179
+ "Smiling face with open mouth": "\u7b11\u8138\u5f20\u5f00\u5634",
180
+ "Smiling face with open mouth and smiling eyes": "\u7b11\u8138\u5f20\u5f00\u5634\u5fae\u7b11\u7684\u773c\u775b",
181
+ "Smiling face with open mouth and cold sweat": "\u7b11\u8138\u5f20\u5f00\u5634\uff0c\u4e00\u8eab\u51b7\u6c57",
182
+ "Smiling face with open mouth and tightly-closed eyes": "\u7b11\u8138\u5f20\u5f00\u5634\uff0c\u7d27\u7d27\u95ed\u7740\u773c\u775b",
183
+ "Smiling face with halo": "\u7b11\u8138\u6655",
184
+ "Smiling face with horns": "\u5fae\u7b11\u7684\u8138\u89d2",
185
+ "Winking face": "\u7728\u773c\u8868\u60c5",
186
+ "Smiling face with smiling eyes": "\u9762\u5e26\u5fae\u7b11\u7684\u773c\u775b",
187
+ "Face savoring delicious food": "\u9762\u5bf9\u54c1\u5c1d\u7f8e\u5473\u7684\u98df\u7269",
188
+ "Relieved face": "\u9762\u5bf9\u5982\u91ca\u91cd\u8d1f",
189
+ "Smiling face with heart-shaped eyes": "\u5fae\u7b11\u7684\u8138\uff0c\u5fc3\u810f\u5f62\u7684\u773c\u775b",
190
+ "Smiling face with sunglasses": "\u7b11\u8138\u592a\u9633\u955c",
191
+ "Smirking face": "\u9762\u5bf9\u9762\u5e26\u7b11\u5bb9",
192
+ "Neutral face": "\u4e2d\u6027\u9762",
193
+ "Expressionless face": "\u9762\u65e0\u8868\u60c5",
194
+ "Unamused face": "\u4e00\u8138\u4e0d\u5feb\u7684\u8138",
195
+ "Face with cold sweat": "\u9762\u5bf9\u51b7\u6c57",
196
+ "Pensive face": "\u6c89\u601d\u7684\u8138",
197
+ "Confused face": "\u9762\u5bf9\u56f0\u60d1",
198
+ "Confounded face": "\u8be5\u6b7b\u7684\u8138",
199
+ "Kissing face": "\u9762\u5bf9\u63a5\u543b",
200
+ "Face throwing a kiss": "\u9762\u5bf9\u6295\u63b7\u4e00\u4e2a\u543b",
201
+ "Kissing face with smiling eyes": "\u63a5\u543b\u8138\uff0c\u542b\u7b11\u7684\u773c\u775b",
202
+ "Kissing face with closed eyes": "\u63a5\u543b\u7684\u8138\u95ed\u7740\u773c\u775b",
203
+ "Face with stuck out tongue": "\u9762\u5bf9\u4f38\u51fa\u820c\u5934",
204
+ "Face with stuck out tongue and winking eye": "\u9762\u5bf9\u4f38\u51fa\u820c\u5934\u548c\u7728\u52a8\u7684\u773c\u775b",
205
+ "Face with stuck out tongue and tightly-closed eyes": "\u9762\u5bf9\u4f38\u51fa\u820c\u5934\u548c\u7d27\u95ed\u7684\u773c\u775b",
206
+ "Disappointed face": "\u9762\u5bf9\u5931\u671b",
207
+ "Worried face": "\u9762\u5bf9\u62c5\u5fc3",
208
+ "Angry face": "\u6124\u6012\u7684\u8138",
209
+ "Pouting face": "\u9762\u5bf9\u5658\u5634",
210
+ "Crying face": "\u54ed\u6ce3\u7684\u8138",
211
+ "Persevering face": "\u600e\u5948\u8138",
212
+ "Face with look of triumph": "\u9762\u5e26\u770b\u7684\u80dc\u5229",
213
+ "Disappointed but relieved face": "\u5931\u671b\uff0c\u4f46\u8138\u4e0a\u91ca\u7136",
214
+ "Frowning face with open mouth": "\u9762\u5bf9\u76b1\u7740\u7709\u5934\u5f20\u53e3",
215
+ "Anguished face": "\u9762\u5bf9\u75db\u82e6",
216
+ "Fearful face": "\u53ef\u6015\u7684\u8138",
217
+ "Weary face": "\u9762\u5bf9\u538c\u5026",
218
+ "Sleepy face": "\u9762\u5bf9\u56f0",
219
+ "Tired face": "\u75b2\u60eb\u7684\u8138",
220
+ "Grimacing face": "\u72f0\u72de\u7684\u8138",
221
+ "Loudly crying face": "\u5927\u58f0\u54ed\u8138",
222
+ "Face with open mouth": "\u9762\u5bf9\u5f20\u5f00\u5634",
223
+ "Hushed face": "\u5b89\u9759\u7684\u8138",
224
+ "Face with open mouth and cold sweat": "脸上露出嘴巴和冷汗",
225
+ "Face screaming in fear": "\u9762\u5bf9\u5f20\u5f00\u5634\uff0c\u4e00\u8eab\u51b7\u6c57",
226
+ "Astonished face": "\u9762\u5bf9\u60ca\u8bb6",
227
+ "Flushed face": "\u7ea2\u6251\u6251\u7684\u8138\u86cb",
228
+ "Sleeping face": "\u719f\u7761\u7684\u8138",
229
+ "Dizzy face": "\u9762\u5bf9\u7729",
230
+ "Face without mouth": "\u8138\u4e0a\u6ca1\u6709\u5634",
231
+ "Face with medical mask": "\u9762\u5bf9\u533b\u7597\u53e3\u7f69",
232
+
233
+ // Line breaker
234
+ "Break": "\u7834",
235
+
236
+ // Math
237
+ "Subscript": "\u4e0b\u6807",
238
+ "Superscript": "\u4e0a\u6807",
239
+
240
+ // Full screen
241
+ "Fullscreen": "\u5168\u5c4f",
242
+
243
+ // Horizontal line
244
+ "Insert Horizontal Line": "\u63d2\u5165\u6c34\u5e73\u7ebf",
245
+
246
+ // Clear formatting
247
+ "Clear Formatting": "\u683c\u5f0f\u5316\u5220\u9664",
248
+
249
+ // Undo, redo
250
+ "Undo": "\u64a4\u6d88",
251
+ "Redo": "\u91cd\u590d",
252
+
253
+ // Select all
254
+ "Select All": "\u5168\u9009",
255
+
256
+ // Code view
257
+ "Code View": "\u4ee3\u7801\u89c6\u56fe",
258
+
259
+ // Quote
260
+ "Quote": "\u5f15\u7528",
261
+ "Increase": "\u589e\u52a0\u5f15\u7528",
262
+ "Decrease": "\u5220\u9664\u5f15\u7528",
263
+
264
+ // Quick Insert
265
+ "Quick Insert": "\u5feb\u63d2",
266
+
267
+ // Spcial Characters
268
+ "Special Characters": "特殊字符",
269
+ "Latin": "拉丁",
270
+ "Greek": "希腊语",
271
+ "Cyrillic": "西里尔",
272
+ "Punctuation": "标点",
273
+ "Currency": "货币",
274
+ "Arrows": "箭头",
275
+ "Math": "数学",
276
+ "Misc": "杂项",
277
+
278
+ // Print.
279
+ "Print": "打印",
280
+
281
+ // Spell Checker.
282
+ "Spell Checker": "拼写检查器",
283
+
284
+ // Help
285
+ "Help": "帮帮我",
286
+ "Shortcuts": "快捷键",
287
+ "Inline Editor": "内联编辑器",
288
+ "Show the editor": "显示编辑",
289
+ "Common actions": "共同行动",
290
+ "Copy": "复制",
291
+ "Cut": "切",
292
+ "Paste": "糊",
293
+ "Basic Formatting": "基本格式",
294
+ "Increase quote level": "提高报价水平",
295
+ "Decrease quote level": "降低报价水平",
296
+ "Image / Video": "图像/视频",
297
+ "Resize larger": "调整大小更大",
298
+ "Resize smaller": "调整大小更小",
299
+ "Table": "表",
300
+ "Select table cell": "选择表单元格",
301
+ "Extend selection one cell": "扩展选择一个单元格",
302
+ "Extend selection one row": "扩展选择一行",
303
+ "Navigation": "导航",
304
+ "Focus popup / toolbar": "焦点弹出/工具栏",
305
+ "Return focus to previous position": "将焦点返回到上一个位置",
306
+
307
+ // Embed.ly
308
+ "Embed URL": "嵌入网址",
309
+ "Paste in a URL to embed": "粘贴在一个网址中嵌入",
310
+
311
+ // Word Paste.
312
+ "The pasted content is coming from a Microsoft Word document. Do you want to keep the format or clean it up?": "粘贴的内容来自微软Word文档。你想保留格式还是清理它?",
313
+ "Keep": "保持",
314
+ "Clean": "清洁",
315
+ "Word Paste Detected": "检测到字贴"
316
+ },
317
+ direction: "ltr"
318
+ };
319
+
320
+ }));