]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Sample/hello.php
Localisation updates from http://translatewiki.net.
[quix0rs-gnu-social.git] / plugins / Sample / hello.php
index a793ac6de2c98948a13c7268c7cad6312c85a446..da5682b332a0b4e6eadace042f393b725a049df5 100644 (file)
@@ -108,8 +108,10 @@ class HelloAction extends Action
     function title()
     {
         if (empty($this->user)) {
+            // TRANS: Page title for sample plugin.
             return _m('Hello');
         } else {
+            // TRANS: Page title for sample plugin. %s is a user nickname.
             return sprintf(_m('Hello, %s!'), $this->user->nickname);
         }
     }
@@ -130,11 +132,15 @@ class HelloAction extends Action
     {
         if (empty($this->user)) {
             $this->element('p', array('class' => 'greeting'),
+                           // TRANS: Message in sample plugin.
                            _m('Hello, stranger!'));
         } else {
             $this->element('p', array('class' => 'greeting'),
+                           // TRANS: Message in sample plugin. %s is a user nickname.
                            sprintf(_m('Hello, %s'), $this->user->nickname));
             $this->element('p', array('class' => 'greeting_count'),
+                           // TRANS: Message in sample plugin.
+                           // TRANS: %d is the number of times a user is greeted.
                            sprintf(_m('I have greeted you %d time.',
                                       'I have greeted you %d times.',
                                       $this->gc->greeting_count),