zena 1.0.0 → 1.1.0

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 (245) hide show
  1. data/History.txt +28 -0
  2. data/README.rdoc +6 -6
  3. data/Rakefile +3 -0
  4. data/app/controllers/users_controller.rb +4 -2
  5. data/app/models/acl.rb +6 -0
  6. data/app/models/cached_page.rb +2 -1
  7. data/app/models/document.rb +3 -4
  8. data/app/models/node.rb +8 -5
  9. data/app/models/site.rb +1 -1
  10. data/app/models/template.rb +2 -2
  11. data/app/models/user.rb +5 -3
  12. data/app/views/acls/_add.rhtml +2 -1
  13. data/app/views/acls/_form.rhtml +15 -7
  14. data/app/views/acls/_li.rhtml +2 -0
  15. data/app/views/acls/index.rhtml +3 -1
  16. data/app/views/acls/show.html.erb +1 -1
  17. data/app/views/links/destroy.rjs +16 -2
  18. data/app/views/versions/destroy.rjs +1 -1
  19. data/app/views/zafu/default/Node-admin.zafu +1 -1
  20. data/bin/zena +5 -3
  21. data/bricks/acls/lib/bricks/acls.rb +11 -4
  22. data/bricks/acls/zena/migrate/20110627193757_add_allowed_mode_and_format_to_acl.rb +11 -0
  23. data/bricks/acls/zena/test/integration/acl_integration_test.rb +42 -0
  24. data/bricks/acls/zena/test/sites/erebus/acls.yml +8 -0
  25. data/bricks/mongrel/zena/deploy.rb +19 -0
  26. data/bricks/single/lib/bricks/single.rb +15 -0
  27. data/bricks/single/zena/init.rb +1 -0
  28. data/bricks/sphinx/zena/tasks.rb +1 -1
  29. data/bricks/static/lib/bricks/static.rb +151 -0
  30. data/bricks/static/zena/init.rb +1 -0
  31. data/bricks/static/zena/migrate/20110702010330_add_static_to_idx_templates.rb +12 -0
  32. data/bricks/static/zena/skins/blog/Image-edit.zafu +6 -0
  33. data/bricks/static/zena/skins/blog/Image.zafu +19 -0
  34. data/bricks/static/zena/skins/blog/Node-+index.zafu +1 -0
  35. data/bricks/static/zena/skins/blog/Node-+notFound.zafu +7 -0
  36. data/bricks/static/zena/skins/blog/Node-+search.zafu +19 -0
  37. data/bricks/static/zena/skins/blog/Node.zafu +66 -0
  38. data/bricks/static/zena/skins/blog/Post.zafu +12 -0
  39. data/bricks/static/zena/skins/blog/Project--kml.zafu +30 -0
  40. data/bricks/static/zena/skins/blog/Project.zafu +45 -0
  41. data/bricks/static/zena/skins/blog/comments.zafu +30 -0
  42. data/bricks/static/zena/skins/blog/dict.yml +11 -0
  43. data/bricks/static/zena/skins/blog/img/dateBg.jpg +0 -0
  44. data/bricks/static/zena/skins/blog/img/header.png +0 -0
  45. data/bricks/static/zena/skins/blog/img/mapPin.png +0 -0
  46. data/bricks/static/zena/skins/blog/img/menu.gif +0 -0
  47. data/bricks/static/zena/skins/blog/img/menuover.gif +0 -0
  48. data/bricks/static/zena/skins/blog/img/style.css +110 -0
  49. data/bricks/static/zena/test/integration/static_integration_test.rb +30 -0
  50. data/bricks/static/zena/test/unit/static_test.rb +33 -0
  51. data/bricks/zena/zena/migrate/01_base.rb +1 -2
  52. data/bricks/zena/zena/migrate/20110623072048_fix_cached_path_index.rb +10 -0
  53. data/bricks/zena/zena/migrate/20110710113731_remove_icon_field.rb +18 -0
  54. data/config/bricks.yml +4 -0
  55. data/config/deploy.rb +17 -2
  56. data/config/gems.yml +9 -7
  57. data/config/selenium.yml +38 -0
  58. data/lib/bricks/requirements_validation.rb +8 -2
  59. data/lib/gettext_strings.rb +2 -1
  60. data/lib/tasks/zena.rake +5 -0
  61. data/lib/zena/app.rb +12 -0
  62. data/lib/zena/console.rb +9 -1
  63. data/lib/zena/core_ext/string.rb +7 -2
  64. data/lib/zena/deploy.rb +60 -6
  65. data/lib/zena/deploy/app_init.rhtml +56 -0
  66. data/lib/zena/deploy/haproxy.cnf.rhtml +34 -0
  67. data/lib/zena/deploy/httpd.rhtml +6 -0
  68. data/lib/zena/deploy/start_stop.rhtml +35 -0
  69. data/lib/zena/info.rb +1 -1
  70. data/lib/zena/remote/connection.rb +1 -1
  71. data/lib/zena/site_worker.rb +9 -5
  72. data/lib/zena/use.rb +1 -1
  73. data/lib/zena/use/action.rb +2 -2
  74. data/lib/zena/use/ajax.rb +22 -9
  75. data/lib/zena/use/conditional.rb +5 -0
  76. data/lib/zena/use/context.rb +6 -1
  77. data/lib/zena/use/dates.rb +17 -2
  78. data/lib/zena/use/display.rb +14 -3
  79. data/lib/zena/use/forms.rb +37 -47
  80. data/lib/zena/use/html_tags.rb +3 -0
  81. data/lib/zena/use/node_context.rb +17 -17
  82. data/lib/zena/use/rendering.rb +1 -1
  83. data/lib/zena/use/urls.rb +11 -2
  84. data/lib/zena/use/zafu_attributes.rb +1 -0
  85. data/lib/zena/use/zafu_safe_definitions.rb +16 -1
  86. data/lib/zena/use/zafu_templates.rb +39 -24
  87. data/lib/zena/use/zazen.rb +1 -0
  88. data/locale/de/LC_MESSAGES/zena.mo +0 -0
  89. data/locale/de/zena.po +105 -89
  90. data/locale/en/LC_MESSAGES/zena.mo +0 -0
  91. data/locale/en/zena.mo +0 -0
  92. data/locale/en/zena.po +188 -253
  93. data/locale/fr/LC_MESSAGES/zena.mo +0 -0
  94. data/locale/fr/zena.mo +0 -0
  95. data/locale/fr/zena.po +200 -257
  96. data/locale/zena.pot +95 -85
  97. data/public/javascripts/zena.js +2 -2
  98. data/test/fixtures/files/{Node-test.zafu → TestNode.zafu} +206 -4
  99. data/test/functional/nodes_controller_test.rb +2 -2
  100. data/test/integration/navigation_test.rb +9 -3
  101. data/test/integration/query_node/basic.yml +4 -4
  102. data/test/integration/query_node/filters.yml +2 -2
  103. data/test/integration/zafu_compiler/ajax.yml +6 -6
  104. data/test/integration/zafu_compiler/basic.yml +1 -1
  105. data/test/integration/zafu_compiler/calendar.yml +4 -3
  106. data/test/integration/zafu_compiler/conditional.yml +3 -10
  107. data/test/integration/zafu_compiler/context.yml +1 -1
  108. data/test/integration/zafu_compiler/dates.yml +9 -1
  109. data/test/integration/zafu_compiler/display.yml +7 -1
  110. data/test/integration/zafu_compiler/eval.yml +12 -46
  111. data/test/integration/zafu_compiler/forms.yml +1 -1
  112. data/test/integration/zafu_compiler/query.yml +2 -2
  113. data/test/integration/zafu_compiler/relations.yml +19 -9
  114. data/test/integration/zafu_compiler/roles.yml +12 -0
  115. data/test/integration/zafu_compiler/safe_definitions.yml +1 -1
  116. data/test/integration/zafu_compiler/urls.yml +13 -5
  117. data/test/integration/zafu_compiler/version.yml +6 -0
  118. data/test/integration/zafu_compiler/zafu_attributes.yml +4 -4
  119. data/test/integration/zafu_compiler_test.rb +1 -1
  120. data/test/selenium.readme +8 -0
  121. data/test/selenium/Add/0setup.rsel +12 -0
  122. data/test/selenium/Add/add1.rsel +22 -0
  123. data/test/selenium/Add/add2.rsel +22 -0
  124. data/test/selenium/Add/add3.rsel +22 -0
  125. data/test/selenium/Drop/0setup.rsel +12 -0
  126. data/test/selenium/Drop/drop1.rsel +25 -0
  127. data/test/selenium/Drop/drop2.rsel +25 -0
  128. data/test/selenium/Drop/drop3.rsel +51 -0
  129. data/test/selenium/Drop/drop4.rsel +44 -0
  130. data/test/selenium/Drop/drop5.rsel +16 -0
  131. data/test/selenium/Edit/0setup.rsel +12 -0
  132. data/test/selenium/Edit/edit1.rsel +31 -0
  133. data/test/selenium/Edit/edit2.rsel +39 -0
  134. data/test/selenium/Edit/edit3.rsel +40 -0
  135. data/test/selenium/Form/0setup.rsel +12 -0
  136. data/test/selenium/Form/form1.rsel +9 -0
  137. data/test/selenium/Form/form2.rsel +9 -0
  138. data/test/selenium/Paginate/0setup.rsel +12 -0
  139. data/test/selenium/Paginate/paginate1.rsel +24 -0
  140. data/test/selenium/Toggle/0setup.rsel +12 -0
  141. data/test/selenium/Toggle/toggle1.rsel +21 -0
  142. data/test/sites/zena/nodes.yml +4 -4
  143. data/test/sites/zena/roles.yml +3 -2
  144. data/test/sites/zena/versions.yml +12 -11
  145. data/test/unit/core_ext_test.rb +23 -5
  146. data/test/unit/document_test.rb +6 -2
  147. data/test/unit/node_test.rb +2 -2
  148. data/test/unit/remote_test.rb +1 -2
  149. data/test/unit/role_test.rb +2 -2
  150. data/test/unit/user_test.rb +48 -1
  151. data/test/unit/virtual_class_test.rb +7 -7
  152. data/test/unit/zena/acts/secure_test.rb +1 -1
  153. data/test/unit/zena/use/rendering_test.rb +1 -1
  154. data/test/unit/zena/use/urls_test.rb +3 -3
  155. data/zena.gemspec +65 -101
  156. metadata +67 -103
  157. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run 2.tmCommand +0 -24
  158. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run Context.tmCommand +0 -58
  159. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run Focused Should.tmCommand +0 -88
  160. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run.tmCommand +0 -27
  161. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/YAML to Shoulda.tmCommand +0 -23
  162. data/vendor/TextMate/Ruby Shoulda.tmbundle/Preferences/Symbol List: Context.tmPreferences +0 -19
  163. data/vendor/TextMate/Ruby Shoulda.tmbundle/Preferences/Symbol List: Should.tmPreferences +0 -19
  164. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory attributes for.tmSnippet +0 -16
  165. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory build.tmSnippet +0 -16
  166. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory.tmSnippet +0 -16
  167. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_define with class.tmSnippet +0 -18
  168. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_define.tmSnippet +0 -18
  169. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_next.tmSnippet +0 -16
  170. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_sequence.tmSnippet +0 -18
  171. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_bad_value.tmSnippet +0 -16
  172. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_contains.tmSnippet +0 -16
  173. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_does_not_contain.tmSnippet +0 -16
  174. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_good_value.tmSnippet +0 -16
  175. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_same_elements.tmSnippet +0 -16
  176. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_save.tmSnippet +0 -16
  177. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_sent_email.tmSnippet +0 -18
  178. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_valid.tmSnippet +0 -16
  179. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/association.tmSnippet +0 -17
  180. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/attribute.tmSnippet +0 -17
  181. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/before_should block.tmSnippet +0 -18
  182. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block get.tmSnippet +0 -22
  183. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block post.tmSnippet +0 -23
  184. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block with setup.tmSnippet +0 -25
  185. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/setup.tmSnippet +0 -18
  186. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should block with before proc.tmSnippet +0 -18
  187. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should block.tmSnippet +0 -18
  188. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_allow_values_for.tmSnippet +0 -16
  189. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_assign_to.tmSnippet +0 -16
  190. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_be_restful denied.tmSnippet +0 -20
  191. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_be_restful.tmSnippet +0 -20
  192. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_belong_to.tmSnippet +0 -16
  193. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_change by.tmSnippet +0 -16
  194. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_change from to.tmSnippet +0 -16
  195. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_at_least.tmSnippet +0 -16
  196. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_in_range.tmSnippet +0 -16
  197. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_is.tmSnippet +0 -16
  198. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_value_in_range.tmSnippet +0 -16
  199. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_eventually.tmSnippet +0 -18
  200. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_filter_params.tmSnippet +0 -16
  201. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_and_belong_to_many.tmSnippet +0 -16
  202. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_class_methods.tmSnippet +0 -16
  203. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_db_column.tmSnippet +0 -16
  204. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_db_columns.tmSnippet +0 -16
  205. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_index.tmSnippet +0 -16
  206. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_indices.tmSnippet +0 -16
  207. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_instance_methods.tmSnippet +0 -16
  208. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_many.tmSnippet +0 -16
  209. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_named_scope.tmSnippet +0 -16
  210. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_one.tmSnippet +0 -16
  211. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_readonly_attributes.tmSnippet +0 -16
  212. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_allow_mass_assignment_of.tmSnippet +0 -16
  213. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_allow_values_for.tmSnippet +0 -16
  214. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_assign_to.tmSnippet +0 -16
  215. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_change.tmSnippet +0 -16
  216. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_set_the_flash.tmSnippet +0 -16
  217. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_redirect_to.tmSnippet +0 -16
  218. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_a_form.tmSnippet +0 -16
  219. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_template.tmSnippet +0 -16
  220. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_with_layout.tmSnippet +0 -16
  221. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_without_layout.tmSnippet +0 -16
  222. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_respond_with.tmSnippet +0 -16
  223. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_respond_with_content_type.tmSnippet +0 -16
  224. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_return_from_session.tmSnippet +0 -16
  225. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_route.tmSnippet +0 -16
  226. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_set_the_flash_to.tmSnippet +0 -16
  227. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_acceptance_of.tmSnippet +0 -16
  228. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_numericality_of.tmSnippet +0 -16
  229. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_presence_of.tmSnippet +0 -16
  230. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_uniqueness_of with scope.tmSnippet +0 -16
  231. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_uniqueness_of.tmSnippet +0 -16
  232. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/catch_exception.rb +0 -39
  233. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/run_script.rb +0 -104
  234. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/stdin_dialog.rb +0 -14
  235. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/test.rb +0 -17
  236. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/todo.txt +0 -13
  237. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/bin/yaml_to_shoulda.rb +0 -25
  238. data/vendor/TextMate/Ruby Shoulda.tmbundle/Syntaxes/Ruby on Rails (Shoulda).tmLanguage +0 -166
  239. data/vendor/TextMate/Ruby Shoulda.tmbundle/info.plist +0 -304
  240. data/vendor/TextMate/Zena.tmbundle/Commands/Run all yaml tests.tmCommand +0 -37
  241. data/vendor/TextMate/Zena.tmbundle/Commands/Run focused yaml test.tmCommand +0 -52
  242. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/catch_exception.rb +0 -39
  243. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/run_script.rb +0 -118
  244. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/stdin_dialog.rb +0 -14
  245. data/vendor/TextMate/Zena.tmbundle/info.plist +0 -17
Binary file
data/locale/en/zena.mo CHANGED
Binary file
data/locale/en/zena.po CHANGED
@@ -1,8 +1,8 @@
1
1
  msgid ""
2
2
  msgstr ""
3
3
  "Project-Id-Version: version 0.0.1\n"
4
- "POT-Creation-Date: 2011-06-09 19:15-0000\n"
5
- "PO-Revision-Date: 2011-06-09 22:15+0100\n"
4
+ "POT-Creation-Date: 2011-06-27 20:32-0000\n"
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
8
  "MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
13
13
  "X-Poedit-Bookmarks: -1,-1,-1,219,-1,-1,-1,-1,-1,-1\n"
14
14
  "X-Poedit-Basepath: /Users/gaspard/svk/zena\n"
15
15
 
16
- #: lib/gettext_strings.rb:118
16
+ #: lib/gettext_strings.rb:119
17
17
  msgid "%Y-%m-%d %H:%M"
18
18
  msgstr "%Y-%m-%d %H:%M"
19
19
 
@@ -30,8 +30,7 @@ msgstr ""
30
30
  msgid "%{d} days ago"
31
31
  msgstr ""
32
32
 
33
- #: lib/gettext_strings.rb:75
34
- #: lib/zena/use/display.rb:162
33
+ #: lib/gettext_strings.rb:75 lib/zena/use/display.rb:162
35
34
  msgid "%{ext} document"
36
35
  msgstr ""
37
36
 
@@ -47,8 +46,7 @@ msgstr ""
47
46
  msgid "%{m} minutes ago"
48
47
  msgstr ""
49
48
 
50
- #: lib/gettext_strings.rb:76
51
- #: lib/zena/use/display.rb:150
49
+ #: lib/gettext_strings.rb:76 lib/zena/use/display.rb:150
52
50
  msgid "%{type} node"
53
51
  msgstr ""
54
52
 
@@ -69,15 +67,15 @@ msgstr ""
69
67
  msgid "API group"
70
68
  msgstr "<img src='/images/group.png' alt='group'/>"
71
69
 
72
- #: lib/gettext_strings.rb:145
70
+ #: lib/gettext_strings.rb:146
73
71
  msgid "Apr"
74
72
  msgstr ""
75
73
 
76
- #: lib/gettext_strings.rb:132
74
+ #: lib/gettext_strings.rb:133
77
75
  msgid "April"
78
76
  msgstr ""
79
77
 
80
- #: app/views/acls/_form.rhtml:58
78
+ #: app/views/acls/_form.rhtml:66
81
79
  msgid "Are you sure you want to destroy this access ?"
82
80
  msgstr ""
83
81
 
@@ -102,18 +100,19 @@ msgid "Are you sure you want to destroy this virtual class ?"
102
100
  msgstr ""
103
101
 
104
102
  #: app/views/comments/_bin.rhtml:4
105
- msgid "Are you sure you want to permanently remove the content of this rubbish bin ?"
103
+ msgid ""
104
+ "Are you sure you want to permanently remove the content of this rubbish bin ?"
106
105
  msgstr ""
107
106
 
108
- #: lib/gettext_strings.rb:149
107
+ #: lib/gettext_strings.rb:150
109
108
  msgid "Aug"
110
109
  msgstr ""
111
110
 
112
- #: lib/gettext_strings.rb:136
111
+ #: lib/gettext_strings.rb:137
113
112
  msgid "August"
114
113
  msgstr ""
115
114
 
116
- #: app/controllers/nodes_controller.rb:300
115
+ #: app/controllers/nodes_controller.rb:311
117
116
  msgid "Backup created."
118
117
  msgstr ""
119
118
 
@@ -144,16 +143,16 @@ msgstr ""
144
143
  msgid "Could not change version back to redaction."
145
144
  msgstr ""
146
145
 
147
- #: app/controllers/nodes_controller.rb:504
146
+ #: app/controllers/nodes_controller.rb:515
148
147
  #, fuzzy
149
148
  msgid "Could not clear order."
150
149
  msgstr "User could not be updated."
151
150
 
152
- #: app/controllers/nodes_controller.rb:302
151
+ #: app/controllers/nodes_controller.rb:313
153
152
  msgid "Could not create backup."
154
153
  msgstr ""
155
154
 
156
- #: app/controllers/nodes_controller.rb:269
155
+ #: app/controllers/nodes_controller.rb:280
157
156
  #, fuzzy
158
157
  msgid "Could not destroy node."
159
158
  msgstr "User could not be updated."
@@ -185,7 +184,7 @@ msgstr ""
185
184
  msgid "Could not rollback:"
186
185
  msgstr ""
187
186
 
188
- #: app/controllers/nodes_controller.rb:487
187
+ #: app/controllers/nodes_controller.rb:498
189
188
  msgid "Could not update order."
190
189
  msgstr ""
191
190
 
@@ -194,11 +193,11 @@ msgstr ""
194
193
  msgid "Data entry was successfully created."
195
194
  msgstr "Informations successfully updated."
196
195
 
197
- #: lib/gettext_strings.rb:153
196
+ #: lib/gettext_strings.rb:154
198
197
  msgid "Dec"
199
198
  msgstr ""
200
199
 
201
- #: lib/gettext_strings.rb:140
200
+ #: lib/gettext_strings.rb:141
202
201
  msgid "December"
203
202
  msgstr ""
204
203
 
@@ -206,15 +205,15 @@ msgstr ""
206
205
  msgid "Delete relation '%{role}' between '%{source}' and '%{target}' ?"
207
206
  msgstr ""
208
207
 
209
- #: lib/gettext_strings.rb:143
208
+ #: lib/gettext_strings.rb:144
210
209
  msgid "Feb"
211
210
  msgstr ""
212
211
 
213
- #: lib/gettext_strings.rb:130
212
+ #: lib/gettext_strings.rb:131
214
213
  msgid "February"
215
214
  msgstr ""
216
215
 
217
- #: lib/gettext_strings.rb:125
216
+ #: lib/gettext_strings.rb:126
218
217
  msgid "Fri"
219
218
  msgstr ""
220
219
 
@@ -230,44 +229,43 @@ msgstr ""
230
229
  msgid "Invalid login or password."
231
230
  msgstr "Invalid login or password."
232
231
 
233
- #: lib/gettext_strings.rb:142
232
+ #: lib/gettext_strings.rb:143
234
233
  msgid "Jan"
235
234
  msgstr ""
236
235
 
237
- #: lib/gettext_strings.rb:129
236
+ #: lib/gettext_strings.rb:130
238
237
  msgid "January"
239
238
  msgstr ""
240
239
 
241
- #: lib/gettext_strings.rb:148
240
+ #: lib/gettext_strings.rb:149
242
241
  msgid "Jul"
243
242
  msgstr ""
244
243
 
245
- #: lib/gettext_strings.rb:135
244
+ #: lib/gettext_strings.rb:136
246
245
  msgid "July"
247
246
  msgstr ""
248
247
 
249
- #: lib/gettext_strings.rb:147
248
+ #: lib/gettext_strings.rb:148
250
249
  msgid "Jun"
251
250
  msgstr ""
252
251
 
253
- #: lib/gettext_strings.rb:134
252
+ #: lib/gettext_strings.rb:135
254
253
  msgid "June"
255
254
  msgstr ""
256
255
 
257
- #: lib/gettext_strings.rb:144
256
+ #: lib/gettext_strings.rb:145
258
257
  msgid "Mar"
259
258
  msgstr ""
260
259
 
261
- #: lib/gettext_strings.rb:131
260
+ #: lib/gettext_strings.rb:132
262
261
  msgid "March"
263
262
  msgstr ""
264
263
 
265
- #: lib/gettext_strings.rb:133
266
- #: lib/gettext_strings.rb:146
264
+ #: lib/gettext_strings.rb:134 lib/gettext_strings.rb:147
267
265
  msgid "May"
268
266
  msgstr ""
269
267
 
270
- #: lib/gettext_strings.rb:121
268
+ #: lib/gettext_strings.rb:122
271
269
  msgid "Mon"
272
270
  msgstr ""
273
271
 
@@ -280,19 +278,19 @@ msgstr ""
280
278
  msgid "Node destroyed."
281
279
  msgstr "<img src='/images/bomb.png' alt='destroy'/>"
282
280
 
283
- #: lib/gettext_strings.rb:152
281
+ #: lib/gettext_strings.rb:153
284
282
  msgid "Nov"
285
283
  msgstr ""
286
284
 
287
- #: lib/gettext_strings.rb:139
285
+ #: lib/gettext_strings.rb:140
288
286
  msgid "November"
289
287
  msgstr ""
290
288
 
291
- #: lib/gettext_strings.rb:151
289
+ #: lib/gettext_strings.rb:152
292
290
  msgid "Oct"
293
291
  msgstr ""
294
292
 
295
- #: lib/gettext_strings.rb:138
293
+ #: lib/gettext_strings.rb:139
296
294
  msgid "October"
297
295
  msgstr ""
298
296
 
@@ -301,11 +299,11 @@ msgstr ""
301
299
  msgid "Order cleared."
302
300
  msgstr "Order updated."
303
301
 
304
- #: app/controllers/nodes_controller.rb:485
302
+ #: app/controllers/nodes_controller.rb:496
305
303
  msgid "Order updated"
306
304
  msgstr "Order updated."
307
305
 
308
- #: lib/gettext_strings.rb:156
306
+ #: lib/gettext_strings.rb:157
309
307
  msgid "Password:"
310
308
  msgstr ""
311
309
 
@@ -342,7 +340,7 @@ msgstr "Informations successfully updated."
342
340
  msgid "Rolled back to redaction."
343
341
  msgstr ""
344
342
 
345
- #: lib/gettext_strings.rb:126
343
+ #: lib/gettext_strings.rb:127
346
344
  msgid "Sat"
347
345
  msgstr ""
348
346
 
@@ -350,11 +348,11 @@ msgstr ""
350
348
  msgid "Saturday"
351
349
  msgstr ""
352
350
 
353
- #: lib/gettext_strings.rb:150
351
+ #: lib/gettext_strings.rb:151
354
352
  msgid "Sep"
355
353
  msgstr ""
356
354
 
357
- #: lib/gettext_strings.rb:137
355
+ #: lib/gettext_strings.rb:138
358
356
  msgid "September"
359
357
  msgstr ""
360
358
 
@@ -363,7 +361,7 @@ msgstr ""
363
361
  msgid "Site was successfully updated."
364
362
  msgstr "Le mot de passe a été modifié avec succès."
365
363
 
366
- #: lib/gettext_strings.rb:127
364
+ #: lib/gettext_strings.rb:128
367
365
  msgid "Sun"
368
366
  msgstr ""
369
367
 
@@ -375,7 +373,7 @@ msgstr ""
375
373
  msgid "This node contains sub-nodes: it cannot be destroyed."
376
374
  msgstr ""
377
375
 
378
- #: lib/gettext_strings.rb:124
376
+ #: lib/gettext_strings.rb:125
379
377
  msgid "Thu"
380
378
  msgstr ""
381
379
 
@@ -383,7 +381,7 @@ msgstr ""
383
381
  msgid "Thursday"
384
382
  msgstr ""
385
383
 
386
- #: lib/gettext_strings.rb:122
384
+ #: lib/gettext_strings.rb:123
387
385
  msgid "Tue"
388
386
  msgstr ""
389
387
 
@@ -403,7 +401,7 @@ msgstr ""
403
401
  msgid "Upload succeeded."
404
402
  msgstr ""
405
403
 
406
- #: lib/gettext_strings.rb:155
404
+ #: lib/gettext_strings.rb:156
407
405
  msgid "User name:"
408
406
  msgstr ""
409
407
 
@@ -425,7 +423,7 @@ msgstr "Informations successfully updated."
425
423
  msgid "VirtualClass was successfully updated."
426
424
  msgstr "Le mot de passe a été modifié avec succès."
427
425
 
428
- #: lib/gettext_strings.rb:123
426
+ #: lib/gettext_strings.rb:124
429
427
  msgid "Wed"
430
428
  msgstr ""
431
429
 
@@ -445,8 +443,7 @@ msgstr ""
445
443
  msgid "a Zen garden"
446
444
  msgstr ""
447
445
 
448
- #: app/views/acls/show.html.erb:1
449
- #: app/views/acls/index.rhtml:1
446
+ #: app/views/acls/show.html.erb:1 app/views/acls/index.rhtml:1
450
447
  msgid "access controls"
451
448
  msgstr ""
452
449
 
@@ -454,38 +451,48 @@ msgstr ""
454
451
  msgid "acl_action_help"
455
452
  msgstr "Action on which this acl will be used."
456
453
 
457
- #: app/views/acls/_form.rhtml:43
454
+ #: app/views/acls/_form.rhtml:51
458
455
  msgid "acl_exec_group_help"
459
- msgstr "Group added to the visitor during request execution and rendering (if request validates)."
456
+ msgstr ""
457
+ "Group added to the visitor during request execution and rendering (if "
458
+ "request validates)."
460
459
 
461
- #: app/views/acls/_form.rhtml:47
460
+ #: app/views/acls/_form.rhtml:55
462
461
  msgid "acl_exec_skin_help"
463
462
  msgstr "Force a given rendering skin."
464
463
 
464
+ #: app/views/acls/_form.rhtml:39
465
+ msgid "acl_format_help"
466
+ msgstr "Format (html,xml,...) for which this acl can be used ('*' = any)."
467
+
465
468
  #: app/views/acls/_form.rhtml:19
466
469
  msgid "acl_group_help"
467
470
  msgstr "Group of users for which this acl can apply."
468
471
 
472
+ #: app/views/acls/_form.rhtml:35
473
+ msgid "acl_mode_help"
474
+ msgstr "Mode for which this acl can be used ('*' = any, '' = no mode)."
475
+
469
476
  #: app/views/acls/_form.rhtml:27
470
477
  msgid "acl_priority_help"
471
478
  msgstr "Acl with highest priority is tested first."
472
479
 
473
- #: app/views/acls/_form.rhtml:39
480
+ #: app/views/acls/_form.rhtml:47
474
481
  msgid "acl_query_help"
475
- msgstr "SQLiss query to fetch all the nodes for which this acl authorizes access."
482
+ msgstr ""
483
+ "SQLiss query to fetch all the nodes for which this acl authorizes access."
476
484
 
477
485
  #: lib/zena/use/display.rb:282
478
486
  msgid "acls"
479
487
  msgstr "acls"
480
488
 
481
- #: app/views/sites/_form.erb:32
482
- #: app/views/acls/_form.rhtml:23
489
+ #: app/views/sites/_form.erb:32 app/views/acls/_form.rhtml:23
483
490
  #: app/views/acls/index.rhtml:7
484
491
  #, fuzzy
485
492
  msgid "action"
486
493
  msgstr "icon"
487
494
 
488
- #: lib/gettext_strings.rb:169
495
+ #: lib/gettext_strings.rb:170
489
496
  msgid "address"
490
497
  msgstr ""
491
498
 
@@ -518,7 +525,7 @@ msgstr ""
518
525
  msgid "bak"
519
526
  msgstr ""
520
527
 
521
- #: lib/gettext_strings.rb:176
528
+ #: lib/gettext_strings.rb:177
522
529
  msgid "birthday"
523
530
  msgstr ""
524
531
 
@@ -530,8 +537,7 @@ msgstr "<img src='/images/key_add.png' alt='add an access'/>"
530
537
  msgid "btn_add"
531
538
  msgstr "<img src='/images/add.png' alt='add'/>"
532
539
 
533
- #: app/views/comments/_add.rhtml:2
534
- #: lib/gettext_strings.rb:27
540
+ #: app/views/comments/_add.rhtml:2 lib/gettext_strings.rb:27
535
541
  msgid "btn_add_comment"
536
542
  msgstr "<img src='/images/comment_add.png' alt='add a comment'/>"
537
543
 
@@ -595,13 +601,11 @@ msgstr "<img src='/images/page_edit.png' alt='edit'/>"
595
601
  msgid "btn_refuse"
596
602
  msgstr "<img src='/images/delete.png' alt='refuse'/>"
597
603
 
598
- #: app/views/relations/_add.erb:2
599
- #: lib/gettext_strings.rb:39
604
+ #: app/views/relations/_add.erb:2 lib/gettext_strings.rb:39
600
605
  msgid "btn_relation_add"
601
606
  msgstr "<img src='/images/link_add.png' alt='add a role'/>"
602
607
 
603
- #: app/views/comments/_li.rhtml:3
604
- #: lib/zena/use/action.rb:145
608
+ #: app/views/comments/_li.rhtml:3 lib/zena/use/action.rb:145
605
609
  msgid "btn_remove"
606
610
  msgstr "<img src='/images/delete.png' alt='delete'/>"
607
611
 
@@ -609,8 +613,7 @@ msgstr "<img src='/images/delete.png' alt='delete'/>"
609
613
  msgid "btn_site_add"
610
614
  msgstr "<img src='/images/world_add.png' alt='add a site'/>"
611
615
 
612
- #: app/views/links/_li.rhtml:6
613
- #: lib/zena/use/ajax.rb:418
616
+ #: app/views/links/_li.rhtml:6 lib/zena/use/ajax.rb:418
614
617
  msgid "btn_tiny_del"
615
618
  msgstr "<img src='/images/bullet_delete.png' alt='remove'/>"
616
619
 
@@ -646,35 +649,22 @@ msgstr "<img src='/images/user_add.png' alt='add a user'/>"
646
649
  msgid "btn_view"
647
650
  msgstr "<img src='/images/eye.png' alt='view'/>"
648
651
 
649
- #: app/views/virtual_classes/_add.erb:2
650
- #: lib/gettext_strings.rb:42
652
+ #: app/views/virtual_classes/_add.erb:2 lib/gettext_strings.rb:42
651
653
  msgid "btn_virtual_class_add"
652
654
  msgstr "<img src='/images/brick_add.png' alt='add a class'/>"
653
655
 
654
- #: app/views/columns/_form.html.erb:3
655
- #: app/views/columns/_form.html.erb:5
656
- #: app/views/relations/_form.erb:3
657
- #: app/views/relations/_form.erb:5
658
- #: app/views/sites/_form.erb:3
659
- #: app/views/sites/_form.erb:5
660
- #: app/views/virtual_classes/_form.erb:3
661
- #: app/views/virtual_classes/_form.erb:5
662
- #: app/views/acls/_form.rhtml:3
663
- #: app/views/acls/_form.rhtml:5
664
- #: app/views/comments/_form.rhtml:8
665
- #: app/views/comments/_form.rhtml:10
666
- #: app/views/comments/_form.rhtml:12
667
- #: app/views/discussions/_form.rhtml:8
668
- #: app/views/groups/_form.rhtml:3
669
- #: app/views/groups/_form.rhtml:5
670
- #: app/views/iformats/_form.rhtml:3
671
- #: app/views/iformats/_form.rhtml:5
672
- #: app/views/links/_form.rhtml:12
673
- #: app/views/links/_form.rhtml:14
674
- #: app/views/nodes/_import_results.rhtml:3
675
- #: app/views/nodes/_results.rhtml:7
676
- #: app/views/users/_form.rhtml:3
677
- #: app/views/users/_form.rhtml:5
656
+ #: app/views/columns/_form.html.erb:3 app/views/columns/_form.html.erb:5
657
+ #: app/views/relations/_form.erb:3 app/views/relations/_form.erb:5
658
+ #: app/views/sites/_form.erb:3 app/views/sites/_form.erb:5
659
+ #: app/views/virtual_classes/_form.erb:3 app/views/virtual_classes/_form.erb:5
660
+ #: app/views/acls/_form.rhtml:3 app/views/acls/_form.rhtml:5
661
+ #: app/views/comments/_form.rhtml:8 app/views/comments/_form.rhtml:10
662
+ #: app/views/comments/_form.rhtml:12 app/views/discussions/_form.rhtml:8
663
+ #: app/views/groups/_form.rhtml:3 app/views/groups/_form.rhtml:5
664
+ #: app/views/iformats/_form.rhtml:3 app/views/iformats/_form.rhtml:5
665
+ #: app/views/links/_form.rhtml:12 app/views/links/_form.rhtml:14
666
+ #: app/views/nodes/_import_results.rhtml:3 app/views/nodes/_results.rhtml:7
667
+ #: app/views/users/_form.rhtml:3 app/views/users/_form.rhtml:5
678
668
  #: lib/zena/use/forms.rb:199
679
669
  msgid "btn_x"
680
670
  msgstr "<img src='/images/cross.png' alt='cancel'/>"
@@ -682,8 +672,7 @@ msgstr "<img src='/images/cross.png' alt='cancel'/>"
682
672
  #: app/views/users/preferences.html.erb:10
683
673
  #: app/views/users/preferences.html.erb:30
684
674
  #: app/views/virtual_classes/import_prepare.html.erb:10
685
- #: app/views/virtual_classes/index.erb:30
686
- #: app/views/users/_form.rhtml:20
675
+ #: app/views/virtual_classes/index.erb:30 app/views/users/_form.rhtml:20
687
676
  msgid "cancel"
688
677
  msgstr ""
689
678
 
@@ -695,14 +684,12 @@ msgstr ""
695
684
  msgid "cannot update multiple targets"
696
685
  msgstr ""
697
686
 
698
- #: app/views/nodes/_groups.rhtml:19
699
- #: app/views/nodes/_parent.rhtml:11
687
+ #: app/views/nodes/_groups.rhtml:19 app/views/nodes/_parent.rhtml:11
700
688
  #: lib/zena/use/upload.rb:167
701
689
  msgid "change"
702
690
  msgstr ""
703
691
 
704
- #: app/views/users/preferences.html.erb:27
705
- #: app/views/users/_form.rhtml:19
692
+ #: app/views/users/preferences.html.erb:27 app/views/users/_form.rhtml:19
706
693
  msgid "change password"
707
694
  msgstr ""
708
695
 
@@ -710,8 +697,7 @@ msgstr ""
710
697
  msgid "change personal information"
711
698
  msgstr ""
712
699
 
713
- #: app/views/relations/_form.erb:17
714
- #: app/views/nodes/_parent.rhtml:7
700
+ #: app/views/relations/_form.erb:17 app/views/nodes/_parent.rhtml:7
715
701
  #, fuzzy
716
702
  msgid "class"
717
703
  msgstr "<img src='/images/lock.png' alt='closed'/>"
@@ -725,8 +711,7 @@ msgstr ""
725
711
  msgid "class scope"
726
712
  msgstr ""
727
713
 
728
- #: app/views/virtual_classes/index.erb:1
729
- #: lib/zena/use/display.rb:270
714
+ #: app/views/virtual_classes/index.erb:1 lib/zena/use/display.rb:270
730
715
  msgid "classes"
731
716
  msgstr ""
732
717
 
@@ -735,11 +720,11 @@ msgstr ""
735
720
  msgid "classes import"
736
721
  msgstr "import"
737
722
 
738
- #: lib/gettext_strings.rb:179
723
+ #: lib/gettext_strings.rb:180
739
724
  msgid "clear_cache"
740
725
  msgstr ""
741
726
 
742
- #: lib/gettext_strings.rb:180
727
+ #: lib/gettext_strings.rb:181
743
728
  msgid "clear_cache done."
744
729
  msgstr "Cache cleared."
745
730
 
@@ -769,8 +754,7 @@ msgstr ""
769
754
  msgid "commentator"
770
755
  msgstr ""
771
756
 
772
- #: app/views/comments/index.rhtml:1
773
- #: lib/zena/use/display.rb:258
757
+ #: app/views/comments/index.rhtml:1 lib/zena/use/display.rb:258
774
758
  msgid "comments"
775
759
  msgstr ""
776
760
 
@@ -793,28 +777,25 @@ msgstr ""
793
777
  msgid "convert"
794
778
  msgstr ""
795
779
 
796
- #: app/models/node.rb:1540
797
- #: app/models/node.rb:1552
798
- #: app/models/relation_proxy.rb:185
799
- #: app/models/relation_proxy.rb:209
780
+ #: app/models/node.rb:1535 app/models/node.rb:1547
781
+ #: app/models/relation_proxy.rb:185 app/models/relation_proxy.rb:209
800
782
  #, fuzzy
801
783
  msgid "could not be found"
802
784
  msgstr "Node not found."
803
785
 
804
- #: lib/zena/use/grid.rb:70
805
- #: lib/zena/use/grid.rb:98
786
+ #: lib/zena/use/grid.rb:70 lib/zena/use/grid.rb:98
806
787
  msgid "could not save value (bad attribute)"
807
788
  msgstr ""
808
789
 
809
- #: app/controllers/nodes_controller.rb:357
790
+ #: app/controllers/nodes_controller.rb:368
810
791
  msgid "could not update"
811
792
  msgstr "The node could not be updated."
812
793
 
813
- #: app/controllers/users_controller.rb:119
794
+ #: app/controllers/users_controller.rb:117
814
795
  msgid "could not update user"
815
796
  msgstr "User could not be updated."
816
797
 
817
- #: lib/gettext_strings.rb:172
798
+ #: lib/gettext_strings.rb:173
818
799
  msgid "country"
819
800
  msgstr ""
820
801
 
@@ -849,10 +830,8 @@ msgstr "++"
849
830
  msgid "data entries"
850
831
  msgstr "%Y-%m-%d %H:%M"
851
832
 
852
- #: lib/gettext_strings.rb:117
853
- #: lib/zena/use/dates.rb:16
854
- #: lib/zena/use/dates.rb:130
855
- #: lib/zena/use/dates.rb:183
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
856
835
  #: lib/zena/use/dates.rb:194
857
836
  msgid "datetime"
858
837
  msgstr "%Y-%m-%d %H:%M"
@@ -869,21 +848,18 @@ msgstr "<img src='/images/photo_grey.png' alt='image format'/>"
869
848
  msgid "deleted"
870
849
  msgstr ""
871
850
 
872
- #: app/views/acls/_form.rhtml:35
851
+ #: app/views/acls/_form.rhtml:43
873
852
  msgid "description"
874
853
  msgstr ""
875
854
 
876
- #: app/views/columns/_form.html.erb:33
877
- #: app/views/relations/_form.erb:44
878
- #: app/views/virtual_classes/_form.erb:52
879
- #: app/views/acls/_form.rhtml:60
880
- #: app/views/groups/_form.rhtml:41
881
- #: app/views/iformats/_form.rhtml:27
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
882
858
  #, fuzzy
883
859
  msgid "destroy"
884
860
  msgstr "<img src='/images/bomb.png' alt='destroy'/>"
885
861
 
886
- #: app/views/acls/_form.rhtml:60
862
+ #: app/views/acls/_form.rhtml:68
887
863
  msgid "destroy acl"
888
864
  msgstr "destroy acl"
889
865
 
@@ -936,7 +912,7 @@ msgstr "doc"
936
912
  msgid "drive_tab"
937
913
  msgstr "drive"
938
914
 
939
- #: lib/zena/use/urls.rb:824
915
+ #: lib/zena/use/urls.rb:834
940
916
  msgid "edit"
941
917
  msgstr ""
942
918
 
@@ -950,7 +926,7 @@ msgstr "<img src='/images/target.png' alt='role'/>"
950
926
  msgid "edit site"
951
927
  msgstr "%Y-%m-%d %H:%M"
952
928
 
953
- #: lib/gettext_strings.rb:175
929
+ #: lib/gettext_strings.rb:176
954
930
  msgid "email"
955
931
  msgstr ""
956
932
 
@@ -958,14 +934,12 @@ msgstr ""
958
934
  msgid "en"
959
935
  msgstr "english"
960
936
 
961
- #: app/views/acls/_form.rhtml:43
962
- #: app/views/acls/index.rhtml:10
937
+ #: app/views/acls/_form.rhtml:51 app/views/acls/index.rhtml:12
963
938
  #, fuzzy
964
939
  msgid "exec group"
965
940
  msgstr "<img src='/images/group.png' alt='group'/>"
966
941
 
967
- #: app/views/acls/_form.rhtml:47
968
- #: app/views/acls/index.rhtml:11
942
+ #: app/views/acls/_form.rhtml:55 app/views/acls/index.rhtml:13
969
943
  msgid "exec skin"
970
944
  msgstr ""
971
945
 
@@ -982,10 +956,11 @@ msgstr ""
982
956
  msgid "file_tab"
983
957
  msgstr "file"
984
958
 
985
- #: lib/gettext_strings.rb:167
959
+ #: lib/gettext_strings.rb:168
986
960
  msgid "first_name"
987
961
  msgstr "first name"
988
962
 
963
+ #: app/views/acls/_form.rhtml:39 app/views/acls/index.rhtml:10
989
964
  #: app/views/templates/document_create_tabs/_template.rhtml:16
990
965
  #: app/views/templates/edit_tabs/_template.rhtml:1
991
966
  msgid "format"
@@ -1016,15 +991,12 @@ msgstr "<img src='/images/photo_blue.png' alt='full image format'/>"
1016
991
  msgid "gravity"
1017
992
  msgstr ""
1018
993
 
1019
- #: app/views/groups/edit.html.erb:1
1020
- #: app/views/groups/show.html.erb:1
1021
- #: app/views/acls/_form.rhtml:19
1022
- #: app/views/acls/index.rhtml:6
994
+ #: app/views/groups/edit.html.erb:1 app/views/groups/show.html.erb:1
995
+ #: app/views/acls/_form.rhtml:19 app/views/acls/index.rhtml:6
1023
996
  msgid "group"
1024
997
  msgstr ""
1025
998
 
1026
- #: app/views/groups/index.rhtml:1
1027
- #: app/views/users/_form.rhtml:29
999
+ #: app/views/groups/index.rhtml:1 app/views/users/_form.rhtml:29
1028
1000
  #: lib/zena/use/display.rb:264
1029
1001
  msgid "groups"
1030
1002
  msgstr ""
@@ -1033,13 +1005,11 @@ msgstr ""
1033
1005
  msgid "has already been taken in %s"
1034
1006
  msgstr ""
1035
1007
 
1036
- #: app/views/relations/_form.erb:24
1037
- #: app/views/relations/_form.erb:28
1008
+ #: app/views/relations/_form.erb:24 app/views/relations/_form.erb:28
1038
1009
  msgid "has_many"
1039
1010
  msgstr ""
1040
1011
 
1041
- #: app/views/relations/_form.erb:23
1042
- #: app/views/relations/_form.erb:27
1012
+ #: app/views/relations/_form.erb:23 app/views/relations/_form.erb:27
1043
1013
  msgid "has_one"
1044
1014
  msgstr ""
1045
1015
 
@@ -1050,7 +1020,9 @@ msgstr "<img src='/images/lightbulb.png' alt='hot'/>"
1050
1020
 
1051
1021
  #: app/views/templates/edit_tabs/_help.rhtml:6
1052
1022
  msgid "help not found"
1053
- msgstr "Help node not found. This node should be named 'help'. In the meantime, you can visit the official website: \"zena\":http://zenadmin.org."
1023
+ msgstr ""
1024
+ "Help node not found. This node should be named 'help'. In the meantime, you "
1025
+ "can visit the official website: \"zena\":http://zenadmin.org."
1054
1026
 
1055
1027
  #: lib/gettext_strings.rb:4
1056
1028
  msgid "help_tab"
@@ -1060,8 +1032,7 @@ msgstr "help"
1060
1032
  msgid "host"
1061
1033
  msgstr ""
1062
1034
 
1063
- #: app/views/relations/_form.erb:35
1064
- #: app/views/virtual_classes/_form.erb:45
1035
+ #: app/views/relations/_form.erb:35 app/views/virtual_classes/_form.erb:45
1065
1036
  msgid "icon"
1066
1037
  msgstr "icon"
1067
1038
 
@@ -1078,8 +1049,7 @@ msgstr ""
1078
1049
  msgid "idx_scope"
1079
1050
  msgstr ""
1080
1051
 
1081
- #: app/views/iformats/edit.html.erb:1
1082
- #: app/views/iformats/show.html.erb:1
1052
+ #: app/views/iformats/edit.html.erb:1 app/views/iformats/show.html.erb:1
1083
1053
  msgid "iformat"
1084
1054
  msgstr ""
1085
1055
 
@@ -1091,8 +1061,7 @@ msgstr "<img src='/images/photo.png' alt='image format'/>"
1091
1061
  msgid "image"
1092
1062
  msgstr ""
1093
1063
 
1094
- #: app/views/iformats/index.rhtml:1
1095
- #: lib/zena/use/display.rb:276
1064
+ #: app/views/iformats/index.rhtml:1 lib/zena/use/display.rb:276
1096
1065
  msgid "image formats"
1097
1066
  msgstr ""
1098
1067
 
@@ -1120,11 +1089,11 @@ msgstr "<img src='/images/comment.png' alt='private comments'/>"
1120
1089
  msgid "img_custom_inherit"
1121
1090
  msgstr "<img src='/images/cog.png' alt='custom rights'/>"
1122
1091
 
1123
- #: lib/gettext_strings.rb:188
1092
+ #: lib/gettext_strings.rb:189
1124
1093
  msgid "img_datetime"
1125
1094
  msgstr "<img src='/images/date.png' alt='datetime property'/>"
1126
1095
 
1127
- #: lib/gettext_strings.rb:187
1096
+ #: lib/gettext_strings.rb:188
1128
1097
  msgid "img_float"
1129
1098
  msgstr "<img src='/images/chart_curve.png' alt='float property'/>"
1130
1099
 
@@ -1140,17 +1109,15 @@ msgstr "<img src='/images/group_pub.png' alt='public group'/>"
1140
1109
  msgid "img_group_site"
1141
1110
  msgstr "<img src='/images/group_site.png' alt='site group'/>"
1142
1111
 
1143
- #: app/views/relations/_li.erb:8
1144
- #: app/views/relations/_li.erb:18
1112
+ #: app/views/relations/_li.erb:8 app/views/relations/_li.erb:18
1145
1113
  msgid "img_has_many"
1146
1114
  msgstr "<img src='/images/page_white_stack.png' alt='has many'/>"
1147
1115
 
1148
- #: app/views/relations/_li.erb:8
1149
- #: app/views/relations/_li.erb:18
1116
+ #: app/views/relations/_li.erb:8 app/views/relations/_li.erb:18
1150
1117
  msgid "img_has_one"
1151
1118
  msgstr "<img src='/images/page_white.png' alt='has one'/>"
1152
1119
 
1153
- #: lib/gettext_strings.rb:186
1120
+ #: lib/gettext_strings.rb:187
1154
1121
  msgid "img_integer"
1155
1122
  msgstr "<img src='/images/chart_line.png' alt='integer property'/>"
1156
1123
 
@@ -1158,26 +1125,27 @@ msgstr "<img src='/images/chart_line.png' alt='integer property'/>"
1158
1125
  msgid "img_link"
1159
1126
  msgstr "<img src='/images/tag_blue.png' alt='link'/>"
1160
1127
 
1161
- #: lib/gettext_strings.rb:66
1162
- #: lib/zena/use/i18n.rb:204
1128
+ #: lib/gettext_strings.rb:66 lib/zena/use/i18n.rb:204
1163
1129
  msgid "img_next_page"
1164
- msgstr "<img src='/images/control_fastforward.png' alt='next page' title='next page'/>"
1130
+ msgstr ""
1131
+ "<img src='/images/control_fastforward.png' alt='next page' title='next page'/"
1132
+ ">"
1165
1133
 
1166
1134
  #: lib/zena/use/action.rb:140
1167
1135
  msgid "img_open"
1168
1136
  msgstr "<img src='/images/lock_open.png' alt='open'/>"
1169
1137
 
1170
- #: lib/gettext_strings.rb:65
1171
- #: lib/zena/use/i18n.rb:204
1138
+ #: lib/gettext_strings.rb:65 lib/zena/use/i18n.rb:204
1172
1139
  msgid "img_prev_page"
1173
- msgstr "<img src='/images/control_rewind.png' alt='previous page' title='previous page'/>"
1140
+ msgstr ""
1141
+ "<img src='/images/control_rewind.png' alt='previous page' title='previous "
1142
+ "page'/>"
1174
1143
 
1175
1144
  #: lib/gettext_strings.rb:49
1176
1145
  msgid "img_private"
1177
1146
  msgstr "<img src='/images/lock.png' alt='private'/>"
1178
1147
 
1179
- #: lib/gettext_strings.rb:48
1180
- #: lib/zena/use/html_tags.rb:109
1148
+ #: lib/gettext_strings.rb:48 lib/zena/use/html_tags.rb:112
1181
1149
  msgid "img_public"
1182
1150
  msgstr "<img src='/images/user_pub.png' alt='public'/>"
1183
1151
 
@@ -1185,7 +1153,7 @@ msgstr "<img src='/images/user_pub.png' alt='public'/>"
1185
1153
  msgid "img_relation"
1186
1154
  msgstr "<img src='/images/link.png' alt='relation'/>"
1187
1155
 
1188
- #: lib/gettext_strings.rb:185
1156
+ #: lib/gettext_strings.rb:186
1189
1157
  msgid "img_string"
1190
1158
  msgstr "<img src='/images/text_align_left.png' alt='string property'/>"
1191
1159
 
@@ -1247,7 +1215,7 @@ msgstr ""
1247
1215
  msgid "index"
1248
1216
  msgstr ""
1249
1217
 
1250
- #: app/controllers/users_controller.rb:117
1218
+ #: app/controllers/users_controller.rb:115
1251
1219
  msgid "information successfully updated"
1252
1220
  msgstr "Informations successfully updated."
1253
1221
 
@@ -1255,8 +1223,7 @@ msgstr "Informations successfully updated."
1255
1223
  msgid "inherit"
1256
1224
  msgstr ""
1257
1225
 
1258
- #: app/views/discussions/_form.rhtml:12
1259
- #: lib/gettext_strings.rb:60
1226
+ #: app/views/discussions/_form.rhtml:12 lib/gettext_strings.rb:60
1260
1227
  msgid "inside"
1261
1228
  msgstr ""
1262
1229
 
@@ -1282,12 +1249,11 @@ msgid "kpath"
1282
1249
  msgstr ""
1283
1250
 
1284
1251
  #: app/views/users/preferences.html.erb:17
1285
- #: app/views/templates/edit_tabs/_title.rhtml:7
1286
- #: app/views/users/_form.rhtml:26
1252
+ #: app/views/templates/edit_tabs/_title.rhtml:7 app/views/users/_form.rhtml:26
1287
1253
  msgid "language"
1288
1254
  msgstr ""
1289
1255
 
1290
- #: lib/gettext_strings.rb:168
1256
+ #: lib/gettext_strings.rb:169
1291
1257
  msgid "last_name"
1292
1258
  msgstr "last name"
1293
1259
 
@@ -1299,18 +1265,15 @@ msgstr ""
1299
1265
  msgid "links_tab"
1300
1266
  msgstr "relations"
1301
1267
 
1302
- #: lib/gettext_strings.rb:171
1268
+ #: lib/gettext_strings.rb:172
1303
1269
  msgid "locality"
1304
1270
  msgstr ""
1305
1271
 
1306
- #: app/views/users/preferences.html.erb:16
1307
- #: app/views/users/_form.rhtml:17
1272
+ #: app/views/users/preferences.html.erb:16 app/views/users/_form.rhtml:17
1308
1273
  msgid "login"
1309
1274
  msgstr ""
1310
1275
 
1311
- #: lib/zena/use/dates.rb:57
1312
- #: lib/zena/use/dates.rb:130
1313
- #: lib/zena/use/i18n.rb:92
1276
+ #: lib/zena/use/dates.rb:57 lib/zena/use/dates.rb:130 lib/zena/use/i18n.rb:92
1314
1277
  msgid "long_date"
1315
1278
  msgstr "%Y-%m-%d"
1316
1279
 
@@ -1331,10 +1294,11 @@ msgstr ""
1331
1294
  msgid "missing target"
1332
1295
  msgstr "tags"
1333
1296
 
1334
- #: lib/gettext_strings.rb:174
1297
+ #: lib/gettext_strings.rb:175
1335
1298
  msgid "mobile"
1336
1299
  msgstr ""
1337
1300
 
1301
+ #: app/views/acls/_form.rhtml:35 app/views/acls/index.rhtml:9
1338
1302
  #: app/views/nodes/_groups.rhtml:14
1339
1303
  #: app/views/templates/document_create_tabs/_template.rhtml:13
1340
1304
  #: app/views/templates/edit_tabs/_template.rhtml:4
@@ -1354,23 +1318,19 @@ msgstr ""
1354
1318
  msgid "my home"
1355
1319
  msgstr "management"
1356
1320
 
1357
- #: app/views/columns/_form.html.erb:19
1358
- #: app/views/virtual_classes/_form.erb:16
1359
- #: app/views/acls/_form.rhtml:31
1360
- #: app/views/acls/index.rhtml:8
1361
- #: app/views/groups/_form.rhtml:18
1362
- #: app/views/iformats/_form.rhtml:16
1321
+ #: 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
1323
+ #: app/views/groups/_form.rhtml:18 app/views/iformats/_form.rhtml:16
1363
1324
  #: app/views/templates/document_create_tabs/_template.rhtml:7
1364
1325
  #: app/views/templates/document_create_tabs/_text_document.rhtml:8
1365
1326
  msgid "name"
1366
1327
  msgstr ""
1367
1328
 
1368
- #: app/controllers/nodes_controller.rb:461
1329
+ #: app/controllers/nodes_controller.rb:472
1369
1330
  msgid "new"
1370
1331
  msgstr ""
1371
1332
 
1372
- #: app/views/columns/new.html.erb:1
1373
- #: app/views/virtual_classes/new.erb:1
1333
+ #: app/views/columns/new.html.erb:1 app/views/virtual_classes/new.erb:1
1374
1334
  msgid "new class"
1375
1335
  msgstr ""
1376
1336
 
@@ -1383,7 +1343,7 @@ msgstr ""
1383
1343
  msgid "new relation"
1384
1344
  msgstr "<img src='/images/target.png' alt='role'/>"
1385
1345
 
1386
- #: lib/gettext_strings.rb:119
1346
+ #: lib/gettext_strings.rb:120
1387
1347
  msgid "news_date"
1388
1348
  msgstr "%A, %B %d %Y"
1389
1349
 
@@ -1396,11 +1356,11 @@ msgstr ""
1396
1356
  msgid "no result found"
1397
1357
  msgstr "Node not found."
1398
1358
 
1399
- #: app/controllers/nodes_controller.rb:461
1359
+ #: app/controllers/nodes_controller.rb:472
1400
1360
  msgid "node not found"
1401
1361
  msgstr "Node not found."
1402
1362
 
1403
- #: app/controllers/nodes_controller.rb:355
1363
+ #: app/controllers/nodes_controller.rb:366
1404
1364
  msgid "node updated"
1405
1365
  msgstr "Node successfully updated."
1406
1366
 
@@ -1413,8 +1373,7 @@ msgstr ""
1413
1373
  msgid "open"
1414
1374
  msgstr "<img src='/images/lock_open.png' alt='open'/>"
1415
1375
 
1416
- #: app/views/sites/_form.erb:25
1417
- #: lib/gettext_strings.rb:36
1376
+ #: app/views/sites/_form.erb:25 lib/gettext_strings.rb:36
1418
1377
  msgid "options"
1419
1378
  msgstr ""
1420
1379
 
@@ -1431,8 +1390,7 @@ msgstr ""
1431
1390
  msgid "original is #X this view"
1432
1391
  msgstr ""
1433
1392
 
1434
- #: app/views/discussions/_form.rhtml:11
1435
- #: lib/gettext_strings.rb:61
1393
+ #: app/views/discussions/_form.rhtml:11 lib/gettext_strings.rb:61
1436
1394
  msgid "outside"
1437
1395
  msgstr ""
1438
1396
 
@@ -1457,8 +1415,7 @@ msgstr ""
1457
1415
  msgid "parse names to ids"
1458
1416
  msgstr ""
1459
1417
 
1460
- #: app/views/users/_form.rhtml:20
1461
- #: app/views/users/_form.rhtml:22
1418
+ #: app/views/users/_form.rhtml:20 app/views/users/_form.rhtml:22
1462
1419
  msgid "password"
1463
1420
  msgstr ""
1464
1421
 
@@ -1466,7 +1423,7 @@ msgstr ""
1466
1423
  msgid "popup"
1467
1424
  msgstr ""
1468
1425
 
1469
- #: lib/gettext_strings.rb:170
1426
+ #: lib/gettext_strings.rb:171
1470
1427
  msgid "postal_code"
1471
1428
  msgstr ""
1472
1429
 
@@ -1474,8 +1431,7 @@ msgstr ""
1474
1431
  msgid "posted by"
1475
1432
  msgstr ""
1476
1433
 
1477
- #: app/views/users/preferences.html.erb:1
1478
- #: lib/zena/use/display.rb:255
1434
+ #: app/views/users/preferences.html.erb:1 lib/zena/use/display.rb:255
1479
1435
  msgid "preferences"
1480
1436
  msgstr ""
1481
1437
 
@@ -1493,8 +1449,7 @@ msgstr "property"
1493
1449
  msgid "prop eval"
1494
1450
  msgstr ""
1495
1451
 
1496
- #: app/views/columns/index.html.erb:1
1497
- #: lib/zena/use/display.rb:273
1452
+ #: app/views/columns/index.html.erb:1 lib/zena/use/display.rb:273
1498
1453
  msgid "properties"
1499
1454
  msgstr ""
1500
1455
 
@@ -1508,8 +1463,7 @@ msgstr "property"
1508
1463
  msgid "pub"
1509
1464
  msgstr "<img src='/images/wand.png' alt='publish'/>"
1510
1465
 
1511
- #: app/views/sites/_form.erb:21
1512
- #: lib/gettext_strings.rb:37
1466
+ #: app/views/sites/_form.erb:21 lib/gettext_strings.rb:37
1513
1467
  msgid "public group"
1514
1468
  msgstr ""
1515
1469
 
@@ -1526,8 +1480,7 @@ msgstr "<img src='/images/wand.png' alt='publish'/>"
1526
1480
  msgid "publishers"
1527
1481
  msgstr ""
1528
1482
 
1529
- #: app/views/acls/_form.rhtml:39
1530
- #: app/views/acls/index.rhtml:9
1483
+ #: app/views/acls/_form.rhtml:47 app/views/acls/index.rhtml:11
1531
1484
  msgid "query"
1532
1485
  msgstr ""
1533
1486
 
@@ -1543,24 +1496,24 @@ msgstr ""
1543
1496
  msgid "readers"
1544
1497
  msgstr ""
1545
1498
 
1546
- #: lib/gettext_strings.rb:163
1499
+ #: lib/gettext_strings.rb:164
1547
1500
  msgid "rebuild"
1548
1501
  msgstr "rebuild template"
1549
1502
 
1550
- #: lib/gettext_strings.rb:164
1503
+ #: lib/gettext_strings.rb:165
1551
1504
  msgid "rebuild_btn"
1552
1505
  msgstr "<img src='/images/arrow_refresh.png' alt='rebuild template'/>"
1553
1506
 
1554
- #: lib/gettext_strings.rb:181
1507
+ #: lib/gettext_strings.rb:182
1555
1508
  #, fuzzy
1556
1509
  msgid "rebuild_index"
1557
1510
  msgstr "<img src='/images/arrow_refresh.png' alt='rebuild template'/>"
1558
1511
 
1559
- #: lib/gettext_strings.rb:182
1512
+ #: lib/gettext_strings.rb:183
1560
1513
  msgid "rebuild_index done."
1561
1514
  msgstr "Rebuilding index."
1562
1515
 
1563
- #: lib/gettext_strings.rb:160
1516
+ #: lib/gettext_strings.rb:161
1564
1517
  msgid "redaction saved"
1565
1518
  msgstr ""
1566
1519
 
@@ -1573,8 +1526,7 @@ msgstr "%H:%M"
1573
1526
  msgid "relation_img"
1574
1527
  msgstr "<img src='/images/target.png' alt='role'/>"
1575
1528
 
1576
- #: app/views/relations/index.erb:1
1577
- #: lib/zena/use/display.rb:267
1529
+ #: app/views/relations/index.erb:1 lib/zena/use/display.rb:267
1578
1530
  msgid "relations"
1579
1531
  msgstr ""
1580
1532
 
@@ -1603,8 +1555,7 @@ msgstr "french"
1603
1555
  msgid "rights cannot be changed"
1604
1556
  msgstr ""
1605
1557
 
1606
- #: app/views/columns/_form.html.erb:17
1607
- #: app/views/relations/_form.erb:31
1558
+ #: app/views/columns/_form.html.erb:17 app/views/relations/_form.erb:31
1608
1559
  msgid "role"
1609
1560
  msgstr ""
1610
1561
 
@@ -1637,19 +1588,16 @@ msgstr "%m.%d"
1637
1588
  msgid "short_time"
1638
1589
  msgstr "%H:%M"
1639
1590
 
1640
- #: app/views/sites/_form.erb:22
1641
- #: lib/gettext_strings.rb:38
1591
+ #: app/views/sites/_form.erb:22 lib/gettext_strings.rb:38
1642
1592
  #, fuzzy
1643
1593
  msgid "site group"
1644
1594
  msgstr "<img src='/images/group.png' alt='group'/>"
1645
1595
 
1646
- #: app/views/sites/_li.erb:2
1647
- #: lib/gettext_strings.rb:34
1596
+ #: app/views/sites/_li.erb:2 lib/gettext_strings.rb:34
1648
1597
  msgid "site_img"
1649
1598
  msgstr "<img src='/images/world.png' alt='site'/>"
1650
1599
 
1651
- #: app/views/sites/index.erb:1
1652
- #: lib/zena/use/display.rb:279
1600
+ #: app/views/sites/index.erb:1 lib/zena/use/display.rb:279
1653
1601
  msgid "sites"
1654
1602
  msgstr ""
1655
1603
 
@@ -1661,8 +1609,7 @@ msgstr ""
1661
1609
  msgid "skin"
1662
1610
  msgstr ""
1663
1611
 
1664
- #: app/views/links/_form.rhtml:29
1665
- #: app/views/users/_form.rhtml:25
1612
+ #: app/views/links/_form.rhtml:29 app/views/users/_form.rhtml:25
1666
1613
  msgid "status"
1667
1614
  msgstr "status"
1668
1615
 
@@ -1738,7 +1685,7 @@ msgstr ""
1738
1685
  msgid "tags"
1739
1686
  msgstr "status"
1740
1687
 
1741
- #: lib/gettext_strings.rb:173
1688
+ #: lib/gettext_strings.rb:174
1742
1689
  msgid "telephone"
1743
1690
  msgstr ""
1744
1691
 
@@ -1758,8 +1705,7 @@ msgstr "text"
1758
1705
  msgid "textdocument_tab"
1759
1706
  msgstr "text doc."
1760
1707
 
1761
- #: app/views/users/preferences.html.erb:18
1762
- #: app/views/users/_form.rhtml:27
1708
+ #: app/views/users/preferences.html.erb:18 app/views/users/_form.rhtml:27
1763
1709
  msgid "time zone"
1764
1710
  msgstr ""
1765
1711
 
@@ -1785,18 +1731,16 @@ msgstr "turn dev off"
1785
1731
  msgid "turn dev on"
1786
1732
  msgstr ""
1787
1733
 
1788
- #: lib/gettext_strings.rb:165
1734
+ #: lib/gettext_strings.rb:166
1789
1735
  msgid "turn_dev_off_btn"
1790
1736
  msgstr "<img src='/images/bug.png' title='turn dev off'/>"
1791
1737
 
1792
- #: app/views/columns/_form.html.erb:18
1793
- #: app/views/relations/_form.erb:21
1794
- #: app/views/virtual_classes/_form.erb:18
1795
- #: app/views/iformats/_form.rhtml:17
1738
+ #: app/views/columns/_form.html.erb:18 app/views/relations/_form.erb:21
1739
+ #: app/views/virtual_classes/_form.erb:18 app/views/iformats/_form.rhtml:17
1796
1740
  msgid "type"
1797
1741
  msgstr ""
1798
1742
 
1799
- #: app/models/node.rb:1547
1743
+ #: app/models/node.rb:1542
1800
1744
  msgid "type mismatch (%{type} is not a Skin)"
1801
1745
  msgstr ""
1802
1746
 
@@ -1817,29 +1761,22 @@ msgstr "<img src='/images/lock.png' alt='closed'/>"
1817
1761
  msgid "user"
1818
1762
  msgstr ""
1819
1763
 
1820
- #: app/views/groups/_form.rhtml:19
1821
- #: app/views/users/index.rhtml:1
1764
+ #: app/views/groups/_form.rhtml:19 app/views/users/index.rhtml:1
1822
1765
  #: lib/zena/use/display.rb:261
1823
1766
  msgid "users"
1824
1767
  msgstr ""
1825
1768
 
1826
- #: app/views/columns/_form.html.erb:28
1827
- #: app/views/relations/_form.erb:39
1828
- #: app/views/sites/_form.erb:40
1829
- #: app/views/users/preferences.html.erb:19
1769
+ #: app/views/columns/_form.html.erb:28 app/views/relations/_form.erb:39
1770
+ #: app/views/sites/_form.erb:40 app/views/users/preferences.html.erb:19
1830
1771
  #: app/views/users/preferences.html.erb:38
1831
- #: app/views/virtual_classes/_form.erb:46
1832
- #: app/views/acls/_form.rhtml:52
1833
- #: app/views/comments/_form.rhtml:23
1834
- #: app/views/groups/_form.rhtml:35
1835
- #: app/views/iformats/_form.rhtml:22
1836
- #: app/views/nodes/_edit_attribute.rhtml:15
1772
+ #: app/views/virtual_classes/_form.erb:46 app/views/acls/_form.rhtml:60
1773
+ #: app/views/comments/_form.rhtml:23 app/views/groups/_form.rhtml:35
1774
+ #: app/views/iformats/_form.rhtml:22 app/views/nodes/_edit_attribute.rhtml:15
1837
1775
  #: app/views/templates/document_create_tabs/_file.rhtml:3
1838
1776
  #: app/views/templates/document_create_tabs/_import.rhtml:2
1839
1777
  #: app/views/templates/document_create_tabs/_template.rhtml:3
1840
1778
  #: app/views/templates/document_create_tabs/_text_document.rhtml:3
1841
- #: app/views/users/_form.rhtml:50
1842
- #: app/views/versions/edit.rhtml:17
1779
+ #: app/views/users/_form.rhtml:50 app/views/versions/edit.rhtml:17
1843
1780
  msgid "validate"
1844
1781
  msgstr " validate "
1845
1782
 
@@ -1852,13 +1789,11 @@ msgstr ""
1852
1789
  msgid "virtual class"
1853
1790
  msgstr "<img src='/images/brick.png' alt='class'/>"
1854
1791
 
1855
- #: app/views/virtual_classes/_li.erb:13
1856
- #: lib/gettext_strings.rb:41
1792
+ #: app/views/virtual_classes/_li.erb:13 lib/gettext_strings.rb:41
1857
1793
  msgid "virtual_class_error_img"
1858
1794
  msgstr "<img src='/images/brick_error.png' alt='class error'/>"
1859
1795
 
1860
- #: app/views/virtual_classes/_li.erb:3
1861
- #: app/views/virtual_classes/_li.erb:13
1796
+ #: app/views/virtual_classes/_li.erb:3 app/views/virtual_classes/_li.erb:13
1862
1797
  #: lib/gettext_strings.rb:40
1863
1798
  msgid "virtual_class_img"
1864
1799
  msgstr "<img src='/images/brick.png' alt='class'/>"
@@ -1880,7 +1815,7 @@ msgstr ""
1880
1815
  msgid "yesterday"
1881
1816
  msgstr "<img src='/images/bomb.png' alt='destroy'/>"
1882
1817
 
1883
- #: lib/gettext_strings.rb:159
1818
+ #: lib/gettext_strings.rb:160
1884
1819
  msgid "you are editing the original"
1885
1820
  msgstr ""
1886
1821