diff options
author | Ori Avtalion <ori@avtalion.name> | 2009-05-01 07:11:28 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-05-01 07:11:28 -0400 |
commit | 9cac6413a342445a998773458b215d129c2be2d1 (patch) | |
tree | 30fb50068b77b013ff2d5b0f33bcd433a715579b | |
parent | 8a142b272c87678268106df48497b90664be323a (diff) |
Add s to user favorite notices
-rw-r--r-- | actions/favoritesrss.php | 2 | ||||
-rw-r--r-- | actions/showfavorites.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/actions/favoritesrss.php b/actions/favoritesrss.php index f85bf1b19..6b46b8dec 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 6e011d5ca..eed62a2ab 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); } |