]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/apitimelineretweetedtome.php
Merge branch '1.0.x' into testing
[quix0rs-gnu-social.git] / actions / apitimelineretweetedtome.php
index b9f9be1dda0151a89b8190155064435a39db5d6d..ef943f4f88fc78c9f943338b07e2bc607d1afc8f 100644 (file)
@@ -95,6 +95,9 @@ class ApiTimelineRetweetedToMeAction extends ApiAuthAction
         // TRANS: Title for Atom feed "repeated to me". %s is the user nickname.
         $title      = sprintf(_("Repeated to %s"), $this->auth_user->nickname);
         $subtitle   = sprintf(
+            // @todo FIXME: $profile is not defined.
+            // TRANS: Subtitle for API action that shows most recent notices that are repeats in user's inbox.
+            // TRANS: %1$s is the sitename, %2$s is a user nickname, %3$s is a user profile name.
             _('%1$s notices that were to repeated to %2$s / %3$s.'),
             $sitename, $this->user->nickname, $profile->getBestName()
         );
@@ -143,7 +146,7 @@ class ApiTimelineRetweetedToMeAction 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.'), $code = 404);
             break;
         }