X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Ffavor.php;h=61db235738976a00901c9d9eaa842683329e3db7;hb=15686cdf56bbb6eb39f80422579c273e8ae5ffad;hp=01976a38f5999ee89fc2342d5a9aee4d72adae79;hpb=e10621a52ae25bbcde8bdf381ef4f5b9b85dc48d;p=quix0rs-gnu-social.git diff --git a/actions/favor.php b/actions/favor.php index 01976a38f5..61db235738 100644 --- a/actions/favor.php +++ b/actions/favor.php @@ -1,5 +1,4 @@ clientError(_('Not logged in.')); return; } @@ -76,11 +76,13 @@ class FavorAction extends Action return; } if ($user->hasFave($notice)) { + // TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite. $this->clientError(_('This notice is already a favorite!')); return; } $fave = Fave::addNew($user->getProfile(), $notice); if (!$fave) { + // TRANS: Server error displayed when trying to mark a notice as favorite fails in the database. $this->serverError(_('Could not create favorite.')); return; } @@ -89,7 +91,8 @@ class FavorAction extends Action if ($this->boolean('ajax')) { $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); - $this->element('title', null, _('Disfavor favorite')); + // TRANS: Page title for page on which favorite notices can be unfavourited. + $this->element('title', null, _('Disfavor favorite.')); $this->elementEnd('head'); $this->elementStart('body'); $disfavor = new DisFavorForm($this, $notice); @@ -123,4 +126,3 @@ class FavorAction extends Action } } } -