X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fapitimelineretweetsofme.php;h=03137e7a9a09d26dc4746b301d84b7a8176f9977;hb=bce337e7c31c2badf34a3af99da6fc2158eedddd;hp=aec6877f1585102d954750c3ca350d5ac9aff020;hpb=325cb4833db7e3fd396720f12a27b880b63f4173;p=quix0rs-gnu-social.git diff --git a/actions/apitimelineretweetsofme.php b/actions/apitimelineretweetsofme.php index aec6877f15..03137e7a9a 100644 --- a/actions/apitimelineretweetsofme.php +++ b/actions/apitimelineretweetsofme.php @@ -101,6 +101,8 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction $profile = $this->auth_user->getProfile(); $subtitle = sprintf( + // TRANS: Subtitle of API time with retweets of me. + // TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. _('%1$s notices that %2$s / %3$s has repeated.'), $sitename, $this->auth_user->nickname, $profile->getBestName() ); @@ -135,7 +137,7 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction $this->raw($atom->getString()); break; case 'as': - header('Content-Type: application/json; charset=utf-8'); + header('Content-Type: ' . ActivityStreamJSONDocument::CONTENT_TYPE); $doc = new ActivityStreamJSONDocument($this->auth_user); $doc->setTitle($title); $doc->addLink($link, 'alternate', 'text/html'); @@ -143,7 +145,7 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), 404); break; }