Code

msgPool
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 14 Mar 2008 12:41:25 +0000 (12:41 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 14 Mar 2008 12:41:25 +0000 (12:41 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9836 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/gofax/gofax/blocklists/class_blocklistGeneric.inc
gosa-plugins/gofax/gofax/blocklists/class_blocklistManagement.inc
gosa-plugins/gofax/gofax/blocklists/class_divListBlocklists.inc

index cb54b7b233945b07caea5a097b12212c08fca4a7..2c0d00c1becf920f1ae09324110811c79f35671b 100644 (file)
@@ -6,7 +6,7 @@ define("BLOCK_LIST_SEND" , 1);
 class blocklistGeneric extends plugin
 {
   /* Definitions */
-  var $plHeadline= "FAX Blocklists";
+  var $plHeadline= "Fax blocklists";
   var $plDescription= "This does something";
 
   var $cn ="";
@@ -358,7 +358,7 @@ class blocklistGeneric extends plugin
           "plDepends"         => array(),
 
           "plPriority"    => 0,
-          "plSection"     => array("administration" => _("FAX Blocklists")),
+          "plSection"     => array("administration" => _("Fax blocklists")),
           "plCategory"    => array("gofaxlist"      => array("description" => _("Fax blocklists"),
               "objectClass" => array("goFaxRBlock","goFaxSBlock"))),
           "plProvidedAcls" => array(
index 94696669d3612d633ec143365e5dc863fbbe22c5..9d5679a073343e8ac9fca9e4affd8a540d4a480d 100644 (file)
@@ -2,7 +2,7 @@
 class blocklist extends plugin
 {
   /* Definitions */
-  var $plHeadline= "FAX Blocklists";
+  var $plHeadline= "FAX blocklists";
   var $plDescription= "This does something";
 
   var $blocklists       = array();
index 90385ff704132da23cdd1e71fc25745ee4f66aef..dd47e66443c9ec5b981a325038acde61cef6149b 100644 (file)
@@ -53,17 +53,17 @@ class divListBlocklist extends MultiSelectWindow
     /* set Page header */
     $this->AddHeader(array("string"=> $chk,          "attach"=>"style='width:20px;'"));
     $this->AddHeader(array("string" => "&nbsp;", "attach" => "style='text-align:center;width:20px;'"));
-    $this->AddHeader(array("string" => _("Blocklist name")." / "._("Department"), "attach" => "style=''"));
+    $this->AddHeader(array("string" => _("Name")." / "._("Department"), "attach" => "style=''"));
     $this->AddHeader(array("string" => _("Actions"), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'" ));
 
     /* Add Checkboxes / SubSearch checkbox */
-    $this->AddCheckBox("ShowSendBocklists"     , _("Select to see send blocklists"),    _("Show send blocklists"),true);
-    $this->AddCheckBox("ShowReceiveBlocklists" , _("Select to see receive blocklists"), _("Show receive blocklists"),true);
+    $this->AddCheckBox("ShowSendBocklists"     , msgPool::selectToView(_("Send blocklist"),     _("Show send blocklists"),true);
+    $this->AddCheckBox("ShowReceiveBlocklists" , msgPool::selectToView(_("Receive blocklist"),  _("Show receive blocklists"),true);
   
     $this->AddCheckBox(SEPERATOR);
     $this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Search in subtrees"), false);
 
-    /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
+    /* Name,Text,Default,Connect with alphabet */
     $this->AddRegex   ("Regex",     _("Regular expression for matching list names"),"*" , true);
   }