Commit c0cb60761ee433fb28241d507fc4bea77d0fe1ba

Authored by Daniela Feitosa
1 parent b9d0958f

Added title on link to pending tasks

(ActionItem1527)
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/helpers/application_helper.rb
... ... @@ -1118,7 +1118,7 @@ module ApplicationHelper
1118 1118 def usermenu_logged_in
1119 1119 pending_tasks_count = ''
1120 1120 if user && user.all_pending_tasks.count > 0
1121   - pending_tasks_count = link_to(user.all_pending_tasks.count.to_s, '/myprofile/{login}/tasks', :id => 'pending-tasks-count')
  1121 + pending_tasks_count = link_to(user.all_pending_tasks.count.to_s, '/myprofile/{login}/tasks', :id => 'pending-tasks-count', :title => _("Manage your pending tasks"))
1122 1122 end
1123 1123  
1124 1124 (_('Welcome, %s') % link_to('<i></i><strong>{login}</strong>', '/{login}', :id => "homepage-link", :title => _('Go to your homepage'))) +
... ...