X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Frepliesrss.php;h=e512cf2b8a95e08528ad292b9d5e22f3083ff1ec;hb=575f70545171f6f5c94214ce88e5b07a1f517810;hp=549182fb900033e94afe62564d29d76e7e95d432;hpb=87b494f1ebbe7640d194ef322af12fdf378295df;p=quix0rs-gnu-social.git diff --git a/actions/repliesrss.php b/actions/repliesrss.php index 549182fb90..e512cf2b8a 100644 --- a/actions/repliesrss.php +++ b/actions/repliesrss.php @@ -32,7 +32,7 @@ class RepliesrssAction extends Rss10Action { $this->user = User::staticGet('nickname', $nickname); if (!$this->user) { - common_user_error(_('No such nickname.')); + common_user_error(_('No such user.')); return false; } else { return true; @@ -77,7 +77,7 @@ class RepliesrssAction extends Rss10Action { 'link' => common_local_url('replies', array('nickname' => $user->nickname)), - 'description' => sprintf(_('Feed for replies to '), $user->nickname)); + 'description' => sprintf(_('Feed for replies to %s'), $user->nickname)); return $c; }