zena 1.2.7 → 1.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (407) hide show
  1. data/History.txt +80 -25
  2. data/Rakefile +2 -2
  3. data/app/controllers/columns_controller.rb +2 -2
  4. data/app/controllers/nodes_controller.rb +22 -29
  5. data/app/controllers/user_sessions_controller.rb +35 -10
  6. data/app/controllers/users_controller.rb +2 -2
  7. data/app/controllers/versions_controller.rb +2 -2
  8. data/app/models/group.rb +15 -1
  9. data/app/models/node.rb +109 -8
  10. data/app/models/role.rb +4 -0
  11. data/app/models/site.rb +64 -58
  12. data/app/models/template.rb +1 -1
  13. data/app/models/user.rb +135 -29
  14. data/app/models/user_session.rb +0 -1
  15. data/app/models/virtual_class.rb +11 -6
  16. data/app/views/columns/_form.html.erb +3 -1
  17. data/app/views/columns/_li.html.erb +1 -1
  18. data/app/views/columns/create.rjs +1 -1
  19. data/app/views/groups/_form.rhtml +16 -13
  20. data/app/views/relations/_form.erb +18 -6
  21. data/app/views/sites/_form.erb +12 -6
  22. data/app/views/users/_form.rhtml +23 -8
  23. data/app/views/users/_li.rhtml +14 -3
  24. data/app/views/users/index.rhtml +1 -1
  25. data/app/views/virtual_classes/_form.erb +12 -2
  26. data/app/views/zafu/default/Node-+login.zafu +8 -1
  27. data/app/views/zafu/default/Node-+search.zafu +1 -1
  28. data/bricks/acls/lib/bricks/acls.rb +1 -0
  29. data/bricks/acls/zena/migrate/20130903150356_longer_names_for_acl.rb +9 -0
  30. data/bricks/acls/zena/test/integration/acl_integration_test.rb +2 -2
  31. data/bricks/currency/lib/bricks/currency.rb +120 -0
  32. data/bricks/currency/zena/test/unit/currency_test.rb +43 -0
  33. data/bricks/fs_skin/lib/bricks/fs_skin.rb +1 -1
  34. data/bricks/fs_skin/zena/skins/blog/Node-+search.zafu +1 -1
  35. data/bricks/fs_skin/zena/skins/blog/Node.zafu +1 -1
  36. data/bricks/fs_skin/zena/test/unit/fs_skin_view_test.rb +35 -0
  37. data/bricks/pdf/lib/bricks/pdf.rb +1 -1
  38. data/bricks/sphinx/lib/bricks/sphinx.rb +2 -0
  39. data/bricks/sphinx/zena/init.rb +14 -0
  40. data/bricks/tags/zena/test/zafu/tags.yml +5 -1
  41. data/bricks/worker/lib/bricks/worker.rb +3 -2
  42. data/bricks/zena/zena/migrate/20130829093753_add_versioned_flag_to_column.rb +10 -0
  43. data/bricks/zena/zena/migrate/20130903084909_count_login_attempts.rb +11 -0
  44. data/bricks/zena/zena/migrate/20131104153126_index_fullpath.rb +10 -0
  45. data/bricks/zena/zena/migrate/20131104210011_rebuild_fullpath_after_change.rb +10 -0
  46. data/bricks/zena/zena/migrate/20131105160420_add_skin_id_to_sites.rb +9 -0
  47. data/bricks/zena/zena/migrate/20131105175822_add_profile_to_users.rb +11 -0
  48. data/bricks/zena/zena/migrate/20140213120038_fix_idx_scope.rb +13 -0
  49. data/bricks/zena/zena/migrate/20140628140247_add_site_readonly.rb +9 -0
  50. data/config/bricks.yml +8 -4
  51. data/config/gems.yml +5 -3
  52. data/db/init/base/skins/default/Node-+login.zafu +8 -1
  53. data/db/init/base/skins/default/Node-+search.zafu +1 -1
  54. data/lib/bricks/loader.rb +5 -5
  55. data/lib/gettext_strings.rb +3 -0
  56. data/lib/tasks/zena.rake +25 -22
  57. data/lib/zafu/process/context.rb +4 -0
  58. data/lib/zena/acts/secure_node.rb +3 -3
  59. data/lib/zena/app.rb +1 -0
  60. data/lib/zena/deploy.rb +1 -1
  61. data/lib/zena/deploy/template.rb +1 -1
  62. data/lib/zena/foxy_parser.rb +5 -2
  63. data/lib/zena/info.rb +1 -1
  64. data/lib/zena/site_worker.rb +2 -2
  65. data/lib/zena/test_controller.rb +5 -2
  66. data/lib/zena/use/action.rb +9 -2
  67. data/lib/zena/use/ajax.rb +20 -4
  68. data/lib/zena/use/ancestry.rb +89 -15
  69. data/lib/zena/use/authlogic.rb +8 -2
  70. data/lib/zena/use/context.rb +1 -0
  71. data/lib/zena/use/display.rb +1 -97
  72. data/lib/zena/use/forms.rb +28 -8
  73. data/lib/zena/use/html_tags.rb +16 -7
  74. data/lib/zena/use/i18n.rb +1 -1
  75. data/lib/zena/use/prop_eval.rb +6 -1
  76. data/lib/zena/use/query_node.rb +69 -4
  77. data/lib/zena/use/recursion.rb +1 -1
  78. data/lib/zena/use/refactor.rb +5 -2
  79. data/lib/zena/use/relations.rb +1 -0
  80. data/lib/zena/use/rendering.rb +7 -4
  81. data/lib/zena/use/test_helper.rb +8 -4
  82. data/lib/zena/use/upload.rb +14 -0
  83. data/lib/zena/use/urls.rb +39 -23
  84. data/lib/zena/use/version_hash.rb +5 -2
  85. data/lib/zena/use/workflow.rb +116 -70
  86. data/lib/zena/use/zafu_eval.rb +41 -0
  87. data/lib/zena/use/zafu_safe_definitions.rb +1 -0
  88. data/lib/zena/use/zafu_templates.rb +32 -26
  89. data/lib/zena/use/zazen.rb +8 -7
  90. data/locale/app.pot +5 -1
  91. data/locale/de/LC_MESSAGES/zena.mo +0 -0
  92. data/locale/de/zena.po +385 -281
  93. data/locale/en/LC_MESSAGES/zena.mo +0 -0
  94. data/locale/en/zena.po +378 -271
  95. data/locale/fr/LC_MESSAGES/zena.mo +0 -0
  96. data/locale/fr/zena.po +387 -272
  97. data/locale/it/LC_MESSAGES/zena.mo +0 -0
  98. data/locale/it/zena.po +433 -404
  99. data/locale/zena.pot +362 -268
  100. data/public/javascripts/grid.js +280 -104
  101. data/public/javascripts/zena.js +43 -15
  102. data/public/stylesheets/admin.css +8 -2
  103. data/public/stylesheets/grid.css +5 -2
  104. data/public/stylesheets/popup.css +1 -1
  105. data/test/fixtures/files/TestNode.zafu +51 -0
  106. data/test/functional/nodes_controller_test.rb +20 -5
  107. data/test/functional/user_sessions_controller_test.rb +41 -6
  108. data/test/functional/users_controller_test.rb +1 -2
  109. data/test/integration/navigation_test.rb +22 -4
  110. data/test/integration/query_node/basic.yml +7 -0
  111. data/test/integration/query_node/complex.yml +1 -1
  112. data/test/integration/query_node/errors.yml +1 -1
  113. data/test/integration/query_node/filters.yml +34 -1
  114. data/test/integration/query_node/relations.yml +6 -13
  115. data/test/integration/query_node_test.rb +22 -3
  116. data/test/integration/zafu_compiler/action.yml +1 -1
  117. data/test/integration/zafu_compiler/alias_site.yml +52 -0
  118. data/test/integration/zafu_compiler/complex.yml +1 -1
  119. data/test/integration/zafu_compiler/complex_ok.yml +5 -5
  120. data/test/integration/zafu_compiler/context.yml +1 -1
  121. data/test/integration/zafu_compiler/display.yml +56 -5
  122. data/test/integration/zafu_compiler/forms.yml +35 -2
  123. data/test/integration/zafu_compiler/meta.yml +4 -0
  124. data/test/integration/zafu_compiler/rubyless.yml +1 -1
  125. data/test/integration/zafu_compiler/safe_definitions.yml +4 -0
  126. data/test/integration/zafu_compiler/security.yml +10 -0
  127. data/test/integration/zafu_compiler/site.yml +5 -1
  128. data/test/integration/zafu_compiler/urls.yml +8 -2
  129. data/test/integration/zafu_compiler/zafu_attributes.yml +2 -1
  130. data/test/integration/zafu_compiler/zazen.yml +4 -0
  131. data/test/integration/zafu_compiler_test.rb +47 -4
  132. data/test/selenium/Grid/grid1.rsel +8 -8
  133. data/test/sites/complex/sites.yml +2 -2
  134. data/test/sites/complex/users.yml +1 -0
  135. data/test/sites/zena/columns.yml +4 -0
  136. data/test/sites/zena/sites.yml +1 -0
  137. data/test/sites/zena/users.yml +1 -0
  138. data/test/unit/node_test.rb +53 -5
  139. data/test/unit/note_test.rb +1 -1
  140. data/test/unit/relation_proxy_test.rb +20 -0
  141. data/test/unit/role_test.rb +2 -0
  142. data/test/unit/site_test.rb +28 -6
  143. data/test/unit/user_test.rb +332 -1
  144. data/test/unit/virtual_class_test.rb +55 -0
  145. data/test/unit/workflow_test.rb +175 -0
  146. data/test/unit/zena/use/ancestry_test.rb +52 -10
  147. data/test/unit/zena/use/prop_eval_test.rb +44 -0
  148. data/test/unit/zena/use/rendering_test.rb +48 -2
  149. data/test/unit/zena/use/upload_test.rb +15 -13
  150. data/test/unit/zena/use/urls_test.rb +1 -0
  151. data/vendor/plugins/ar_mysql_full_text/lib/ar_mysql_full_text.rb +39 -25
  152. data/zena.gemspec +69 -307
  153. metadata +143 -368
  154. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run 2.tmCommand +0 -24
  155. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run Context.tmCommand +0 -58
  156. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run Focused Should.tmCommand +0 -88
  157. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run.tmCommand +0 -27
  158. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/YAML to Shoulda.tmCommand +0 -23
  159. data/vendor/TextMate/Ruby Shoulda.tmbundle/Preferences/Symbol List: Context.tmPreferences +0 -19
  160. data/vendor/TextMate/Ruby Shoulda.tmbundle/Preferences/Symbol List: Should.tmPreferences +0 -19
  161. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory attributes for.tmSnippet +0 -16
  162. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory build.tmSnippet +0 -16
  163. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory.tmSnippet +0 -16
  164. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_define with class.tmSnippet +0 -18
  165. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_define.tmSnippet +0 -18
  166. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_next.tmSnippet +0 -16
  167. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_sequence.tmSnippet +0 -18
  168. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_bad_value.tmSnippet +0 -16
  169. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_contains.tmSnippet +0 -16
  170. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_does_not_contain.tmSnippet +0 -16
  171. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_good_value.tmSnippet +0 -16
  172. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_same_elements.tmSnippet +0 -16
  173. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_save.tmSnippet +0 -16
  174. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_sent_email.tmSnippet +0 -18
  175. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_valid.tmSnippet +0 -16
  176. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/association.tmSnippet +0 -17
  177. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/attribute.tmSnippet +0 -17
  178. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/before_should block.tmSnippet +0 -18
  179. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block get.tmSnippet +0 -22
  180. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block post.tmSnippet +0 -23
  181. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block with setup.tmSnippet +0 -25
  182. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/setup.tmSnippet +0 -18
  183. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should block with before proc.tmSnippet +0 -18
  184. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should block.tmSnippet +0 -18
  185. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_allow_values_for.tmSnippet +0 -16
  186. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_assign_to.tmSnippet +0 -16
  187. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_be_restful denied.tmSnippet +0 -20
  188. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_be_restful.tmSnippet +0 -20
  189. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_belong_to.tmSnippet +0 -16
  190. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_change by.tmSnippet +0 -16
  191. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_change from to.tmSnippet +0 -16
  192. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_at_least.tmSnippet +0 -16
  193. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_in_range.tmSnippet +0 -16
  194. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_is.tmSnippet +0 -16
  195. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_value_in_range.tmSnippet +0 -16
  196. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_eventually.tmSnippet +0 -18
  197. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_filter_params.tmSnippet +0 -16
  198. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_and_belong_to_many.tmSnippet +0 -16
  199. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_class_methods.tmSnippet +0 -16
  200. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_db_column.tmSnippet +0 -16
  201. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_db_columns.tmSnippet +0 -16
  202. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_index.tmSnippet +0 -16
  203. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_indices.tmSnippet +0 -16
  204. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_instance_methods.tmSnippet +0 -16
  205. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_many.tmSnippet +0 -16
  206. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_named_scope.tmSnippet +0 -16
  207. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_one.tmSnippet +0 -16
  208. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_readonly_attributes.tmSnippet +0 -16
  209. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_allow_mass_assignment_of.tmSnippet +0 -16
  210. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_allow_values_for.tmSnippet +0 -16
  211. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_assign_to.tmSnippet +0 -16
  212. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_change.tmSnippet +0 -16
  213. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_set_the_flash.tmSnippet +0 -16
  214. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_redirect_to.tmSnippet +0 -16
  215. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_a_form.tmSnippet +0 -16
  216. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_template.tmSnippet +0 -16
  217. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_with_layout.tmSnippet +0 -16
  218. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_without_layout.tmSnippet +0 -16
  219. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_respond_with.tmSnippet +0 -16
  220. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_respond_with_content_type.tmSnippet +0 -16
  221. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_return_from_session.tmSnippet +0 -16
  222. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_route.tmSnippet +0 -16
  223. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_set_the_flash_to.tmSnippet +0 -16
  224. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_acceptance_of.tmSnippet +0 -16
  225. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_numericality_of.tmSnippet +0 -16
  226. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_presence_of.tmSnippet +0 -16
  227. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_uniqueness_of with scope.tmSnippet +0 -16
  228. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_uniqueness_of.tmSnippet +0 -16
  229. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/catch_exception.rb +0 -39
  230. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/run_script.rb +0 -104
  231. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/stdin_dialog.rb +0 -14
  232. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/test.rb +0 -17
  233. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/todo.txt +0 -13
  234. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/bin/yaml_to_shoulda.rb +0 -25
  235. data/vendor/TextMate/Ruby Shoulda.tmbundle/Syntaxes/Ruby on Rails (Shoulda).tmLanguage +0 -166
  236. data/vendor/TextMate/Ruby Shoulda.tmbundle/info.plist +0 -304
  237. data/vendor/TextMate/Zena.tmbundle/Commands/Run all yaml tests.tmCommand +0 -37
  238. data/vendor/TextMate/Zena.tmbundle/Commands/Run focused yaml test.tmCommand +0 -52
  239. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/catch_exception.rb +0 -39
  240. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/run_script.rb +0 -118
  241. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/stdin_dialog.rb +0 -14
  242. data/vendor/TextMate/Zena.tmbundle/info.plist +0 -17
  243. data/vendor/plugins/selenium-on-rails/CHANGELOG +0 -125
  244. data/vendor/plugins/selenium-on-rails/LICENSE-2.0.txt +0 -202
  245. data/vendor/plugins/selenium-on-rails/README.md +0 -202
  246. data/vendor/plugins/selenium-on-rails/Rakefile +0 -38
  247. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumController.html +0 -265
  248. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumHelper.html +0 -148
  249. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails.html +0 -126
  250. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/FixtureLoader.html +0 -231
  251. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/PartialsSupport.html +0 -195
  252. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/Paths.html +0 -295
  253. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/RSelenese.html +0 -219
  254. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/Renderer.html +0 -156
  255. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/Selenese.html +0 -179
  256. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/SuiteRenderer.html +0 -223
  257. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/TestBuilder.html +0 -441
  258. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/TestBuilderAccessors.html +0 -3098
  259. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/TestBuilderActions.html +0 -2080
  260. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/TestBuilderUserAccessors.html +0 -116
  261. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRails/TestBuilderUserActions.html +0 -116
  262. data/vendor/plugins/selenium-on-rails/doc/classes/SeleniumOnRailsConfig.html +0 -150
  263. data/vendor/plugins/selenium-on-rails/doc/files/CHANGELOG.html +0 -422
  264. data/vendor/plugins/selenium-on-rails/doc/files/README.html +0 -321
  265. data/vendor/plugins/selenium-on-rails/doc/files/lib/controllers/selenium_controller_rb.html +0 -108
  266. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_helper_rb.html +0 -101
  267. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/acceptance_test_runner_rb.html +0 -222
  268. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/fixture_loader_rb.html +0 -109
  269. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/partials_support_rb.html +0 -111
  270. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/paths_rb.html +0 -101
  271. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/renderer_rb.html +0 -101
  272. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/rselenese_rb.html +0 -118
  273. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/selenese_rb.html +0 -101
  274. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/suite_renderer_rb.html +0 -101
  275. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/test_builder_accessors_rb.html +0 -114
  276. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/test_builder_actions_rb.html +0 -113
  277. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails/test_builder_rb.html +0 -120
  278. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails_config_rb.html +0 -108
  279. data/vendor/plugins/selenium-on-rails/doc/files/lib/selenium_on_rails_rb.html +0 -115
  280. data/vendor/plugins/selenium-on-rails/doc/fr_class_index.html +0 -42
  281. data/vendor/plugins/selenium-on-rails/doc/fr_file_index.html +0 -43
  282. data/vendor/plugins/selenium-on-rails/doc/fr_method_index.html +0 -182
  283. data/vendor/plugins/selenium-on-rails/doc/index.html +0 -24
  284. data/vendor/plugins/selenium-on-rails/doc/rdoc-style.css +0 -208
  285. data/vendor/plugins/selenium-on-rails/generators/selenium/USAGE +0 -19
  286. data/vendor/plugins/selenium-on-rails/generators/selenium/selenium_generator.rb +0 -50
  287. data/vendor/plugins/selenium-on-rails/generators/selenium/templates/rhtml.rhtml +0 -16
  288. data/vendor/plugins/selenium-on-rails/generators/selenium/templates/rselenese.rhtml +0 -14
  289. data/vendor/plugins/selenium-on-rails/generators/selenium/templates/selenese.rhtml +0 -11
  290. data/vendor/plugins/selenium-on-rails/init.rb +0 -15
  291. data/vendor/plugins/selenium-on-rails/lib/controllers/selenium_controller.rb +0 -122
  292. data/vendor/plugins/selenium-on-rails/lib/controllers/switch_environment_controller.rb +0 -16
  293. data/vendor/plugins/selenium-on-rails/lib/selenium_helper.rb +0 -8
  294. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails.rb +0 -11
  295. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/acceptance_test_runner.rb +0 -215
  296. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/fixture_loader.rb +0 -57
  297. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/partials_support.rb +0 -36
  298. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/paths.rb +0 -61
  299. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/renderer.rb +0 -20
  300. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/rselenese.rb +0 -44
  301. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/selenese.rb +0 -87
  302. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/suite_renderer.rb +0 -56
  303. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/test_builder.rb +0 -116
  304. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/test_builder_accessors.rb +0 -1002
  305. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/test_builder_actions.rb +0 -514
  306. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/test_builder_user_accessors.rb.example +0 -91
  307. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails/test_builder_user_actions.rb.example +0 -24
  308. data/vendor/plugins/selenium-on-rails/lib/selenium_on_rails_config.rb +0 -30
  309. data/vendor/plugins/selenium-on-rails/lib/views/layouts/layout.rhtml +0 -18
  310. data/vendor/plugins/selenium-on-rails/lib/views/record.rhtml +0 -5
  311. data/vendor/plugins/selenium-on-rails/lib/views/selenium_helper.rb +0 -9
  312. data/vendor/plugins/selenium-on-rails/lib/views/setup.rhtml +0 -67
  313. data/vendor/plugins/selenium-on-rails/lib/views/test_suite.rhtml +0 -26
  314. data/vendor/plugins/selenium-on-rails/routes.rb +0 -24
  315. data/vendor/plugins/selenium-on-rails/selenium-core/Blank.html +0 -7
  316. data/vendor/plugins/selenium-on-rails/selenium-core/InjectedRemoteRunner.html +0 -8
  317. data/vendor/plugins/selenium-on-rails/selenium-core/RemoteRunner.html +0 -110
  318. data/vendor/plugins/selenium-on-rails/selenium-core/SeleniumLog.html +0 -109
  319. data/vendor/plugins/selenium-on-rails/selenium-core/TestPrompt.html +0 -145
  320. data/vendor/plugins/selenium-on-rails/selenium-core/TestRunner-splash.html +0 -55
  321. data/vendor/plugins/selenium-on-rails/selenium-core/TestRunner.hta +0 -177
  322. data/vendor/plugins/selenium-on-rails/selenium-core/TestRunner.html +0 -177
  323. data/vendor/plugins/selenium-on-rails/selenium-core/domviewer/butmin.gif +0 -0
  324. data/vendor/plugins/selenium-on-rails/selenium-core/domviewer/butplus.gif +0 -0
  325. data/vendor/plugins/selenium-on-rails/selenium-core/domviewer/domviewer.css +0 -298
  326. data/vendor/plugins/selenium-on-rails/selenium-core/domviewer/domviewer.html +0 -16
  327. data/vendor/plugins/selenium-on-rails/selenium-core/domviewer/selenium-domviewer.js +0 -205
  328. data/vendor/plugins/selenium-on-rails/selenium-core/icons/all.png +0 -0
  329. data/vendor/plugins/selenium-on-rails/selenium-core/icons/continue.png +0 -0
  330. data/vendor/plugins/selenium-on-rails/selenium-core/icons/continue_disabled.png +0 -0
  331. data/vendor/plugins/selenium-on-rails/selenium-core/icons/pause.png +0 -0
  332. data/vendor/plugins/selenium-on-rails/selenium-core/icons/pause_disabled.png +0 -0
  333. data/vendor/plugins/selenium-on-rails/selenium-core/icons/selected.png +0 -0
  334. data/vendor/plugins/selenium-on-rails/selenium-core/icons/step.png +0 -0
  335. data/vendor/plugins/selenium-on-rails/selenium-core/icons/step_disabled.png +0 -0
  336. data/vendor/plugins/selenium-on-rails/selenium-core/iedoc-core.xml +0 -1759
  337. data/vendor/plugins/selenium-on-rails/selenium-core/iedoc.xml +0 -1800
  338. data/vendor/plugins/selenium-on-rails/selenium-core/lib/cssQuery/cssQuery-p.js +0 -6
  339. data/vendor/plugins/selenium-on-rails/selenium-core/lib/cssQuery/src/cssQuery-level2.js +0 -142
  340. data/vendor/plugins/selenium-on-rails/selenium-core/lib/cssQuery/src/cssQuery-level3.js +0 -150
  341. data/vendor/plugins/selenium-on-rails/selenium-core/lib/cssQuery/src/cssQuery-standard.js +0 -53
  342. data/vendor/plugins/selenium-on-rails/selenium-core/lib/cssQuery/src/cssQuery.js +0 -356
  343. data/vendor/plugins/selenium-on-rails/selenium-core/lib/prototype.js +0 -2006
  344. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/builder.js +0 -101
  345. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/controls.js +0 -815
  346. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/dragdrop.js +0 -915
  347. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/effects.js +0 -958
  348. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/scriptaculous.js +0 -47
  349. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/slider.js +0 -283
  350. data/vendor/plugins/selenium-on-rails/selenium-core/lib/scriptaculous/unittest.js +0 -383
  351. data/vendor/plugins/selenium-on-rails/selenium-core/lib/snapsie.js +0 -91
  352. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/find_matching_child.js +0 -69
  353. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/htmlutils.js +0 -1616
  354. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/injection.html +0 -72
  355. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-api.js +0 -3184
  356. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-browserbot.js +0 -2300
  357. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-browserdetect.js +0 -153
  358. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-commandhandlers.js +0 -377
  359. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-executionloop.js +0 -175
  360. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-logging.js +0 -148
  361. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-remoterunner.js +0 -695
  362. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-testrunner.js +0 -1362
  363. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/selenium-version.js +0 -5
  364. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/ui-doc.html +0 -803
  365. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/ui-element.js +0 -1537
  366. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/ui-map-sample.js +0 -979
  367. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/user-extensions.js +0 -3
  368. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/user-extensions.js.sample +0 -75
  369. data/vendor/plugins/selenium-on-rails/selenium-core/scripts/xmlextras.js +0 -153
  370. data/vendor/plugins/selenium-on-rails/selenium-core/selenium-logo.png +0 -0
  371. data/vendor/plugins/selenium-on-rails/selenium-core/selenium-test.css +0 -43
  372. data/vendor/plugins/selenium-on-rails/selenium-core/selenium.css +0 -316
  373. data/vendor/plugins/selenium-on-rails/selenium-core/xpath/dom.js +0 -566
  374. data/vendor/plugins/selenium-on-rails/selenium-core/xpath/javascript-xpath-0.1.11.js +0 -2816
  375. data/vendor/plugins/selenium-on-rails/selenium-core/xpath/util.js +0 -549
  376. data/vendor/plugins/selenium-on-rails/selenium-core/xpath/xmltoken.js +0 -149
  377. data/vendor/plugins/selenium-on-rails/selenium-core/xpath/xpath.js +0 -2450
  378. data/vendor/plugins/selenium-on-rails/tasks/test_acceptance.rake +0 -8
  379. data/vendor/plugins/selenium-on-rails/test/fixtures/config.yml +0 -37
  380. data/vendor/plugins/selenium-on-rails/test/fixtures/selenium.yml +0 -27
  381. data/vendor/plugins/selenium-on-rails/test/paths_test.rb +0 -72
  382. data/vendor/plugins/selenium-on-rails/test/renderer_test.rb +0 -157
  383. data/vendor/plugins/selenium-on-rails/test/rselenese_test.rb +0 -708
  384. data/vendor/plugins/selenium-on-rails/test/selenese_test.rb +0 -242
  385. data/vendor/plugins/selenium-on-rails/test/selenium_controller_test.rb +0 -67
  386. data/vendor/plugins/selenium-on-rails/test/selenium_on_rails_config_test.rb +0 -43
  387. data/vendor/plugins/selenium-on-rails/test/selenium_support_test.rb +0 -35
  388. data/vendor/plugins/selenium-on-rails/test/setup_test.rb +0 -31
  389. data/vendor/plugins/selenium-on-rails/test/suite_renderer_test.rb +0 -109
  390. data/vendor/plugins/selenium-on-rails/test/switch_environment_controller_test.rb +0 -17
  391. data/vendor/plugins/selenium-on-rails/test/test_builder_functions_authortest.rb +0 -51
  392. data/vendor/plugins/selenium-on-rails/test/test_helper.rb +0 -101
  393. data/vendor/plugins/selenium-on-rails/test_data/_partial.rsel +0 -1
  394. data/vendor/plugins/selenium-on-rails/test_data/own_layout.html +0 -12
  395. data/vendor/plugins/selenium-on-rails/test_data/partials/_html.html +0 -6
  396. data/vendor/plugins/selenium-on-rails/test_data/partials/_nesting.rsel +0 -2
  397. data/vendor/plugins/selenium-on-rails/test_data/partials/_rhtml.rhtml +0 -6
  398. data/vendor/plugins/selenium-on-rails/test_data/partials/_rsel.rsel +0 -1
  399. data/vendor/plugins/selenium-on-rails/test_data/partials/_sel.sel +0 -5
  400. data/vendor/plugins/selenium-on-rails/test_data/partials/all_partials.rsel +0 -5
  401. data/vendor/plugins/selenium-on-rails/test_data/rhtml.rhtml +0 -7
  402. data/vendor/plugins/selenium-on-rails/test_data/rselenese.rsel +0 -8
  403. data/vendor/plugins/selenium-on-rails/test_data/selenese.sel +0 -7
  404. data/vendor/plugins/selenium-on-rails/test_data/suite_one/subsuite/suite_one_subsuite_testcase.sel +0 -1
  405. data/vendor/plugins/selenium-on-rails/test_data/suite_one/suite_one_testcase1.sel +0 -1
  406. data/vendor/plugins/selenium-on-rails/test_data/suite_one/suite_one_testcase2.sel +0 -1
  407. data/vendor/plugins/selenium-on-rails/test_data/suite_two/suite_two_testcase.sel +0 -1
@@ -1,10 +1,11 @@
1
1
  msgid ""
2
2
  msgstr ""
3
3
  "Project-Id-Version: version 0.0.1\n"
4
- "POT-Creation-Date: 2011-06-27 20:32-0000\n"
4
+ "POT-Creation-Date: 2013-11-13 05:23-0000\n"
5
5
  "PO-Revision-Date: 2011-06-27 22:14+0100\n"
6
6
  "Last-Translator: Gaspard Bucher <gaspard@teti.ch>\n"
7
7
  "Language-Team: en <gaspard@teti.ch>\n"
8
+ "Language: \n"
8
9
  "MIME-Version: 1.0\n"
9
10
  "Content-Type: text/plain; charset=UTF-8\n"
10
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -13,11 +14,11 @@ msgstr ""
13
14
  "X-Poedit-Bookmarks: -1,-1,-1,219,-1,-1,-1,-1,-1,-1\n"
14
15
  "X-Poedit-Basepath: /Users/gaspard/svk/zena\n"
15
16
 
16
- #: lib/gettext_strings.rb:119
17
+ #: lib/gettext_strings.rb:121
17
18
  msgid "%Y-%m-%d %H:%M"
18
19
  msgstr "%Y-%m-%d %H:%M"
19
20
 
20
- #: app/models/text_document.rb:79
21
+ #: app/models/text_document.rb:80
21
22
  #, fuzzy
22
23
  msgid "%{asset} not found"
23
24
  msgstr "Node not found."
@@ -30,11 +31,11 @@ msgstr ""
30
31
  msgid "%{d} days ago"
31
32
  msgstr ""
32
33
 
33
- #: lib/gettext_strings.rb:75 lib/zena/use/display.rb:162
34
+ #: lib/gettext_strings.rb:77 lib/zena/use/display.rb:187
34
35
  msgid "%{ext} document"
35
36
  msgstr ""
36
37
 
37
- #: lib/zena/use/display.rb:166
38
+ #: lib/zena/use/display.rb:191
38
39
  msgid "%{ext} node"
39
40
  msgstr ""
40
41
 
@@ -46,7 +47,7 @@ msgstr ""
46
47
  msgid "%{m} minutes ago"
47
48
  msgstr ""
48
49
 
49
- #: lib/gettext_strings.rb:76 lib/zena/use/display.rb:150
50
+ #: lib/gettext_strings.rb:78 lib/zena/use/display.rb:175
50
51
  msgid "%{type} node"
51
52
  msgstr ""
52
53
 
@@ -62,24 +63,24 @@ msgstr ""
62
63
  msgid "1 minute ago"
63
64
  msgstr ""
64
65
 
65
- #: app/views/sites/_form.erb:23
66
+ #: app/views/sites/_form.erb:26
66
67
  #, fuzzy
67
68
  msgid "API group"
68
69
  msgstr "<img src='/images/group.png' alt='group'/>"
69
70
 
70
- #: lib/gettext_strings.rb:146
71
+ #: lib/gettext_strings.rb:148
71
72
  msgid "Apr"
72
73
  msgstr ""
73
74
 
74
- #: lib/gettext_strings.rb:133
75
+ #: lib/gettext_strings.rb:135
75
76
  msgid "April"
76
77
  msgstr ""
77
78
 
78
- #: app/views/acls/_form.rhtml:66
79
+ #: app/views/acls/_form.rhtml:70
79
80
  msgid "Are you sure you want to destroy this access ?"
80
81
  msgstr ""
81
82
 
82
- #: app/views/groups/_form.rhtml:39
83
+ #: app/views/groups/_form.rhtml:46
83
84
  msgid "Are you sure you want to destroy this group ?"
84
85
  msgstr ""
85
86
 
@@ -87,15 +88,15 @@ msgstr ""
87
88
  msgid "Are you sure you want to destroy this image format ?"
88
89
  msgstr ""
89
90
 
90
- #: app/views/columns/_form.html.erb:32
91
+ #: app/views/columns/_form.html.erb:40
91
92
  msgid "Are you sure you want to destroy this property definition ?"
92
93
  msgstr ""
93
94
 
94
- #: app/views/relations/_form.erb:43
95
+ #: app/views/relations/_form.erb:46
95
96
  msgid "Are you sure you want to destroy this relation ?"
96
97
  msgstr ""
97
98
 
98
- #: app/views/virtual_classes/_form.erb:51
99
+ #: app/views/virtual_classes/_form.erb:53
99
100
  msgid "Are you sure you want to destroy this virtual class ?"
100
101
  msgstr ""
101
102
 
@@ -104,18 +105,31 @@ msgid ""
104
105
  "Are you sure you want to permanently remove the content of this rubbish bin ?"
105
106
  msgstr ""
106
107
 
107
- #: lib/gettext_strings.rb:150
108
+ #: lib/gettext_strings.rb:152
108
109
  msgid "Aug"
109
110
  msgstr ""
110
111
 
111
- #: lib/gettext_strings.rb:137
112
+ #: lib/gettext_strings.rb:139
112
113
  msgid "August"
113
114
  msgstr ""
114
115
 
115
- #: app/controllers/nodes_controller.rb:311
116
+ #: app/controllers/nodes_controller.rb:374
116
117
  msgid "Backup created."
117
118
  msgstr ""
118
119
 
120
+ #: app/models/user.rb:378
121
+ msgid "Cannot be changed"
122
+ msgstr ""
123
+
124
+ #: app/models/user.rb:387
125
+ #, fuzzy
126
+ msgid "Cannot be found"
127
+ msgstr "Node not found."
128
+
129
+ #: app/models/user.rb:504
130
+ msgid "Cannot be removed (profile used)."
131
+ msgstr ""
132
+
119
133
  #: app/controllers/columns_controller.rb:73
120
134
  #, fuzzy
121
135
  msgid "Column was successfully created."
@@ -143,48 +157,53 @@ msgstr ""
143
157
  msgid "Could not change version back to redaction."
144
158
  msgstr ""
145
159
 
146
- #: app/controllers/nodes_controller.rb:515
160
+ #: app/controllers/nodes_controller.rb:588
147
161
  #, fuzzy
148
162
  msgid "Could not clear order."
149
163
  msgstr "User could not be updated."
150
164
 
151
- #: app/controllers/nodes_controller.rb:313
165
+ #: app/controllers/nodes_controller.rb:376
152
166
  msgid "Could not create backup."
153
167
  msgstr ""
154
168
 
155
- #: app/controllers/nodes_controller.rb:280
169
+ #: app/controllers/nodes_controller.rb:329
156
170
  #, fuzzy
157
171
  msgid "Could not destroy node."
158
172
  msgstr "User could not be updated."
159
173
 
160
- #: app/controllers/versions_controller.rb:234
174
+ #: app/controllers/versions_controller.rb:261
161
175
  #, fuzzy
162
176
  msgid "Could not destroy version."
163
177
  msgstr "User could not be updated."
164
178
 
165
- #: app/controllers/versions_controller.rb:166
179
+ #: app/controllers/virtual_classes_controller.rb:85
180
+ #, fuzzy
181
+ msgid "Could not parse yaml document"
182
+ msgstr "User could not be updated."
183
+
184
+ #: app/controllers/versions_controller.rb:193
166
185
  msgid "Could not propose redaction."
167
186
  msgstr ""
168
187
 
169
- #: app/controllers/versions_controller.rb:185
188
+ #: app/controllers/versions_controller.rb:212
170
189
  #, fuzzy
171
190
  msgid "Could not publish:"
172
191
  msgstr "<img src='/images/wand.png' alt='publish'/>"
173
192
 
174
- #: app/controllers/versions_controller.rb:176
193
+ #: app/controllers/versions_controller.rb:203
175
194
  msgid "Could not refuse proposition."
176
195
  msgstr ""
177
196
 
178
- #: app/controllers/versions_controller.rb:195
179
- #: app/controllers/versions_controller.rb:215
197
+ #: app/controllers/versions_controller.rb:222
198
+ #: app/controllers/versions_controller.rb:242
180
199
  msgid "Could not remove publication."
181
200
  msgstr ""
182
201
 
183
- #: app/controllers/versions_controller.rb:204
202
+ #: app/controllers/versions_controller.rb:231
184
203
  msgid "Could not rollback:"
185
204
  msgstr ""
186
205
 
187
- #: app/controllers/nodes_controller.rb:498
206
+ #: app/controllers/nodes_controller.rb:571
188
207
  msgid "Could not update order."
189
208
  msgstr ""
190
209
 
@@ -193,104 +212,110 @@ msgstr ""
193
212
  msgid "Data entry was successfully created."
194
213
  msgstr "Informations successfully updated."
195
214
 
196
- #: lib/gettext_strings.rb:154
215
+ #: lib/gettext_strings.rb:156
197
216
  msgid "Dec"
198
217
  msgstr ""
199
218
 
200
- #: lib/gettext_strings.rb:141
219
+ #: lib/gettext_strings.rb:143
201
220
  msgid "December"
202
221
  msgstr ""
203
222
 
204
- #: lib/zena/use/calendar.rb:138
223
+ #: lib/zena/use/calendar.rb:139
205
224
  msgid "Delete relation '%{role}' between '%{source}' and '%{target}' ?"
206
225
  msgstr ""
207
226
 
208
- #: lib/gettext_strings.rb:144
227
+ #: lib/gettext_strings.rb:146
209
228
  msgid "Feb"
210
229
  msgstr ""
211
230
 
212
- #: lib/gettext_strings.rb:131
231
+ #: lib/gettext_strings.rb:133
213
232
  msgid "February"
214
233
  msgstr ""
215
234
 
216
- #: lib/gettext_strings.rb:126
235
+ #: lib/gettext_strings.rb:128
217
236
  msgid "Fri"
218
237
  msgstr ""
219
238
 
220
- #: lib/gettext_strings.rb:113
239
+ #: lib/gettext_strings.rb:115
221
240
  msgid "Friday"
222
241
  msgstr ""
223
242
 
224
- #: app/controllers/sites_controller.rb:53
243
+ #: app/controllers/sites_controller.rb:68
225
244
  msgid "Invalid action '%{action}'."
226
245
  msgstr ""
227
246
 
228
- #: app/controllers/user_sessions_controller.rb:21
247
+ #: app/controllers/user_sessions_controller.rb:28
248
+ #: app/controllers/user_sessions_controller.rb:38
229
249
  msgid "Invalid login or password."
230
250
  msgstr "Invalid login or password."
231
251
 
232
- #: lib/gettext_strings.rb:143
252
+ #: lib/gettext_strings.rb:145
233
253
  msgid "Jan"
234
254
  msgstr ""
235
255
 
236
- #: lib/gettext_strings.rb:130
256
+ #: lib/gettext_strings.rb:132
237
257
  msgid "January"
238
258
  msgstr ""
239
259
 
240
- #: lib/gettext_strings.rb:149
260
+ #: lib/gettext_strings.rb:151
241
261
  msgid "Jul"
242
262
  msgstr ""
243
263
 
244
- #: lib/gettext_strings.rb:136
264
+ #: lib/gettext_strings.rb:138
245
265
  msgid "July"
246
266
  msgstr ""
247
267
 
248
- #: lib/gettext_strings.rb:148
268
+ #: lib/gettext_strings.rb:150
249
269
  msgid "Jun"
250
270
  msgstr ""
251
271
 
252
- #: lib/gettext_strings.rb:135
272
+ #: lib/gettext_strings.rb:137
253
273
  msgid "June"
254
274
  msgstr ""
255
275
 
256
- #: lib/gettext_strings.rb:145
276
+ #: lib/gettext_strings.rb:160
277
+ msgid "Login for"
278
+ msgstr ""
279
+
280
+ #: lib/gettext_strings.rb:147
257
281
  msgid "Mar"
258
282
  msgstr ""
259
283
 
260
- #: lib/gettext_strings.rb:132
284
+ #: lib/gettext_strings.rb:134
261
285
  msgid "March"
262
286
  msgstr ""
263
287
 
264
- #: lib/gettext_strings.rb:134 lib/gettext_strings.rb:147
288
+ #: lib/gettext_strings.rb:136 lib/gettext_strings.rb:149
265
289
  msgid "May"
266
290
  msgstr ""
267
291
 
268
- #: lib/gettext_strings.rb:122
292
+ #: lib/gettext_strings.rb:124
269
293
  msgid "Mon"
270
294
  msgstr ""
271
295
 
272
- #: lib/gettext_strings.rb:109
296
+ #: lib/gettext_strings.rb:111
273
297
  msgid "Monday"
274
298
  msgstr ""
275
299
 
276
- #: app/controllers/versions_controller.rb:224
300
+ #: app/controllers/nodes_controller.rb:326
301
+ #: app/controllers/versions_controller.rb:251
277
302
  #, fuzzy
278
303
  msgid "Node destroyed."
279
304
  msgstr "<img src='/images/bomb.png' alt='destroy'/>"
280
305
 
281
- #: lib/gettext_strings.rb:153
306
+ #: lib/gettext_strings.rb:155
282
307
  msgid "Nov"
283
308
  msgstr ""
284
309
 
285
- #: lib/gettext_strings.rb:140
310
+ #: lib/gettext_strings.rb:142
286
311
  msgid "November"
287
312
  msgstr ""
288
313
 
289
- #: lib/gettext_strings.rb:152
314
+ #: lib/gettext_strings.rb:154
290
315
  msgid "Oct"
291
316
  msgstr ""
292
317
 
293
- #: lib/gettext_strings.rb:139
318
+ #: lib/gettext_strings.rb:141
294
319
  msgid "October"
295
320
  msgstr ""
296
321
 
@@ -299,29 +324,29 @@ msgstr ""
299
324
  msgid "Order cleared."
300
325
  msgstr "Order updated."
301
326
 
302
- #: app/controllers/nodes_controller.rb:496
327
+ #: app/controllers/nodes_controller.rb:569
303
328
  msgid "Order updated"
304
329
  msgstr "Order updated."
305
330
 
306
- #: lib/gettext_strings.rb:157
331
+ #: lib/gettext_strings.rb:159
307
332
  msgid "Password:"
308
333
  msgstr ""
309
334
 
310
- #: app/controllers/versions_controller.rb:173
335
+ #: app/controllers/versions_controller.rb:200
311
336
  msgid "Proposition refused."
312
337
  msgstr ""
313
338
 
314
- #: app/controllers/versions_controller.rb:193
315
- #: app/controllers/versions_controller.rb:213
339
+ #: app/controllers/versions_controller.rb:220
340
+ #: app/controllers/versions_controller.rb:240
316
341
  #, fuzzy
317
342
  msgid "Publication removed."
318
343
  msgstr "<img src='/images/delete.png' alt='delete'/>"
319
344
 
320
- #: app/controllers/versions_controller.rb:164
345
+ #: app/controllers/versions_controller.rb:191
321
346
  msgid "Redaction proposed for publication."
322
347
  msgstr ""
323
348
 
324
- #: app/controllers/versions_controller.rb:183
349
+ #: app/controllers/versions_controller.rb:210
325
350
  #, fuzzy
326
351
  msgid "Redaction published."
327
352
  msgstr "<img src='/images/wand.png' alt='publish'/>"
@@ -336,36 +361,36 @@ msgstr "Informations successfully updated."
336
361
  msgid "Relation was successfully updated."
337
362
  msgstr "Informations successfully updated."
338
363
 
339
- #: app/controllers/versions_controller.rb:202
364
+ #: app/controllers/versions_controller.rb:229
340
365
  msgid "Rolled back to redaction."
341
366
  msgstr ""
342
367
 
343
- #: lib/gettext_strings.rb:127
368
+ #: lib/gettext_strings.rb:129
344
369
  msgid "Sat"
345
370
  msgstr ""
346
371
 
347
- #: lib/gettext_strings.rb:114
372
+ #: lib/gettext_strings.rb:116
348
373
  msgid "Saturday"
349
374
  msgstr ""
350
375
 
351
- #: lib/gettext_strings.rb:151
376
+ #: lib/gettext_strings.rb:153
352
377
  msgid "Sep"
353
378
  msgstr ""
354
379
 
355
- #: lib/gettext_strings.rb:138
380
+ #: lib/gettext_strings.rb:140
356
381
  msgid "September"
357
382
  msgstr ""
358
383
 
359
- #: app/controllers/sites_controller.rb:36
384
+ #: app/controllers/sites_controller.rb:44
360
385
  #, fuzzy
361
386
  msgid "Site was successfully updated."
362
387
  msgstr "Le mot de passe a été modifié avec succès."
363
388
 
364
- #: lib/gettext_strings.rb:128
389
+ #: lib/gettext_strings.rb:130
365
390
  msgid "Sun"
366
391
  msgstr ""
367
392
 
368
- #: lib/gettext_strings.rb:115
393
+ #: lib/gettext_strings.rb:117
369
394
  msgid "Sunday"
370
395
  msgstr ""
371
396
 
@@ -373,19 +398,19 @@ msgstr ""
373
398
  msgid "This node contains sub-nodes: it cannot be destroyed."
374
399
  msgstr ""
375
400
 
376
- #: lib/gettext_strings.rb:125
401
+ #: lib/gettext_strings.rb:127
377
402
  msgid "Thu"
378
403
  msgstr ""
379
404
 
380
- #: lib/gettext_strings.rb:112
405
+ #: lib/gettext_strings.rb:114
381
406
  msgid "Thursday"
382
407
  msgstr ""
383
408
 
384
- #: lib/gettext_strings.rb:123
409
+ #: lib/gettext_strings.rb:125
385
410
  msgid "Tue"
386
411
  msgstr ""
387
412
 
388
- #: lib/gettext_strings.rb:110
413
+ #: lib/gettext_strings.rb:112
389
414
  msgid "Tuesday"
390
415
  msgstr ""
391
416
 
@@ -393,7 +418,7 @@ msgstr ""
393
418
  msgid "Upload failed."
394
419
  msgstr ""
395
420
 
396
- #: app/controllers/virtual_classes_controller.rb:54
421
+ #: app/controllers/virtual_classes_controller.rb:55
397
422
  msgid "Upload failure: no definitions."
398
423
  msgstr ""
399
424
 
@@ -401,7 +426,7 @@ msgstr ""
401
426
  msgid "Upload succeeded."
402
427
  msgstr ""
403
428
 
404
- #: lib/gettext_strings.rb:156
429
+ #: lib/gettext_strings.rb:158
405
430
  msgid "User name:"
406
431
  msgstr ""
407
432
 
@@ -409,37 +434,42 @@ msgstr ""
409
434
  msgid "Version changed back to redaction."
410
435
  msgstr ""
411
436
 
412
- #: app/controllers/versions_controller.rb:230
437
+ #: app/controllers/versions_controller.rb:257
413
438
  msgid "Version destroyed."
414
439
  msgstr ""
415
440
 
416
- #: app/controllers/virtual_classes_controller.rb:146
441
+ #: app/controllers/virtual_classes_controller.rb:152
417
442
  #, fuzzy
418
443
  msgid "VirtualClass was successfully created."
419
444
  msgstr "Informations successfully updated."
420
445
 
421
- #: app/controllers/virtual_classes_controller.rb:161
446
+ #: app/controllers/virtual_classes_controller.rb:167
422
447
  #, fuzzy
423
448
  msgid "VirtualClass was successfully updated."
424
449
  msgstr "Le mot de passe a été modifié avec succès."
425
450
 
426
- #: lib/gettext_strings.rb:124
451
+ #: lib/gettext_strings.rb:126
427
452
  msgid "Wed"
428
453
  msgstr ""
429
454
 
430
- #: lib/gettext_strings.rb:111
455
+ #: lib/gettext_strings.rb:113
431
456
  msgid "Wednesday"
432
457
  msgstr ""
433
458
 
434
- #: lib/zena/parser/zazen_rules.rb:113
459
+ #: app/controllers/user_sessions_controller.rb:23
460
+ msgid ""
461
+ "You need to wait %ih %im %is before any new attempt (%i failed attempts)."
462
+ msgstr ""
463
+
464
+ #: lib/zena/parser/zazen_rules.rb:120
435
465
  msgid "[documents]"
436
466
  msgstr ""
437
467
 
438
- #: lib/zena/parser/zazen_rules.rb:98
468
+ #: lib/zena/parser/zazen_rules.rb:105
439
469
  msgid "[gallery]"
440
470
  msgstr ""
441
471
 
442
- #: lib/zena/use/display.rb:653
472
+ #: lib/zena/use/display.rb:618
443
473
  msgid "a Zen garden"
444
474
  msgstr ""
445
475
 
@@ -451,17 +481,17 @@ msgstr ""
451
481
  msgid "acl_action_help"
452
482
  msgstr "Action on which this acl will be used."
453
483
 
454
- #: app/views/acls/_form.rhtml:51
484
+ #: app/views/acls/_form.rhtml:55
455
485
  msgid "acl_exec_group_help"
456
486
  msgstr ""
457
487
  "Group added to the visitor during request execution and rendering (if "
458
488
  "request validates)."
459
489
 
460
- #: app/views/acls/_form.rhtml:55
490
+ #: app/views/acls/_form.rhtml:59
461
491
  msgid "acl_exec_skin_help"
462
492
  msgstr "Force a given rendering skin."
463
493
 
464
- #: app/views/acls/_form.rhtml:39
494
+ #: app/views/acls/_form.rhtml:43
465
495
  msgid "acl_format_help"
466
496
  msgstr "Format (html,xml,...) for which this acl can be used ('*' = any)."
467
497
 
@@ -469,37 +499,42 @@ msgstr "Format (html,xml,...) for which this acl can be used ('*' = any)."
469
499
  msgid "acl_group_help"
470
500
  msgstr "Group of users for which this acl can apply."
471
501
 
472
- #: app/views/acls/_form.rhtml:35
502
+ #: app/views/acls/_form.rhtml:39
473
503
  msgid "acl_mode_help"
474
504
  msgstr "Mode for which this acl can be used ('*' = any, '' = no mode)."
475
505
 
476
- #: app/views/acls/_form.rhtml:27
506
+ #: app/views/acls/_form.rhtml:31
477
507
  msgid "acl_priority_help"
478
508
  msgstr "Acl with highest priority is tested first."
479
509
 
480
- #: app/views/acls/_form.rhtml:47
510
+ #: app/views/acls/_form.rhtml:51
481
511
  msgid "acl_query_help"
482
512
  msgstr ""
483
- "SQLiss query to fetch all the nodes for which this acl authorizes access (Ruby)."
513
+ "SQLiss query to fetch all the nodes for which this acl authorizes access "
514
+ "(Ruby)."
484
515
 
485
- #: lib/zena/use/display.rb:282
516
+ #: lib/zena/use/display.rb:313
486
517
  msgid "acls"
487
518
  msgstr "acls"
488
519
 
489
- #: app/views/sites/_form.erb:32 app/views/acls/_form.rhtml:23
520
+ #: app/views/sites/_form.erb:36 app/views/acls/_form.rhtml:23
490
521
  #: app/views/acls/index.rhtml:7
491
522
  #, fuzzy
492
523
  msgid "action"
493
524
  msgstr "icon"
494
525
 
495
- #: lib/gettext_strings.rb:170
526
+ #: lib/gettext_strings.rb:173
496
527
  msgid "address"
497
528
  msgstr ""
498
529
 
499
- #: lib/gettext_strings.rb:68
530
+ #: lib/gettext_strings.rb:70
500
531
  msgid "admin"
501
532
  msgstr ""
502
533
 
534
+ #: app/views/sites/_li.erb:2
535
+ msgid "alias_img"
536
+ msgstr "<img src='/images/world_link.png' alt='alias' title='alias'/>"
537
+
503
538
  #: app/views/virtual_classes/import_prepare.html.erb:11
504
539
  msgid "apply"
505
540
  msgstr ""
@@ -517,6 +552,11 @@ msgstr ""
517
552
  msgid "auto create discussion"
518
553
  msgstr "<img src='/images/comments_add.png' alt='add a discussion'/>"
519
554
 
555
+ #: app/views/groups/_form.rhtml:36 app/views/groups/_form.rhtml:39
556
+ #, fuzzy
557
+ msgid "auto_publish"
558
+ msgstr "<img src='/images/wand.png' alt='publish'/>"
559
+
520
560
  #: app/views/virtual_classes/index.erb:20
521
561
  msgid "back"
522
562
  msgstr ""
@@ -525,7 +565,7 @@ msgstr ""
525
565
  msgid "bak"
526
566
  msgstr ""
527
567
 
528
- #: lib/gettext_strings.rb:177
568
+ #: lib/gettext_strings.rb:180
529
569
  msgid "birthday"
530
570
  msgstr ""
531
571
 
@@ -533,11 +573,12 @@ msgstr ""
533
573
  msgid "btn_acl_add"
534
574
  msgstr "<img src='/images/key_add.png' alt='add an access'/>"
535
575
 
536
- #: lib/gettext_strings.rb:26
576
+ #: lib/gettext_strings.rb:26 lib/zafu/process/ajax.rb:330
537
577
  msgid "btn_add"
538
578
  msgstr "<img src='/images/add.png' alt='add'/>"
539
579
 
540
580
  #: app/views/comments/_add.rhtml:2 lib/gettext_strings.rb:27
581
+ #: lib/zafu/process/ajax.rb:330
541
582
  msgid "btn_add_comment"
542
583
  msgstr "<img src='/images/comment_add.png' alt='add a comment'/>"
543
584
 
@@ -561,19 +602,19 @@ msgstr "<img src='/images/bomb.png' alt='empty bin'/>"
561
602
  msgid "btn_column_add"
562
603
  msgstr "<img src='/images/textfield_add.png' alt='add a property'/>"
563
604
 
564
- #: lib/gettext_strings.rb:82
605
+ #: lib/gettext_strings.rb:84
565
606
  msgid "btn_destroy"
566
607
  msgstr "<img src='/images/bomb.png' alt='destroy'/>"
567
608
 
568
- #: lib/gettext_strings.rb:87
609
+ #: lib/gettext_strings.rb:89
569
610
  msgid "btn_destroy_version"
570
611
  msgstr "<img src='/images/bomb.png' alt='destroy'/>"
571
612
 
572
- #: lib/gettext_strings.rb:85
613
+ #: lib/gettext_strings.rb:87
573
614
  msgid "btn_drive"
574
615
  msgstr "<img src='/images/wrench.png' alt='drive'/>"
575
616
 
576
- #: lib/gettext_strings.rb:84
617
+ #: lib/gettext_strings.rb:86
577
618
  msgid "btn_edit"
578
619
  msgstr "<img src='/images/page_edit.png' alt='edit'/>"
579
620
 
@@ -585,7 +626,7 @@ msgstr "<img src='/images/group_add.png' alt='add a group'/>"
585
626
  msgid "btn_iformat_add"
586
627
  msgstr "<img src='/images/photo_add.png' alt='add an image format'/>"
587
628
 
588
- #: lib/gettext_strings.rb:83
629
+ #: lib/gettext_strings.rb:85
589
630
  msgid "btn_propose"
590
631
  msgstr "<img src='/images/picture_empty.png' alt='propose'/>"
591
632
 
@@ -593,11 +634,11 @@ msgstr "<img src='/images/picture_empty.png' alt='propose'/>"
593
634
  msgid "btn_publish"
594
635
  msgstr "<img src='/images/wand.png' alt='publish'/>"
595
636
 
596
- #: lib/gettext_strings.rb:88
637
+ #: lib/gettext_strings.rb:90
597
638
  msgid "btn_redit"
598
639
  msgstr "<img src='/images/page_edit.png' alt='edit'/>"
599
640
 
600
- #: lib/gettext_strings.rb:86
641
+ #: lib/gettext_strings.rb:88
601
642
  msgid "btn_refuse"
602
643
  msgstr "<img src='/images/delete.png' alt='refuse'/>"
603
644
 
@@ -605,7 +646,7 @@ msgstr "<img src='/images/delete.png' alt='refuse'/>"
605
646
  msgid "btn_relation_add"
606
647
  msgstr "<img src='/images/link_add.png' alt='add a role'/>"
607
648
 
608
- #: app/views/comments/_li.rhtml:3 lib/zena/use/action.rb:145
649
+ #: app/views/comments/_li.rhtml:3 lib/zena/use/action.rb:156
609
650
  msgid "btn_remove"
610
651
  msgstr "<img src='/images/delete.png' alt='delete'/>"
611
652
 
@@ -613,15 +654,15 @@ msgstr "<img src='/images/delete.png' alt='delete'/>"
613
654
  msgid "btn_site_add"
614
655
  msgstr "<img src='/images/world_add.png' alt='add a site'/>"
615
656
 
616
- #: app/views/links/_li.rhtml:6 lib/zena/use/ajax.rb:418
657
+ #: app/views/links/_li.rhtml:6 lib/zena/use/ajax.rb:506
617
658
  msgid "btn_tiny_del"
618
659
  msgstr "<img src='/images/bullet_delete.png' alt='remove'/>"
619
660
 
620
- #: lib/zena/use/action.rb:140
661
+ #: lib/zena/use/action.rb:151
621
662
  msgid "btn_title_close_discussion"
622
663
  msgstr "Close the discussion (disable comments)."
623
664
 
624
- #: lib/zena/use/action.rb:145
665
+ #: lib/zena/use/action.rb:156
625
666
  msgid "btn_title_destroy_discussion"
626
667
  msgstr "Delete the discussion (with all comments)."
627
668
 
@@ -633,11 +674,11 @@ msgstr "Open the drive window to change the location, links, etc."
633
674
  msgid "btn_title_edit"
634
675
  msgstr "Open the edition window to edit the node."
635
676
 
636
- #: lib/zena/use/action.rb:142
677
+ #: lib/zena/use/action.rb:153
637
678
  msgid "btn_title_open_discussion"
638
679
  msgstr "Open the edition window to edit the node"
639
680
 
640
- #: lib/gettext_strings.rb:81
681
+ #: lib/gettext_strings.rb:83
641
682
  msgid "btn_unpublish"
642
683
  msgstr "<img src='/images/delete.png' alt='unpublish'/>"
643
684
 
@@ -645,7 +686,7 @@ msgstr "<img src='/images/delete.png' alt='unpublish'/>"
645
686
  msgid "btn_user_add"
646
687
  msgstr "<img src='/images/user_add.png' alt='add a user'/>"
647
688
 
648
- #: lib/zena/use/action.rb:137
689
+ #: lib/zena/use/action.rb:148
649
690
  msgid "btn_view"
650
691
  msgstr "<img src='/images/eye.png' alt='view'/>"
651
692
 
@@ -665,7 +706,7 @@ msgstr "<img src='/images/brick_add.png' alt='add a class'/>"
665
706
  #: app/views/links/_form.rhtml:12 app/views/links/_form.rhtml:14
666
707
  #: app/views/nodes/_import_results.rhtml:3 app/views/nodes/_results.rhtml:7
667
708
  #: app/views/users/_form.rhtml:3 app/views/users/_form.rhtml:5
668
- #: lib/zena/use/forms.rb:199
709
+ #: lib/zena/use/forms.rb:209
669
710
  msgid "btn_x"
670
711
  msgstr "<img src='/images/cross.png' alt='cancel'/>"
671
712
 
@@ -676,16 +717,16 @@ msgstr "<img src='/images/cross.png' alt='cancel'/>"
676
717
  msgid "cancel"
677
718
  msgstr ""
678
719
 
679
- #: app/models/relation_proxy.rb:399
720
+ #: app/models/relation_proxy.rb:400
680
721
  msgid "cannot remove link"
681
722
  msgstr ""
682
723
 
683
- #: app/models/relation_proxy.rb:282
724
+ #: app/models/relation_proxy.rb:283
684
725
  msgid "cannot update multiple targets"
685
726
  msgstr ""
686
727
 
687
728
  #: app/views/nodes/_groups.rhtml:19 app/views/nodes/_parent.rhtml:11
688
- #: lib/zena/use/upload.rb:167
729
+ #: lib/zena/use/upload.rb:215
689
730
  msgid "change"
690
731
  msgstr ""
691
732
 
@@ -702,16 +743,16 @@ msgstr ""
702
743
  msgid "class"
703
744
  msgstr "<img src='/images/lock.png' alt='closed'/>"
704
745
 
705
- #: app/views/templates/document_create_tabs/_import.rhtml:7
746
+ #: app/views/templates/document_create_tabs/_import.rhtml:10
706
747
  msgid "class of first element"
707
748
  msgstr ""
708
749
 
709
- #: app/views/templates/document_create_tabs/_template.rhtml:10
750
+ #: app/views/templates/document_create_tabs/_template.rhtml:13
710
751
  #: app/views/templates/edit_tabs/_template.rhtml:7
711
752
  msgid "class scope"
712
753
  msgstr ""
713
754
 
714
- #: app/views/virtual_classes/index.erb:1 lib/zena/use/display.rb:270
755
+ #: app/views/virtual_classes/index.erb:1 lib/zena/use/display.rb:301
715
756
  msgid "classes"
716
757
  msgstr ""
717
758
 
@@ -720,11 +761,11 @@ msgstr ""
720
761
  msgid "classes import"
721
762
  msgstr "import"
722
763
 
723
- #: lib/gettext_strings.rb:180
764
+ #: lib/gettext_strings.rb:183
724
765
  msgid "clear_cache"
725
766
  msgstr ""
726
767
 
727
- #: lib/gettext_strings.rb:181
768
+ #: lib/gettext_strings.rb:184
728
769
  msgid "clear_cache done."
729
770
  msgstr "Cache cleared."
730
771
 
@@ -733,7 +774,7 @@ msgstr "Cache cleared."
733
774
  msgid "close"
734
775
  msgstr "<img src='/images/lock.png' alt='closed'/>"
735
776
 
736
- #: lib/gettext_strings.rb:63
777
+ #: lib/gettext_strings.rb:65
737
778
  #, fuzzy
738
779
  msgid "closed"
739
780
  msgstr "<img src='/images/lock.png' alt='closed'/>"
@@ -742,7 +783,7 @@ msgstr "<img src='/images/lock.png' alt='closed'/>"
742
783
  msgid "column_error_img"
743
784
  msgstr "<img src='/images/textfield_error.png' alt='property error'/>"
744
785
 
745
- #: app/views/links/_form.rhtml:30
786
+ #: app/views/columns/_form.html.erb:31 app/views/links/_form.rhtml:30
746
787
  msgid "comment"
747
788
  msgstr ""
748
789
 
@@ -750,11 +791,11 @@ msgstr ""
750
791
  msgid "comment(s)"
751
792
  msgstr ""
752
793
 
753
- #: lib/gettext_strings.rb:70
794
+ #: lib/gettext_strings.rb:72
754
795
  msgid "commentator"
755
796
  msgstr ""
756
797
 
757
- #: app/views/comments/index.rhtml:1 lib/zena/use/display.rb:258
798
+ #: app/views/comments/index.rhtml:1 lib/zena/use/display.rb:289
758
799
  msgid "comments"
759
800
  msgstr ""
760
801
 
@@ -767,27 +808,29 @@ msgstr ""
767
808
  msgid "contact_tab"
768
809
  msgstr "contact"
769
810
 
770
- #: app/views/templates/document_create_tabs/_text_document.rhtml:5
811
+ #: app/views/templates/document_create_tabs/_text_document.rhtml:8
771
812
  #: app/views/templates/edit_tabs/_document.rhtml:3
772
813
  #: app/views/templates/edit_tabs/_textdocument.rhtml:9
773
814
  msgid "content type"
774
815
  msgstr ""
775
816
 
817
+ #: app/views/virtual_classes/_form.erb:45
818
+ #, fuzzy
819
+ msgid "content_type"
820
+ msgstr "contact"
821
+
776
822
  #: app/views/documents/_crop.rhtml:3
777
823
  msgid "convert"
778
824
  msgstr ""
779
825
 
780
- #: app/models/node.rb:1535 app/models/node.rb:1547
781
- #: app/models/relation_proxy.rb:185 app/models/relation_proxy.rb:209
826
+ #: app/models/node.rb:1590 app/models/node.rb:1602
827
+ #: app/models/relation_proxy.rb:186 app/models/relation_proxy.rb:210
828
+ #: app/models/site.rb:405 app/models/site.rb:420
782
829
  #, fuzzy
783
830
  msgid "could not be found"
784
831
  msgstr "Node not found."
785
832
 
786
- #: lib/zena/use/grid.rb:70 lib/zena/use/grid.rb:98
787
- msgid "could not save value (bad attribute)"
788
- msgstr ""
789
-
790
- #: app/controllers/nodes_controller.rb:368
833
+ #: app/controllers/nodes_controller.rb:446
791
834
  msgid "could not update"
792
835
  msgstr "The node could not be updated."
793
836
 
@@ -795,7 +838,7 @@ msgstr "The node could not be updated."
795
838
  msgid "could not update user"
796
839
  msgstr "User could not be updated."
797
840
 
798
- #: lib/gettext_strings.rb:173
841
+ #: lib/gettext_strings.rb:176
799
842
  msgid "country"
800
843
  msgstr ""
801
844
 
@@ -803,10 +846,9 @@ msgstr ""
803
846
  msgid "create"
804
847
  msgstr ""
805
848
 
806
- #: app/views/virtual_classes/_form.erb:42
807
- #, fuzzy
808
- msgid "create group"
809
- msgstr "<img src='/images/group.png' alt='group'/>"
849
+ #: app/views/acls/_form.rhtml:27
850
+ msgid "create only: allow"
851
+ msgstr ""
810
852
 
811
853
  #: app/views/templates/edit_tabs/_image.rhtml:10
812
854
  msgid "crop/resize"
@@ -830,13 +872,13 @@ msgstr "++"
830
872
  msgid "data entries"
831
873
  msgstr "%Y-%m-%d %H:%M"
832
874
 
833
- #: lib/gettext_strings.rb:117 lib/zena/use/dates.rb:16
834
- #: lib/zena/use/dates.rb:130 lib/zena/use/dates.rb:183
835
- #: lib/zena/use/dates.rb:194
875
+ #: lib/gettext_strings.rb:119 lib/zena/use/dates.rb:16
876
+ #: lib/zena/use/dates.rb:130 lib/zena/use/dates.rb:190
877
+ #: lib/zena/use/dates.rb:201
836
878
  msgid "datetime"
837
879
  msgstr "%Y-%m-%d %H:%M"
838
880
 
839
- #: lib/gettext_strings.rb:108
881
+ #: lib/gettext_strings.rb:110
840
882
  msgid "de"
841
883
  msgstr "german"
842
884
 
@@ -844,26 +886,26 @@ msgstr "german"
844
886
  msgid "default_iformat_img"
845
887
  msgstr "<img src='/images/photo_grey.png' alt='image format'/>"
846
888
 
847
- #: lib/gettext_strings.rb:73
889
+ #: lib/gettext_strings.rb:75
848
890
  msgid "deleted"
849
891
  msgstr ""
850
892
 
851
- #: app/views/acls/_form.rhtml:43
893
+ #: app/views/acls/_form.rhtml:47
852
894
  msgid "description"
853
895
  msgstr ""
854
896
 
855
- #: app/views/columns/_form.html.erb:33 app/views/relations/_form.erb:44
856
- #: app/views/virtual_classes/_form.erb:52 app/views/acls/_form.rhtml:68
857
- #: app/views/groups/_form.rhtml:41 app/views/iformats/_form.rhtml:27
897
+ #: app/views/columns/_form.html.erb:41 app/views/relations/_form.erb:47
898
+ #: app/views/virtual_classes/_form.erb:54 app/views/acls/_form.rhtml:72
899
+ #: app/views/groups/_form.rhtml:48 app/views/iformats/_form.rhtml:27
858
900
  #, fuzzy
859
901
  msgid "destroy"
860
902
  msgstr "<img src='/images/bomb.png' alt='destroy'/>"
861
903
 
862
- #: app/views/acls/_form.rhtml:68
904
+ #: app/views/acls/_form.rhtml:72
863
905
  msgid "destroy acl"
864
906
  msgstr "destroy acl"
865
907
 
866
- #: app/views/groups/_form.rhtml:41
908
+ #: app/views/groups/_form.rhtml:48
867
909
  #, fuzzy
868
910
  msgid "destroy group"
869
911
  msgstr "<img src='/images/group.png' alt='group'/>"
@@ -872,16 +914,16 @@ msgstr "<img src='/images/group.png' alt='group'/>"
872
914
  msgid "destroy image format"
873
915
  msgstr ""
874
916
 
875
- #: app/views/columns/_form.html.erb:33
917
+ #: app/views/columns/_form.html.erb:41
876
918
  #, fuzzy
877
919
  msgid "destroy property"
878
920
  msgstr "<img src='/images/group.png' alt='group'/>"
879
921
 
880
- #: app/views/relations/_form.erb:44
922
+ #: app/views/relations/_form.erb:47
881
923
  msgid "destroy relation (with all links)"
882
924
  msgstr ""
883
925
 
884
- #: app/views/virtual_classes/_form.erb:52
926
+ #: app/views/virtual_classes/_form.erb:54
885
927
  #, fuzzy
886
928
  msgid "destroy virtual class"
887
929
  msgstr "<img src='/images/brick.png' alt='class'/>"
@@ -912,10 +954,15 @@ msgstr "doc"
912
954
  msgid "drive_tab"
913
955
  msgstr "drive"
914
956
 
915
- #: lib/zena/use/urls.rb:834
957
+ #: lib/zafu/process/ajax.rb:218 lib/zena/use/urls.rb:767
916
958
  msgid "edit"
917
959
  msgstr ""
918
960
 
961
+ #: app/views/virtual_classes/_form.erb:42
962
+ #, fuzzy
963
+ msgid "edit group"
964
+ msgstr "<img src='/images/group.png' alt='group'/>"
965
+
919
966
  #: app/views/relations/edit.erb:1
920
967
  #, fuzzy
921
968
  msgid "edit relation"
@@ -926,23 +973,28 @@ msgstr "<img src='/images/target.png' alt='role'/>"
926
973
  msgid "edit site"
927
974
  msgstr "%Y-%m-%d %H:%M"
928
975
 
929
- #: lib/gettext_strings.rb:176
976
+ #: lib/gettext_strings.rb:179
930
977
  msgid "email"
931
978
  msgstr ""
932
979
 
933
- #: lib/gettext_strings.rb:106
980
+ #: lib/gettext_strings.rb:108
934
981
  msgid "en"
935
982
  msgstr "english"
936
983
 
937
- #: app/views/acls/_form.rhtml:51 app/views/acls/index.rhtml:12
984
+ #: app/views/acls/_form.rhtml:55 app/views/acls/index.rhtml:12
938
985
  #, fuzzy
939
986
  msgid "exec group"
940
987
  msgstr "<img src='/images/group.png' alt='group'/>"
941
988
 
942
- #: app/views/acls/_form.rhtml:55 app/views/acls/index.rhtml:13
989
+ #: app/views/acls/_form.rhtml:59 app/views/acls/index.rhtml:13
943
990
  msgid "exec skin"
944
991
  msgstr ""
945
992
 
993
+ #: app/views/sites/jobs.erb:5
994
+ #, fuzzy
995
+ msgid "execution"
996
+ msgstr "icon"
997
+
946
998
  #: app/views/virtual_classes/index.erb:25
947
999
  #, fuzzy
948
1000
  msgid "export"
@@ -956,12 +1008,12 @@ msgstr ""
956
1008
  msgid "file_tab"
957
1009
  msgstr "file"
958
1010
 
959
- #: lib/gettext_strings.rb:168
1011
+ #: lib/gettext_strings.rb:171
960
1012
  msgid "first_name"
961
1013
  msgstr "first name"
962
1014
 
963
- #: app/views/acls/_form.rhtml:39 app/views/acls/index.rhtml:10
964
- #: app/views/templates/document_create_tabs/_template.rhtml:16
1015
+ #: app/views/acls/_form.rhtml:43 app/views/acls/index.rhtml:10
1016
+ #: app/views/templates/document_create_tabs/_template.rhtml:19
965
1017
  #: app/views/templates/edit_tabs/_template.rhtml:1
966
1018
  msgid "format"
967
1019
  msgstr ""
@@ -970,16 +1022,16 @@ msgstr ""
970
1022
  msgid "forward"
971
1023
  msgstr ""
972
1024
 
973
- #: lib/gettext_strings.rb:107
1025
+ #: lib/gettext_strings.rb:109
974
1026
  msgid "fr"
975
1027
  msgstr "french"
976
1028
 
977
- #: lib/zena/use/calendar.rb:127
1029
+ #: lib/zena/use/calendar.rb:128
978
1030
  #, fuzzy
979
1031
  msgid "free"
980
1032
  msgstr "french"
981
1033
 
982
- #: lib/zena/use/i18n.rb:87
1034
+ #: lib/zena/use/i18n.rb:98
983
1035
  msgid "full_date"
984
1036
  msgstr "%A, %B %d %Y"
985
1037
 
@@ -996,12 +1048,12 @@ msgstr ""
996
1048
  msgid "group"
997
1049
  msgstr ""
998
1050
 
999
- #: app/views/groups/index.rhtml:1 app/views/users/_form.rhtml:29
1000
- #: lib/zena/use/display.rb:264
1051
+ #: app/views/groups/index.rhtml:1 app/views/users/_form.rhtml:37
1052
+ #: lib/zena/use/display.rb:295
1001
1053
  msgid "groups"
1002
1054
  msgstr ""
1003
1055
 
1004
- #: app/models/column.rb:97
1056
+ #: app/models/column.rb:122
1005
1057
  msgid "has already been taken in %s"
1006
1058
  msgstr ""
1007
1059
 
@@ -1028,11 +1080,16 @@ msgstr ""
1028
1080
  msgid "help_tab"
1029
1081
  msgstr "help"
1030
1082
 
1083
+ #: app/views/sites/_form.erb:17
1084
+ #, fuzzy
1085
+ msgid "home"
1086
+ msgstr "management"
1087
+
1031
1088
  #: app/views/sites/_form.erb:16
1032
1089
  msgid "host"
1033
1090
  msgstr ""
1034
1091
 
1035
- #: app/views/relations/_form.erb:35 app/views/virtual_classes/_form.erb:45
1092
+ #: app/views/relations/_form.erb:35 app/views/virtual_classes/_form.erb:47
1036
1093
  msgid "icon"
1037
1094
  msgstr "icon"
1038
1095
 
@@ -1061,7 +1118,7 @@ msgstr "<img src='/images/photo.png' alt='image format'/>"
1061
1118
  msgid "image"
1062
1119
  msgstr ""
1063
1120
 
1064
- #: app/views/iformats/index.rhtml:1 lib/zena/use/display.rb:276
1121
+ #: app/views/iformats/index.rhtml:1 lib/zena/use/display.rb:307
1065
1122
  msgid "image formats"
1066
1123
  msgstr ""
1067
1124
 
@@ -1073,15 +1130,15 @@ msgstr "image"
1073
1130
  msgid "img_acl"
1074
1131
  msgstr "<img src='/images/key.png' alt='access control list'/>"
1075
1132
 
1076
- #: lib/zena/use/action.rb:142
1133
+ #: lib/zena/use/action.rb:153
1077
1134
  msgid "img_closed"
1078
1135
  msgstr "<img src='/images/lock.png' alt='closed'/>"
1079
1136
 
1080
- #: lib/gettext_strings.rb:58
1137
+ #: lib/gettext_strings.rb:60
1081
1138
  msgid "img_comments"
1082
1139
  msgstr "<img src='/images/comments.png' alt='comments'/>"
1083
1140
 
1084
- #: lib/gettext_strings.rb:59
1141
+ #: lib/gettext_strings.rb:61
1085
1142
  msgid "img_comments_inside"
1086
1143
  msgstr "<img src='/images/comment.png' alt='private comments'/>"
1087
1144
 
@@ -1089,23 +1146,23 @@ msgstr "<img src='/images/comment.png' alt='private comments'/>"
1089
1146
  msgid "img_custom_inherit"
1090
1147
  msgstr "<img src='/images/cog.png' alt='custom rights'/>"
1091
1148
 
1092
- #: lib/gettext_strings.rb:189
1149
+ #: lib/gettext_strings.rb:192
1093
1150
  msgid "img_datetime"
1094
1151
  msgstr "<img src='/images/date.png' alt='datetime property'/>"
1095
1152
 
1096
- #: lib/gettext_strings.rb:188
1153
+ #: lib/gettext_strings.rb:191
1097
1154
  msgid "img_float"
1098
1155
  msgstr "<img src='/images/chart_curve.png' alt='float property'/>"
1099
1156
 
1100
- #: lib/gettext_strings.rb:55
1157
+ #: lib/gettext_strings.rb:57
1101
1158
  msgid "img_group"
1102
1159
  msgstr "<img src='/images/group.png' alt='group'/>"
1103
1160
 
1104
- #: lib/gettext_strings.rb:56
1161
+ #: lib/gettext_strings.rb:58
1105
1162
  msgid "img_group_pub"
1106
1163
  msgstr "<img src='/images/group_pub.png' alt='public group'/>"
1107
1164
 
1108
- #: lib/gettext_strings.rb:57
1165
+ #: lib/gettext_strings.rb:59
1109
1166
  msgid "img_group_site"
1110
1167
  msgstr "<img src='/images/group_site.png' alt='site group'/>"
1111
1168
 
@@ -1117,7 +1174,7 @@ msgstr "<img src='/images/page_white_stack.png' alt='has many'/>"
1117
1174
  msgid "img_has_one"
1118
1175
  msgstr "<img src='/images/page_white.png' alt='has one'/>"
1119
1176
 
1120
- #: lib/gettext_strings.rb:187
1177
+ #: lib/gettext_strings.rb:190
1121
1178
  msgid "img_integer"
1122
1179
  msgstr "<img src='/images/chart_line.png' alt='integer property'/>"
1123
1180
 
@@ -1125,17 +1182,17 @@ msgstr "<img src='/images/chart_line.png' alt='integer property'/>"
1125
1182
  msgid "img_link"
1126
1183
  msgstr "<img src='/images/tag_blue.png' alt='link'/>"
1127
1184
 
1128
- #: lib/gettext_strings.rb:66 lib/zena/use/i18n.rb:204
1185
+ #: lib/gettext_strings.rb:68 lib/zena/use/i18n.rb:219
1129
1186
  msgid "img_next_page"
1130
1187
  msgstr ""
1131
1188
  "<img src='/images/control_fastforward.png' alt='next page' title='next page'/"
1132
1189
  ">"
1133
1190
 
1134
- #: lib/zena/use/action.rb:140
1191
+ #: lib/zena/use/action.rb:151
1135
1192
  msgid "img_open"
1136
1193
  msgstr "<img src='/images/lock_open.png' alt='open'/>"
1137
1194
 
1138
- #: lib/gettext_strings.rb:65 lib/zena/use/i18n.rb:204
1195
+ #: lib/gettext_strings.rb:67 lib/zena/use/i18n.rb:219
1139
1196
  msgid "img_prev_page"
1140
1197
  msgstr ""
1141
1198
  "<img src='/images/control_rewind.png' alt='previous page' title='previous "
@@ -1153,7 +1210,7 @@ msgstr "<img src='/images/user_pub.png' alt='public'/>"
1153
1210
  msgid "img_relation"
1154
1211
  msgstr "<img src='/images/link.png' alt='relation'/>"
1155
1212
 
1156
- #: lib/gettext_strings.rb:186
1213
+ #: lib/gettext_strings.rb:189
1157
1214
  msgid "img_string"
1158
1215
  msgstr "<img src='/images/text_align_left.png' alt='string property'/>"
1159
1216
 
@@ -1165,11 +1222,19 @@ msgstr "<img src='/images/user.png' alt='user'/>"
1165
1222
  msgid "img_user_admin"
1166
1223
  msgstr "<img src='/images/user_admin.png' alt='administrator'/>"
1167
1224
 
1225
+ #: lib/gettext_strings.rb:53
1226
+ msgid "img_user_manager"
1227
+ msgstr "<img src='/images/user_red.png' alt='manager'/>"
1228
+
1168
1229
  #: lib/gettext_strings.rb:54
1230
+ msgid "img_user_profile"
1231
+ msgstr "<img src='/images/user_orange.png' title='profile user'/>"
1232
+
1233
+ #: lib/gettext_strings.rb:56
1169
1234
  msgid "img_user_pub"
1170
1235
  msgstr "<img src='/images/user_pub.png' alt='anonymous user'/>"
1171
1236
 
1172
- #: lib/gettext_strings.rb:53
1237
+ #: lib/gettext_strings.rb:55
1173
1238
  msgid "img_user_su"
1174
1239
  msgstr "<img src='/images/user_su.png' alt='super user'/>"
1175
1240
 
@@ -1215,6 +1280,10 @@ msgstr ""
1215
1280
  msgid "index"
1216
1281
  msgstr ""
1217
1282
 
1283
+ #: app/views/sites/jobs.erb:6
1284
+ msgid "info"
1285
+ msgstr ""
1286
+
1218
1287
  #: app/controllers/users_controller.rb:115
1219
1288
  msgid "information successfully updated"
1220
1289
  msgstr "Informations successfully updated."
@@ -1223,19 +1292,24 @@ msgstr "Informations successfully updated."
1223
1292
  msgid "inherit"
1224
1293
  msgstr ""
1225
1294
 
1226
- #: app/views/discussions/_form.rhtml:12 lib/gettext_strings.rb:60
1295
+ #: app/views/discussions/_form.rhtml:12 lib/gettext_strings.rb:62
1227
1296
  msgid "inside"
1228
1297
  msgstr ""
1229
1298
 
1230
- #: app/models/column.rb:100
1299
+ #: bricks/fs_skin/lib/bricks/fs_skin.rb:110
1300
+ #, fuzzy
1301
+ msgid "invalid"
1302
+ msgstr " validate "
1303
+
1304
+ #: app/models/column.rb:125
1231
1305
  msgid "invalid (cannot end with _id or _ids)"
1232
1306
  msgstr ""
1233
1307
 
1234
- #: app/models/column.rb:104
1308
+ #: app/models/column.rb:129
1235
1309
  msgid "invalid (method defined in %s)"
1236
1310
  msgstr ""
1237
1311
 
1238
- #: app/models/relation_proxy.rb:384
1312
+ #: app/models/relation_proxy.rb:385
1239
1313
  #, fuzzy
1240
1314
  msgid "invalid target"
1241
1315
  msgstr " validate "
@@ -1244,16 +1318,24 @@ msgstr " validate "
1244
1318
  msgid "inverse"
1245
1319
  msgstr ""
1246
1320
 
1321
+ #: app/views/users/_form.rhtml:51
1322
+ msgid "is profile"
1323
+ msgstr ""
1324
+
1325
+ #: app/views/sites/jobs.erb:1 lib/zena/use/display.rb:316
1326
+ msgid "jobs"
1327
+ msgstr ""
1328
+
1247
1329
  #: app/views/virtual_classes/_form.erb:28
1248
1330
  msgid "kpath"
1249
1331
  msgstr ""
1250
1332
 
1251
1333
  #: app/views/users/preferences.html.erb:17
1252
- #: app/views/templates/edit_tabs/_title.rhtml:7 app/views/users/_form.rhtml:26
1334
+ #: app/views/templates/edit_tabs/_title.rhtml:7 app/views/users/_form.rhtml:33
1253
1335
  msgid "language"
1254
1336
  msgstr ""
1255
1337
 
1256
- #: lib/gettext_strings.rb:169
1338
+ #: lib/gettext_strings.rb:172
1257
1339
  msgid "last_name"
1258
1340
  msgstr "last name"
1259
1341
 
@@ -1265,7 +1347,7 @@ msgstr ""
1265
1347
  msgid "links_tab"
1266
1348
  msgstr "relations"
1267
1349
 
1268
- #: lib/gettext_strings.rb:172
1350
+ #: lib/gettext_strings.rb:175
1269
1351
  msgid "locality"
1270
1352
  msgstr ""
1271
1353
 
@@ -1273,15 +1355,19 @@ msgstr ""
1273
1355
  msgid "login"
1274
1356
  msgstr ""
1275
1357
 
1276
- #: lib/zena/use/dates.rb:57 lib/zena/use/dates.rb:130 lib/zena/use/i18n.rb:92
1358
+ #: app/views/users/_form.rhtml:35
1359
+ msgid "login_attempt_count"
1360
+ msgstr ""
1361
+
1362
+ #: lib/zena/use/dates.rb:57 lib/zena/use/dates.rb:130 lib/zena/use/i18n.rb:103
1277
1363
  msgid "long_date"
1278
1364
  msgstr "%Y-%m-%d"
1279
1365
 
1280
- #: lib/zena/use/i18n.rb:77
1366
+ #: lib/zena/use/i18n.rb:88
1281
1367
  msgid "long_time"
1282
1368
  msgstr "%H:%M:%S"
1283
1369
 
1284
- #: lib/zena/use/display.rb:655
1370
+ #: lib/zena/use/display.rb:620
1285
1371
  msgid "made with Zena"
1286
1372
  msgstr ""
1287
1373
 
@@ -1289,23 +1375,23 @@ msgstr ""
1289
1375
  msgid "max size"
1290
1376
  msgstr ""
1291
1377
 
1292
- #: app/models/relation_proxy.rb:278
1378
+ #: app/models/relation_proxy.rb:279
1293
1379
  #, fuzzy
1294
1380
  msgid "missing target"
1295
1381
  msgstr "tags"
1296
1382
 
1297
- #: lib/gettext_strings.rb:175
1383
+ #: lib/gettext_strings.rb:178
1298
1384
  msgid "mobile"
1299
1385
  msgstr ""
1300
1386
 
1301
- #: app/views/acls/_form.rhtml:35 app/views/acls/index.rhtml:9
1387
+ #: app/views/acls/_form.rhtml:39 app/views/acls/index.rhtml:9
1302
1388
  #: app/views/nodes/_groups.rhtml:14
1303
- #: app/views/templates/document_create_tabs/_template.rhtml:13
1389
+ #: app/views/templates/document_create_tabs/_template.rhtml:16
1304
1390
  #: app/views/templates/edit_tabs/_template.rhtml:4
1305
1391
  msgid "mode"
1306
1392
  msgstr ""
1307
1393
 
1308
- #: lib/gettext_strings.rb:71
1394
+ #: lib/gettext_strings.rb:73
1309
1395
  #, fuzzy
1310
1396
  msgid "moderated"
1311
1397
  msgstr "Node successfully updated."
@@ -1314,19 +1400,23 @@ msgstr "Node successfully updated."
1314
1400
  msgid "modified by"
1315
1401
  msgstr ""
1316
1402
 
1317
- #: lib/zena/use/display.rb:252
1403
+ #: app/views/virtual_classes/_form.erb:44
1404
+ msgid "monolingual"
1405
+ msgstr ""
1406
+
1407
+ #: lib/zena/use/display.rb:283
1318
1408
  msgid "my home"
1319
1409
  msgstr "management"
1320
1410
 
1321
1411
  #: app/views/columns/_form.html.erb:19 app/views/virtual_classes/_form.erb:16
1322
- #: app/views/acls/_form.rhtml:31 app/views/acls/index.rhtml:8
1412
+ #: app/views/acls/_form.rhtml:35 app/views/acls/index.rhtml:8
1323
1413
  #: app/views/groups/_form.rhtml:18 app/views/iformats/_form.rhtml:16
1324
- #: app/views/templates/document_create_tabs/_template.rhtml:7
1325
- #: app/views/templates/document_create_tabs/_text_document.rhtml:8
1414
+ #: app/views/templates/document_create_tabs/_template.rhtml:10
1415
+ #: app/views/templates/document_create_tabs/_text_document.rhtml:11
1326
1416
  msgid "name"
1327
1417
  msgstr ""
1328
1418
 
1329
- #: app/controllers/nodes_controller.rb:472
1419
+ #: app/controllers/nodes_controller.rb:545
1330
1420
  msgid "new"
1331
1421
  msgstr ""
1332
1422
 
@@ -1343,24 +1433,24 @@ msgstr ""
1343
1433
  msgid "new relation"
1344
1434
  msgstr "<img src='/images/target.png' alt='role'/>"
1345
1435
 
1346
- #: lib/gettext_strings.rb:120
1436
+ #: lib/gettext_strings.rb:122
1347
1437
  msgid "news_date"
1348
1438
  msgstr "%A, %B %d %Y"
1349
1439
 
1350
- #: app/views/sites/_li.erb:11
1440
+ #: app/views/sites/_li.erb:14
1351
1441
  msgid "no API"
1352
1442
  msgstr ""
1353
1443
 
1354
- #: lib/gettext_strings.rb:78
1444
+ #: lib/gettext_strings.rb:80
1355
1445
  #, fuzzy
1356
1446
  msgid "no result found"
1357
1447
  msgstr "Node not found."
1358
1448
 
1359
- #: app/controllers/nodes_controller.rb:472
1449
+ #: app/controllers/nodes_controller.rb:545
1360
1450
  msgid "node not found"
1361
1451
  msgstr "Node not found."
1362
1452
 
1363
- #: app/controllers/nodes_controller.rb:366
1453
+ #: app/controllers/nodes_controller.rb:444
1364
1454
  msgid "node updated"
1365
1455
  msgstr "Node successfully updated."
1366
1456
 
@@ -1368,12 +1458,12 @@ msgstr "Node successfully updated."
1368
1458
  msgid "old password"
1369
1459
  msgstr ""
1370
1460
 
1371
- #: lib/gettext_strings.rb:62
1461
+ #: lib/gettext_strings.rb:64
1372
1462
  #, fuzzy
1373
1463
  msgid "open"
1374
1464
  msgstr "<img src='/images/lock_open.png' alt='open'/>"
1375
1465
 
1376
- #: app/views/sites/_form.erb:25 lib/gettext_strings.rb:36
1466
+ #: app/views/sites/_form.erb:29 lib/gettext_strings.rb:36
1377
1467
  msgid "options"
1378
1468
  msgstr ""
1379
1469
 
@@ -1390,7 +1480,7 @@ msgstr ""
1390
1480
  msgid "original is #X this view"
1391
1481
  msgstr ""
1392
1482
 
1393
- #: app/views/discussions/_form.rhtml:11 lib/gettext_strings.rb:61
1483
+ #: app/views/discussions/_form.rhtml:11 lib/gettext_strings.rb:63
1394
1484
  msgid "outside"
1395
1485
  msgstr ""
1396
1486
 
@@ -1423,7 +1513,7 @@ msgstr ""
1423
1513
  msgid "popup"
1424
1514
  msgstr ""
1425
1515
 
1426
- #: lib/gettext_strings.rb:171
1516
+ #: lib/gettext_strings.rb:174
1427
1517
  msgid "postal_code"
1428
1518
  msgstr ""
1429
1519
 
@@ -1431,15 +1521,20 @@ msgstr ""
1431
1521
  msgid "posted by"
1432
1522
  msgstr ""
1433
1523
 
1434
- #: app/views/users/preferences.html.erb:1 lib/zena/use/display.rb:255
1524
+ #: app/views/users/preferences.html.erb:1 lib/zena/use/display.rb:286
1435
1525
  msgid "preferences"
1436
1526
  msgstr ""
1437
1527
 
1438
- #: app/views/acls/_form.rhtml:27
1528
+ #: app/views/acls/_form.rhtml:31
1439
1529
  #, fuzzy
1440
1530
  msgid "priority"
1441
1531
  msgstr "property"
1442
1532
 
1533
+ #: app/views/users/_form.rhtml:25
1534
+ #, fuzzy
1535
+ msgid "profile"
1536
+ msgstr "<img src='/images/user_orange.png' title='profile user'/>"
1537
+
1443
1538
  #: app/views/virtual_classes/_li.erb:22
1444
1539
  #, fuzzy
1445
1540
  msgid "prop"
@@ -1449,7 +1544,7 @@ msgstr "property"
1449
1544
  msgid "prop eval"
1450
1545
  msgstr ""
1451
1546
 
1452
- #: app/views/columns/index.html.erb:1 lib/zena/use/display.rb:273
1547
+ #: app/views/columns/index.html.erb:1 lib/zena/use/display.rb:304
1453
1548
  msgid "properties"
1454
1549
  msgstr ""
1455
1550
 
@@ -1457,21 +1552,21 @@ msgstr ""
1457
1552
  msgid "property"
1458
1553
  msgstr "property"
1459
1554
 
1460
- #: app/views/templates/document_create_tabs/_import.rhtml:12
1555
+ #: app/views/templates/document_create_tabs/_import.rhtml:15
1461
1556
  #: app/views/versions/edit.rhtml:32
1462
1557
  #, fuzzy
1463
1558
  msgid "pub"
1464
1559
  msgstr "<img src='/images/wand.png' alt='publish'/>"
1465
1560
 
1466
- #: app/views/sites/_form.erb:21 lib/gettext_strings.rb:37
1561
+ #: app/views/sites/_form.erb:24 lib/gettext_strings.rb:37
1467
1562
  msgid "public group"
1468
1563
  msgstr ""
1469
1564
 
1470
- #: app/views/templates/edit_tabs/_title.rhtml:10
1565
+ #: app/views/templates/edit_tabs/_title.rhtml:19
1471
1566
  msgid "publication date"
1472
1567
  msgstr ""
1473
1568
 
1474
- #: app/views/templates/document_create_tabs/_import.rhtml:11
1569
+ #: app/views/templates/document_create_tabs/_import.rhtml:14
1475
1570
  #, fuzzy
1476
1571
  msgid "publish nodes"
1477
1572
  msgstr "<img src='/images/wand.png' alt='publish'/>"
@@ -1480,7 +1575,7 @@ msgstr "<img src='/images/wand.png' alt='publish'/>"
1480
1575
  msgid "publishers"
1481
1576
  msgstr ""
1482
1577
 
1483
- #: app/views/acls/_form.rhtml:47 app/views/acls/index.rhtml:11
1578
+ #: app/views/acls/_form.rhtml:51 app/views/acls/index.rhtml:11
1484
1579
  msgid "query"
1485
1580
  msgstr ""
1486
1581
 
@@ -1488,7 +1583,7 @@ msgstr ""
1488
1583
  msgid "re: "
1489
1584
  msgstr ""
1490
1585
 
1491
- #: lib/gettext_strings.rb:72
1586
+ #: lib/gettext_strings.rb:74
1492
1587
  msgid "reader"
1493
1588
  msgstr ""
1494
1589
 
@@ -1496,28 +1591,28 @@ msgstr ""
1496
1591
  msgid "readers"
1497
1592
  msgstr ""
1498
1593
 
1499
- #: lib/gettext_strings.rb:164
1594
+ #: lib/gettext_strings.rb:167
1500
1595
  msgid "rebuild"
1501
1596
  msgstr "rebuild template"
1502
1597
 
1503
- #: lib/gettext_strings.rb:165
1598
+ #: lib/gettext_strings.rb:168
1504
1599
  msgid "rebuild_btn"
1505
1600
  msgstr "<img src='/images/arrow_refresh.png' alt='rebuild template'/>"
1506
1601
 
1507
- #: lib/gettext_strings.rb:182
1602
+ #: lib/gettext_strings.rb:185
1508
1603
  #, fuzzy
1509
1604
  msgid "rebuild_index"
1510
1605
  msgstr "<img src='/images/arrow_refresh.png' alt='rebuild template'/>"
1511
1606
 
1512
- #: lib/gettext_strings.rb:183
1607
+ #: lib/gettext_strings.rb:186
1513
1608
  msgid "rebuild_index done."
1514
1609
  msgstr "Rebuilding index."
1515
1610
 
1516
- #: lib/gettext_strings.rb:161
1611
+ #: lib/gettext_strings.rb:164
1517
1612
  msgid "redaction saved"
1518
1613
  msgstr ""
1519
1614
 
1520
- #: app/views/sites/_form.erb:20
1615
+ #: app/views/sites/_form.erb:23
1521
1616
  #, fuzzy
1522
1617
  msgid "redit_time"
1523
1618
  msgstr "%H:%M"
@@ -1526,7 +1621,7 @@ msgstr "%H:%M"
1526
1621
  msgid "relation_img"
1527
1622
  msgstr "<img src='/images/target.png' alt='role'/>"
1528
1623
 
1529
- #: app/views/relations/index.erb:1 lib/zena/use/display.rb:267
1624
+ #: app/views/relations/index.erb:1 lib/zena/use/display.rb:298
1530
1625
  msgid "relations"
1531
1626
  msgstr ""
1532
1627
 
@@ -1572,7 +1667,7 @@ msgstr " save "
1572
1667
  msgid "search field"
1573
1668
  msgstr "search"
1574
1669
 
1575
- #: lib/gettext_strings.rb:79
1670
+ #: lib/gettext_strings.rb:81
1576
1671
  msgid "search results"
1577
1672
  msgstr ""
1578
1673
 
@@ -1580,15 +1675,19 @@ msgstr ""
1580
1675
  msgid "set"
1581
1676
  msgstr ""
1582
1677
 
1583
- #: lib/zena/use/i18n.rb:97
1678
+ #: lib/zena/use/i18n.rb:108
1584
1679
  msgid "short_date"
1585
1680
  msgstr "%m.%d"
1586
1681
 
1587
- #: lib/zena/use/i18n.rb:82
1682
+ #: lib/zena/use/i18n.rb:93
1588
1683
  msgid "short_time"
1589
1684
  msgstr "%H:%M"
1590
1685
 
1591
- #: app/views/sites/_form.erb:22 lib/gettext_strings.rb:38
1686
+ #: app/views/users/_form.rhtml:32
1687
+ msgid "single_access_token"
1688
+ msgstr ""
1689
+
1690
+ #: app/views/sites/_form.erb:25 lib/gettext_strings.rb:38
1592
1691
  #, fuzzy
1593
1692
  msgid "site group"
1594
1693
  msgstr "<img src='/images/group.png' alt='group'/>"
@@ -1597,11 +1696,7 @@ msgstr "<img src='/images/group.png' alt='group'/>"
1597
1696
  msgid "site_img"
1598
1697
  msgstr "<img src='/images/world.png' alt='site' title='site'/>"
1599
1698
 
1600
- #: app/views/sites/_li.erb:2 lib/gettext_strings.rb:34
1601
- msgid "alias_img"
1602
- msgstr "<img src='/images/world_link.png' alt='alias' title='alias'/>"
1603
-
1604
- #: app/views/sites/index.erb:1 lib/zena/use/display.rb:279
1699
+ #: app/views/sites/index.erb:1 lib/zena/use/display.rb:310
1605
1700
  msgid "sites"
1606
1701
  msgstr ""
1607
1702
 
@@ -1609,74 +1704,74 @@ msgstr ""
1609
1704
  msgid "size"
1610
1705
  msgstr ""
1611
1706
 
1612
- #: app/views/nodes/_groups.rhtml:18
1707
+ #: app/views/sites/_form.erb:18 app/views/nodes/_groups.rhtml:18
1613
1708
  msgid "skin"
1614
1709
  msgstr ""
1615
1710
 
1616
- #: app/views/links/_form.rhtml:29 app/views/users/_form.rhtml:25
1711
+ #: app/views/links/_form.rhtml:29 app/views/users/_form.rhtml:31
1617
1712
  msgid "status"
1618
1713
  msgstr "status"
1619
1714
 
1620
- #: lib/gettext_strings.rb:96
1715
+ #: lib/gettext_strings.rb:98
1621
1716
  msgid "status_0"
1622
1717
  msgstr "deleted"
1623
1718
 
1624
- #: lib/gettext_strings.rb:104
1719
+ #: lib/gettext_strings.rb:106
1625
1720
  msgid "status_0_img"
1626
1721
  msgstr "<img src='/images/weather_lightning.png'/>"
1627
1722
 
1628
- #: lib/gettext_strings.rb:95
1723
+ #: lib/gettext_strings.rb:97
1629
1724
  msgid "status_10"
1630
1725
  msgstr "removed"
1631
1726
 
1632
- #: lib/gettext_strings.rb:103
1727
+ #: lib/gettext_strings.rb:105
1633
1728
  msgid "status_10_img"
1634
1729
  msgstr "<img src='/images/weather_rain.png'/>"
1635
1730
 
1636
- #: lib/gettext_strings.rb:94
1731
+ #: lib/gettext_strings.rb:96
1637
1732
  msgid "status_20"
1638
1733
  msgstr "replaced"
1639
1734
 
1640
- #: lib/gettext_strings.rb:102
1735
+ #: lib/gettext_strings.rb:104
1641
1736
  msgid "status_20_img"
1642
1737
  msgstr "<img src='/images/weather_clouds.png'/>"
1643
1738
 
1644
- #: lib/gettext_strings.rb:90
1739
+ #: lib/gettext_strings.rb:92
1645
1740
  msgid "status_50"
1646
1741
  msgstr "published"
1647
1742
 
1648
- #: lib/gettext_strings.rb:98
1743
+ #: lib/gettext_strings.rb:100
1649
1744
  msgid "status_50_img"
1650
1745
  msgstr "<img src='/images/weather_sun.png'/>"
1651
1746
 
1652
- #: lib/gettext_strings.rb:91
1747
+ #: lib/gettext_strings.rb:93
1653
1748
  msgid "status_60"
1654
1749
  msgstr "proposed"
1655
1750
 
1656
- #: lib/gettext_strings.rb:99
1751
+ #: lib/gettext_strings.rb:101
1657
1752
  msgid "status_60_img"
1658
1753
  msgstr "<img src='/images/magnifier.png'/>"
1659
1754
 
1660
- #: lib/gettext_strings.rb:92
1755
+ #: lib/gettext_strings.rb:94
1661
1756
  msgid "status_65"
1662
1757
  msgstr "proposed with"
1663
1758
 
1664
- #: lib/gettext_strings.rb:100
1759
+ #: lib/gettext_strings.rb:102
1665
1760
  msgid "status_65_img"
1666
1761
  msgstr "<img src='/images/magnifier.png'/>"
1667
1762
 
1668
- #: lib/gettext_strings.rb:93
1763
+ #: lib/gettext_strings.rb:95
1669
1764
  msgid "status_70"
1670
1765
  msgstr "redaction"
1671
1766
 
1672
- #: lib/gettext_strings.rb:101
1767
+ #: lib/gettext_strings.rb:103
1673
1768
  msgid "status_70_img"
1674
1769
  msgstr "<img src='/images/pencil.png'/>"
1675
1770
 
1676
- #: app/views/templates/document_create_tabs/_file.rhtml:10
1677
- #: app/views/templates/document_create_tabs/_template.rhtml:19
1678
- #: app/views/templates/document_create_tabs/_text_document.rhtml:11
1679
- #: app/views/templates/edit_tabs/_title.rhtml:12
1771
+ #: app/views/templates/document_create_tabs/_file.rhtml:13
1772
+ #: app/views/templates/document_create_tabs/_template.rhtml:22
1773
+ #: app/views/templates/document_create_tabs/_text_document.rhtml:14
1774
+ #: app/views/templates/edit_tabs/_title.rhtml:21
1680
1775
  msgid "summary"
1681
1776
  msgstr ""
1682
1777
 
@@ -1689,7 +1784,7 @@ msgstr ""
1689
1784
  msgid "tags"
1690
1785
  msgstr "status"
1691
1786
 
1692
- #: lib/gettext_strings.rb:174
1787
+ #: lib/gettext_strings.rb:177
1693
1788
  msgid "telephone"
1694
1789
  msgstr ""
1695
1790
 
@@ -1709,12 +1804,12 @@ msgstr "text"
1709
1804
  msgid "textdocument_tab"
1710
1805
  msgstr "text doc."
1711
1806
 
1712
- #: app/views/users/preferences.html.erb:18 app/views/users/_form.rhtml:27
1807
+ #: app/views/users/preferences.html.erb:18 app/views/users/_form.rhtml:34
1713
1808
  msgid "time zone"
1714
1809
  msgstr ""
1715
1810
 
1716
1811
  #: app/views/comments/_form.rhtml:15
1717
- #: app/views/templates/document_create_tabs/_file.rhtml:7
1812
+ #: app/views/templates/document_create_tabs/_file.rhtml:10
1718
1813
  #: app/views/templates/edit_tabs/_title.rhtml:1
1719
1814
  msgid "title"
1720
1815
  msgstr ""
@@ -1727,15 +1822,15 @@ msgstr "title & Co"
1727
1822
  msgid "tomorrow"
1728
1823
  msgstr ""
1729
1824
 
1730
- #: lib/zena/use/display.rb:286
1825
+ #: lib/zena/use/display.rb:320
1731
1826
  msgid "turn dev off"
1732
1827
  msgstr "turn dev off"
1733
1828
 
1734
- #: lib/zena/use/display.rb:288
1829
+ #: lib/zena/use/display.rb:322
1735
1830
  msgid "turn dev on"
1736
1831
  msgstr ""
1737
1832
 
1738
- #: lib/gettext_strings.rb:166
1833
+ #: lib/gettext_strings.rb:169
1739
1834
  msgid "turn_dev_off_btn"
1740
1835
  msgstr "<img src='/images/bug.png' title='turn dev off'/>"
1741
1836
 
@@ -1744,10 +1839,14 @@ msgstr "<img src='/images/bug.png' title='turn dev off'/>"
1744
1839
  msgid "type"
1745
1840
  msgstr ""
1746
1841
 
1747
- #: app/models/node.rb:1542
1842
+ #: app/models/node.rb:1597
1748
1843
  msgid "type mismatch (%{type} is not a Skin)"
1749
1844
  msgstr ""
1750
1845
 
1846
+ #: bricks/grid/lib/bricks/grid.rb:55
1847
+ msgid "type to edit"
1848
+ msgstr ""
1849
+
1751
1850
  #: app/views/templates/edit_tabs/_textdocument.rhtml:5
1752
1851
  msgid "unparse assets"
1753
1852
  msgstr ""
@@ -1756,34 +1855,38 @@ msgstr ""
1756
1855
  msgid "upload more"
1757
1856
  msgstr ""
1758
1857
 
1759
- #: app/views/users/_form.rhtml:43
1858
+ #: app/views/users/_form.rhtml:59
1760
1859
  #, fuzzy
1761
1860
  msgid "use acls"
1762
1861
  msgstr "<img src='/images/lock.png' alt='closed'/>"
1763
1862
 
1764
- #: lib/gettext_strings.rb:69
1863
+ #: lib/gettext_strings.rb:71
1765
1864
  msgid "user"
1766
1865
  msgstr ""
1767
1866
 
1768
1867
  #: app/views/groups/_form.rhtml:19 app/views/users/index.rhtml:1
1769
- #: lib/zena/use/display.rb:261
1868
+ #: lib/zena/use/display.rb:292
1770
1869
  msgid "users"
1771
1870
  msgstr ""
1772
1871
 
1773
- #: app/views/columns/_form.html.erb:28 app/views/relations/_form.erb:39
1774
- #: app/views/sites/_form.erb:40 app/views/users/preferences.html.erb:19
1872
+ #: app/views/columns/_form.html.erb:36 app/views/relations/_form.erb:42
1873
+ #: app/views/sites/_form.erb:44 app/views/users/preferences.html.erb:19
1775
1874
  #: app/views/users/preferences.html.erb:38
1776
- #: app/views/virtual_classes/_form.erb:46 app/views/acls/_form.rhtml:60
1777
- #: app/views/comments/_form.rhtml:23 app/views/groups/_form.rhtml:35
1875
+ #: app/views/virtual_classes/_form.erb:48 app/views/acls/_form.rhtml:64
1876
+ #: app/views/comments/_form.rhtml:23 app/views/groups/_form.rhtml:42
1778
1877
  #: app/views/iformats/_form.rhtml:22 app/views/nodes/_edit_attribute.rhtml:15
1779
- #: app/views/templates/document_create_tabs/_file.rhtml:3
1878
+ #: app/views/templates/document_create_tabs/_file.rhtml:6
1780
1879
  #: app/views/templates/document_create_tabs/_import.rhtml:2
1781
1880
  #: app/views/templates/document_create_tabs/_template.rhtml:3
1782
1881
  #: app/views/templates/document_create_tabs/_text_document.rhtml:3
1783
- #: app/views/users/_form.rhtml:50 app/views/versions/edit.rhtml:17
1882
+ #: app/views/users/_form.rhtml:66 app/views/versions/edit.rhtml:17
1784
1883
  msgid "validate"
1785
1884
  msgstr " validate "
1786
1885
 
1886
+ #: app/views/columns/_form.html.erb:21
1887
+ msgid "vers."
1888
+ msgstr ""
1889
+
1787
1890
  #: app/views/templates/drive_tabs/_links.rhtml:4
1788
1891
  msgid "versions"
1789
1892
  msgstr ""
@@ -1802,7 +1905,7 @@ msgstr "<img src='/images/brick_error.png' alt='class error'/>"
1802
1905
  msgid "virtual_class_img"
1803
1906
  msgstr "<img src='/images/brick.png' alt='class'/>"
1804
1907
 
1805
- #: lib/zena/use/calendar.rb:341
1908
+ #: lib/zena/use/calendar.rb:367
1806
1909
  msgid "week_start_day"
1807
1910
  msgstr "0"
1808
1911
 
@@ -1819,7 +1922,7 @@ msgstr ""
1819
1922
  msgid "yesterday"
1820
1923
  msgstr "<img src='/images/bomb.png' alt='destroy'/>"
1821
1924
 
1822
- #: lib/gettext_strings.rb:160
1925
+ #: lib/gettext_strings.rb:163
1823
1926
  msgid "you are editing the original"
1824
1927
  msgstr ""
1825
1928
 
@@ -1874,6 +1977,10 @@ msgstr ""
1874
1977
  #~ msgid "column_img"
1875
1978
  #~ msgstr "<img src='/images/textfield.png' alt='property'/>"
1876
1979
 
1980
+ #, fuzzy
1981
+ #~ msgid "create group"
1982
+ #~ msgstr "<img src='/images/group.png' alt='group'/>"
1983
+
1877
1984
  #~ msgid "favorite_for"
1878
1985
  #~ msgstr "favorite for"
1879
1986