]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Translator documentation added.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Wed, 6 Apr 2011 21:43:30 +0000 (23:43 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Wed, 6 Apr 2011 21:43:52 +0000 (23:43 +0200)
Whitespace updates.

plugins/Directory/DirectoryPlugin.php
plugins/DiskCache/DiskCachePlugin.php

index cba75802e5f3ad235af2488c5302af8dfd6b7c9a..4fe1eaec9eb6fb9aac50109eb94728aeeb27d7d9 100644 (file)
@@ -44,7 +44,6 @@ if (!defined('STATUSNET')) {
  */
 class DirectoryPlugin extends Plugin
 {
-
     private $dir = null;
 
     /**
@@ -165,8 +164,10 @@ class DirectoryPlugin extends Plugin
 
         $nav->out->menuItem(
             common_local_url('userdirectory'),
-            _m('Directory'),
-            _m('User Directory'),
+            // TRANS: Menu item text for user directory.
+            _m('MENU','Directory'),
+            // TRANS: Menu item title for user directory.
+            _m('User Directory.'),
             $actionName == 'userdirectory',
             'nav_directory'
         );
@@ -184,6 +185,7 @@ class DirectoryPlugin extends Plugin
             'version' => STATUSNET_VERSION,
             'author' => 'Zach Copley',
             'homepage' => 'http://status.net/wiki/Plugin:Directory',
+            // TRANS: Plugin description.
             'rawdescription' => _m('Add a user directory.')
         );
 
index 47d4b153cf6dff5335293516cea21a2e9d852cf5..d021a6641aa7dba0e025ab6620b1e6307f68be17 100644 (file)
@@ -44,7 +44,6 @@ if (!defined('STATUSNET')) {
  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  * @link      http://status.net/
  */
-
 class DiskCachePlugin extends Plugin
 {
     var $root = '/tmp';
@@ -64,7 +63,6 @@ class DiskCachePlugin extends Plugin
      *
      * @return boolean hook success
      */
-
     function onStartCacheGet(&$key, &$value)
     {
         $filename = $this->keyToFilename($key);
@@ -91,7 +89,6 @@ class DiskCachePlugin extends Plugin
      *
      * @return boolean hook success
      */
-
     function onStartCacheSet(&$key, &$value, &$flag, &$expiry, &$success)
     {
         $filename = $this->keyToFilename($key);
@@ -152,7 +149,6 @@ class DiskCachePlugin extends Plugin
      *
      * @return boolean hook success
      */
-
     function onStartCacheDelete(&$key, &$success)
     {
         $filename = $this->keyToFilename($key);
@@ -172,6 +168,7 @@ class DiskCachePlugin extends Plugin
                             'author' => 'Evan Prodromou',
                             'homepage' => 'http://status.net/wiki/Plugin:DiskCache',
                             'rawdescription' =>
+                            // TRANS: Plugin description.
                             _m('Plugin to implement cache interface with disk files.'));
         return true;
     }