summaryrefslogtreecommitdiffstats
path: root/app/views/watchers
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2010-03-04 18:49:03 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2010-03-04 18:49:03 +0000
commit12759fd416995f51318c3cf3bfa42e5a1471ae3b (patch)
tree5f4a75025647aeeb467af2636adf9220cb7a8487 /app/views/watchers
parentc58dc83e74f2c4d234e870335172f7bd04a0e2a9 (diff)
downloadredmine-12759fd416995f51318c3cf3bfa42e5a1471ae3b.tar.gz
redmine-12759fd416995f51318c3cf3bfa42e5a1471ae3b.zip
Fixed: hard coded English string at the selection of issue watchers (#4982).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3541 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/watchers')
-rw-r--r--app/views/watchers/_watchers.rhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/watchers/_watchers.rhtml b/app/views/watchers/_watchers.rhtml
index 14bb5fc6b..bf04e1bcb 100644
--- a/app/views/watchers/_watchers.rhtml
+++ b/app/views/watchers/_watchers.rhtml
@@ -17,7 +17,7 @@
:object_id => watched},
:method => :post,
:html => {:id => 'new-watcher-form'}) do |f| %>
-<p><%= f.select :user_id, (watched.addable_watcher_users.collect {|m| [m.name, m.id]}), :prompt => true %>
+<p><%= f.select :user_id, (watched.addable_watcher_users.collect {|m| [m.name, m.id]}), :prompt => "--- #{l(:actionview_instancetag_blank_option)} ---" %>
<%= submit_tag l(:button_add) %>
<%= toggle_link l(:button_cancel), 'new-watcher-form'%></p>