]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Confusing documentation and tooltip texts in Bookmark
authorMikael Nordfeldth <mmn@hethane.se>
Sat, 28 Jun 2014 11:02:52 +0000 (13:02 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Sat, 28 Jun 2014 11:02:52 +0000 (13:02 +0200)
plugins/Bookmark/actions/apitimelinebookmarks.php
plugins/Bookmark/actions/bookmarks.php

index 01ef20a8c83c4a6aa20f0ae2043c8548ac9c70c3..ee43617127630e4859cf2bce4229063f19db424f 100644 (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
index 23ef0ec5fc1d5942256ae825b7a933e179b755e1..6c79fa1d024ecdacac30111a3780964f1455974e 100644 (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)));
     }