X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=actions%2Fpeopletagsforuser.php;h=789dcbe921d7034294d0b7327927d78dbce45b03;hb=43646caf30cd78facaa76c2c95a3078cb2c3988e;hp=73fb2256128437cc3a7dbabef30a1b94456eb3ea;hpb=57198a74647f8350db4de03b0b7ef157091a4359;p=quix0rs-gnu-social.git diff --git a/actions/peopletagsforuser.php b/actions/peopletagsforuser.php index 73fb225612..789dcbe921 100644 --- a/actions/peopletagsforuser.php +++ b/actions/peopletagsforuser.php @@ -46,9 +46,11 @@ class PeopletagsforuserAction extends OwnerDesignAction function title() { if ($this->page == 1) { - return sprintf(_("People tags for %s"), $this->tagged->nickname); + // Page title. %s is a tagged user's nickname. + return sprintf(_('People tags for %s'), $this->tagged->nickname); } else { - return sprintf(_("People tags for %s, page %d"), $this->tagged->nickname, $this->page); + // Page title. %1$s is a tagged user's nickname, %2$s is a page number. + return sprintf(_('People tags for %1$s, page %2$d'), $this->tagged->nickname, $this->page); } } @@ -73,6 +75,7 @@ class PeopletagsforuserAction extends OwnerDesignAction $this->user = User::staticGet('nickname', $nickname); if (!$this->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 +83,7 @@ class PeopletagsforuserAction extends OwnerDesignAction $this->tagged = $this->user->getProfile(); if (!$this->tagged) { + // TRANS: Server error displayed when a user has no profile. $this->serverError(_('User has no profile.')); return false; } @@ -98,6 +102,9 @@ class PeopletagsforuserAction extends OwnerDesignAction function showAnonymousMessage() { $notice = + // TRANS: Message displayed for anonymous users on page that displays people tags for a user. + // TRANS: This message contains Markdown links in the form [description](links). + // TRANS: %s is a tagger nickname. sprintf(_('These are people tags for **%s**. ' . 'People tags are how you sort similar ' . 'people on %%%%site.name%%%%, a [micro-blogging]' . @@ -117,7 +124,9 @@ class PeopletagsforuserAction extends OwnerDesignAction 'class' => 'child_1')); $user = common_current_user(); + // TRANS: Page notice. $text = ($this->tagged->id == @$user->id) ? _('People tags by you') : + // TRANS: Page notice. %s is a tagger's nickname. sprintf(_('People tags by %s'), $this->tagged->nickname); $this->element('a', array('href' => @@ -150,6 +159,9 @@ class PeopletagsforuserAction extends OwnerDesignAction function showEmptyListMessage() { + // TRANS: Message displayed on page that displays people tags for a user when there are none. + // TRANS: This message contains Markdown links in the form [description](links). + // TRANS: %s is a tagger nickname. $message = sprintf(_('%s has not been [tagged](%%%%doc.tags%%%%) by anyone yet.'), $this->tagged->nickname); $this->elementStart('div', 'guide'); $this->raw(common_markup_to_html($message));