]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add translator hints.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Sat, 18 Sep 2010 10:05:27 +0000 (12:05 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Sat, 18 Sep 2010 10:05:27 +0000 (12:05 +0200)
plugins/AutoSandbox/AutoSandboxPlugin.php
plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php

index 870eda86f2809673b8e4ef2149c93acc59db6a01..16683e1402589421d9cea0ff73c92f48c3c46b18 100644 (file)
@@ -75,6 +75,7 @@ class AutoSandboxPlugin extends Plugin
              $contactuser = User::staticGet('nickname', $this->contact);
              if (!empty($contactuser)) {
                  $contactlink = "@<a href=\"$contactuser->uri\">$contactuser->nickname</a>";
+                 // TRANS: $contactlink is a clickable e-mailaddress.
                  $instr = _m("Note you will initially be \"sandboxed\" so your posts will not appear in the public timeline. ".
                    'Send a message to $contactlink to speed up the unsandboxing process.');
              }
index fb4eff73894c0791aa37d6de96379a051ba58782..f2e2fcbafe0ab0082edddcc7f2cb9f555aed1ef4 100644 (file)
@@ -47,6 +47,7 @@ class PoweredByStatusNetPlugin extends Plugin
     {
         $action->text(' ');
         $action->elementStart('span', 'poweredby');
+        // TRANS: %s is a URL to status.net with "StatusNet" (localised) as link text.
         $action->raw(sprintf(_m('powered by %s'),
                      sprintf('<a href="http://status.net/">%s</a>',
                              _m('StatusNet'))));
@@ -62,7 +63,7 @@ class PoweredByStatusNetPlugin extends Plugin
                             'author' => 'Sarven Capadisli',
                             'homepage' => 'http://status.net/wiki/Plugin:PoweredByStatusNet',
                             'rawdescription' =>
-                            _m('Outputs powered by <a href="http://status.net/">StatusNet</a> after site name.'));
+                            _m('Outputs "powered by <a href="http://status.net/">StatusNet</a>" after site name.'));
         return true;
     }
 }