Confusing documentation and tooltip texts in Bookmark
This commit is contained in:
parent
7642f008fb
commit
c137ead909
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* StatusNet, the distributed open-source microblogging tool
|
* StatusNet, the distributed open-source microblogging tool
|
||||||
*
|
*
|
||||||
* Show a user's favorite notices
|
* Show a user's bookmark activities
|
||||||
*
|
*
|
||||||
* PHP version 5
|
* PHP version 5
|
||||||
*
|
*
|
||||||
|
@ -35,7 +35,7 @@ if (!defined('STATUSNET')) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the 20 most recent favorite notices for the authenticating user or user
|
* Returns the most recent bookmark activities for the authenticating user or user
|
||||||
* specified by the ID parameter in the requested format.
|
* specified by the ID parameter in the requested format.
|
||||||
*
|
*
|
||||||
* @category API
|
* @category API
|
||||||
|
|
|
@ -145,13 +145,13 @@ class BookmarksAction extends Action
|
||||||
'id' => $this->user->nickname,
|
'id' => $this->user->nickname,
|
||||||
'format' => 'as')),
|
'format' => 'as')),
|
||||||
// TRANS: Feed link text. %s is a username.
|
// TRANS: Feed link text. %s is a username.
|
||||||
sprintf(_('Feed for favorites of %s (Activity Streams JSON)'),
|
sprintf(_('Feed for bookmarks of %s (Activity Streams JSON)'),
|
||||||
$this->user->nickname)),
|
$this->user->nickname)),
|
||||||
new Feed(Feed::RSS1,
|
new Feed(Feed::RSS1,
|
||||||
common_local_url('bookmarksrss',
|
common_local_url('bookmarksrss',
|
||||||
array('nickname' => $this->user->nickname)),
|
array('nickname' => $this->user->nickname)),
|
||||||
// TRANS: Feed link text. %s is a username.
|
// TRANS: Feed link text. %s is a username.
|
||||||
sprintf(_('Feed for favorites of %s (RSS 1.0)'),
|
sprintf(_('Feed for bookmarks of %s (RSS 1.0)'),
|
||||||
$this->user->nickname)),
|
$this->user->nickname)),
|
||||||
new Feed(Feed::RSS2,
|
new Feed(Feed::RSS2,
|
||||||
common_local_url('ApiTimelineBookmarks',
|
common_local_url('ApiTimelineBookmarks',
|
||||||
|
@ -159,7 +159,7 @@ class BookmarksAction extends Action
|
||||||
'id' => $this->user->nickname,
|
'id' => $this->user->nickname,
|
||||||
'format' => 'rss')),
|
'format' => 'rss')),
|
||||||
// TRANS: Feed link text. %s is a username.
|
// TRANS: Feed link text. %s is a username.
|
||||||
sprintf(_('Feed for favorites of %s (RSS 2.0)'),
|
sprintf(_('Feed for bookmarks of %s (RSS 2.0)'),
|
||||||
$this->user->nickname)),
|
$this->user->nickname)),
|
||||||
new Feed(Feed::ATOM,
|
new Feed(Feed::ATOM,
|
||||||
common_local_url('ApiTimelineBookmarks',
|
common_local_url('ApiTimelineBookmarks',
|
||||||
|
@ -167,7 +167,7 @@ class BookmarksAction extends Action
|
||||||
'id' => $this->user->nickname,
|
'id' => $this->user->nickname,
|
||||||
'format' => 'atom')),
|
'format' => 'atom')),
|
||||||
// TRANS: Feed link text. %s is a username.
|
// TRANS: Feed link text. %s is a username.
|
||||||
sprintf(_('Feed for favorites of %s (Atom)'),
|
sprintf(_('Feed for bookmarks of %s (Atom)'),
|
||||||
$this->user->nickname)));
|
$this->user->nickname)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user