summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-12-22 19:24:17 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-12-22 19:24:17 +0000
commit67f82e32b49c9a0364cc4c510c9b376bbe93c175 (patch)
treea5efcd63d635d06fdb8776e2d15ccf762a061091 /app
parent1f89dad23aab9a4736e05d66ae468c0253ab9255 (diff)
downloadredmine-67f82e32b49c9a0364cc4c510c9b376bbe93c175.tar.gz
redmine-67f82e32b49c9a0364cc4c510c9b376bbe93c175.zip
Do not hardcode Watcher string in r2164.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2165 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/views/issues/_form.rhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/_form.rhtml b/app/views/issues/_form.rhtml
index dcc554101..7ae990d5f 100644
--- a/app/views/issues/_form.rhtml
+++ b/app/views/issues/_form.rhtml
@@ -49,7 +49,7 @@
<% end %>
<% if @issue.new_record? && User.current.allowed_to?(:add_issue_watchers, @project) -%>
-<p><label>Watchers</label>
+<p><label><%= l(:label_issue_watchers) %></label>
<% @issue.project.users.sort.each do |user| -%>
<label class="floating"><%= check_box_tag 'issue[watcher_user_ids][]', user.id, @issue.watcher_user_ids.include?(user.id) %> <%=h user %></label>
<% end -%>