Actions
Defect #4982
closedHard coded English string at the selection of issue watchers
Start date:
2010-03-04
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
I found a bug that hard coded English string "Please select" is displayed at the selection of issue watchers on a issue form, and tried to fix it like this.
Now¶
(redmine/app/views/watchers/_watchers.rhtml :20)
<p><%= f.select :user_id, (watched.addable_watcher_users.collect {|m| [m.name, m.id]}), :prompt => true %>
->Revised¶
(redmine/app/views/watchers/_watchers.rhtml :20)
<p><%= f.select :user_id, (watched.addable_watcher_users.collect {|m| [m.name, m.id]}) %> or maybe <p><%= f.select :user_id, (watched.addable_watcher_users.collect {|m| [m.name, m.id]}), :prompt=>l(:label_please_select) %>
Regards
Updated by Jean-Philippe Lang over 14 years ago
- Category changed from Issues to Translations
- Status changed from New to Resolved
- Target version set to 0.9.4
- Resolution set to Fixed
Fixed in r3541.
Updated by Azamat Hackimov over 14 years ago
- Status changed from Resolved to Closed
Actions