zena 1.2.1 → 1.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (202) hide show
  1. data/History.txt +38 -1
  2. data/app/controllers/documents_controller.rb +7 -5
  3. data/app/controllers/nodes_controller.rb +47 -6
  4. data/app/controllers/user_sessions_controller.rb +12 -3
  5. data/app/controllers/virtual_classes_controller.rb +8 -2
  6. data/app/models/acl.rb +5 -2
  7. data/app/models/cached_page.rb +5 -5
  8. data/app/models/column.rb +27 -4
  9. data/app/models/group.rb +1 -1
  10. data/app/models/node.rb +106 -24
  11. data/app/models/note.rb +2 -1
  12. data/app/models/relation.rb +9 -4
  13. data/app/models/relation_proxy.rb +2 -2
  14. data/app/models/role.rb +12 -5
  15. data/app/models/site.rb +10 -9
  16. data/app/models/skin.rb +8 -0
  17. data/app/models/string_hash.rb +65 -0
  18. data/app/models/text_document.rb +1 -1
  19. data/app/models/user.rb +2 -0
  20. data/app/models/virtual_class.rb +43 -10
  21. data/app/views/comments/create.rjs +1 -32
  22. data/app/views/comments/edit.rjs +1 -1
  23. data/app/views/comments/update.rjs +1 -1
  24. data/app/views/documents/show.rhtml +1 -1
  25. data/app/views/groups/_form.rhtml +7 -0
  26. data/app/views/groups/_li.rhtml +1 -1
  27. data/app/views/nodes/500.html +2 -1
  28. data/app/views/nodes/destroy.rjs +2 -0
  29. data/app/views/sites/jobs.erb +2 -3
  30. data/app/views/templates/document_create_tabs/_file.rhtml +1 -1
  31. data/app/views/templates/document_create_tabs/_import.rhtml +4 -1
  32. data/app/views/templates/document_create_tabs/_template.rhtml +3 -0
  33. data/app/views/templates/document_create_tabs/_text_document.rhtml +3 -0
  34. data/app/views/versions/custom_tab.rhtml +1 -1
  35. data/app/views/versions/edit.rhtml +1 -1
  36. data/bricks/acls/lib/bricks/acls.rb +3 -3
  37. data/bricks/acls/zena/test/unit/acl_test.rb +15 -0
  38. data/bricks/fs_skin/lib/bricks/fs_skin.rb +190 -0
  39. data/bricks/fs_skin/zena/init.rb +1 -0
  40. data/bricks/fs_skin/zena/migrate/20110702010330_add_fs_skin_to_idx_templates.rb +12 -0
  41. data/bricks/{static → fs_skin}/zena/skins/blog/Image-edit.zafu +0 -0
  42. data/bricks/{static → fs_skin}/zena/skins/blog/Image.zafu +0 -0
  43. data/bricks/{static → fs_skin}/zena/skins/blog/Node-+index.zafu +0 -0
  44. data/bricks/{static → fs_skin}/zena/skins/blog/Node-+notFound.zafu +0 -0
  45. data/bricks/{static → fs_skin}/zena/skins/blog/Node-+search.zafu +0 -0
  46. data/bricks/{static → fs_skin}/zena/skins/blog/Node.zafu +1 -1
  47. data/bricks/{static → fs_skin}/zena/skins/blog/Post.zafu +0 -0
  48. data/bricks/{static → fs_skin}/zena/skins/blog/Project--kml.zafu +0 -0
  49. data/bricks/{static → fs_skin}/zena/skins/blog/Project.zafu +0 -0
  50. data/bricks/{static → fs_skin}/zena/skins/blog/comments.zafu +0 -0
  51. data/bricks/{static → fs_skin}/zena/skins/blog/dict.yml +0 -0
  52. data/bricks/{static → fs_skin}/zena/skins/blog/img/dateBg.jpg +0 -0
  53. data/bricks/{static → fs_skin}/zena/skins/blog/img/header.png +0 -0
  54. data/bricks/{static → fs_skin}/zena/skins/blog/img/mapPin.png +0 -0
  55. data/bricks/{static → fs_skin}/zena/skins/blog/img/menu.gif +0 -0
  56. data/bricks/{static → fs_skin}/zena/skins/blog/img/menuover.gif +0 -0
  57. data/bricks/{static → fs_skin}/zena/skins/blog/img/style.css +0 -0
  58. data/bricks/fs_skin/zena/tasks.rb +26 -0
  59. data/bricks/{static/zena/test/integration/static_integration_test.rb → fs_skin/zena/test/integration/fs_skin_integration_test.rb} +6 -6
  60. data/bricks/fs_skin/zena/test/unit/fs_skin_test.rb +33 -0
  61. data/bricks/grid/lib/bricks/grid.rb +4 -3
  62. data/bricks/tags/lib/bricks/tags.rb +1 -7
  63. data/bricks/zena/zena/migrate/20120605091558_add_ssl_login_to_site.rb +7 -0
  64. data/bricks/zena/zena/migrate/20120630123551_add_auto_publish_to_group.rb +9 -0
  65. data/config/bricks.yml +3 -3
  66. data/config/gems.yml +2 -3
  67. data/lib/tasks/zena.rake +7 -3
  68. data/lib/zafu.rb +7 -0
  69. data/lib/zafu/all.rb +21 -0
  70. data/lib/zafu/compiler.rb +7 -0
  71. data/lib/zafu/controller_methods.rb +58 -0
  72. data/lib/zafu/handler.rb +57 -0
  73. data/lib/zafu/info.rb +4 -0
  74. data/lib/zafu/markup.rb +309 -0
  75. data/lib/zafu/mock_helper.rb +42 -0
  76. data/lib/zafu/node_context.rb +203 -0
  77. data/lib/zafu/ordered_hash.rb +53 -0
  78. data/lib/zafu/parser.rb +676 -0
  79. data/lib/zafu/parsing_rules.rb +382 -0
  80. data/lib/zafu/process/ajax.rb +530 -0
  81. data/lib/zafu/process/conditional.rb +92 -0
  82. data/lib/zafu/process/context.rb +186 -0
  83. data/lib/zafu/process/forms.rb +143 -0
  84. data/lib/zafu/process/html.rb +186 -0
  85. data/lib/zafu/process/ruby_less_processing.rb +321 -0
  86. data/lib/zafu/security.rb +15 -0
  87. data/lib/zafu/template.rb +25 -0
  88. data/lib/zafu/test_helper.rb +19 -0
  89. data/lib/zafu/view_methods.rb +6 -0
  90. data/lib/zena.rb +1 -1
  91. data/lib/zena/acts/enrollable.rb +1 -1
  92. data/lib/zena/app.rb +4 -17
  93. data/lib/zena/console.rb +18 -1
  94. data/lib/zena/core_ext/file_utils.rb +13 -1
  95. data/lib/zena/core_ext/fixnum.rb +4 -0
  96. data/lib/zena/core_ext/float.rb +7 -0
  97. data/lib/zena/deploy.rb +4 -2
  98. data/lib/zena/deploy/app_init.rhtml +2 -1
  99. data/lib/zena/deploy/database.rhtml +1 -1
  100. data/lib/zena/info.rb +1 -1
  101. data/lib/zena/parser/zazen_rules.rb +4 -4
  102. data/lib/zena/routes.rb +1 -1
  103. data/lib/zena/test_controller.rb +1 -1
  104. data/lib/zena/use.rb +14 -1
  105. data/lib/zena/use/action.rb +4 -2
  106. data/lib/zena/use/ajax.rb +86 -38
  107. data/lib/zena/use/authlogic.rb +16 -1
  108. data/lib/zena/use/calendar.rb +37 -17
  109. data/lib/zena/use/conditional.rb +2 -2
  110. data/lib/zena/use/context.rb +30 -9
  111. data/lib/zena/use/dates.rb +39 -3
  112. data/lib/zena/use/display.rb +6 -19
  113. data/lib/zena/use/forms.rb +100 -79
  114. data/lib/zena/use/i18n.rb +40 -16
  115. data/lib/zena/use/query_builder.rb +0 -6
  116. data/lib/zena/use/query_node.rb +17 -4
  117. data/lib/zena/use/relations.rb +1 -3
  118. data/lib/zena/use/rendering.rb +10 -8
  119. data/lib/zena/use/scope_index.rb +5 -1
  120. data/lib/zena/use/search.rb +2 -1
  121. data/lib/zena/use/urls.rb +82 -77
  122. data/lib/zena/use/workflow.rb +12 -4
  123. data/lib/zena/use/zafu_safe_definitions.rb +37 -9
  124. data/lib/zena/use/zafu_templates.rb +49 -20
  125. data/lib/zena/use/zazen.rb +6 -2
  126. data/locale/it/LC_MESSAGES/zena.mo +0 -0
  127. data/locale/it/zena.mo +0 -0
  128. data/locale/it/zena.po +1982 -0
  129. data/public/images/arrow_back.png +0 -0
  130. data/public/images/remove_tag.png +0 -0
  131. data/public/javascripts/grid.js +800 -199
  132. data/public/javascripts/window.js +1 -1
  133. data/public/javascripts/zena.js +130 -21
  134. data/public/stylesheets/grid.css +11 -2
  135. data/public/stylesheets/zena.css +2 -1
  136. data/test/custom_queries/complex.host.yml +5 -0
  137. data/test/fixtures/files/TestNode.zafu +36 -0
  138. data/test/functional/nodes_controller_test.rb +18 -1
  139. data/test/integration/zafu_compiler/action.yml +2 -2
  140. data/test/integration/zafu_compiler/ajax.yml +44 -26
  141. data/test/integration/zafu_compiler/asset.yml +12 -2
  142. data/test/integration/zafu_compiler/basic.yml +0 -16
  143. data/test/integration/zafu_compiler/calendar.yml +6 -6
  144. data/test/integration/zafu_compiler/complex_ok.yml +23 -1
  145. data/test/integration/zafu_compiler/conditional.yml +5 -5
  146. data/test/integration/zafu_compiler/context.yml +6 -5
  147. data/test/integration/zafu_compiler/dates.yml +23 -2
  148. data/test/integration/zafu_compiler/display.yml +46 -2
  149. data/test/integration/zafu_compiler/errors.yml +2 -2
  150. data/test/integration/zafu_compiler/eval.yml +35 -7
  151. data/test/integration/zafu_compiler/forms.yml +47 -13
  152. data/test/integration/zafu_compiler/i18n.yml +2 -2
  153. data/test/integration/zafu_compiler/meta.yml +35 -1
  154. data/test/integration/zafu_compiler/query.yml +23 -4
  155. data/test/integration/zafu_compiler/relations.yml +10 -6
  156. data/test/integration/zafu_compiler/roles.yml +4 -4
  157. data/test/integration/zafu_compiler/rubyless.yml +11 -1
  158. data/test/integration/zafu_compiler/safe_definitions.yml +23 -5
  159. data/test/integration/zafu_compiler/security.yml +10 -6
  160. data/test/integration/zafu_compiler/urls.yml +23 -6
  161. data/test/integration/zafu_compiler/zafu_attributes.yml +1 -1
  162. data/test/integration/zafu_compiler/zazen.yml +14 -0
  163. data/test/selenium/Add/add3.rsel +8 -8
  164. data/test/selenium/Destroy/0setup.rsel +12 -0
  165. data/test/selenium/Destroy/destroy1.rsel +16 -0
  166. data/test/selenium/Edit/edit2.rsel +9 -9
  167. data/test/selenium/Edit/edit5.rsel +9 -9
  168. data/test/selenium/Edit/edit6.rsel +9 -9
  169. data/test/selenium/Form/form4.rsel +17 -0
  170. data/test/selenium/Toggle/toggle1.rsel +2 -0
  171. data/test/selenium/Toggle/toggle2.rsel +18 -0
  172. data/test/sites/zena/columns.yml +3 -0
  173. data/test/sites/zena/versions.yml +7 -0
  174. data/test/unit/cached_page_test.rb +13 -13
  175. data/test/unit/column_test.rb +26 -0
  176. data/test/unit/node_test.rb +16 -1
  177. data/test/unit/project_test.rb +6 -1
  178. data/test/unit/relation_test.rb +1 -1
  179. data/test/unit/role_test.rb +1 -1
  180. data/test/unit/string_hash_test.rb +30 -0
  181. data/test/unit/virtual_class_test.rb +31 -17
  182. data/test/unit/zafu_markup_test.rb +414 -0
  183. data/test/unit/zafu_node_context_test.rb +375 -0
  184. data/test/unit/zafu_ordered_hash_test.rb +69 -0
  185. data/test/unit/zena/acts/enrollable_test.rb +1 -1
  186. data/test/unit/zena/parser/zafu_asset.yml +0 -10
  187. data/test/unit/zena/parser/zazen.yml +1 -1
  188. data/test/unit/zena/parser_test.rb +1 -72
  189. data/test/unit/zena/use/dates_test.rb +1 -1
  190. data/test/unit/zena/use/rendering_test.rb +24 -7
  191. data/test/unit/zena/use/scope_index_test.rb +17 -0
  192. data/test/unit/zena/use/zazen_test.rb +2 -1
  193. data/zena.gemspec +71 -37
  194. metadata +104 -83
  195. data/app/views/nodes/destroy.erb +0 -0
  196. data/bricks/static/lib/bricks/static.rb +0 -151
  197. data/bricks/static/zena/init.rb +0 -1
  198. data/bricks/static/zena/migrate/20110702010330_add_static_to_idx_templates.rb +0 -12
  199. data/bricks/static/zena/test/unit/static_test.rb +0 -33
  200. data/lib/zena/parser/zafu_rules.rb +0 -244
  201. data/lib/zena/parser/zafu_tags.rb +0 -198
  202. data/lib/zena/parser/zena_rules.rb +0 -23
@@ -113,6 +113,7 @@ module Zena
113
113
 
114
114
 
115
115
  base.before_validation :set_workflow_defaults
116
+
116
117
  base.validate :workflow_validation
117
118
  base.before_create :workflow_before_create
118
119
 
@@ -269,10 +270,17 @@ module Zena
269
270
  # on original
270
271
  version.number == 1 &&
271
272
  # redaction or pub with autopublish
272
- (version.status == Zena::Status::Red || (version.status == Zena::Status::Pub && current_site.auto_publish?)) &&
273
+ (
274
+ version.status == Zena::Status::Red ||
275
+ (version.status == Zena::Status::Pub && auto_publish?)
276
+ ) &&
273
277
  # same owner, in redit time, ...
274
278
  !version.clone_on_change?
275
279
  end
280
+
281
+ def auto_publish?
282
+ current_site.auto_publish? || dgroup.auto_publish?
283
+ end
276
284
 
277
285
  def can_edit?(lang=nil)
278
286
  # Has the visitor write access to the node & node is not a proposition ?
@@ -402,8 +410,8 @@ module Zena
402
410
 
403
411
  def apply_with_callbacks(method, *args)
404
412
  if apply_without_callbacks(method, *args)
405
- # TODO: we should build callback from @current_transition.name
406
- callback = :"after_#{method}"
413
+ transition_name = @current_transition ? @current_transition[:name] : method
414
+ callback = :"after_#{transition_name}"
407
415
  if respond_to?(callback, true)
408
416
  send(callback)
409
417
  else
@@ -499,7 +507,7 @@ module Zena
499
507
  end
500
508
  else
501
509
  # Set default version status
502
- version.status = (current_site[:auto_publish] && full_drive?) ? Zena::Status::Pub : Zena::Status::Red
510
+ version.status = (auto_publish? && full_drive?) ? Zena::Status::Pub : Zena::Status::Red
503
511
  end
504
512
  else
505
513
  # keep status value set
@@ -27,13 +27,26 @@ module Zena
27
27
  def self.map_proc
28
28
  @@map_proc ||= Proc.new do |receiver, method|
29
29
  if elem = receiver.opts[:elem] || receiver.klass.first
30
- if type = RubyLess::safe_method_type_for(elem, [method.to_s])
31
- if type[:method] =~ /\A\w+\Z/
32
- res = "#{receiver.raw}.map(&#{type[:method].to_sym.inspect}).compact"
33
- else
34
- res = "#{receiver.raw}.map{|_map_obj| _map_obj.#{type[:method]}}.compact"
35
- end
36
- res = RubyLess::TypedString.new(res, :class => [type[:class]])
30
+ if code = RubyLess.translate(elem, method)
31
+ res = "#{receiver.raw}.map{|_map_obj| _map_obj.#{code}}.compact"
32
+ res = RubyLess::TypedString.new(res, :class => [code.klass])
33
+ else
34
+ raise RubyLess::NoMethodError.new(receiver.raw, receiver.klass, ['map', method])
35
+ end
36
+ else
37
+ # should never happen
38
+ raise RubyLess::NoMethodError.new(receiver.raw, receiver.klass, ['map', method])
39
+ end
40
+ end
41
+ end
42
+
43
+ # Dynamic resolution of sum("working_time")
44
+ def self.map_sum
45
+ @@map_sum ||= Proc.new do |receiver, method|
46
+ if elem = receiver.opts[:elem] || receiver.klass.first
47
+ if code = RubyLess.translate(elem, method)
48
+ res = "#{receiver.raw}.map{|_sum_obj| _sum_obj.#{code}.to_f}.reduce(:+)"
49
+ res = RubyLess::TypedString.new(res, :class => Number)
37
50
  else
38
51
  raise RubyLess::NoMethodError.new(receiver.raw, receiver.klass, ['map', method])
39
52
  end
@@ -84,6 +97,8 @@ module Zena
84
97
 
85
98
  safe_method :params => ParamsDictionary
86
99
  safe_method :now => {:method => 'Time.now', :class => Time}
100
+ safe_method :string_hash => {:method => 'StringHash.new', :class => StringHash}
101
+ safe_method [:string_hash, Hash] => {:method => 'StringHash.from_hash', :class => StringHash}
87
102
  safe_method [:h, String] => {:class => String, :nil => true}
88
103
  safe_method_for String, [:gsub, Regexp, String] => {:class => String, :pre_processor => true}
89
104
  safe_method_for String, :upcase => {:class => String, :pre_processor => true}
@@ -96,11 +111,14 @@ module Zena
96
111
  safe_method_for String, [:limit, Number, String] => {:class => String, :pre_processor => true}
97
112
  safe_method_for String, :to_f => {:class => Number, :pre_processor => true}
98
113
  safe_method_for String, :to_json => {:class => String, :pre_processor => true}
114
+ safe_method_for String, [:split, String] => {:class => [String], :pre_processor => true}
99
115
 
100
116
  safe_method_for Number, :to_s => {:class => String, :pre_processor => true}
101
117
  safe_method_for Number, :to_f => {:class => Number, :pre_processor => true}
102
118
  safe_method_for Number, :to_i => {:class => Number, :pre_processor => true}
103
119
  safe_method_for Number, :to_json => {:class => String, :pre_processor => true}
120
+ safe_method_for Number, :fmt => {:class => String, :pre_processor => true}
121
+ safe_method_for Number, [:fmt, Number] => {:class => String, :pre_processor => true}
104
122
 
105
123
  safe_method_for NilClass, :to_f => {:class => Number, :pre_processor => true}
106
124
  safe_method_for NilClass, :to_i => {:class => Number, :pre_processor => true}
@@ -116,21 +134,31 @@ module Zena
116
134
  safe_method_for Node, [:kind_of?, String] => {:method => 'kpath_match?', :class => Boolean}
117
135
  safe_method_for Node, [:kind_of?, Number] => {:method => 'has_role?', :class => Boolean}
118
136
  safe_method_for Array, [:index, String] => {:class => Number, :nil => true}
119
- safe_method_for Array, [:join, String] => # supports map(:name)
137
+
138
+ safe_method_for Array, [:join, String] => # supports join('key')
120
139
  {:method => 'nil', :nil => true, :pre_processor => join_proc}
121
- safe_method_for Array, [:map, Symbol] => # supports map(:name)
140
+
141
+ safe_method_for Array, [:map, String] => # supports map('title')
122
142
  {:method => 'nil', :nil => true, :pre_processor => map_proc}
143
+
144
+ safe_method_for Array, [:sum, String] => # supports sum('working_time')
145
+ {:method => 'nil', :nil => true, :pre_processor => map_sum}
146
+
123
147
  safe_method_for Array, [:first] =>
124
148
  {:method => 'nil', :nil => true, :pre_processor => first_proc}
149
+
125
150
  safe_method_for Array, [:include?, String] =>
126
151
  {:method => 'include?', :accept_nil => true, :pre_processor => true, :class => Boolean}
152
+
127
153
  safe_method_for Array, [:include?, Number] =>
128
154
  {:method => 'include?', :accept_nil => true, :pre_processor => true, :class => Boolean}
129
155
 
130
156
  safe_method_for Hash, :to_param => String
157
+ safe_method_for Hash, :to_json => String
131
158
 
132
159
  safe_method [:min, Number, Number] => {:method => 'zafu_min', :class => Number}
133
160
  safe_method [:max, Number, Number] => {:method => 'zafu_max', :class => Number}
161
+
134
162
  # Returns the smallest of two values.
135
163
  def zafu_min(a, b)
136
164
  [a, b].min
@@ -44,15 +44,17 @@ module Zena
44
44
  # Return a template's content from an url. If the url does not start with a '/', we try by replacing the
45
45
  # first element with the current skin_name and if it does not work, we try with the full url. If the url
46
46
  # start with a '/' we use the full url directly.
47
- def get_template_text(path, section_id = nil)
47
+ def get_template_text(path, section_id = nil, opts = {})
48
48
  if path =~ DEFAULT_PATH
49
49
  filepath = File.join(DEFAULT_TEMPLATES_PATH, "#{$1}.zafu")
50
- text = File.exist?(filepath) ? File.read(filepath) : nil
51
- return text, path, nil
50
+ if text = File.exist?(filepath) ? File.read(filepath) : nil
51
+ return text, path, nil
52
+ end
52
53
  elsif @skin.nil? && path == 'Node'
53
54
  filepath = File.join(DEFAULT_TEMPLATES_PATH, "default/#{path}.zafu")
54
- text = File.exist?(filepath) ? File.read(filepath) : nil
55
- return text, path, nil
55
+ if text = File.exist?(filepath) ? File.read(filepath) : nil
56
+ return text, path, nil
57
+ end
56
58
  else
57
59
  path = path.split('/').map {|s| String.from_filename(s) }
58
60
  if doc = find_document_for_template(path, section_id)
@@ -139,7 +141,7 @@ module Zena
139
141
 
140
142
  # Callback to save an write an Ajax template to file.
141
143
  def save_erb_to_url(template, template_url)
142
- path = fullpath_from_template_url(template_url)
144
+ path = fullpath_from_template_url(template_url, false)
143
145
  path += ".erb" unless path =~ /\.\w+\Z/
144
146
  FileUtils.mkpath(File.dirname(path)) unless File.exists?(File.dirname(path))
145
147
  File.open(path, "wb") { |f| f.syswrite(template) }
@@ -148,8 +150,8 @@ module Zena
148
150
 
149
151
  # Return the full path from a template's url.
150
152
  # The expected url is of the form '/skin/Klass-mode/partial'
151
- def fullpath_from_template_url(template_url=params[:t_url])
152
- "#{SITES_ROOT}#{template_path_from_template_url(template_url)}"
153
+ def fullpath_from_template_url(template_url=params[:t_url], build=false)
154
+ "#{SITES_ROOT}#{template_path_from_template_url('',template_url,build)}"
153
155
  end
154
156
 
155
157
  # Make sure some vital templates never get broken
@@ -181,7 +183,7 @@ module Zena
181
183
  # File path:
182
184
  rel_path = current_site.zafu_path + "/#{zafu_url}/#{lang_path}/_main.erb"
183
185
  path = SITES_ROOT + rel_path
184
-
186
+
185
187
  if !File.exists?(path)
186
188
  rebuild_template(nil, opts.merge(:zafu_url => zafu_url, :rel_path => rel_path, :dev_mode => (dev_mode? && opts[:mode] != '+popupLayout')))
187
189
  end
@@ -257,10 +259,9 @@ module Zena
257
259
  if @skin
258
260
  zafu_url, template = get_best_template(kpaths, format, mode, @skin)
259
261
  return default_template_url(opts) unless zafu_url
260
-
262
+
261
263
  rel_path = current_site.zafu_path + "/#{zafu_url}/#{lang_path}/_main.erb"
262
264
  path = SITES_ROOT + rel_path
263
-
264
265
  if !File.exists?(path) || params[:rebuild]
265
266
  if @node && klass = VirtualClass.find_by_kpath(template.tkpath)
266
267
  zafu_node('@node', klass)
@@ -309,19 +310,42 @@ module Zena
309
310
  end
310
311
  end
311
312
 
312
- # Return the template path without '.erb' extension in case we need to append '_form'
313
- # from a template's url. The expected url is of the form '/skin/Klass-mode/partial'
314
- def template_path_from_template_url(template_url=params[:t_url])
313
+ # Return the template path from a template's url. The expected url is
314
+ # of the form '/skin/Klass-mode/partial'
315
+ def template_path_from_template_url(suffix='', template_url=params[:t_url], build=true)
315
316
  raise "Missing template_url (t_url parameter)" unless template_url
316
317
  if template_url =~ /\A\.|[^ #{String::ALLOWED_CHARS_IN_FILEPATH}]/
317
318
  raise Zena::AccessViolation.new("'template_url' contains illegal characters : #{template_url.inspect}")
318
319
  end
319
320
 
320
321
  template_url = template_url.split('/')
321
- template_url.insert(-2, dev_mode? ? "dev_#{lang}" : lang)
322
- path = template_url.join('/')
323
-
324
- "/#{current_site.host}/zafu/#{path}"
322
+ base_p = ['', current_site.host, 'zafu'] + template_url[0..-2]
323
+ lang_p = [dev_mode? ? "dev_#{lang}" : lang]
324
+ part_p = template_url[-1]
325
+
326
+ main_fullpath = SITES_ROOT + (base_p + lang_p + ['_main.erb']).join('/')
327
+ if !File.exist?(main_fullpath) && build
328
+ skin = template_url[0]
329
+ template_name = template_url[-2]
330
+ if template_name =~ ::Template::MODE_FORMAT_FROM_TITLE
331
+ # title changed force update
332
+ klass = $1
333
+ mode = $4 || ''
334
+ format = $6 || 'html'
335
+ # Template rendering node
336
+ node_bak = @node
337
+ # Find first node matching klass
338
+ vclass = VirtualClass[klass]
339
+ @node = Node.sfind("#{klass.underscore} in site", :first)
340
+ if @node.skin.title != skin
341
+ @node.skin = secure(Skin) { Skin.find_by_title(skin) }
342
+ end
343
+ template_url(:mode => mode, :format => format)
344
+ @node = node_bak
345
+ end
346
+ end
347
+
348
+ (base_p + lang_p + ["#{part_p}#{suffix}.erb"]).join('/')
325
349
  end
326
350
 
327
351
  def zafu_helper
@@ -427,8 +451,8 @@ module Zena
427
451
  end
428
452
  end
429
453
 
430
- res = ZafuCompiler.new_with_url(zafu_url, :helper => zafu_helper).to_erb(:dev => dev_mode?, :node => get_node_context)
431
-
454
+ res = ZafuCompiler.new_with_url(zafu_url, :helper => zafu_helper).to_erb(:dev => dev_mode?, :node => get_node_context, :master_template => template)
455
+
432
456
  unless valid_template?(res, opts)
433
457
  # problem during rendering, use default zafu
434
458
  return nil
@@ -444,6 +468,11 @@ module Zena
444
468
  else
445
469
  res.sub!('</body>', "<%= render_js %></body>")
446
470
  end
471
+
472
+ if request.format == Mime::HTML
473
+ # Insert start id
474
+ res.sub!('<body', %Q{<body data-t='#{zafu_url}' data-z='<%= @node.zip %>' })
475
+ end
447
476
 
448
477
  if template
449
478
  secure!(CachedPage) { CachedPage.create(
@@ -61,6 +61,10 @@ module Zena
61
61
  end
62
62
  end
63
63
  opt[:node] ||= @node
64
+ # Bug in Textile when text starts with ' '
65
+ if text[0..0] == ' '
66
+ text = "\n\n#{text}"
67
+ end
64
68
  res = ZazenParser.new(text,:helper=>self).render(opt)
65
69
  if no_p && !text.include?("\n")
66
70
  res.gsub(%r{\A<p>|</p>\Z},'')
@@ -144,9 +148,9 @@ module Zena
144
148
  link_to title, "##{anchor_value}"
145
149
  end
146
150
  elsif opts[:id] && opts[:id][0..0] == '0'
147
- link_to title, zen_path(node, link_opts), :popup=>true
151
+ link_to title, zen_path(node, link_opts), :popup => true
148
152
  else
149
- link_to title, zen_path(node, link_opts)
153
+ link_to title, zen_path(node, link_opts), :target => opts[:target]
150
154
  end
151
155
  end
152
156
 
Binary file
@@ -0,0 +1,1982 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: version 0.0.1\n"
4
+ "POT-Creation-Date: 2011-06-27 20:32-0000\n"
5
+ "PO-Revision-Date: 2012-05-03 09:43+0100\n"
6
+ "Last-Translator: Gaspard Bucher <gaspard@teti.ch>\n"
7
+ "Language-Team: en <gaspard@teti.ch>\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1\n"
12
+ "X-Poedit-Country: UNITED STATES\n"
13
+ "X-Poedit-Bookmarks: -1,-1,-1,219,-1,-1,-1,-1,-1,-1\n"
14
+ "X-Poedit-Basepath: /Users/gaspard/svk/zena\n"
15
+
16
+ #: lib/gettext_strings.rb:119
17
+ msgid "%Y-%m-%d %H:%M"
18
+ msgstr "%Y-%m-%d %H:%M"
19
+
20
+ #: app/models/text_document.rb:79
21
+ #, fuzzy
22
+ msgid "%{asset} not found"
23
+ msgstr "Node not found."
24
+
25
+ #: app/views/nodes/_import_results.rhtml:14
26
+ msgid "%{count} versions"
27
+ msgstr ""
28
+
29
+ #: lib/zena/use/dates.rb:66
30
+ msgid "%{d} days ago"
31
+ msgstr ""
32
+
33
+ #: lib/gettext_strings.rb:75
34
+ #: lib/zena/use/display.rb:162
35
+ msgid "%{ext} document"
36
+ msgstr ""
37
+
38
+ #: lib/zena/use/display.rb:166
39
+ msgid "%{ext} node"
40
+ msgstr ""
41
+
42
+ #: lib/zena/use/dates.rb:72
43
+ msgid "%{h} hours ago"
44
+ msgstr ""
45
+
46
+ #: lib/zena/use/dates.rb:77
47
+ msgid "%{m} minutes ago"
48
+ msgstr ""
49
+
50
+ #: lib/gettext_strings.rb:76
51
+ #: lib/zena/use/display.rb:150
52
+ msgid "%{type} node"
53
+ msgstr ""
54
+
55
+ #: app/views/nodes/_results.rhtml:15
56
+ msgid "'%{search_string}' not found"
57
+ msgstr ""
58
+
59
+ #: lib/zena/use/dates.rb:74
60
+ msgid "1 hour ago"
61
+ msgstr ""
62
+
63
+ #: lib/zena/use/dates.rb:79
64
+ msgid "1 minute ago"
65
+ msgstr ""
66
+
67
+ #: app/views/sites/_form.erb:23
68
+ #, fuzzy
69
+ msgid "API group"
70
+ msgstr "<img src='/images/group.png' alt='group'/>"
71
+
72
+ #: lib/gettext_strings.rb:146
73
+ msgid "Apr"
74
+ msgstr "apr."
75
+
76
+ #: lib/gettext_strings.rb:133
77
+ msgid "April"
78
+ msgstr "aprile"
79
+
80
+ #: app/views/acls/_form.rhtml:66
81
+ msgid "Are you sure you want to destroy this access ?"
82
+ msgstr ""
83
+
84
+ #: app/views/groups/_form.rhtml:39
85
+ msgid "Are you sure you want to destroy this group ?"
86
+ msgstr ""
87
+
88
+ #: app/views/iformats/_form.rhtml:26
89
+ msgid "Are you sure you want to destroy this image format ?"
90
+ msgstr ""
91
+
92
+ #: app/views/columns/_form.html.erb:32
93
+ msgid "Are you sure you want to destroy this property definition ?"
94
+ msgstr ""
95
+
96
+ #: app/views/relations/_form.erb:43
97
+ msgid "Are you sure you want to destroy this relation ?"
98
+ msgstr ""
99
+
100
+ #: app/views/virtual_classes/_form.erb:51
101
+ msgid "Are you sure you want to destroy this virtual class ?"
102
+ msgstr ""
103
+
104
+ #: app/views/comments/_bin.rhtml:4
105
+ msgid "Are you sure you want to permanently remove the content of this rubbish bin ?"
106
+ msgstr ""
107
+
108
+ #: lib/gettext_strings.rb:150
109
+ msgid "Aug"
110
+ msgstr "ag."
111
+
112
+ #: lib/gettext_strings.rb:137
113
+ msgid "August"
114
+ msgstr "agosto"
115
+
116
+ #: app/controllers/nodes_controller.rb:311
117
+ msgid "Backup created."
118
+ msgstr ""
119
+
120
+ #: app/controllers/columns_controller.rb:73
121
+ #, fuzzy
122
+ msgid "Column was successfully created."
123
+ msgstr "Informations successfully updated."
124
+
125
+ #: app/controllers/columns_controller.rb:90
126
+ #, fuzzy
127
+ msgid "Column was successfully updated."
128
+ msgstr "Informations successfully updated."
129
+
130
+ #: app/controllers/comments_controller.rb:35
131
+ #, fuzzy
132
+ msgid "Comment was successfully created."
133
+ msgstr "Informations successfully updated."
134
+
135
+ #: lib/zena/use/prop_eval.rb:32
136
+ msgid "Compilation should produce a Hash (Found %s)."
137
+ msgstr ""
138
+
139
+ #: lib/zena/use/fulltext.rb:36
140
+ msgid "Compilation should produce a String. Found %s."
141
+ msgstr ""
142
+
143
+ #: app/controllers/versions_controller.rb:62
144
+ msgid "Could not change version back to redaction."
145
+ msgstr ""
146
+
147
+ #: app/controllers/nodes_controller.rb:515
148
+ #, fuzzy
149
+ msgid "Could not clear order."
150
+ msgstr "User could not be updated."
151
+
152
+ #: app/controllers/nodes_controller.rb:313
153
+ msgid "Could not create backup."
154
+ msgstr ""
155
+
156
+ #: app/controllers/nodes_controller.rb:280
157
+ #, fuzzy
158
+ msgid "Could not destroy node."
159
+ msgstr "User could not be updated."
160
+
161
+ #: app/controllers/versions_controller.rb:234
162
+ #, fuzzy
163
+ msgid "Could not destroy version."
164
+ msgstr "User could not be updated."
165
+
166
+ #: app/controllers/versions_controller.rb:166
167
+ msgid "Could not propose redaction."
168
+ msgstr ""
169
+
170
+ #: app/controllers/versions_controller.rb:185
171
+ #, fuzzy
172
+ msgid "Could not publish:"
173
+ msgstr "<img src='/images/wand.png' alt='publish'/>"
174
+
175
+ #: app/controllers/versions_controller.rb:176
176
+ msgid "Could not refuse proposition."
177
+ msgstr ""
178
+
179
+ #: app/controllers/versions_controller.rb:195
180
+ #: app/controllers/versions_controller.rb:215
181
+ msgid "Could not remove publication."
182
+ msgstr ""
183
+
184
+ #: app/controllers/versions_controller.rb:204
185
+ msgid "Could not rollback:"
186
+ msgstr ""
187
+
188
+ #: app/controllers/nodes_controller.rb:498
189
+ msgid "Could not update order."
190
+ msgstr ""
191
+
192
+ #: app/controllers/data_entries_controller.rb:18
193
+ #, fuzzy
194
+ msgid "Data entry was successfully created."
195
+ msgstr "Informations successfully updated."
196
+
197
+ #: lib/gettext_strings.rb:154
198
+ msgid "Dec"
199
+ msgstr "dic."
200
+
201
+ #: lib/gettext_strings.rb:141
202
+ msgid "December"
203
+ msgstr "dicembre"
204
+
205
+ #: lib/zena/use/calendar.rb:138
206
+ msgid "Delete relation '%{role}' between '%{source}' and '%{target}' ?"
207
+ msgstr ""
208
+
209
+ #: lib/gettext_strings.rb:144
210
+ msgid "Feb"
211
+ msgstr "febbr."
212
+
213
+ #: lib/gettext_strings.rb:131
214
+ msgid "February"
215
+ msgstr "febbraio"
216
+
217
+ #: lib/gettext_strings.rb:126
218
+ msgid "Fri"
219
+ msgstr "ven."
220
+
221
+ #: lib/gettext_strings.rb:113
222
+ msgid "Friday"
223
+ msgstr "venerdì"
224
+
225
+ #: app/controllers/sites_controller.rb:53
226
+ msgid "Invalid action '%{action}'."
227
+ msgstr ""
228
+
229
+ #: app/controllers/user_sessions_controller.rb:21
230
+ msgid "Invalid login or password."
231
+ msgstr "Invalid login or password."
232
+
233
+ #: lib/gettext_strings.rb:143
234
+ msgid "Jan"
235
+ msgstr "genn."
236
+
237
+ #: lib/gettext_strings.rb:130
238
+ msgid "January"
239
+ msgstr "gennaio"
240
+
241
+ #: lib/gettext_strings.rb:149
242
+ msgid "Jul"
243
+ msgstr "luglio"
244
+
245
+ #: lib/gettext_strings.rb:136
246
+ msgid "July"
247
+ msgstr "luglio"
248
+
249
+ #: lib/gettext_strings.rb:148
250
+ msgid "Jun"
251
+ msgstr "giugno"
252
+
253
+ #: lib/gettext_strings.rb:135
254
+ msgid "June"
255
+ msgstr "giugno"
256
+
257
+ #: lib/gettext_strings.rb:145
258
+ msgid "Mar"
259
+ msgstr "mar."
260
+
261
+ #: lib/gettext_strings.rb:132
262
+ msgid "March"
263
+ msgstr "marzo"
264
+
265
+ #: lib/gettext_strings.rb:134
266
+ #: lib/gettext_strings.rb:147
267
+ msgid "May"
268
+ msgstr "maggio"
269
+
270
+ #: lib/gettext_strings.rb:122
271
+ msgid "Mon"
272
+ msgstr "lun."
273
+
274
+ #: lib/gettext_strings.rb:109
275
+ msgid "Monday"
276
+ msgstr "lunedì"
277
+
278
+ #: app/controllers/versions_controller.rb:224
279
+ #, fuzzy
280
+ msgid "Node destroyed."
281
+ msgstr "<img src='/images/bomb.png' alt='destroy'/>"
282
+
283
+ #: lib/gettext_strings.rb:153
284
+ msgid "Nov"
285
+ msgstr "nov."
286
+
287
+ #: lib/gettext_strings.rb:140
288
+ msgid "November"
289
+ msgstr "novembre"
290
+
291
+ #: lib/gettext_strings.rb:152
292
+ msgid "Oct"
293
+ msgstr "ott."
294
+
295
+ #: lib/gettext_strings.rb:139
296
+ msgid "October"
297
+ msgstr "ottobre"
298
+
299
+ #: app/views/nodes/clear_order.rjs:5
300
+ #, fuzzy
301
+ msgid "Order cleared."
302
+ msgstr "Order updated."
303
+
304
+ #: app/controllers/nodes_controller.rb:496
305
+ msgid "Order updated"
306
+ msgstr "Order updated."
307
+
308
+ #: lib/gettext_strings.rb:157
309
+ msgid "Password:"
310
+ msgstr ""
311
+
312
+ #: app/controllers/versions_controller.rb:173
313
+ msgid "Proposition refused."
314
+ msgstr ""
315
+
316
+ #: app/controllers/versions_controller.rb:193
317
+ #: app/controllers/versions_controller.rb:213
318
+ #, fuzzy
319
+ msgid "Publication removed."
320
+ msgstr "<img src='/images/delete.png' alt='delete'/>"
321
+
322
+ #: app/controllers/versions_controller.rb:164
323
+ msgid "Redaction proposed for publication."
324
+ msgstr ""
325
+
326
+ #: app/controllers/versions_controller.rb:183
327
+ #, fuzzy
328
+ msgid "Redaction published."
329
+ msgstr "<img src='/images/wand.png' alt='publish'/>"
330
+
331
+ #: app/controllers/relations_controller.rb:67
332
+ #, fuzzy
333
+ msgid "Relation was successfully created."
334
+ msgstr "Informations successfully updated."
335
+
336
+ #: app/controllers/relations_controller.rb:84
337
+ #, fuzzy
338
+ msgid "Relation was successfully updated."
339
+ msgstr "Informations successfully updated."
340
+
341
+ #: app/controllers/versions_controller.rb:202
342
+ msgid "Rolled back to redaction."
343
+ msgstr ""
344
+
345
+ #: lib/gettext_strings.rb:127
346
+ msgid "Sat"
347
+ msgstr "sab."
348
+
349
+ #: lib/gettext_strings.rb:114
350
+ msgid "Saturday"
351
+ msgstr "sabato"
352
+
353
+ #: lib/gettext_strings.rb:151
354
+ msgid "Sep"
355
+ msgstr "sett."
356
+
357
+ #: lib/gettext_strings.rb:138
358
+ msgid "September"
359
+ msgstr "settembre"
360
+
361
+ #: app/controllers/sites_controller.rb:36
362
+ #, fuzzy
363
+ msgid "Site was successfully updated."
364
+ msgstr "Le mot de passe a été modifié avec succès."
365
+
366
+ #: lib/gettext_strings.rb:128
367
+ msgid "Sun"
368
+ msgstr "dom."
369
+
370
+ #: lib/gettext_strings.rb:115
371
+ msgid "Sunday"
372
+ msgstr "domenica"
373
+
374
+ #: app/views/versions/_list.rhtml:4
375
+ msgid "This node contains sub-nodes: it cannot be destroyed."
376
+ msgstr ""
377
+
378
+ #: lib/gettext_strings.rb:125
379
+ msgid "Thu"
380
+ msgstr "giov."
381
+
382
+ #: lib/gettext_strings.rb:112
383
+ msgid "Thursday"
384
+ msgstr "giovedì"
385
+
386
+ #: lib/gettext_strings.rb:123
387
+ msgid "Tue"
388
+ msgstr "mart."
389
+
390
+ #: lib/gettext_strings.rb:110
391
+ msgid "Tuesday"
392
+ msgstr "martedì"
393
+
394
+ #: app/controllers/documents_controller.rb:37
395
+ msgid "Upload failed."
396
+ msgstr ""
397
+
398
+ #: app/controllers/virtual_classes_controller.rb:54
399
+ msgid "Upload failure: no definitions."
400
+ msgstr ""
401
+
402
+ #: app/controllers/documents_controller.rb:46
403
+ msgid "Upload succeeded."
404
+ msgstr ""
405
+
406
+ #: lib/gettext_strings.rb:156
407
+ msgid "User name:"
408
+ msgstr ""
409
+
410
+ #: app/controllers/versions_controller.rb:60
411
+ msgid "Version changed back to redaction."
412
+ msgstr ""
413
+
414
+ #: app/controllers/versions_controller.rb:230
415
+ msgid "Version destroyed."
416
+ msgstr ""
417
+
418
+ #: app/controllers/virtual_classes_controller.rb:146
419
+ #, fuzzy
420
+ msgid "VirtualClass was successfully created."
421
+ msgstr "Informations successfully updated."
422
+
423
+ #: app/controllers/virtual_classes_controller.rb:161
424
+ #, fuzzy
425
+ msgid "VirtualClass was successfully updated."
426
+ msgstr "Le mot de passe a été modifié avec succès."
427
+
428
+ #: lib/gettext_strings.rb:124
429
+ msgid "Wed"
430
+ msgstr "merc."
431
+
432
+ #: lib/gettext_strings.rb:111
433
+ msgid "Wednesday"
434
+ msgstr "mercoledì"
435
+
436
+ #: lib/zena/parser/zazen_rules.rb:113
437
+ msgid "[documents]"
438
+ msgstr ""
439
+
440
+ #: lib/zena/parser/zazen_rules.rb:98
441
+ msgid "[gallery]"
442
+ msgstr ""
443
+
444
+ #: lib/zena/use/display.rb:653
445
+ msgid "a Zen garden"
446
+ msgstr ""
447
+
448
+ #: app/views/acls/show.html.erb:1
449
+ #: app/views/acls/index.rhtml:1
450
+ msgid "access controls"
451
+ msgstr ""
452
+
453
+ #: app/views/acls/_form.rhtml:23
454
+ msgid "acl_action_help"
455
+ msgstr "Action on which this acl will be used."
456
+
457
+ #: app/views/acls/_form.rhtml:51
458
+ msgid "acl_exec_group_help"
459
+ msgstr "Group added to the visitor during request execution and rendering (if request validates)."
460
+
461
+ #: app/views/acls/_form.rhtml:55
462
+ msgid "acl_exec_skin_help"
463
+ msgstr "Force a given rendering skin."
464
+
465
+ #: app/views/acls/_form.rhtml:39
466
+ msgid "acl_format_help"
467
+ msgstr "Format (html,xml,...) for which this acl can be used ('*' = any)."
468
+
469
+ #: app/views/acls/_form.rhtml:19
470
+ msgid "acl_group_help"
471
+ msgstr "Group of users for which this acl can apply."
472
+
473
+ #: app/views/acls/_form.rhtml:35
474
+ msgid "acl_mode_help"
475
+ msgstr "Mode for which this acl can be used ('*' = any, '' = no mode)."
476
+
477
+ #: app/views/acls/_form.rhtml:27
478
+ msgid "acl_priority_help"
479
+ msgstr "Acl with highest priority is tested first."
480
+
481
+ #: app/views/acls/_form.rhtml:47
482
+ msgid "acl_query_help"
483
+ msgstr "SQLiss query to fetch all the nodes for which this acl authorizes access."
484
+
485
+ #: lib/zena/use/display.rb:282
486
+ msgid "acls"
487
+ msgstr "acls"
488
+
489
+ #: app/views/sites/_form.erb:32
490
+ #: app/views/acls/_form.rhtml:23
491
+ #: app/views/acls/index.rhtml:7
492
+ #, fuzzy
493
+ msgid "action"
494
+ msgstr "icon"
495
+
496
+ #: lib/gettext_strings.rb:170
497
+ msgid "address"
498
+ msgstr ""
499
+
500
+ #: lib/gettext_strings.rb:68
501
+ msgid "admin"
502
+ msgstr ""
503
+
504
+ #: app/views/virtual_classes/import_prepare.html.erb:11
505
+ msgid "apply"
506
+ msgstr ""
507
+
508
+ #: lib/gettext_strings.rb:17
509
+ msgid "attach_img"
510
+ msgstr "<img src='/images/attach_window.png' title='attach window'/>"
511
+
512
+ #: app/views/comments/_form.rhtml:14
513
+ msgid "author"
514
+ msgstr ""
515
+
516
+ #: app/views/virtual_classes/_form.erb:43
517
+ #, fuzzy
518
+ msgid "auto create discussion"
519
+ msgstr "<img src='/images/comments_add.png' alt='add a discussion'/>"
520
+
521
+ #: app/views/virtual_classes/index.erb:20
522
+ msgid "back"
523
+ msgstr ""
524
+
525
+ #: app/views/versions/edit.rhtml:32
526
+ msgid "bak"
527
+ msgstr ""
528
+
529
+ #: lib/gettext_strings.rb:177
530
+ msgid "birthday"
531
+ msgstr ""
532
+
533
+ #: app/views/acls/_add.rhtml:2
534
+ msgid "btn_acl_add"
535
+ msgstr "<img src='/images/key_add.png' alt='add an access'/>"
536
+
537
+ #: lib/gettext_strings.rb:26
538
+ msgid "btn_add"
539
+ msgstr "<img src='/images/add.png' alt='add'/>"
540
+
541
+ #: app/views/comments/_add.rhtml:2
542
+ #: lib/gettext_strings.rb:27
543
+ msgid "btn_add_comment"
544
+ msgstr "<img src='/images/comment_add.png' alt='add a comment'/>"
545
+
546
+ #: app/views/discussions/_add.rhtml:2
547
+ msgid "btn_add_discussion"
548
+ msgstr "<img src='/images/comments_add.png' alt='add a discussion'/>"
549
+
550
+ #: lib/gettext_strings.rb:25
551
+ msgid "btn_add_doc"
552
+ msgstr "<img src='/images/picture_add.png' alt='add documents'/>"
553
+
554
+ #: app/views/links/_add.rhtml:2
555
+ msgid "btn_add_link"
556
+ msgstr "<img src='/images/tag_blue_add.png' alt='add a link'/>"
557
+
558
+ #: app/views/comments/_bin.rhtml:4
559
+ msgid "btn_bomb"
560
+ msgstr "<img src='/images/bomb.png' alt='empty bin'/>"
561
+
562
+ #: app/views/columns/_add.html.erb:2
563
+ msgid "btn_column_add"
564
+ msgstr "<img src='/images/textfield_add.png' alt='add a property'/>"
565
+
566
+ #: lib/gettext_strings.rb:82
567
+ msgid "btn_destroy"
568
+ msgstr "<img src='/images/bomb.png' alt='destroy'/>"
569
+
570
+ #: lib/gettext_strings.rb:87
571
+ msgid "btn_destroy_version"
572
+ msgstr "<img src='/images/bomb.png' alt='destroy'/>"
573
+
574
+ #: lib/gettext_strings.rb:85
575
+ msgid "btn_drive"
576
+ msgstr "<img src='/images/wrench.png' alt='drive'/>"
577
+
578
+ #: lib/gettext_strings.rb:84
579
+ msgid "btn_edit"
580
+ msgstr "<img src='/images/page_edit.png' alt='edit'/>"
581
+
582
+ #: app/views/groups/_add.rhtml:2
583
+ msgid "btn_group_add"
584
+ msgstr "<img src='/images/group_add.png' alt='add a group'/>"
585
+
586
+ #: app/views/iformats/_add.rhtml:2
587
+ msgid "btn_iformat_add"
588
+ msgstr "<img src='/images/photo_add.png' alt='add an image format'/>"
589
+
590
+ #: lib/gettext_strings.rb:83
591
+ msgid "btn_propose"
592
+ msgstr "<img src='/images/picture_empty.png' alt='propose'/>"
593
+
594
+ #: app/views/comments/_li.rhtml:4
595
+ msgid "btn_publish"
596
+ msgstr "<img src='/images/wand.png' alt='publish'/>"
597
+
598
+ #: lib/gettext_strings.rb:88
599
+ msgid "btn_redit"
600
+ msgstr "<img src='/images/page_edit.png' alt='edit'/>"
601
+
602
+ #: lib/gettext_strings.rb:86
603
+ msgid "btn_refuse"
604
+ msgstr "<img src='/images/delete.png' alt='refuse'/>"
605
+
606
+ #: app/views/relations/_add.erb:2
607
+ #: lib/gettext_strings.rb:39
608
+ msgid "btn_relation_add"
609
+ msgstr "<img src='/images/link_add.png' alt='add a role'/>"
610
+
611
+ #: app/views/comments/_li.rhtml:3
612
+ #: lib/zena/use/action.rb:145
613
+ msgid "btn_remove"
614
+ msgstr "<img src='/images/delete.png' alt='delete'/>"
615
+
616
+ #: lib/gettext_strings.rb:35
617
+ msgid "btn_site_add"
618
+ msgstr "<img src='/images/world_add.png' alt='add a site'/>"
619
+
620
+ #: app/views/links/_li.rhtml:6
621
+ #: lib/zena/use/ajax.rb:418
622
+ msgid "btn_tiny_del"
623
+ msgstr "<img src='/images/bullet_delete.png' alt='remove'/>"
624
+
625
+ #: lib/zena/use/action.rb:140
626
+ msgid "btn_title_close_discussion"
627
+ msgstr "Close the discussion (disable comments)."
628
+
629
+ #: lib/zena/use/action.rb:145
630
+ msgid "btn_title_destroy_discussion"
631
+ msgstr "Delete the discussion (with all comments)."
632
+
633
+ #: lib/gettext_strings.rb:29
634
+ msgid "btn_title_drive"
635
+ msgstr "Open the drive window to change the location, links, etc."
636
+
637
+ #: lib/gettext_strings.rb:28
638
+ msgid "btn_title_edit"
639
+ msgstr "Open the edition window to edit the node."
640
+
641
+ #: lib/zena/use/action.rb:142
642
+ msgid "btn_title_open_discussion"
643
+ msgstr "Open the edition window to edit the node"
644
+
645
+ #: lib/gettext_strings.rb:81
646
+ msgid "btn_unpublish"
647
+ msgstr "<img src='/images/delete.png' alt='unpublish'/>"
648
+
649
+ #: app/views/users/_add.rhtml:2
650
+ msgid "btn_user_add"
651
+ msgstr "<img src='/images/user_add.png' alt='add a user'/>"
652
+
653
+ #: lib/zena/use/action.rb:137
654
+ msgid "btn_view"
655
+ msgstr "<img src='/images/eye.png' alt='view'/>"
656
+
657
+ #: app/views/virtual_classes/_add.erb:2
658
+ #: lib/gettext_strings.rb:42
659
+ msgid "btn_virtual_class_add"
660
+ msgstr "<img src='/images/brick_add.png' alt='add a class'/>"
661
+
662
+ #: app/views/columns/_form.html.erb:3
663
+ #: app/views/columns/_form.html.erb:5
664
+ #: app/views/relations/_form.erb:3
665
+ #: app/views/relations/_form.erb:5
666
+ #: app/views/sites/_form.erb:3
667
+ #: app/views/sites/_form.erb:5
668
+ #: app/views/virtual_classes/_form.erb:3
669
+ #: app/views/virtual_classes/_form.erb:5
670
+ #: app/views/acls/_form.rhtml:3
671
+ #: app/views/acls/_form.rhtml:5
672
+ #: app/views/comments/_form.rhtml:8
673
+ #: app/views/comments/_form.rhtml:10
674
+ #: app/views/comments/_form.rhtml:12
675
+ #: app/views/discussions/_form.rhtml:8
676
+ #: app/views/groups/_form.rhtml:3
677
+ #: app/views/groups/_form.rhtml:5
678
+ #: app/views/iformats/_form.rhtml:3
679
+ #: app/views/iformats/_form.rhtml:5
680
+ #: app/views/links/_form.rhtml:12
681
+ #: app/views/links/_form.rhtml:14
682
+ #: app/views/nodes/_import_results.rhtml:3
683
+ #: app/views/nodes/_results.rhtml:7
684
+ #: app/views/users/_form.rhtml:3
685
+ #: app/views/users/_form.rhtml:5
686
+ #: lib/zena/use/forms.rb:199
687
+ msgid "btn_x"
688
+ msgstr "<img src='/images/cross.png' alt='cancel'/>"
689
+
690
+ #: app/views/users/preferences.html.erb:10
691
+ #: app/views/users/preferences.html.erb:30
692
+ #: app/views/virtual_classes/import_prepare.html.erb:10
693
+ #: app/views/virtual_classes/index.erb:30
694
+ #: app/views/users/_form.rhtml:20
695
+ msgid "cancel"
696
+ msgstr ""
697
+
698
+ #: app/models/relation_proxy.rb:399
699
+ msgid "cannot remove link"
700
+ msgstr ""
701
+
702
+ #: app/models/relation_proxy.rb:282
703
+ msgid "cannot update multiple targets"
704
+ msgstr ""
705
+
706
+ #: app/views/nodes/_groups.rhtml:19
707
+ #: app/views/nodes/_parent.rhtml:11
708
+ #: lib/zena/use/upload.rb:167
709
+ msgid "change"
710
+ msgstr ""
711
+
712
+ #: app/views/users/preferences.html.erb:27
713
+ #: app/views/users/_form.rhtml:19
714
+ msgid "change password"
715
+ msgstr ""
716
+
717
+ #: app/views/users/preferences.html.erb:7
718
+ msgid "change personal information"
719
+ msgstr ""
720
+
721
+ #: app/views/relations/_form.erb:17
722
+ #: app/views/nodes/_parent.rhtml:7
723
+ #, fuzzy
724
+ msgid "class"
725
+ msgstr "<img src='/images/lock.png' alt='closed'/>"
726
+
727
+ #: app/views/templates/document_create_tabs/_import.rhtml:7
728
+ msgid "class of first element"
729
+ msgstr ""
730
+
731
+ #: app/views/templates/document_create_tabs/_template.rhtml:10
732
+ #: app/views/templates/edit_tabs/_template.rhtml:7
733
+ msgid "class scope"
734
+ msgstr ""
735
+
736
+ #: app/views/virtual_classes/index.erb:1
737
+ #: lib/zena/use/display.rb:270
738
+ msgid "classes"
739
+ msgstr ""
740
+
741
+ #: app/views/virtual_classes/import_prepare.html.erb:1
742
+ #, fuzzy
743
+ msgid "classes import"
744
+ msgstr "import"
745
+
746
+ #: lib/gettext_strings.rb:180
747
+ msgid "clear_cache"
748
+ msgstr ""
749
+
750
+ #: lib/gettext_strings.rb:181
751
+ msgid "clear_cache done."
752
+ msgstr "Cache cleared."
753
+
754
+ #: app/views/documents/show.rhtml:15
755
+ #, fuzzy
756
+ msgid "close"
757
+ msgstr "<img src='/images/lock.png' alt='closed'/>"
758
+
759
+ #: lib/gettext_strings.rb:63
760
+ #, fuzzy
761
+ msgid "closed"
762
+ msgstr "<img src='/images/lock.png' alt='closed'/>"
763
+
764
+ #: app/views/columns/_li.html.erb:2
765
+ msgid "column_error_img"
766
+ msgstr "<img src='/images/textfield_error.png' alt='property error'/>"
767
+
768
+ #: app/views/links/_form.rhtml:30
769
+ msgid "comment"
770
+ msgstr ""
771
+
772
+ #: app/views/discussions/_li.rhtml:6
773
+ msgid "comment(s)"
774
+ msgstr ""
775
+
776
+ #: lib/gettext_strings.rb:70
777
+ msgid "commentator"
778
+ msgstr ""
779
+
780
+ #: app/views/comments/index.rhtml:1
781
+ #: lib/zena/use/display.rb:258
782
+ msgid "comments"
783
+ msgstr ""
784
+
785
+ #: app/views/comments/_list.rhtml:9
786
+ msgid "comments closed"
787
+ msgstr ""
788
+
789
+ #: lib/gettext_strings.rb:15
790
+ #, fuzzy
791
+ msgid "contact_tab"
792
+ msgstr "contact"
793
+
794
+ #: app/views/templates/document_create_tabs/_text_document.rhtml:5
795
+ #: app/views/templates/edit_tabs/_document.rhtml:3
796
+ #: app/views/templates/edit_tabs/_textdocument.rhtml:9
797
+ msgid "content type"
798
+ msgstr ""
799
+
800
+ #: app/views/documents/_crop.rhtml:3
801
+ msgid "convert"
802
+ msgstr ""
803
+
804
+ #: app/models/node.rb:1535
805
+ #: app/models/node.rb:1547
806
+ #: app/models/relation_proxy.rb:185
807
+ #: app/models/relation_proxy.rb:209
808
+ #, fuzzy
809
+ msgid "could not be found"
810
+ msgstr "Node not found."
811
+
812
+ #: lib/zena/use/grid.rb:70
813
+ #: lib/zena/use/grid.rb:98
814
+ msgid "could not save value (bad attribute)"
815
+ msgstr ""
816
+
817
+ #: app/controllers/nodes_controller.rb:368
818
+ msgid "could not update"
819
+ msgstr "The node could not be updated."
820
+
821
+ #: app/controllers/users_controller.rb:117
822
+ msgid "could not update user"
823
+ msgstr "User could not be updated."
824
+
825
+ #: lib/gettext_strings.rb:173
826
+ msgid "country"
827
+ msgstr ""
828
+
829
+ #: app/views/discussions/_form.rhtml:18
830
+ msgid "create"
831
+ msgstr ""
832
+
833
+ #: app/views/virtual_classes/_form.erb:42
834
+ #, fuzzy
835
+ msgid "create group"
836
+ msgstr "<img src='/images/group.png' alt='group'/>"
837
+
838
+ #: app/views/templates/edit_tabs/_image.rhtml:10
839
+ msgid "crop/resize"
840
+ msgstr ""
841
+
842
+ #: app/views/nodes/_groups.rhtml:3
843
+ msgid "custom"
844
+ msgstr ""
845
+
846
+ #: app/views/nodes/_parent.rhtml:9
847
+ msgid "custom base url"
848
+ msgstr ""
849
+
850
+ #: lib/gettext_strings.rb:23
851
+ msgid "custom_tab"
852
+ msgstr "++"
853
+
854
+ #: app/views/data_entries/index.html.erb:1
855
+ #: app/views/data_entries/show.html.erb:1
856
+ #, fuzzy
857
+ msgid "data entries"
858
+ msgstr "%Y-%m-%d %H:%M"
859
+
860
+ #: lib/gettext_strings.rb:117
861
+ #: lib/zena/use/dates.rb:16
862
+ #: lib/zena/use/dates.rb:130
863
+ #: lib/zena/use/dates.rb:183
864
+ #: lib/zena/use/dates.rb:194
865
+ msgid "datetime"
866
+ msgstr "%Y-%m-%d %H:%M"
867
+
868
+ #: lib/gettext_strings.rb:108
869
+ msgid "de"
870
+ msgstr "german"
871
+
872
+ #: app/views/iformats/_li.rhtml:5
873
+ msgid "default_iformat_img"
874
+ msgstr "<img src='/images/photo_grey.png' alt='image format'/>"
875
+
876
+ #: lib/gettext_strings.rb:73
877
+ msgid "deleted"
878
+ msgstr ""
879
+
880
+ #: app/views/acls/_form.rhtml:43
881
+ msgid "description"
882
+ msgstr ""
883
+
884
+ #: app/views/columns/_form.html.erb:33
885
+ #: app/views/relations/_form.erb:44
886
+ #: app/views/virtual_classes/_form.erb:52
887
+ #: app/views/acls/_form.rhtml:68
888
+ #: app/views/groups/_form.rhtml:41
889
+ #: app/views/iformats/_form.rhtml:27
890
+ #, fuzzy
891
+ msgid "destroy"
892
+ msgstr "<img src='/images/bomb.png' alt='destroy'/>"
893
+
894
+ #: app/views/acls/_form.rhtml:68
895
+ msgid "destroy acl"
896
+ msgstr "destroy acl"
897
+
898
+ #: app/views/groups/_form.rhtml:41
899
+ #, fuzzy
900
+ msgid "destroy group"
901
+ msgstr "<img src='/images/group.png' alt='group'/>"
902
+
903
+ #: app/views/iformats/_form.rhtml:27
904
+ msgid "destroy image format"
905
+ msgstr ""
906
+
907
+ #: app/views/columns/_form.html.erb:33
908
+ #, fuzzy
909
+ msgid "destroy property"
910
+ msgstr "<img src='/images/group.png' alt='group'/>"
911
+
912
+ #: app/views/relations/_form.erb:44
913
+ msgid "destroy relation (with all links)"
914
+ msgstr ""
915
+
916
+ #: app/views/virtual_classes/_form.erb:52
917
+ #, fuzzy
918
+ msgid "destroy virtual class"
919
+ msgstr "<img src='/images/brick.png' alt='class'/>"
920
+
921
+ #: lib/gettext_strings.rb:18
922
+ msgid "dettach_img"
923
+ msgstr "<img src='/images/dettach_window.png' title='dettach window'/>"
924
+
925
+ #: app/views/virtual_classes/index.erb:31
926
+ #, fuzzy
927
+ msgid "diff"
928
+ msgstr "<img src='/images/layers.png' alt='view differences'/>"
929
+
930
+ #: app/views/virtual_classes/_li.erb:23
931
+ #, fuzzy
932
+ msgid "discussion"
933
+ msgstr "<img src='/images/comments_add.png' alt='add a discussion'/>"
934
+
935
+ #: app/views/templates/drive_tabs/_links.rhtml:7
936
+ msgid "discussions"
937
+ msgstr ""
938
+
939
+ #: lib/gettext_strings.rb:14
940
+ msgid "document_tab"
941
+ msgstr "doc"
942
+
943
+ #: lib/gettext_strings.rb:6
944
+ msgid "drive_tab"
945
+ msgstr "drive"
946
+
947
+ #: lib/zena/use/urls.rb:834
948
+ msgid "edit"
949
+ msgstr ""
950
+
951
+ #: app/views/relations/edit.erb:1
952
+ #, fuzzy
953
+ msgid "edit relation"
954
+ msgstr "<img src='/images/target.png' alt='role'/>"
955
+
956
+ #: app/views/sites/edit.erb:1
957
+ #, fuzzy
958
+ msgid "edit site"
959
+ msgstr "%Y-%m-%d %H:%M"
960
+
961
+ #: lib/gettext_strings.rb:176
962
+ msgid "email"
963
+ msgstr ""
964
+
965
+ #: lib/gettext_strings.rb:106
966
+ msgid "en"
967
+ msgstr "english"
968
+
969
+ #: app/views/acls/_form.rhtml:51
970
+ #: app/views/acls/index.rhtml:12
971
+ #, fuzzy
972
+ msgid "exec group"
973
+ msgstr "<img src='/images/group.png' alt='group'/>"
974
+
975
+ #: app/views/acls/_form.rhtml:55
976
+ #: app/views/acls/index.rhtml:13
977
+ msgid "exec skin"
978
+ msgstr ""
979
+
980
+ #: app/views/virtual_classes/index.erb:25
981
+ #, fuzzy
982
+ msgid "export"
983
+ msgstr "import"
984
+
985
+ #: app/views/templates/edit_tabs/_textdocument.rhtml:12
986
+ msgid "extension"
987
+ msgstr ""
988
+
989
+ #: lib/gettext_strings.rb:20
990
+ msgid "file_tab"
991
+ msgstr "file"
992
+
993
+ #: lib/gettext_strings.rb:168
994
+ msgid "first_name"
995
+ msgstr "first name"
996
+
997
+ #: app/views/acls/_form.rhtml:39
998
+ #: app/views/acls/index.rhtml:10
999
+ #: app/views/templates/document_create_tabs/_template.rhtml:16
1000
+ #: app/views/templates/edit_tabs/_template.rhtml:1
1001
+ msgid "format"
1002
+ msgstr ""
1003
+
1004
+ #: app/views/relations/_form.erb:16
1005
+ msgid "forward"
1006
+ msgstr ""
1007
+
1008
+ #: lib/gettext_strings.rb:107
1009
+ msgid "fr"
1010
+ msgstr "french"
1011
+
1012
+ #: lib/zena/use/calendar.rb:127
1013
+ #, fuzzy
1014
+ msgid "free"
1015
+ msgstr "french"
1016
+
1017
+ #: lib/zena/use/i18n.rb:87
1018
+ msgid "full_date"
1019
+ msgstr "%A, %B %d %Y"
1020
+
1021
+ #: app/views/iformats/_li.rhtml:3
1022
+ msgid "full_iformat_img"
1023
+ msgstr "<img src='/images/photo_blue.png' alt='full image format'/>"
1024
+
1025
+ #: app/views/iformats/_form.rhtml:20
1026
+ msgid "gravity"
1027
+ msgstr ""
1028
+
1029
+ #: app/views/groups/edit.html.erb:1
1030
+ #: app/views/groups/show.html.erb:1
1031
+ #: app/views/acls/_form.rhtml:19
1032
+ #: app/views/acls/index.rhtml:6
1033
+ msgid "group"
1034
+ msgstr ""
1035
+
1036
+ #: app/views/groups/index.rhtml:1
1037
+ #: app/views/users/_form.rhtml:29
1038
+ #: lib/zena/use/display.rb:264
1039
+ msgid "groups"
1040
+ msgstr ""
1041
+
1042
+ #: app/models/column.rb:97
1043
+ msgid "has already been taken in %s"
1044
+ msgstr ""
1045
+
1046
+ #: app/views/relations/_form.erb:24
1047
+ #: app/views/relations/_form.erb:28
1048
+ msgid "has_many"
1049
+ msgstr ""
1050
+
1051
+ #: app/views/relations/_form.erb:23
1052
+ #: app/views/relations/_form.erb:27
1053
+ msgid "has_one"
1054
+ msgstr ""
1055
+
1056
+ #: app/views/iformats/_form.rhtml:19
1057
+ #, fuzzy
1058
+ msgid "height"
1059
+ msgstr "<img src='/images/lightbulb.png' alt='hot'/>"
1060
+
1061
+ #: app/views/templates/edit_tabs/_help.rhtml:6
1062
+ msgid "help not found"
1063
+ msgstr "Help node not found. This node should be named 'help'. In the meantime, you can visit the official website: \"zena\":http://zenadmin.org."
1064
+
1065
+ #: lib/gettext_strings.rb:4
1066
+ msgid "help_tab"
1067
+ msgstr "help"
1068
+
1069
+ #: app/views/sites/_form.erb:16
1070
+ msgid "host"
1071
+ msgstr ""
1072
+
1073
+ #: app/views/relations/_form.erb:35
1074
+ #: app/views/virtual_classes/_form.erb:45
1075
+ msgid "icon"
1076
+ msgstr "icon"
1077
+
1078
+ #: app/views/virtual_classes/_form.erb:37
1079
+ #, fuzzy
1080
+ msgid "idx_class"
1081
+ msgstr "<img src='/images/lock.png' alt='closed'/>"
1082
+
1083
+ #: app/views/virtual_classes/_form.erb:39
1084
+ msgid "idx_reverse_scope"
1085
+ msgstr ""
1086
+
1087
+ #: app/views/virtual_classes/_form.erb:38
1088
+ msgid "idx_scope"
1089
+ msgstr ""
1090
+
1091
+ #: app/views/iformats/edit.html.erb:1
1092
+ #: app/views/iformats/show.html.erb:1
1093
+ msgid "iformat"
1094
+ msgstr ""
1095
+
1096
+ #: app/views/iformats/_li.rhtml:5
1097
+ msgid "iformat_img"
1098
+ msgstr "<img src='/images/photo.png' alt='image format'/>"
1099
+
1100
+ #: app/views/templates/edit_tabs/_image.rhtml:6
1101
+ msgid "image"
1102
+ msgstr ""
1103
+
1104
+ #: app/views/iformats/index.rhtml:1
1105
+ #: lib/zena/use/display.rb:276
1106
+ msgid "image formats"
1107
+ msgstr ""
1108
+
1109
+ #: lib/gettext_strings.rb:13
1110
+ msgid "image_tab"
1111
+ msgstr "image"
1112
+
1113
+ #: app/views/acls/_li.rhtml:2
1114
+ msgid "img_acl"
1115
+ msgstr "<img src='/images/key.png' alt='access control list'/>"
1116
+
1117
+ #: lib/zena/use/action.rb:142
1118
+ msgid "img_closed"
1119
+ msgstr "<img src='/images/lock.png' alt='closed'/>"
1120
+
1121
+ #: lib/gettext_strings.rb:58
1122
+ msgid "img_comments"
1123
+ msgstr "<img src='/images/comments.png' alt='comments'/>"
1124
+
1125
+ #: lib/gettext_strings.rb:59
1126
+ msgid "img_comments_inside"
1127
+ msgstr "<img src='/images/comment.png' alt='private comments'/>"
1128
+
1129
+ #: lib/gettext_strings.rb:50
1130
+ msgid "img_custom_inherit"
1131
+ msgstr "<img src='/images/cog.png' alt='custom rights'/>"
1132
+
1133
+ #: lib/gettext_strings.rb:189
1134
+ msgid "img_datetime"
1135
+ msgstr "<img src='/images/date.png' alt='datetime property'/>"
1136
+
1137
+ #: lib/gettext_strings.rb:188
1138
+ msgid "img_float"
1139
+ msgstr "<img src='/images/chart_curve.png' alt='float property'/>"
1140
+
1141
+ #: lib/gettext_strings.rb:55
1142
+ msgid "img_group"
1143
+ msgstr "<img src='/images/group.png' alt='group'/>"
1144
+
1145
+ #: lib/gettext_strings.rb:56
1146
+ msgid "img_group_pub"
1147
+ msgstr "<img src='/images/group_pub.png' alt='public group'/>"
1148
+
1149
+ #: lib/gettext_strings.rb:57
1150
+ msgid "img_group_site"
1151
+ msgstr "<img src='/images/group_site.png' alt='site group'/>"
1152
+
1153
+ #: app/views/relations/_li.erb:8
1154
+ #: app/views/relations/_li.erb:18
1155
+ msgid "img_has_many"
1156
+ msgstr "<img src='/images/page_white_stack.png' alt='has many'/>"
1157
+
1158
+ #: app/views/relations/_li.erb:8
1159
+ #: app/views/relations/_li.erb:18
1160
+ msgid "img_has_one"
1161
+ msgstr "<img src='/images/page_white.png' alt='has one'/>"
1162
+
1163
+ #: lib/gettext_strings.rb:187
1164
+ msgid "img_integer"
1165
+ msgstr "<img src='/images/chart_line.png' alt='integer property'/>"
1166
+
1167
+ #: app/views/links/_li.rhtml:2
1168
+ msgid "img_link"
1169
+ msgstr "<img src='/images/tag_blue.png' alt='link'/>"
1170
+
1171
+ #: lib/gettext_strings.rb:66
1172
+ #: lib/zena/use/i18n.rb:204
1173
+ msgid "img_next_page"
1174
+ msgstr "<img src='/images/control_fastforward.png' alt='next page' title='next page'/>"
1175
+
1176
+ #: lib/zena/use/action.rb:140
1177
+ msgid "img_open"
1178
+ msgstr "<img src='/images/lock_open.png' alt='open'/>"
1179
+
1180
+ #: lib/gettext_strings.rb:65
1181
+ #: lib/zena/use/i18n.rb:204
1182
+ msgid "img_prev_page"
1183
+ msgstr "<img src='/images/control_rewind.png' alt='previous page' title='previous page'/>"
1184
+
1185
+ #: lib/gettext_strings.rb:49
1186
+ msgid "img_private"
1187
+ msgstr "<img src='/images/lock.png' alt='private'/>"
1188
+
1189
+ #: lib/gettext_strings.rb:48
1190
+ #: lib/zena/use/html_tags.rb:112
1191
+ msgid "img_public"
1192
+ msgstr "<img src='/images/user_pub.png' alt='public'/>"
1193
+
1194
+ #: app/views/relations/_li.erb:2
1195
+ msgid "img_relation"
1196
+ msgstr "<img src='/images/link.png' alt='relation'/>"
1197
+
1198
+ #: lib/gettext_strings.rb:186
1199
+ msgid "img_string"
1200
+ msgstr "<img src='/images/text_align_left.png' alt='string property'/>"
1201
+
1202
+ #: lib/gettext_strings.rb:51
1203
+ msgid "img_user"
1204
+ msgstr "<img src='/images/user.png' alt='user'/>"
1205
+
1206
+ #: lib/gettext_strings.rb:52
1207
+ msgid "img_user_admin"
1208
+ msgstr "<img src='/images/user_admin.png' alt='administrator'/>"
1209
+
1210
+ #: lib/gettext_strings.rb:54
1211
+ msgid "img_user_pub"
1212
+ msgstr "<img src='/images/user_pub.png' alt='anonymous user'/>"
1213
+
1214
+ #: lib/gettext_strings.rb:53
1215
+ msgid "img_user_su"
1216
+ msgstr "<img src='/images/user_su.png' alt='super user'/>"
1217
+
1218
+ #: app/views/virtual_classes/index.erb:13
1219
+ #: app/views/virtual_classes/index.erb:26
1220
+ #, fuzzy
1221
+ msgid "import"
1222
+ msgstr "import"
1223
+
1224
+ #: app/views/virtual_classes/import_prepare.html.erb:5
1225
+ msgid "import definitions"
1226
+ msgstr ""
1227
+
1228
+ #: app/views/nodes/_import_results.rhtml:2
1229
+ msgid "import result"
1230
+ msgstr ""
1231
+
1232
+ #: lib/gettext_strings.rb:11
1233
+ msgid "import_tab"
1234
+ msgstr "import"
1235
+
1236
+ #: lib/zena/use/dates.rb:91
1237
+ msgid "in %{d} days"
1238
+ msgstr ""
1239
+
1240
+ #: lib/zena/use/dates.rb:87
1241
+ msgid "in %{h} hours"
1242
+ msgstr ""
1243
+
1244
+ #: lib/zena/use/dates.rb:83
1245
+ msgid "in %{m} minutes"
1246
+ msgstr ""
1247
+
1248
+ #: lib/zena/use/dates.rb:85
1249
+ msgid "in 1 hour"
1250
+ msgstr ""
1251
+
1252
+ #: lib/zena/use/dates.rb:81
1253
+ msgid "in 1 minute"
1254
+ msgstr ""
1255
+
1256
+ #: app/views/columns/_form.html.erb:20
1257
+ msgid "index"
1258
+ msgstr ""
1259
+
1260
+ #: app/controllers/users_controller.rb:115
1261
+ msgid "information successfully updated"
1262
+ msgstr "Informations successfully updated."
1263
+
1264
+ #: app/views/nodes/_groups.rhtml:3
1265
+ msgid "inherit"
1266
+ msgstr ""
1267
+
1268
+ #: app/views/discussions/_form.rhtml:12
1269
+ #: lib/gettext_strings.rb:60
1270
+ msgid "inside"
1271
+ msgstr ""
1272
+
1273
+ #: app/models/column.rb:100
1274
+ msgid "invalid (cannot end with _id or _ids)"
1275
+ msgstr ""
1276
+
1277
+ #: app/models/column.rb:104
1278
+ msgid "invalid (method defined in %s)"
1279
+ msgstr ""
1280
+
1281
+ #: app/models/relation_proxy.rb:384
1282
+ #, fuzzy
1283
+ msgid "invalid target"
1284
+ msgstr " validate "
1285
+
1286
+ #: app/views/relations/_form.erb:16
1287
+ msgid "inverse"
1288
+ msgstr ""
1289
+
1290
+ #: app/views/virtual_classes/_form.erb:28
1291
+ msgid "kpath"
1292
+ msgstr ""
1293
+
1294
+ #: app/views/users/preferences.html.erb:17
1295
+ #: app/views/templates/edit_tabs/_title.rhtml:7
1296
+ #: app/views/users/_form.rhtml:26
1297
+ msgid "language"
1298
+ msgstr ""
1299
+
1300
+ #: lib/gettext_strings.rb:169
1301
+ msgid "last_name"
1302
+ msgstr "last name"
1303
+
1304
+ #: app/views/templates/drive_tabs/_links.rhtml:1
1305
+ msgid "links"
1306
+ msgstr ""
1307
+
1308
+ #: lib/gettext_strings.rb:7
1309
+ msgid "links_tab"
1310
+ msgstr "relations"
1311
+
1312
+ #: lib/gettext_strings.rb:172
1313
+ msgid "locality"
1314
+ msgstr ""
1315
+
1316
+ #: app/views/users/preferences.html.erb:16
1317
+ #: app/views/users/_form.rhtml:17
1318
+ msgid "login"
1319
+ msgstr ""
1320
+
1321
+ #: lib/zena/use/dates.rb:57
1322
+ #: lib/zena/use/dates.rb:130
1323
+ #: lib/zena/use/i18n.rb:92
1324
+ msgid "long_date"
1325
+ msgstr "%Y-%m-%d"
1326
+
1327
+ #: lib/zena/use/i18n.rb:77
1328
+ msgid "long_time"
1329
+ msgstr "%H:%M:%S"
1330
+
1331
+ #: lib/zena/use/display.rb:655
1332
+ msgid "made with Zena"
1333
+ msgstr ""
1334
+
1335
+ #: app/views/documents/_crop.rhtml:4
1336
+ msgid "max size"
1337
+ msgstr ""
1338
+
1339
+ #: app/models/relation_proxy.rb:278
1340
+ #, fuzzy
1341
+ msgid "missing target"
1342
+ msgstr "tags"
1343
+
1344
+ #: lib/gettext_strings.rb:175
1345
+ msgid "mobile"
1346
+ msgstr ""
1347
+
1348
+ #: app/views/acls/_form.rhtml:35
1349
+ #: app/views/acls/index.rhtml:9
1350
+ #: app/views/nodes/_groups.rhtml:14
1351
+ #: app/views/templates/document_create_tabs/_template.rhtml:13
1352
+ #: app/views/templates/edit_tabs/_template.rhtml:4
1353
+ msgid "mode"
1354
+ msgstr ""
1355
+
1356
+ #: lib/gettext_strings.rb:71
1357
+ #, fuzzy
1358
+ msgid "moderated"
1359
+ msgstr "Node successfully updated."
1360
+
1361
+ #: lib/gettext_strings.rb:46
1362
+ msgid "modified by"
1363
+ msgstr ""
1364
+
1365
+ #: lib/zena/use/display.rb:252
1366
+ msgid "my home"
1367
+ msgstr "management"
1368
+
1369
+ #: app/views/columns/_form.html.erb:19
1370
+ #: app/views/virtual_classes/_form.erb:16
1371
+ #: app/views/acls/_form.rhtml:31
1372
+ #: app/views/acls/index.rhtml:8
1373
+ #: app/views/groups/_form.rhtml:18
1374
+ #: app/views/iformats/_form.rhtml:16
1375
+ #: app/views/templates/document_create_tabs/_template.rhtml:7
1376
+ #: app/views/templates/document_create_tabs/_text_document.rhtml:8
1377
+ msgid "name"
1378
+ msgstr ""
1379
+
1380
+ #: app/controllers/nodes_controller.rb:472
1381
+ msgid "new"
1382
+ msgstr ""
1383
+
1384
+ #: app/views/columns/new.html.erb:1
1385
+ #: app/views/virtual_classes/new.erb:1
1386
+ msgid "new class"
1387
+ msgstr ""
1388
+
1389
+ #: app/views/users/preferences.html.erb:36
1390
+ msgid "new password"
1391
+ msgstr ""
1392
+
1393
+ #: app/views/relations/new.erb:1
1394
+ #, fuzzy
1395
+ msgid "new relation"
1396
+ msgstr "<img src='/images/target.png' alt='role'/>"
1397
+
1398
+ #: lib/gettext_strings.rb:120
1399
+ msgid "news_date"
1400
+ msgstr "%A, %B %d %Y"
1401
+
1402
+ #: app/views/sites/_li.erb:11
1403
+ msgid "no API"
1404
+ msgstr ""
1405
+
1406
+ #: lib/gettext_strings.rb:78
1407
+ #, fuzzy
1408
+ msgid "no result found"
1409
+ msgstr "Node not found."
1410
+
1411
+ #: app/controllers/nodes_controller.rb:472
1412
+ msgid "node not found"
1413
+ msgstr "Node not found."
1414
+
1415
+ #: app/controllers/nodes_controller.rb:366
1416
+ msgid "node updated"
1417
+ msgstr "Node successfully updated."
1418
+
1419
+ #: app/views/users/preferences.html.erb:35
1420
+ msgid "old password"
1421
+ msgstr ""
1422
+
1423
+ #: lib/gettext_strings.rb:62
1424
+ #, fuzzy
1425
+ msgid "open"
1426
+ msgstr "<img src='/images/lock_open.png' alt='open'/>"
1427
+
1428
+ #: app/views/sites/_form.erb:25
1429
+ #: lib/gettext_strings.rb:36
1430
+ msgid "options"
1431
+ msgstr ""
1432
+
1433
+ #: app/views/documents/_crop.rhtml:8
1434
+ #: app/views/templates/edit_tabs/_image.rhtml:11
1435
+ msgid "original"
1436
+ msgstr ""
1437
+
1438
+ #: lib/gettext_strings.rb:45
1439
+ msgid "original by"
1440
+ msgstr ""
1441
+
1442
+ #: app/views/documents/_crop.rhtml:8
1443
+ msgid "original is #X this view"
1444
+ msgstr ""
1445
+
1446
+ #: app/views/discussions/_form.rhtml:11
1447
+ #: lib/gettext_strings.rb:61
1448
+ msgid "outside"
1449
+ msgstr ""
1450
+
1451
+ #: app/views/nodes/_parent.rhtml:6
1452
+ msgid "parent"
1453
+ msgstr ""
1454
+
1455
+ #: app/views/templates/edit_tabs/_textdocument.rhtml:16
1456
+ msgid "parse"
1457
+ msgstr ""
1458
+
1459
+ #: app/views/templates/edit_tabs/_textdocument.rhtml:2
1460
+ #: app/views/templates/edit_tabs/_textdocument.rhtml:15
1461
+ msgid "parse assets"
1462
+ msgstr ""
1463
+
1464
+ #: app/views/templates/edit_tabs/_textdocument.rhtml:6
1465
+ msgid "parse ids to names"
1466
+ msgstr ""
1467
+
1468
+ #: app/views/templates/edit_tabs/_textdocument.rhtml:3
1469
+ msgid "parse names to ids"
1470
+ msgstr ""
1471
+
1472
+ #: app/views/users/_form.rhtml:20
1473
+ #: app/views/users/_form.rhtml:22
1474
+ msgid "password"
1475
+ msgstr ""
1476
+
1477
+ #: app/views/iformats/_form.rhtml:21
1478
+ msgid "popup"
1479
+ msgstr ""
1480
+
1481
+ #: lib/gettext_strings.rb:171
1482
+ msgid "postal_code"
1483
+ msgstr ""
1484
+
1485
+ #: lib/gettext_strings.rb:44
1486
+ msgid "posted by"
1487
+ msgstr ""
1488
+
1489
+ #: app/views/users/preferences.html.erb:1
1490
+ #: lib/zena/use/display.rb:255
1491
+ msgid "preferences"
1492
+ msgstr ""
1493
+
1494
+ #: app/views/acls/_form.rhtml:27
1495
+ #, fuzzy
1496
+ msgid "priority"
1497
+ msgstr "property"
1498
+
1499
+ #: app/views/virtual_classes/_li.erb:22
1500
+ #, fuzzy
1501
+ msgid "prop"
1502
+ msgstr "property"
1503
+
1504
+ #: app/views/virtual_classes/_form.erb:40
1505
+ msgid "prop eval"
1506
+ msgstr ""
1507
+
1508
+ #: app/views/columns/index.html.erb:1
1509
+ #: lib/zena/use/display.rb:273
1510
+ msgid "properties"
1511
+ msgstr ""
1512
+
1513
+ #: app/views/columns/edit.html.erb:1
1514
+ msgid "property"
1515
+ msgstr "property"
1516
+
1517
+ #: app/views/templates/document_create_tabs/_import.rhtml:12
1518
+ #: app/views/versions/edit.rhtml:32
1519
+ #, fuzzy
1520
+ msgid "pub"
1521
+ msgstr "<img src='/images/wand.png' alt='publish'/>"
1522
+
1523
+ #: app/views/sites/_form.erb:21
1524
+ #: lib/gettext_strings.rb:37
1525
+ msgid "public group"
1526
+ msgstr ""
1527
+
1528
+ #: app/views/templates/edit_tabs/_title.rhtml:10
1529
+ msgid "publication date"
1530
+ msgstr ""
1531
+
1532
+ #: app/views/templates/document_create_tabs/_import.rhtml:11
1533
+ #, fuzzy
1534
+ msgid "publish nodes"
1535
+ msgstr "<img src='/images/wand.png' alt='publish'/>"
1536
+
1537
+ #: app/views/nodes/_groups.rhtml:15
1538
+ msgid "publishers"
1539
+ msgstr ""
1540
+
1541
+ #: app/views/acls/_form.rhtml:47
1542
+ #: app/views/acls/index.rhtml:11
1543
+ msgid "query"
1544
+ msgstr ""
1545
+
1546
+ #: app/models/comment.rb:93
1547
+ msgid "re: "
1548
+ msgstr ""
1549
+
1550
+ #: lib/gettext_strings.rb:72
1551
+ msgid "reader"
1552
+ msgstr ""
1553
+
1554
+ #: app/views/nodes/_groups.rhtml:17
1555
+ msgid "readers"
1556
+ msgstr ""
1557
+
1558
+ #: lib/gettext_strings.rb:164
1559
+ msgid "rebuild"
1560
+ msgstr "rebuild template"
1561
+
1562
+ #: lib/gettext_strings.rb:165
1563
+ msgid "rebuild_btn"
1564
+ msgstr "<img src='/images/arrow_refresh.png' alt='rebuild template'/>"
1565
+
1566
+ #: lib/gettext_strings.rb:182
1567
+ #, fuzzy
1568
+ msgid "rebuild_index"
1569
+ msgstr "<img src='/images/arrow_refresh.png' alt='rebuild template'/>"
1570
+
1571
+ #: lib/gettext_strings.rb:183
1572
+ msgid "rebuild_index done."
1573
+ msgstr "Rebuilding index."
1574
+
1575
+ #: lib/gettext_strings.rb:161
1576
+ msgid "redaction saved"
1577
+ msgstr ""
1578
+
1579
+ #: app/views/sites/_form.erb:20
1580
+ #, fuzzy
1581
+ msgid "redit_time"
1582
+ msgstr "%H:%M"
1583
+
1584
+ #: lib/gettext_strings.rb:32
1585
+ msgid "relation_img"
1586
+ msgstr "<img src='/images/target.png' alt='role'/>"
1587
+
1588
+ #: app/views/relations/index.erb:1
1589
+ #: lib/zena/use/display.rb:267
1590
+ msgid "relations"
1591
+ msgstr ""
1592
+
1593
+ #: lib/gettext_strings.rb:33
1594
+ msgid "relations_img"
1595
+ msgstr "<img src='/images/collection.png' alt='collection'/>"
1596
+
1597
+ #: app/views/groups/_form.rhtml:33
1598
+ msgid "replace by"
1599
+ msgstr ""
1600
+
1601
+ #: app/views/nodes/_position.rhtml:17
1602
+ msgid "reset"
1603
+ msgstr ""
1604
+
1605
+ #: app/views/users/preferences.html.erb:37
1606
+ msgid "retype new password"
1607
+ msgstr ""
1608
+
1609
+ #: app/views/virtual_classes/index.erb:21
1610
+ #, fuzzy
1611
+ msgid "revert"
1612
+ msgstr "french"
1613
+
1614
+ #: app/views/nodes/_groups.rhtml:22
1615
+ msgid "rights cannot be changed"
1616
+ msgstr ""
1617
+
1618
+ #: app/views/columns/_form.html.erb:17
1619
+ #: app/views/relations/_form.erb:31
1620
+ msgid "role"
1621
+ msgstr ""
1622
+
1623
+ #: app/views/nodes/_import_results.rhtml:11
1624
+ #, fuzzy
1625
+ msgid "same"
1626
+ msgstr " save "
1627
+
1628
+ #: app/views/versions/edit.rhtml:20
1629
+ msgid "save"
1630
+ msgstr " save "
1631
+
1632
+ #: app/views/search/_form.rhtml:7
1633
+ msgid "search field"
1634
+ msgstr "search"
1635
+
1636
+ #: lib/gettext_strings.rb:79
1637
+ msgid "search results"
1638
+ msgstr ""
1639
+
1640
+ #: app/views/links/_form.rhtml:31
1641
+ msgid "set"
1642
+ msgstr ""
1643
+
1644
+ #: lib/zena/use/i18n.rb:97
1645
+ msgid "short_date"
1646
+ msgstr "%m.%d"
1647
+
1648
+ #: lib/zena/use/i18n.rb:82
1649
+ msgid "short_time"
1650
+ msgstr "%H:%M"
1651
+
1652
+ #: app/views/sites/_form.erb:22
1653
+ #: lib/gettext_strings.rb:38
1654
+ #, fuzzy
1655
+ msgid "site group"
1656
+ msgstr "<img src='/images/group.png' alt='group'/>"
1657
+
1658
+ #: app/views/sites/_li.erb:2
1659
+ #: lib/gettext_strings.rb:34
1660
+ msgid "site_img"
1661
+ msgstr "<img src='/images/world.png' alt='site'/>"
1662
+
1663
+ #: app/views/sites/index.erb:1
1664
+ #: lib/zena/use/display.rb:279
1665
+ msgid "sites"
1666
+ msgstr ""
1667
+
1668
+ #: app/views/templates/edit_tabs/_image.rhtml:12
1669
+ msgid "size"
1670
+ msgstr ""
1671
+
1672
+ #: app/views/nodes/_groups.rhtml:18
1673
+ msgid "skin"
1674
+ msgstr ""
1675
+
1676
+ #: app/views/links/_form.rhtml:29
1677
+ #: app/views/users/_form.rhtml:25
1678
+ msgid "status"
1679
+ msgstr "status"
1680
+
1681
+ #: lib/gettext_strings.rb:96
1682
+ msgid "status_0"
1683
+ msgstr "deleted"
1684
+
1685
+ #: lib/gettext_strings.rb:104
1686
+ msgid "status_0_img"
1687
+ msgstr "<img src='/images/weather_lightning.png'/>"
1688
+
1689
+ #: lib/gettext_strings.rb:95
1690
+ msgid "status_10"
1691
+ msgstr "removed"
1692
+
1693
+ #: lib/gettext_strings.rb:103
1694
+ msgid "status_10_img"
1695
+ msgstr "<img src='/images/weather_rain.png'/>"
1696
+
1697
+ #: lib/gettext_strings.rb:94
1698
+ msgid "status_20"
1699
+ msgstr "replaced"
1700
+
1701
+ #: lib/gettext_strings.rb:102
1702
+ msgid "status_20_img"
1703
+ msgstr "<img src='/images/weather_clouds.png'/>"
1704
+
1705
+ #: lib/gettext_strings.rb:90
1706
+ msgid "status_50"
1707
+ msgstr "published"
1708
+
1709
+ #: lib/gettext_strings.rb:98
1710
+ msgid "status_50_img"
1711
+ msgstr "<img src='/images/weather_sun.png'/>"
1712
+
1713
+ #: lib/gettext_strings.rb:91
1714
+ msgid "status_60"
1715
+ msgstr "proposed"
1716
+
1717
+ #: lib/gettext_strings.rb:99
1718
+ msgid "status_60_img"
1719
+ msgstr "<img src='/images/magnifier.png'/>"
1720
+
1721
+ #: lib/gettext_strings.rb:92
1722
+ msgid "status_65"
1723
+ msgstr "proposed with"
1724
+
1725
+ #: lib/gettext_strings.rb:100
1726
+ msgid "status_65_img"
1727
+ msgstr "<img src='/images/magnifier.png'/>"
1728
+
1729
+ #: lib/gettext_strings.rb:93
1730
+ msgid "status_70"
1731
+ msgstr "redaction"
1732
+
1733
+ #: lib/gettext_strings.rb:101
1734
+ msgid "status_70_img"
1735
+ msgstr "<img src='/images/pencil.png'/>"
1736
+
1737
+ #: app/views/templates/document_create_tabs/_file.rhtml:10
1738
+ #: app/views/templates/document_create_tabs/_template.rhtml:19
1739
+ #: app/views/templates/document_create_tabs/_text_document.rhtml:11
1740
+ #: app/views/templates/edit_tabs/_title.rhtml:12
1741
+ msgid "summary"
1742
+ msgstr ""
1743
+
1744
+ #: app/views/virtual_classes/_form.erb:31
1745
+ msgid "superclass"
1746
+ msgstr ""
1747
+
1748
+ #: app/views/templates/edit_tabs/_title.rhtml:4
1749
+ #, fuzzy
1750
+ msgid "tags"
1751
+ msgstr "status"
1752
+
1753
+ #: lib/gettext_strings.rb:174
1754
+ msgid "telephone"
1755
+ msgstr ""
1756
+
1757
+ #: lib/gettext_strings.rb:21
1758
+ msgid "template_tab"
1759
+ msgstr "template"
1760
+
1761
+ #: lib/gettext_strings.rb:22
1762
+ msgid "text_document_tab"
1763
+ msgstr "text doc."
1764
+
1765
+ #: lib/gettext_strings.rb:9
1766
+ msgid "text_tab"
1767
+ msgstr "text"
1768
+
1769
+ #: lib/gettext_strings.rb:12
1770
+ msgid "textdocument_tab"
1771
+ msgstr "text doc."
1772
+
1773
+ #: app/views/users/preferences.html.erb:18
1774
+ #: app/views/users/_form.rhtml:27
1775
+ msgid "time zone"
1776
+ msgstr ""
1777
+
1778
+ #: app/views/comments/_form.rhtml:15
1779
+ #: app/views/templates/document_create_tabs/_file.rhtml:7
1780
+ #: app/views/templates/edit_tabs/_title.rhtml:1
1781
+ msgid "title"
1782
+ msgstr ""
1783
+
1784
+ #: lib/gettext_strings.rb:10
1785
+ msgid "title_tab"
1786
+ msgstr "title & Co"
1787
+
1788
+ #: lib/zena/use/dates.rb:89
1789
+ msgid "tomorrow"
1790
+ msgstr ""
1791
+
1792
+ #: lib/zena/use/display.rb:286
1793
+ msgid "turn dev off"
1794
+ msgstr "turn dev off"
1795
+
1796
+ #: lib/zena/use/display.rb:288
1797
+ msgid "turn dev on"
1798
+ msgstr ""
1799
+
1800
+ #: lib/gettext_strings.rb:166
1801
+ msgid "turn_dev_off_btn"
1802
+ msgstr "<img src='/images/bug.png' title='turn dev off'/>"
1803
+
1804
+ #: app/views/columns/_form.html.erb:18
1805
+ #: app/views/relations/_form.erb:21
1806
+ #: app/views/virtual_classes/_form.erb:18
1807
+ #: app/views/iformats/_form.rhtml:17
1808
+ msgid "type"
1809
+ msgstr ""
1810
+
1811
+ #: app/models/node.rb:1542
1812
+ msgid "type mismatch (%{type} is not a Skin)"
1813
+ msgstr ""
1814
+
1815
+ #: app/views/templates/edit_tabs/_textdocument.rhtml:5
1816
+ msgid "unparse assets"
1817
+ msgstr ""
1818
+
1819
+ #: app/views/documents/show.rhtml:15
1820
+ msgid "upload more"
1821
+ msgstr ""
1822
+
1823
+ #: app/views/users/_form.rhtml:43
1824
+ #, fuzzy
1825
+ msgid "use acls"
1826
+ msgstr "<img src='/images/lock.png' alt='closed'/>"
1827
+
1828
+ #: lib/gettext_strings.rb:69
1829
+ msgid "user"
1830
+ msgstr ""
1831
+
1832
+ #: app/views/groups/_form.rhtml:19
1833
+ #: app/views/users/index.rhtml:1
1834
+ #: lib/zena/use/display.rb:261
1835
+ msgid "users"
1836
+ msgstr ""
1837
+
1838
+ #: app/views/columns/_form.html.erb:28
1839
+ #: app/views/relations/_form.erb:39
1840
+ #: app/views/sites/_form.erb:40
1841
+ #: app/views/users/preferences.html.erb:19
1842
+ #: app/views/users/preferences.html.erb:38
1843
+ #: app/views/virtual_classes/_form.erb:46
1844
+ #: app/views/acls/_form.rhtml:60
1845
+ #: app/views/comments/_form.rhtml:23
1846
+ #: app/views/groups/_form.rhtml:35
1847
+ #: app/views/iformats/_form.rhtml:22
1848
+ #: app/views/nodes/_edit_attribute.rhtml:15
1849
+ #: app/views/templates/document_create_tabs/_file.rhtml:3
1850
+ #: app/views/templates/document_create_tabs/_import.rhtml:2
1851
+ #: app/views/templates/document_create_tabs/_template.rhtml:3
1852
+ #: app/views/templates/document_create_tabs/_text_document.rhtml:3
1853
+ #: app/views/users/_form.rhtml:50
1854
+ #: app/views/versions/edit.rhtml:17
1855
+ msgid "validate"
1856
+ msgstr " validate "
1857
+
1858
+ #: app/views/templates/drive_tabs/_links.rhtml:4
1859
+ msgid "versions"
1860
+ msgstr ""
1861
+
1862
+ #: app/views/virtual_classes/edit.html.erb:1
1863
+ #, fuzzy
1864
+ msgid "virtual class"
1865
+ msgstr "<img src='/images/brick.png' alt='class'/>"
1866
+
1867
+ #: app/views/virtual_classes/_li.erb:13
1868
+ #: lib/gettext_strings.rb:41
1869
+ msgid "virtual_class_error_img"
1870
+ msgstr "<img src='/images/brick_error.png' alt='class error'/>"
1871
+
1872
+ #: app/views/virtual_classes/_li.erb:3
1873
+ #: app/views/virtual_classes/_li.erb:13
1874
+ #: lib/gettext_strings.rb:40
1875
+ msgid "virtual_class_img"
1876
+ msgstr "<img src='/images/brick.png' alt='class'/>"
1877
+
1878
+ #: lib/zena/use/calendar.rb:341
1879
+ msgid "week_start_day"
1880
+ msgstr "0"
1881
+
1882
+ #: app/views/iformats/_form.rhtml:18
1883
+ msgid "width"
1884
+ msgstr ""
1885
+
1886
+ #: app/views/nodes/_groups.rhtml:16
1887
+ msgid "writers"
1888
+ msgstr ""
1889
+
1890
+ #: lib/zena/use/dates.rb:69
1891
+ #, fuzzy
1892
+ msgid "yesterday"
1893
+ msgstr "<img src='/images/bomb.png' alt='destroy'/>"
1894
+
1895
+ #: lib/gettext_strings.rb:160
1896
+ msgid "you are editing the original"
1897
+ msgstr ""
1898
+
1899
+ #, fuzzy
1900
+ #~ msgid "Auto create discussion"
1901
+ #~ msgstr "<img src='/images/comments_add.png' alt='add a discussion'/>"
1902
+
1903
+ #, fuzzy
1904
+ #~ msgid "Contact"
1905
+ #~ msgstr "<img src='/images/lock_open.png' alt='open'/>"
1906
+
1907
+ #, fuzzy
1908
+ #~ msgid "Formats updated at"
1909
+ #~ msgstr "Node successfully updated."
1910
+
1911
+ #, fuzzy
1912
+ #~ msgid "Icon"
1913
+ #~ msgstr "icon"
1914
+
1915
+ #~ msgid "Please log in"
1916
+ #~ msgstr "Please log in."
1917
+
1918
+ #, fuzzy
1919
+ #~ msgid "attributes"
1920
+ #~ msgstr "favorites"
1921
+
1922
+ #, fuzzy
1923
+ #~ msgid "auto discussion"
1924
+ #~ msgstr "<img src='/images/comments_add.png' alt='add a discussion'/>"
1925
+
1926
+ #~ msgid "btn_add_document"
1927
+ #~ msgstr "<img src='/images/picture_add.png' alt='add documents'/>"
1928
+
1929
+ #~ msgid "btn_add_note"
1930
+ #~ msgstr "<img src='/images/add.png' alt='add a note'/>"
1931
+
1932
+ #~ msgid "btn_add_page"
1933
+ #~ msgstr "<img src='/images/add.png' alt='add a node'/>"
1934
+
1935
+ #~ msgid "calendar_for"
1936
+ #~ msgstr "calendar for"
1937
+
1938
+ #~ msgid "calendars"
1939
+ #~ msgstr "calendars"
1940
+
1941
+ #~ msgid "collaborator_for"
1942
+ #~ msgstr "collaborator for"
1943
+
1944
+ #~ msgid "collaborators"
1945
+ #~ msgstr "collaborators"
1946
+
1947
+ #~ msgid "column_img"
1948
+ #~ msgstr "<img src='/images/textfield.png' alt='property'/>"
1949
+
1950
+ #~ msgid "favorite_for"
1951
+ #~ msgstr "favorite for"
1952
+
1953
+ #~ msgid "icon_for"
1954
+ #~ msgstr "icon for"
1955
+
1956
+ #~ msgid "img_calendar"
1957
+ #~ msgstr "<img src='/images/date.png' alt='calendar'/>"
1958
+
1959
+ #~ msgid "img_collaborator"
1960
+ #~ msgstr "<img src='/images/user.png' alt='collaborator'/>"
1961
+
1962
+ #~ msgid "img_favorite"
1963
+ #~ msgstr "<img src='/images/heart.png' alt='favorite'/>"
1964
+
1965
+ #~ msgid "img_group_admin"
1966
+ #~ msgstr "<img src='/images/group_admin.png' alt='add a group'/>"
1967
+
1968
+ #~ msgid "img_project"
1969
+ #~ msgstr "<img src='/images/project.png' alt='project'/>"
1970
+
1971
+ #~ msgid "project_for"
1972
+ #~ msgstr "project for"
1973
+
1974
+ #, fuzzy
1975
+ #~ msgid "reverse relation"
1976
+ #~ msgstr "<img src='/images/target.png' alt='role'/>"
1977
+
1978
+ #~ msgid "role not valid"
1979
+ #~ msgstr "Invalid role."
1980
+
1981
+ #~ msgid "tag_for"
1982
+ #~ msgstr "tag for"