X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fpeopletaglist.php;h=986712f51d04555f4b42307feb8baca0f907da9a;hb=c7013ceb1a8ca51135a3f1b89b374e1f6550afec;hp=8a4caf44fe55de9ea1facd73adb70dbb6280d696;hpb=f446db8e2ae9be8ae7b8489ddffcc04c6074b6f2;p=quix0rs-gnu-social.git diff --git a/lib/peopletaglist.php b/lib/peopletaglist.php index 8a4caf44fe..986712f51d 100644 --- a/lib/peopletaglist.php +++ b/lib/peopletaglist.php @@ -1,5 +1,4 @@ peopletag->homeUrl(); @@ -173,7 +169,8 @@ class PeopletagListItem extends Widget array('href' => common_local_url('peopletagged', array('tagger' => $this->profile->nickname, 'tag' => $this->peopletag->tag))), - _('Tagged')); + // TRANS: Link description for link to list of users tagged with a tag (so part of a list). + _('Listed')); $this->out->raw($this->peopletag->taggedCount()); $this->out->elementEnd('span'); @@ -182,6 +179,7 @@ class PeopletagListItem extends Widget array('href' => common_local_url('peopletagsubscribers', array('tagger' => $this->profile->nickname, 'tag' => $this->peopletag->tag))), + // TRANS: Link description for link to list of users subscribed to a tag. _('Subscribers')); $this->out->raw($this->peopletag->subscriberCount()); $this->out->elementEnd('span'); @@ -194,7 +192,9 @@ class PeopletagListItem extends Widget $this->out->element('a', array('href' => common_local_url('editpeopletag', array('tagger' => $this->profile->nickname, 'tag' => $this->peopletag->tag)), - 'title' => _('Edit peopletag settings')), + // TRANS: Title for link to edit list settings. + 'title' => _('Edit list settings.')), + // TRANS: Text for link to edit list settings. _('Edit')); $this->out->elementEnd('li'); } @@ -256,7 +256,8 @@ class PeopletagListItem extends Widget $this->out->elementStart('a', array('href' => common_local_url('peopletagsbyuser', array('nickname' => $this->profile->nickname, 'private' => 1)))); - $this->out->element('span', 'privacy_mode', _('Private')); + // TRANS: Privacy mode text in list list item for private list. + $this->out->element('span', 'privacy_mode', _m('MODE','Private')); $this->out->elementEnd('a'); } }