X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=actions%2Fuserrss.php;h=b7078fcaf886a2967a11cc3d2b058b89cf6f37c2;hb=f2d6e1e375410bee0efc90c80b1e74699a4c6b7d;hp=8f597e625903558468a9e324e04fc8b71a9eb718;hpb=7303acf7adbfd57aabcad095154ee48968e75e3b;p=quix0rs-gnu-social.git diff --git a/actions/userrss.php b/actions/userrss.php index 8f597e6259..b7078fcaf8 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -90,8 +90,10 @@ class UserrssAction extends Rss10Action $c = array('url' => common_local_url('userrss', array('nickname' => $user->nickname)), + // TRANS: Message is used as link title. %s is a user nickname. 'title' => sprintf(_('%s timeline'), $user->nickname), 'link' => $profile->profileurl, + // TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. 'description' => sprintf(_('Updates from %1$s on %2$s!'), $user->nickname, common_config('site', 'name'))); return $c; @@ -103,7 +105,7 @@ class UserrssAction extends Rss10Action $profile = $user->getProfile(); if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); - $this->serverError(_('User without matching profile')); + $this->serverError(_('User without matching profile.')); return null; } $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);