Confusing documentation and tooltip texts in Bookmark

This commit is contained in:
Mikael Nordfeldth 2014-06-28 13:02:52 +02:00
parent 7642f008fb
commit c137ead909
2 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
/**
* StatusNet, the distributed open-source microblogging tool
*
* Show a user's favorite notices
* Show a user's bookmark activities
*
* 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.
*
* @category API

View File

@ -145,13 +145,13 @@ class BookmarksAction extends Action
'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',
@ -159,7 +159,7 @@ class BookmarksAction extends Action
'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',
@ -167,7 +167,7 @@ class BookmarksAction extends Action
'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)));
}