]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix broken translator documentation because "// TRANS: " is not exactly in the line...
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 19 Aug 2011 14:50:31 +0000 (16:50 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 19 Aug 2011 14:50:31 +0000 (16:50 +0200)
Whitespace updates.

plugins/OMB/OMBPlugin.php
plugins/OMB/README

index 38494c8134c1e37db63810d2d58726b62f89781e..c532c4c8940f1850de2b99c0a6187e04558ce024 100644 (file)
@@ -228,16 +228,14 @@ class OMBPlugin extends Plugin
         $omb01 = Remote_profile::staticGet('id', $other_id);
 
         if (!empty($omb01)) {
-            // TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
             throw new ClientException(
-                _m(
-                    'You cannot subscribe to an OMB 0.1 '
+                // TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+                _m('You cannot subscribe to an OMB 0.1 '
                     . 'remote profile with this action.'
                 )
             );
             return false;
         }
-
     }
 
     /**
@@ -257,10 +255,9 @@ class OMBPlugin extends Plugin
         $omb01 = Remote_profile::staticGet('id', $tagged_profile->id);
 
         if (!empty($omb01)) {
-            // TRANS: Client error displayed when trying to add an OMB 0.1 remote profile to a list.
             $this->clientError(
-                _m(
-                    'You cannot list an OMB 0.1 '
+                // TRANS: Client error displayed when trying to add an OMB 0.1 remote profile to a list.
+                _m('You cannot list an OMB 0.1 '
                    .'remote profile with this action.')
             );
         }
@@ -282,10 +279,9 @@ class OMBPlugin extends Plugin
         $omb01 = Remote_profile::staticGet('id', $ptag->tagged);
 
         if (!empty($omb01)) {
-            // TRANS: Client error displayed when trying to (un)list an OMB 0.1 remote profile.
             $this->clientError(
-                _m(
-                    'You cannot (un)list an OMB 0.1 '
+                // TRANS: Client error displayed when trying to (un)list an OMB 0.1 remote profile.
+                _m('You cannot (un)list an OMB 0.1 '
                     . 'remote profile with this action.')
             );
             return false;
@@ -317,8 +313,8 @@ class OMBPlugin extends Plugin
 
                 if (!$result) {
                     common_log_db_error($token, 'DELETE', __FILE__);
-                    // TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server.
                     throw new Exception(
+                        // TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server.
                         _m('Could not delete subscription OMB token.')
                     );
                 }
@@ -394,12 +390,10 @@ class OMBPlugin extends Plugin
             'version'        => STATUSNET_VERSION,
             'author'         => 'Zach Copley',
             'homepage'       => 'http://status.net/wiki/Plugin:Sample',
-            'rawdescription' =>
             // TRANS: Plugin description.
-            _m('A sample plugin to show basics of development for new hackers.')
+            'rawdescription' => _m('A sample plugin to show basics of development for new hackers.')
         );
 
         return true;
     }
 }
-
index 839eb4e33ad83d46e04cd5e272e7bb58194edf47..f296e38ff67fc8aa3a5094f8b55a65271d50198d 100644 (file)
@@ -28,4 +28,3 @@ Note: once you have a sizable number of users, sending OMB messages whenever
 someone posts a message can really slow down your site; it may cause posting
 to timeout. You may wish to enable queuing and handle OMB communication
 offline. See the "queues and daemons" section of the main StatusNet README.
-