]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add s to user favorite notices
authorOri Avtalion <ori@avtalion.name>
Fri, 1 May 2009 11:11:28 +0000 (07:11 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Fri, 1 May 2009 11:11:28 +0000 (07:11 -0400)
actions/favoritesrss.php
actions/showfavorites.php

index f85bf1b19002f288a04fd2175ee7c94f6f4c5435..6b46b8dec7ecf94b94667aa81173a907b66b9257 100644 (file)
@@ -107,7 +107,7 @@ class FavoritesrssAction extends Rss10Action
         $c    = array('url' => common_local_url('favoritesrss',
                                         array('nickname' =>
                                         $user->nickname)),
-                   'title' => sprintf(_("%s favorite notices"), $user->nickname),
+                   'title' => sprintf(_("%s's favorite notices"), $user->nickname),
                    'link' => common_local_url('showfavorites',
                                         array('nickname' =>
                                         $user->nickname)),
index 6e011d5ca528e22771825f01cee0c61e44c3eea7..eed62a2ab308f79dfdb318ee61cbebf338367d72 100644 (file)
@@ -74,9 +74,9 @@ class ShowfavoritesAction extends Action
     function title()
     {
         if ($this->page == 1) {
-            return sprintf(_("%s favorite notices"), $this->user->nickname);
+            return sprintf(_("%s's favorite notices"), $this->user->nickname);
         } else {
-            return sprintf(_("%s favorite notices, page %d"),
+            return sprintf(_("%s's favorite notices, page %d"),
                            $this->user->nickname,
                            $this->page);
         }