alchemy_cms 2.1.beta1 → 2.1.beta5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (555) hide show
  1. data/.gitignore +2 -1
  2. data/.rspec +2 -2
  3. data/.travis.yml +2 -1
  4. data/Gemfile +8 -9
  5. data/README.md +10 -10
  6. data/Rakefile +0 -1
  7. data/alchemy_cms.gemspec +7 -9
  8. data/app/assets/images/alchemy/icons.png +0 -0
  9. data/app/assets/javascripts/alchemy/alchemy.base.js +8 -2
  10. data/app/assets/javascripts/alchemy/{alchemy.dragndrop.js → alchemy.dragndrop.js.erb} +3 -3
  11. data/app/assets/javascripts/alchemy/alchemy.element_editor_selector.js +1 -1
  12. data/app/assets/javascripts/alchemy/alchemy.growler.js +3 -3
  13. data/app/assets/javascripts/alchemy/alchemy.js +10 -15
  14. data/app/assets/javascripts/alchemy/alchemy.link_overlay.js +6 -2
  15. data/app/assets/javascripts/alchemy/alchemy.page_sorter.js +1 -1
  16. data/app/assets/javascripts/alchemy/alchemy.preview.js +1 -1
  17. data/app/assets/javascripts/alchemy/alchemy.routes.js.erb +38 -0
  18. data/app/assets/javascripts/alchemy/alchemy.swf_upload.js +360 -0
  19. data/app/assets/javascripts/alchemy/alchemy.windows.js +32 -17
  20. data/app/assets/javascripts/alchemy/preview.js +1 -0
  21. data/{vendor → app}/assets/javascripts/tiny_mce/plugins/alchemy_link/editor_plugin.js +0 -0
  22. data/{vendor → app}/assets/javascripts/tiny_mce/plugins/alchemy_link/langs/de.js +0 -0
  23. data/{vendor → app}/assets/javascripts/tiny_mce/plugins/alchemy_link/langs/en.js +0 -0
  24. data/{vendor/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/alchemy/window.css.erb → app/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/alchemy/window.css.scss} +15 -33
  25. data/app/assets/stylesheets/alchemy/_defaults.scss +4 -16
  26. data/app/assets/stylesheets/alchemy/alchemy.css +2 -2
  27. data/app/assets/stylesheets/alchemy/base.css.scss +161 -205
  28. data/app/assets/stylesheets/alchemy/elements.css.scss +15 -8
  29. data/app/assets/stylesheets/alchemy/{jquery-ui.alchemy.css → jquery-ui.alchemy.css.scss} +41 -45
  30. data/app/assets/stylesheets/alchemy/jquery.sb.css.scss +14 -10
  31. data/app/assets/stylesheets/alchemy/{tinymce_content.css → tinymce_content.css.scss} +7 -6
  32. data/app/assets/stylesheets/alchemy/{tinymce_dialog.css → tinymce_dialog.css.scss} +7 -7
  33. data/app/controllers/alchemy/admin/attachments_controller.rb +131 -0
  34. data/app/controllers/alchemy/admin/base_controller.rb +118 -0
  35. data/app/controllers/alchemy/admin/clipboard_controller.rb +46 -0
  36. data/app/controllers/alchemy/admin/contents_controller.rb +55 -0
  37. data/app/controllers/alchemy/admin/dashboard_controller.rb +15 -0
  38. data/app/controllers/alchemy/admin/elements_controller.rb +123 -0
  39. data/app/controllers/alchemy/admin/essence_audios_controller.rb +12 -0
  40. data/app/controllers/alchemy/admin/essence_files_controller.rb +27 -0
  41. data/app/controllers/alchemy/admin/essence_flashes_controller.rb +12 -0
  42. data/app/controllers/alchemy/admin/essence_pictures_controller.rb +91 -0
  43. data/app/controllers/alchemy/admin/essence_videos_controller.rb +12 -0
  44. data/app/controllers/alchemy/admin/languages_controller.rb +7 -0
  45. data/app/controllers/alchemy/admin/layoutpages_controller.rb +13 -0
  46. data/app/controllers/alchemy/admin/pages_controller.rb +253 -0
  47. data/app/controllers/alchemy/admin/pictures_controller.rb +139 -0
  48. data/app/controllers/alchemy/admin/resources_controller.rb +132 -0
  49. data/app/controllers/alchemy/admin/trash_controller.rb +24 -0
  50. data/app/controllers/alchemy/admin/users_controller.rb +81 -0
  51. data/app/controllers/alchemy/attachments_controller.rb +30 -0
  52. data/app/controllers/alchemy/base_controller.rb +137 -0
  53. data/app/controllers/alchemy/elements_controller.rb +18 -0
  54. data/app/controllers/alchemy/messages_controller.rb +115 -0
  55. data/app/controllers/alchemy/pages_controller.rb +169 -0
  56. data/app/controllers/alchemy/pictures_controller.rb +62 -0
  57. data/app/controllers/alchemy/user_sessions_controller.rb +80 -0
  58. data/app/helpers/alchemy/admin/attachments_helper.rb +11 -0
  59. data/app/helpers/alchemy/admin/base_helper.rb +423 -0
  60. data/app/helpers/alchemy/admin/contents_helper.rb +75 -0
  61. data/app/helpers/alchemy/admin/elements_helper.rb +118 -0
  62. data/app/helpers/alchemy/admin/essences_helper.rb +78 -0
  63. data/app/helpers/alchemy/admin/pages_helper.rb +46 -0
  64. data/app/helpers/alchemy/admin/pictures_helper.rb +30 -0
  65. data/app/helpers/alchemy/base_helper.rb +65 -0
  66. data/app/helpers/alchemy/elements_helper.rb +173 -0
  67. data/app/helpers/alchemy/essences_helper.rb +101 -0
  68. data/app/helpers/alchemy/pages_helper.rb +550 -0
  69. data/app/mailers/alchemy/messages.rb +17 -0
  70. data/app/mailers/alchemy/notifications.rb +25 -0
  71. data/app/models/alchemy.rb +7 -0
  72. data/app/models/alchemy/attachment.rb +82 -0
  73. data/app/models/alchemy/cell.rb +61 -0
  74. data/app/models/alchemy/content.rb +163 -0
  75. data/app/models/alchemy/element.rb +479 -0
  76. data/app/models/alchemy/essence_audio.rb +19 -0
  77. data/app/models/alchemy/essence_date.rb +22 -0
  78. data/app/models/alchemy/essence_file.rb +19 -0
  79. data/app/models/alchemy/essence_flash.rb +17 -0
  80. data/app/models/alchemy/essence_html.rb +21 -0
  81. data/app/models/alchemy/essence_picture.rb +29 -0
  82. data/app/models/alchemy/essence_richtext.rb +63 -0
  83. data/app/models/alchemy/essence_text.rb +40 -0
  84. data/app/models/alchemy/essence_video.rb +19 -0
  85. data/app/models/alchemy/folded_page.rb +5 -0
  86. data/app/models/alchemy/language.rb +90 -0
  87. data/app/models/alchemy/message.rb +71 -0
  88. data/app/models/alchemy/page.rb +548 -0
  89. data/app/models/alchemy/picture.rb +100 -0
  90. data/app/models/alchemy/user.rb +72 -0
  91. data/app/models/alchemy/user_session.rb +12 -0
  92. data/app/sweepers/alchemy/content_sweeper.rb +22 -0
  93. data/app/sweepers/alchemy/pages_sweeper.rb +49 -0
  94. data/app/sweepers/alchemy/pictures_sweeper.rb +23 -0
  95. data/app/views/{admin → alchemy/admin}/attachments/_archive_overlay.html.erb +6 -6
  96. data/app/views/{admin → alchemy/admin}/attachments/_attachment.html.erb +14 -14
  97. data/app/views/{admin → alchemy/admin}/attachments/_file_to_assign.html.erb +0 -0
  98. data/app/views/alchemy/admin/attachments/_files_list.html.erb +25 -0
  99. data/app/views/{admin → alchemy/admin}/attachments/create.js.erb +0 -0
  100. data/app/views/{admin → alchemy/admin}/attachments/destroy.js.erb +0 -0
  101. data/app/views/{admin → alchemy/admin}/attachments/edit.html.erb +2 -2
  102. data/app/views/alchemy/admin/attachments/index.html.erb +18 -0
  103. data/app/views/{admin → alchemy/admin}/attachments/new.html.erb +3 -3
  104. data/app/views/{admin → alchemy/admin}/clipboard/clear.js.erb +1 -1
  105. data/app/views/alchemy/admin/clipboard/index.html.erb +19 -0
  106. data/app/views/alchemy/admin/clipboard/insert.js.erb +14 -0
  107. data/app/views/alchemy/admin/clipboard/remove.js.erb +10 -0
  108. data/app/views/{admin → alchemy/admin}/contents/_missing.html.erb +4 -4
  109. data/app/views/{admin → alchemy/admin}/contents/create.js.erb +10 -10
  110. data/app/views/{admin → alchemy/admin}/contents/destroy.js.erb +0 -0
  111. data/app/views/{admin → alchemy/admin}/contents/new.html.erb +1 -1
  112. data/app/views/{admin → alchemy/admin}/contents/order.js.erb +0 -0
  113. data/app/views/alchemy/admin/dashboard/index.html.erb +96 -0
  114. data/app/views/{admin → alchemy/admin}/elements/_add_content.html.erb +2 -2
  115. data/app/views/{admin → alchemy/admin}/elements/_element.html.erb +3 -3
  116. data/app/views/{admin → alchemy/admin}/elements/_element_foot.html.erb +8 -8
  117. data/app/views/{admin → alchemy/admin}/elements/_element_head.html.erb +4 -4
  118. data/app/views/{admin → alchemy/admin}/elements/_elements_select.html.erb +2 -2
  119. data/app/views/alchemy/admin/elements/_new_element_form.html.erb +30 -0
  120. data/app/views/{admin → alchemy/admin}/elements/_picture_editor.html.erb +3 -3
  121. data/app/views/{admin → alchemy/admin}/elements/create.js.erb +2 -2
  122. data/app/views/{admin → alchemy/admin}/elements/destroy.js.erb +1 -1
  123. data/app/views/{admin → alchemy/admin}/elements/fold.js.erb +2 -2
  124. data/app/views/{admin → alchemy/admin}/elements/index.html.erb +1 -10
  125. data/app/views/{admin → alchemy/admin}/elements/list.js.erb +2 -2
  126. data/app/views/alchemy/admin/elements/new.html.erb +41 -0
  127. data/app/views/{admin → alchemy/admin}/elements/order.js.erb +1 -1
  128. data/app/views/{admin → alchemy/admin}/elements/trash.js.erb +1 -1
  129. data/app/views/{admin → alchemy/admin}/elements/update.js.erb +1 -1
  130. data/app/views/{admin → alchemy/admin}/essence_files/assign.js.erb +1 -1
  131. data/app/views/{admin → alchemy/admin}/essence_files/edit.html.erb +23 -23
  132. data/app/views/{admin → alchemy/admin}/essence_pictures/assign.js.erb +2 -2
  133. data/app/views/{admin → alchemy/admin}/essence_pictures/crop.html.erb +15 -6
  134. data/app/views/{admin → alchemy/admin}/essence_pictures/destroy.js.erb +1 -1
  135. data/app/views/{admin → alchemy/admin}/essence_pictures/edit.html.erb +11 -11
  136. data/app/views/{admin → alchemy/admin}/essence_pictures/save_link.js.erb +0 -0
  137. data/app/views/{admin → alchemy/admin}/essence_pictures/update.js.erb +2 -2
  138. data/app/views/alchemy/admin/languages/_language.html.erb +36 -0
  139. data/app/views/{admin → alchemy/admin}/layoutpages/_layoutpage.html.erb +18 -18
  140. data/app/views/alchemy/admin/layoutpages/index.html.erb +65 -0
  141. data/app/views/{admin → alchemy/admin}/pages/_contactform_links.html.erb +6 -6
  142. data/app/views/alchemy/admin/pages/_create_language_form.html.erb +38 -0
  143. data/app/views/{admin → alchemy/admin}/pages/_external_link.html.erb +9 -9
  144. data/app/views/{admin → alchemy/admin}/pages/_file_link.html.erb +13 -13
  145. data/app/views/{admin → alchemy/admin}/pages/_internal_link.html.erb +8 -8
  146. data/app/views/{admin → alchemy/admin}/pages/_new_page_form.html.erb +6 -6
  147. data/app/views/{admin → alchemy/admin}/pages/_page.html.erb +25 -25
  148. data/app/views/{admin → alchemy/admin}/pages/_page_for_links.html.erb +6 -6
  149. data/app/views/{admin → alchemy/admin}/pages/_page_infos.html.erb +3 -3
  150. data/app/views/{admin → alchemy/admin}/pages/_page_status.html.erb +4 -4
  151. data/app/views/{admin → alchemy/admin}/pages/_sitemap.html.erb +21 -21
  152. data/app/views/alchemy/admin/pages/configure.html.erb +71 -0
  153. data/app/views/{admin → alchemy/admin}/pages/configure_external.html.erb +9 -9
  154. data/app/views/{admin → alchemy/admin}/pages/destroy.js.erb +2 -2
  155. data/app/views/alchemy/admin/pages/edit.html.erb +181 -0
  156. data/app/views/alchemy/admin/pages/flush.js.erb +2 -0
  157. data/app/views/{admin → alchemy/admin}/pages/fold.js.erb +0 -0
  158. data/app/views/alchemy/admin/pages/index.html.erb +104 -0
  159. data/app/views/{admin → alchemy/admin}/pages/link.html.erb +4 -4
  160. data/app/views/alchemy/admin/pages/locked.html.erb +3 -0
  161. data/app/views/{admin → alchemy/admin}/pages/new.html.erb +8 -8
  162. data/app/views/{admin → alchemy/admin}/pages/show.html.erb +0 -0
  163. data/app/views/{admin → alchemy/admin}/pages/sort.js.erb +0 -0
  164. data/app/views/{admin → alchemy/admin}/pages/unlock.js.erb +1 -1
  165. data/app/views/{admin → alchemy/admin}/pages/update.js.erb +5 -5
  166. data/app/views/{admin → alchemy/admin}/partials/_flash.html.erb +0 -0
  167. data/app/views/{admin → alchemy/admin}/partials/_flash_notices.html.erb +1 -1
  168. data/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb +14 -0
  169. data/app/views/alchemy/admin/partials/_pagination_links.html.erb +5 -0
  170. data/app/views/{admin → alchemy/admin}/partials/_remote_pagination_links.html.erb +2 -2
  171. data/app/views/{admin → alchemy/admin}/partials/_remote_search_form.html.erb +2 -2
  172. data/app/views/{admin → alchemy/admin}/partials/_search_form.html.erb +6 -7
  173. data/app/views/alchemy/admin/partials/_sub_navigation_tab.html.erb +8 -0
  174. data/app/views/alchemy/admin/partials/_upload_form.html.erb +129 -0
  175. data/app/views/{admin → alchemy/admin}/pictures/_archive_overlay.html.erb +3 -3
  176. data/app/views/{admin → alchemy/admin}/pictures/_filter_and_size_bar.html.erb +15 -15
  177. data/app/views/{admin → alchemy/admin}/pictures/_picture.html.erb +7 -7
  178. data/app/views/{admin → alchemy/admin}/pictures/_picture_to_assign.html.erb +2 -2
  179. data/app/views/alchemy/admin/pictures/_pictures_list.html.erb +14 -0
  180. data/app/views/{admin → alchemy/admin}/pictures/archive_overlay.js.erb +0 -0
  181. data/app/views/{admin → alchemy/admin}/pictures/create.js.erb +3 -3
  182. data/app/views/{admin → alchemy/admin}/pictures/flush.js.erb +0 -0
  183. data/app/views/alchemy/admin/pictures/index.html.erb +83 -0
  184. data/app/views/{admin → alchemy/admin}/pictures/new.html.erb +3 -3
  185. data/app/views/alchemy/admin/pictures/show_in_window.html.erb +1 -0
  186. data/app/views/{admin → alchemy/admin}/pictures/update.js.erb +0 -0
  187. data/app/views/alchemy/admin/resources/_form.html.erb +20 -0
  188. data/app/views/alchemy/admin/resources/_resource.html.erb +35 -0
  189. data/app/views/alchemy/admin/resources/_table.html.erb +23 -0
  190. data/app/views/alchemy/admin/resources/destroy.js.erb +1 -0
  191. data/app/views/{admin/languages → alchemy/admin/resources}/edit.html.erb +0 -0
  192. data/app/views/alchemy/admin/resources/index.html.erb +19 -0
  193. data/app/views/{admin/languages → alchemy/admin/resources}/new.html.erb +0 -0
  194. data/app/views/{admin → alchemy/admin}/trash/clear.js.erb +1 -1
  195. data/app/views/{admin → alchemy/admin}/trash/index.html.erb +4 -4
  196. data/app/views/alchemy/admin/users/_table.html.erb +54 -0
  197. data/app/views/{admin → alchemy/admin}/users/_user.html.erb +14 -12
  198. data/app/views/{admin → alchemy/admin}/users/edit.html.erb +0 -0
  199. data/app/views/alchemy/admin/users/index.html.erb +41 -0
  200. data/app/views/{admin → alchemy/admin}/users/new.html.erb +1 -1
  201. data/app/views/{attachments → alchemy/attachments}/show.html.erb +0 -0
  202. data/app/views/alchemy/base/500.html.erb +5 -0
  203. data/app/views/alchemy/base/error_notice.js.erb +2 -0
  204. data/app/views/alchemy/base/permission_denied.js.erb +2 -0
  205. data/app/views/alchemy/{redirect.js.erb → base/redirect.js.erb} +0 -0
  206. data/app/views/alchemy/{remote_errors.js.erb → base/remote_errors.js.erb} +0 -0
  207. data/app/views/alchemy/{update.js.erb → base/update.js.erb} +0 -0
  208. data/app/views/{elements → alchemy/elements}/_article_editor.html.erb +0 -0
  209. data/app/views/{elements → alchemy/elements}/_article_view.html.erb +1 -1
  210. data/app/views/{elements → alchemy/elements}/_bild_editor.html.erb +0 -0
  211. data/app/views/{elements → alchemy/elements}/_bild_text_editor.html.erb +0 -0
  212. data/app/views/{elements → alchemy/elements}/_bild_text_view.html.erb +1 -1
  213. data/app/views/{elements → alchemy/elements}/_bild_view.html.erb +1 -1
  214. data/app/views/{elements → alchemy/elements}/_claim_editor.html.erb +0 -0
  215. data/app/views/{elements → alchemy/elements}/_claim_view.html.erb +0 -0
  216. data/app/views/{elements → alchemy/elements}/_contactform_editor.html.erb +0 -0
  217. data/app/views/{elements → alchemy/elements}/_contactform_view.html.erb +0 -0
  218. data/app/views/{elements → alchemy/elements}/_editor_not_found.html.erb +1 -1
  219. data/app/views/{elements → alchemy/elements}/_footnote_editor.html.erb +0 -0
  220. data/app/views/{elements → alchemy/elements}/_footnote_view.html.erb +0 -0
  221. data/app/views/{elements → alchemy/elements}/_header_editor.html.erb +0 -0
  222. data/app/views/{elements → alchemy/elements}/_header_view.html.erb +1 -1
  223. data/app/views/{elements → alchemy/elements}/_headline_editor.html.erb +0 -0
  224. data/app/views/{elements → alchemy/elements}/_headline_view.html.erb +0 -0
  225. data/app/views/{elements → alchemy/elements}/_image_mosaic_editor.html.erb +0 -0
  226. data/app/views/{elements → alchemy/elements}/_image_mosaic_view.html.erb +1 -1
  227. data/app/views/{elements → alchemy/elements}/_intro_editor.html.erb +0 -0
  228. data/app/views/{elements → alchemy/elements}/_intro_image_text_editor.html.erb +0 -0
  229. data/app/views/{elements → alchemy/elements}/_intro_image_text_view.html.erb +1 -1
  230. data/app/views/{elements → alchemy/elements}/_intro_view.html.erb +0 -0
  231. data/app/views/{elements → alchemy/elements}/_news_editor.html.erb +0 -0
  232. data/app/views/{elements → alchemy/elements}/_news_view.html.erb +0 -0
  233. data/app/views/alchemy/elements/_searchresult_editor.html.erb +1 -0
  234. data/app/views/alchemy/elements/_searchresult_view.html.erb +4 -0
  235. data/app/views/alchemy/elements/_sitemap_editor.html.erb +3 -0
  236. data/app/views/{elements → alchemy/elements}/_sitemap_view.html.erb +2 -2
  237. data/app/views/{elements → alchemy/elements}/_sitename_editor.html.erb +0 -0
  238. data/app/views/{elements → alchemy/elements}/_sitename_view.html.erb +0 -0
  239. data/app/views/{elements → alchemy/elements}/_subheadline_editor.html.erb +0 -0
  240. data/app/views/{elements → alchemy/elements}/_subheadline_view.html.erb +0 -0
  241. data/app/views/{elements → alchemy/elements}/_text_editor.html.erb +0 -0
  242. data/app/views/{elements → alchemy/elements}/_text_view.html.erb +0 -0
  243. data/app/views/{elements → alchemy/elements}/_view_not_found.html.erb +0 -0
  244. data/app/views/alchemy/elements/show.html.erb +6 -0
  245. data/app/views/{elements → alchemy/elements}/show.js.erb +1 -1
  246. data/app/views/alchemy/essences/_essence_audio_editor.html.erb +1 -0
  247. data/app/views/{essences → alchemy/essences}/_essence_audio_view.html.erb +0 -0
  248. data/app/views/{essences → alchemy/essences}/_essence_date_editor.html.erb +0 -0
  249. data/app/views/{essences → alchemy/essences}/_essence_date_view.html.erb +0 -0
  250. data/app/views/{essences → alchemy/essences}/_essence_file_editor.html.erb +9 -9
  251. data/app/views/{essences → alchemy/essences}/_essence_file_view.html.erb +1 -1
  252. data/app/views/alchemy/essences/_essence_flash_editor.html.erb +1 -0
  253. data/app/views/{essences → alchemy/essences}/_essence_flash_view.html.erb +0 -0
  254. data/app/views/{essences → alchemy/essences}/_essence_html_editor.html.erb +0 -0
  255. data/app/views/{essences → alchemy/essences}/_essence_html_view.html.erb +0 -0
  256. data/app/views/{essences → alchemy/essences}/_essence_picture_editor.html.erb +8 -8
  257. data/app/views/{essences → alchemy/essences}/_essence_picture_tools.html.erb +11 -11
  258. data/app/views/{essences → alchemy/essences}/_essence_picture_view.html.erb +2 -4
  259. data/app/views/alchemy/essences/_essence_richtext_editor.html.erb +11 -0
  260. data/app/views/{essences → alchemy/essences}/_essence_richtext_view.html.erb +0 -0
  261. data/app/views/{essences → alchemy/essences}/_essence_text_editor.html.erb +6 -6
  262. data/app/views/{essences → alchemy/essences}/_essence_text_view.html.erb +0 -0
  263. data/app/views/alchemy/essences/_essence_video_editor.html.erb +1 -0
  264. data/app/views/{essences → alchemy/essences}/_essence_video_view.html.erb +1 -1
  265. data/app/views/{messages → alchemy/messages}/contact_form_mail.html.erb +0 -0
  266. data/app/views/{messages → alchemy/messages}/contact_form_mail.text.erb +0 -0
  267. data/app/views/{messages → alchemy/messages}/new.html.erb +0 -0
  268. data/app/views/{navigation → alchemy/navigation}/_image_link.html.erb +0 -0
  269. data/app/views/{navigation → alchemy/navigation}/_link.html.erb +1 -1
  270. data/app/views/{navigation → alchemy/navigation}/_renderer.html.erb +0 -0
  271. data/app/views/alchemy/notifications/admin_user_created.text.erb +13 -0
  272. data/app/views/alchemy/notifications/registered_user_created.text.erb +10 -0
  273. data/app/views/{page_layouts → alchemy/page_layouts}/_contact.html.erb +0 -0
  274. data/app/views/{page_layouts → alchemy/page_layouts}/_external.html.erb +0 -0
  275. data/app/views/{page_layouts → alchemy/page_layouts}/_intro.html.erb +0 -0
  276. data/app/views/{page_layouts → alchemy/page_layouts}/_layout_footer.html.erb +0 -0
  277. data/app/views/{page_layouts → alchemy/page_layouts}/_layout_header.html.erb +0 -0
  278. data/app/views/{page_layouts → alchemy/page_layouts}/_news.html.erb +0 -0
  279. data/app/views/{_newsletter_layout.html.erb → alchemy/page_layouts/_newsletter_layout.html.erb} +0 -0
  280. data/app/views/{page_layouts → alchemy/page_layouts}/_search.html.erb +0 -0
  281. data/app/views/{page_layouts → alchemy/page_layouts}/_standard.html.erb +0 -0
  282. data/app/views/{pages → alchemy/pages}/show.html.erb +0 -0
  283. data/app/views/{pages → alchemy/pages}/show.rss.builder +0 -0
  284. data/app/views/{pages → alchemy/pages}/sitemap.xml.erb +0 -0
  285. data/app/views/{pictures → alchemy/pictures}/show.gif.flexi +0 -0
  286. data/app/views/{pictures → alchemy/pictures}/show.jpg.flexi +0 -0
  287. data/app/views/{pictures → alchemy/pictures}/show.png.flexi +0 -0
  288. data/app/views/{pictures → alchemy/pictures}/thumbnail.png.flexi +0 -0
  289. data/app/views/{pictures → alchemy/pictures}/zoom.png.flexi +0 -0
  290. data/app/views/alchemy/search/_result.html.erb +9 -0
  291. data/app/views/alchemy/user_sessions/leave.html.erb +11 -0
  292. data/app/views/alchemy/user_sessions/login.html.erb +47 -0
  293. data/app/views/alchemy/user_sessions/logout.html.erb +3 -0
  294. data/app/views/alchemy/user_sessions/signup.html.erb +14 -0
  295. data/app/views/layouts/{alchemy.html.erb → alchemy/admin.html.erb} +23 -17
  296. data/app/views/layouts/alchemy/login.html.erb +37 -0
  297. data/app/views/layouts/alchemy/pages.html.erb +29 -0
  298. data/app/views/layouts/{sitemap.xml.erb → alchemy/sitemap.xml.erb} +0 -0
  299. data/config/alchemy/config.yml +2 -80
  300. data/config/alchemy/modules.yml +70 -0
  301. data/config/alchemy/page_layouts.yml +2 -0
  302. data/config/authorization_rules.rb +32 -39
  303. data/config/locales/alchemy.de.yml +789 -0
  304. data/config/locales/alchemy.en.yml +587 -0
  305. data/config/routes.rb +144 -142
  306. data/db/migrate/20111116125112_namespace_models.rb +23 -0
  307. data/lib/alchemy/auth_engine.rb +7 -0
  308. data/lib/alchemy/capistrano.rb +4 -1
  309. data/lib/alchemy/engine.rb +39 -25
  310. data/lib/alchemy/essence.rb +5 -1
  311. data/lib/alchemy/i18n.rb +47 -0
  312. data/lib/alchemy/modules.rb +38 -0
  313. data/lib/alchemy/page_layout.rb +98 -56
  314. data/lib/alchemy/seeder.rb +60 -110
  315. data/lib/alchemy/tinymce.rb +2 -2
  316. data/lib/alchemy/version.rb +3 -3
  317. data/lib/alchemy_cms.rb +23 -23
  318. data/lib/rails/generators/alchemy/elements/elements_generator.rb +1 -1
  319. data/lib/rails/generators/alchemy/elements/templates/editor.html.erb +1 -1
  320. data/lib/rails/generators/alchemy/elements/templates/view.html.erb +2 -2
  321. data/lib/rails/generators/alchemy/page_layouts/page_layouts_generator.rb +1 -1
  322. data/lib/rails/generators/alchemy/plugin/plugin_generator.rb +0 -1
  323. data/lib/rails/generators/alchemy/scaffold/files/pages.html.erb +1 -1
  324. data/lib/rails/generators/alchemy/scaffold/scaffold_generator.rb +34 -34
  325. data/lib/tasks/install.rake +2 -9
  326. data/lib/tasks/upgrade.rake +69 -208
  327. data/spec/controllers/admin/clipboard_controller_spec.rb +33 -35
  328. data/spec/controllers/admin/contents_controller_spec.rb +5 -5
  329. data/spec/controllers/admin/elements_controller_spec.rb +22 -0
  330. data/spec/controllers/admin/trash_controller_spec.rb +5 -5
  331. data/spec/controllers/base_controller_spec.rb +67 -0
  332. data/spec/controllers/pages_controller_spec.rb +6 -6
  333. data/spec/dummy/config/application.rb +1 -8
  334. data/spec/dummy/config/routes.rb +2 -57
  335. data/spec/dummy/db/schema.rb +27 -27
  336. data/spec/factories.rb +8 -8
  337. data/spec/helpers/{alchemy_helper_spec.rb → admin/base_helper_spec.rb} +8 -1
  338. data/spec/helpers/admin/contents_helper_spec.rb +25 -0
  339. data/spec/helpers/admin/elements_helper_spec.rb +31 -3
  340. data/spec/helpers/admin/essences_helper_spec.rb +27 -0
  341. data/spec/helpers/elements_helper_spec.rb +99 -21
  342. data/spec/helpers/essences_helper_spec.rb +1 -18
  343. data/spec/helpers/pages_helper_spec.rb +212 -26
  344. data/spec/integration/admin/pages_controller_spec.rb +56 -0
  345. data/spec/integration/navigation_spec.rb +1 -1
  346. data/spec/integration/pages_controller_spec.rb +85 -68
  347. data/spec/integration/security_spec.rb +49 -22
  348. data/spec/models/content_spec.rb +3 -3
  349. data/spec/models/element_spec.rb +19 -11
  350. data/spec/models/essence_richtext_spec.rb +2 -2
  351. data/spec/models/language_spec.rb +36 -7
  352. data/spec/models/page_spec.rb +57 -13
  353. data/spec/models/user_spec.rb +1 -1
  354. data/spec/page_layout_spec.rb +13 -3
  355. data/spec/routing_spec.rb +12 -8
  356. data/spec/spec_helper.rb +8 -9
  357. data/spec/support/controller_hacks.rb +37 -0
  358. data/vendor/assets/javascripts/swfupload/SWFObject License.txt +4 -0
  359. data/vendor/assets/javascripts/swfupload/swfupload.cookies.js +53 -0
  360. data/vendor/assets/javascripts/swfupload/swfupload.js +1 -1
  361. data/vendor/assets/javascripts/swfupload/{queue.js → swfupload.queue.js} +97 -97
  362. data/vendor/assets/javascripts/swfupload/swfupload.speed.js +342 -0
  363. data/vendor/assets/javascripts/swfupload/swfupload.swfobject.js +111 -0
  364. data/vendor/assets/javascripts/tiny_mce/license.txt +504 -504
  365. data/vendor/assets/javascripts/tiny_mce/plugins/autoresize/editor_plugin.js +1 -1
  366. data/vendor/assets/javascripts/tiny_mce/plugins/fullscreen/fullscreen.htm +110 -110
  367. data/vendor/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif +0 -0
  368. data/vendor/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif +0 -0
  369. data/vendor/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif +0 -0
  370. data/vendor/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif +0 -0
  371. data/vendor/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif +0 -0
  372. data/vendor/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif +0 -0
  373. data/vendor/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif +0 -0
  374. data/vendor/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css +90 -0
  375. data/vendor/assets/javascripts/tiny_mce/plugins/inlinepopups/template.htm +387 -387
  376. data/vendor/assets/javascripts/tiny_mce/plugins/paste/js/pastetext.js +36 -36
  377. data/vendor/assets/javascripts/tiny_mce/plugins/paste/js/pasteword.js +51 -51
  378. data/vendor/assets/javascripts/tiny_mce/plugins/paste/pastetext.htm +26 -26
  379. data/vendor/assets/javascripts/tiny_mce/plugins/paste/pasteword.htm +21 -21
  380. data/vendor/assets/javascripts/tiny_mce/plugins/table/cell.htm +180 -180
  381. data/vendor/assets/javascripts/tiny_mce/plugins/table/css/cell.css +16 -16
  382. data/vendor/assets/javascripts/tiny_mce/plugins/table/css/row.css +25 -25
  383. data/vendor/assets/javascripts/tiny_mce/plugins/table/css/table.css +13 -13
  384. data/vendor/assets/javascripts/tiny_mce/plugins/table/editor_plugin.js +1 -1
  385. data/vendor/assets/javascripts/tiny_mce/plugins/table/js/cell.js +319 -319
  386. data/vendor/assets/javascripts/tiny_mce/plugins/table/js/merge_cells.js +27 -27
  387. data/vendor/assets/javascripts/tiny_mce/plugins/table/js/row.js +237 -237
  388. data/vendor/assets/javascripts/tiny_mce/plugins/table/js/table.js +484 -450
  389. data/vendor/assets/javascripts/tiny_mce/plugins/table/merge_cells.htm +32 -32
  390. data/vendor/assets/javascripts/tiny_mce/plugins/table/row.htm +158 -158
  391. data/vendor/assets/javascripts/tiny_mce/plugins/table/table.htm +188 -188
  392. data/vendor/assets/javascripts/tiny_mce/themes/advanced/about.htm +52 -52
  393. data/vendor/assets/javascripts/tiny_mce/themes/advanced/anchor.htm +26 -26
  394. data/vendor/assets/javascripts/tiny_mce/themes/advanced/charmap.htm +55 -51
  395. data/vendor/assets/javascripts/tiny_mce/themes/advanced/color_picker.htm +74 -74
  396. data/vendor/assets/javascripts/tiny_mce/themes/advanced/editor_template.js +1 -1
  397. data/vendor/assets/javascripts/tiny_mce/themes/advanced/image.htm +80 -80
  398. data/vendor/assets/javascripts/tiny_mce/themes/advanced/js/about.js +73 -73
  399. data/vendor/assets/javascripts/tiny_mce/themes/advanced/js/anchor.js +43 -43
  400. data/vendor/assets/javascripts/tiny_mce/themes/advanced/js/charmap.js +363 -355
  401. data/vendor/assets/javascripts/tiny_mce/themes/advanced/js/color_picker.js +329 -329
  402. data/vendor/assets/javascripts/tiny_mce/themes/advanced/js/image.js +251 -251
  403. data/vendor/assets/javascripts/tiny_mce/themes/advanced/js/link.js +153 -153
  404. data/vendor/assets/javascripts/tiny_mce/themes/advanced/js/source_editor.js +56 -56
  405. data/vendor/assets/javascripts/tiny_mce/themes/advanced/langs/en_dlg.js +1 -1
  406. data/vendor/assets/javascripts/tiny_mce/themes/advanced/link.htm +57 -57
  407. data/vendor/assets/javascripts/tiny_mce/themes/advanced/shortcuts.htm +47 -47
  408. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/default/content.css +50 -50
  409. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/default/dialog.css +117 -117
  410. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/default/ui.css +214 -214
  411. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/highcontrast/content.css +24 -0
  412. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/highcontrast/dialog.css +105 -0
  413. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/highcontrast/ui.css +102 -0
  414. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/content.css +48 -48
  415. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css +117 -117
  416. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui.css +217 -217
  417. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css +7 -7
  418. data/vendor/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css +5 -5
  419. data/vendor/assets/javascripts/tiny_mce/themes/advanced/source_editor.htm +25 -25
  420. data/vendor/assets/javascripts/tiny_mce/tiny_mce.js +1 -1
  421. data/vendor/assets/javascripts/tiny_mce/utils/editable_selects.js +70 -70
  422. data/vendor/assets/javascripts/tiny_mce/utils/form_utils.js +210 -210
  423. data/vendor/assets/javascripts/tiny_mce/utils/mctabs.js +161 -161
  424. data/vendor/assets/javascripts/tiny_mce/utils/validate.js +252 -252
  425. metadata +432 -465
  426. data/app/controllers/admin/attachments_controller.rb +0 -136
  427. data/app/controllers/admin/clipboard_controller.rb +0 -43
  428. data/app/controllers/admin/contents_controller.rb +0 -60
  429. data/app/controllers/admin/elements_controller.rb +0 -134
  430. data/app/controllers/admin/essence_audios_controller.rb +0 -10
  431. data/app/controllers/admin/essence_files_controller.rb +0 -25
  432. data/app/controllers/admin/essence_flashes_controller.rb +0 -10
  433. data/app/controllers/admin/essence_pictures_controller.rb +0 -84
  434. data/app/controllers/admin/essence_videos_controller.rb +0 -10
  435. data/app/controllers/admin/languages_controller.rb +0 -64
  436. data/app/controllers/admin/layoutpages_controller.rb +0 -12
  437. data/app/controllers/admin/pages_controller.rb +0 -251
  438. data/app/controllers/admin/pictures_controller.rb +0 -143
  439. data/app/controllers/admin/trash_controller.rb +0 -28
  440. data/app/controllers/admin/users_controller.rb +0 -73
  441. data/app/controllers/admin_controller.rb +0 -76
  442. data/app/controllers/alchemy_controller.rb +0 -245
  443. data/app/controllers/attachments_controller.rb +0 -28
  444. data/app/controllers/elements_controller.rb +0 -16
  445. data/app/controllers/messages_controller.rb +0 -113
  446. data/app/controllers/pages_controller.rb +0 -150
  447. data/app/controllers/pictures_controller.rb +0 -63
  448. data/app/helpers/admin/attachments_helper.rb +0 -7
  449. data/app/helpers/admin/elements_helper.rb +0 -112
  450. data/app/helpers/admin/pages_helper.rb +0 -38
  451. data/app/helpers/admin/pictures_helper.rb +0 -26
  452. data/app/helpers/alchemy_helper.rb +0 -379
  453. data/app/helpers/contents_helper.rb +0 -69
  454. data/app/helpers/elements_helper.rb +0 -170
  455. data/app/helpers/essences_helper.rb +0 -167
  456. data/app/helpers/layout_helper.rb +0 -37
  457. data/app/helpers/pages_helper.rb +0 -503
  458. data/app/mailers/messages.rb +0 -15
  459. data/app/mailers/notifications.rb +0 -23
  460. data/app/models/attachment.rb +0 -80
  461. data/app/models/cell.rb +0 -59
  462. data/app/models/content.rb +0 -145
  463. data/app/models/element.rb +0 -476
  464. data/app/models/essence_audio.rb +0 -17
  465. data/app/models/essence_date.rb +0 -20
  466. data/app/models/essence_file.rb +0 -17
  467. data/app/models/essence_flash.rb +0 -15
  468. data/app/models/essence_html.rb +0 -19
  469. data/app/models/essence_picture.rb +0 -27
  470. data/app/models/essence_richtext.rb +0 -61
  471. data/app/models/essence_text.rb +0 -38
  472. data/app/models/essence_video.rb +0 -17
  473. data/app/models/folded_page.rb +0 -3
  474. data/app/models/language.rb +0 -83
  475. data/app/models/message.rb +0 -69
  476. data/app/models/page.rb +0 -545
  477. data/app/models/picture.rb +0 -98
  478. data/app/models/user.rb +0 -70
  479. data/app/models/user_session.rb +0 -10
  480. data/app/sweepers/content_sweeper.rb +0 -20
  481. data/app/sweepers/pages_sweeper.rb +0 -47
  482. data/app/sweepers/pictures_sweeper.rb +0 -21
  483. data/app/views/_contact.html.erb +0 -3
  484. data/app/views/_intro.html.erb +0 -3
  485. data/app/views/_news.html.erb +0 -3
  486. data/app/views/_search.html.erb +0 -3
  487. data/app/views/_standard.html.erb +0 -1
  488. data/app/views/admin/attachments/_files_list.html.erb +0 -24
  489. data/app/views/admin/attachments/index.html.erb +0 -30
  490. data/app/views/admin/clipboard/index.html.erb +0 -19
  491. data/app/views/admin/clipboard/insert.js.erb +0 -14
  492. data/app/views/admin/clipboard/remove.js.erb +0 -10
  493. data/app/views/admin/elements/_new_element_form.html.erb +0 -25
  494. data/app/views/admin/elements/new.html.erb +0 -33
  495. data/app/views/admin/index.html.erb +0 -102
  496. data/app/views/admin/infos.html.erb +0 -5
  497. data/app/views/admin/languages/_form.html.erb +0 -34
  498. data/app/views/admin/languages/_language.html.erb +0 -35
  499. data/app/views/admin/languages/destroy.js.erb +0 -1
  500. data/app/views/admin/languages/index.html.erb +0 -41
  501. data/app/views/admin/layoutpages/index.html.erb +0 -75
  502. data/app/views/admin/leave.html.erb +0 -11
  503. data/app/views/admin/login.html.erb +0 -46
  504. data/app/views/admin/logout.html.erb +0 -5
  505. data/app/views/admin/pages/_create_language_form.html.erb +0 -43
  506. data/app/views/admin/pages/configure.html.erb +0 -71
  507. data/app/views/admin/pages/edit.html.erb +0 -185
  508. data/app/views/admin/pages/flush.js.erb +0 -2
  509. data/app/views/admin/pages/index.html.erb +0 -108
  510. data/app/views/admin/pages/locked.html.erb +0 -3
  511. data/app/views/admin/partials/_mainnavigation_entry.html.erb +0 -27
  512. data/app/views/admin/partials/_pagination_links.html.erb +0 -5
  513. data/app/views/admin/partials/_per_page_links.html.erb +0 -17
  514. data/app/views/admin/partials/_sub_navigation.html.erb +0 -14
  515. data/app/views/admin/partials/_upload_form.html.erb +0 -119
  516. data/app/views/admin/pictures/_pictures_list.html.erb +0 -12
  517. data/app/views/admin/pictures/index.html.erb +0 -89
  518. data/app/views/admin/pictures/show_in_window.html.erb +0 -1
  519. data/app/views/admin/signup.html.erb +0 -16
  520. data/app/views/admin/users/_table.html.erb +0 -54
  521. data/app/views/admin/users/index.html.erb +0 -41
  522. data/app/views/alchemy/error_notice.js.erb +0 -1
  523. data/app/views/alchemy/permission_denied.js.erb +0 -2
  524. data/app/views/elements/_searchresult_editor.html.erb +0 -1
  525. data/app/views/elements/_searchresult_view.html.erb +0 -49
  526. data/app/views/elements/_sitemap_editor.html.erb +0 -3
  527. data/app/views/elements/show.html.erb +0 -6
  528. data/app/views/essences/_essence_audio_editor.html.erb +0 -1
  529. data/app/views/essences/_essence_flash_editor.html.erb +0 -1
  530. data/app/views/essences/_essence_richtext_editor.html.erb +0 -9
  531. data/app/views/essences/_essence_video_editor.html.erb +0 -1
  532. data/app/views/layouts/login.html.erb +0 -59
  533. data/app/views/layouts/pages.html.erb +0 -29
  534. data/app/views/notifications/admin_user_created.text.erb +0 -13
  535. data/app/views/notifications/registered_user_created.text.erb +0 -10
  536. data/app/views/page_layouts/_newsletter_layout.html.erb +0 -1
  537. data/config/initializers/authorization.rb +0 -4
  538. data/config/initializers/fast_gettext.rb +0 -3
  539. data/config/locales/de.yml +0 -377
  540. data/config/locales/en.yml +0 -371
  541. data/lib/alchemy/controller.rb +0 -79
  542. data/lib/rails/generators/alchemy/plugin/templates/gettext.rb +0 -2
  543. data/lib/tasks/gettext.rake +0 -120
  544. data/lib/translation_extras/alchemy_core_modules.rb +0 -11
  545. data/locale/alchemy.pot +0 -1749
  546. data/locale/de/alchemy.po +0 -1795
  547. data/locale/en/alchemy.po +0 -1745
  548. data/locale/missing_translations.rb +0 -4
  549. data/locale/model_attributes.rb +0 -56
  550. data/spec/helpers/contents_helper_spec.rb +0 -27
  551. data/vendor/assets/javascripts/jquery-1.6.2.min.js +0 -18
  552. data/vendor/assets/javascripts/jquery-ui-custom-1.8.16.min.js +0 -550
  553. data/vendor/assets/javascripts/swfupload/fileprogress.js +0 -203
  554. data/vendor/assets/javascripts/swfupload/handlers.js +0 -171
  555. data/vendor/assets/javascripts/tiny_mce/jquery.tinymce.js +0 -1
@@ -1,79 +0,0 @@
1
- module Alchemy
2
- module Controller
3
-
4
- attr_accessor :alchemy_plugins_settings
5
-
6
- def self.included(base) # :nodoc:
7
- base.extend(ClassMethods)
8
- base.send :include, InstanceMethods
9
- base.send :helper_method, :plugin_conf, :alchemy_plugins_settings, :alchemy_plugins, :alchemy_plugin
10
- end
11
-
12
- def initialize
13
- super
14
- self.alchemy_plugins_settings = {}
15
- plugins_config_paths.each do |settings_file|
16
- settings = YAML.load_file(settings_file)
17
- self.alchemy_plugins_settings[settings["name"]] = settings
18
- end
19
- end
20
-
21
- module ClassMethods
22
-
23
- def belongs_to_alchemy_plugin(plugin_name)
24
- send :layout, "admin"
25
- end
26
-
27
- end
28
-
29
- module InstanceMethods
30
-
31
- def plugin_conf(plugin_name)
32
- alchemy_plugins_settings[plugin_name]["settings"]
33
- end
34
-
35
- # returns an array with all alchemy plugins including the alchemy core as first entry.
36
- # For your own plugin see config.yml in vendor/plugins/alchemy/config/alchemy folder
37
- def alchemy_plugins
38
- yml_paths = plugins_config_paths
39
- plugins = Alchemy::Config.get("alchemy_plugins")
40
- begin
41
- yml_paths = yml_paths.sort(){ |x, y| YAML.load_file(x)['order'] <=> YAML.load_file(y)['order'] }
42
- rescue Exception => e
43
- Rails.logger.error(%(
44
- ++++++
45
- #{e}
46
- No order value in one of your plugins. Please check plugin config!
47
- ++++++
48
- ))
49
- end
50
- yml_paths.map { |y| plugins << YAML.load_file(y) }
51
- plugins
52
- end
53
-
54
- # returns the alchemy plugin found by name, or by hash of controller and action
55
- def alchemy_plugin(name)
56
- if name.is_a? String
57
- alchemy_plugins.detect{ |p| p["name"] == name }
58
- elsif name.is_a? Hash
59
- alchemy_plugins.detect do |p|
60
- if !p["navigation"]["sub_navigation"].nil?
61
- p["navigation"]["sub_navigation"].detect do |s|
62
- s["controller"] == name[:controller] && s["action"] == name[:action]
63
- end
64
- end
65
- end
66
- end
67
- end
68
-
69
- private
70
-
71
- def plugins_config_paths
72
- Dir.glob("vendor/plugins/*[^alchemy]/config/alchemy/config.yml")
73
- end
74
-
75
- end
76
-
77
- end
78
- end
79
- ActionController::Base.send(:include, Alchemy::Controller) if defined?(ActionController)
@@ -1,2 +0,0 @@
1
- require 'fast_gettext'
2
- FastGettext.add_text_domain '<%= @plugin_name %>', :path => File.join(File.dirname(__FILE__), '..', '..', 'locale'), :format => :po
@@ -1,120 +0,0 @@
1
- namespace :gettext do
2
- def load_gettext
3
- require 'gettext'
4
- require 'gettext/utils'
5
- end
6
-
7
- desc "Create mo-files for L10n"
8
- task :pack => :environment do
9
- load_gettext
10
- GetText.create_mofiles(true, locale_path, locale_path)
11
- end
12
-
13
- desc "Update pot/po files."
14
- task :find => :environment do
15
- load_gettext
16
- $LOAD_PATH << File.join(File.dirname(__FILE__),'..','..','lib')
17
- require 'gettext_i18n_rails/haml_parser'
18
-
19
-
20
- if GetText.respond_to? :update_pofiles_org
21
- GetText.update_pofiles_org(
22
- text_domain,
23
- files_to_translate,
24
- "version 0.0.1",
25
- :po_root => locale_path,
26
- :msgmerge=>['--sort-output']
27
- )
28
- else #we are on a version < 2.0
29
- puts "install new GetText with gettext:install to gain more features..."
30
- #kill ar parser...
31
- require 'gettext/parser/active_record'
32
- module GetText
33
- module ActiveRecordParser
34
- module_function
35
- def init(x);end
36
- end
37
- end
38
-
39
- #parse files.. (models are simply parsed as ruby files)
40
- GetText.update_pofiles(
41
- text_domain,
42
- files_to_translate,
43
- "version 0.0.1",
44
- locale_path
45
- )
46
- end
47
- end
48
-
49
- # This is more of an example, ignoring
50
- # the columns/tables that mostly do not need translation.
51
- # This can also be done with GetText::ActiveRecord
52
- # but this crashed too often for me, and
53
- # IMO which column should/should-not be translated does not
54
- # belong into the model
55
- #
56
- # You can get your translations from GetText::ActiveRecord
57
- # by adding this to you gettext:find task
58
- #
59
- # require 'active_record'
60
- # gem "gettext_activerecord", '>=0.1.0' #download and install from github
61
- # require 'gettext_activerecord/parser'
62
- desc "write the model attributes to <locale_path>/model_attributes.rb"
63
- task :store_model_attributes => :environment do
64
- FastGettext.silence_errors
65
-
66
- require 'gettext_i18n_rails/model_attributes_finder'
67
- require 'gettext_i18n_rails/active_record'
68
-
69
- storage_file = "#{locale_path}/model_attributes.rb"
70
- puts "writing model translations to: #{storage_file}"
71
-
72
- ignore_tables = [/^sitemap_/, /_versions$/, 'schema_migrations', 'sessions', 'delayed_jobs']
73
- GettextI18nRails.store_model_attributes(
74
- :to => storage_file,
75
- :ignore_columns => [/_id$/, 'id', 'type', 'created_at', 'updated_at'],
76
- :ignore_tables => ignore_tables
77
- )
78
- end
79
-
80
- desc "add a new language"
81
- task :add_language, [:language] => :environment do |_, args|
82
- language = args.language || ENV["LANGUAGE"]
83
-
84
- # Let's do some pre-verification of the environment.
85
- if language.nil?
86
- puts "You need to specify the language to add. Either 'LANGUAGE=eo rake gettext:add_languange' or 'rake gettext:add_languange[eo]'"
87
- next
88
- end
89
- pot = File.join(locale_path, "#{text_domain}.pot")
90
- if !File.exists? pot
91
- puts "You don't have a pot file yet, you probably should run 'rake gettext:find' at least once. Tried '#{pot}'."
92
- next
93
- end
94
-
95
- # Create the directory for the new language.
96
- dir = File.join(locale_path, language)
97
- puts "Creating directory #{dir}"
98
- Dir.mkdir dir
99
-
100
- # Create the po file for the new language.
101
- new_po = File.join(locale_path, language, "#{text_domain}.po")
102
- puts "Initializing #{new_po} from #{pot}."
103
- system "msginit --locale=#{language} --input=#{pot} --output=#{new_po}"
104
- end
105
-
106
- def locale_path
107
- FastGettext.translation_repositories[text_domain].instance_variable_get(:@options)[:path]
108
- rescue
109
- File.join(RAILS_ROOT, "locale")
110
- end
111
-
112
- def text_domain
113
- # if your textdomain is not 'app': require the environment before calling e.g. gettext:find OR add TEXTDOMAIN=my_domain
114
- ENV['TEXTDOMAIN'] || (FastGettext.text_domain rescue nil) || "app"
115
- end
116
-
117
- def files_to_translate
118
- Dir.glob("{app,lib,config,#{locale_path}}/**/*.{rb,erb,haml}")
119
- end
120
- end
@@ -1,11 +0,0 @@
1
- # We use this file so that gettext can find them for translate the core alchemy modules
2
- _('module: dashboard')
3
- _('module: pages')
4
- _('module: layoutpages')
5
- _('module: users')
6
- _('module: library')
7
- _('module: attachments')
8
- _('module: pictures')
9
- _('module: languages')
10
- _('logout')
11
- _('home')
data/locale/alchemy.pot DELETED
@@ -1,1749 +0,0 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
- #, fuzzy
7
- msgid ""
8
- msgstr ""
9
- "Project-Id-Version: version 2.0\n"
10
- "POT-Creation-Date: 2011-07-12 20:35+0200\n"
11
- "PO-Revision-Date: 2010-03-19 18:25+0100\n"
12
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
- "MIME-Version: 1.0\n"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
17
-
18
- #: app/views/admin/pages/_create_language_form.html.erb:36
19
- msgid "%{language}_as_new_language"
20
- msgstr ""
21
-
22
- #: app/views/admin/partials/_upload_form.html.erb:27
23
- msgid ""
24
- "<a href=\"http://get.adobe.com/flashplayer\" target=\"_blank\">%{value}</a>"
25
- msgstr ""
26
-
27
- #: app/views/admin/pages/index.html.erb:5
28
- #: app/views/admin/pages/layoutpages.html.erb:5
29
- msgid "Active Pages"
30
- msgstr ""
31
-
32
- #: app/views/admin/pages/layoutpages.html.erb:46
33
- #: app/views/admin/pages/layoutpages.html.erb:51
34
- #: app/views/admin/pages/layoutpages.html.erb:53
35
- msgid "Add global page"
36
- msgstr ""
37
-
38
- #: app/views/admin/partials/_upload_form.html.erb:27
39
- msgid "Adobe Website"
40
- msgstr ""
41
-
42
- #: app/views/admin/index.html.erb:65
43
- msgid ""
44
- "Alchemy is open software and itself uses open software and free resources:"
45
- msgstr ""
46
-
47
- #: locale/model_attributes.rb:1
48
- msgid "Attachment"
49
- msgstr ""
50
-
51
- #: locale/model_attributes.rb:6
52
- msgid "Attachment|Content type"
53
- msgstr ""
54
-
55
- #: locale/model_attributes.rb:4
56
- msgid "Attachment|Created at"
57
- msgstr ""
58
-
59
- #: locale/model_attributes.rb:3
60
- msgid "Attachment|Filename"
61
- msgstr ""
62
-
63
- #: locale/model_attributes.rb:2
64
- msgid "Attachment|Name"
65
- msgstr ""
66
-
67
- #: locale/model_attributes.rb:5
68
- msgid "Attachment|Size"
69
- msgstr ""
70
-
71
- #: app/helpers/alchemy_helper.rb:871 app/helpers/alchemy_helper.rb:926
72
- msgid "Choose page"
73
- msgstr ""
74
-
75
- #: app/controllers/admin/trash_controller.rb:15
76
- msgid "Cleared trash"
77
- msgstr ""
78
-
79
- #: app/views/admin/pictures/_picture.html.erb:35
80
- msgid "Click to rename"
81
- msgstr ""
82
-
83
- #: app/views/admin/pages/edit.html.erb:143
84
- #: app/views/admin/pages/edit.html.erb:150
85
- #: app/views/admin/pages/index.html.erb:71
86
- #: app/views/admin/pages/layoutpages.html.erb:61
87
- msgid "Clipboard"
88
- msgstr ""
89
-
90
- #: app/controllers/admin/pages_controller.rb:41 app/models/page.rb:396
91
- msgid "Copy"
92
- msgstr ""
93
-
94
- #: app/views/admin/partials/_upload_form.html.erb:24
95
- msgid "Could not load Adobe Flash® Plugin!"
96
- msgstr ""
97
-
98
- #: app/views/admin/index.html.erb:25
99
- msgid "Currently locked pages"
100
- msgstr ""
101
-
102
- #: app/models/language.rb:35
103
- msgid "Defaut language has to be public"
104
- msgstr ""
105
-
106
- #: app/views/admin/pictures/_picture.html.erb:14
107
- msgid "Delete image"
108
- msgstr ""
109
-
110
- #: app/views/admin/clipboard/index.html.erb:15
111
- msgid "Do you really want to clear the clipboard?"
112
- msgstr ""
113
-
114
- #: app/views/admin/trash/index.html.erb:16
115
- msgid "Do you really want to clear the trash?"
116
- msgstr ""
117
-
118
- #: app/views/essences/_essence_text_editor.html.erb:50
119
- msgid "Do you really want to delete this content?"
120
- msgstr ""
121
-
122
- #: app/views/admin/trash/index.html.erb:9
123
- msgid "Drag an element over to the element window to restore it."
124
- msgstr ""
125
-
126
- #: app/views/essences/_essence_picture_tools.html.erb:6
127
- #: app/views/essences/_essence_picture_tools.html.erb:10
128
- msgid "Edit Picturemask"
129
- msgstr ""
130
-
131
- #: app/views/admin/elements/new.html.erb:18 locale/model_attributes.rb:14
132
- msgid "Element"
133
- msgstr ""
134
-
135
- #: app/views/admin/elements/trash.rjs:2
136
- msgid "Element trashed"
137
- msgstr ""
138
-
139
- #: app/views/admin/pages/edit.html.erb:119
140
- msgid "Elements"
141
- msgstr ""
142
-
143
- #: locale/model_attributes.rb:16
144
- msgid "Element|Display name"
145
- msgstr ""
146
-
147
- #: locale/model_attributes.rb:15
148
- msgid "Element|Name"
149
- msgstr ""
150
-
151
- #: locale/model_attributes.rb:17
152
- msgid "Element|Public"
153
- msgstr ""
154
-
155
- #: app/views/admin/partials/_upload_form.html.erb:32
156
- msgid "Error with the Flash® Uploader!"
157
- msgstr ""
158
-
159
- #: app/views/elements/_searchresult_view.html.erb:22
160
- msgid "Excerpt"
161
- msgstr ""
162
-
163
- #: app/views/admin/pages/index.html.erb:93
164
- msgid "Explain|Sitemap|Dragndrop sorting"
165
- msgstr ""
166
-
167
- #: app/controllers/admin/attachments_controller.rb:54
168
- msgid "File %{name} uploaded succesfully"
169
- msgstr ""
170
-
171
- #: app/controllers/admin/attachments_controller.rb:78
172
- msgid "File renamed successfully from: '%{from}' to '%{to}'"
173
- msgstr ""
174
-
175
- #: app/controllers/admin/attachments_controller.rb:62
176
- msgid "File upload error: %{error}"
177
- msgstr ""
178
-
179
- #: app/controllers/admin/attachments_controller.rb:94
180
- msgid "File: '%{name}' deleted successfully"
181
- msgstr ""
182
-
183
- #: app/views/admin/pages/index.html.erb:47
184
- #: app/views/admin/pages/index.html.erb:49
185
- msgid "Flush page cache"
186
- msgstr ""
187
-
188
- #: app/views/admin/pictures/index.html.erb:28
189
- #: app/views/admin/pictures/index.html.erb:30
190
- msgid "Flush picture cache"
191
- msgstr ""
192
-
193
- #: app/views/mailer/new_alchemy_user_mail.erb:13
194
- msgid "Have much fun with Alchemy!"
195
- msgstr ""
196
-
197
- #: app/helpers/alchemy_helper.rb:704
198
- msgid "Hide childpages"
199
- msgstr ""
200
-
201
- #: app/views/admin/partials/_upload_form.html.erb:20
202
- msgid ""
203
- "If you have any problems using the Flash® uploader you can switch to the "
204
- "%{link}"
205
- msgstr ""
206
-
207
- #: app/views/essences/_essence_picture_editor.html.erb:23
208
- msgid "Image missing"
209
- msgstr ""
210
-
211
- #: app/controllers/admin/pictures_controller.rb:114
212
- msgid "Image renamed successfully from: '%{from}' to '%{to}'"
213
- msgstr ""
214
-
215
- #: app/views/admin/pictures/_filter_and_size_bar.html.erb:54
216
- msgid "Image size"
217
- msgstr ""
218
-
219
- #: app/views/admin/essence_pictures/update.rjs:2
220
- msgid "Image updated successfully"
221
- msgstr ""
222
-
223
- #: app/controllers/admin/pictures_controller.rb:125
224
- msgid "Image: '%{name}' deleted successfully"
225
- msgstr ""
226
-
227
- #: app/controllers/admin/elements_controller.rb:100
228
- msgid "Index Error after saving Element. Please try again!"
229
- msgstr ""
230
-
231
- #: locale/model_attributes.rb:50
232
- msgid "Language"
233
- msgstr ""
234
-
235
- #: app/controllers/admin/languages_controller.rb:37
236
- msgid "Language '%{name}' created"
237
- msgstr ""
238
-
239
- #: app/controllers/admin/languages_controller.rb:56
240
- msgid "Language '%{name}' destroyed"
241
- msgstr ""
242
-
243
- #: app/controllers/admin/languages_controller.rb:47
244
- msgid "Language '%{name}' updated"
245
- msgstr ""
246
-
247
- #: app/views/admin/pages/index.html.erb:37
248
- #: app/views/admin/pages/layoutpages.html.erb:38
249
- msgid "Language tree"
250
- msgstr ""
251
-
252
- #: locale/model_attributes.rb:52
253
- msgid "Language|Code"
254
- msgstr ""
255
-
256
- #: locale/model_attributes.rb:56
257
- msgid "Language|Default"
258
- msgstr ""
259
-
260
- #: locale/model_attributes.rb:53
261
- msgid "Language|Frontpage name"
262
- msgstr ""
263
-
264
- #: locale/model_attributes.rb:51
265
- msgid "Language|Name"
266
- msgstr ""
267
-
268
- #: locale/model_attributes.rb:54
269
- msgid "Language|Page layout"
270
- msgstr ""
271
-
272
- #: locale/model_attributes.rb:55
273
- msgid "Language|Public"
274
- msgstr ""
275
-
276
- #: app/views/admin/essence_pictures/edit.html.erb:32
277
- #: app/views/admin/essence_pictures/edit.html.erb:49
278
- msgid "Layout default"
279
- msgstr ""
280
-
281
- #: app/views/layouts/alchemy.html.erb:53
282
- msgid "Logged in as"
283
- msgstr ""
284
-
285
- #: app/views/admin/elements/_element.html.erb:16
286
- msgid "Mandatory"
287
- msgstr ""
288
-
289
- #: app/views/admin/pages/index.html.erb:86
290
- #: app/views/admin/pages/new.html.erb:27
291
- msgid "Name"
292
- msgstr ""
293
-
294
- #: app/views/admin/elements/new.html.erb:6
295
- msgid "New"
296
- msgstr ""
297
-
298
- #: app/views/admin/pages/edit.html.erb:127
299
- #: app/views/admin/pages/edit.html.erb:128
300
- #: app/views/admin/pages/edit.html.erb:133
301
- msgid "New Element"
302
- msgstr ""
303
-
304
- #: app/views/admin/pages/new.html.erb:6
305
- msgid "New page"
306
- msgstr ""
307
-
308
- #: app/views/admin/pages/edit.html.erb:123
309
- #: app/views/admin/pages/edit.html.erb:181
310
- msgid "No"
311
- msgstr ""
312
-
313
- #: app/helpers/alchemy_helper.rb:222
314
- msgid "No EssenceType given"
315
- msgstr ""
316
-
317
- #: app/views/admin/clipboard/index.html.erb:3
318
- msgid "No items in your clipboard"
319
- msgstr ""
320
-
321
- #: app/views/admin/essence_pictures/edit.html.erb:57
322
- msgid "None"
323
- msgstr ""
324
-
325
- #: app/views/admin/pages/_external_link.html.erb:32
326
- #: app/views/admin/pages/_file_link.html.erb:30
327
- #: app/views/admin/pages/_internal_link.html.erb:23
328
- msgid "Open Link in"
329
- msgstr ""
330
-
331
- #: app/views/admin/pages/new.html.erb:19
332
- #: app/views/elements/_searchresult_view.html.erb:30
333
- #: locale/model_attributes.rb:19
334
- msgid "Page"
335
- msgstr ""
336
-
337
- #: app/controllers/admin/pages_controller.rb:99
338
- msgid "Page %{name} deleted"
339
- msgstr ""
340
-
341
- #: app/controllers/admin/pages_controller.rb:84
342
- msgid "Page %{name} saved"
343
- msgstr ""
344
-
345
- #: app/views/admin/pages/edit.html.erb:113
346
- msgid "Page Preview"
347
- msgstr ""
348
-
349
- #: app/controllers/admin/pages_controller.rb:258
350
- msgid "Page cache flushed"
351
- msgstr ""
352
-
353
- #: app/views/admin/pages/_page_for_links.html.erb:23
354
- #: app/views/admin/pages/_page_infos.html.erb:1
355
- #: app/views/admin/pages/_page_status.html.erb:6
356
- msgid "Page not public"
357
- msgstr ""
358
-
359
- #: app/views/admin/pages/_page_for_links.html.erb:25
360
- #: app/views/admin/pages/_page_infos.html.erb:3
361
- #: app/views/admin/pages/_page_status.html.erb:8
362
- msgid "Page not restricted"
363
- msgstr ""
364
-
365
- #: app/views/admin/pages/_page_for_links.html.erb:24
366
- #: app/views/admin/pages/_page_infos.html.erb:2
367
- #: app/views/admin/pages/_page_status.html.erb:7
368
- msgid "Page not visible"
369
- msgstr ""
370
-
371
- #: app/views/admin/pages/_page_for_links.html.erb:23
372
- #: app/views/admin/pages/_page_infos.html.erb:1
373
- #: app/views/admin/pages/_page_status.html.erb:6
374
- msgid "Page public"
375
- msgstr ""
376
-
377
- #: app/views/admin/pages/_page_for_links.html.erb:25
378
- #: app/views/admin/pages/_page_infos.html.erb:3
379
- #: app/views/admin/pages/_page_status.html.erb:8
380
- msgid "Page restricted"
381
- msgstr ""
382
-
383
- #: app/views/admin/pages/_page_for_links.html.erb:24
384
- #: app/views/admin/pages/_page_infos.html.erb:2
385
- #: app/views/admin/pages/_page_status.html.erb:7
386
- msgid "Page visible"
387
- msgstr ""
388
-
389
- #: app/controllers/admin/pages_controller.rb:231
390
- msgid "Pages order saved"
391
- msgstr ""
392
-
393
- #: locale/model_attributes.rb:35
394
- msgid "Page|Created at"
395
- msgstr ""
396
-
397
- #: locale/model_attributes.rb:32
398
- msgid "Page|Language"
399
- msgstr ""
400
-
401
- #: locale/model_attributes.rb:29
402
- msgid "Page|Locked"
403
- msgstr ""
404
-
405
- #: locale/model_attributes.rb:30
406
- msgid "Page|Locked by"
407
- msgstr ""
408
-
409
- #: locale/model_attributes.rb:24
410
- msgid "Page|Meta description"
411
- msgstr ""
412
-
413
- #: locale/model_attributes.rb:25
414
- msgid "Page|Meta keywords"
415
- msgstr ""
416
-
417
- #: app/views/admin/pages/_new_page_form.html.erb:16
418
- #: locale/model_attributes.rb:20
419
- msgid "Page|Name"
420
- msgstr ""
421
-
422
- #: app/views/admin/pages/_new_page_form.html.erb:8
423
- #: locale/model_attributes.rb:23
424
- msgid "Page|Page layout"
425
- msgstr ""
426
-
427
- #: locale/model_attributes.rb:27
428
- msgid "Page|Public"
429
- msgstr ""
430
-
431
- #: locale/model_attributes.rb:26
432
- msgid "Page|Resctricted"
433
- msgstr ""
434
-
435
- #: locale/model_attributes.rb:34
436
- msgid "Page|Robot follow"
437
- msgstr ""
438
-
439
- #: locale/model_attributes.rb:33
440
- msgid "Page|Robot index"
441
- msgstr ""
442
-
443
- #: locale/model_attributes.rb:31
444
- msgid "Page|Sitemap"
445
- msgstr ""
446
-
447
- #: locale/model_attributes.rb:22
448
- msgid "Page|Title"
449
- msgstr ""
450
-
451
- #: locale/model_attributes.rb:36
452
- msgid "Page|Updated at"
453
- msgstr ""
454
-
455
- #: locale/model_attributes.rb:21
456
- msgid "Page|Urlname"
457
- msgstr ""
458
-
459
- #: locale/model_attributes.rb:28
460
- msgid "Page|Visible"
461
- msgstr ""
462
-
463
- #: app/views/mailer/new_alchemy_user_mail.erb:10
464
- msgid "Password"
465
- msgstr ""
466
-
467
- #: app/views/admin/elements/new.html.erb:7
468
- #: app/views/admin/pages/new.html.erb:7
469
- msgid "Paste from clipboard"
470
- msgstr ""
471
-
472
- #: locale/model_attributes.rb:8
473
- msgid "Picture"
474
- msgstr ""
475
-
476
- #: app/controllers/admin/pictures_controller.rb:71
477
- msgid "Picture %{name} uploaded succesfully"
478
- msgstr ""
479
-
480
- #: app/controllers/admin/pictures_controller.rb:137
481
- msgid "Picture cache flushed"
482
- msgstr ""
483
-
484
- #: locale/model_attributes.rb:10
485
- msgid "Picture|Image filename"
486
- msgstr ""
487
-
488
- #: locale/model_attributes.rb:12
489
- msgid "Picture|Image height"
490
- msgstr ""
491
-
492
- #: locale/model_attributes.rb:11
493
- msgid "Picture|Image width"
494
- msgstr ""
495
-
496
- #: locale/model_attributes.rb:9
497
- msgid "Picture|Name"
498
- msgstr ""
499
-
500
- #: app/views/admin/signup.html.erb:7
501
- msgid "Please Signup"
502
- msgstr ""
503
-
504
- #: locale/missing_translations.rb:4
505
- msgid "Please check contents below."
506
- msgstr ""
507
-
508
- #: app/helpers/alchemy_helper.rb:798 app/helpers/alchemy_helper.rb:904
509
- #: app/views/admin/users/_table.html.erb:4 lib/alchemy/page_layout.rb:39
510
- msgid "Please choose"
511
- msgstr ""
512
-
513
- #: app/models/page.rb:13
514
- msgid "Please choose a page layout."
515
- msgstr ""
516
-
517
- #: app/models/element.rb:13
518
- msgid "Please choose an element."
519
- msgstr ""
520
-
521
- #: app/views/admin/partials/_upload_form.html.erb:25
522
- msgid "Please consider that you have at least version 9.0.28 installed."
523
- msgstr ""
524
-
525
- #: app/controllers/alchemy_controller.rb:183
526
- msgid "Please log in"
527
- msgstr ""
528
-
529
- #: app/views/admin/partials/_upload_form.html.erb:34
530
- msgid "Please use this alternative uploader instead."
531
- msgstr ""
532
-
533
- #: app/views/admin/pages/edit.html.erb:78
534
- msgid "Publish page"
535
- msgstr ""
536
-
537
- #: app/views/admin/index.html.erb:88
538
- msgid "Read the License"
539
- msgstr ""
540
-
541
- #: app/views/admin/pages/_page.html.erb:94
542
- #: app/views/admin/pages/_sitemap.html.erb:82
543
- msgid "Redirects to"
544
- msgstr ""
545
-
546
- #: app/views/admin/clipboard/index.html.erb:10
547
- msgid "Remove item from clipboard"
548
- msgstr ""
549
-
550
- #: app/views/essences/_essence_text_editor.html.erb:53
551
- msgid "Remove this content"
552
- msgstr ""
553
-
554
- #: app/views/admin/essence_pictures/crop.html.erb:14
555
- #: app/views/admin/essence_pictures/crop.html.erb:16
556
- msgid "Reset Imagemask"
557
- msgstr ""
558
-
559
- #: app/helpers/alchemy_helper.rb:1120
560
- msgid "Select an content"
561
- msgstr ""
562
-
563
- #: app/views/admin/essence_pictures/edit.html.erb:55
564
- msgid "Select style"
565
- msgstr ""
566
-
567
- #: app/views/admin/users/_table.html.erb:42
568
- msgid "Send email with credentials"
569
- msgstr ""
570
-
571
- #: app/views/admin/pages/edit.html.erb:100
572
- #: app/views/admin/pages/edit.html.erb:104
573
- msgid "Show Elements Window"
574
- msgstr ""
575
-
576
- #: app/views/admin/pages/edit.html.erb:89
577
- #: app/views/admin/pages/edit.html.erb:93
578
- msgid "Show Preview Window"
579
- msgstr ""
580
-
581
- #: app/helpers/alchemy_helper.rb:701
582
- msgid "Show childpages"
583
- msgstr ""
584
-
585
- #: app/views/admin/pages/edit.html.erb:144
586
- #: app/views/admin/pages/index.html.erb:75
587
- #: app/views/admin/pages/index.html.erb:77
588
- #: app/views/admin/pages/layoutpages.html.erb:65
589
- #: app/views/admin/pages/layoutpages.html.erb:67
590
- msgid "Show clipboard"
591
- msgstr ""
592
-
593
- #: app/views/admin/pages/edit.html.erb:160
594
- #: app/views/admin/pages/edit.html.erb:161
595
- msgid "Show trash"
596
- msgstr ""
597
-
598
- #: app/views/admin/essence_pictures/edit.html.erb:27
599
- msgid "Size"
600
- msgstr ""
601
-
602
- #: app/views/admin/pages/index.html.erb:61
603
- #: app/views/admin/pages/index.html.erb:63
604
- msgid "Sort pages"
605
- msgstr ""
606
-
607
- #: app/views/admin/pages/index.html.erb:87
608
- msgid "Status"
609
- msgstr ""
610
-
611
- #: app/views/admin/contents/create.rjs:73
612
- msgid "Successfully added %{content}"
613
- msgstr ""
614
-
615
- #: app/controllers/admin/contents_controller.rb:63
616
- msgid "Successfully deleted %{content}"
617
- msgstr ""
618
-
619
- #: app/controllers/admin/contents_controller.rb:49
620
- msgid "Successfully saved content position"
621
- msgstr ""
622
-
623
- #: app/views/admin/partials/_upload_form.html.erb:46
624
- msgid "Switch to Flash® Uploader"
625
- msgstr ""
626
-
627
- #: app/views/elements/_sitemap_editor.html.erb:2
628
- msgid "The sitemap is autogenerated."
629
- msgstr ""
630
-
631
- #: app/views/elements/_searchresult_editor.html.erb:1
632
- msgid "This element displays the search and the searchresults."
633
- msgstr ""
634
-
635
- #: locale/missing_translations.rb:2
636
- msgid "This element has unsaved changes. Do you really want to fold it?"
637
- msgstr ""
638
-
639
- #: app/controllers/admin/pages_controller.rb:63
640
- msgid "This page is locked by %{name}"
641
- msgstr ""
642
-
643
- #: app/views/admin/pages/_internal_link.html.erb:15
644
- msgid "Title"
645
- msgstr ""
646
-
647
- #: app/views/mailer/new_alchemy_user_mail.erb:3
648
- msgid "To manage your website open a browser and go to"
649
- msgstr ""
650
-
651
- #: app/views/admin/pages/edit.html.erb:165 locale/missing_translations.rb:3
652
- msgid "Trash"
653
- msgstr ""
654
-
655
- #: app/views/admin/pages/configure_external.html.erb:29
656
- msgid "URL"
657
- msgstr ""
658
-
659
- #: app/models/page.rb:15
660
- msgid "URL-Name already token"
661
- msgstr ""
662
-
663
- #: locale/model_attributes.rb:38
664
- msgid "User"
665
- msgstr ""
666
-
667
- #: app/controllers/admin/users_controller.rb:42
668
- msgid "User: '%{name}' created"
669
- msgstr ""
670
-
671
- #: app/controllers/admin/users_controller.rb:70
672
- msgid "User: '%{name}' deleted"
673
- msgstr ""
674
-
675
- #: app/controllers/admin/users_controller.rb:61
676
- msgid "User: '%{name}' updated"
677
- msgstr ""
678
-
679
- #: app/views/mailer/new_alchemy_user_mail.erb:9
680
- msgid "Username"
681
- msgstr ""
682
-
683
- #: locale/model_attributes.rb:41
684
- msgid "User|Email"
685
- msgstr ""
686
-
687
- #: locale/model_attributes.rb:43
688
- msgid "User|Firstname"
689
- msgstr ""
690
-
691
- #: locale/model_attributes.rb:40
692
- msgid "User|Gender"
693
- msgstr ""
694
-
695
- #: locale/model_attributes.rb:45
696
- msgid "User|Language"
697
- msgstr ""
698
-
699
- #: locale/model_attributes.rb:44
700
- msgid "User|Lastname"
701
- msgstr ""
702
-
703
- #: locale/model_attributes.rb:42
704
- msgid "User|Login"
705
- msgstr ""
706
-
707
- #: locale/model_attributes.rb:39
708
- msgid "User|Name"
709
- msgstr ""
710
-
711
- #: locale/model_attributes.rb:47
712
- msgid "User|Password"
713
- msgstr ""
714
-
715
- #: locale/model_attributes.rb:48
716
- msgid "User|Password confirmation"
717
- msgstr ""
718
-
719
- #: locale/model_attributes.rb:46
720
- msgid "User|Role"
721
- msgstr ""
722
-
723
- #: app/controllers/admin/elements_controller.rb:84
724
- msgid "Validation failed."
725
- msgstr ""
726
-
727
- #: app/views/admin/index.html.erb:64
728
- msgid "Version"
729
- msgstr ""
730
-
731
- #: app/views/admin/attachments/_attachment.html.erb:11
732
- msgid "View File"
733
- msgstr ""
734
-
735
- #: app/views/admin/pages/edit.html.erb:49
736
- #: app/views/admin/pages/edit.html.erb:52
737
- msgid "Visit page"
738
- msgstr ""
739
-
740
- #: app/views/admin/pages/edit.html.erb:120
741
- #: app/views/admin/pages/edit.html.erb:178
742
- msgid "Warning!"
743
- msgstr ""
744
-
745
- #: app/helpers/alchemy_helper.rb:320
746
- msgid "Warning: Content '%{contentname}' is missing its description."
747
- msgstr ""
748
-
749
- #: app/views/admin/elements/_element_head.html.erb:5
750
- msgid "Warning: Element '%{elementname}' is missing its description."
751
- msgstr ""
752
-
753
- #: app/views/admin/index.html.erb:8
754
- msgid "Welcome back, %{name}"
755
- msgstr ""
756
-
757
- #: app/views/admin/signup.html.erb:5
758
- #: app/views/mailer/new_alchemy_user_mail.erb:1
759
- msgid "Welcome to Alchemy"
760
- msgstr ""
761
-
762
- #: app/views/admin/index.html.erb:49
763
- msgid "Who else is online"
764
- msgstr ""
765
-
766
- #: app/views/admin/pages/edit.html.erb:122
767
- #: app/views/admin/pages/edit.html.erb:180
768
- msgid "Yes"
769
- msgstr ""
770
-
771
- #: app/controllers/alchemy_controller.rb:172
772
- msgid "You are not authorized"
773
- msgstr ""
774
-
775
- #: app/views/admin/partials/_upload_form.html.erb:27
776
- msgid "You can get the latest version on the %{link}"
777
- msgstr ""
778
-
779
- #: locale/missing_translations.rb:1
780
- msgid ""
781
- "You have unsaved elements on this page. Do you really want to clear the page "
782
- "cache?"
783
- msgstr ""
784
-
785
- #: app/views/admin/pages/edit.html.erb:179
786
- msgid ""
787
- "You have unsaved elements on this page. Do you really want to leave this "
788
- "page?"
789
- msgstr ""
790
-
791
- #: app/views/admin/pages/edit.html.erb:121
792
- msgid ""
793
- "You have unsaved elements. Do you really want to close the elements window?"
794
- msgstr ""
795
-
796
- #: app/views/admin/partials/_upload_form.html.erb:16
797
- msgid ""
798
- "You may upload %{file_types_description} with following extensions: "
799
- "%{file_types}"
800
- msgstr ""
801
-
802
- #: app/views/admin/partials/_upload_form.html.erb:14
803
- msgid "You may upload any file"
804
- msgstr ""
805
-
806
- #: app/views/admin/index.html.erb:9
807
- msgid "You were last time online at %{time}"
808
- msgstr ""
809
-
810
- #: app/models/mailer.rb:22
811
- msgid "Your Alchemy Login"
812
- msgstr ""
813
-
814
- #: app/views/mailer/new_alchemy_user_mail.erb:7
815
- msgid "Your credentials are"
816
- msgstr ""
817
-
818
- #: app/views/admin/index.html.erb:12
819
- msgid "Your last updated pages"
820
- msgstr ""
821
-
822
- #: app/views/admin/trash/index.html.erb:4
823
- msgid "Your trash is empty"
824
- msgstr ""
825
-
826
- #: app/views/admin/essence_files/edit.html.erb:10
827
- #: app/views/admin/essence_pictures/edit.html.erb:49
828
- msgid "above"
829
- msgstr ""
830
-
831
- #: app/views/admin/elements/_new_element_form.html.erb:19
832
- msgid "add"
833
- msgstr ""
834
-
835
- #: app/helpers/alchemy_helper.rb:1116 app/helpers/alchemy_helper.rb:1132
836
- msgid "add new content"
837
- msgstr ""
838
-
839
- #: app/views/admin/elements/_picture_editor.html.erb:14
840
- msgid "add_image_to_element"
841
- msgstr ""
842
-
843
- #: app/views/admin/essence_files/edit.html.erb:9
844
- #: app/views/admin/essence_pictures/edit.html.erb:47
845
- msgid "align_in_text"
846
- msgstr ""
847
-
848
- #: app/views/admin/partials/_per_page_links.html.erb:5
849
- msgid "all"
850
- msgstr ""
851
-
852
- #: app/views/admin/essence_files/edit.html.erb:49
853
- msgid "allow_fullscreen"
854
- msgstr ""
855
-
856
- #: app/views/admin/pages/_contactform_links.html.erb:56
857
- #: app/views/admin/pages/_external_link.html.erb:41
858
- #: app/views/admin/pages/_file_link.html.erb:39
859
- #: app/views/admin/pages/_internal_link.html.erb:34
860
- msgid "apply"
861
- msgstr ""
862
-
863
- #: app/views/essences/_essence_file_editor.html.erb:16
864
- #: app/views/essences/_essence_file_editor.html.erb:21
865
- #: app/views/essences/_essence_file_editor.html.erb:40
866
- #: app/views/essences/_essence_file_editor.html.erb:45
867
- msgid "assign_file"
868
- msgstr ""
869
-
870
- #: app/views/essences/_essence_file_editor.html.erb:28
871
- msgid "assign_file_from_archive"
872
- msgstr ""
873
-
874
- #: app/views/admin/elements/_add_content.html.erb:11
875
- #: app/views/admin/pictures/_picture_to_assign.html.erb:26
876
- msgid "assign_image"
877
- msgstr ""
878
-
879
- #: app/views/admin/essence_files/edit.html.erb:53
880
- msgid "auto_play"
881
- msgstr ""
882
-
883
- #: app/views/admin/pictures/_filter_and_size_bar.html.erb:50
884
- msgid "big_thumbnails"
885
- msgstr ""
886
-
887
- #: app/views/admin/partials/_upload_form.html.erb:88
888
- msgid "browse"
889
- msgstr ""
890
-
891
- #: app/views/admin/pages/index.html.erb:96
892
- #: app/views/admin/pictures/index.html.erb:50
893
- msgid "cancel"
894
- msgstr ""
895
-
896
- #: app/views/admin/elements/index.rjs:9
897
- msgid "choose_element_as_target"
898
- msgstr ""
899
-
900
- #: app/views/admin/elements/index.rjs:6
901
- msgid "choose_element_to_link"
902
- msgstr ""
903
-
904
- #: app/views/admin/pages/_file_link.html.erb:3
905
- msgid "choose_file_to_link"
906
- msgstr ""
907
-
908
- #: app/views/admin/clipboard/index.html.erb:15
909
- msgid "clear clipboard"
910
- msgstr ""
911
-
912
- #: app/views/admin/trash/index.html.erb:16
913
- msgid "clear trash"
914
- msgstr ""
915
-
916
- #: app/helpers/alchemy_helper.rb:790
917
- #: app/views/admin/partials/_remote_search_form.html.erb:30
918
- #: app/views/admin/partials/_search_form.html.erb:12
919
- msgid "click_to_show_all"
920
- msgstr ""
921
-
922
- #: app/views/admin/attachments/_attachment.html.erb:33
923
- msgid "confirm_to_delete_file"
924
- msgstr ""
925
-
926
- #: app/views/essences/_essence_picture_editor.html.erb:6
927
- msgid "confirm_to_delete_image"
928
- msgstr ""
929
-
930
- #: app/views/admin/pictures/_picture.html.erb:6
931
- msgid "confirm_to_delete_image_from_server"
932
- msgstr ""
933
-
934
- #: app/views/admin/languages/_language.html.erb:12
935
- msgid "confirm_to_delete_language"
936
- msgstr ""
937
-
938
- #: app/views/admin/pages/_layoutpage.html.erb:56
939
- #: app/views/admin/pages/_page.html.erb:58
940
- #: app/views/admin/pages/_sitemap.html.erb:46
941
- msgid "confirm_to_delete_page"
942
- msgstr ""
943
-
944
- #: app/views/admin/users/_user.html.erb:14
945
- msgid "confirm_to_delete_user"
946
- msgstr ""
947
-
948
- #: app/views/admin/pages/_contactform_links.html.erb:36
949
- msgid "contactform_body"
950
- msgstr ""
951
-
952
- #: app/helpers/alchemy_helper.rb:169 app/helpers/alchemy_helper.rb:878
953
- #: app/helpers/alchemy_helper.rb:1005
954
- msgid "content_essence_not_found"
955
- msgstr ""
956
-
957
- #: app/helpers/alchemy_helper.rb:167 app/helpers/alchemy_helper.rb:876
958
- #: app/views/admin/contents/_missing.html.erb:5
959
- msgid "content_not_found"
960
- msgstr ""
961
-
962
- #: app/views/admin/pages/_create_language_form.html.erb:17
963
- msgid "copy"
964
- msgstr ""
965
-
966
- #: app/views/admin/elements/_element_foot.html.erb:23
967
- msgid "copy_element"
968
- msgstr ""
969
-
970
- #: app/views/admin/pages/_layoutpage.html.erb:49
971
- #: app/views/admin/pages/_page.html.erb:51
972
- msgid "copy_page"
973
- msgstr ""
974
-
975
- #: app/views/admin/infos.html.erb:4
976
- msgid "copyright_notice"
977
- msgstr ""
978
-
979
- #: app/views/admin/contents/_missing.html.erb:7
980
- #: app/views/admin/pages/_new_page_form.html.erb:25
981
- msgid "create"
982
- msgstr ""
983
-
984
- #: app/views/admin/languages/index.html.erb:11
985
- #: app/views/admin/languages/index.html.erb:16
986
- #: app/views/admin/languages/index.html.erb:19
987
- msgid "create_language"
988
- msgstr ""
989
-
990
- #: app/views/admin/pages/_page.html.erb:75
991
- #: app/views/admin/pages/_page.html.erb:80
992
- #: app/views/admin/pages/_sitemap.html.erb:63
993
- #: app/views/admin/pages/_sitemap.html.erb:68
994
- msgid "create_page"
995
- msgstr ""
996
-
997
- #: app/views/admin/users/index.html.erb:11
998
- #: app/views/admin/users/index.html.erb:16
999
- #: app/views/admin/users/index.html.erb:19
1000
- msgid "create_user"
1001
- msgstr ""
1002
-
1003
- #: app/views/admin/pages/_layoutpage.html.erb:11
1004
- #: app/views/admin/pages/_page.html.erb:12
1005
- #: app/views/admin/pages/_sitemap.html.erb:12
1006
- msgid "created_at"
1007
- msgstr ""
1008
-
1009
- #: app/views/admin/pages/_layoutpage.html.erb:20
1010
- #: app/views/admin/pages/_page.html.erb:21
1011
- #: app/views/admin/pages/_sitemap.html.erb:21
1012
- msgid "currently_edited_by"
1013
- msgstr ""
1014
-
1015
- #: app/views/admin/elements/_element_foot.html.erb:15
1016
- msgid "cut_element"
1017
- msgstr ""
1018
-
1019
- #: app/views/admin/attachments/_attachment.html.erb:42
1020
- msgid "delete_file"
1021
- msgstr ""
1022
-
1023
- #: app/views/essences/_essence_picture_editor.html.erb:14
1024
- msgid "delete_image"
1025
- msgstr ""
1026
-
1027
- #: app/views/admin/languages/_language.html.erb:14
1028
- msgid "delete_language"
1029
- msgstr ""
1030
-
1031
- #: app/views/admin/pages/_layoutpage.html.erb:64
1032
- #: app/views/admin/pages/_page.html.erb:66
1033
- #: app/views/admin/pages/_sitemap.html.erb:54
1034
- msgid "delete_page"
1035
- msgstr ""
1036
-
1037
- #: app/views/admin/users/_user.html.erb:16
1038
- msgid "delete_user"
1039
- msgstr ""
1040
-
1041
- #: app/helpers/admin/attachments_helper.rb:4
1042
- msgid "document"
1043
- msgstr ""
1044
-
1045
- #: app/views/admin/attachments/new.html.erb:6
1046
- msgid "documents"
1047
- msgstr ""
1048
-
1049
- #: app/views/admin/attachments/_attachment.html.erb:26
1050
- msgid "download_file_'%{filename}'"
1051
- msgstr ""
1052
-
1053
- #: app/views/essences/_essence_picture_editor.html.erb:27
1054
- msgid "drag_to_sort"
1055
- msgstr ""
1056
-
1057
- #: app/views/essences/_essence_file_editor.html.erb:54
1058
- #: app/views/essences/_essence_file_editor.html.erb:58
1059
- msgid "edit_file_properties"
1060
- msgstr ""
1061
-
1062
- #: app/views/essences/_essence_picture_tools.html.erb:56
1063
- #: app/views/essences/_essence_picture_tools.html.erb:59
1064
- msgid "edit_image_properties"
1065
- msgstr ""
1066
-
1067
- #: app/views/admin/languages/_language.html.erb:23
1068
- #: app/views/admin/languages/_language.html.erb:30
1069
- msgid "edit_language"
1070
- msgstr ""
1071
-
1072
- #: app/views/admin/pages/_layoutpage.html.erb:75
1073
- #: app/views/admin/pages/_page.html.erb:103
1074
- #: app/views/admin/pages/_sitemap.html.erb:91
1075
- msgid "edit_page"
1076
- msgstr ""
1077
-
1078
- #: app/views/admin/pages/_layoutpage.html.erb:31
1079
- #: app/views/admin/pages/_layoutpage.html.erb:35
1080
- #: app/views/admin/pages/_page.html.erb:33
1081
- #: app/views/admin/pages/_page.html.erb:37
1082
- #: app/views/admin/pages/_sitemap.html.erb:33
1083
- #: app/views/admin/pages/_sitemap.html.erb:37
1084
- #: app/views/admin/pages/edit.html.erb:61
1085
- #: app/views/admin/pages/edit.html.erb:65
1086
- msgid "edit_page_properties"
1087
- msgstr ""
1088
-
1089
- #: app/views/admin/users/_user.html.erb:25
1090
- #: app/views/admin/users/_user.html.erb:31
1091
- msgid "edit_user"
1092
- msgstr ""
1093
-
1094
- #: app/views/elements/_editor_not_found.html.erb:3
1095
- msgid "element_editor_not_found"
1096
- msgstr ""
1097
-
1098
- #: app/views/admin/elements/_new_element_form.html.erb:11
1099
- msgid "element_of_type"
1100
- msgstr ""
1101
-
1102
- #: app/views/admin/elements/update.rjs:1
1103
- msgid "element_saved"
1104
- msgstr ""
1105
-
1106
- #: app/views/admin/pages/_external_link.html.erb:3
1107
- msgid "enter_external_link"
1108
- msgstr ""
1109
-
1110
- #: app/views/admin/essence_pictures/crop.html.erb:21
1111
- msgid "explain cropping"
1112
- msgstr ""
1113
-
1114
- #: app/views/admin/pages/edit.html.erb:75
1115
- msgid "explain_publishing"
1116
- msgstr ""
1117
-
1118
- #: app/views/admin/index.html.erb:35 app/views/admin/pages/edit.html.erb:18
1119
- #: app/views/admin/pages/edit.html.erb:37
1120
- #: app/views/admin/pages/index.html.erb:14
1121
- #: app/views/admin/pages/layoutpages.html.erb:14
1122
- msgid "explain_unlocking"
1123
- msgstr ""
1124
-
1125
- #: app/views/admin/partials/_upload_form.html.erb:9
1126
- msgid "explain_upload.footnote_%{name}"
1127
- msgstr ""
1128
-
1129
- #: app/views/admin/partials/_upload_form.html.erb:3
1130
- msgid "explain_upload.intro_%{name}"
1131
- msgstr ""
1132
-
1133
- #: app/views/admin/partials/_upload_form.html.erb:5
1134
- msgid "explain_upload.step1_%{name}"
1135
- msgstr ""
1136
-
1137
- #: app/views/admin/partials/_upload_form.html.erb:6
1138
- msgid "explain_upload.step2_%{name}"
1139
- msgstr ""
1140
-
1141
- #: app/views/admin/partials/_upload_form.html.erb:7
1142
- msgid "explain_upload.step3"
1143
- msgstr ""
1144
-
1145
- #: app/models/user.rb:56
1146
- msgid "female"
1147
- msgstr ""
1148
-
1149
- #: app/views/admin/pages/_file_link.html.erb:8
1150
- msgid "file"
1151
- msgstr ""
1152
-
1153
- #: app/controllers/admin/attachments_controller.rb:84
1154
- msgid "file_rename_error"
1155
- msgstr ""
1156
-
1157
- #: app/views/admin/attachments/index.html.erb:23
1158
- #: app/views/admin/attachments/new.html.erb:8
1159
- msgid "files"
1160
- msgstr ""
1161
-
1162
- #: app/views/admin/essence_files/edit.html.erb:25
1163
- #: app/views/admin/essence_files/edit.html.erb:45
1164
- #: app/views/admin/essence_files/edit.html.erb:73
1165
- msgid "height"
1166
- msgstr ""
1167
-
1168
- #: app/views/admin/elements/_element_head.html.erb:25
1169
- msgid "hide_element_content"
1170
- msgstr ""
1171
-
1172
- #: lib/alchemy_core_modules.rb:11
1173
- msgid "home"
1174
- msgstr ""
1175
-
1176
- #: app/views/admin/essence_pictures/edit.html.erb:21
1177
- msgid "image_alt_tag"
1178
- msgstr ""
1179
-
1180
- #: app/views/admin/essence_pictures/edit.html.erb:7
1181
- msgid "image_caption"
1182
- msgstr ""
1183
-
1184
- #: app/views/essences/_essence_picture_editor.html.erb:45
1185
- msgid "image_name"
1186
- msgstr ""
1187
-
1188
- #: app/views/admin/essence_pictures/edit.html.erb:17
1189
- msgid "image_title"
1190
- msgstr ""
1191
-
1192
- #: app/views/admin/pictures/index.html.erb:36
1193
- #: app/views/admin/pictures/new.html.erb:6
1194
- #: app/views/admin/pictures/new.html.erb:8
1195
- msgid "images"
1196
- msgstr ""
1197
-
1198
- #: app/views/admin/pages/_internal_link.html.erb:2
1199
- msgid "internal_link_headline"
1200
- msgstr ""
1201
-
1202
- #: app/views/admin/clipboard/insert.rjs:6
1203
- msgid "item %{name} copied to clipboard"
1204
- msgstr ""
1205
-
1206
- #: app/views/admin/clipboard/insert.rjs:4
1207
- msgid "item %{name} moved to clipboard"
1208
- msgstr ""
1209
-
1210
- #: app/views/admin/clipboard/remove.rjs:2
1211
- msgid "item %{name} removed from clipboard"
1212
- msgstr ""
1213
-
1214
- #: app/views/admin/pages/_create_language_form.html.erb:2
1215
- msgid "language_does_not_exist"
1216
- msgstr ""
1217
-
1218
- #: app/controllers/admin/pages_controller.rb:206
1219
- msgid "language_pages_copied"
1220
- msgstr ""
1221
-
1222
- #: app/views/admin/essence_files/edit.html.erb:10
1223
- #: app/views/admin/essence_pictures/edit.html.erb:49
1224
- msgid "left"
1225
- msgstr ""
1226
-
1227
- #: app/views/essences/_essence_picture_tools.html.erb:36
1228
- msgid "link_image"
1229
- msgstr ""
1230
-
1231
- #: app/views/admin/pages/link.html.erb:7
1232
- msgid "link_overlay_tab_label.contactform"
1233
- msgstr ""
1234
-
1235
- #: app/views/admin/pages/link.html.erb:4
1236
- msgid "link_overlay_tab_label.external"
1237
- msgstr ""
1238
-
1239
- #: app/views/admin/pages/link.html.erb:5
1240
- msgid "link_overlay_tab_label.file"
1241
- msgstr ""
1242
-
1243
- #: app/views/admin/pages/link.html.erb:3
1244
- msgid "link_overlay_tab_label.internal"
1245
- msgstr ""
1246
-
1247
- #: app/views/admin/pages/_contactform_links.html.erb:46
1248
- #: app/views/admin/pages/_external_link.html.erb:26
1249
- #: app/views/admin/pages/_file_link.html.erb:21
1250
- msgid "link_title"
1251
- msgstr ""
1252
-
1253
- #: app/controllers/admin_controller.rb:53
1254
- msgid "logged_out"
1255
- msgstr ""
1256
-
1257
- #: app/views/admin/login.html.erb:33
1258
- msgid "login"
1259
- msgstr ""
1260
-
1261
- #: app/views/layouts/alchemy.html.erb:39 app/views/layouts/login.html.erb:39
1262
- #: lib/alchemy_core_modules.rb:10
1263
- msgid "logout"
1264
- msgstr ""
1265
-
1266
- #: app/views/admin/pages/_contactform_links.html.erb:23
1267
- msgid "mail_to"
1268
- msgstr ""
1269
-
1270
- #: app/models/user.rb:55
1271
- msgid "male"
1272
- msgstr ""
1273
-
1274
- #: app/views/admin/pictures/_filter_and_size_bar.html.erb:33
1275
- msgid "medium_thumbnails"
1276
- msgstr ""
1277
-
1278
- #: app/views/admin/pages/configure.html.erb:46
1279
- msgid "meta_data"
1280
- msgstr ""
1281
-
1282
- #: app/views/admin/pages/configure.html.erb:56
1283
- msgid "meta_description"
1284
- msgstr ""
1285
-
1286
- #: app/views/admin/pages/configure.html.erb:60
1287
- msgid "meta_keywords"
1288
- msgstr ""
1289
-
1290
- #: app/models/picture.rb:7
1291
- msgid "missing_image"
1292
- msgstr ""
1293
-
1294
- #: lib/alchemy_core_modules.rb:7
1295
- msgid "module: attachments"
1296
- msgstr ""
1297
-
1298
- #: lib/alchemy_core_modules.rb:2
1299
- msgid "module: dashboard"
1300
- msgstr ""
1301
-
1302
- #: lib/alchemy_core_modules.rb:8
1303
- msgid "module: pictures"
1304
- msgstr ""
1305
-
1306
- #: lib/alchemy_core_modules.rb:9
1307
- msgid "module: languages"
1308
- msgstr ""
1309
-
1310
- #: lib/alchemy_core_modules.rb:4
1311
- msgid "module: layoutpages"
1312
- msgstr ""
1313
-
1314
- #: lib/alchemy_core_modules.rb:6
1315
- msgid "module: library"
1316
- msgstr ""
1317
-
1318
- #: lib/alchemy_core_modules.rb:3
1319
- msgid "module: pages"
1320
- msgstr ""
1321
-
1322
- #: lib/alchemy_core_modules.rb:5
1323
- msgid "module: users"
1324
- msgstr ""
1325
-
1326
- #: app/views/admin/attachments/edit.html.erb:4
1327
- #: app/views/admin/pages/configure.html.erb:33
1328
- msgid "name"
1329
- msgstr ""
1330
-
1331
- #: app/views/admin/pages/configure.html.erb:29
1332
- #: app/views/admin/pages/configure_external.html.erb:22
1333
- msgid "names"
1334
- msgstr ""
1335
-
1336
- #: app/views/admin/pages/configure_external.html.erb:25
1337
- msgid "navigation_name"
1338
- msgstr ""
1339
-
1340
- #: app/helpers/alchemy_helper.rb:845
1341
- msgid "no"
1342
- msgstr ""
1343
-
1344
- #: app/views/admin/index.html.erb:14 app/views/admin/index.html.erb:27
1345
- msgid "no pages"
1346
- msgstr ""
1347
-
1348
- #: app/views/admin/index.html.erb:51
1349
- msgid "no users"
1350
- msgstr ""
1351
-
1352
- #: app/controllers/alchemy_controller.rb:211
1353
- msgid "no_default_language_found"
1354
- msgstr ""
1355
-
1356
- #: app/helpers/alchemy_helper.rb:221 app/helpers/alchemy_helper.rb:289
1357
- msgid "no_element_given"
1358
- msgstr ""
1359
-
1360
- #: app/views/admin/attachments/_files_list.html.erb:3
1361
- msgid "no_files_in_archive"
1362
- msgstr ""
1363
-
1364
- #: app/views/admin/pictures/_archive_overlay_images.html.erb:6
1365
- #: app/views/admin/pictures/_pictures_list.html.erb:3
1366
- msgid "no_images_in_archive"
1367
- msgstr ""
1368
-
1369
- #: app/views/admin/elements/_new_element_form.html.erb:3
1370
- msgid "no_more_elements_to_add"
1371
- msgstr ""
1372
-
1373
- #: app/views/admin/attachments/_files_list.html.erb:7
1374
- #: app/views/admin/pictures/_pictures_list.html.erb:7
1375
- msgid "no_search_results"
1376
- msgstr ""
1377
-
1378
- #: app/models/picture.rb:8
1379
- msgid "not a valid image"
1380
- msgstr ""
1381
-
1382
- #: app/helpers/alchemy_helper.rb:836 app/views/admin/elements/list.html.erb:8
1383
- msgid "other Elements"
1384
- msgstr ""
1385
-
1386
- #: app/controllers/admin/pages_controller.rb:54
1387
- msgid "page '%{name}' created."
1388
- msgstr ""
1389
-
1390
- #: app/views/admin/pages/_page_for_links.html.erb:36
1391
- msgid "page_for_links.choose_page %{name}"
1392
- msgstr ""
1393
-
1394
- #: app/views/admin/pages/locked.html.erb:2
1395
- msgid "page_locked"
1396
- msgstr ""
1397
-
1398
- #: app/views/admin/pages/edit.html.erb:67
1399
- msgid "page_properties"
1400
- msgstr ""
1401
-
1402
- #: app/views/admin/pages/configure.html.erb:15
1403
- msgid "page_public"
1404
- msgstr ""
1405
-
1406
- #: app/controllers/admin/pages_controller.rb:185
1407
- msgid "page_published"
1408
- msgstr ""
1409
-
1410
- #: app/views/admin/pages/configure.html.erb:19
1411
- msgid "page_restricted"
1412
- msgstr ""
1413
-
1414
- #: app/views/admin/pages/configure.html.erb:12
1415
- #: app/views/admin/pages/configure_external.html.erb:11
1416
- msgid "page_status"
1417
- msgstr ""
1418
-
1419
- #: app/models/page.rb:207
1420
- msgid "page_status_invisible_public"
1421
- msgstr ""
1422
-
1423
- #: app/models/page.rb:195
1424
- msgid "page_status_invisible_public_locked"
1425
- msgstr ""
1426
-
1427
- #: app/models/page.rb:210
1428
- msgid "page_status_invisible_unpublic"
1429
- msgstr ""
1430
-
1431
- #: app/models/page.rb:198
1432
- msgid "page_status_invisible_unpublic_locked"
1433
- msgstr ""
1434
-
1435
- #: app/models/page.rb:201
1436
- msgid "page_status_visible_public"
1437
- msgstr ""
1438
-
1439
- #: app/models/page.rb:189
1440
- msgid "page_status_visible_public_locked"
1441
- msgstr ""
1442
-
1443
- #: app/models/page.rb:204
1444
- msgid "page_status_visible_unpublic"
1445
- msgstr ""
1446
-
1447
- #: app/models/page.rb:192
1448
- msgid "page_status_visible_unpublic_locked"
1449
- msgstr ""
1450
-
1451
- #: app/views/admin/pages/configure.html.erb:42
1452
- #: app/views/admin/pages/configure_external.html.erb:33
1453
- msgid "page_title"
1454
- msgstr ""
1455
-
1456
- #: app/views/admin/pages/_layoutpage.html.erb:6
1457
- #: app/views/admin/pages/_page.html.erb:7
1458
- #: app/views/admin/pages/_sitemap.html.erb:7
1459
- #: app/views/admin/pages/configure.html.erb:5
1460
- #: app/views/admin/pages/configure_external.html.erb:5
1461
- msgid "page_type"
1462
- msgstr ""
1463
-
1464
- #: app/views/admin/pages/configure.html.erb:17
1465
- #: app/views/admin/pages/configure_external.html.erb:14
1466
- msgid "page_visible_in_navigation"
1467
- msgstr ""
1468
-
1469
- #: app/views/admin/pages/configure.html.erb:63
1470
- msgid "pages.update.comma_seperated"
1471
- msgstr ""
1472
-
1473
- #: app/views/admin/partials/_per_page_links.html.erb:16
1474
- msgid "pagination.%{label}_per_page"
1475
- msgstr ""
1476
-
1477
- #: app/views/admin/partials/_pagination_links.html.erb:5
1478
- #: app/views/admin/partials/_remote_pagination_links.html.erb:5
1479
- msgid "pagination.next_page"
1480
- msgstr ""
1481
-
1482
- #: app/views/admin/partials/_pagination_links.html.erb:4
1483
- #: app/views/admin/partials/_remote_pagination_links.html.erb:4
1484
- msgid "pagination.previous_page"
1485
- msgstr ""
1486
-
1487
- #: app/views/admin/login.html.erb:24
1488
- msgid "password"
1489
- msgstr ""
1490
-
1491
- #: app/views/admin/elements/new.html.erb:21
1492
- #: app/views/admin/pages/new.html.erb:36
1493
- msgid "paste"
1494
- msgstr ""
1495
-
1496
- #: app/views/essences/_essence_text_editor.html.erb:69
1497
- msgid "place_link"
1498
- msgstr ""
1499
-
1500
- #: app/views/admin/essence_files/edit.html.erb:29
1501
- msgid "player_version"
1502
- msgstr ""
1503
-
1504
- #: app/models/page.rb:12
1505
- msgid "please enter a name"
1506
- msgstr ""
1507
-
1508
- #: app/views/admin/pages/_contactform_links.html.erb:3
1509
- msgid "please enter subject and mail address"
1510
- msgstr ""
1511
-
1512
- #: app/helpers/alchemy_helper.rb:843
1513
- msgid "please_confirm"
1514
- msgstr ""
1515
-
1516
- #: app/views/layouts/alchemy.html.erb:25 app/views/layouts/login.html.erb:25
1517
- msgid "please_wait"
1518
- msgstr ""
1519
-
1520
- #: app/views/admin/partials/_upload_form.html.erb:20
1521
- msgid "regular method"
1522
- msgstr ""
1523
-
1524
- #: app/views/admin/elements/index.rjs:19
1525
- msgid "remove"
1526
- msgstr ""
1527
-
1528
- #: app/views/admin/attachments/_attachment.html.erb:50
1529
- #: app/views/admin/attachments/_attachment.html.erb:54
1530
- msgid "rename_file"
1531
- msgstr ""
1532
-
1533
- #: app/views/admin/essence_files/edit.html.erb:10
1534
- #: app/views/admin/essence_pictures/edit.html.erb:49
1535
- msgid "right"
1536
- msgstr ""
1537
-
1538
- #: app/views/admin/pages/configure.html.erb:52
1539
- msgid "robot_follow"
1540
- msgstr ""
1541
-
1542
- #: app/views/admin/pages/configure.html.erb:51
1543
- msgid "robot_index"
1544
- msgstr ""
1545
-
1546
- #: app/views/admin/attachments/edit.html.erb:9
1547
- #: app/views/admin/contents/new.html.erb:11
1548
- #: app/views/admin/elements/_element_foot.html.erb:32
1549
- #: app/views/admin/essence_files/edit.html.erb:14
1550
- #: app/views/admin/essence_files/edit.html.erb:34
1551
- #: app/views/admin/essence_files/edit.html.erb:62
1552
- #: app/views/admin/essence_files/edit.html.erb:86
1553
- #: app/views/admin/essence_pictures/crop.html.erb:6
1554
- #: app/views/admin/essence_pictures/edit.html.erb:70
1555
- #: app/views/admin/languages/_form.html.erb:30
1556
- #: app/views/admin/pages/configure.html.erb:68
1557
- #: app/views/admin/pages/configure_external.html.erb:37
1558
- #: app/views/admin/pictures/index.html.erb:49
1559
- #: app/views/admin/users/_table.html.erb:47
1560
- msgid "save"
1561
- msgstr ""
1562
-
1563
- #: app/views/admin/pages/index.html.erb:97
1564
- msgid "save order"
1565
- msgstr ""
1566
-
1567
- #: app/controllers/admin/essence_pictures_controller.rb:75
1568
- msgid "saved_link"
1569
- msgstr ""
1570
-
1571
- #: app/helpers/alchemy_helper.rb:792
1572
- #: app/views/admin/partials/_remote_search_form.html.erb:35
1573
- #: app/views/admin/partials/_search_form.html.erb:16
1574
- #: app/views/elements/_searchresult_view.html.erb:5
1575
- msgid "search"
1576
- msgstr ""
1577
-
1578
- #: app/views/admin/pages/configure.html.erb:49
1579
- msgid "search_engines"
1580
- msgstr ""
1581
-
1582
- #: app/views/admin/elements/_new_element_form.html.erb:15
1583
- msgid "select_element"
1584
- msgstr ""
1585
-
1586
- #: app/views/admin/elements/_element_head.html.erb:25
1587
- msgid "show_element_content"
1588
- msgstr ""
1589
-
1590
- #: app/views/admin/pages/_page_for_links.html.erb:15
1591
- msgid "show_elements_from_page"
1592
- msgstr ""
1593
-
1594
- #: app/views/admin/essence_files/edit.html.erb:77
1595
- msgid "show_eq"
1596
- msgstr ""
1597
-
1598
- #: app/views/admin/essence_files/edit.html.erb:57
1599
- #: app/views/admin/essence_files/edit.html.erb:81
1600
- msgid "show_navigation"
1601
- msgstr ""
1602
-
1603
- #: app/views/admin/pages/configure.html.erb:22
1604
- #: app/views/admin/pages/configure_external.html.erb:17
1605
- msgid "show_page_in_sitemap"
1606
- msgstr ""
1607
-
1608
- #: app/views/admin/pictures/_filter_and_size_bar.html.erb:16
1609
- msgid "small_thumbnails"
1610
- msgstr ""
1611
-
1612
- #: app/views/admin/pages/_contactform_links.html.erb:15
1613
- msgid "subject"
1614
- msgstr ""
1615
-
1616
- #: app/views/admin/elements/create.rjs:12
1617
- msgid "successfully_added_element"
1618
- msgstr ""
1619
-
1620
- #: app/controllers/admin/elements_controller.rb:126
1621
- msgid "successfully_saved_element_position"
1622
- msgstr ""
1623
-
1624
- #: app/views/essences/_essence_picture_tools.html.erb:25
1625
- #: app/views/essences/_essence_picture_tools.html.erb:29
1626
- msgid "swap_image"
1627
- msgstr ""
1628
-
1629
- #: app/views/admin/partials/_upload_form.html.erb:12
1630
- msgid "swfupload: cancel_uploads"
1631
- msgstr ""
1632
-
1633
- #: app/views/admin/essence_files/edit.html.erb:5
1634
- msgid "title"
1635
- msgstr ""
1636
-
1637
- #: app/views/admin/elements/_element_foot.html.erb:8
1638
- msgid "trash element"
1639
- msgstr ""
1640
-
1641
- #: app/controllers/admin/pages_controller.rb:63 app/models/page.rb:146
1642
- #: app/models/page.rb:153 app/models/page.rb:160
1643
- msgid "unknown"
1644
- msgstr ""
1645
-
1646
- #: app/views/essences/_essence_picture_tools.html.erb:45
1647
- #: app/views/essences/_essence_text_editor.html.erb:73
1648
- msgid "unlink"
1649
- msgstr ""
1650
-
1651
- #: app/views/admin/pages/edit.html.erb:40
1652
- msgid "unlock_page"
1653
- msgstr ""
1654
-
1655
- #: app/controllers/admin/pages_controller.rb:156
1656
- msgid "unlocked_page_%{name}"
1657
- msgstr ""
1658
-
1659
- #: app/views/admin/pages/_layoutpage.html.erb:15
1660
- #: app/views/admin/pages/_page.html.erb:16
1661
- #: app/views/admin/pages/_sitemap.html.erb:16
1662
- msgid "updated_at"
1663
- msgstr ""
1664
-
1665
- #: app/views/admin/partials/_upload_form.html.erb:39
1666
- msgid "upload"
1667
- msgstr ""
1668
-
1669
- #: app/views/admin/attachments/index.html.erb:11
1670
- #: app/views/admin/attachments/index.html.erb:14
1671
- #: app/views/admin/attachments/index.html.erb:17
1672
- msgid "upload_file"
1673
- msgstr ""
1674
-
1675
- #: app/views/admin/pictures/_filter_and_size_bar.html.erb:75
1676
- #: app/views/admin/pictures/_filter_and_size_bar.html.erb:79
1677
- #: app/views/admin/pictures/_filter_and_size_bar.html.erb:82
1678
- #: app/views/admin/pictures/index.html.erb:11
1679
- #: app/views/admin/pictures/index.html.erb:15
1680
- #: app/views/admin/pictures/index.html.erb:17
1681
- msgid "upload_image"
1682
- msgstr ""
1683
-
1684
- #: app/views/admin/pages/configure.html.erb:38
1685
- msgid "url_name"
1686
- msgstr ""
1687
-
1688
- #: app/models/page.rb:14
1689
- msgid "urlname_to_short"
1690
- msgstr ""
1691
-
1692
- #: app/views/admin/login.html.erb:16
1693
- msgid "username"
1694
- msgstr ""
1695
-
1696
- #: app/views/admin/elements/_element_foot.html.erb:29
1697
- msgid "visible"
1698
- msgstr ""
1699
-
1700
- #: app/views/admin/pages/_create_language_form.html.erb:27
1701
- msgid "want_to_create_new_language"
1702
- msgstr ""
1703
-
1704
- #: app/views/admin/pages/_create_language_form.html.erb:7
1705
- msgid "want_to_make_copy_of_existing_language"
1706
- msgstr ""
1707
-
1708
- #: app/models/language.rb:44
1709
- msgid "we_need_at_least_one_default"
1710
- msgstr ""
1711
-
1712
- #: app/controllers/admin_controller.rb:36
1713
- msgid "welcome_please_identify_notice"
1714
- msgstr ""
1715
-
1716
- #: app/views/admin/essence_files/edit.html.erb:21
1717
- #: app/views/admin/essence_files/edit.html.erb:41
1718
- #: app/views/admin/essence_files/edit.html.erb:69
1719
- msgid "width"
1720
- msgstr ""
1721
-
1722
- #: app/helpers/alchemy_helper.rb:844
1723
- msgid "yes"
1724
- msgstr ""
1725
-
1726
- #: app/views/admin/pictures/_picture.html.erb:27
1727
- msgid "zoom_image"
1728
- msgstr ""
1729
-
1730
- msgid "Leave Alchemy"
1731
- msgstr ""
1732
-
1733
- msgid "leave"
1734
- msgstr ""
1735
-
1736
- msgid "You are about to leave Alchemy."
1737
- msgstr ""
1738
-
1739
- msgid "Do you want to"
1740
- msgstr ""
1741
-
1742
- msgid "stay logged in"
1743
- msgstr ""
1744
-
1745
- msgid "or to completly"
1746
- msgstr ""
1747
-
1748
- msgid "Please wait. Flash® is loading..."
1749
- msgstr ""