From: Brion Vibber Date: Mon, 23 Nov 2009 14:42:02 +0000 (-0800) Subject: Ticket 2007: make search tabs grammar forms consistent (People, Notices, Groups) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4bd17a7f59b45919dd40dcabb0413b63f67817c1;p=quix0rs-gnu-social.git Ticket 2007: make search tabs grammar forms consistent (People, Notices, Groups) --- diff --git a/lib/searchgroupnav.php b/lib/searchgroupnav.php index 677365ea9d..e843dc096c 100644 --- a/lib/searchgroupnav.php +++ b/lib/searchgroupnav.php @@ -79,9 +79,9 @@ class SearchGroupNav extends Widget } $this->out->menuItem(common_local_url('peoplesearch', $args), _('People'), _('Find people on this site'), $action_name == 'peoplesearch', 'nav_search_people'); - $this->out->menuItem(common_local_url('noticesearch', $args), _('Notice'), + $this->out->menuItem(common_local_url('noticesearch', $args), _('Notices'), _('Find content of notices'), $action_name == 'noticesearch', 'nav_search_notice'); - $this->out->menuItem(common_local_url('groupsearch', $args), _('Group'), + $this->out->menuItem(common_local_url('groupsearch', $args), _('Groups'), _('Find groups on this site'), $action_name == 'groupsearch', 'nav_search_group'); $this->action->elementEnd('ul'); }