X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fpeopletagsubscriptions.php;h=f6baed416febce7abb8b95b783546d04b9d218b8;hb=cc34bb48c7243f78e198ad4d8c1806d5fe886a81;hp=b45651d1a2e0002f575902e5d99cfd9b7d8bc8a8;hpb=31c1177970124cee31823cab3a11542c23b4126d;p=quix0rs-gnu-social.git diff --git a/actions/peopletagsubscriptions.php b/actions/peopletagsubscriptions.php index b45651d1a2..f6baed416f 100644 --- a/actions/peopletagsubscriptions.php +++ b/actions/peopletagsubscriptions.php @@ -22,7 +22,7 @@ * @category Personal * @package StatusNet * @author Shashi Gowda - * @copyright 2008-2009 StatusNet, Inc. + * @copyright 2008-2011 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ @@ -33,7 +33,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { require_once INSTALLDIR.'/lib/peopletaglist.php'; -class PeopletagsubscriptionsAction extends OwnerDesignAction +class PeopletagsubscriptionsAction extends Action { var $page = null; var $profile = null; @@ -46,9 +46,13 @@ class PeopletagsubscriptionsAction extends OwnerDesignAction function title() { if ($this->page == 1) { - return sprintf(_("People tags subscriptions by %s"), $this->profile->nickname); + // TRANS: Title for page that displays lists subscribed to by a user. + // TRANS: %s is a profile nickname. + return sprintf(_('Lists subscribed to by %s'), $this->profile->nickname); } else { - return sprintf(_("People tags subscriptions by %s, page %d"), $this->profile->nickname, $this->page); + // TRANS: Title for page that displays lists subscribed to by a user. + // TRANS: %1$s is a profile nickname, %2$d is a page number. + return sprintf(_('Lists subscribed to by %1$s, page %2$d'), $this->profile->nickname, $this->page); } } @@ -56,7 +60,12 @@ class PeopletagsubscriptionsAction extends OwnerDesignAction { parent::prepare($args); - $nickname_arg = $this->arg('nickname'); + if (common_config('singleuser', 'enabled')) { + $nickname_arg = User::singleUserNickname(); + } else { + $nickname_arg = $this->arg('nickname'); + } + $nickname = common_canonical_nickname($nickname_arg); // Permanent redirect on non-canonical nickname @@ -70,9 +79,10 @@ class PeopletagsubscriptionsAction extends OwnerDesignAction return false; } - $user = User::staticGet('nickname', $nickname); + $user = User::getKV('nickname', $nickname); if (!$user) { + // TRANS: Client error displayed trying to perform an action related to a non-existing user. $this->clientError(_('No such user.'), 404); return false; } @@ -80,6 +90,7 @@ class PeopletagsubscriptionsAction extends OwnerDesignAction $this->profile = $user->getProfile(); if (!$this->profile) { + // TRANS: Error message displayed when referring to a user without a profile. $this->serverError(_('User has no profile.')); return false; } @@ -95,22 +106,19 @@ class PeopletagsubscriptionsAction extends OwnerDesignAction $this->showPage(); } - function showLocalNav() - { - $nav = new PersonalGroupNav($this); - $nav->show(); - } - function showAnonymousMessage() { $notice = - sprintf(_('These are people tags subscribed to by **%s**. ' . - 'People tags are how you sort similar ' . + // TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. + // TRANS: This message contains Markdown links in the form [description](links). + // TRANS: %s is a profile nickname. + sprintf(_('These are lists subscribed to by **%s**. ' . + 'Lists are how you sort similar ' . 'people on %%%%site.name%%%%, a [micro-blogging]' . '(http://en.wikipedia.org/wiki/Micro-blogging) service ' . 'based on the Free Software [StatusNet](http://status.net/) tool. ' . 'You can easily keep track of what they ' . - 'are doing by subscribing to the tag\'s timeline.' ), $this->profile->nickname); + 'are doing by subscribing to the list\'s timeline.' ), $this->profile->nickname); $this->elementStart('div', array('id' => 'anon_notice')); $this->raw(common_markup_to_html($notice)); $this->elementEnd('div'); @@ -130,6 +138,18 @@ class PeopletagsubscriptionsAction extends OwnerDesignAction $this->page, 'peopletagsubscriptions', array('nickname' => $this->profile->id)); } + function showObjectNav() + { + $nav = new PeopletagNav($this, $this->profile); + $nav->show(); + } + + function showProfileBlock() + { + $block = new AccountProfileBlock($this, $this->profile); + $block->show(); + } + function showSections() { #TODO: tags with most subscribers