xmt_froala 0.3.1

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 (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,318 @@
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
+ * Bosnian
35
+ */
36
+
37
+ $.FE.LANGUAGE['bs'] = {
38
+ translation: {
39
+ // Place holder
40
+ "Type something": "Ukucajte ne\u0161tp",
41
+
42
+ // Basic formatting
43
+ "Bold": "Bold",
44
+ "Italic": "Italic",
45
+ "Underline": "Podvu\u010deno",
46
+ "Strikethrough": "Precrtano",
47
+
48
+ // Main buttons
49
+ "Insert": "Umetni",
50
+ "Delete": "Obri\u0161i",
51
+ "Cancel": "Otka\u017ei",
52
+ "OK": "U redu",
53
+ "Back": "Natrag",
54
+ "Remove": "Ukloni",
55
+ "More": "Vi\u0161e",
56
+ "Update": "A\u017euriranje",
57
+ "Style": "Stil",
58
+
59
+ // Font
60
+ "Font Family": "Odaberi font",
61
+ "Font Size": "Veli\u010dina fonta",
62
+
63
+ // Colors
64
+ "Colors": "Boje",
65
+ "Background": "Pozadine",
66
+ "Text": "Teksta",
67
+ "HEX Color": "Hex boje",
68
+
69
+ // Paragraphs
70
+ "Paragraph Format": "Paragraf formatu",
71
+ "Normal": "Normalno",
72
+ "Code": "Izvorni kod",
73
+ "Heading 1": "Naslov 1",
74
+ "Heading 2": "Naslov 2",
75
+ "Heading 3": "Naslov 3",
76
+ "Heading 4": "Naslov 4",
77
+
78
+ // Style
79
+ "Paragraph Style": "Paragraf stil",
80
+ "Inline Style": "Inline stil",
81
+
82
+ // Alignment
83
+ "Alignment": "Poravnanje",
84
+ "Align Left": "Poravnaj lijevo",
85
+ "Align Center": "Poravnaj po sredini",
86
+ "Align Right": "Poravnaj desno",
87
+ "Align Justify": "Obostrano poravnanje",
88
+ "None": "Nijedan",
89
+
90
+ // Lists
91
+ "Ordered List": "Ure\u0111ena lista",
92
+ "Unordered List": "Nesre\u0111ene lista",
93
+
94
+ // Indent
95
+ "Decrease Indent": "Smanjenje alineja",
96
+ "Increase Indent": "Pove\u0107anje alineja",
97
+
98
+ // Links
99
+ "Insert Link": "Umetni link",
100
+ "Open in new tab": "Otvori u novom prozoru",
101
+ "Open Link": "Otvori link",
102
+ "Edit Link": "Uredi link",
103
+ "Unlink": "Ukloni link",
104
+ "Choose Link": "Izabrati link",
105
+
106
+ // Images
107
+ "Insert Image": "Umetni sliku",
108
+ "Upload Image": "Upload sliku",
109
+ "By URL": "Preko URL",
110
+ "Browse": "Pregledaj",
111
+ "Drop image": "Izbaci sliku",
112
+ "or click": "ili odaberi",
113
+ "Manage Images": "Upravljanje ilustracijama",
114
+ "Loading": "Koji tovari",
115
+ "Deleting": "Brisanje",
116
+ "Tags": "Oznake",
117
+ "Are you sure? Image will be deleted.": "Da li ste sigurni da \u017eelite da obri\u0161ete ovu ilustraciju?",
118
+ "Replace": "Zamijenite",
119
+ "Uploading": "Uploading",
120
+ "Loading image": "Koji tovari sliku",
121
+ "Display": "Prikaz",
122
+ "Inline": "Inline",
123
+ "Break Text": "Break tekst",
124
+ "Alternate Text": "Alternativna tekst",
125
+ "Change Size": "Promijeni veli\u010dinu",
126
+ "Width": "\u0161irina",
127
+ "Height": "Visina",
128
+ "Something went wrong. Please try again.": "Ne\u0161to je po\u0161lo po zlu. Molimo vas da poku\u0161ate ponovo.",
129
+ "Image Caption": "Caption slika",
130
+ "Advanced Edit": "Napredna izmjena",
131
+
132
+ // Video
133
+ "Insert Video": "Umetni video",
134
+ "Embedded Code": "Embedded kod",
135
+ "Paste in a video URL": "Nalepite u video url",
136
+ "Drop video": "Drop video",
137
+ "Your browser does not support HTML5 video.": "Vaš pretraživač ne podržava html5 video.",
138
+ "Upload Video": "Otpremite video",
139
+
140
+ // Tables
141
+ "Insert Table": "Umetni tabelu",
142
+ "Table Header": "Tabelu zaglavlja",
143
+ "Remove Table": "Uklonite tabelu",
144
+ "Table Style": "Tabela stil",
145
+ "Horizontal Align": "Horizontalno poravnaj",
146
+ "Row": "Red",
147
+ "Insert row above": "Umetni red iznad",
148
+ "Insert row below": "Umetni red ispod",
149
+ "Delete row": "Obri\u0161i red",
150
+ "Column": "Kolona",
151
+ "Insert column before": "Umetni kolonu prije",
152
+ "Insert column after": "Umetni kolonu poslije",
153
+ "Delete column": "Obri\u0161i kolonu",
154
+ "Cell": "\u0106elija",
155
+ "Merge cells": "Spoji \u0107elija",
156
+ "Horizontal split": "Horizontalno razdvajanje polja",
157
+ "Vertical split": "Vertikalno razdvajanje polja",
158
+ "Cell Background": "\u0106elija pozadini",
159
+ "Vertical Align": "Vertikalni poravnaj",
160
+ "Top": "Vrh",
161
+ "Middle": "Srednji",
162
+ "Bottom": "Dno",
163
+ "Align Top": "Poravnaj vrh",
164
+ "Align Middle": "Poravnaj srednji",
165
+ "Align Bottom": "Poravnaj dno",
166
+ "Cell Style": "\u0106elija stil",
167
+
168
+ // Files
169
+ "Upload File": "Upload datoteke",
170
+ "Drop file": "Drop datoteke",
171
+
172
+ // Emoticons
173
+ "Emoticons": "Emotikona",
174
+ "Grinning face": "Cere\u0107i lice",
175
+ "Grinning face with smiling eyes": "Cere\u0107i lice nasmijana o\u010dima",
176
+ "Face with tears of joy": "Lice sa suze radosnice",
177
+ "Smiling face with open mouth": "Nasmijana lica s otvorenih usta",
178
+ "Smiling face with open mouth and smiling eyes": "Nasmijana lica s otvorenih usta i nasmijana o\u010di",
179
+ "Smiling face with open mouth and cold sweat": "Nasmijana lica s otvorenih usta i hladan znoj",
180
+ "Smiling face with open mouth and tightly-closed eyes": "Nasmijana lica s otvorenih usta i \u010dvrsto-zatvorenih o\u010diju",
181
+ "Smiling face with halo": "Nasmijana lica sa halo",
182
+ "Smiling face with horns": "Nasmijana lica s rogovima",
183
+ "Winking face": "Namigivanje lice",
184
+ "Smiling face with smiling eyes": "Nasmijana lica sa nasmijana o\u010dima",
185
+ "Face savoring delicious food": "Suo\u010davaju u\u017eivaju\u0107i ukusna hrana",
186
+ "Relieved face": "Laknulo lice",
187
+ "Smiling face with heart-shaped eyes": "Nasmijana lica sa obliku srca o\u010di",
188
+ "Smiling face with sunglasses": "Nasmijana lica sa sun\u010dane nao\u010dare",
189
+ "Smirking face": "Namr\u0161tena lica",
190
+ "Neutral face": "Neutral lice",
191
+ "Expressionless face": "Bezizra\u017eajno lice",
192
+ "Unamused face": "Nije zabavno lice",
193
+ "Face with cold sweat": "Lice s hladnim znojem",
194
+ "Pensive face": "Zami\u0161ljen lice",
195
+ "Confused face": "Zbunjen lice",
196
+ "Confounded face": "Uzbu\u0111en lice",
197
+ "Kissing face": "Ljubakanje lice",
198
+ "Face throwing a kiss": "Suo\u010davaju bacanje poljubac",
199
+ "Kissing face with smiling eyes": "Ljubljenje lice nasmijana o\u010dima",
200
+ "Kissing face with closed eyes": "Ljubljenje lice sa zatvorenim o\u010dima",
201
+ "Face with stuck out tongue": "Lice sa ispru\u017eio jezik",
202
+ "Face with stuck out tongue and winking eye": "Lice sa ispru\u017eio jezik i trep\u0107u\u0107e \u0107e oko",
203
+ "Face with stuck out tongue and tightly-closed eyes": "Lice sa ispru\u017eio jezik i \u010dvrsto zatvorene o\u010di",
204
+ "Disappointed face": "Razo\u010daran lice",
205
+ "Worried face": "Zabrinuti lice",
206
+ "Angry face": "Ljut lice",
207
+ "Pouting face": "Napu\u0107enim lice",
208
+ "Crying face": "Plakanje lice",
209
+ "Persevering face": "Istrajan lice",
210
+ "Face with look of triumph": "Lice s pogledom trijumfa",
211
+ "Disappointed but relieved face": "Razo\u010daran, ali olak\u0161anje lice",
212
+ "Frowning face with open mouth": "Namr\u0161tiv\u0161i lice s otvorenih usta",
213
+ "Anguished face": "Bolnom lice",
214
+ "Fearful face": "Pla\u0161ljiv lice",
215
+ "Weary face": "Umoran lice",
216
+ "Sleepy face": "Pospan lice",
217
+ "Tired face": "Umorno lice",
218
+ "Grimacing face": "Grimase lice",
219
+ "Loudly crying face": "Glasno pla\u010de lice",
220
+ "Face with open mouth": "Lice s otvorenih usta",
221
+ "Hushed face": "Smiren lice",
222
+ "Face with open mouth and cold sweat": "Lice s otvorenih usta i hladan znoj",
223
+ "Face screaming in fear": "Suo\u010davaju vri\u0161ti u strahu",
224
+ "Astonished face": "Zapanjen lice",
225
+ "Flushed face": "Rumeno lice",
226
+ "Sleeping face": "Usnulo lice",
227
+ "Dizzy face": "O\u0161amu\u0107en lice",
228
+ "Face without mouth": "Lice bez usta",
229
+ "Face with medical mask": "Lice sa medicinskom maskom",
230
+
231
+ // Line breaker
232
+ "Break": "Slomiti",
233
+
234
+ // Math
235
+ "Subscript": "Potpisan",
236
+ "Superscript": "Natpis",
237
+
238
+ // Full screen
239
+ "Fullscreen": "Preko cijelog zaslona",
240
+
241
+ // Horizontal line
242
+ "Insert Horizontal Line": "Umetni vodoravna liniju",
243
+
244
+ // Clear formatting
245
+ "Clear Formatting": "Izbrisati formatiranje",
246
+
247
+ // Undo, redo
248
+ "Undo": "Korak nazad",
249
+ "Redo": "Korak naprijed",
250
+
251
+ // Select all
252
+ "Select All": "Ozna\u010di sve",
253
+
254
+ // Code view
255
+ "Code View": "Kod pogled",
256
+
257
+ // Quote
258
+ "Quote": "Citat",
259
+ "Increase": "Pove\u0107ati",
260
+ "Decrease": "Smanjenje",
261
+
262
+ // Quick Insert
263
+ "Quick Insert": "Brzo umetak",
264
+
265
+ // Spcial Characters
266
+ "Special Characters": "Posebni znakovi",
267
+ "Latin": "Latin",
268
+ "Greek": "Greek",
269
+ "Cyrillic": "Ćirilično",
270
+ "Punctuation": "Interpunkcija",
271
+ "Currency": "Valuta",
272
+ "Arrows": "Strelice",
273
+ "Math": "Matematika",
274
+ "Misc": "Misc",
275
+
276
+ // Print.
277
+ "Print": "Print",
278
+
279
+ // Spell Checker.
280
+ "Spell Checker": "Proveru pravopisa",
281
+
282
+ // Help
283
+ "Help": "Pomoć",
284
+ "Shortcuts": "Prečice",
285
+ "Inline Editor": "Inline editor",
286
+ "Show the editor": "Pokaži urednika",
287
+ "Common actions": "Zajedničke akcije",
288
+ "Copy": "Kopiraj",
289
+ "Cut": "Cut",
290
+ "Paste": "Paste",
291
+ "Basic Formatting": "Osnovno oblikovanje",
292
+ "Increase quote level": "Povećati cijeni",
293
+ "Decrease quote level": "Smanjiti nivo ponude",
294
+ "Image / Video": "Slika / video",
295
+ "Resize larger": "Veće veličine",
296
+ "Resize smaller": "Manja promjena veličine",
297
+ "Table": "Stol",
298
+ "Select table cell": "Izaberite ćeliju tablice",
299
+ "Extend selection one cell": "Produžiti izbor jedne ćelije",
300
+ "Extend selection one row": "Produžiti izbor jedan red",
301
+ "Navigation": "Navigacija",
302
+ "Focus popup / toolbar": "Focus popup / toolbar",
303
+ "Return focus to previous position": "Vratite fokus na prethodnu poziciju",
304
+
305
+ // Embed.ly
306
+ "Embed URL": "Ugraditi url",
307
+ "Paste in a URL to embed": "Paste u URL adresu za ugradnju",
308
+
309
+ // Word Paste.
310
+ "The pasted content is coming from a Microsoft Word document. Do you want to keep the format or clean it up?": "Nalepeni sadržaj dolazi iz Microsoft Word dokumenta. da li želite da zadržite format ili da ga očistite?",
311
+ "Keep": "Zadržati",
312
+ "Clean": "Čist",
313
+ "Word Paste Detected": "Otkrivena je slovna reč"
314
+ },
315
+ direction: "ltr"
316
+ };
317
+
318
+ }));
@@ -0,0 +1,318 @@
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
+ * Czech
35
+ */
36
+
37
+ $.FE.LANGUAGE['cs'] = {
38
+ translation: {
39
+ // Place holder
40
+ "Type something": "Napi\u0161te n\u011bco",
41
+
42
+ // Basic formatting
43
+ "Bold": "Tu\u010dn\u00e9",
44
+ "Italic": "Kurz\u00edva",
45
+ "Underline": "Podtr\u017een\u00e9",
46
+ "Strikethrough": "P\u0159e\u0161krtnut\u00e9",
47
+
48
+ // Main buttons
49
+ "Insert": "Vlo\u017eit",
50
+ "Delete": "Vymazat",
51
+ "Cancel": "Zru\u0161it",
52
+ "OK": "OK",
53
+ "Back": "Zp\u011bt",
54
+ "Remove": "Odstranit",
55
+ "More": "V\u00edce",
56
+ "Update": "Aktualizovat",
57
+ "Style": "Styl",
58
+
59
+ // Font
60
+ "Font Family": "Typ p\u00edsma",
61
+ "Font Size": "Velikost p\u00edsma",
62
+
63
+ // Colors
64
+ "Colors": "Barvy",
65
+ "Background": "Pozad\u00ed",
66
+ "Text": "P\u00edsmo",
67
+ "HEX Color": "Hex Barvy",
68
+
69
+ // Paragraphs
70
+ "Paragraph Format": "Form\u00e1t odstavec",
71
+ "Normal": "Norm\u00e1ln\u00ed",
72
+ "Code": "K\u00f3d",
73
+ "Heading 1": "Nadpis 1",
74
+ "Heading 2": "Nadpis 2",
75
+ "Heading 3": "Nadpis 3",
76
+ "Heading 4": "Nadpis 4",
77
+
78
+ // Style
79
+ "Paragraph Style": "Odstavec styl",
80
+ "Inline Style": "Inline styl",
81
+
82
+ // Alignment
83
+ "Align": "Zarovn\u00e1n\u00ed",
84
+ "Align Left": "Zarovnat vlevo",
85
+ "Align Center": "Zarovnat na st\u0159ed",
86
+ "Align Right": "Zarovnat vpravo",
87
+ "Align Justify": "Zarovnat do bloku",
88
+ "None": "Nikdo",
89
+
90
+ // Lists
91
+ "Ordered List": "\u010c\u00edslovan\u00fd seznam",
92
+ "Unordered List": "Ne\u010d\u00edslovan\u00fd seznam",
93
+
94
+ // Indent
95
+ "Decrease Indent": "Zmen\u0161it odsazen\u00ed",
96
+ "Increase Indent": "Zv\u011bt\u0161it odsazen\u00ed",
97
+
98
+ // Links
99
+ "Insert Link": "Vlo\u017eit odkaz",
100
+ "Open in new tab": "Otev\u0159\u00edt v nov\u00e9 z\u00e1lo\u017ece",
101
+ "Open Link": "Otev\u0159\u00edt odkaz",
102
+ "Edit Link": "Upravit odkaz",
103
+ "Unlink": "Odstranit odkaz",
104
+ "Choose Link": "Zvolte odkaz",
105
+
106
+ // Images
107
+ "Insert Image": "Vlo\u017eit obr\u00e1zek",
108
+ "Upload Image": "Nahr\u00e1t obr\u00e1zek",
109
+ "By URL": "Podle URL",
110
+ "Browse": "Proch\u00e1zet",
111
+ "Drop image": "P\u0159et\u00e1hn\u011bte sem obr\u00e1zek",
112
+ "or click": "nebo zde klepn\u011bte",
113
+ "Manage Images": "Spr\u00e1va obr\u00e1zk\u016f",
114
+ "Loading": "Nakl\u00e1d\u00e1n\u00ed",
115
+ "Deleting": "Odstran\u011bn\u00ed",
116
+ "Tags": "Zna\u010dky",
117
+ "Are you sure? Image will be deleted.": "Ur\u010dit\u011b? Obr\u00e1zek bude smaz\u00e1n.",
118
+ "Replace": "Nahradit",
119
+ "Uploading": "Nahr\u00e1v\u00e1n\u00ed",
120
+ "Loading image": "Obr\u00e1zek se na\u010d\u00edt\u00e1",
121
+ "Display": "Zobrazit",
122
+ "Inline": "Inline",
123
+ "Break Text": "P\u0159est\u00e1vka textu",
124
+ "Alternate Text": "Alternativn\u00ed textu",
125
+ "Change Size": "Zm\u011bnit velikost",
126
+ "Width": "\u0160\u00ed\u0159ka",
127
+ "Height": "V\u00fd\u0161ka",
128
+ "Something went wrong. Please try again.": "N\u011bco se pokazilo. Pros\u00edm zkuste to znovu.",
129
+ "Image Caption": "Obrázek titulku",
130
+ "Advanced Edit": "Pokročilá úprava",
131
+
132
+ // Video
133
+ "Insert Video": "Vlo\u017eit video",
134
+ "Embedded Code": "Vlo\u017een\u00fd k\u00f3d",
135
+ "Paste in a video URL": "Vložit adresu URL videa",
136
+ "Drop video": "Drop video",
137
+ "Your browser does not support HTML5 video.": "Váš prohlížeč nepodporuje video html5.",
138
+ "Upload Video": "Nahrát video",
139
+
140
+ // Tables
141
+ "Insert Table": "Vlo\u017eit tabulku",
142
+ "Table Header": "Hlavi\u010dka tabulky",
143
+ "Remove Table": "Odstranit tabulku",
144
+ "Table Style": "Styl tabulky",
145
+ "Horizontal Align": "Horizont\u00e1ln\u00ed zarovn\u00e1n\u00ed",
146
+ "Row": "\u0158\u00e1dek",
147
+ "Insert row above": "Vlo\u017eit \u0159\u00e1dek nad",
148
+ "Insert row below": "Vlo\u017eit \u0159\u00e1dek pod",
149
+ "Delete row": "Smazat \u0159\u00e1dek",
150
+ "Column": "Sloupec",
151
+ "Insert column before": "Vlo\u017eit sloupec vlevo",
152
+ "Insert column after": "Vlo\u017eit sloupec vpravo",
153
+ "Delete column": "Smazat sloupec",
154
+ "Cell": "Bu\u0148ka",
155
+ "Merge cells": "Slou\u010dit bu\u0148ky",
156
+ "Horizontal split": "Horizont\u00e1ln\u00ed rozd\u011blen\u00ed",
157
+ "Vertical split": "Vertik\u00e1ln\u00ed rozd\u011blen\u00ed",
158
+ "Cell Background": "Bu\u0148ka pozad\u00ed",
159
+ "Vertical Align": "Vertik\u00e1ln\u00ed zarovn\u00e1n\u00ed",
160
+ "Top": "Vrchol",
161
+ "Middle": "St\u0159ed",
162
+ "Bottom": "Spodn\u00ed",
163
+ "Align Top": "Zarovnat vrchol",
164
+ "Align Middle": "Zarovnat st\u0159ed",
165
+ "Align Bottom": "Zarovnat spodn\u00ed",
166
+ "Cell Style": "Styl bu\u0148ky",
167
+
168
+ // Files
169
+ "Upload File": "Nahr\u00e1t soubor",
170
+ "Drop file": "P\u0159et\u00e1hn\u011bte sem soubor",
171
+
172
+ // Emoticons
173
+ "Emoticons": "Emotikony",
174
+ "Grinning face": "S \u00fasm\u011bvem tv\u00e1\u0159",
175
+ "Grinning face with smiling eyes": "S \u00fasm\u011bvem obli\u010dej s o\u010dima s \u00fasm\u011bvem",
176
+ "Face with tears of joy": "tv\u00e1\u0159 se slzami radosti",
177
+ "Smiling face with open mouth": "Usm\u00edvaj\u00edc\u00ed se obli\u010dej s otev\u0159en\u00fdmi \u00fasty",
178
+ "Smiling face with open mouth and smiling eyes": "Usm\u00edvaj\u00edc\u00ed se obli\u010dej s otev\u0159en\u00fdmi \u00fasty a o\u010dima s \u00fasm\u011bvem",
179
+ "Smiling face with open mouth and cold sweat": "Usm\u00edvaj\u00edc\u00ed se tv\u00e1\u0159 s otev\u0159en\u00fdmi \u00fasty a studen\u00fd pot",
180
+ "Smiling face with open mouth and tightly-closed eyes": "Usm\u00edvaj\u00edc\u00ed se tv\u00e1\u0159 s otev\u0159en\u00fdmi \u00fasty a t\u011bsn\u011b zav\u0159en\u00e9 o\u010di",
181
+ "Smiling face with halo": "Usm\u00edvaj\u00edc\u00ed se obli\u010dej s halo",
182
+ "Smiling face with horns": "Usm\u00edvaj\u00edc\u00ed se obli\u010dej s rohy",
183
+ "Winking face": "Mrk\u00e1n\u00ed tv\u00e1\u0159",
184
+ "Smiling face with smiling eyes": "Usm\u00edvaj\u00edc\u00ed se obli\u010dej s o\u010dima s \u00fasm\u011bvem",
185
+ "Face savoring delicious food": "Tv\u00e1\u0159 vychutn\u00e1val chutn\u00e9 j\u00eddlo",
186
+ "Relieved face": "Ulevilo tv\u00e1\u0159",
187
+ "Smiling face with heart-shaped eyes": "Usm\u00edvaj\u00edc\u00ed se tv\u00e1\u0159 ve tvaru srdce o\u010dima",
188
+ "Smiling face with sunglasses": "Usm\u00edvaj\u00edc\u00ed se tv\u00e1\u0159 se slune\u010dn\u00edmi br\u00fdlemi",
189
+ "Smirking face": "Uculoval tv\u00e1\u0159",
190
+ "Neutral face": "Neutr\u00e1ln\u00ed tv\u00e1\u0159",
191
+ "Expressionless face": "Bezv\u00fdrazn\u00fd obli\u010dej",
192
+ "Unamused face": "Ne pobaven\u00fd tv\u00e1\u0159",
193
+ "Face with cold sweat": "Tv\u00e1\u0159 se studen\u00fdm potem",
194
+ "Pensive face": "Zamy\u0161len\u00fd obli\u010dej",
195
+ "Confused face": "Zmaten\u00fd tv\u00e1\u0159",
196
+ "Confounded face": "Na\u0161tvan\u00fd tv\u00e1\u0159",
197
+ "Kissing face": "L\u00edb\u00e1n\u00ed tv\u00e1\u0159",
198
+ "Face throwing a kiss": "Tv\u00e1\u0159 h\u00e1zet polibek",
199
+ "Kissing face with smiling eyes": "L\u00edb\u00e1n\u00ed obli\u010dej s o\u010dima s \u00fasm\u011bvem",
200
+ "Kissing face with closed eyes": "L\u00edb\u00e1n\u00ed tv\u00e1\u0159 se zav\u0159en\u00fdma o\u010dima",
201
+ "Face with stuck out tongue": "Tv\u00e1\u0159 s tr\u010dely jazyk",
202
+ "Face with stuck out tongue and winking eye": "Tv\u00e1\u0159 s tr\u010dely jazykem a mrkat o\u010dima",
203
+ "Face with stuck out tongue and tightly-closed eyes": "Suo\u010diti s tr\u010dely jazykem t\u011bsn\u011b zav\u0159en\u00e9 vidikovce",
204
+ "Disappointed face": "Zklaman\u00fd tv\u00e1\u0159",
205
+ "Worried face": "Boj\u00ed\u0161 se tv\u00e1\u0159",
206
+ "Angry face": "Rozzloben\u00fd tv\u00e1\u0159",
207
+ "Pouting face": "Na\u0161pulen\u00e9 tv\u00e1\u0159",
208
+ "Crying face": "Pl\u00e1\u010d tv\u00e1\u0159",
209
+ "Persevering face": "Vytrval\u00fdm tv\u00e1\u0159",
210
+ "Face with look of triumph": "Tv\u00e1\u0159 s v\u00fdrazem triumfu",
211
+ "Disappointed but relieved face": "Zklaman\u00fd ale ulevilo tv\u00e1\u0159",
212
+ "Frowning face with open mouth": "Zamra\u010dil se obli\u010dej s otev\u0159en\u00fdmi \u00fasty",
213
+ "Anguished face": "\u00fazkostn\u00e9 tv\u00e1\u0159",
214
+ "Fearful face": "Stra\u0161n\u00fd tv\u00e1\u0159",
215
+ "Weary face": "Unaven\u00fd tv\u00e1\u0159",
216
+ "Sleepy face": "Ospal\u00fd tv\u00e1\u0159",
217
+ "Tired face": "Unaven\u00fd tv\u00e1\u0159",
218
+ "Grimacing face": "\u0161klebil tv\u00e1\u0159",
219
+ "Loudly crying face": "Hlasit\u011b pl\u00e1\u010de tv\u00e1\u0159",
220
+ "Face with open mouth": "Obli\u010dej s otev\u0159en\u00fdmi \u00fasty",
221
+ "Hushed face": "Tlumen\u00fd tv\u00e1\u0159",
222
+ "Face with open mouth and cold sweat": "Obli\u010dej s otev\u0159en\u00fdmi \u00fasty a studen\u00fd pot",
223
+ "Face screaming in fear": "Tv\u00e1\u0159 k\u0159i\u010d\u00ed ve strachu",
224
+ "Astonished face": "V \u00fa\u017easu tv\u00e1\u0159",
225
+ "Flushed face": "Zarudnut\u00ed v obli\u010deji",
226
+ "Sleeping face": "Sp\u00edc\u00ed tv\u00e1\u0159",
227
+ "Dizzy face": "Z\u00e1vrat\u011b tv\u00e1\u0159",
228
+ "Face without mouth": "Tv\u00e1\u0159 bez \u00fast",
229
+ "Face with medical mask": "Tv\u00e1\u0159 s l\u00e9ka\u0159sk\u00fdm maskou",
230
+
231
+ // Line breaker
232
+ "Break": "P\u0159eru\u0161en\u00ed",
233
+
234
+ // Math
235
+ "Subscript": "Doln\u00ed index",
236
+ "Superscript": "Horn\u00ed index",
237
+
238
+ // Full screen
239
+ "Fullscreen": "Cel\u00e1 obrazovka",
240
+
241
+ // Horizontal line
242
+ "Insert Horizontal Line": "Vlo\u017eit vodorovnou \u010d\u00e1ru",
243
+
244
+ // Clear formatting
245
+ "Clear Formatting": "Vymazat form\u00e1tov\u00e1n\u00ed",
246
+
247
+ // Undo, redo
248
+ "Undo": "Zp\u011bt",
249
+ "Redo": "Znovu",
250
+
251
+ // Select all
252
+ "Select All": "Vybrat v\u0161e",
253
+
254
+ // Code view
255
+ "Code View": "Zobrazen\u00ed k\u00f3d",
256
+
257
+ // Quote
258
+ "Quote": "Cit\u00e1t",
259
+ "Increase": "Nav\u00fd\u0161it",
260
+ "Decrease": "Sn\u00ed\u017een\u00ed",
261
+
262
+ // Quick Insert
263
+ "Quick Insert": "Rychl\u00e1 vlo\u017eka",
264
+
265
+ // Spcial Characters
266
+ "Special Characters": "Speciální znaky",
267
+ "Latin": "Latinský",
268
+ "Greek": "Řecký",
269
+ "Cyrillic": "Cyrilice",
270
+ "Punctuation": "Interpunkce",
271
+ "Currency": "Měna",
272
+ "Arrows": "Šipky",
273
+ "Math": "Matematika",
274
+ "Misc": "Misc",
275
+
276
+ // Print.
277
+ "Print": "Tisk",
278
+
279
+ // Spell Checker.
280
+ "Spell Checker": "Kontrola pravopisu",
281
+
282
+ // Help
283
+ "Help": "Pomoc",
284
+ "Shortcuts": "Zkratky",
285
+ "Inline Editor": "Inline editor",
286
+ "Show the editor": "Zobrazit editor",
287
+ "Common actions": "Společné akce",
288
+ "Copy": "Kopírovat",
289
+ "Cut": "Střih",
290
+ "Paste": "Vložit",
291
+ "Basic Formatting": "Základní formátování",
292
+ "Increase quote level": "Zvýšení cenové hladiny",
293
+ "Decrease quote level": "Snížit úroveň cenové nabídky",
294
+ "Image / Video": "Obraz / video",
295
+ "Resize larger": "Změna velikosti větší",
296
+ "Resize smaller": "Změnit velikost menší",
297
+ "Table": "Stůl",
298
+ "Select table cell": "Vyberte buňku tabulky",
299
+ "Extend selection one cell": "Rozšířit výběr o jednu buňku",
300
+ "Extend selection one row": "Rozšířit výběr o jeden řádek",
301
+ "Navigation": "Navigace",
302
+ "Focus popup / toolbar": "Popup / panel nástrojů zaostření",
303
+ "Return focus to previous position": "Návrat na předchozí pozici",
304
+
305
+ // Embed.ly
306
+ "Embed URL": "Vložte url",
307
+ "Paste in a URL to embed": "Vložit adresu URL, kterou chcete vložit",
308
+
309
+ // Word Paste.
310
+ "The pasted content is coming from a Microsoft Word document. Do you want to keep the format or clean it up?": "Vložený obsah pochází z dokumentu Microsoft Word. chcete formát uchovat nebo jej vyčistit?",
311
+ "Keep": "Držet",
312
+ "Clean": "Čistý",
313
+ "Word Paste Detected": "Slovní vložka zjištěna"
314
+ },
315
+ direction: "ltr"
316
+ };
317
+
318
+ }));