From 8cfd8450d5bbaeeda4a344018ee0e0b27e775196 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 17 Apr 2011 02:26:53 +0200 Subject: [PATCH] Update/fix translator documentation. --- lib/peopletagnav.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/peopletagnav.php b/lib/peopletagnav.php index 1be71690b6..c2e3d1f268 100644 --- a/lib/peopletagnav.php +++ b/lib/peopletagnav.php @@ -77,25 +77,27 @@ class PeopletagNav extends Menu // TRANS: Menu item in the group navigation page. _m('MENU','List Subscriptions'), // TRANS: Tooltip for menu item in the group navigation page. - // TRANS: %s is the nickname of the group. + // TRANS: %s is a user nickname. sprintf(_m('TOOLTIP','Lists subscribed to by %s.'), $nickname), $action_name == 'peopletagsubscriptions', 'nav_list_group'); $this->out->menuItem(common_local_url('peopletagsforuser', array('nickname' => $nickname)), // TRANS: Menu item in the group navigation page. + // TRANS: %s is a user nickname. sprintf(_m('MENU','Lists with %s'), $nickname), // TRANS: Tooltip for menu item in the group navigation page. - // TRANS: %s is the nickname of the group. + // TRANS: %s is a user nickname. sprintf(_m('TOOLTIP','Lists with %s.'), $nickname), $action_name == 'peopletagsforuser', 'nav_lists_with'); $this->out->menuItem(common_local_url('peopletagsbyuser', array('nickname' => $nickname)), // TRANS: Menu item in the group navigation page. + // TRANS: %s is a user nickname. sprintf(_m('MENU','Lists by %s'), $nickname), // TRANS: Tooltip for menu item in the group navigation page. - // TRANS: %s is the nickname of the group. + // TRANS: %s is a user nickname. sprintf(_m('TOOLTIP','Lists by %s.'), $nickname), $action_name == 'peopletagsbyuser', 'nav_lists_by');