diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-05-01 08:00:41 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-05-01 08:00:41 -0700 |
commit | 1a61a171cdb39444e2c0fbed7cf3a92e0ec271df (patch) | |
tree | edf2eb852163f3806d813ac6292ab67be1aed40f /actions/showfavorites.php | |
parent | a86a0e91a5acb5ea894a3d066f9adf3b1ef305ae (diff) | |
parent | 19a21947046062fc0cc313b23ae7418d317def89 (diff) |
Merge branch '0.7.x' into cometplugin
Diffstat (limited to 'actions/showfavorites.php')
-rw-r--r-- | actions/showfavorites.php | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |