X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fpeopletagsforuser.php;h=9883bd3657dc8170a9f6b1910917711629acb9cc;hb=19b965d99188fde59cdd39b668df8951bc0f180c;hp=7f5c2160707c2c38c24e3bd507c8222656513fa0;hpb=41a883aeab970b1fe27c67524e04590456ddc92b;p=quix0rs-gnu-social.git diff --git a/actions/peopletagsforuser.php b/actions/peopletagsforuser.php index 7f5c216070..9883bd3657 100644 --- a/actions/peopletagsforuser.php +++ b/actions/peopletagsforuser.php @@ -46,10 +46,10 @@ class PeopletagsforuserAction extends OwnerDesignAction function title() { if ($this->page == 1) { - // Page title. %s is a tagged user's nickname. + // TRANS: Page title. %s is a tagged user's nickname. return sprintf(_('Lists with %s in them'), $this->tagged->nickname); } else { - // Page title. %1$s is a tagged user's nickname, %2$s is a page number. + // TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. return sprintf(_('Lists with %1$s, page %2$d'), $this->tagged->nickname, $this->page); } } @@ -83,7 +83,7 @@ class PeopletagsforuserAction extends OwnerDesignAction $this->tagged = $this->user->getProfile(); if (!$this->tagged) { - // TRANS: Server error displayed when a user has no profile. + // TRANS: Error message displayed when referring to a user without a profile. $this->serverError(_('User has no profile.')); return false; } @@ -102,7 +102,7 @@ class PeopletagsforuserAction extends OwnerDesignAction function showAnonymousMessage() { $notice = - // TRANS: Message displayed for anonymous users on page that displays people tags for a user. + // TRANS: Message displayed for anonymous users on page that displays lists for a user. // TRANS: This message contains Markdown links in the form [description](links). // TRANS: %s is a tagger nickname. sprintf(_('These are lists for **%s**. ' . @@ -138,9 +138,9 @@ class PeopletagsforuserAction extends OwnerDesignAction function showEmptyListMessage() { - // TRANS: Message displayed on page that displays people tags for a user when there are none. + // TRANS: Message displayed on page that displays lists a user was added to when there are none. // TRANS: This message contains Markdown links in the form [description](links). - // TRANS: %s is a tagger nickname. + // TRANS: %s is a user nickname. $message = sprintf(_('%s has not been [listed](%%%%doc.lists%%%%) by anyone yet.'), $this->tagged->nickname); $this->elementStart('div', 'guide'); $this->raw(common_markup_to_html($message));