diff --git a/app/views/enumerations/list.rhtml b/app/views/enumerations/list.rhtml
index 2d5726bcf..6c448fdc7 100644
--- a/app/views/enumerations/list.rhtml
+++ b/app/views/enumerations/list.rhtml
@@ -1,21 +1,19 @@
<%=l(:label_enumerations)%>
-
+
<% Enumeration::OPTIONS.each do |option, name| %>
<% if params[:opt]==option %>
- <%= image_tag 'dir_open' %> <%= l(name) %>
+ <%= l(name) %>
<% for value in Enumeration.find(:all, :conditions => ["opt = ?", option]) %>
- <%= link_to value.name, :action => 'edit', :id => value %>
<% end %>
-
- - <%= link_to ('» ' + l(:label_new)), :action => 'new', :opt => option %>
-
+ <%= link_to l(:label_enumeration_new), { :action => 'new', :opt => option }, :class => "pic picAdd" %>
<% else %>
- <%= image_tag 'dir' %> <%= link_to l(name), :opt => option %>
+ <%= link_to l(name), :opt => option %>
<% end %>
<% end %>
\ No newline at end of file