From: Ori Avtalion <ori@avtalion.name>
Date: Fri, 1 May 2009 11:11:28 +0000 (-0400)
Subject: Add s to user favorite notices
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9cac6413a342445a998773458b215d129c2be2d1;p=quix0rs-gnu-social.git

Add s to user favorite notices
---

diff --git a/actions/favoritesrss.php b/actions/favoritesrss.php
index f85bf1b190..6b46b8dec7 100644
--- a/actions/favoritesrss.php
+++ b/actions/favoritesrss.php
@@ -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)),
diff --git a/actions/showfavorites.php b/actions/showfavorites.php
index 6e011d5ca5..eed62a2ab3 100644
--- a/actions/showfavorites.php
+++ b/actions/showfavorites.php
@@ -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);
         }