/**
* StatusNet, the distributed open-source microblogging tool
*
- * Show a user's favorite notices
+ * Show a user's bookmark activities
*
* PHP version 5
*
}
/**
- * 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.
*
* @category API
'id' => $this->user->nickname,
'format' => 'as')),
// 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)),
new Feed(Feed::RSS1,
common_local_url('bookmarksrss',
array('nickname' => $this->user->nickname)),
// 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)),
new Feed(Feed::RSS2,
common_local_url('ApiTimelineBookmarks',
'id' => $this->user->nickname,
'format' => 'rss')),
// 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)),
new Feed(Feed::ATOM,
common_local_url('ApiTimelineBookmarks',
'id' => $this->user->nickname,
'format' => 'atom')),
// 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)));
}