From f1ea38f2b35c0d985075228d42ac0fc5f5bcb88b Mon Sep 17 00:00:00 2001 From: Antonio Terceiro Date: Mon, 25 May 2009 12:59:44 -0300 Subject: [PATCH] ActionItem1050: using "See all" consistently --- app/models/communities_block.rb | 4 ++-- app/models/enterprises_block.rb | 4 ++-- app/models/friends_block.rb | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/models/communities_block.rb b/app/models/communities_block.rb index 12efebd..b8f6dd3 100644 --- a/app/models/communities_block.rb +++ b/app/models/communities_block.rb @@ -17,11 +17,11 @@ class CommunitiesBlock < ProfileListBlock case owner when Profile lambda do - link_to __('All communities'), :profile => owner.identifier, :controller => 'profile', :action => 'communities' + link_to __('See all'), :profile => owner.identifier, :controller => 'profile', :action => 'communities' end when Environment lambda do - link_to __('All communities'), :controller => 'search', :action => 'assets', :asset => 'communities' + link_to __('See all'), :controller => 'search', :action => 'assets', :asset => 'communities' end else '' diff --git a/app/models/enterprises_block.rb b/app/models/enterprises_block.rb index 42d0a50..f08f082 100644 --- a/app/models/enterprises_block.rb +++ b/app/models/enterprises_block.rb @@ -17,11 +17,11 @@ class EnterprisesBlock < ProfileListBlock case owner when Profile lambda do - link_to __('All enterprises'), :profile => owner.identifier, :controller => 'profile', :action => 'enterprises' + link_to __('See all'), :profile => owner.identifier, :controller => 'profile', :action => 'enterprises' end when Environment lambda do - link_to __('All enterprises'), :controller => 'search', :action => 'assets', :asset => 'enterprises' + link_to __('See all'), :controller => 'search', :action => 'assets', :asset => 'enterprises' end else '' diff --git a/app/models/friends_block.rb b/app/models/friends_block.rb index 4d6e652..d784289 100644 --- a/app/models/friends_block.rb +++ b/app/models/friends_block.rb @@ -15,7 +15,7 @@ class FriendsBlock < ProfileListBlock def footer owner_id = owner.identifier lambda do - link_to __('All friends'), :profile => owner_id, :controller => 'profile', :action => 'friends' + link_to __('See all'), :profile => owner_id, :controller => 'profile', :action => 'friends' end end -- libgit2 0.21.2