Commit 09c3d5b0b68508285c0f6afaaa9f76720aec7d5d
1 parent
ec8b416d
Exists in
master
and in
29 other branches
favorite-enterprises-block: add view-all class to footer link and fix translation
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/models/favorite_enterprises_block.rb
... | ... | @@ -16,7 +16,7 @@ class FavoriteEnterprisesBlock < ProfileListBlock |
16 | 16 | owner = self.owner |
17 | 17 | return '' unless owner.kind_of?(Person) |
18 | 18 | proc do |
19 | - link_to _('View all'), :profile => owner.identifier, :controller => 'profile', :action => 'favorite_enterprises' | |
19 | + link_to _('enterprises|View all'), {:profile => owner.identifier, :controller => 'profile', :action => 'favorite_enterprises'}, :class => 'view-all' | |
20 | 20 | end |
21 | 21 | end |
22 | 22 | ... | ... |