Ticket 2007: make search tabs grammar forms consistent (People, Notices, Groups)

This commit is contained in:
Brion Vibber 2009-11-23 06:42:02 -08:00
parent cf2b4c033c
commit 4bd17a7f59
1 changed files with 2 additions and 2 deletions

View File

@ -79,9 +79,9 @@ class SearchGroupNav extends Widget
} }
$this->out->menuItem(common_local_url('peoplesearch', $args), _('People'), $this->out->menuItem(common_local_url('peoplesearch', $args), _('People'),
_('Find people on this site'), $action_name == 'peoplesearch', 'nav_search_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'); _('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'); _('Find groups on this site'), $action_name == 'groupsearch', 'nav_search_group');
$this->action->elementEnd('ul'); $this->action->elementEnd('ul');
} }