diff options
author | Brion Vibber <brion@pobox.com> | 2009-11-23 06:42:02 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-11-23 06:42:02 -0800 |
commit | 4bd17a7f59b45919dd40dcabb0413b63f67817c1 (patch) | |
tree | 2c6eed34bd10a3ed1872d945ce59a6484b57ed9e /lib | |
parent | cf2b4c033c8025eea4aaeee0598665a55be151d6 (diff) |
Ticket 2007: make search tabs grammar forms consistent (People, Notices, Groups)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/searchgroupnav.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/searchgroupnav.php b/lib/searchgroupnav.php index 677365ea9..e843dc096 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'); } |