]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Update translator documentation.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Sun, 5 Jun 2011 18:42:11 +0000 (20:42 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Sun, 5 Jun 2011 18:42:11 +0000 (20:42 +0200)
Whitespace updates.
i18n/L10n updates.

plugins/SearchSub/SearchSubPlugin.php
plugins/SearchSub/searchsubform.php
plugins/SearchSub/searchsubtrackingcommand.php
plugins/SearchSub/searchsubtrackoffcommand.php
plugins/SearchSub/searchsubuntrackcommand.php
plugins/SearchSub/searchunsubform.php

index de131c2b04f161f59e13eee161910f36e3c02384..600dae6c16ea2f810eb34115a622ec6fc022d25c 100644 (file)
@@ -181,7 +181,7 @@ class SearchSubPlugin extends Plugin
      * or Sphinx search backends.
      *
      * @param Notice $notice
-     * @param string $search 
+     * @param string $search
      * @return boolean
      */
     function matchSearch(Notice $notice, $search)
@@ -226,7 +226,6 @@ class SearchSubPlugin extends Plugin
      *
      * @return boolean hook return
      */
-
     function onEndSubGroupNav($widget)
     {
         $action = $widget->out;
@@ -296,11 +295,11 @@ class SearchSubPlugin extends Plugin
 
             if (!empty($searches) && count($searches) > 0) {
                 $searchSubMenu = new SearchSubMenu($menu->out, $user, $searches);
-                $menu->submenu(_m('Searches'), $searchSubMenu);
+                // TRANS: Sub menu for searches.
+                $menu->submenu(_m('MENU','Searches'), $searchSubMenu);
             }
         }
 
         return true;
     }
-
 }
index 7b053773971380dddccb00f2085179eed1ca439e..4d44910e67b388c03682b608ab445ed22edf47d0 100644 (file)
@@ -46,13 +46,11 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
  *
  * @see      UnsubscribeForm
  */
-
 class SearchSubForm extends Form
 {
     /**
      * Name of search to subscribe to
      */
-
     var $search = '';
 
     /**
@@ -61,7 +59,6 @@ class SearchSubForm extends Form
      * @param HTMLOutputter $out     output channel
      * @param string        $search     name of search to subscribe to
      */
-
     function __construct($out=null, $search=null)
     {
         parent::__construct($out);
@@ -74,7 +71,6 @@ class SearchSubForm extends Form
      *
      * @return int ID of the form
      */
-
     function id()
     {
         return 'search-subscribe-' . $this->search;
@@ -86,7 +82,6 @@ class SearchSubForm extends Form
      *
      * @return string of the form class
      */
-
     function formClass()
     {
         // class to match existing styles...
@@ -99,13 +94,11 @@ class SearchSubForm extends Form
      *
      * @return string URL of the action
      */
-
     function action()
     {
         return common_local_url('searchsub', array('search' => $this->search));
     }
 
-
     /**
      * Legend of the Form
      *
@@ -113,6 +106,7 @@ class SearchSubForm extends Form
      */
     function formLegend()
     {
+        // TRANS: Form legend.
         $this->out->element('legend', null, _m('Subscribe to this search'));
     }
 
@@ -121,7 +115,6 @@ class SearchSubForm extends Form
      *
      * @return void
      */
-
     function formData()
     {
         $this->out->hidden('subscribeto-' . $this->search,
@@ -134,9 +127,14 @@ class SearchSubForm extends Form
      *
      * @return void
      */
-
     function formActions()
     {
-        $this->out->submit('submit', _m('BUTTON','Subscribe'), 'submit', null, _m('Subscribe to this search'));
+        $this->out->submit('submit',
+                           // TRANS: Button text for subscribing to a search.
+                           _m('BUTTON','Subscribe'),
+                           'submit',
+                           null,
+                           // TRANS: Button title for subscribing to a search.
+                           _m('Subscribe to this search.'));
     }
 }
index 385a22b8ba0cadc2abce72dff31fd234a08123dc..a404fd4ccfd1f1ca59654831165e018be9bc4055 100644 (file)
@@ -20,8 +20,12 @@ class SearchSubTrackingCommand extends Command
             $list[] = $all->search;
         }
 
+        // TRANS: Separator for list of tracked searches.
+        $separator = _m('SEPARATOR','", "');
+
         // TRANS: Message given having disabled all search subscriptions with 'track off'.
-        $channel->output($cur, sprintf(_m('You are tracking searches for: %s'),
-                                       '"' . implode('", "', $list) . '"'));
+        // TRANS: %s is a list of searches. Separator default is '", "'.
+        $channel->output($cur, sprintf(_m('You are tracking searches for: "%s".'),
+                                       implode($separator, $list)));
     }
-}
\ No newline at end of file
+}
index 1e5eb97ebc111bc86e34bc75ab9e5924c0788d2d..4ab78a50a92dbdd6011f5ad3fbb5806cbf022b89 100644 (file)
@@ -21,6 +21,7 @@ class SearchSubTrackoffCommand extends Command
                 SearchSub::cancel($profile, $all->search);
             } catch (Exception $e) {
                 // TRANS: Message given having failed to cancel one of the search subs with 'track off' command.
+                // TRANS: %s is the search for which the subscription removal failed.
                 $channel->error($cur, sprintf(_m('Error disabling search subscription for query "%s".'),
                                               $all->search));
                 return;
@@ -30,4 +31,4 @@ class SearchSubTrackoffCommand extends Command
         // TRANS: Message given having disabled all search subscriptions with 'track off'.
         $channel->output($cur, _m('Disabled all your search subscriptions.'));
     }
-}
\ No newline at end of file
+}
index 9fb84cd130dde9a9a28c73b04135f25329090ece..fb3d78a14ef1a7ace003f6c3c6a14bd174f569a8 100644 (file)
@@ -18,6 +18,7 @@ class SearchSubUntrackCommand extends Command
 
         if (!$searchsub) {
             // TRANS: Error text shown a user tries to untrack a search query they're not subscribed to.
+            // TRANS: %s is the keyword for the search.
             $channel->error($cur, sprintf(_m('You are not tracking the search "%s".'), $this->keyword));
             return;
         }
@@ -26,13 +27,15 @@ class SearchSubUntrackCommand extends Command
             SearchSub::cancel($cur->getProfile(), $this->keyword);
         } catch (Exception $e) {
             // TRANS: Message given having failed to cancel a search subscription by untrack command.
+            // TRANS: %s is the keyword for the query.
             $channel->error($cur, sprintf(_m('Could not end a search subscription for query "%s".'),
                                           $this->keyword));
             return;
         }
 
         // TRANS: Message given having removed a search subscription by untrack command.
+        // TRANS: %s is the keyword for the search.
         $channel->output($cur, sprintf(_m('You are no longer subscribed to the search "%s".'),
                                               $this->keyword));
     }
-}
\ No newline at end of file
+}
index f90531f6aac5f62fc0b6e0384609da73fadaa97a..ae07f8dfa80afe018f4ce30f29dcefc9bac3723c 100644 (file)
@@ -46,7 +46,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
  *
  * @see      UnsubscribeForm
  */
-
 class SearchUnsubForm extends SearchSubForm
 {
     /**
@@ -54,38 +53,32 @@ class SearchUnsubForm extends SearchSubForm
      *
      * @return int ID of the form
      */
-
     function id()
     {
         return 'search-unsubscribe-' . $this->search;
     }
 
-
     /**
      * class of the form
      *
      * @return string of the form class
      */
-
     function formClass()
     {
         // class to match existing styles...
         return 'form_user_unsubscribe ajax';
     }
 
-
     /**
      * Action of the form
      *
      * @return string URL of the action
      */
-
     function action()
     {
         return common_local_url('searchunsub', array('search' => $this->search));
     }
 
-
     /**
      * Legend of the Form
      *
@@ -93,6 +86,7 @@ class SearchUnsubForm extends SearchSubForm
      */
     function formLegend()
     {
+        // TRANS: Form legend.
         $this->out->element('legend', null, _m('Unsubscribe from this search'));
     }
 
@@ -101,9 +95,14 @@ class SearchUnsubForm extends SearchSubForm
      *
      * @return void
      */
-
     function formActions()
     {
-        $this->out->submit('submit', _m('BUTTON','Unsubscribe'), 'submit', null, _m('Unsubscribe from this search'));
+        $this->out->submit('submit',
+                           // TRANS: Button text for unsubscribing from a text search.
+                           _m('BUTTON','Unsubscribe'),
+                           'submit',
+                           null,
+                           // TRANS: Button title for unsubscribing from a text search.
+                           _m('Unsubscribe from this search.'));
     }
 }