diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-05-20 18:11:49 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-05-20 18:11:49 +0000 |
commit | 3782501275e3b37ee1d15442604961fcb9a2537f (patch) | |
tree | 47a479538ccb8dde8b7c51d85ed920413eda59ff /app | |
parent | d34ea9a56986a524382641de987f818bbd0131e4 (diff) | |
download | redmine-3782501275e3b37ee1d15442604961fcb9a2537f.tar.gz redmine-3782501275e3b37ee1d15442604961fcb9a2537f.zip |
Fixed a couple of spelling errors (JT Zemp)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@537 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/settings/edit.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/settings/edit.rhtml b/app/views/settings/edit.rhtml index f88d3f14a..ad068209c 100644 --- a/app/views/settings/edit.rhtml +++ b/app/views/settings/edit.rhtml @@ -59,12 +59,12 @@ <fieldset class="box"><legend><%= l(:text_issues_ref_in_commit_messages) %></legend> <p><label><%= l(:setting_commit_ref_keywords) %></label> -<%= text_field_tag 'settings[commit_ref_keywords]', Setting.commit_ref_keywords, :size => 30 %><br /><em><%= l(:text_coma_separated) %></em></p> +<%= text_field_tag 'settings[commit_ref_keywords]', Setting.commit_ref_keywords, :size => 30 %><br /><em><%= l(:text_comma_separated) %></em></p> <p><label><%= l(:setting_commit_fix_keywords) %></label> <%= text_field_tag 'settings[commit_fix_keywords]', Setting.commit_fix_keywords, :size => 30 %> <%= l(:label_applied_status) %>: <%= select_tag 'settings[commit_fix_status_id]', options_for_select( [["", 0]] + IssueStatus.find(:all).collect{|status| [status.name, status.id.to_s]}, Setting.commit_fix_status_id) %> -<br /><em><%= l(:text_coma_separated) %></em></p> +<br /><em><%= l(:text_comma_separated) %></em></p> </fieldset> <%= submit_tag l(:button_save) %> |