alchemy_cms 4.0.6 → 4.1.0.beta

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 (340) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +1 -0
  3. data/.gitignore +1 -0
  4. data/.localeapp/config.rb +8 -0
  5. data/.rubocop.yml +26 -13
  6. data/.travis.yml +12 -14
  7. data/CHANGELOG.md +5 -24
  8. data/Gemfile +10 -7
  9. data/README.md +16 -14
  10. data/Rakefile +1 -1
  11. data/alchemy_cms.gemspec +6 -7
  12. data/app/assets/images/alchemy/alchemy-logo.png +0 -0
  13. data/app/assets/images/alchemy/alchemy-logo.svg +1 -70
  14. data/app/assets/images/alchemy/favicon.ico +0 -0
  15. data/app/assets/images/alchemy/icon.svg +1 -14
  16. data/app/assets/javascripts/alchemy/admin.js +0 -7
  17. data/app/assets/javascripts/alchemy/alchemy.base.js.coffee +2 -2
  18. data/app/assets/javascripts/alchemy/alchemy.buttons.js.coffee +1 -1
  19. data/app/assets/javascripts/alchemy/alchemy.confirm_dialog.js.coffee +1 -1
  20. data/app/assets/javascripts/alchemy/alchemy.datepicker.js.coffee +1 -0
  21. data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +19 -6
  22. data/app/assets/javascripts/alchemy/alchemy.dirty.js.coffee +2 -7
  23. data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +36 -26
  24. data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +6 -15
  25. data/app/assets/javascripts/alchemy/alchemy.file_progress.js.coffee +1 -1
  26. data/app/assets/javascripts/alchemy/alchemy.growler.js.coffee +8 -11
  27. data/app/assets/javascripts/alchemy/alchemy.gui.js.coffee +4 -1
  28. data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +1 -1
  29. data/app/assets/javascripts/alchemy/alchemy.initializer.js.coffee +5 -14
  30. data/app/assets/javascripts/alchemy/alchemy.preview.js.coffee +54 -75
  31. data/app/assets/javascripts/alchemy/alchemy.preview_window.js.coffee +4 -13
  32. data/app/assets/javascripts/alchemy/alchemy.sitemap.js.coffee +1 -0
  33. data/app/assets/javascripts/alchemy/alchemy.tinymce.js.coffee +12 -6
  34. data/app/assets/javascripts/alchemy/alchemy.translations.js.coffee +0 -158
  35. data/app/assets/stylesheets/alchemy/_defaults.scss +0 -2
  36. data/app/assets/stylesheets/alchemy/_extends.scss +13 -18
  37. data/app/assets/stylesheets/alchemy/_mixins.scss +72 -46
  38. data/app/assets/stylesheets/alchemy/_variables.scss +128 -59
  39. data/app/assets/stylesheets/alchemy/admin.scss +7 -1
  40. data/app/assets/stylesheets/alchemy/archive.scss +23 -27
  41. data/app/assets/stylesheets/alchemy/base.scss +5 -355
  42. data/app/assets/stylesheets/alchemy/buttons.scss +23 -60
  43. data/app/assets/stylesheets/alchemy/clipboard.scss +26 -0
  44. data/app/assets/stylesheets/alchemy/dashboard.scss +7 -40
  45. data/app/assets/stylesheets/alchemy/dialogs.scss +23 -36
  46. data/app/assets/stylesheets/alchemy/elements.scss +80 -156
  47. data/app/assets/stylesheets/alchemy/errors.scss +2 -2
  48. data/app/assets/stylesheets/alchemy/flash.scss +19 -10
  49. data/app/assets/stylesheets/alchemy/fonts.scss +13 -0
  50. data/app/assets/stylesheets/alchemy/forms.scss +6 -1
  51. data/app/assets/stylesheets/alchemy/frame.scss +24 -65
  52. data/app/assets/stylesheets/alchemy/hints.scss +2 -2
  53. data/app/assets/stylesheets/alchemy/icons.scss +3 -337
  54. data/app/assets/stylesheets/alchemy/image_library.scss +9 -10
  55. data/app/assets/stylesheets/alchemy/jquery-ui.scss +21 -839
  56. data/app/assets/stylesheets/alchemy/jquery.datetimepicker.scss +32 -57
  57. data/app/assets/stylesheets/alchemy/lists.scss +4 -8
  58. data/app/assets/stylesheets/alchemy/menubar.scss +26 -29
  59. data/app/assets/stylesheets/alchemy/navigation.scss +23 -25
  60. data/app/assets/stylesheets/alchemy/notices.scss +25 -25
  61. data/app/assets/stylesheets/alchemy/pagination.scss +12 -7
  62. data/app/assets/stylesheets/alchemy/preview_window.scss +20 -0
  63. data/app/assets/stylesheets/alchemy/resource_info.scss +1 -1
  64. data/app/assets/stylesheets/alchemy/search.scss +19 -15
  65. data/app/assets/stylesheets/alchemy/selects.scss +63 -32
  66. data/app/assets/stylesheets/alchemy/sitemap.scss +70 -148
  67. data/app/assets/stylesheets/alchemy/tables.scss +16 -59
  68. data/app/assets/stylesheets/alchemy/toolbar.scss +9 -36
  69. data/app/assets/stylesheets/alchemy/trash.scss +8 -0
  70. data/app/assets/stylesheets/alchemy/upload.scss +5 -6
  71. data/app/assets/stylesheets/tinymce/skins/alchemy/content.min.css.scss +1 -0
  72. data/app/assets/stylesheets/tinymce/skins/alchemy/skin.min.css.scss +78 -43
  73. data/app/controllers/alchemy/admin/attachments_controller.rb +6 -6
  74. data/app/controllers/alchemy/admin/base_controller.rb +9 -9
  75. data/app/controllers/alchemy/admin/contents_controller.rb +0 -17
  76. data/app/controllers/alchemy/admin/elements_controller.rb +1 -4
  77. data/app/controllers/alchemy/admin/essence_files_controller.rb +1 -3
  78. data/app/controllers/alchemy/admin/essence_pictures_controller.rb +1 -3
  79. data/app/controllers/alchemy/admin/languages_controller.rb +1 -1
  80. data/app/controllers/alchemy/admin/pictures_controller.rb +5 -5
  81. data/app/controllers/alchemy/admin/resources_controller.rb +10 -10
  82. data/app/controllers/alchemy/admin/tags_controller.rb +7 -7
  83. data/app/controllers/alchemy/api/contents_controller.rb +6 -1
  84. data/app/controllers/alchemy/api/elements_controller.rb +5 -1
  85. data/app/controllers/alchemy/api/pages_controller.rb +6 -1
  86. data/app/controllers/alchemy/base_controller.rb +5 -3
  87. data/app/controllers/alchemy/pages_controller.rb +1 -1
  88. data/app/helpers/alchemy/admin/base_helper.rb +14 -15
  89. data/app/helpers/alchemy/admin/contents_helper.rb +1 -2
  90. data/app/helpers/alchemy/admin/elements_helper.rb +7 -6
  91. data/app/helpers/alchemy/admin/tags_helper.rb +3 -4
  92. data/app/helpers/alchemy/base_helper.rb +35 -5
  93. data/app/helpers/alchemy/elements_helper.rb +2 -2
  94. data/app/helpers/alchemy/pages_helper.rb +4 -2
  95. data/app/models/alchemy/attachment.rb +14 -23
  96. data/app/models/alchemy/base_record.rb +13 -0
  97. data/app/models/alchemy/cell.rb +1 -1
  98. data/app/models/alchemy/content.rb +1 -2
  99. data/app/models/alchemy/content/factory.rb +1 -1
  100. data/app/models/alchemy/element.rb +10 -12
  101. data/app/models/alchemy/essence_boolean.rb +1 -1
  102. data/app/models/alchemy/essence_date.rb +2 -2
  103. data/app/models/alchemy/essence_file.rb +1 -1
  104. data/app/models/alchemy/essence_html.rb +1 -1
  105. data/app/models/alchemy/essence_link.rb +1 -1
  106. data/app/models/alchemy/essence_picture.rb +1 -1
  107. data/app/models/alchemy/essence_richtext.rb +1 -1
  108. data/app/models/alchemy/essence_select.rb +1 -1
  109. data/app/models/alchemy/essence_text.rb +1 -1
  110. data/app/models/alchemy/folded_page.rb +1 -1
  111. data/app/models/alchemy/language.rb +21 -5
  112. data/app/models/alchemy/page.rb +17 -5
  113. data/app/models/alchemy/page/page_elements.rb +14 -2
  114. data/app/models/alchemy/page/page_naming.rb +17 -4
  115. data/app/models/alchemy/picture.rb +4 -7
  116. data/app/models/alchemy/site.rb +3 -3
  117. data/app/models/alchemy/tag.rb +3 -3
  118. data/app/models/concerns/alchemy/content_touching.rb +23 -0
  119. data/app/serializers/alchemy/element_serializer.rb +2 -0
  120. data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +1 -1
  121. data/app/views/alchemy/admin/attachments/_attachment.html.erb +11 -21
  122. data/app/views/alchemy/admin/attachments/_files_list.html.erb +26 -29
  123. data/app/views/alchemy/admin/attachments/_filter_bar.html.erb +2 -3
  124. data/app/views/alchemy/admin/attachments/_overlay_file_list.html.erb +3 -4
  125. data/app/views/alchemy/admin/attachments/_replace_button.html.erb +2 -3
  126. data/app/views/alchemy/admin/attachments/_tag_list.html.erb +3 -3
  127. data/app/views/alchemy/admin/attachments/destroy.js.erb +1 -1
  128. data/app/views/alchemy/admin/attachments/edit.html.erb +2 -2
  129. data/app/views/alchemy/admin/attachments/index.html.erb +3 -2
  130. data/app/views/alchemy/admin/attachments/show.html.erb +7 -8
  131. data/app/views/alchemy/admin/clipboard/clear.js.erb +1 -1
  132. data/app/views/alchemy/admin/clipboard/index.html.erb +23 -7
  133. data/app/views/alchemy/admin/clipboard/insert.js.erb +1 -1
  134. data/app/views/alchemy/admin/clipboard/remove.js.erb +2 -2
  135. data/app/views/alchemy/admin/contents/create.js.erb +1 -1
  136. data/app/views/alchemy/admin/dashboard/_locked_pages.html.erb +9 -6
  137. data/app/views/alchemy/admin/dashboard/_recent_pages.html.erb +6 -4
  138. data/app/views/alchemy/admin/dashboard/_sites.html.erb +4 -2
  139. data/app/views/alchemy/admin/dashboard/_users.html.erb +6 -4
  140. data/app/views/alchemy/admin/dashboard/index.html.erb +3 -3
  141. data/app/views/alchemy/admin/dashboard/info.html.erb +6 -7
  142. data/app/views/alchemy/admin/elements/_add_picture.html.erb +1 -1
  143. data/app/views/alchemy/admin/elements/_element.html.erb +1 -1
  144. data/app/views/alchemy/admin/elements/_element_header.html.erb +14 -14
  145. data/app/views/alchemy/admin/elements/_element_toolbar.html.erb +3 -3
  146. data/app/views/alchemy/admin/elements/_new_element_form.html.erb +2 -3
  147. data/app/views/alchemy/admin/elements/index.html.erb +2 -4
  148. data/app/views/alchemy/admin/elements/new.html.erb +1 -2
  149. data/app/views/alchemy/admin/elements/publish.js.erb +5 -5
  150. data/app/views/alchemy/admin/languages/_language.html.erb +4 -9
  151. data/app/views/alchemy/admin/languages/_table.html.erb +1 -1
  152. data/app/views/alchemy/admin/languages/index.html.erb +1 -1
  153. data/app/views/alchemy/admin/layoutpages/_layoutpage.html.erb +5 -5
  154. data/app/views/alchemy/admin/layoutpages/index.html.erb +5 -4
  155. data/app/views/alchemy/admin/leave.html.erb +1 -1
  156. data/app/views/alchemy/admin/legacy_page_urls/_legacy_page_url.html.erb +1 -1
  157. data/app/views/alchemy/admin/legacy_page_urls/_new.html.erb +1 -1
  158. data/app/views/alchemy/admin/pages/_form.html.erb +1 -1
  159. data/app/views/alchemy/admin/pages/_locked_page.html.erb +1 -1
  160. data/app/views/alchemy/admin/pages/_page.html.erb +31 -23
  161. data/app/views/alchemy/admin/pages/_page_for_links.html.erb +5 -5
  162. data/app/views/alchemy/admin/pages/_page_infos.html.erb +3 -3
  163. data/app/views/alchemy/admin/pages/_publication_fields.html.erb +1 -1
  164. data/app/views/alchemy/admin/pages/edit.html.erb +22 -21
  165. data/app/views/alchemy/admin/pages/index.html.erb +5 -21
  166. data/app/views/alchemy/admin/pages/info.html.erb +5 -5
  167. data/app/views/alchemy/admin/pages/sort.html.erb +1 -1
  168. data/app/views/alchemy/admin/pages/unlock.js.erb +2 -4
  169. data/app/views/alchemy/admin/partials/_flash.html.erb +1 -1
  170. data/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb +7 -3
  171. data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +2 -2
  172. data/app/views/alchemy/admin/partials/_search_form.html.erb +3 -3
  173. data/app/views/alchemy/admin/pictures/_archive.html.erb +19 -17
  174. data/app/views/alchemy/admin/pictures/_archive_overlay.html.erb +1 -1
  175. data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +13 -13
  176. data/app/views/alchemy/admin/pictures/_filter_bar.html.erb +2 -3
  177. data/app/views/alchemy/admin/pictures/_form.html.erb +3 -3
  178. data/app/views/alchemy/admin/pictures/_overlay_picture_list.html.erb +2 -3
  179. data/app/views/alchemy/admin/pictures/_picture.html.erb +7 -7
  180. data/app/views/alchemy/admin/pictures/_tag_list.html.erb +3 -3
  181. data/app/views/alchemy/admin/pictures/edit_multiple.html.erb +6 -7
  182. data/app/views/alchemy/admin/pictures/index.html.erb +12 -12
  183. data/app/views/alchemy/admin/pictures/index.js.erb +0 -1
  184. data/app/views/alchemy/admin/pictures/show.html.erb +9 -9
  185. data/app/views/alchemy/admin/resources/_filter_bar.html.erb +2 -3
  186. data/app/views/alchemy/admin/resources/_form.html.erb +10 -2
  187. data/app/views/alchemy/admin/resources/_resource.html.erb +9 -14
  188. data/app/views/alchemy/admin/resources/_table.html.erb +1 -1
  189. data/app/views/alchemy/admin/resources/_tag_list.html.erb +4 -4
  190. data/app/views/alchemy/admin/resources/index.html.erb +2 -3
  191. data/app/views/alchemy/admin/sites/index.html.erb +1 -1
  192. data/app/views/alchemy/admin/tags/_tag.html.erb +7 -11
  193. data/app/views/alchemy/admin/tags/index.html.erb +4 -4
  194. data/app/views/alchemy/admin/trash/index.html.erb +2 -3
  195. data/app/views/alchemy/admin/uploader/_button.html.erb +1 -2
  196. data/app/views/alchemy/base/500.html.erb +1 -1
  197. data/app/views/alchemy/base/permission_denied.js.erb +1 -1
  198. data/app/views/alchemy/base/redirect.js.erb +1 -2
  199. data/app/views/alchemy/elements/_editor_not_found.html.erb +2 -3
  200. data/app/views/alchemy/essences/_essence_date_editor.html.erb +1 -1
  201. data/app/views/alchemy/essences/_essence_file_editor.html.erb +7 -11
  202. data/app/views/alchemy/essences/_essence_picture_editor.html.erb +9 -7
  203. data/app/views/alchemy/essences/shared/_essence_picture_tools.html.erb +1 -1
  204. data/app/views/alchemy/pages/_meta_data.html.erb +1 -1
  205. data/app/views/kaminari/alchemy/_first_page.html.erb +7 -3
  206. data/app/views/kaminari/alchemy/_gap.html.erb +1 -1
  207. data/app/views/kaminari/alchemy/_last_page.html.erb +7 -3
  208. data/app/views/kaminari/alchemy/_next_page.html.erb +4 -2
  209. data/app/views/kaminari/alchemy/_page.html.erb +1 -1
  210. data/app/views/kaminari/alchemy/_prev_page.html.erb +4 -2
  211. data/app/views/layouts/alchemy/admin.html.erb +8 -6
  212. data/bin/rails +2 -2
  213. data/bin/rspec +1 -1
  214. data/config/alchemy/config.yml +0 -2
  215. data/config/alchemy/modules.yml +5 -5
  216. data/config/initializers/simple_form.rb +45 -8
  217. data/config/locales/alchemy.en.yml +66 -179
  218. data/config/routes.rb +1 -1
  219. data/db/migrate/20180226123013_alchemy_four_point_zero.rb +392 -0
  220. data/db/migrate/20180227224537_migrate_tags_to_gutentag.rb +41 -0
  221. data/lib/alchemy/config.rb +0 -2
  222. data/lib/alchemy/engine.rb +5 -9
  223. data/lib/alchemy/essence.rb +6 -6
  224. data/lib/alchemy/filetypes.rb +13 -1
  225. data/lib/alchemy/forms/builder.rb +5 -3
  226. data/lib/alchemy/i18n.rb +8 -6
  227. data/lib/alchemy/modules.rb +1 -1
  228. data/lib/alchemy/name_conversions.rb +0 -2
  229. data/lib/alchemy/page_layout.rb +3 -2
  230. data/lib/alchemy/paths.rb +5 -5
  231. data/lib/alchemy/resource.rb +9 -9
  232. data/lib/alchemy/resources_helper.rb +11 -15
  233. data/lib/alchemy/routing_constraints.rb +2 -2
  234. data/lib/alchemy/shell.rb +0 -1
  235. data/lib/alchemy/taggable.rb +40 -0
  236. data/lib/alchemy/tasks/tidy.rb +1 -9
  237. data/lib/alchemy/test_support/factories/content_factory.rb +10 -0
  238. data/lib/alchemy/test_support/factories/element_factory.rb +5 -0
  239. data/lib/alchemy/test_support/shared_contexts.rb +1 -1
  240. data/lib/alchemy/tinymce.rb +2 -2
  241. data/lib/alchemy/upgrader/four_point_one.rb +42 -0
  242. data/lib/alchemy/upgrader/tasks/harden_acts_as_taggable_on_migrations.rb +27 -0
  243. data/lib/alchemy/version.rb +1 -1
  244. data/lib/alchemy_cms.rb +2 -3
  245. data/lib/rails/generators/alchemy/elements/elements_generator.rb +2 -2
  246. data/lib/rails/generators/alchemy/essence/essence_generator.rb +1 -1
  247. data/lib/rails/generators/alchemy/install/install_generator.rb +4 -8
  248. data/lib/rails/generators/alchemy/module/module_generator.rb +1 -1
  249. data/lib/rails/generators/alchemy/page_layouts/page_layouts_generator.rb +2 -2
  250. data/lib/rails/generators/alchemy/site_layouts/site_layouts_generator.rb +2 -2
  251. data/lib/rails/generators/alchemy/views/views_generator.rb +1 -1
  252. data/lib/tasks/alchemy/db.rake +2 -1
  253. data/lib/tasks/alchemy/tidy.rake +0 -6
  254. data/lib/tasks/alchemy/upgrade.rake +11 -144
  255. data/vendor/assets/fonts/fa-regular-400.eot +0 -0
  256. data/vendor/assets/fonts/fa-regular-400.svg +363 -0
  257. data/vendor/assets/fonts/fa-regular-400.ttf +0 -0
  258. data/vendor/assets/fonts/fa-regular-400.woff +0 -0
  259. data/vendor/assets/fonts/fa-regular-400.woff2 +0 -0
  260. data/vendor/assets/fonts/fa-solid-900.eot +0 -0
  261. data/vendor/assets/fonts/fa-solid-900.svg +1413 -0
  262. data/vendor/assets/fonts/fa-solid-900.ttf +0 -0
  263. data/vendor/assets/fonts/fa-solid-900.woff +0 -0
  264. data/vendor/assets/fonts/fa-solid-900.woff2 +0 -0
  265. data/vendor/assets/javascripts/tinymce/license.txt +6 -6
  266. data/vendor/assets/javascripts/tinymce/tinymce.min.js +2 -15
  267. data/vendor/assets/stylesheets/fontawesome/_animated.scss +20 -0
  268. data/vendor/assets/stylesheets/fontawesome/_bordered-pulled.scss +20 -0
  269. data/vendor/assets/stylesheets/fontawesome/_core.scss +16 -0
  270. data/vendor/assets/stylesheets/fontawesome/_fixed-width.scss +6 -0
  271. data/vendor/assets/stylesheets/fontawesome/_icons.scss +792 -0
  272. data/vendor/assets/stylesheets/fontawesome/_larger.scss +23 -0
  273. data/vendor/assets/stylesheets/fontawesome/_list.scss +18 -0
  274. data/vendor/assets/stylesheets/fontawesome/_mixins.scss +57 -0
  275. data/vendor/assets/stylesheets/fontawesome/_rotated-flipped.scss +23 -0
  276. data/vendor/assets/stylesheets/fontawesome/_screen-reader.scss +5 -0
  277. data/vendor/assets/stylesheets/fontawesome/_stacked.scss +31 -0
  278. data/vendor/assets/stylesheets/fontawesome/_variables.scss +805 -0
  279. data/vendor/assets/stylesheets/fontawesome/fa-regular.scss +22 -0
  280. data/vendor/assets/stylesheets/fontawesome/fa-solid.scss +23 -0
  281. data/vendor/assets/stylesheets/fontawesome/fontawesome.scss +16 -0
  282. metadata +78 -112
  283. data/app/assets/fonts/alchemy/icons.eot +0 -0
  284. data/app/assets/fonts/alchemy/icons.svg +0 -33
  285. data/app/assets/fonts/alchemy/icons.ttf +0 -0
  286. data/app/assets/fonts/alchemy/icons.woff +0 -0
  287. data/app/assets/images/alchemy/icons.png +0 -0
  288. data/app/assets/images/alchemy/ui-icons_666666_256x240.png +0 -0
  289. data/app/assets/images/sassy-ie-overlay.png +0 -0
  290. data/app/assets/javascripts/alchemy/alchemy.jquery_loader.js +0 -42
  291. data/app/assets/stylesheets/alchemy/icon-font.scss +0 -75
  292. data/app/assets/stylesheets/alchemy/modules.scss +0 -27
  293. data/app/models/alchemy.rb +0 -7
  294. data/app/views/alchemy/admin/contents/destroy.js.erb +0 -4
  295. data/app/views/alchemy/admin/pictures/flush.js.erb +0 -2
  296. data/config/locales/alchemy.de.yml +0 -932
  297. data/config/locales/alchemy.es.yml +0 -960
  298. data/config/locales/alchemy.fr.yml +0 -938
  299. data/config/locales/alchemy.it.yml +0 -938
  300. data/config/locales/alchemy.nl.yml +0 -918
  301. data/config/locales/alchemy.ru.yml +0 -830
  302. data/config/locales/simple_form.de.yml +0 -26
  303. data/config/locales/simple_form.en.yml +0 -25
  304. data/config/locales/simple_form.es.yml +0 -6
  305. data/config/locales/simple_form.fr.yml +0 -26
  306. data/config/locales/simple_form.it.yml +0 -25
  307. data/config/locales/simple_form.nl.yml +0 -25
  308. data/config/locales/simple_form.ru.yml +0 -25
  309. data/db/migrate/20130827094554_alchemy_two_point_six.rb +0 -378
  310. data/db/migrate/20130828121054_remove_do_not_index_from_alchemy_essence_texts.rb +0 -5
  311. data/db/migrate/20130828121120_remove_do_not_index_from_alchemy_essence_richtexts.rb +0 -5
  312. data/db/migrate/20130918201742_add_published_at_to_alchemy_pages.rb +0 -5
  313. data/db/migrate/20150608204610_add_parent_element_id_to_alchemy_elements.rb +0 -6
  314. data/db/migrate/20150729151825_add_link_text_to_alchemy_essence_files.rb +0 -5
  315. data/db/migrate/20150906195818_add_locale_to_alchemy_languages.rb +0 -7
  316. data/db/migrate/20160108174834_add_timebased_publishing_columns_to_pages.rb +0 -32
  317. data/db/migrate/20160422195310_add_image_file_format_to_alchemy_pictures.rb +0 -9
  318. data/db/migrate/20160617224938_change_alchemy_pages_locked_to_locked_at.rb +0 -22
  319. data/db/migrate/20160912223112_add_index_to_alchemy_pages_rgt.rb +0 -9
  320. data/db/migrate/20160927205604_add_foreign_key_indices_and_null_constraints.rb +0 -20
  321. data/db/migrate/20160928080104_add_foreign_keys.rb +0 -27
  322. data/lib/alchemy/touching.rb +0 -42
  323. data/lib/alchemy/upgrader/tasks/available_contents_upgrader.rb +0 -161
  324. data/lib/alchemy/upgrader/tasks/install_asset_manifests.rb +0 -15
  325. data/lib/alchemy/upgrader/tasks/install_dragonfly_config.rb +0 -14
  326. data/lib/alchemy/upgrader/tasks/nestable_elements_migration.rb +0 -71
  327. data/lib/alchemy/upgrader/tasks/three_point_two_task.rb +0 -31
  328. data/lib/alchemy/upgrader/three_point_five.rb +0 -32
  329. data/lib/alchemy/upgrader/three_point_four.rb +0 -52
  330. data/lib/alchemy/upgrader/three_point_one.rb +0 -54
  331. data/lib/alchemy/upgrader/three_point_three.rb +0 -50
  332. data/lib/alchemy/upgrader/three_point_two.rb +0 -40
  333. data/lib/alchemy/upgrader/three_point_zero.rb +0 -92
  334. data/vendor/assets/javascripts/jquery_plugins/jquery.floatThead.min.js +0 -3
  335. data/vendor/assets/javascripts/tinymce/langs/de.js +0 -219
  336. data/vendor/assets/javascripts/tinymce/langs/es.js +0 -219
  337. data/vendor/assets/javascripts/tinymce/langs/fr.js +0 -219
  338. data/vendor/assets/javascripts/tinymce/langs/it.js +0 -219
  339. data/vendor/assets/javascripts/tinymce/langs/nl.js +0 -219
  340. data/vendor/assets/javascripts/tinymce/langs/ru.js +0 -219
@@ -1,219 +0,0 @@
1
- tinymce.addI18n('es',{
2
- "Cut": "Cortar",
3
- "Heading 5": "Encabezado 5",
4
- "Header 2": "Encabezado 2 ",
5
- "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Tu navegador no soporta acceso directo al portapapeles. Por favor usa las teclas Crtl+X\/C\/V de tu teclado",
6
- "Heading 4": "Encabezado 4",
7
- "Div": "Capa",
8
- "Heading 2": "Encabezado 2",
9
- "Paste": "Pegar",
10
- "Close": "Cerrar",
11
- "Font Family": "Familia de fuentes",
12
- "Pre": "Pre",
13
- "Align right": "Alinear a la derecha",
14
- "New document": "Nuevo documento",
15
- "Blockquote": "Bloque de cita",
16
- "Numbered list": "Lista numerada",
17
- "Heading 1": "Encabezado 1",
18
- "Headings": "Encabezados",
19
- "Increase indent": "Incrementar sangr\u00eda",
20
- "Formats": "Formatos",
21
- "Headers": "Encabezados",
22
- "Select all": "Seleccionar todo",
23
- "Header 3": "Encabezado 3",
24
- "Blocks": "Bloques",
25
- "Undo": "Deshacer",
26
- "Strikethrough": "Tachado",
27
- "Bullet list": "Lista de vi\u00f1etas",
28
- "Header 1": "Encabezado 1",
29
- "Superscript": "Super\u00edndice",
30
- "Clear formatting": "Limpiar formato",
31
- "Font Sizes": "Tama\u00f1os de fuente",
32
- "Subscript": "Sub\u00edndice",
33
- "Header 6": "Encabezado 6",
34
- "Redo": "Rehacer",
35
- "Paragraph": "P\u00e1rrafo",
36
- "Ok": "Ok",
37
- "Bold": "Negrita",
38
- "Code": "C\u00f3digo",
39
- "Italic": "It\u00e1lica",
40
- "Align center": "Alinear al centro",
41
- "Header 5": "Encabezado 5 ",
42
- "Heading 6": "Encabezado 6",
43
- "Heading 3": "Encabezado 3",
44
- "Decrease indent": "Disminuir sangr\u00eda",
45
- "Header 4": "Encabezado 4",
46
- "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Pegar est\u00e1 ahora en modo de texto plano. El contenido se pegar\u00e1 como texto plano hasta que desactive esta opci\u00f3n.",
47
- "Underline": "Subrayado",
48
- "Cancel": "Cancelar",
49
- "Justify": "Justificar",
50
- "Inline": "en l\u00ednea",
51
- "Copy": "Copiar",
52
- "Align left": "Alinear a la izquierda",
53
- "Visual aids": "Ayudas visuales",
54
- "Lower Greek": "Inferior Griega",
55
- "Square": "Cuadrado",
56
- "Default": "Por defecto",
57
- "Lower Alpha": "Inferior Alfa",
58
- "Circle": "C\u00edrculo",
59
- "Disc": "Disco",
60
- "Upper Alpha": "Superior Alfa",
61
- "Upper Roman": "Superior Romana",
62
- "Lower Roman": "Inferior Romana",
63
- "Name": "Nombre",
64
- "Anchor": "Ancla",
65
- "You have unsaved changes are you sure you want to navigate away?": "Tiene cambios sin guardar. \u00bfEst\u00e1 seguro de que quiere salir?",
66
- "Restore last draft": "Restaurar el \u00faltimo borrador",
67
- "Special character": "Car\u00e1cter especial",
68
- "Source code": "C\u00f3digo fuente",
69
- "B": "A",
70
- "R": "R",
71
- "G": "V",
72
- "Color": "Color",
73
- "Right to left": "De derecha a izquierda",
74
- "Left to right": "De izquierda a derecha",
75
- "Emoticons": "Emoticonos",
76
- "Robots": "Robots",
77
- "Document properties": "Propiedades del documento",
78
- "Title": "T\u00edtulo",
79
- "Keywords": "Palabras clave",
80
- "Encoding": "Codificaci\u00f3n",
81
- "Description": "Descripci\u00f3n",
82
- "Author": "Autor",
83
- "Fullscreen": "Pantalla completa",
84
- "Horizontal line": "L\u00ednea horizontal",
85
- "Horizontal space": "Espacio horizontal",
86
- "Insert\/edit image": "Insertar\/editar imagen",
87
- "General": "General",
88
- "Advanced": "Avanzado",
89
- "Source": "Enlace",
90
- "Border": "Borde",
91
- "Constrain proportions": "Restringir proporciones",
92
- "Vertical space": "Espacio vertical",
93
- "Image description": "Descripci\u00f3n de la imagen",
94
- "Style": "Estilo",
95
- "Dimensions": "Dimensiones",
96
- "Insert image": "Insertar imagen",
97
- "Zoom in": "Acercar",
98
- "Contrast": "Contraste",
99
- "Back": "Atr\u00e1s",
100
- "Gamma": "Gamma",
101
- "Flip horizontally": "Invertir horizontalmente",
102
- "Resize": "Redimensionar",
103
- "Sharpen": "Forma",
104
- "Zoom out": "Alejar",
105
- "Image options": "Opciones de imagen",
106
- "Apply": "Aplicar",
107
- "Brightness": "Brillo",
108
- "Rotate clockwise": "Girar a la derecha",
109
- "Rotate counterclockwise": "Girar a la izquierda",
110
- "Edit image": "Editar imagen",
111
- "Color levels": "Niveles de color",
112
- "Crop": "Recortar",
113
- "Orientation": "Orientaci\u00f3n",
114
- "Flip vertically": "Invertir verticalmente",
115
- "Invert": "Invertir",
116
- "Insert date\/time": "Insertar fecha\/hora",
117
- "Remove link": "Quitar enlace",
118
- "Url": "URL",
119
- "Text to display": "Texto para mostrar",
120
- "Anchors": "Anclas",
121
- "Insert link": "Insertar enlace",
122
- "New window": "Nueva ventana",
123
- "None": "Ninguno",
124
- "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "El enlace que has introducido no parece ser una enlace externo. Quieres a\u00f1adir el prefijo necesario http:\/\/ ?",
125
- "Target": "Destino",
126
- "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "El enlace que has introducido no parece ser una direcci\u00f3n de correo electr\u00f3nico. Quieres a\u00f1adir el prefijo necesario mailto: ?",
127
- "Insert\/edit link": "Insertar\/editar enlace",
128
- "Insert\/edit video": "Insertar\/editar video",
129
- "Poster": "Miniatura",
130
- "Alternative source": "Enlace alternativo",
131
- "Paste your embed code below:": "Pega tu c\u00f3digo embebido debajo",
132
- "Insert video": "Insertar video",
133
- "Embed": "Incrustado",
134
- "Nonbreaking space": "Espacio fijo",
135
- "Page break": "Salto de p\u00e1gina",
136
- "Paste as text": "Pegar como texto",
137
- "Preview": "Previsualizar",
138
- "Print": "Imprimir",
139
- "Save": "Guardar",
140
- "Could not find the specified string.": "No se encuentra la cadena de texto especificada",
141
- "Replace": "Reemplazar",
142
- "Next": "Siguiente",
143
- "Whole words": "Palabras completas",
144
- "Find and replace": "Buscar y reemplazar",
145
- "Replace with": "Reemplazar con",
146
- "Find": "Buscar",
147
- "Replace all": "Reemplazar todo",
148
- "Match case": "Coincidencia exacta",
149
- "Prev": "Anterior",
150
- "Spellcheck": "Corrector ortogr\u00e1fico",
151
- "Finish": "Finalizar",
152
- "Ignore all": "Ignorar todos",
153
- "Ignore": "Ignorar",
154
- "Add to Dictionary": "A\u00f1adir al Diccionario",
155
- "Insert row before": "Insertar fila antes",
156
- "Rows": "Filas",
157
- "Height": "Alto",
158
- "Paste row after": "Pegar la fila despu\u00e9s",
159
- "Alignment": "Alineaci\u00f3n",
160
- "Border color": "Color del borde",
161
- "Column group": "Grupo de columnas",
162
- "Row": "Fila",
163
- "Insert column before": "Insertar columna antes",
164
- "Split cell": "Dividir celdas",
165
- "Cell padding": "Relleno de celda",
166
- "Cell spacing": "Espacio entre celdas",
167
- "Row type": "Tipo de fila",
168
- "Insert table": "Insertar tabla",
169
- "Body": "Cuerpo",
170
- "Caption": "Subt\u00edtulo",
171
- "Footer": "Pie de p\u00e1gina",
172
- "Delete row": "Eliminar fila",
173
- "Paste row before": "Pegar la fila antes",
174
- "Scope": "\u00c1mbito",
175
- "Delete table": "Eliminar tabla",
176
- "H Align": "Alineamiento Horizontal",
177
- "Top": "Arriba",
178
- "Header cell": "Celda de la cebecera",
179
- "Column": "Columna",
180
- "Row group": "Grupo de filas",
181
- "Cell": "Celda",
182
- "Middle": "Centro",
183
- "Cell type": "Tipo de celda",
184
- "Copy row": "Copiar fila",
185
- "Row properties": "Propiedades de la fila",
186
- "Table properties": "Propiedades de la tabla",
187
- "Bottom": "Abajo",
188
- "V Align": "Alineamiento Vertical",
189
- "Header": "Cabecera",
190
- "Right": "Derecha",
191
- "Insert column after": "Insertar columna despu\u00e9s",
192
- "Cols": "Columnas",
193
- "Insert row after": "Insertar fila despu\u00e9s ",
194
- "Width": "Ancho",
195
- "Cell properties": "Propiedades de la celda",
196
- "Left": "Izquierda",
197
- "Cut row": "Cortar fila",
198
- "Delete column": "Eliminar columna",
199
- "Center": "Centrado",
200
- "Merge cells": "Combinar celdas",
201
- "Insert template": "Insertar plantilla",
202
- "Templates": "Plantillas",
203
- "Background color": "Color de fondo",
204
- "Custom...": "Personalizar...",
205
- "Custom color": "Color personalizado",
206
- "No color": "Sin color",
207
- "Text color": "Color del texto",
208
- "Show blocks": "Mostrar bloques",
209
- "Show invisible characters": "Mostrar caracteres invisibles",
210
- "Words: {0}": "Palabras: {0}",
211
- "Insert": "Insertar",
212
- "File": "Archivo",
213
- "Edit": "Editar",
214
- "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto enriquecido. Pulse ALT-F9 para el menu. Pulse ALT-F10 para la barra de herramientas. Pulse ALT-0 para ayuda",
215
- "Tools": "Herramientas",
216
- "View": "Ver",
217
- "Table": "Tabla",
218
- "Format": "Formato"
219
- });
@@ -1,219 +0,0 @@
1
- tinymce.addI18n('fr',{
2
- "Cut": "Couper",
3
- "Heading 5": "En-t\u00eate 5",
4
- "Header 2": "Titre 2",
5
- "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Votre navigateur ne supporte pas la copie directe. Merci d'utiliser les touches Ctrl+X\/C\/V.",
6
- "Heading 4": "En-t\u00eate 4",
7
- "Div": "Div",
8
- "Heading 2": "En-t\u00eate 2",
9
- "Paste": "Coller",
10
- "Close": "Fermer",
11
- "Font Family": "Police",
12
- "Pre": "Pre",
13
- "Align right": "Aligner \u00e0 droite",
14
- "New document": "Nouveau document",
15
- "Blockquote": "Citation",
16
- "Numbered list": "Num\u00e9rotation",
17
- "Heading 1": "En-t\u00eate 1",
18
- "Headings": "En-t\u00eates",
19
- "Increase indent": "Augmenter le retrait",
20
- "Formats": "Formats",
21
- "Headers": "Titres",
22
- "Select all": "Tout s\u00e9lectionner",
23
- "Header 3": "Titre 3",
24
- "Blocks": "Blocs",
25
- "Undo": "Annuler",
26
- "Strikethrough": "Barr\u00e9",
27
- "Bullet list": "Puces",
28
- "Header 1": "Titre 1",
29
- "Superscript": "Exposant",
30
- "Clear formatting": "Effacer la mise en forme",
31
- "Font Sizes": "Taille de police",
32
- "Subscript": "Indice",
33
- "Header 6": "Titre 6",
34
- "Redo": "R\u00e9tablir",
35
- "Paragraph": "Paragraphe",
36
- "Ok": "Ok",
37
- "Bold": "Gras",
38
- "Code": "Code",
39
- "Italic": "Italique",
40
- "Align center": "Centrer",
41
- "Header 5": "Titre 5",
42
- "Heading 6": "En-t\u00eate 6",
43
- "Heading 3": "En-t\u00eate 3",
44
- "Decrease indent": "Diminuer le retrait",
45
- "Header 4": "Titre 4",
46
- "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Le presse-papiers est maintenant en mode \"texte plein\". Les contenus seront coll\u00e9s sans retenir les formatages jusqu'\u00e0 ce que vous d\u00e9sactiviez cette option.",
47
- "Underline": "Soulign\u00e9",
48
- "Cancel": "Annuler",
49
- "Justify": "Justifier",
50
- "Inline": "En ligne",
51
- "Copy": "Copier",
52
- "Align left": "Aligner \u00e0 gauche",
53
- "Visual aids": "Aides visuelle",
54
- "Lower Greek": "Grec minuscule",
55
- "Square": "Carr\u00e9",
56
- "Default": "Par d\u00e9faut",
57
- "Lower Alpha": "Alpha minuscule",
58
- "Circle": "Cercle",
59
- "Disc": "Disque",
60
- "Upper Alpha": "Alpha majuscule",
61
- "Upper Roman": "Romain majuscule",
62
- "Lower Roman": "Romain minuscule",
63
- "Name": "Nom",
64
- "Anchor": "Ancre",
65
- "You have unsaved changes are you sure you want to navigate away?": "Vous avez des modifications non enregistr\u00e9es, \u00eates-vous s\u00fbr de quitter la page?",
66
- "Restore last draft": "Restaurer le dernier brouillon",
67
- "Special character": "Caract\u00e8res sp\u00e9ciaux",
68
- "Source code": "Code source",
69
- "B": "B",
70
- "R": "R",
71
- "G": "V",
72
- "Color": "Couleur",
73
- "Right to left": "Droite \u00e0 gauche",
74
- "Left to right": "Gauche \u00e0 droite",
75
- "Emoticons": "Emotic\u00f4nes",
76
- "Robots": "Robots",
77
- "Document properties": "Propri\u00e9t\u00e9 du document",
78
- "Title": "Titre",
79
- "Keywords": "Mots-cl\u00e9s",
80
- "Encoding": "Encodage",
81
- "Description": "Description",
82
- "Author": "Auteur",
83
- "Fullscreen": "Plein \u00e9cran",
84
- "Horizontal line": "Ligne horizontale",
85
- "Horizontal space": "Espacement horizontal",
86
- "Insert\/edit image": "Ins\u00e9rer\/modifier une image",
87
- "General": "G\u00e9n\u00e9ral",
88
- "Advanced": "Avanc\u00e9",
89
- "Source": "Source",
90
- "Border": "Bordure",
91
- "Constrain proportions": "Conserver les proportions",
92
- "Vertical space": "Espacement vertical",
93
- "Image description": "Description de l'image",
94
- "Style": "Style",
95
- "Dimensions": "Dimensions",
96
- "Insert image": "Ins\u00e9rer une image",
97
- "Zoom in": "Zoomer",
98
- "Contrast": "Contraste",
99
- "Back": "Retour",
100
- "Gamma": "Gamma",
101
- "Flip horizontally": "Retournement horizontal",
102
- "Resize": "Redimensionner",
103
- "Sharpen": "Affiner",
104
- "Zoom out": "D\u00e9zoomer",
105
- "Image options": "Options de l'image",
106
- "Apply": "Appliquer",
107
- "Brightness": "Luminosit\u00e9",
108
- "Rotate clockwise": "Rotation horaire",
109
- "Rotate counterclockwise": "Rotation anti-horaire",
110
- "Edit image": "Modifier l'image",
111
- "Color levels": "Niveaux de couleur",
112
- "Crop": "Rogner",
113
- "Orientation": "Orientation",
114
- "Flip vertically": "Retournement vertical",
115
- "Invert": "Inverser",
116
- "Insert date\/time": "Ins\u00e9rer date\/heure",
117
- "Remove link": "Enlever le lien",
118
- "Url": "Url",
119
- "Text to display": "Texte \u00e0 afficher",
120
- "Anchors": "Ancres",
121
- "Insert link": "Ins\u00e9rer un lien",
122
- "New window": "Nouvelle fen\u00eatre",
123
- "None": "n\/a",
124
- "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre un lien externe. Voulez-vous ajouter le pr\u00e9fixe http:\/\/ n\u00e9cessaire?",
125
- "Target": "Cible",
126
- "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre une adresse e-mail. Voulez-vous ajouter le pr\u00e9fixe mailto: n\u00e9cessaire?",
127
- "Insert\/edit link": "Ins\u00e9rer\/modifier un lien",
128
- "Insert\/edit video": "Ins\u00e9rer\/modifier une vid\u00e9o",
129
- "Poster": "Publier",
130
- "Alternative source": "Source alternative",
131
- "Paste your embed code below:": "Collez votre code d'int\u00e9gration ci-dessous :",
132
- "Insert video": "Ins\u00e9rer une vid\u00e9o",
133
- "Embed": "Int\u00e9grer",
134
- "Nonbreaking space": "Espace ins\u00e9cable",
135
- "Page break": "Saut de page",
136
- "Paste as text": "Coller comme texte",
137
- "Preview": "Pr\u00e9visualiser",
138
- "Print": "Imprimer",
139
- "Save": "Enregistrer",
140
- "Could not find the specified string.": "Impossible de trouver la cha\u00eene sp\u00e9cifi\u00e9e.",
141
- "Replace": "Remplacer",
142
- "Next": "Suiv",
143
- "Whole words": "Mots entiers",
144
- "Find and replace": "Trouver et remplacer",
145
- "Replace with": "Remplacer par",
146
- "Find": "Chercher",
147
- "Replace all": "Tout remplacer",
148
- "Match case": "Respecter la casse",
149
- "Prev": "Pr\u00e9c ",
150
- "Spellcheck": "V\u00e9rification orthographique",
151
- "Finish": "Finie",
152
- "Ignore all": "Tout ignorer",
153
- "Ignore": "Ignorer",
154
- "Add to Dictionary": "Ajouter au dictionnaire",
155
- "Insert row before": "Ins\u00e9rer une ligne avant",
156
- "Rows": "Lignes",
157
- "Height": "Hauteur",
158
- "Paste row after": "Coller la ligne apr\u00e8s",
159
- "Alignment": "Alignement",
160
- "Border color": "Couleur de la bordure",
161
- "Column group": "Groupe de colonnes",
162
- "Row": "Ligne",
163
- "Insert column before": "Ins\u00e9rer une colonne avant",
164
- "Split cell": "Diviser la cellule",
165
- "Cell padding": "Espacement interne cellule",
166
- "Cell spacing": "Espacement inter-cellulles",
167
- "Row type": "Type de ligne",
168
- "Insert table": "Ins\u00e9rer un tableau",
169
- "Body": "Corps",
170
- "Caption": "Titre",
171
- "Footer": "Pied",
172
- "Delete row": "Effacer la ligne",
173
- "Paste row before": "Coller la ligne avant",
174
- "Scope": "Etendue",
175
- "Delete table": "Supprimer le tableau",
176
- "H Align": "Alignement H",
177
- "Top": "Haut",
178
- "Header cell": "Cellule d'en-t\u00eate",
179
- "Column": "Colonne",
180
- "Row group": "Groupe de lignes",
181
- "Cell": "Cellule",
182
- "Middle": "Milieu",
183
- "Cell type": "Type de cellule",
184
- "Copy row": "Copier la ligne",
185
- "Row properties": "Propri\u00e9t\u00e9s de la ligne",
186
- "Table properties": "Propri\u00e9t\u00e9s du tableau",
187
- "Bottom": "Bas",
188
- "V Align": "Alignement V",
189
- "Header": "En-t\u00eate",
190
- "Right": "Droite",
191
- "Insert column after": "Ins\u00e9rer une colonne apr\u00e8s",
192
- "Cols": "Colonnes",
193
- "Insert row after": "Ins\u00e9rer une ligne apr\u00e8s",
194
- "Width": "Largeur",
195
- "Cell properties": "Propri\u00e9t\u00e9s de la cellule",
196
- "Left": "Gauche",
197
- "Cut row": "Couper la ligne",
198
- "Delete column": "Effacer la colonne",
199
- "Center": "Centr\u00e9",
200
- "Merge cells": "Fusionner les cellules",
201
- "Insert template": "Ajouter un th\u00e8me",
202
- "Templates": "Th\u00e8mes",
203
- "Background color": "Couleur d'arri\u00e8re-plan",
204
- "Custom...": "Personnalis\u00e9...",
205
- "Custom color": "Couleur personnalis\u00e9e",
206
- "No color": "Aucune couleur",
207
- "Text color": "Couleur du texte",
208
- "Show blocks": "Afficher les blocs",
209
- "Show invisible characters": "Afficher les caract\u00e8res invisibles",
210
- "Words: {0}": "Mots : {0}",
211
- "Insert": "Ins\u00e9rer",
212
- "File": "Fichier",
213
- "Edit": "Editer",
214
- "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zone Texte Riche. Appuyer sur ALT-F9 pour le menu. Appuyer sur ALT-F10 pour la barre d'outils. Appuyer sur ALT-0 pour de l'aide.",
215
- "Tools": "Outils",
216
- "View": "Voir",
217
- "Table": "Tableau",
218
- "Format": "Format"
219
- });
@@ -1,219 +0,0 @@
1
- tinymce.addI18n('it',{
2
- "Cut": "Taglia",
3
- "Heading 5": "Intestazione 5",
4
- "Header 2": "Header 2",
5
- "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Il tuo browser non supporta l'accesso diretto negli Appunti. Per favore usa i tasti di scelta rapida Ctrl+X\/C\/V.",
6
- "Heading 4": "Intestazione 4",
7
- "Div": "Div",
8
- "Heading 2": "Intestazione 2",
9
- "Paste": "Incolla",
10
- "Close": "Chiudi",
11
- "Font Family": "Famiglia font",
12
- "Pre": "Pre",
13
- "Align right": "Allinea a Destra",
14
- "New document": "Nuovo Documento",
15
- "Blockquote": "Blockquote",
16
- "Numbered list": "Elenchi Numerati",
17
- "Heading 1": "Intestazione 1",
18
- "Headings": "Intestazioni",
19
- "Increase indent": "Aumenta Rientro",
20
- "Formats": "Formattazioni",
21
- "Headers": "Intestazioni",
22
- "Select all": "Seleziona Tutto",
23
- "Header 3": "Intestazione 3",
24
- "Blocks": "Blocchi",
25
- "Undo": "Indietro",
26
- "Strikethrough": "Barrato",
27
- "Bullet list": "Elenchi Puntati",
28
- "Header 1": "Intestazione 1",
29
- "Superscript": "Apice",
30
- "Clear formatting": "Cancella Formattazione",
31
- "Font Sizes": "Dimensioni font",
32
- "Subscript": "Pedice",
33
- "Header 6": "Intestazione 6",
34
- "Redo": "Ripeti",
35
- "Paragraph": "Paragrafo",
36
- "Ok": "Ok",
37
- "Bold": "Grassetto",
38
- "Code": "Codice",
39
- "Italic": "Corsivo",
40
- "Align center": "Allinea al Cento",
41
- "Header 5": "Intestazione 5",
42
- "Heading 6": "Intestazione 6",
43
- "Heading 3": "Intestazione 3",
44
- "Decrease indent": "Riduci Rientro",
45
- "Header 4": "Intestazione 4",
46
- "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Incolla \u00e8 in modalit\u00e0 testo normale. I contenuti sono incollati come testo normale se non disattivi l'opzione.",
47
- "Underline": "Sottolineato",
48
- "Cancel": "Annulla",
49
- "Justify": "Giustifica",
50
- "Inline": "Inlinea",
51
- "Copy": "Copia",
52
- "Align left": "Allinea a Sinistra",
53
- "Visual aids": "Elementi Visivi",
54
- "Lower Greek": "Greek Minore",
55
- "Square": "Quadrato",
56
- "Default": "Default",
57
- "Lower Alpha": "Alpha Minore",
58
- "Circle": "Cerchio",
59
- "Disc": "Disco",
60
- "Upper Alpha": "Alpha Superiore",
61
- "Upper Roman": "Roman Superiore",
62
- "Lower Roman": "Roman Minore",
63
- "Name": "Nome",
64
- "Anchor": "Fissa",
65
- "You have unsaved changes are you sure you want to navigate away?": "Non hai salvato delle modifiche, sei sicuro di andartene?",
66
- "Restore last draft": "Ripristina l'ultima bozza.",
67
- "Special character": "Carattere Speciale",
68
- "Source code": "Codice Sorgente",
69
- "B": "B",
70
- "R": "R",
71
- "G": "G",
72
- "Color": "Colore",
73
- "Right to left": "Da Destra a Sinistra",
74
- "Left to right": "Da Sinistra a Destra",
75
- "Emoticons": "Emoction",
76
- "Robots": "Robot",
77
- "Document properties": "Propriet\u00e0 Documento",
78
- "Title": "Titolo",
79
- "Keywords": "Parola Chiave",
80
- "Encoding": "Codifica",
81
- "Description": "Descrizione",
82
- "Author": "Autore",
83
- "Fullscreen": "Schermo Intero",
84
- "Horizontal line": "Linea Orizzontale",
85
- "Horizontal space": "Spazio Orizzontale",
86
- "Insert\/edit image": "Aggiungi\/Modifica Immagine",
87
- "General": "Generale",
88
- "Advanced": "Avanzato",
89
- "Source": "Fonte",
90
- "Border": "Bordo",
91
- "Constrain proportions": "Mantieni Proporzioni",
92
- "Vertical space": "Spazio Verticale",
93
- "Image description": "Descrizione Immagine",
94
- "Style": "Stile",
95
- "Dimensions": "Dimenzioni",
96
- "Insert image": "Inserisci immagine",
97
- "Zoom in": "Ingrandisci",
98
- "Contrast": "Contrasto",
99
- "Back": "Indietro",
100
- "Gamma": "Gamma",
101
- "Flip horizontally": "Rifletti orizzontalmente",
102
- "Resize": "Ridimensiona",
103
- "Sharpen": "Contrasta",
104
- "Zoom out": "Rimpicciolisci",
105
- "Image options": "Opzioni immagine",
106
- "Apply": "Applica",
107
- "Brightness": "Luminosit\u00e0",
108
- "Rotate clockwise": "Ruota in senso orario",
109
- "Rotate counterclockwise": "Ruota in senso antiorario",
110
- "Edit image": "Modifica immagine",
111
- "Color levels": "Livelli colore",
112
- "Crop": "Taglia",
113
- "Orientation": "Orientamento",
114
- "Flip vertically": "Rifletti verticalmente",
115
- "Invert": "Inverti",
116
- "Insert date\/time": "Inserisci Data\/Ora",
117
- "Remove link": "Rimuovi link",
118
- "Url": "Url",
119
- "Text to display": "Testo da Visualizzare",
120
- "Anchors": "Anchors",
121
- "Insert link": "Inserisci il Link",
122
- "New window": "Nuova Finestra",
123
- "None": "No",
124
- "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL inserito sembra essere un collegamento esterno. Vuoi aggiungere il prefisso necessario http:\/\/?",
125
- "Target": "Target",
126
- "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL inserito sembra essere un indirizzo email. Vuoi aggiungere il prefisso necessario mailto:?",
127
- "Insert\/edit link": "Inserisci\/Modifica Link",
128
- "Insert\/edit video": "Inserisci\/Modifica Video",
129
- "Poster": "Anteprima",
130
- "Alternative source": "Alternativo",
131
- "Paste your embed code below:": "Incolla il codice d'incorporamento qui:",
132
- "Insert video": "Inserisci Video",
133
- "Embed": "Incorporare",
134
- "Nonbreaking space": "Spazio unificatore",
135
- "Page break": "Interruzione di pagina",
136
- "Paste as text": "incolla come testo",
137
- "Preview": "Anteprima",
138
- "Print": "Stampa",
139
- "Save": "Salva",
140
- "Could not find the specified string.": "Impossibile trovare la parola specifica.",
141
- "Replace": "Sostituisci",
142
- "Next": "Successivo",
143
- "Whole words": "Parole Sbagliate",
144
- "Find and replace": "Trova e Sostituisci",
145
- "Replace with": "Sostituisci Con",
146
- "Find": "Trova",
147
- "Replace all": "Sostituisci Tutto",
148
- "Match case": "Maiuscole\/Minuscole ",
149
- "Prev": "Precedente",
150
- "Spellcheck": "Controllo ortografico",
151
- "Finish": "Termina",
152
- "Ignore all": "Ignora Tutto",
153
- "Ignore": "Ignora",
154
- "Add to Dictionary": "Aggiungi al Dizionario",
155
- "Insert row before": "Inserisci una Riga Prima",
156
- "Rows": "Righe",
157
- "Height": "Altezza",
158
- "Paste row after": "Incolla una Riga Dopo",
159
- "Alignment": "Allineamento",
160
- "Border color": "Colore bordo",
161
- "Column group": "Gruppo di Colonne",
162
- "Row": "Riga",
163
- "Insert column before": "Inserisci una Colonna Prima",
164
- "Split cell": "Dividi Cella",
165
- "Cell padding": "Padding della Cella",
166
- "Cell spacing": "Spaziatura della Cella",
167
- "Row type": "Tipo di Riga",
168
- "Insert table": "Inserisci Tabella",
169
- "Body": "Body",
170
- "Caption": "Didascalia",
171
- "Footer": "Footer",
172
- "Delete row": "Cancella Riga",
173
- "Paste row before": "Incolla una Riga Prima",
174
- "Scope": "Campo",
175
- "Delete table": "Cancella Tabella",
176
- "H Align": "Allineamento H",
177
- "Top": "In alto",
178
- "Header cell": "cella d'intestazione",
179
- "Column": "Colonna",
180
- "Row group": "Gruppo di Righe",
181
- "Cell": "Cella",
182
- "Middle": "In mezzo",
183
- "Cell type": "Tipo di Cella",
184
- "Copy row": "Copia Riga",
185
- "Row properties": "Propriet\u00e0 della Riga",
186
- "Table properties": "Propiet\u00e0 della Tabella",
187
- "Bottom": "In fondo",
188
- "V Align": "Allineamento V",
189
- "Header": "Header",
190
- "Right": "Destra",
191
- "Insert column after": "Inserisci una Colonna Dopo",
192
- "Cols": "Colonne",
193
- "Insert row after": "Inserisci una Riga Dopo",
194
- "Width": "Larghezza",
195
- "Cell properties": "Propiet\u00e0 della Cella",
196
- "Left": "Sinistra",
197
- "Cut row": "Taglia Riga",
198
- "Delete column": "Cancella Colonna",
199
- "Center": "Centro",
200
- "Merge cells": "Unisci Cella",
201
- "Insert template": "Inserisci Template",
202
- "Templates": "Template",
203
- "Background color": "Colore Background",
204
- "Custom...": "Personalizzato...",
205
- "Custom color": "Colore personalizzato",
206
- "No color": "Nessun colore",
207
- "Text color": "Colore Testo",
208
- "Show blocks": "Mostra Blocchi",
209
- "Show invisible characters": "Mostra Caratteri Invisibili",
210
- "Words: {0}": "Parole: {0}",
211
- "Insert": "Inserisci",
212
- "File": "File",
213
- "Edit": "Modifica",
214
- "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Premi ALT-F9 per il men\u00f9. Premi ALT-F10 per la barra degli strumenti. Premi ALT-0 per l'aiuto.",
215
- "Tools": "Strumenti",
216
- "View": "Visualiza",
217
- "Table": "Tabella",
218
- "Format": "Formato"
219
- });