From 69778f12c8bc69485c3f3ade0d76b60ac139b013 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 6 Apr 2011 01:55:29 +0200 Subject: [PATCH] Update translator documentation. Whitespace updates. --- lib/defaultlocalnav.php | 1 + lib/groupeditform.php | 6 ++++-- lib/groupsnav.php | 7 +++---- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/lib/defaultlocalnav.php b/lib/defaultlocalnav.php index 1201ae7468..84a6267ac9 100644 --- a/lib/defaultlocalnav.php +++ b/lib/defaultlocalnav.php @@ -67,6 +67,7 @@ class DefaultLocalNav extends Menu if (!empty($user)) { $sn = new GroupsNav($this->action, $user); if ($sn->haveGroups()) { + // TRANS: Menu item in default local navigation panel. $this->submenu(_m('MENU', 'Groups'), $sn); } } diff --git a/lib/groupeditform.php b/lib/groupeditform.php index c1218ab354..b795c1387d 100644 --- a/lib/groupeditform.php +++ b/lib/groupeditform.php @@ -202,10 +202,12 @@ class GroupEditForm extends Form $this->out->elementEnd('li'); } $this->out->elementStart('li'); - $this->out->checkbox('private', _('Private'), + // TRANS: Checkbox field label on group edit form to mark a group private. + $this->out->checkbox('private', _m('LABEL','Private'), ($this->out->arg('private')) ? $this->out->arg('private') : ((!empty($this->group)) ? $this->group->isPrivate() : false), - _('New members must be approved by admin and all posts are forced to be private')); + // TRANS: Checkbox field title on group edit form to mark a group private. + _('New members must be approved by admin and all posts are forced to be private.')); $this->out->elementEnd('li'); Event::handle('EndGroupEditFormData', array($this)); } diff --git a/lib/groupsnav.php b/lib/groupsnav.php index 1d2066f2e5..26058c2b7e 100644 --- a/lib/groupsnav.php +++ b/lib/groupsnav.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * Menu for streams - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class GroupsNav extends Menu { protected $user; @@ -74,7 +73,7 @@ class GroupsNav extends Menu $this->out->elementStart('ul', array('class' => 'nav')); if (Event::handle('StartGroupsNav', array($this))) { - + while ($this->groups->fetch()) { $this->out->menuItem(($this->groups->mainpage) ? $this->groups->mainpage : @@ -82,7 +81,7 @@ class GroupsNav extends Menu array('nickname' => $this->groups->nickname)), $this->groups->getBestName(), '', - $action == 'showgroup' && + $action == 'showgroup' && $this->action->arg('nickname') == $this->groups->nickname, 'nav_timeline_group_'.$this->groups->nickname); }