diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-10-25 10:37:31 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-10-25 10:37:31 +0000 |
commit | 25b96457c119d0fa8e7183c092756f614bf5b17e (patch) | |
tree | 23132031ceac1b861c10f07978a1aedaca5cfe42 /app/views | |
parent | 18579303a20ffd26077a1b16b0742498b750845f (diff) | |
download | redmine-25b96457c119d0fa8e7183c092756f614bf5b17e.tar.gz redmine-25b96457c119d0fa8e7183c092756f614bf5b17e.zip |
Display enumeration name in confirmation message.
git-svn-id: http://svn.redmine.org/redmine/trunk@14750 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/enumerations/destroy.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/enumerations/destroy.html.erb b/app/views/enumerations/destroy.html.erb index 503cf4cca..2757eed4e 100644 --- a/app/views/enumerations/destroy.html.erb +++ b/app/views/enumerations/destroy.html.erb @@ -2,7 +2,7 @@ <%= form_tag({}, :method => :delete) do %> <div class="box"> -<p><strong><%= l(:text_enumeration_destroy_question, @enumeration.objects_count) %></strong></p> +<p><strong><%= l(:text_enumeration_destroy_question, :name => @enumeration.name, :count => @enumeration.objects_count) %></strong></p> <p><label for='reassign_to_id'><%= l(:text_enumeration_category_reassign_to) %></label> <%= select_tag 'reassign_to_id', (content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---", :value => '') + options_from_collection_for_select(@enumerations, 'id', 'name')) %></p> </div> |