]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
* i18n/L10n and translator documentation updates.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Tue, 28 Sep 2010 21:21:09 +0000 (23:21 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Tue, 28 Sep 2010 21:21:09 +0000 (23:21 +0200)
* whitespace and indentation updates

25 files changed:
classes/Avatar.php
classes/Consumer.php
classes/Conversation.php
classes/Fave.php
classes/File.php
classes/File_oembed.php
classes/File_redirection.php
classes/File_thumbnail.php
classes/File_to_post.php
classes/Foreign_link.php
classes/Foreign_service.php
classes/Foreign_subscription.php
classes/Foreign_user.php
classes/Group_block.php
classes/Group_inbox.php
classes/Group_member.php
classes/Inbox.php
classes/Invitation.php
classes/Memcached_DataObject.php
classes/Message.php
classes/Nonce.php
classes/Notice.php
classes/Notice_source.php
classes/Oauth_application.php
classes/Oauth_application_user.php

index dbe2cd813847eb585f94999b595e2f495ab0d03b..6edc81768551e00780ae2cb3b2803bb94ab0bd82 100644 (file)
@@ -42,8 +42,9 @@ class Avatar extends Memcached_DataObject
         return Memcached_DataObject::pkeyGet('Avatar', $kv);
     }
 
-    // where should the avatar go for this user?
-
+    /**
+     * Where should the avatar go for this user?
+     */
     static function filename($id, $extension, $size=null, $extra=null)
     {
         if ($size) {
index ce399f2783f7e965b59ecc85effe0078f696193c..c1090b85a37674bdf0615b95776baad9f08b69b9 100644 (file)
@@ -65,5 +65,4 @@ class Consumer extends Memcached_DataObject
         $nonce->consumer_key = $this->consumer_key;
         $nonce->delete();
     }
-
 }
index f540004ef39b6f9de2c7299ad80fbcd492626aff..aab55723f644188720268fb4076629ab4e8d417f 100755 (executable)
@@ -74,6 +74,4 @@ class Conversation extends Memcached_DataObject
 
         return $conv;
     }
-
 }
-
index f21f1b5297613019a3efc2cc59072d1e2387ee1d..059b339cd27a62e7b8deb8c8c05e7e353c6c9fcc 100644 (file)
@@ -144,8 +144,11 @@ class Fave extends Memcached_DataObject
                                   common_date_iso8601($this->modified));
 
         $act->time    = strtotime($this->modified);
+        // TRANS: Activity title when marking a notice as favorite.
         $act->title   = _("Favor");
-        $act->content = sprintf(_("%s marked notice %s as a favorite."),
+        // TRANS: Ntofication given when a user marks a notice as favorite.
+        // TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
+        $act->content = sprintf(_("%1$s marked notice %2$s as a favorite."),
                                $profile->getBestName(),
                                $notice->uri);
 
index 407fd32114000c258fa49bd5b50288607048160c..d457968b5e73f8b31d4c1691e53d8df19ad6d456 100644 (file)
@@ -29,7 +29,6 @@ require_once INSTALLDIR.'/classes/File_to_post.php';
 /**
  * Table Definition for file
  */
-
 class File extends Memcached_DataObject
 {
     ###START_AUTOCODE
index 041b4474043cb80d6ad50abc93912591077c2889..4813d5dda52e8709fde611ba7deb48726959ab8d 100644 (file)
@@ -131,4 +131,3 @@ class File_oembed extends Memcached_DataObject
         }
     }
 }
-
index 51b8be3b06e6606bf51ce1effcaf9e81234e2ee2..68fed77e8bb3eef6402fc0b737676c193cf3b420 100644 (file)
@@ -281,4 +281,3 @@ class File_redirection extends Memcached_DataObject
         $file_redir->insert();
     }
 }
-
index f8b70356c7eda8a0cfbb64a5aafe1e6d29f187ec..edae8ac21a9153119de458a166f39f47a8f12ec2 100644 (file)
@@ -57,4 +57,3 @@ class File_thumbnail extends Memcached_DataObject
         $tn->insert();
     }
 }
-
index 72a42b0880a46269ac22758c37798e2b8d411e8d..530921adcb05aacdf2422d20f108cb0069484eff 100644 (file)
@@ -67,4 +67,3 @@ class File_to_post extends Memcached_DataObject
         return Memcached_DataObject::pkeyGet('File_to_post', $kv);
     }
 }
-
index e47b2e3096c7c2d88c99739ef37c64f263318655..60db51595e70e790bc64ee3a3c4b841f3962a004 100644 (file)
@@ -44,7 +44,6 @@ class Foreign_link extends Memcached_DataObject
         $result = $flink->find(true);
 
         return empty($result) ? null : $flink;
-
     }
 
     static function getByForeignID($foreign_id, $service)
@@ -129,5 +128,4 @@ class Foreign_link extends Memcached_DataObject
             return false;
         }
     }
-
 }
index ef614dbd6e08a28fc20b2f8221a0ab2341bd1249..dd74fd2ca6c34176f72228bc06c62ab888aaa1fe 100644 (file)
@@ -4,7 +4,7 @@
  */
 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
 
-class Foreign_service extends Memcached_DataObject 
+class Foreign_service extends Memcached_DataObject
 {
     ###START_AUTOCODE
     /* the code below is auto generated do not remove the above tag */
@@ -12,7 +12,7 @@ class Foreign_service extends Memcached_DataObject
     public $__table = 'foreign_service';                 // table name
     public $id;                              // int(4)  primary_key not_null
     public $name;                            // varchar(32)  unique_key not_null
-    public $description;                     // varchar(255)  
+    public $description;                     // varchar(255)
     public $created;                         // datetime()   not_null
     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
 
index d508606218f3946bda976c206dc265477aab85d6..ec2631238e7273a291c6ff3948983a864bd621cc 100644 (file)
@@ -4,7 +4,7 @@
  */
 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
 
-class Foreign_subscription extends Memcached_DataObject 
+class Foreign_subscription extends Memcached_DataObject
 {
     ###START_AUTOCODE
     /* the code below is auto generated do not remove the above tag */
index e98a16064a83cbd51b8f998cf4a95d1546dbbfed..8e6e0b33e05fedde9db6589da1686e221656ee82 100644 (file)
@@ -83,5 +83,4 @@ class Foreign_user extends Memcached_DataObject
         }
         return $result;
     }
-
 }
index 9f4d592956eaf497ee7258a11ac049e66921af84..ffc57a496e0266c1a6d104f4edc4e930c42bfe40 100644 (file)
@@ -111,5 +111,4 @@ class Group_block extends Memcached_DataObject
 
         return true;
     }
-
 }
index 2a0787e387dc8ea087060dfc447cf661121d0e74..8f5c65e5946a24997c95670ab641d5fa2a4af39f 100644 (file)
@@ -1,8 +1,8 @@
 <?php
+
 /**
  * Table Definition for group_inbox
  */
-
 class Group_inbox extends Memcached_DataObject
 {
     ###START_AUTOCODE
index 939a9cde76e8cf3049fc484a0e97db48473bcd7b..c40d06a1db0ebf99c61ea22ad80b438ac3cf1eff 100644 (file)
@@ -71,7 +71,9 @@ class Group_member extends Memcached_DataObject
         $member = Profile::staticGet('id', $this->profile_id);
 
         if (empty($member)) {
-            throw new Exception("Profile ID {$this->profile_id} invalid.");
+            // TRANS: Exception thrown providing an invalid profile ID.
+            // TRANS: %s is the invalid profile ID.
+            throw new Exception(sprintf(_("Profile ID %s is invalid."),$this->profile_id));
         }
 
         return $member;
@@ -82,7 +84,9 @@ class Group_member extends Memcached_DataObject
         $group  = User_group::staticGet('id', $this->group_id);
 
         if (empty($group)) {
-            throw new Exception("Group ID {$this->group_id} invalid.");
+            // TRANS: Exception thrown providing an invalid group ID.
+            // TRANS: %s is the invalid group ID.
+            throw new Exception(sprintf(_("Group ID %s is invalid."),$this->group_id));
         }
 
         return $group;
@@ -105,6 +109,7 @@ class Group_member extends Memcached_DataObject
         $act->objects[] = ActivityObject::fromGroup($group);
 
         $act->time  = strtotime($this->created);
+        // TRANS: Activity title.
         $act->title = _("Join");
 
         // TRANS: Success message for subscribe to group attempt through OStatus.
index 430419ba5ef9fc0d5ab5f0c091f805d8fdf01064..a1ab6215fd3a018cfcd2724522443e1fbb8d888f 100644 (file)
@@ -55,7 +55,6 @@ class Inbox extends Memcached_DataObject
     /**
      * Create a new inbox from existing Notice_inbox stuff
      */
-
     static function initialize($user_id)
     {
         $inbox = Inbox::fromNoticeInbox($user_id);
@@ -115,10 +114,10 @@ class Inbox extends Memcached_DataObject
      */
     static function insertNotice($user_id, $notice_id)
     {
-               // Going straight to the DB rather than trusting our caching
-               // during an update. Note: not using DB_DataObject::staticGet,
-               // which is unsafe to use directly (in-process caching causes
-               // memory leaks, which accumulate in queue processes).
+        // Going straight to the DB rather than trusting our caching
+        // during an update. Note: not using DB_DataObject::staticGet,
+        // which is unsafe to use directly (in-process caching causes
+        // memory leaks, which accumulate in queue processes).
         $inbox = new Inbox();
         if (!$inbox->get('user_id', $user_id)) {
             $inbox = Inbox::initialize($user_id);
index 8a36fd8df1678418760efe419461f938a07fa4ce..0e87c1629cb9881b841c533eed88fce3df3dd521 100644 (file)
@@ -4,7 +4,7 @@
  */
 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
 
-class Invitation extends Memcached_DataObject 
+class Invitation extends Memcached_DataObject
 {
     ###START_AUTOCODE
     /* the code below is auto generated do not remove the above tag */
index 0f1ed04892a61335b7913177e385bcd32bfd56a3..ccfd886a1d3dc3ce9ce8de594aa1c5287f5d8634 100644 (file)
@@ -189,11 +189,11 @@ class Memcached_DataObject extends Safe_DataObject
                        str_replace("\n", " ", $e->getTraceAsString()));
             return false;
         } else {
-               $keys = $this->_allCacheKeys();
+            $keys = $this->_allCacheKeys();
 
-               foreach ($keys as $key) {
-                   $c->set($key, $this);
-               }
+            foreach ($keys as $key) {
+                $c->set($key, $this);
+            }
         }
     }
 
@@ -637,4 +637,3 @@ class Memcached_DataObject extends Safe_DataObject
         return $vstr;
     }
 }
-
index fa0c5b31812411dd03b08da8a4867add45bb45ed..353dc01f99e0b3cb6265d260213e8bed2285f0f7 100644 (file)
@@ -38,7 +38,6 @@ class Message extends Memcached_DataObject
     }
 
     static function saveNew($from, $to, $content, $source) {
-
         $sender = Profile::staticGet('id', $from);
 
         if (!$sender->hasRight(Right::NEWMESSAGE)) {
index 2f8ab00b5dc097886687a8e2413bd59df689c59d..93191bd409109d362e19672fb977af7390f0ec77 100644 (file)
@@ -36,5 +36,4 @@ class Nonce extends Memcached_DataObject
     {
         return array('consumer_key,token' => 'token:consumer_key,token');
     }
-
 }
index 4f23e35007f4cac4f099832fa6df805185082d2f..79626f8898535a032e90367f4f4f6c2c9aef7ed8 100644 (file)
@@ -745,6 +745,7 @@ class Notice extends Memcached_DataObject
                 1,
                 1
             );
+
             if ($conversation->N > 0) {
                 return true;
             }
@@ -1305,13 +1306,10 @@ class Notice extends Memcached_DataObject
         }
 
         if (Event::handle('StartActivitySource', array(&$this, &$xs))) {
-
             if ($source) {
-
                 $atom_feed = $profile->getAtomFeed();
 
                 if (!empty($atom_feed)) {
-
                     $xs->elementStart('source');
 
                     // XXX: we should store the actual feed ID
@@ -1899,7 +1897,6 @@ class Notice extends Memcached_DataObject
         $options = array();
 
         if (!empty($location_id) && !empty($location_ns)) {
-
             $options['location_id'] = $location_id;
             $options['location_ns'] = $location_ns;
 
@@ -1911,7 +1908,6 @@ class Notice extends Memcached_DataObject
             }
 
         } else if (!empty($lat) && !empty($lon)) {
-
             $options['lat'] = $lat;
             $options['lon'] = $lon;
 
@@ -1922,7 +1918,6 @@ class Notice extends Memcached_DataObject
                 $options['location_ns'] = $location->location_ns;
             }
         } else if (!empty($profile)) {
-
             if (isset($profile->lat) && isset($profile->lon)) {
                 $options['lat'] = $profile->lat;
                 $options['lon'] = $profile->lon;
index e7568bbca2a0be0f0b644d5cb0a3974c8e430a02..43893ebe182f7a343c4a9955c777595180688fe8 100644 (file)
@@ -4,7 +4,7 @@
  */
 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
 
-class Notice_source extends Memcached_DataObject 
+class Notice_source extends Memcached_DataObject
 {
     ###START_AUTOCODE
     /* the code below is auto generated do not remove the above tag */
index 748b6422006b4175311a7fade7f7d5aed3ca4f8f..e81706104eaf6b9c17626d00db371d7d67bb1c0f 100644 (file)
@@ -110,7 +110,6 @@ class Oauth_application extends Memcached_DataObject
      *
      * @return void
      */
-
     function uploadLogo()
     {
         if ($_FILES['app_icon']['error'] ==
@@ -153,5 +152,4 @@ class Oauth_application extends Memcached_DataObject
         $oauser->application_id = $this->id;
         $oauser->delete();
     }
-
 }
index 57986281f96d9246f08ff72489b08ac1c7510d62..3d4238d640fc4db3e4055477e157acbef97ee45f 100644 (file)
@@ -40,5 +40,4 @@ class Oauth_application_user extends Memcached_DataObject
 
         return empty($result) ? null : $oau;
     }
-
 }