##// END OF EJS Templates
Fixed: hard coded English string at the selection of issue watchers (#4982)....
Jean-Philippe Lang -
r3427:12759fd41699
parent child
Show More
@@ -1,25 +1,25
1 1 <div class="contextual">
2 2 <%= link_to_remote l(:button_add),
3 3 :url => {:controller => 'watchers',
4 4 :action => 'new',
5 5 :object_type => watched.class.name.underscore,
6 6 :object_id => watched} if User.current.allowed_to?(:add_issue_watchers, @project) %>
7 7 </div>
8 8
9 9 <p><strong><%= l(:label_issue_watchers) %></strong></p>
10 10 <%= watchers_list(watched) %>
11 11
12 12 <% unless @watcher.nil? %>
13 13 <% remote_form_for(:watcher, @watcher,
14 14 :url => {:controller => 'watchers',
15 15 :action => 'new',
16 16 :object_type => watched.class.name.underscore,
17 17 :object_id => watched},
18 18 :method => :post,
19 19 :html => {:id => 'new-watcher-form'}) do |f| %>
20 <p><%= f.select :user_id, (watched.addable_watcher_users.collect {|m| [m.name, m.id]}), :prompt => true %>
20 <p><%= f.select :user_id, (watched.addable_watcher_users.collect {|m| [m.name, m.id]}), :prompt => "--- #{l(:actionview_instancetag_blank_option)} ---" %>
21 21
22 22 <%= submit_tag l(:button_add) %>
23 23 <%= toggle_link l(:button_cancel), 'new-watcher-form'%></p>
24 24 <% end %>
25 25 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now