people tag -> list
This commit is contained in:
parent
271881d4dc
commit
049f23cdb3
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* StatusNet, the distributed open-source microblogging tool
|
* StatusNet, the distributed open-source microblogging tool
|
||||||
*
|
*
|
||||||
* People tags by a user
|
* Lists by a user
|
||||||
*
|
*
|
||||||
* PHP version 5
|
* PHP version 5
|
||||||
*
|
*
|
||||||
|
@ -52,13 +52,13 @@ class PeopletagAction extends Action
|
||||||
function title()
|
function title()
|
||||||
{
|
{
|
||||||
if ($this->page == 1) {
|
if ($this->page == 1) {
|
||||||
// TRANS: Title for people tag page.
|
// TRANS: Title for list page.
|
||||||
// TRANS: %s is a tag.
|
// TRANS: %s is a list.
|
||||||
return sprintf(_('Public people tag %s'), $this->tag);
|
return sprintf(_('Public list %s'), $this->tag);
|
||||||
} else {
|
} else {
|
||||||
// TRANS: Title for people tag page.
|
// TRANS: Title for list page.
|
||||||
// TRANS: %1$s is a tag, %2$d is a page number.
|
// TRANS: %1$s is a list, %2$d is a page number.
|
||||||
return sprintf(_('Public people tag %1$s, page %2$d'), $this->tag, $this->page);
|
return sprintf(_('Public list %1$s, page %2$d'), $this->tag, $this->page);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -100,14 +100,14 @@ class PeopletagAction extends Action
|
||||||
function showAnonymousMessage()
|
function showAnonymousMessage()
|
||||||
{
|
{
|
||||||
$notice =
|
$notice =
|
||||||
// TRANS: Message for anonymous users on people tag page.
|
// TRANS: Message for anonymous users on list page.
|
||||||
// TRANS: This message contains Markdown links in the form [description](link).
|
// TRANS: This message contains Markdown links in the form [description](link).
|
||||||
_('People tags are how you sort similar ' .
|
_('Lists are how you sort similar ' .
|
||||||
'people on %%site.name%%, a [micro-blogging]' .
|
'people on %%site.name%%, a [micro-blogging]' .
|
||||||
'(http://en.wikipedia.org/wiki/Micro-blogging) service ' .
|
'(http://en.wikipedia.org/wiki/Micro-blogging) service ' .
|
||||||
'based on the Free Software [StatusNet](http://status.net/) tool. ' .
|
'based on the Free Software [StatusNet](http://status.net/) tool. ' .
|
||||||
'You can then easily keep track of what they ' .
|
'You can then easily keep track of what they ' .
|
||||||
'are doing by subscribing to the tag\'s timeline.' );
|
'are doing by subscribing to the list\'s timeline.' );
|
||||||
$this->elementStart('div', array('id' => 'anon_notice'));
|
$this->elementStart('div', array('id' => 'anon_notice'));
|
||||||
$this->raw(common_markup_to_html($notice));
|
$this->raw(common_markup_to_html($notice));
|
||||||
$this->elementEnd('div');
|
$this->elementEnd('div');
|
||||||
|
|
Loading…
Reference in New Issue
Block a user