diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index 025f97b..597ec89 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -1118,7 +1118,7 @@ module ApplicationHelper
def usermenu_logged_in
pending_tasks_count = ''
if user && user.all_pending_tasks.count > 0
- pending_tasks_count = link_to(user.all_pending_tasks.count.to_s, '/myprofile/{login}/tasks', :id => 'pending-tasks-count')
+ pending_tasks_count = link_to(user.all_pending_tasks.count.to_s, '/myprofile/{login}/tasks', :id => 'pending-tasks-count', :title => _("Manage your pending tasks"))
end
(_('Welcome, %s') % link_to('{login}', '/{login}', :id => "homepage-link", :title => _('Go to your homepage'))) +
--
libgit2 0.21.2