]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/SearchSub/searchunsubform.php
Merge commit 'refs/merge-requests/158' of git://gitorious.org/statusnet/mainline...
[quix0rs-gnu-social.git] / plugins / SearchSub / searchunsubform.php
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.'));
     }
 }