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
data/locale/en/alchemy.po DELETED
@@ -1,1745 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: version 2.0\n"
4
- "POT-Creation-Date: 2011-07-12 20:35+0200\n"
5
- "PO-Revision-Date: \n"
6
- "Last-Translator: Thomas von Deyen <thomas@vondeyen.com>\n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Poedit-Language: English\n"
11
- "X-Poedit-Country: UNITED KINGDOM\n"
12
-
13
- #: app/views/admin/pages/_create_language_form.html.erb:36
14
- msgid "%{language}_as_new_language"
15
- msgstr "Create %{language} as a new language tree"
16
-
17
- #: app/views/admin/partials/_upload_form.html.erb:27
18
- msgid ""
19
- "<a href=\"http://get.adobe.com/flashplayer\" target=\"_blank\">%{value}</a>"
20
- msgstr ""
21
-
22
- #: app/views/admin/pages/index.html.erb:5
23
- #: app/views/admin/pages/layoutpages.html.erb:5
24
- msgid "Active Pages"
25
- msgstr ""
26
-
27
- #: app/views/admin/pages/layoutpages.html.erb:46
28
- #: app/views/admin/pages/layoutpages.html.erb:51
29
- #: app/views/admin/pages/layoutpages.html.erb:53
30
- msgid "Add global page"
31
- msgstr ""
32
-
33
- #: app/views/admin/partials/_upload_form.html.erb:27
34
- msgid "Adobe Website"
35
- msgstr ""
36
-
37
- #: app/views/admin/index.html.erb:65
38
- msgid ""
39
- "Alchemy is open software and itself uses open software and free resources:"
40
- msgstr ""
41
-
42
- #: locale/model_attributes.rb:1
43
- msgid "Attachment"
44
- msgstr "File"
45
-
46
- #: locale/model_attributes.rb:6
47
- msgid "Attachment|Content type"
48
- msgstr "Filetype"
49
-
50
- #: locale/model_attributes.rb:4
51
- msgid "Attachment|Created at"
52
- msgstr "Created At"
53
-
54
- #: locale/model_attributes.rb:3
55
- msgid "Attachment|Filename"
56
- msgstr "Filename"
57
-
58
- #: locale/model_attributes.rb:2
59
- msgid "Attachment|Name"
60
- msgstr "Name"
61
-
62
- #: locale/model_attributes.rb:5
63
- msgid "Attachment|Size"
64
- msgstr "Filesize"
65
-
66
- #: app/helpers/alchemy_helper.rb:871 app/helpers/alchemy_helper.rb:926
67
- msgid "Choose page"
68
- msgstr ""
69
-
70
- #: app/controllers/admin/trash_controller.rb:15
71
- msgid "Cleared trash"
72
- msgstr ""
73
-
74
- #: app/views/admin/pictures/_picture.html.erb:35
75
- msgid "Click to rename"
76
- msgstr ""
77
-
78
- #: app/views/admin/pages/edit.html.erb:143
79
- #: app/views/admin/pages/edit.html.erb:150
80
- #: app/views/admin/pages/index.html.erb:71
81
- #: app/views/admin/pages/layoutpages.html.erb:61
82
- msgid "Clipboard"
83
- msgstr ""
84
-
85
- #: app/controllers/admin/pages_controller.rb:41 app/models/page.rb:396
86
- msgid "Copy"
87
- msgstr ""
88
-
89
- #: app/views/admin/partials/_upload_form.html.erb:24
90
- msgid "Could not load Adobe Flash® Plugin!"
91
- msgstr ""
92
-
93
- #: app/views/admin/index.html.erb:25
94
- msgid "Currently locked pages"
95
- msgstr ""
96
-
97
- #: app/models/language.rb:35
98
- msgid "Defaut language has to be public"
99
- msgstr ""
100
-
101
- #: app/views/admin/pictures/_picture.html.erb:14
102
- msgid "Delete image"
103
- msgstr "Remove this image."
104
-
105
- #: app/views/admin/clipboard/index.html.erb:15
106
- msgid "Do you really want to clear the clipboard?"
107
- msgstr ""
108
-
109
- #: app/views/admin/trash/index.html.erb:16
110
- msgid "Do you really want to clear the trash?"
111
- msgstr ""
112
-
113
- #: app/views/essences/_essence_text_editor.html.erb:50
114
- msgid "Do you really want to delete this content?"
115
- msgstr ""
116
-
117
- #: app/views/admin/trash/index.html.erb:9
118
- msgid "Drag an element over to the element window to restore it."
119
- msgstr ""
120
-
121
- #: app/views/essences/_essence_picture_tools.html.erb:6
122
- #: app/views/essences/_essence_picture_tools.html.erb:10
123
- msgid "Edit Picturemask"
124
- msgstr ""
125
-
126
- #: app/views/admin/elements/new.html.erb:18 locale/model_attributes.rb:14
127
- msgid "Element"
128
- msgstr ""
129
-
130
- #: app/views/admin/elements/trash.rjs:2
131
- msgid "Element trashed"
132
- msgstr ""
133
-
134
- #: app/views/admin/pages/edit.html.erb:119
135
- msgid "Elements"
136
- msgstr ""
137
-
138
- #: locale/model_attributes.rb:16
139
- msgid "Element|Display name"
140
- msgstr "Name"
141
-
142
- #: locale/model_attributes.rb:15
143
- msgid "Element|Name"
144
- msgstr "Name"
145
-
146
- #: locale/model_attributes.rb:17
147
- msgid "Element|Public"
148
- msgstr "visible"
149
-
150
- #: app/views/admin/partials/_upload_form.html.erb:32
151
- msgid "Error with the Flash® Uploader!"
152
- msgstr ""
153
-
154
- #: app/views/elements/_searchresult_view.html.erb:22
155
- msgid "Excerpt"
156
- msgstr ""
157
-
158
- #: app/views/admin/pages/index.html.erb:93
159
- msgid "Explain|Sitemap|Dragndrop sorting"
160
- msgstr ""
161
- "Tip: To order pages hold the page icon with the mouse and drag it to its new "
162
- "position."
163
-
164
- #: app/controllers/admin/attachments_controller.rb:54
165
- msgid "File %{name} uploaded succesfully"
166
- msgstr ""
167
-
168
- #: app/controllers/admin/attachments_controller.rb:78
169
- msgid "File renamed successfully from: '%{from}' to '%{to}'"
170
- msgstr ""
171
-
172
- #: app/controllers/admin/attachments_controller.rb:62
173
- msgid "File upload error: %{error}"
174
- msgstr ""
175
-
176
- #: app/controllers/admin/attachments_controller.rb:94
177
- msgid "File: '%{name}' deleted successfully"
178
- msgstr ""
179
-
180
- #: app/views/admin/pages/index.html.erb:47
181
- #: app/views/admin/pages/index.html.erb:49
182
- msgid "Flush page cache"
183
- msgstr ""
184
-
185
- #: app/views/admin/pictures/index.html.erb:28
186
- #: app/views/admin/pictures/index.html.erb:30
187
- msgid "Flush picture cache"
188
- msgstr ""
189
-
190
- #: app/views/mailer/new_alchemy_user_mail.erb:13
191
- msgid "Have much fun with Alchemy!"
192
- msgstr ""
193
-
194
- #: app/helpers/alchemy_helper.rb:704
195
- msgid "Hide childpages"
196
- msgstr ""
197
-
198
- #: app/views/admin/partials/_upload_form.html.erb:20
199
- msgid ""
200
- "If you have any problems using the Flash® uploader you can switch to the "
201
- "%{link}"
202
- msgstr ""
203
-
204
- #: app/views/essences/_essence_picture_editor.html.erb:23
205
- msgid "Image missing"
206
- msgstr ""
207
-
208
- #: app/controllers/admin/pictures_controller.rb:114
209
- msgid "Image renamed successfully from: '%{from}' to '%{to}'"
210
- msgstr ""
211
-
212
- #: app/views/admin/pictures/_filter_and_size_bar.html.erb:54
213
- msgid "Image size"
214
- msgstr "Imagesize"
215
-
216
- #: app/views/admin/essence_pictures/update.rjs:2
217
- msgid "Image updated successfully"
218
- msgstr ""
219
-
220
- #: app/controllers/admin/pictures_controller.rb:125
221
- msgid "Image: '%{name}' deleted successfully"
222
- msgstr "Page: '%{name}' deleted."
223
-
224
- #: app/controllers/admin/elements_controller.rb:100
225
- msgid "Index Error after saving Element. Please try again!"
226
- msgstr ""
227
-
228
- #: locale/model_attributes.rb:50
229
- msgid "Language"
230
- msgstr "Language"
231
-
232
- #: app/controllers/admin/languages_controller.rb:37
233
- msgid "Language '%{name}' created"
234
- msgstr "Language '%{name}' created."
235
-
236
- #: app/controllers/admin/languages_controller.rb:56
237
- msgid "Language '%{name}' destroyed"
238
- msgstr "Language '%{name}' deleted."
239
-
240
- #: app/controllers/admin/languages_controller.rb:47
241
- msgid "Language '%{name}' updated"
242
- msgstr "Language '%{name}' updated"
243
-
244
- #: app/views/admin/pages/index.html.erb:37
245
- #: app/views/admin/pages/layoutpages.html.erb:38
246
- msgid "Language tree"
247
- msgstr ""
248
-
249
- #: locale/model_attributes.rb:52
250
- msgid "Language|Code"
251
- msgstr "Languagecode"
252
-
253
- #: locale/model_attributes.rb:56
254
- msgid "Language|Default"
255
- msgstr "Default"
256
-
257
- #: locale/model_attributes.rb:53
258
- msgid "Language|Frontpage name"
259
- msgstr "Name of frontpage"
260
-
261
- #: locale/model_attributes.rb:51
262
- msgid "Language|Name"
263
- msgstr "Name"
264
-
265
- #: locale/model_attributes.rb:54
266
- msgid "Language|Page layout"
267
- msgstr "Pagetype of frontpage"
268
-
269
- #: locale/model_attributes.rb:55
270
- msgid "Language|Public"
271
- msgstr "public"
272
-
273
- #: app/views/admin/essence_pictures/edit.html.erb:32
274
- #: app/views/admin/essence_pictures/edit.html.erb:49
275
- msgid "Layout default"
276
- msgstr ""
277
-
278
- #: app/views/layouts/alchemy.html.erb:53
279
- msgid "Logged in as"
280
- msgstr ""
281
-
282
- #: app/views/admin/elements/_element.html.erb:16
283
- msgid "Mandatory"
284
- msgstr "Mandatory fields"
285
-
286
- #: app/views/admin/pages/index.html.erb:86
287
- #: app/views/admin/pages/new.html.erb:27
288
- msgid "Name"
289
- msgstr ""
290
-
291
- #: app/views/admin/elements/new.html.erb:6
292
- msgid "New"
293
- msgstr ""
294
-
295
- #: app/views/admin/pages/edit.html.erb:127
296
- #: app/views/admin/pages/edit.html.erb:128
297
- #: app/views/admin/pages/edit.html.erb:133
298
- msgid "New Element"
299
- msgstr ""
300
-
301
- #: app/views/admin/pages/new.html.erb:6
302
- msgid "New page"
303
- msgstr ""
304
-
305
- #: app/views/admin/pages/edit.html.erb:123
306
- #: app/views/admin/pages/edit.html.erb:181
307
- msgid "No"
308
- msgstr ""
309
-
310
- #: app/helpers/alchemy_helper.rb:222
311
- msgid "No EssenceType given"
312
- msgstr ""
313
-
314
- #: app/views/admin/clipboard/index.html.erb:3
315
- msgid "No items in your clipboard"
316
- msgstr ""
317
-
318
- #: app/views/admin/essence_pictures/edit.html.erb:57
319
- msgid "None"
320
- msgstr ""
321
-
322
- #: app/views/admin/pages/_external_link.html.erb:32
323
- #: app/views/admin/pages/_file_link.html.erb:30
324
- #: app/views/admin/pages/_internal_link.html.erb:23
325
- msgid "Open Link in"
326
- msgstr ""
327
-
328
- #: app/views/admin/pages/new.html.erb:19
329
- #: app/views/elements/_searchresult_view.html.erb:30
330
- #: locale/model_attributes.rb:19
331
- msgid "Page"
332
- msgstr "Page"
333
-
334
- #: app/controllers/admin/pages_controller.rb:99
335
- msgid "Page %{name} deleted"
336
- msgstr "Page: '%{name}' deleted."
337
-
338
- #: app/controllers/admin/pages_controller.rb:84
339
- msgid "Page %{name} saved"
340
- msgstr "Page: '%{name}' saved."
341
-
342
- #: app/views/admin/pages/edit.html.erb:113
343
- msgid "Page Preview"
344
- msgstr ""
345
-
346
- #: app/controllers/admin/pages_controller.rb:258
347
- msgid "Page cache flushed"
348
- msgstr ""
349
-
350
- #: app/views/admin/pages/_page_for_links.html.erb:23
351
- #: app/views/admin/pages/_page_infos.html.erb:1
352
- #: app/views/admin/pages/_page_status.html.erb:6
353
- msgid "Page not public"
354
- msgstr ""
355
-
356
- #: app/views/admin/pages/_page_for_links.html.erb:25
357
- #: app/views/admin/pages/_page_infos.html.erb:3
358
- #: app/views/admin/pages/_page_status.html.erb:8
359
- msgid "Page not restricted"
360
- msgstr ""
361
-
362
- #: app/views/admin/pages/_page_for_links.html.erb:24
363
- #: app/views/admin/pages/_page_infos.html.erb:2
364
- #: app/views/admin/pages/_page_status.html.erb:7
365
- msgid "Page not visible"
366
- msgstr ""
367
-
368
- #: app/views/admin/pages/_page_for_links.html.erb:23
369
- #: app/views/admin/pages/_page_infos.html.erb:1
370
- #: app/views/admin/pages/_page_status.html.erb:6
371
- msgid "Page public"
372
- msgstr ""
373
-
374
- #: app/views/admin/pages/_page_for_links.html.erb:25
375
- #: app/views/admin/pages/_page_infos.html.erb:3
376
- #: app/views/admin/pages/_page_status.html.erb:8
377
- msgid "Page restricted"
378
- msgstr ""
379
-
380
- #: app/views/admin/pages/_page_for_links.html.erb:24
381
- #: app/views/admin/pages/_page_infos.html.erb:2
382
- #: app/views/admin/pages/_page_status.html.erb:7
383
- msgid "Page visible"
384
- msgstr ""
385
-
386
- #: app/controllers/admin/pages_controller.rb:231
387
- msgid "Pages order saved"
388
- msgstr ""
389
-
390
- #: locale/model_attributes.rb:35
391
- msgid "Page|Created at"
392
- msgstr "Created At"
393
-
394
- #: locale/model_attributes.rb:32
395
- msgid "Page|Language"
396
- msgstr "Language"
397
-
398
- #: locale/model_attributes.rb:29
399
- msgid "Page|Locked"
400
- msgstr "This page is locked by another user."
401
-
402
- #: locale/model_attributes.rb:30
403
- msgid "Page|Locked by"
404
- msgstr "locked by"
405
-
406
- #: locale/model_attributes.rb:24
407
- msgid "Page|Meta description"
408
- msgstr "Description"
409
-
410
- #: locale/model_attributes.rb:25
411
- msgid "Page|Meta keywords"
412
- msgstr "Keywords"
413
-
414
- #: app/views/admin/pages/_new_page_form.html.erb:16
415
- #: locale/model_attributes.rb:20
416
- msgid "Page|Name"
417
- msgstr "Name"
418
-
419
- #: app/views/admin/pages/_new_page_form.html.erb:8
420
- #: locale/model_attributes.rb:23
421
- msgid "Page|Page layout"
422
- msgstr "Pagetype"
423
-
424
- #: locale/model_attributes.rb:27
425
- msgid "Page|Public"
426
- msgstr "public"
427
-
428
- #: locale/model_attributes.rb:26
429
- msgid "Page|Resctricted"
430
- msgstr "restricted"
431
-
432
- #: locale/model_attributes.rb:34
433
- msgid "Page|Robot follow"
434
- msgstr "robot may follow links."
435
-
436
- #: locale/model_attributes.rb:33
437
- msgid "Page|Robot index"
438
- msgstr "allow robot to index."
439
-
440
- #: locale/model_attributes.rb:31
441
- msgid "Page|Sitemap"
442
- msgstr "show in sitemap"
443
-
444
- #: locale/model_attributes.rb:22
445
- msgid "Page|Title"
446
- msgstr "Title"
447
-
448
- #: locale/model_attributes.rb:36
449
- msgid "Page|Updated at"
450
- msgstr "Created At"
451
-
452
- #: locale/model_attributes.rb:21
453
- msgid "Page|Urlname"
454
- msgstr "Urlname"
455
-
456
- #: locale/model_attributes.rb:28
457
- msgid "Page|Visible"
458
- msgstr "show in navigation"
459
-
460
- #: app/views/mailer/new_alchemy_user_mail.erb:10
461
- msgid "Password"
462
- msgstr "Password"
463
-
464
- #: app/views/admin/elements/new.html.erb:7
465
- #: app/views/admin/pages/new.html.erb:7
466
- msgid "Paste from clipboard"
467
- msgstr "Paste from clipboard"
468
-
469
- #: locale/model_attributes.rb:8
470
- msgid "Picture"
471
- msgstr "Picture"
472
-
473
- #: app/controllers/admin/pictures_controller.rb:71
474
- msgid "Picture %{name} uploaded succesfully"
475
- msgstr ""
476
-
477
- #: app/controllers/admin/pictures_controller.rb:137
478
- msgid "Picture cache flushed"
479
- msgstr ""
480
-
481
- #: locale/model_attributes.rb:10
482
- msgid "Picture|Image filename"
483
- msgstr "Filename"
484
-
485
- #: locale/model_attributes.rb:12
486
- msgid "Picture|Image height"
487
- msgstr "Imageheight"
488
-
489
- #: locale/model_attributes.rb:11
490
- msgid "Picture|Image width"
491
- msgstr "Imagewidth"
492
-
493
- #: locale/model_attributes.rb:9
494
- msgid "Picture|Name"
495
- msgstr "Name"
496
-
497
- #: app/views/admin/signup.html.erb:7
498
- msgid "Please Signup"
499
- msgstr ""
500
- "In order to manage your site, you first have to signup an admin account!"
501
-
502
- #: locale/missing_translations.rb:4
503
- msgid "Please check contents below."
504
- msgstr "Please check marked fields below"
505
-
506
- #: app/helpers/alchemy_helper.rb:798 app/helpers/alchemy_helper.rb:904
507
- #: app/views/admin/users/_table.html.erb:4 lib/alchemy/page_layout.rb:39
508
- msgid "Please choose"
509
- msgstr ""
510
-
511
- #: app/models/page.rb:13
512
- msgid "Please choose a page layout."
513
- msgstr ""
514
-
515
- #: app/models/element.rb:13
516
- msgid "Please choose an element."
517
- msgstr ""
518
-
519
- #: app/views/admin/partials/_upload_form.html.erb:25
520
- msgid "Please consider that you have at least version 9.0.28 installed."
521
- msgstr ""
522
-
523
- #: app/controllers/alchemy_controller.rb:183
524
- msgid "Please log in"
525
- msgstr ""
526
-
527
- #: app/views/admin/partials/_upload_form.html.erb:34
528
- msgid "Please use this alternative uploader instead."
529
- msgstr ""
530
-
531
- #: app/views/admin/pages/edit.html.erb:78
532
- msgid "Publish page"
533
- msgstr ""
534
-
535
- #: app/views/admin/index.html.erb:88
536
- msgid "Read the License"
537
- msgstr ""
538
-
539
- #: app/views/admin/pages/_page.html.erb:94
540
- #: app/views/admin/pages/_sitemap.html.erb:82
541
- msgid "Redirects to"
542
- msgstr ""
543
-
544
- #: app/views/admin/clipboard/index.html.erb:10
545
- msgid "Remove item from clipboard"
546
- msgstr ""
547
-
548
- #: app/views/essences/_essence_text_editor.html.erb:53
549
- msgid "Remove this content"
550
- msgstr ""
551
-
552
- #: app/views/admin/essence_pictures/crop.html.erb:14
553
- #: app/views/admin/essence_pictures/crop.html.erb:16
554
- msgid "Reset Imagemask"
555
- msgstr ""
556
-
557
- #: app/helpers/alchemy_helper.rb:1120
558
- msgid "Select an content"
559
- msgstr ""
560
-
561
- #: app/views/admin/essence_pictures/edit.html.erb:55
562
- msgid "Select style"
563
- msgstr ""
564
-
565
- #: app/views/admin/users/_table.html.erb:42
566
- msgid "Send email with credentials"
567
- msgstr ""
568
-
569
- #: app/views/admin/pages/edit.html.erb:100
570
- #: app/views/admin/pages/edit.html.erb:104
571
- msgid "Show Elements Window"
572
- msgstr ""
573
-
574
- #: app/views/admin/pages/edit.html.erb:89
575
- #: app/views/admin/pages/edit.html.erb:93
576
- msgid "Show Preview Window"
577
- msgstr ""
578
-
579
- #: app/helpers/alchemy_helper.rb:701
580
- msgid "Show childpages"
581
- msgstr ""
582
-
583
- #: app/views/admin/pages/edit.html.erb:144
584
- #: app/views/admin/pages/index.html.erb:75
585
- #: app/views/admin/pages/index.html.erb:77
586
- #: app/views/admin/pages/layoutpages.html.erb:65
587
- #: app/views/admin/pages/layoutpages.html.erb:67
588
- msgid "Show clipboard"
589
- msgstr ""
590
-
591
- #: app/views/admin/pages/edit.html.erb:160
592
- #: app/views/admin/pages/edit.html.erb:161
593
- msgid "Show trash"
594
- msgstr ""
595
-
596
- #: app/views/admin/essence_pictures/edit.html.erb:27
597
- msgid "Size"
598
- msgstr ""
599
-
600
- #: app/views/admin/pages/index.html.erb:61
601
- #: app/views/admin/pages/index.html.erb:63
602
- msgid "Sort pages"
603
- msgstr ""
604
-
605
- #: app/views/admin/pages/index.html.erb:87
606
- msgid "Status"
607
- msgstr ""
608
-
609
- #: app/views/admin/contents/create.rjs:73
610
- msgid "Successfully added %{content}"
611
- msgstr "Succesfully added %{content}"
612
-
613
- #: app/controllers/admin/contents_controller.rb:63
614
- msgid "Successfully deleted %{content}"
615
- msgstr "Succesfully deleted %{content}"
616
-
617
- #: app/controllers/admin/contents_controller.rb:49
618
- msgid "Successfully saved content position"
619
- msgstr ""
620
-
621
- #: app/views/admin/partials/_upload_form.html.erb:46
622
- msgid "Switch to Flash® Uploader"
623
- msgstr ""
624
-
625
- #: app/views/elements/_sitemap_editor.html.erb:2
626
- msgid "The sitemap is autogenerated."
627
- msgstr ""
628
-
629
- #: app/views/elements/_searchresult_editor.html.erb:1
630
- msgid "This element displays the search and the searchresults."
631
- msgstr ""
632
-
633
- #: locale/missing_translations.rb:2
634
- msgid "This element has unsaved changes. Do you really want to fold it?"
635
- msgstr ""
636
-
637
- #: app/controllers/admin/pages_controller.rb:63
638
- msgid "This page is locked by %{name}"
639
- msgstr ""
640
-
641
- #: app/views/admin/pages/_internal_link.html.erb:15
642
- msgid "Title"
643
- msgstr ""
644
-
645
- #: app/views/mailer/new_alchemy_user_mail.erb:3
646
- msgid "To manage your website open a browser and go to"
647
- msgstr ""
648
-
649
- #: app/views/admin/pages/edit.html.erb:165 locale/missing_translations.rb:3
650
- msgid "Trash"
651
- msgstr ""
652
-
653
- #: app/views/admin/pages/configure_external.html.erb:29
654
- msgid "URL"
655
- msgstr ""
656
-
657
- #: app/models/page.rb:15
658
- msgid "URL-Name already token"
659
- msgstr ""
660
-
661
- #: locale/model_attributes.rb:38
662
- msgid "User"
663
- msgstr "User"
664
-
665
- #: app/controllers/admin/users_controller.rb:42
666
- msgid "User: '%{name}' created"
667
- msgstr "User: '%{name}' created"
668
-
669
- #: app/controllers/admin/users_controller.rb:70
670
- msgid "User: '%{name}' deleted"
671
- msgstr "User: '%{name}' deleted"
672
-
673
- #: app/controllers/admin/users_controller.rb:61
674
- msgid "User: '%{name}' updated"
675
- msgstr "User: '%{name}' updated"
676
-
677
- #: app/views/mailer/new_alchemy_user_mail.erb:9
678
- msgid "Username"
679
- msgstr "Username"
680
-
681
- #: locale/model_attributes.rb:41
682
- msgid "User|Email"
683
- msgstr "Email"
684
-
685
- #: locale/model_attributes.rb:43
686
- msgid "User|Firstname"
687
- msgstr "Firstname"
688
-
689
- #: locale/model_attributes.rb:40
690
- msgid "User|Gender"
691
- msgstr "Gender"
692
-
693
- #: locale/model_attributes.rb:45
694
- msgid "User|Language"
695
- msgstr "Language"
696
-
697
- #: locale/model_attributes.rb:44
698
- msgid "User|Lastname"
699
- msgstr "Lastname"
700
-
701
- #: locale/model_attributes.rb:42
702
- msgid "User|Login"
703
- msgstr "Username"
704
-
705
- #: locale/model_attributes.rb:39
706
- msgid "User|Name"
707
- msgstr "Name"
708
-
709
- #: locale/model_attributes.rb:47
710
- msgid "User|Password"
711
- msgstr "Password"
712
-
713
- #: locale/model_attributes.rb:48
714
- msgid "User|Password confirmation"
715
- msgstr "Password confirmation"
716
-
717
- #: locale/model_attributes.rb:46
718
- msgid "User|Role"
719
- msgstr "Userrole"
720
-
721
- #: app/controllers/admin/elements_controller.rb:84
722
- msgid "Validation failed."
723
- msgstr ""
724
-
725
- #: app/views/admin/index.html.erb:64
726
- msgid "Version"
727
- msgstr ""
728
-
729
- #: app/views/admin/attachments/_attachment.html.erb:11
730
- msgid "View File"
731
- msgstr ""
732
-
733
- #: app/views/admin/pages/edit.html.erb:49
734
- #: app/views/admin/pages/edit.html.erb:52
735
- msgid "Visit page"
736
- msgstr ""
737
-
738
- #: app/views/admin/pages/edit.html.erb:120
739
- #: app/views/admin/pages/edit.html.erb:178
740
- msgid "Warning!"
741
- msgstr ""
742
-
743
- #: app/helpers/alchemy_helper.rb:320
744
- msgid "Warning: Content '%{contentname}' is missing its description."
745
- msgstr ""
746
-
747
- #: app/views/admin/elements/_element_head.html.erb:5
748
- msgid "Warning: Element '%{elementname}' is missing its description."
749
- msgstr ""
750
-
751
- #: app/views/admin/index.html.erb:8
752
- msgid "Welcome back, %{name}"
753
- msgstr ""
754
-
755
- #: app/views/admin/signup.html.erb:5
756
- #: app/views/mailer/new_alchemy_user_mail.erb:1
757
- msgid "Welcome to Alchemy"
758
- msgstr "Welcome to Alchemy"
759
-
760
- #: app/views/admin/index.html.erb:49
761
- msgid "Who else is online"
762
- msgstr ""
763
-
764
- #: app/views/admin/pages/edit.html.erb:122
765
- #: app/views/admin/pages/edit.html.erb:180
766
- msgid "Yes"
767
- msgstr ""
768
-
769
- #: app/controllers/alchemy_controller.rb:172
770
- msgid "You are not authorized"
771
- msgstr "You are not authorized."
772
-
773
- #: app/views/admin/partials/_upload_form.html.erb:27
774
- msgid "You can get the latest version on the %{link}"
775
- msgstr ""
776
-
777
- #: locale/missing_translations.rb:1
778
- msgid ""
779
- "You have unsaved elements on this page. Do you really want to clear the page "
780
- "cache?"
781
- msgstr ""
782
-
783
- #: app/views/admin/pages/edit.html.erb:179
784
- msgid ""
785
- "You have unsaved elements on this page. Do you really want to leave this "
786
- "page?"
787
- msgstr ""
788
-
789
- #: app/views/admin/pages/edit.html.erb:121
790
- msgid ""
791
- "You have unsaved elements. Do you really want to close the elements window?"
792
- msgstr ""
793
-
794
- #: app/views/admin/partials/_upload_form.html.erb:16
795
- msgid ""
796
- "You may upload %{file_types_description} with following extensions: "
797
- "%{file_types}"
798
- msgstr ""
799
-
800
- #: app/views/admin/partials/_upload_form.html.erb:14
801
- msgid "You may upload any file"
802
- msgstr ""
803
-
804
- #: app/views/admin/index.html.erb:9
805
- msgid "You were last time online at %{time}"
806
- msgstr ""
807
-
808
- #: app/models/mailer.rb:22
809
- msgid "Your Alchemy Login"
810
- msgstr ""
811
-
812
- #: app/views/mailer/new_alchemy_user_mail.erb:7
813
- msgid "Your credentials are"
814
- msgstr ""
815
-
816
- #: app/views/admin/index.html.erb:12
817
- msgid "Your last updated pages"
818
- msgstr ""
819
-
820
- #: app/views/admin/trash/index.html.erb:4
821
- msgid "Your trash is empty"
822
- msgstr ""
823
-
824
- #: app/views/admin/essence_files/edit.html.erb:10
825
- #: app/views/admin/essence_pictures/edit.html.erb:49
826
- msgid "above"
827
- msgstr "above"
828
-
829
- #: app/views/admin/elements/_new_element_form.html.erb:19
830
- msgid "add"
831
- msgstr "add"
832
-
833
- #: app/helpers/alchemy_helper.rb:1116 app/helpers/alchemy_helper.rb:1132
834
- msgid "add new content"
835
- msgstr ""
836
-
837
- #: app/views/admin/elements/_picture_editor.html.erb:14
838
- msgid "add_image_to_element"
839
- msgstr "Add an image."
840
-
841
- #: app/views/admin/essence_files/edit.html.erb:9
842
- #: app/views/admin/essence_pictures/edit.html.erb:47
843
- msgid "align_in_text"
844
- msgstr "Alignment in text"
845
-
846
- #: app/views/admin/partials/_per_page_links.html.erb:5
847
- msgid "all"
848
- msgstr "all"
849
-
850
- #: app/views/admin/essence_files/edit.html.erb:49
851
- msgid "allow_fullscreen"
852
- msgstr "Allow fullscreen"
853
-
854
- #: app/views/admin/pages/_contactform_links.html.erb:56
855
- #: app/views/admin/pages/_external_link.html.erb:41
856
- #: app/views/admin/pages/_file_link.html.erb:39
857
- #: app/views/admin/pages/_internal_link.html.erb:34
858
- msgid "apply"
859
- msgstr "apply"
860
-
861
- #: app/views/essences/_essence_file_editor.html.erb:16
862
- #: app/views/essences/_essence_file_editor.html.erb:21
863
- #: app/views/essences/_essence_file_editor.html.erb:40
864
- #: app/views/essences/_essence_file_editor.html.erb:45
865
- msgid "assign_file"
866
- msgstr "Assign a file."
867
-
868
- #: app/views/essences/_essence_file_editor.html.erb:28
869
- msgid "assign_file_from_archive"
870
- msgstr "assign a file from your archive"
871
-
872
- #: app/views/admin/elements/_add_content.html.erb:11
873
- #: app/views/admin/pictures/_picture_to_assign.html.erb:26
874
- msgid "assign_image"
875
- msgstr "Assign an image"
876
-
877
- #: app/views/admin/essence_files/edit.html.erb:53
878
- msgid "auto_play"
879
- msgstr "Play movie after load"
880
-
881
- #: app/views/admin/pictures/_filter_and_size_bar.html.erb:50
882
- msgid "big_thumbnails"
883
- msgstr "Big thumbnails"
884
-
885
- #: app/views/admin/partials/_upload_form.html.erb:88
886
- msgid "browse"
887
- msgstr "browse"
888
-
889
- #: app/views/admin/pages/index.html.erb:96
890
- #: app/views/admin/pictures/index.html.erb:50
891
- msgid "cancel"
892
- msgstr ""
893
-
894
- #: app/views/admin/elements/index.rjs:9
895
- msgid "choose_element_as_target"
896
- msgstr "Please choose an element as target"
897
-
898
- #: app/views/admin/elements/index.rjs:6
899
- msgid "choose_element_to_link"
900
- msgstr "Please choose an element"
901
-
902
- #: app/views/admin/pages/_file_link.html.erb:3
903
- msgid "choose_file_to_link"
904
- msgstr "Please choose a file to link"
905
-
906
- #: app/views/admin/clipboard/index.html.erb:15
907
- msgid "clear clipboard"
908
- msgstr ""
909
-
910
- #: app/views/admin/trash/index.html.erb:16
911
- msgid "clear trash"
912
- msgstr ""
913
-
914
- #: app/helpers/alchemy_helper.rb:790
915
- #: app/views/admin/partials/_remote_search_form.html.erb:30
916
- #: app/views/admin/partials/_search_form.html.erb:12
917
- msgid "click_to_show_all"
918
- msgstr "Click to show all again."
919
-
920
- #: app/views/admin/attachments/_attachment.html.erb:33
921
- msgid "confirm_to_delete_file"
922
- msgstr "Do you really want to delete this file from the server?"
923
-
924
- #: app/views/essences/_essence_picture_editor.html.erb:6
925
- msgid "confirm_to_delete_image"
926
- msgstr "Do you really want to delete this image from server?"
927
-
928
- #: app/views/admin/pictures/_picture.html.erb:6
929
- msgid "confirm_to_delete_image_from_server"
930
- msgstr "Do you really want to delete this image from the server?"
931
-
932
- #: app/views/admin/languages/_language.html.erb:12
933
- msgid "confirm_to_delete_language"
934
- msgstr ""
935
- "Do you really want to delete this language? All dependend pages will be "
936
- "deleted!"
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
- "Do you really want to delete this page? All contents will then be gone for "
944
- "ever!"
945
-
946
- #: app/views/admin/users/_user.html.erb:14
947
- msgid "confirm_to_delete_user"
948
- msgstr "Do you really want to delete this user?"
949
-
950
- #: app/views/admin/pages/_contactform_links.html.erb:36
951
- msgid "contactform_body"
952
- msgstr "Message Template"
953
-
954
- #: app/helpers/alchemy_helper.rb:169 app/helpers/alchemy_helper.rb:878
955
- #: app/helpers/alchemy_helper.rb:1005
956
- msgid "content_essence_not_found"
957
- msgstr "Content essence not found"
958
-
959
- #: app/helpers/alchemy_helper.rb:167 app/helpers/alchemy_helper.rb:876
960
- #: app/views/admin/contents/_missing.html.erb:5
961
- msgid "content_not_found"
962
- msgstr "Field for content not present."
963
-
964
- #: app/views/admin/pages/_create_language_form.html.erb:17
965
- msgid "copy"
966
- msgstr "copy"
967
-
968
- #: app/views/admin/elements/_element_foot.html.erb:23
969
- msgid "copy_element"
970
- msgstr "Copy this element."
971
-
972
- #: app/views/admin/pages/_layoutpage.html.erb:49
973
- #: app/views/admin/pages/_page.html.erb:51
974
- msgid "copy_page"
975
- msgstr "Copy page"
976
-
977
- #: app/views/admin/infos.html.erb:4
978
- msgid "copyright_notice"
979
- msgstr "&copy; 2007-2010 macabi GmbH"
980
-
981
- #: app/views/admin/contents/_missing.html.erb:7
982
- #: app/views/admin/pages/_new_page_form.html.erb:25
983
- msgid "create"
984
- msgstr "create"
985
-
986
- #: app/views/admin/languages/index.html.erb:11
987
- #: app/views/admin/languages/index.html.erb:16
988
- #: app/views/admin/languages/index.html.erb:19
989
- msgid "create_language"
990
- msgstr "Create a new language"
991
-
992
- #: app/views/admin/pages/_page.html.erb:75
993
- #: app/views/admin/pages/_page.html.erb:80
994
- #: app/views/admin/pages/_sitemap.html.erb:63
995
- #: app/views/admin/pages/_sitemap.html.erb:68
996
- msgid "create_page"
997
- msgstr "Create a new subpage."
998
-
999
- #: app/views/admin/users/index.html.erb:11
1000
- #: app/views/admin/users/index.html.erb:16
1001
- #: app/views/admin/users/index.html.erb:19
1002
- msgid "create_user"
1003
- msgstr "Create a new user."
1004
-
1005
- #: app/views/admin/pages/_layoutpage.html.erb:11
1006
- #: app/views/admin/pages/_page.html.erb:12
1007
- #: app/views/admin/pages/_sitemap.html.erb:12
1008
- msgid "created_at"
1009
- msgstr "Created at"
1010
-
1011
- #: app/views/admin/pages/_layoutpage.html.erb:20
1012
- #: app/views/admin/pages/_page.html.erb:21
1013
- #: app/views/admin/pages/_sitemap.html.erb:21
1014
- msgid "currently_edited_by"
1015
- msgstr "This page is currently locked by"
1016
-
1017
- #: app/views/admin/elements/_element_foot.html.erb:15
1018
- msgid "cut_element"
1019
- msgstr "Cut this element."
1020
-
1021
- #: app/views/admin/attachments/_attachment.html.erb:42
1022
- msgid "delete_file"
1023
- msgstr "Delete this file from server."
1024
-
1025
- #: app/views/essences/_essence_picture_editor.html.erb:14
1026
- msgid "delete_image"
1027
- msgstr "Remove this image."
1028
-
1029
- #: app/views/admin/languages/_language.html.erb:14
1030
- msgid "delete_language"
1031
- msgstr "Delete this language."
1032
-
1033
- #: app/views/admin/pages/_layoutpage.html.erb:64
1034
- #: app/views/admin/pages/_page.html.erb:66
1035
- #: app/views/admin/pages/_sitemap.html.erb:54
1036
- msgid "delete_page"
1037
- msgstr "Delete this page."
1038
-
1039
- #: app/views/admin/users/_user.html.erb:16
1040
- msgid "delete_user"
1041
- msgstr "Delete this user."
1042
-
1043
- #: app/helpers/admin/attachments_helper.rb:4
1044
- msgid "document"
1045
- msgstr "File"
1046
-
1047
- #: app/views/admin/attachments/new.html.erb:6
1048
- msgid "documents"
1049
- msgstr "Files"
1050
-
1051
- #: app/views/admin/attachments/_attachment.html.erb:26
1052
- msgid "download_file_'%{filename}'"
1053
- msgstr "Download file '%{filename}'"
1054
-
1055
- #: app/views/essences/_essence_picture_editor.html.erb:27
1056
- msgid "drag_to_sort"
1057
- msgstr "Drag'n'Drop to sort images"
1058
-
1059
- #: app/views/essences/_essence_file_editor.html.erb:54
1060
- #: app/views/essences/_essence_file_editor.html.erb:58
1061
- msgid "edit_file_properties"
1062
- msgstr "Edit Fileproperties"
1063
-
1064
- #: app/views/essences/_essence_picture_tools.html.erb:56
1065
- #: app/views/essences/_essence_picture_tools.html.erb:59
1066
- msgid "edit_image_properties"
1067
- msgstr "Edit image properties."
1068
-
1069
- #: app/views/admin/languages/_language.html.erb:23
1070
- #: app/views/admin/languages/_language.html.erb:30
1071
- msgid "edit_language"
1072
- msgstr "Edit language"
1073
-
1074
- #: app/views/admin/pages/_layoutpage.html.erb:75
1075
- #: app/views/admin/pages/_page.html.erb:103
1076
- #: app/views/admin/pages/_sitemap.html.erb:91
1077
- msgid "edit_page"
1078
- msgstr "Edit this page."
1079
-
1080
- #: app/views/admin/pages/_layoutpage.html.erb:31
1081
- #: app/views/admin/pages/_layoutpage.html.erb:35
1082
- #: app/views/admin/pages/_page.html.erb:33
1083
- #: app/views/admin/pages/_page.html.erb:37
1084
- #: app/views/admin/pages/_sitemap.html.erb:33
1085
- #: app/views/admin/pages/_sitemap.html.erb:37
1086
- #: app/views/admin/pages/edit.html.erb:61
1087
- #: app/views/admin/pages/edit.html.erb:65
1088
- msgid "edit_page_properties"
1089
- msgstr "Edit the page properties."
1090
-
1091
- #: app/views/admin/users/_user.html.erb:25
1092
- #: app/views/admin/users/_user.html.erb:31
1093
- msgid "edit_user"
1094
- msgstr "Edit this users properties."
1095
-
1096
- #: app/views/elements/_editor_not_found.html.erb:3
1097
- msgid "element_editor_not_found"
1098
- msgstr "Error within this Element"
1099
-
1100
- #: app/views/admin/elements/_new_element_form.html.erb:11
1101
- msgid "element_of_type"
1102
- msgstr "Element"
1103
-
1104
- #: app/views/admin/elements/update.rjs:1
1105
- msgid "element_saved"
1106
- msgstr "Saved element."
1107
-
1108
- #: app/views/admin/pages/_external_link.html.erb:3
1109
- msgid "enter_external_link"
1110
- msgstr "Please enter the URL you want to link with"
1111
-
1112
- #: app/views/admin/essence_pictures/crop.html.erb:21
1113
- msgid "explain cropping"
1114
- msgstr ""
1115
- "You may move and resize the frame to set the mask. If you are satisfied then "
1116
- "click save."
1117
-
1118
- #: app/views/admin/pages/edit.html.erb:75
1119
- msgid "explain_publishing"
1120
- msgstr "Publish the page and remove the cached version from the server."
1121
-
1122
- #: app/views/admin/index.html.erb:35 app/views/admin/pages/edit.html.erb:18
1123
- #: app/views/admin/pages/edit.html.erb:37
1124
- #: app/views/admin/pages/index.html.erb:14
1125
- #: app/views/admin/pages/layoutpages.html.erb:14
1126
- msgid "explain_unlocking"
1127
- msgstr "Leave page and unlock it for other users."
1128
-
1129
- #: app/views/admin/partials/_upload_form.html.erb:9
1130
- msgid "explain_upload.footnote_%{name}"
1131
- msgstr ""
1132
- "HINT! Hold the ctrl-button (cmd-button on a Mac) while clicking the %{name} "
1133
- "with the mouse to upload multiple %{name} at once."
1134
-
1135
- #: app/views/admin/partials/_upload_form.html.erb:3
1136
- msgid "explain_upload.intro_%{name}"
1137
- msgstr "This is how the %{name} upload works"
1138
-
1139
- #: app/views/admin/partials/_upload_form.html.erb:5
1140
- msgid "explain_upload.step1_%{name}"
1141
- msgstr "Click the 'browse' button and navigate to your %{name} folder"
1142
-
1143
- #: app/views/admin/partials/_upload_form.html.erb:6
1144
- msgid "explain_upload.step2_%{name}"
1145
- msgstr "Select all the %{name} you want to upload"
1146
-
1147
- #: app/views/admin/partials/_upload_form.html.erb:7
1148
- msgid "explain_upload.step3"
1149
- msgstr "Click the 'open' button. The upload starts!"
1150
-
1151
- #: app/models/user.rb:56
1152
- msgid "female"
1153
- msgstr "Female"
1154
-
1155
- #: app/views/admin/pages/_file_link.html.erb:8
1156
- msgid "file"
1157
- msgstr "File"
1158
-
1159
- #: app/controllers/admin/attachments_controller.rb:84
1160
- msgid "file_rename_error"
1161
- msgstr "Error renaming file."
1162
-
1163
- #: app/views/admin/attachments/index.html.erb:23
1164
- #: app/views/admin/attachments/new.html.erb:8
1165
- msgid "files"
1166
- msgstr "files"
1167
-
1168
- #: app/views/admin/essence_files/edit.html.erb:25
1169
- #: app/views/admin/essence_files/edit.html.erb:45
1170
- #: app/views/admin/essence_files/edit.html.erb:73
1171
- msgid "height"
1172
- msgstr "Height"
1173
-
1174
- #: app/views/admin/elements/_element_head.html.erb:25
1175
- msgid "hide_element_content"
1176
- msgstr "Hide this elements content."
1177
-
1178
- #: lib/alchemy_core_modules.rb:11
1179
- msgid "home"
1180
- msgstr "Home"
1181
-
1182
- #: app/views/admin/essence_pictures/edit.html.erb:21
1183
- msgid "image_alt_tag"
1184
- msgstr "Alt-tag"
1185
-
1186
- #: app/views/admin/essence_pictures/edit.html.erb:7
1187
- msgid "image_caption"
1188
- msgstr "Caption"
1189
-
1190
- #: app/views/essences/_essence_picture_editor.html.erb:45
1191
- msgid "image_name"
1192
- msgstr "Name"
1193
-
1194
- #: app/views/admin/essence_pictures/edit.html.erb:17
1195
- msgid "image_title"
1196
- msgstr "Title-tag"
1197
-
1198
- #: app/views/admin/pictures/index.html.erb:36
1199
- #: app/views/admin/pictures/new.html.erb:6
1200
- #: app/views/admin/pictures/new.html.erb:8
1201
- msgid "images"
1202
- msgstr "images"
1203
-
1204
- #: app/views/admin/pages/_internal_link.html.erb:2
1205
- msgid "internal_link_headline"
1206
- msgstr "Choose a page to link to."
1207
-
1208
- #: app/views/admin/clipboard/insert.rjs:6
1209
- msgid "item %{name} copied to clipboard"
1210
- msgstr "Copied %{name} to clipboard"
1211
-
1212
- #: app/views/admin/clipboard/insert.rjs:4
1213
- msgid "item %{name} moved to clipboard"
1214
- msgstr "Moved %{name} to clipboard"
1215
-
1216
- #: app/views/admin/clipboard/remove.rjs:2
1217
- msgid "item %{name} removed from clipboard"
1218
- msgstr "Removed %{name} from clipboard"
1219
-
1220
- #: app/views/admin/pages/_create_language_form.html.erb:2
1221
- msgid "language_does_not_exist"
1222
- msgstr "This language tree does not exist"
1223
-
1224
- #: app/controllers/admin/pages_controller.rb:206
1225
- msgid "language_pages_copied"
1226
- msgstr "Language tree succesfully copied."
1227
-
1228
- #: app/views/admin/essence_files/edit.html.erb:10
1229
- #: app/views/admin/essence_pictures/edit.html.erb:49
1230
- msgid "left"
1231
- msgstr "left"
1232
-
1233
- #: app/views/essences/_essence_picture_tools.html.erb:36
1234
- msgid "link_image"
1235
- msgstr "Link this image."
1236
-
1237
- #: app/views/admin/pages/link.html.erb:7
1238
- msgid "link_overlay_tab_label.contactform"
1239
- msgstr "Contactform"
1240
-
1241
- #: app/views/admin/pages/link.html.erb:4
1242
- msgid "link_overlay_tab_label.external"
1243
- msgstr "External"
1244
-
1245
- #: app/views/admin/pages/link.html.erb:5
1246
- msgid "link_overlay_tab_label.file"
1247
- msgstr "File"
1248
-
1249
- #: app/views/admin/pages/link.html.erb:3
1250
- msgid "link_overlay_tab_label.internal"
1251
- msgstr "Internal"
1252
-
1253
- #: app/views/admin/pages/_contactform_links.html.erb:46
1254
- #: app/views/admin/pages/_external_link.html.erb:26
1255
- #: app/views/admin/pages/_file_link.html.erb:21
1256
- msgid "link_title"
1257
- msgstr "Linktitle"
1258
-
1259
- #: app/controllers/admin_controller.rb:53
1260
- msgid "logged_out"
1261
- msgstr "You logged out successfully."
1262
-
1263
- #: app/views/admin/login.html.erb:33
1264
- msgid "login"
1265
- msgstr "login"
1266
-
1267
- #: app/views/layouts/alchemy.html.erb:39 app/views/layouts/login.html.erb:39
1268
- #: lib/alchemy_core_modules.rb:10
1269
- msgid "logout"
1270
- msgstr "logout"
1271
-
1272
- #: app/views/admin/pages/_contactform_links.html.erb:23
1273
- msgid "mail_to"
1274
- msgstr "Recipient"
1275
-
1276
- #: app/models/user.rb:55
1277
- msgid "male"
1278
- msgstr "Male"
1279
-
1280
- #: app/views/admin/pictures/_filter_and_size_bar.html.erb:33
1281
- msgid "medium_thumbnails"
1282
- msgstr "Medium thumbnails"
1283
-
1284
- #: app/views/admin/pages/configure.html.erb:46
1285
- msgid "meta_data"
1286
- msgstr "Meta-Data"
1287
-
1288
- #: app/views/admin/pages/configure.html.erb:56
1289
- msgid "meta_description"
1290
- msgstr "Meta-Description"
1291
-
1292
- #: app/views/admin/pages/configure.html.erb:60
1293
- msgid "meta_keywords"
1294
- msgstr "Meta-Keywords"
1295
-
1296
- #: app/models/picture.rb:7
1297
- msgid "missing_image"
1298
- msgstr "Missing image"
1299
-
1300
- #: lib/alchemy_core_modules.rb:7
1301
- msgid "module: attachments"
1302
- msgstr "Files"
1303
-
1304
- #: lib/alchemy_core_modules.rb:2
1305
- msgid "module: dashboard"
1306
- msgstr "Home"
1307
-
1308
- #: lib/alchemy_core_modules.rb:8
1309
- msgid "module: pictures"
1310
- msgstr "Images"
1311
-
1312
- #: lib/alchemy_core_modules.rb:9
1313
- msgid "module: languages"
1314
- msgstr "Languages"
1315
-
1316
- #: lib/alchemy_core_modules.rb:4
1317
- msgid "module: layoutpages"
1318
- msgstr "Global Pages"
1319
-
1320
- #: lib/alchemy_core_modules.rb:6
1321
- msgid "module: library"
1322
- msgstr "Library"
1323
-
1324
- #: lib/alchemy_core_modules.rb:3
1325
- msgid "module: pages"
1326
- msgstr "Pages"
1327
-
1328
- #: lib/alchemy_core_modules.rb:5
1329
- msgid "module: users"
1330
- msgstr "Users"
1331
-
1332
- #: app/views/admin/attachments/edit.html.erb:4
1333
- #: app/views/admin/pages/configure.html.erb:33
1334
- msgid "name"
1335
- msgstr "Name"
1336
-
1337
- #: app/views/admin/pages/configure.html.erb:29
1338
- #: app/views/admin/pages/configure_external.html.erb:22
1339
- msgid "names"
1340
- msgstr "Names"
1341
-
1342
- #: app/views/admin/pages/configure_external.html.erb:25
1343
- msgid "navigation_name"
1344
- msgstr "Navigationname"
1345
-
1346
- #: app/helpers/alchemy_helper.rb:845
1347
- msgid "no"
1348
- msgstr "no"
1349
-
1350
- #: app/views/admin/index.html.erb:14 app/views/admin/index.html.erb:27
1351
- msgid "no pages"
1352
- msgstr ""
1353
-
1354
- #: app/views/admin/index.html.erb:51
1355
- msgid "no users"
1356
- msgstr ""
1357
-
1358
- #: app/controllers/alchemy_controller.rb:211
1359
- msgid "no_default_language_found"
1360
- msgstr "No default language found."
1361
-
1362
- #: app/helpers/alchemy_helper.rb:221 app/helpers/alchemy_helper.rb:289
1363
- msgid "no_element_given"
1364
- msgstr "No element given."
1365
-
1366
- #: app/views/admin/attachments/_files_list.html.erb:3
1367
- msgid "no_files_in_archive"
1368
- msgstr "You do not have any files in your archive."
1369
-
1370
- #: app/views/admin/pictures/_archive_overlay_images.html.erb:6
1371
- #: app/views/admin/pictures/_pictures_list.html.erb:3
1372
- msgid "no_images_in_archive"
1373
- msgstr "You don't have any images in your archive."
1374
-
1375
- #: app/views/admin/elements/_new_element_form.html.erb:3
1376
- msgid "no_more_elements_to_add"
1377
- msgstr "No more elements available."
1378
-
1379
- #: app/views/admin/attachments/_files_list.html.erb:7
1380
- #: app/views/admin/pictures/_pictures_list.html.erb:7
1381
- msgid "no_search_results"
1382
- msgstr "Your search did not return any results."
1383
-
1384
- #: app/models/picture.rb:8
1385
- msgid "not a valid image"
1386
- msgstr "This is not an valid image."
1387
-
1388
- #: app/helpers/alchemy_helper.rb:836 app/views/admin/elements/list.html.erb:8
1389
- msgid "other Elements"
1390
- msgstr ""
1391
-
1392
- #: app/controllers/admin/pages_controller.rb:54
1393
- msgid "page '%{name}' created."
1394
- msgstr "Page: '%{name}' created."
1395
-
1396
- #: app/views/admin/pages/_page_for_links.html.erb:36
1397
- msgid "page_for_links.choose_page %{name}"
1398
- msgstr "Choose %{name}"
1399
-
1400
- #: app/views/admin/pages/locked.html.erb:2
1401
- msgid "page_locked"
1402
- msgstr "This page is locked by another user."
1403
-
1404
- #: app/views/admin/pages/edit.html.erb:67
1405
- msgid "page_properties"
1406
- msgstr "page properties"
1407
-
1408
- #: app/views/admin/pages/configure.html.erb:15
1409
- msgid "page_public"
1410
- msgstr "published"
1411
-
1412
- #: app/controllers/admin/pages_controller.rb:185
1413
- msgid "page_published"
1414
- msgstr "Published page."
1415
-
1416
- #: app/views/admin/pages/configure.html.erb:19
1417
- msgid "page_restricted"
1418
- msgstr "restricted"
1419
-
1420
- #: app/views/admin/pages/configure.html.erb:12
1421
- #: app/views/admin/pages/configure_external.html.erb:11
1422
- msgid "page_status"
1423
- msgstr "Status"
1424
-
1425
- #: app/models/page.rb:207
1426
- msgid "page_status_invisible_public"
1427
- msgstr "Page is invisible in navigation but public."
1428
-
1429
- #: app/models/page.rb:195
1430
- msgid "page_status_invisible_public_locked"
1431
- msgstr ""
1432
- "Page is invisible in navigation but public. Page is currently locked for "
1433
- "editing."
1434
-
1435
- #: app/models/page.rb:210
1436
- msgid "page_status_invisible_unpublic"
1437
- msgstr "Page is invisible in navigation and unpublic."
1438
-
1439
- #: app/models/page.rb:198
1440
- msgid "page_status_invisible_unpublic_locked"
1441
- msgstr ""
1442
- "Page is invisible in navigation and unpublic. Page is currently locked for "
1443
- "editing."
1444
-
1445
- #: app/models/page.rb:201
1446
- msgid "page_status_visible_public"
1447
- msgstr "Page is visible in navigation and public."
1448
-
1449
- #: app/models/page.rb:189
1450
- msgid "page_status_visible_public_locked"
1451
- msgstr ""
1452
- "Page is visible in navigation and public. Page is currently locked for "
1453
- "editing."
1454
-
1455
- #: app/models/page.rb:204
1456
- msgid "page_status_visible_unpublic"
1457
- msgstr "Page is visible in navigation but unpublic."
1458
-
1459
- #: app/models/page.rb:192
1460
- msgid "page_status_visible_unpublic_locked"
1461
- msgstr ""
1462
- "Page is visible in navigation but unpublic. Page is currently locked for "
1463
- "editing."
1464
-
1465
- #: app/views/admin/pages/configure.html.erb:42
1466
- #: app/views/admin/pages/configure_external.html.erb:33
1467
- msgid "page_title"
1468
- msgstr "Title"
1469
-
1470
- #: app/views/admin/pages/_layoutpage.html.erb:6
1471
- #: app/views/admin/pages/_page.html.erb:7
1472
- #: app/views/admin/pages/_sitemap.html.erb:7
1473
- #: app/views/admin/pages/configure.html.erb:5
1474
- #: app/views/admin/pages/configure_external.html.erb:5
1475
- msgid "page_type"
1476
- msgstr "Type"
1477
-
1478
- #: app/views/admin/pages/configure.html.erb:17
1479
- #: app/views/admin/pages/configure_external.html.erb:14
1480
- msgid "page_visible_in_navigation"
1481
- msgstr "visible in the navigation"
1482
-
1483
- #: app/views/admin/pages/configure.html.erb:63
1484
- msgid "pages.update.comma_seperated"
1485
- msgstr "Separate by comma"
1486
-
1487
- #: app/views/admin/partials/_per_page_links.html.erb:16
1488
- msgid "pagination.%{label}_per_page"
1489
- msgstr "%{label} per page"
1490
-
1491
- #: app/views/admin/partials/_pagination_links.html.erb:5
1492
- #: app/views/admin/partials/_remote_pagination_links.html.erb:5
1493
- msgid "pagination.next_page"
1494
- msgstr "next page"
1495
-
1496
- #: app/views/admin/partials/_pagination_links.html.erb:4
1497
- #: app/views/admin/partials/_remote_pagination_links.html.erb:4
1498
- msgid "pagination.previous_page"
1499
- msgstr "previous page"
1500
-
1501
- #: app/views/admin/login.html.erb:24
1502
- msgid "password"
1503
- msgstr "Password"
1504
-
1505
- #: app/views/admin/elements/new.html.erb:21
1506
- #: app/views/admin/pages/new.html.erb:36
1507
- msgid "paste"
1508
- msgstr ""
1509
-
1510
- #: app/views/essences/_essence_text_editor.html.erb:69
1511
- msgid "place_link"
1512
- msgstr "Link text"
1513
-
1514
- #: app/views/admin/essence_files/edit.html.erb:29
1515
- msgid "player_version"
1516
- msgstr "Flashplayer Version"
1517
-
1518
- #: app/models/page.rb:12
1519
- msgid "please enter a name"
1520
- msgstr "Please enter a name."
1521
-
1522
- #: app/views/admin/pages/_contactform_links.html.erb:3
1523
- msgid "please enter subject and mail address"
1524
- msgstr "Please enter recipient and subject."
1525
-
1526
- #: app/helpers/alchemy_helper.rb:843
1527
- msgid "please_confirm"
1528
- msgstr "Please confirm"
1529
-
1530
- #: app/views/layouts/alchemy.html.erb:25 app/views/layouts/login.html.erb:25
1531
- msgid "please_wait"
1532
- msgstr "Please wait"
1533
-
1534
- #: app/views/admin/partials/_upload_form.html.erb:20
1535
- msgid "regular method"
1536
- msgstr ""
1537
-
1538
- #: app/views/admin/elements/index.rjs:19
1539
- msgid "remove"
1540
- msgstr "remove"
1541
-
1542
- #: app/views/admin/attachments/_attachment.html.erb:50
1543
- #: app/views/admin/attachments/_attachment.html.erb:54
1544
- msgid "rename_file"
1545
- msgstr "Rename this file."
1546
-
1547
- #: app/views/admin/essence_files/edit.html.erb:10
1548
- #: app/views/admin/essence_pictures/edit.html.erb:49
1549
- msgid "right"
1550
- msgstr "right"
1551
-
1552
- #: app/views/admin/pages/configure.html.erb:52
1553
- msgid "robot_follow"
1554
- msgstr "robot may follow links."
1555
-
1556
- #: app/views/admin/pages/configure.html.erb:51
1557
- msgid "robot_index"
1558
- msgstr "allow robot to index."
1559
-
1560
- #: app/views/admin/attachments/edit.html.erb:9
1561
- #: app/views/admin/contents/new.html.erb:11
1562
- #: app/views/admin/elements/_element_foot.html.erb:32
1563
- #: app/views/admin/essence_files/edit.html.erb:14
1564
- #: app/views/admin/essence_files/edit.html.erb:34
1565
- #: app/views/admin/essence_files/edit.html.erb:62
1566
- #: app/views/admin/essence_files/edit.html.erb:86
1567
- #: app/views/admin/essence_pictures/crop.html.erb:6
1568
- #: app/views/admin/essence_pictures/edit.html.erb:70
1569
- #: app/views/admin/languages/_form.html.erb:30
1570
- #: app/views/admin/pages/configure.html.erb:68
1571
- #: app/views/admin/pages/configure_external.html.erb:37
1572
- #: app/views/admin/pictures/index.html.erb:49
1573
- #: app/views/admin/users/_table.html.erb:47
1574
- msgid "save"
1575
- msgstr "save"
1576
-
1577
- #: app/views/admin/pages/index.html.erb:97
1578
- msgid "save order"
1579
- msgstr ""
1580
-
1581
- #: app/controllers/admin/essence_pictures_controller.rb:75
1582
- msgid "saved_link"
1583
- msgstr "Link saved."
1584
-
1585
- #: app/helpers/alchemy_helper.rb:792
1586
- #: app/views/admin/partials/_remote_search_form.html.erb:35
1587
- #: app/views/admin/partials/_search_form.html.erb:16
1588
- #: app/views/elements/_searchresult_view.html.erb:5
1589
- msgid "search"
1590
- msgstr "search"
1591
-
1592
- #: app/views/admin/pages/configure.html.erb:49
1593
- msgid "search_engines"
1594
- msgstr "Searchengines"
1595
-
1596
- #: app/views/admin/elements/_new_element_form.html.erb:15
1597
- msgid "select_element"
1598
- msgstr "Select element"
1599
-
1600
- #: app/views/admin/elements/_element_head.html.erb:25
1601
- msgid "show_element_content"
1602
- msgstr "Show content of this element."
1603
-
1604
- #: app/views/admin/pages/_page_for_links.html.erb:15
1605
- msgid "show_elements_from_page"
1606
- msgstr "Show all elements from this page"
1607
-
1608
- #: app/views/admin/essence_files/edit.html.erb:77
1609
- msgid "show_eq"
1610
- msgstr "Show EQ"
1611
-
1612
- #: app/views/admin/essence_files/edit.html.erb:57
1613
- #: app/views/admin/essence_files/edit.html.erb:81
1614
- msgid "show_navigation"
1615
- msgstr "Show in navigation"
1616
-
1617
- #: app/views/admin/pages/configure.html.erb:22
1618
- #: app/views/admin/pages/configure_external.html.erb:17
1619
- msgid "show_page_in_sitemap"
1620
- msgstr "Show page in sitemap."
1621
-
1622
- #: app/views/admin/pictures/_filter_and_size_bar.html.erb:16
1623
- msgid "small_thumbnails"
1624
- msgstr "Small thumbnails"
1625
-
1626
- #: app/views/admin/pages/_contactform_links.html.erb:15
1627
- msgid "subject"
1628
- msgstr ""
1629
-
1630
- #: app/views/admin/elements/create.rjs:12
1631
- msgid "successfully_added_element"
1632
- msgstr "Succesfully added new element."
1633
-
1634
- #: app/controllers/admin/elements_controller.rb:126
1635
- msgid "successfully_saved_element_position"
1636
- msgstr "Element position updated succesfully."
1637
-
1638
- #: app/views/essences/_essence_picture_tools.html.erb:25
1639
- #: app/views/essences/_essence_picture_tools.html.erb:29
1640
- msgid "swap_image"
1641
- msgstr "Change image."
1642
-
1643
- #: app/views/admin/partials/_upload_form.html.erb:12
1644
- msgid "swfupload: cancel_uploads"
1645
- msgstr "Cancel uploads"
1646
-
1647
- #: app/views/admin/essence_files/edit.html.erb:5
1648
- msgid "title"
1649
- msgstr "Title"
1650
-
1651
- #: app/views/admin/elements/_element_foot.html.erb:8
1652
- msgid "trash element"
1653
- msgstr "Put element into trash"
1654
-
1655
- #: app/controllers/admin/pages_controller.rb:63 app/models/page.rb:146
1656
- #: app/models/page.rb:153 app/models/page.rb:160
1657
- msgid "unknown"
1658
- msgstr "unknown"
1659
-
1660
- #: app/views/essences/_essence_picture_tools.html.erb:45
1661
- #: app/views/essences/_essence_text_editor.html.erb:73
1662
- msgid "unlink"
1663
- msgstr "Remove link from this image."
1664
-
1665
- #: app/views/admin/pages/edit.html.erb:40
1666
- msgid "unlock_page"
1667
- msgstr "Leave page"
1668
-
1669
- #: app/controllers/admin/pages_controller.rb:156
1670
- msgid "unlocked_page_%{name}"
1671
- msgstr "Unlocked page %{name}."
1672
-
1673
- #: app/views/admin/pages/_layoutpage.html.erb:15
1674
- #: app/views/admin/pages/_page.html.erb:16
1675
- #: app/views/admin/pages/_sitemap.html.erb:16
1676
- msgid "updated_at"
1677
- msgstr "Updated at"
1678
-
1679
- #: app/views/admin/partials/_upload_form.html.erb:39
1680
- msgid "upload"
1681
- msgstr "upload"
1682
-
1683
- #: app/views/admin/attachments/index.html.erb:11
1684
- #: app/views/admin/attachments/index.html.erb:14
1685
- #: app/views/admin/attachments/index.html.erb:17
1686
- msgid "upload_file"
1687
- msgstr "Upload file(s)."
1688
-
1689
- #: app/views/admin/pictures/_filter_and_size_bar.html.erb:75
1690
- #: app/views/admin/pictures/_filter_and_size_bar.html.erb:79
1691
- #: app/views/admin/pictures/_filter_and_size_bar.html.erb:82
1692
- #: app/views/admin/pictures/index.html.erb:11
1693
- #: app/views/admin/pictures/index.html.erb:15
1694
- #: app/views/admin/pictures/index.html.erb:17
1695
- msgid "upload_image"
1696
- msgstr "Upload image(s)."
1697
-
1698
- #: app/views/admin/pages/configure.html.erb:38
1699
- msgid "url_name"
1700
- msgstr "URL-Name"
1701
-
1702
- #: app/models/page.rb:14
1703
- msgid "urlname_to_short"
1704
- msgstr "The pages urlname is too short (minimum of 3 characters)"
1705
-
1706
- #: app/views/admin/login.html.erb:16
1707
- msgid "username"
1708
- msgstr "Username"
1709
-
1710
- #: app/views/admin/elements/_element_foot.html.erb:29
1711
- msgid "visible"
1712
- msgstr "visible"
1713
-
1714
- #: app/views/admin/pages/_create_language_form.html.erb:27
1715
- msgid "want_to_create_new_language"
1716
- msgstr "Or do you want to create a new empty language tree?"
1717
-
1718
- #: app/views/admin/pages/_create_language_form.html.erb:7
1719
- msgid "want_to_make_copy_of_existing_language"
1720
- msgstr "Do you want to copy an existing language tree?"
1721
-
1722
- #: app/models/language.rb:44
1723
- msgid "we_need_at_least_one_default"
1724
- msgstr ""
1725
-
1726
- #: app/controllers/admin_controller.rb:36
1727
- msgid "welcome_please_identify_notice"
1728
- msgstr "Welcome! Please identify."
1729
-
1730
- #: app/views/admin/essence_files/edit.html.erb:21
1731
- #: app/views/admin/essence_files/edit.html.erb:41
1732
- #: app/views/admin/essence_files/edit.html.erb:69
1733
- msgid "width"
1734
- msgstr "Width"
1735
-
1736
- #: app/helpers/alchemy_helper.rb:844
1737
- msgid "yes"
1738
- msgstr "yes"
1739
-
1740
- #: app/views/admin/pictures/_picture.html.erb:27
1741
- msgid "zoom_image"
1742
- msgstr "Zoom this image."
1743
-
1744
- msgid "Please wait. Flash® is loading..."
1745
- msgstr ""