summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ba3a719)
raw | patch | inline | side by side (parent: ba3a719)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 14 Mar 2008 12:41:25 +0000 (12:41 +0000) | ||
committer | hickert <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
diff --git a/gosa-plugins/gofax/gofax/blocklists/class_blocklistGeneric.inc b/gosa-plugins/gofax/gofax/blocklists/class_blocklistGeneric.inc
index cb54b7b233945b07caea5a097b12212c08fca4a7..2c0d00c1becf920f1ae09324110811c79f35671b 100644 (file)
class blocklistGeneric extends plugin
{
/* Definitions */
- var $plHeadline= "FAX Blocklists";
+ var $plHeadline= "Fax blocklists";
var $plDescription= "This does something";
var $cn ="";
"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(
diff --git a/gosa-plugins/gofax/gofax/blocklists/class_blocklistManagement.inc b/gosa-plugins/gofax/gofax/blocklists/class_blocklistManagement.inc
index 94696669d3612d633ec143365e5dc863fbbe22c5..9d5679a073343e8ac9fca9e4affd8a540d4a480d 100644 (file)
class blocklist extends plugin
{
/* Definitions */
- var $plHeadline= "FAX Blocklists";
+ var $plHeadline= "FAX blocklists";
var $plDescription= "This does something";
var $blocklists = array();
diff --git a/gosa-plugins/gofax/gofax/blocklists/class_divListBlocklists.inc b/gosa-plugins/gofax/gofax/blocklists/class_divListBlocklists.inc
index 90385ff704132da23cdd1e71fc25745ee4f66aef..dd47e66443c9ec5b981a325038acde61cef6149b 100644 (file)
/* set Page header */
$this->AddHeader(array("string"=> $chk, "attach"=>"style='width:20px;'"));
$this->AddHeader(array("string" => " ", "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);
}