]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
L10n and whitespace updates.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Wed, 6 Apr 2011 13:08:39 +0000 (15:08 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Wed, 6 Apr 2011 13:08:39 +0000 (15:08 +0200)
plugins/AnonymousFave/AnonymousFavePlugin.php
plugins/AnonymousFave/Fave_tally.php
plugins/AnonymousFave/anonfavor.php
plugins/ApiLogger/ApiLoggerPlugin.php

index 917f5a7e8c2f60bed7a38f7d4d1feed8b89bd338..af6ea20bd315fb32cb78a3d4ce0f04029236bf54 100644 (file)
@@ -235,7 +235,7 @@ class AnonymousFavePlugin extends Plugin
 
         if (!$id) {
             // TRANS: Server exception.
-            throw new ServerException(_m("Couldn't create anonymous user session."));
+            throw new ServerException(_m("Could not create anonymous user session."));
         }
 
         // Stick the Profile ID into the nickname
@@ -246,7 +246,7 @@ class AnonymousFavePlugin extends Plugin
 
         if (!$result) {
             // TRANS: Server exception.
-            throw new ServerException(_m("Couldn't create anonymous user session."));
+            throw new ServerException(_m("Could not create anonymous user session."));
         }
 
         common_log(
index f48a1e82b313f7cf5e342a650b2f3eb7f423c16e..7a44c2350ded41b77920e92962a12e5d79f05f9b 100644 (file)
@@ -152,7 +152,7 @@ class Fave_tally extends Memcached_DataObject
             $msg = sprintf(
                 // TRANS: Server exception.
                 // TRANS: %d is the notice ID (number).
-                _m("Couldn't update favorite tally for notice ID %d."),
+                _m("Could not update favorite tally for notice ID %d."),
                 $noticeID
             );
             throw new ServerException($msg);
@@ -181,7 +181,7 @@ class Fave_tally extends Memcached_DataObject
                 $msg = sprintf(
                     // TRANS: Server exception.
                     // TRANS: %d is the notice ID (number).
-                    _m("Couldn't update favorite tally for notice ID %d."),
+                    _m("Could not update favorite tally for notice ID %d."),
                     $noticeID
                 );
                 throw new ServerException($msg);
@@ -212,7 +212,7 @@ class Fave_tally extends Memcached_DataObject
                 $msg = sprintf(
                     // TRANS: Server exception.
                     // TRANS: %d is the notice ID (number).
-                    _m("Couldn't create favorite tally for notice ID %d."),
+                    _m("Could not create favorite tally for notice ID %d."),
                     $noticeID
                 );
                 throw new ServerException($msg);
index ad13525a0746a0bdbc7efa49e0c7ec66c27af84b..f20d55a8631ebb181f90586b3e312f73a6100553 100644 (file)
@@ -57,7 +57,7 @@ class AnonFavorAction extends RedirectingAction
 
         if (empty($profile) || $_SERVER['REQUEST_METHOD'] != 'POST') {
             // TRANS: Client error.
-            $this->clientError( _m('Could not favor notice! Please make sure your browser has cookies enabled.')
+            $this->clientError(_m('Could not favor notice! Please make sure your browser has cookies enabled.')
             );
             return;
         }
index a35fce7c5504ef8b15883ed8a239bb4c5c1675e5..bea78f78a3f86f7d17e0f1e104561e86c2cefa46 100644 (file)
@@ -83,7 +83,7 @@ class ApiLoggerPlugin extends Plugin
                             'homepage' => 'http://status.net/wiki/Plugin:ApiLogger',
                             'rawdescription' =>
                             // TRANS: Plugin description.
-                            _m('Logging of API requests.'));
+                            _m('Allows random sampling of API requests.'));
         return true;
     }
 }