X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fpeopletagged.php;h=ea25c8675ba907f1b4a3a70ce3fc98e244e2bbb0;hb=f44e0330df8ffd18786dbeb2e0a6ad4e2641046a;hp=84356116ccd6885feded352b9d151dc84f5563e4;hpb=5304373b0b5c9905b30c85b565c23246d377467b;p=quix0rs-gnu-social.git diff --git a/actions/peopletagged.php b/actions/peopletagged.php index 84356116cc..ea25c8675b 100644 --- a/actions/peopletagged.php +++ b/actions/peopletagged.php @@ -92,8 +92,8 @@ class PeopletaggedAction extends OwnerDesignAction $this->peopletag = Profile_list::pkeyGet(array('tagger' => $user->id, 'tag' => $tag)); if (!$this->peopletag) { - // TRANS: Client error displayed when referring to non-existing people tag. - $this->clientError(_('No such people tag.'), 404); + // TRANS: Client error displayed when referring to a non-existing list. + $this->clientError(_('No such list.'), 404); return false; } @@ -103,14 +103,14 @@ class PeopletaggedAction extends OwnerDesignAction function title() { if ($this->page == 1) { - // TRANS: Title for list of people tagged by the user with a tag. - // TRANS: %1$s is a tag, %2$s is a username. - return sprintf(_('People tagged %1$s by %2$s'), + // TRANS: Title for list of people listed by the user. + // TRANS: %1$s is a list, %2$s is a username. + return sprintf(_('People listed in %1$s by %2$s'), $this->peopletag->tag, $this->tagger->nickname); } else { - // TRANS: Title for list of people tagged by the user with a tag. - // TRANS: %1$s is a tag, %2$s is a username, %2$s is a page number. - return sprintf(_('People tagged %1$s by %2$s, page %3$d'), + // TRANS: Title for list of people listed by the user. + // TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. + return sprintf(_('People listed in %1$s by %2$s, page %3$d'), $this->peopletag->tag, $this->user->nickname, $this->page); }