diff --git a/app/views/category/_product_category.rhtml b/app/views/category/_product_category.rhtml
index f75e59e..68e46d2 100644
--- a/app/views/category/_product_category.rhtml
+++ b/app/views/category/_product_category.rhtml
@@ -1,11 +1,16 @@
-<%= @products.size.to_s + " products in this category" %>
-<%= @enterprises.size.to_s + " enterprises sells products in this category" %>
+
+ - <%= _("%d products in this category") % @products.size.to_s %>
+ - <%= _("%d enterprises sells products in this category") % @enterprises.size.to_s %>
+
<% @products.each do |p| %>
-
<%= image_tag p.image.public_filename(:thumb) if p.image%> <%= link_to_product(p) %>
- <% _('Price:') %> <% p.price %> <%= _('Enterprise:') %> <%= link_to_homepage p.enterprise.name, p.enterprise.identifier %>
+ <% if p.price %>
+ <%= _('Price: %d') % p.price %>
+ <% end %>
+ <%= _('Enterprise:') %> <%= link_to_homepage p.enterprise.name, p.enterprise.identifier %>
<% end %>
--
libgit2 0.21.2