]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Update translator documentation.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Wed, 6 Apr 2011 12:57:48 +0000 (14:57 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Wed, 6 Apr 2011 12:57:48 +0000 (14:57 +0200)
i18n/L10n fixes.
Superfluous whitespace removed.
onPluginVersion() added where missing.

plugins/APC/APCPlugin.php
plugins/AccountManager/AccountManagerPlugin.php
plugins/Adsense/adsenseadminpanel.php
plugins/ApiLogger/ApiLoggerPlugin.php
plugins/Autocomplete/AutocompletePlugin.php
plugins/Autocomplete/autocomplete.php

index 0069779004e3ca1f131149b8d660f7076ea45e7a..851a4b4abce449486fd4fa71c7abc5dba2e1c82a 100644 (file)
@@ -60,7 +60,6 @@ class APCPlugin extends Plugin
      *
      * @return boolean hook success
      */
-
     function onStartCacheGet(&$key, &$value)
     {
         $value = apc_fetch($key);
@@ -79,7 +78,6 @@ class APCPlugin extends Plugin
      *
      * @return boolean hook success
      */
-
     function onStartCacheSet(&$key, &$value, &$flag, &$expiry, &$success)
     {
         $success = apc_store($key, $value, ((is_null($expiry)) ? 0 : $expiry));
@@ -97,7 +95,6 @@ class APCPlugin extends Plugin
      *
      * @return boolean hook success
      */
-
     function onStartCacheDelete(&$key, &$success)
     {
         $success = apc_delete($key);
@@ -112,6 +109,7 @@ class APCPlugin extends Plugin
                             'author' => 'Evan Prodromou',
                             'homepage' => 'http://status.net/wiki/Plugin:APC',
                             'rawdescription' =>
+                            // TRANS: Plugin description.
                             _m('Use the <a href="http://pecl.php.net/package/apc">APC</a> variable cache to cache query results.'));
         return true;
     }
index 9563252c7363b48c2d17af84e6fa24e5f335975b..3b399af8c8fdf11ac73c9ecf19e52fdca8af624c 100644 (file)
@@ -107,6 +107,7 @@ class AccountManagerPlugin extends Plugin
                             'author' => 'Craig Andrews',
                             'homepage' => 'http://status.net/wiki/Plugin:AccountManager',
                             'rawdescription' =>
+                            // TRANS: Plugin description.
                             _m('The Account Manager plugin implements the Account Manager specification.'));
         return true;
     }
index 224c82b2fc1f85fceb634a0378bf95d19ccfb596..8a5c0cf07e12f398be6a75595b1b419f78cbe1fc 100644 (file)
@@ -49,6 +49,7 @@ class AdsenseadminpanelAction extends AdminPanelAction
      */
     function title()
     {
+        // TRANS: Title of AdSense administrator panel.
         return _m('TITLE', 'AdSense');
     }
 
@@ -59,6 +60,7 @@ class AdsenseadminpanelAction extends AdminPanelAction
      */
     function getInstructions()
     {
+        // TRANS: Instructions for AdSense administrator panel.
         return _m('AdSense settings for this StatusNet site');
     }
 
index deb54008e54d10d8661262de8a6327cf54881d9b..a35fce7c5504ef8b15883ed8a239bb4c5c1675e5 100644 (file)
@@ -74,4 +74,16 @@ class ApiLoggerPlugin extends Plugin
         }
         return true;
     }
+
+    function onPluginVersion(&$versions)
+    {
+        $versions[] = array('name' => 'ApiLogger',
+                            'version' => STATUSNET_VERSION,
+                            'author' => 'Brion Vibber',
+                            'homepage' => 'http://status.net/wiki/Plugin:ApiLogger',
+                            'rawdescription' =>
+                            // TRANS: Plugin description.
+                            _m('Logging of API requests.'));
+        return true;
+    }
 }
index 1479ead602995935018cdbaa7093ccc4aa7bf670..9a015dd7048868b3a4e7eee6cb7f42abb526155d 100644 (file)
@@ -79,6 +79,7 @@ class AutocompletePlugin extends Plugin
                             'author' => 'Craig Andrews',
                             'homepage' => 'http://status.net/wiki/Plugin:Autocomplete',
                             'rawdescription' =>
+                            // TRANS: Plugin description.
                             _m('The autocomplete plugin allows users to autocomplete screen names in @ replies. When an "@" is typed into the notice text area, an autocomplete box is displayed populated with the user\'s friend\' screen names.'));
         return true;
     }
index e15e95ec19abd2c7da8c27362497593701b1dbe9..0bb1b783dbc6b9fa51c753d721ca9e9c6c470dc0 100644 (file)
@@ -94,7 +94,8 @@ class AutocompleteAction extends Action
 
         $cur = common_current_user();
         if (!$cur) {
-            throw new ClientException('Access forbidden', true);
+            // TRANS: Client exception in autocomplete plugin.
+            throw new ClientException(_m('Access forbidden.'), true);
         }
         $this->groups=array();
         $this->users=array();